2025-03-21 20:20:23 -07:00
|
|
|
|
#nullable enable
|
|
|
|
|
|
|
|
|
|
using System;
|
2024-10-05 17:46:45 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Object = UnityEngine.Object;
|
2024-08-10 18:03:50 -07:00
|
|
|
|
|
|
|
|
|
namespace nadena.dev.modular_avatar.core.editor
|
|
|
|
|
{
|
|
|
|
|
internal class AnimatedProperty
|
|
|
|
|
{
|
|
|
|
|
public TargetProp TargetProp { get; }
|
|
|
|
|
|
|
|
|
|
public object currentState;
|
|
|
|
|
|
|
|
|
|
// Objects which trigger deletion of this shape key.
|
|
|
|
|
public List<ReactionRule> actionGroups = new List<ReactionRule>();
|
|
|
|
|
|
2025-03-14 20:49:28 -07:00
|
|
|
|
public object? overrideStaticState = null;
|
|
|
|
|
|
2024-08-10 18:03:50 -07:00
|
|
|
|
public AnimatedProperty(TargetProp key, float currentState)
|
|
|
|
|
{
|
|
|
|
|
TargetProp = key;
|
|
|
|
|
this.currentState = currentState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public AnimatedProperty(TargetProp key, Object currentState)
|
|
|
|
|
{
|
|
|
|
|
TargetProp = key;
|
|
|
|
|
this.currentState = currentState;
|
|
|
|
|
}
|
2024-10-05 17:46:45 -07:00
|
|
|
|
|
|
|
|
|
protected bool Equals(AnimatedProperty other)
|
|
|
|
|
{
|
|
|
|
|
return Equals(currentState, other.currentState) && actionGroups.SequenceEqual(other.actionGroups) &&
|
|
|
|
|
TargetProp.Equals(other.TargetProp);
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-21 20:20:23 -07:00
|
|
|
|
public override bool Equals(object? obj)
|
2024-10-05 17:46:45 -07:00
|
|
|
|
{
|
|
|
|
|
if (obj is null) return false;
|
|
|
|
|
if (ReferenceEquals(this, obj)) return true;
|
|
|
|
|
if (obj.GetType() != GetType()) return false;
|
|
|
|
|
return Equals((AnimatedProperty)obj);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override int GetHashCode()
|
|
|
|
|
{
|
|
|
|
|
var actionGroupHash = 0;
|
|
|
|
|
foreach (var ag in actionGroups)
|
|
|
|
|
{
|
|
|
|
|
actionGroupHash = HashCode.Combine(actionGroupHash, ag);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return HashCode.Combine(currentState, actionGroupHash, TargetProp);
|
|
|
|
|
}
|
2024-08-10 18:03:50 -07:00
|
|
|
|
}
|
|
|
|
|
}
|