Liberi
An exergame built for kids with CP!
ConditionSelector.cs
1 using UnityEngine;
2 using System.Collections;
3 using UnityEngine.UI;
4 
5 public enum BalanceCondition
6 {
7  GenericBalance = 0,
8  EffortBalance = 1,
9  OneSpeedForAll = 2
10 }
11 
20 public class ConditionSelector : MonoBehaviour
21 {
22  Animator _animator;
23  bool _open;
24  BalanceCondition _condition;
25 
26  int _isOpenHash = Animator.StringToHash("IsOpen");
27  int _isAHash = Animator.StringToHash("IsA");
28  int _isBHash = Animator.StringToHash("IsB");
29  int _isCHash = Animator.StringToHash("IsC");
30 
31  GameObject _aButton;
32  GameObject _bButton;
33  GameObject _cButton;
34 
35  void Awake()
36  {
37  _animator = GetComponent<Animator>();
38  _aButton = transform.FindChild("a_selector").gameObject;
39  _bButton = transform.FindChild("b_selector").gameObject;
40  _cButton = transform.FindChild("c_selector").gameObject;
41  }
42 
43  void Start ()
44  {
45  Condition = GameClient.Instance.Config.Study.BalanceAlgorithm;
46  }
47 
51  public bool Open
52  {
53  get { return _open; }
54 
55  set
56  {
57  _open = value;
58  _animator.SetBool(_isOpenHash, _open);
59 
60  _aButton.GetComponent<Button>().enabled = _condition == BalanceCondition.GenericBalance || _open;
61  _bButton.GetComponent<Button>().enabled = _condition == BalanceCondition.EffortBalance || _open;
62  _cButton.GetComponent<Button>().enabled = _condition == BalanceCondition.OneSpeedForAll || _open;
63 
64  _aButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.GenericBalance || _open;
65  _bButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.EffortBalance || _open;
66  _cButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.OneSpeedForAll || _open;
67  }
68  }
69 
75  public BalanceCondition Condition
76  {
77  get { return _condition; }
78 
79  set
80  {
81  _condition = value;
82 
83  _animator.SetBool(_isCHash, _condition == BalanceCondition.GenericBalance);
84  _animator.SetBool(_isBHash, _condition == BalanceCondition.EffortBalance);
85  _animator.SetBool(_isAHash, _condition == BalanceCondition.OneSpeedForAll);
86 
87  _aButton.GetComponent<Button>().enabled = _condition == BalanceCondition.GenericBalance;
88  _bButton.GetComponent<Button>().enabled = _condition == BalanceCondition.EffortBalance;
89  _cButton.GetComponent<Button>().enabled = _condition == BalanceCondition.OneSpeedForAll;
90 
91  _aButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.GenericBalance;
92  _bButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.EffortBalance;
93  _cButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.OneSpeedForAll;
94 
95  GameClient.Instance.Config.Study.BalanceAlgorithm = _condition;
96  GameClient.Instance.Config.Study.Save();
97  }
98  }
99 
105  public void ConditionButtonPressed (int conditionNum)
106  {
107  ConditionButtonPressed((BalanceCondition)conditionNum);
108  }
109 
110  public void ConditionButtonPressed (BalanceCondition condition)
111  {
112  if (Open)
113  {
114  Condition = condition;
115  Open = false;
116  }
117  else
118  {
119  Open = true;
120  }
121  }
122 }
BalanceCondition Condition
Condition Property
void ConditionButtonPressed(int conditionNum)
Used by the Unity GUI system which at the time of writing, could not pass enums using the GUI event s...
ClientConfig Config
Gets the configuration for this client.
Definition: GameClient.cs:176
static GameClient Instance
Gets the sole instance of the game client.
Definition: GameClient.cs:136
Main game client class.
Definition: GameClient.cs:16
The ConditionSelector was used as part of a Summer Camp at Holland Bloorview in 2015 At the time...
bool Open
Opens the conditon selector by setting animation states and enabling the buttons. ...