feat: add hero target
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
19
Client/Domain/Events/TargetChangedEvent.cs
Normal file
19
Client/Domain/Events/TargetChangedEvent.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
@@ -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)
|
||||
{
|
||||
|
||||
|
@@ -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;
|
||||
}
|
||||
|
@@ -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;
|
||||
|
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user