2019-03-17 18:43:20 -04:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace UnityAtoms
|
|
|
|
{
|
|
|
|
public abstract class ScriptableObjectVariableBase<T> : ScriptableObject, IWithValue<T>
|
|
|
|
{
|
|
|
|
[Multiline]
|
|
|
|
public string DeveloperDescription = "";
|
|
|
|
|
|
|
|
public virtual T Value { get { return value; } set { throw new NotImplementedException(); } }
|
|
|
|
|
|
|
|
[SerializeField]
|
|
|
|
protected T value;
|
|
|
|
|
|
|
|
protected bool Equals(ScriptableObjectVariableBase<T> other) {
|
|
|
|
return EqualityComparer<T>.Default.Equals(value, other.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool Equals(object obj) {
|
|
|
|
if (ReferenceEquals(null, obj)) return false;
|
|
|
|
if (ReferenceEquals(this, obj)) return true;
|
|
|
|
if (obj.GetType() != this.GetType()) return false;
|
|
|
|
return Equals((ScriptableObjectVariableBase<T>) obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override int GetHashCode() {
|
|
|
|
unchecked {
|
|
|
|
return EqualityComparer<T>.Default.GetHashCode(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static bool operator ==(ScriptableObjectVariableBase<T> left, ScriptableObjectVariableBase<T> right) { return Equals(left, right); }
|
|
|
|
public static bool operator !=(ScriptableObjectVariableBase<T> left, ScriptableObjectVariableBase<T> right) { return !Equals(left, right); }
|
|
|
|
}
|
2019-04-07 05:10:09 -04:00
|
|
|
}
|