feat: add hero target

This commit is contained in:
k0t9i
2023-01-31 17:35:18 +04:00
parent d2b20e0666
commit bd50473bfb
9 changed files with 261 additions and 60 deletions

View File

@@ -1,29 +1,77 @@
using Client.Domain.ValueObjects;
using Client.Domain.Common;
using Client.Domain.ValueObjects;
using System.ComponentModel;
using System.Diagnostics;
namespace Client.Domain.Entities
{
public class Hero : EntityInterface
public class Hero : NotifyPropertyChanged, EntityInterface, CreatureInterface
{
private FullName fullName;
private Phenotype phenotype;
private CreatureInterface? target;
private uint targetId;
public uint Id { get; set; }
public Transform Transform { get; set; }
public FullName FullName { get; set; }
public VitalStats VitalStats { get; set; }
public Phenotype Phenotype { get; set; }
public ExperienceInfo ExperienceInfo { get; set; }
public PermanentStats PermanentStats { get; set; }
public VariableStats VariableStats { get; set; }
public Reputation Reputation { get; set; }
public InventoryInfo InventoryInfo { get; set; }
public uint TargetId { get; set; }
public uint TargetId { get => targetId; set { if (value != targetId) { targetId = value; OnPropertyChanged("TargetId"); } } }
public CreatureInterface? Target { get => target; set { if (value != target) { target = value; OnPropertyChanged("Target"); } } }
public bool IsStanding { get; set; }
public FullName FullName
{
get => fullName;
set
{
fullName = value;
if (fullName != null)
{
FullName.PropertyChanged += FullName_PropertyChanged; ;
}
}
}
public Phenotype Phenotype
{
get => phenotype;
set
{
phenotype = value;
if (phenotype != null)
{
Phenotype.PropertyChanged += Phenotype_PropertyChanged;
}
}
}
public string Name
{
get
{
return FullName.Nickname;
}
}
public string BriefInfo
{
get
{
//todo race and class strings
return Phenotype.Race.ToString() + ", " + Phenotype.Class.ToString();
}
}
public Hero(uint id, Transform transform, FullName fullName, VitalStats vitalStats, Phenotype phenotype, ExperienceInfo experienceInfo, PermanentStats permanentStats, VariableStats variableStats, Reputation reputation, InventoryInfo inventoryInfo, uint targetId, bool isStanding)
{
Id = id;
Transform = transform;
FullName = fullName;
this.fullName = FullName = fullName;
VitalStats = vitalStats;
Phenotype = phenotype;
this.phenotype = Phenotype = phenotype;
ExperienceInfo = experienceInfo;
PermanentStats = permanentStats;
VariableStats = variableStats;
@@ -32,5 +80,21 @@ namespace Client.Domain.Entities
TargetId = targetId;
IsStanding = isStanding;
}
private void Phenotype_PropertyChanged(object? sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == "Race" || e.PropertyName == "Class")
{
OnPropertyChanged("BriefInfo");
}
}
private void FullName_PropertyChanged(object? sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == "Nickname")
{
OnPropertyChanged("Name");
}
}
}
}

View File

@@ -0,0 +1,19 @@
using Client.Domain.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Client.Domain.Events
{
public class TargetChangedEvent : EventInterface
{
public readonly Hero Hero;
public TargetChangedEvent(Hero hero)
{
Hero = hero;
}
}
}

View File

@@ -43,6 +43,15 @@ namespace Client.Domain.Service
}
}
public T? GetEntity(uint id)
{
T? result = null;
entities.TryGetValue(id, out result);
return result;
}
public virtual void OnCreate(T entity)
{

View File

@@ -10,12 +10,13 @@ using System.Threading.Tasks;
namespace Client.Domain.Service
{
public class HeroHandler : EntityHandler<Hero>
public class HeroHandler : EntityHandler<Hero>, EventHandlerInterface<TargetChangedEvent>
{
public override void OnCreate(Hero entity)
{
entity.ExperienceInfo.ExpToLevel = experienceHelper.GetExperienceToLevel(entity.ExperienceInfo.Level + 1);
entity.ExperienceInfo.ExpToPrevLevel = experienceHelper.GetExperienceToLevel(entity.ExperienceInfo.Level);
entity.PropertyChanged += Hero_PropertyChanged;
eventBus.Publish(new HeroCreatedEvent(entity));
}
@@ -39,6 +40,31 @@ namespace Client.Domain.Service
this.experienceHelper = experienceHelper;
}
private void Hero_PropertyChanged(object? sender, System.ComponentModel.PropertyChangedEventArgs e)
{
if (sender == null)
{
return;
}
var hero = (Hero)sender;
if (e.PropertyName == "TargetId")
{
hero.Target = null;
eventBus.Publish(new TargetChangedEvent(hero));
}
}
public void Handle(TargetChangedEvent @event)
{
var target = GetEntity(@event.Hero.TargetId);
if (target == null)
{
return;
}
@event.Hero.Target = target;
}
private readonly EventBusInterface eventBus;
private readonly ExperienceHelperInterface experienceHelper;
}

View File

@@ -10,7 +10,7 @@ using System.Threading.Tasks;
namespace Client.Domain.Service
{
public class NpcHandler : EntityHandler<NPC>
public class NpcHandler : EntityHandler<NPC>, EventHandlerInterface<TargetChangedEvent>
{
public override void OnCreate(NPC entity)
{
@@ -23,6 +23,16 @@ namespace Client.Domain.Service
eventBus.Publish(new CreatureDeletedEvent(entity.Id));
}
public void Handle(TargetChangedEvent @event)
{
var target = GetEntity(@event.Hero.TargetId);
if (target == null)
{
return;
}
@event.Hero.Target = target;
}
public NpcHandler(EntityFactoryInterface<NPC> factory, EventBusInterface eventBus, NpcInfoHelperInterface npcInfoHelper) : base(factory)
{
this.eventBus = eventBus;

View File

@@ -9,7 +9,7 @@ using System.Threading.Tasks;
namespace Client.Domain.Service
{
public class PlayerHandler : EntityHandler<Player>
public class PlayerHandler : EntityHandler<Player>, EventHandlerInterface<TargetChangedEvent>
{
public override void OnCreate(Player entity)
{
@@ -25,6 +25,16 @@ namespace Client.Domain.Service
this.eventBus = eventBus;
}
public void Handle(TargetChangedEvent @event)
{
var target = GetEntity(@event.Hero.TargetId);
if (target == null)
{
return;
}
@event.Hero.Target = target;
}
private readonly EventBusInterface eventBus;
}
}