Refactor namespaces to remove "Companion" and standardize to "PetCompanion"

This commit is contained in:
Jose Henrique 2025-02-02 12:45:00 -03:00
parent c433095eb8
commit 06455db598
24 changed files with 70 additions and 67 deletions

View File

@ -1,8 +1,8 @@
using Microsoft.AspNetCore.Mvc;
using Pet.Companion.Models;
using Pet.Companion.Services;
using PetCompanion.Models;
using PetCompanion.Services;
namespace Pet.Companion.Controllers
namespace PetCompanion.Controllers
{
[ApiController]
[Route("api/v1/[controller]")]

View File

@ -1,7 +1,7 @@
using Microsoft.EntityFrameworkCore;
using Pet.Companion.Models;
using PetCompanion.Models;
namespace Pet.Companion.Data
namespace PetCompanion.Data
{
public class ApplicationDbContext : DbContext
{

View File

@ -4,11 +4,11 @@ using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Pet.Companion.Data;
using PetCompanion.Data;
#nullable disable
namespace Pet.Companion.Migrations
namespace PetCompanion.Migrations
{
[DbContext(typeof(ApplicationDbContext))]
[Migration("20250201173643_Initial")]
@ -20,7 +20,7 @@ namespace Pet.Companion.Migrations
#pragma warning disable 612, 618
modelBuilder.HasAnnotation("ProductVersion", "9.0.1");
modelBuilder.Entity("Pet.Companion.Models.Pet", b =>
modelBuilder.Entity("PetCompanion.Models.Pet", b =>
{
b.Property<string>("Id")
.HasColumnType("TEXT");
@ -59,7 +59,7 @@ namespace Pet.Companion.Migrations
b.ToTable("Pets");
});
modelBuilder.Entity("Pet.Companion.Models.PetStats", b =>
modelBuilder.Entity("PetCompanion.Models.PetStats", b =>
{
b.Property<string>("PetId")
.HasColumnType("TEXT");
@ -87,7 +87,7 @@ namespace Pet.Companion.Migrations
b.ToTable("PetStats");
});
modelBuilder.Entity("Pet.Companion.Models.Resources", b =>
modelBuilder.Entity("PetCompanion.Models.Resources", b =>
{
b.Property<string>("PetId")
.HasColumnType("TEXT");
@ -109,25 +109,25 @@ namespace Pet.Companion.Migrations
b.ToTable("Resources");
});
modelBuilder.Entity("Pet.Companion.Models.PetStats", b =>
modelBuilder.Entity("PetCompanion.Models.PetStats", b =>
{
b.HasOne("Pet.Companion.Models.Pet", null)
b.HasOne("PetCompanion.Models.Pet", null)
.WithOne("Stats")
.HasForeignKey("Pet.Companion.Models.PetStats", "PetId")
.HasForeignKey("PetCompanion.Models.PetStats", "PetId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Pet.Companion.Models.Resources", b =>
modelBuilder.Entity("PetCompanion.Models.Resources", b =>
{
b.HasOne("Pet.Companion.Models.Pet", null)
b.HasOne("PetCompanion.Models.Pet", null)
.WithOne("Resources")
.HasForeignKey("Pet.Companion.Models.Resources", "PetId")
.HasForeignKey("PetCompanion.Models.Resources", "PetId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Pet.Companion.Models.Pet", b =>
modelBuilder.Entity("PetCompanion.Models.Pet", b =>
{
b.Navigation("Resources")
.IsRequired();

View File

@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Pet.Companion.Migrations
namespace PetCompanion.Migrations
{
/// <inheritdoc />
public partial class Initial : Migration

View File

@ -3,11 +3,11 @@ using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Pet.Companion.Data;
using PetCompanion.Data;
#nullable disable
namespace Pet.Companion.Migrations
namespace PetCompanion.Migrations
{
[DbContext(typeof(ApplicationDbContext))]
partial class ApplicationDbContextModelSnapshot : ModelSnapshot
@ -17,7 +17,7 @@ namespace Pet.Companion.Migrations
#pragma warning disable 612, 618
modelBuilder.HasAnnotation("ProductVersion", "9.0.1");
modelBuilder.Entity("Pet.Companion.Models.Pet", b =>
modelBuilder.Entity("PetCompanion.Models.Pet", b =>
{
b.Property<string>("Id")
.HasColumnType("TEXT");
@ -56,7 +56,7 @@ namespace Pet.Companion.Migrations
b.ToTable("Pets");
});
modelBuilder.Entity("Pet.Companion.Models.PetStats", b =>
modelBuilder.Entity("PetCompanion.Models.PetStats", b =>
{
b.Property<string>("PetId")
.HasColumnType("TEXT");
@ -84,7 +84,7 @@ namespace Pet.Companion.Migrations
b.ToTable("PetStats");
});
modelBuilder.Entity("Pet.Companion.Models.Resources", b =>
modelBuilder.Entity("PetCompanion.Models.Resources", b =>
{
b.Property<string>("PetId")
.HasColumnType("TEXT");
@ -106,25 +106,25 @@ namespace Pet.Companion.Migrations
b.ToTable("Resources");
});
modelBuilder.Entity("Pet.Companion.Models.PetStats", b =>
modelBuilder.Entity("PetCompanion.Models.PetStats", b =>
{
b.HasOne("Pet.Companion.Models.Pet", null)
b.HasOne("PetCompanion.Models.Pet", null)
.WithOne("Stats")
.HasForeignKey("Pet.Companion.Models.PetStats", "PetId")
.HasForeignKey("PetCompanion.Models.PetStats", "PetId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Pet.Companion.Models.Resources", b =>
modelBuilder.Entity("PetCompanion.Models.Resources", b =>
{
b.HasOne("Pet.Companion.Models.Pet", null)
b.HasOne("PetCompanion.Models.Pet", null)
.WithOne("Resources")
.HasForeignKey("Pet.Companion.Models.Resources", "PetId")
.HasForeignKey("PetCompanion.Models.Resources", "PetId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Pet.Companion.Models.Pet", b =>
modelBuilder.Entity("PetCompanion.Models.Pet", b =>
{
b.Navigation("Resources")
.IsRequired();

View File

@ -1,4 +1,4 @@
namespace Pet.Companion.Models.Enums
namespace PetCompanion.Models.Enums
{
public enum ItemType
{

View File

@ -1,6 +1,6 @@
using Pet.Companion.Models.Enums;
using PetCompanion.Models.Enums;
namespace Pet.Companion.Models
namespace PetCompanion.Models
{
public class MaterialItem : Item
{

View File

@ -1,4 +1,4 @@
namespace Pet.Companion.Models
namespace PetCompanion.Models
{
public class Inventory
{

View File

@ -1,6 +1,6 @@
using Pet.Companion.Models.Enums;
using PetCompanion.Models.Enums;
namespace Pet.Companion.Models
namespace PetCompanion.Models
{
public abstract class Item
{

View File

@ -1,7 +1,7 @@
using System.ComponentModel.DataAnnotations;
using Pet.Companion.Models.Enums;
using PetCompanion.Models.Enums;
namespace Pet.Companion.Models
namespace PetCompanion.Models
{
public class Pet
{

View File

@ -1,4 +1,4 @@
namespace Pet.Companion.Models
namespace PetCompanion.Models
{
public enum PetBasicAction
{

View File

@ -1,4 +1,4 @@
namespace Pet.Companion.Models
namespace PetCompanion.Models
{
public enum PetClass
{

View File

@ -1,5 +1,5 @@
namespace Pet.Companion.Models
namespace PetCompanion.Models
{
public class PetClassInfo
{

View File

@ -1,4 +1,4 @@
namespace Pet.Companion.Models
namespace PetCompanion.Models
{
public class PetCreationRequest
{

View File

@ -1,7 +1,7 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Pet.Companion.Models
namespace PetCompanion.Models
{
public class PetStats
{

View File

@ -1,4 +1,4 @@
namespace Pet.Companion.Models
namespace PetCompanion.Models
{
public class PetUpdateActionRequest
{

View File

@ -1,7 +1,7 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Pet.Companion.Models
namespace PetCompanion.Models
{
public class Resources
{

View File

@ -1,10 +1,10 @@
using Microsoft.EntityFrameworkCore;
using Pet.Companion.Data;
using Pet.Companion.Repositories;
using Pet.Companion.Services;
using PetCompanion.Data;
using PetCompanion.Repositories;
using PetCompanion.Services;
using System.Text.Json.Serialization;
namespace Pet.Companion
namespace PetCompanion
{
public class Program
{

View File

@ -1,8 +1,8 @@
using System.Text.RegularExpressions;
using Pet.Companion.Models;
using Pet.Companion.Models.Enums;
using PetCompanion.Models;
using PetCompanion.Models.Enums;
namespace Pet.Companion.Repositories
namespace PetCompanion.Repositories
{
public class ItemRepository
{

View File

@ -1,8 +1,8 @@
using Microsoft.EntityFrameworkCore;
using Pet.Companion.Data;
using Pet.Companion.Models;
using PetCompanion.Data;
using PetCompanion.Models;
namespace Pet.Companion.Repositories
namespace PetCompanion.Repositories
{
public class PetClassRepository
{

View File

@ -1,8 +1,8 @@
using Microsoft.EntityFrameworkCore;
using Pet.Companion.Data;
using Pet.Companion.Models;
using PetCompanion.Data;
using PetCompanion.Models;
namespace Pet.Companion.Repositories
namespace PetCompanion.Repositories
{
public class PetRepository
{

View File

@ -1,7 +1,7 @@
using Pet.Companion.Models;
using Pet.Companion.Repositories;
using PetCompanion.Models;
using PetCompanion.Repositories;
namespace Pet.Companion.Services
namespace PetCompanion.Services
{
public class PetClassService
{

View File

@ -1,7 +1,7 @@
using Pet.Companion.Models;
using Pet.Companion.Repositories;
using PetCompanion.Models;
using PetCompanion.Repositories;
namespace Pet.Companion.Services
namespace PetCompanion.Services
{
public class PetService
{
@ -28,7 +28,10 @@ namespace Pet.Companion.Services
UserId = userId.ToString(),
Name = petRequest.Name,
Class = petRequest.Class,
Health = 100,
MaxHealth = 100,
Level = 1,
Experience = 0,
Stats = PetStats.BuildFromClass(petRequest.Class),
Resources = new Resources(),
GatherActionSince = DateTime.UtcNow,
@ -64,12 +67,12 @@ namespace Pet.Companion.Services
case PetBasicAction.FEED:
pet.Resources.Food -= 1;
pet.IncrementStrength(1);
pet.Health = Math.Min(pet.Health + 5, 100);
pet.Health = Math.Min(pet.Health + 5, pet.MaxHealth);
break;
case PetBasicAction.SLEEP:
pet.IncrementIntelligence(1);
pet.IncrementStrength(1);
pet.Health = Math.Min(pet.Health + 15, Pet.MaxHealth);
pet.Health = Math.Min(pet.Health + 15, pet.MaxHealth);
break;
case PetBasicAction.PLAY:
pet.Resources.Junk -= 1;

View File

@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>Pet.Companion</RootNamespace>
<RootNamespace>PetCompanion</RootNamespace>
<UserSecretsId>fb7dfb2a-4bb7-4cd0-bc10-293410089f4b</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>