Description
4 minutes, Ouch
`using System;
using System.Collections.Generic;
using SaintsField;
using SaintsField.Playa;
using UltEvents;
using UnityEngine;
using UnityEngine.Serialization;
//stores game stats, used by upgrade
[CreateAssetMenu(menuName = "SO/Float (value)")]
public class FloatValue_SO:ScriptableObject
{
[Required]
public IntValue_SO currency;
[ShowInInspector]
public bool Enabled => (enabledConditions.Count==0 && superiorConditions.Count==0) || enabledConditions.TrueForAll(c => c.Enabled) && superiorConditions.TrueForAll(c => c.isTrue);
public bool discovered; // when someone press the button that was just enabled then this thing is true, it's so manage highlights
const string CHECKBOX_EMPTY = "\u2610";
const string CHECKBOX_CHECKED = "\u2612";
[ShowInInspector]
public string ConditionExplanation
{
get {
var totalExplanation = "";
foreach (var c in enabledConditions) { totalExplanation += ColorAndCheckbox(c.Enabled)+c.friendlyName+" Active "+"
"; }
foreach (var c in superiorConditions) { totalExplanation += ColorAndCheckbox(c.isTrue)+c.checkThis.friendlyName+" > "+c.isSuperiorTo+"
"; }
if(totalExplanation.Length>4) totalExplanation = totalExplanation.Remove(totalExplanation.Length-4,4);
return totalExplanation;
string ColorAndCheckbox(bool b) => ((b ? "<color="green">"+CHECKBOX_EMPTY : "<color="red">")+CHECKBOX_CHECKED)+" ";
}
}
[LayoutStart("Conditions",ELayout.Background|ELayout.Title)]
[Expandable,Comment("floatSO enabled")]
public List<FloatValue_SO> enabledConditions;
[Serializable]
public class Condition
{
public IntValue_SO checkThis;
public int isSuperiorTo;
public bool isTrue => checkThis.Value>=isSuperiorTo;
}
[Table,Comment("intSO superior to value")]
public List superiorConditions;
[LayoutEnd("Conditions")]
public string friendlyName;
public string explanation;
public Texture2D icon;
[Comment("base value X before in-level upgrade X, set by persistent upgrades")]
public float baseValue = -1;
[FormerlySerializedAs("value")]
[Comment("in-stage transient upgrade X"),SerializeField]
float transientValue;
public UltEvent onValueChange;
public void IncreaseTransientValueBy(float v)
{
transientValue += v;
onValueChange.Invoke();
}
public void OverrideStageTransientValue(float v)
{
transientValue = v;
onValueChange.Invoke();
}
public void SetBaseValue(float v)
{
baseValue = v;
onValueChange.Invoke();
}
//always be multiplying but what about slot count? urgh
[ShowInInspector]
public virtual float TotalValue => baseValue+transientValue;
[Comment("used by look up table")]
public int index;
[Serializable]
public struct Level
{
public int price;
public float change;
}
[Table]
[Comment("0 is the init value")]
public List<Level> levels;
public void Load()
{
index = PlayerPrefs.GetInt(name);
baseValue = levels[index].change;
discovered = PlayerPrefs.GetInt(name+"_BOOL")==1;
}
public void Save()
{
PlayerPrefs.SetInt(name,index);
PlayerPrefs.SetInt(name+"_BOOL",discovered ? 1 : 0);
}
public void ResetTransient()
{
transientValue = 0;
}
public void Reset()
{
// Refund all spent currency
int currentIndex = index;
while (index>0) {
currency.Value += levels[index].price;
index--;
}
// Reset to initial state
baseValue = levels[0].change;
OverrideStageTransientValue(1);
onValueChange.Invoke();
}
}`