Liberi
An exergame built for kids with CP!
StatusOverlay.cs
1 using UnityEngine;
2 using UnityEngine.UI;
3 
7 public enum StatusOverlayState
8 {
9  Hidden,
10  ShowingStatus,
11  ShowingError
12 }
13 
17 public class StatusOverlay : MonoBehaviour
18 {
22  public static bool IsVisible
23  {
24  get { return _instance._state != StatusOverlayState.Hidden; }
25  }
26 
30  public static string Text
31  {
32  get { return _instance._text; }
33  set
34  {
35  _instance._text = value;
36  _instance._textElement.text = _instance._text;
37  }
38  }
39 
43  public static StatusOverlayState State
44  {
45  get { return _instance._state; }
46  }
47 
48  static StatusOverlay _instance;
49 
50  StatusOverlayState _state;
51  string _text;
52  Text _textElement;
53  MaskableGraphic[] _renderers;
54 
55  void Awake ()
56  {
57  _instance = this;
58  _textElement = GetComponentInChildren<Text>();
59  _renderers = GetComponentsInChildren<MaskableGraphic>();
60  _state = StatusOverlayState.Hidden;
61  }
62 
66  public static void ShowStatus (string status)
67  {
68  Text = status;
69  _instance._state = StatusOverlayState.ShowingStatus;
70  _instance.SetRenderersEnabled(true);
71  }
72 
76  public static void ShowError (string error)
77  {
78  Text = error;
79  _instance._state = StatusOverlayState.ShowingError;
80  _instance.SetRenderersEnabled(true);
81  }
82 
86  public static void Hide ()
87  {
88  Text = null;
89  _instance._state = StatusOverlayState.Hidden;
90  _instance.SetRenderersEnabled(false);
91  }
92 
93  void SetRenderersEnabled (bool enabled)
94  {
95  for (int i = 0; i < _renderers.Length; i++)
96  {
97  _renderers[i].enabled = enabled;
98  }
99  }
100 
101  void Update ()
102  {
103  if (_state == StatusOverlayState.ShowingError)
104  {
105  if (Controls.GetActionDown(ControlsAction.Primary))
106  Hide();
107  }
108  }
109 }
static void ShowError(string error)
Show the overlay with a given error message.
static bool IsVisible
Gets whether or not the overlay is currently visible.
An overlay for displaying game status on the game client.
static StatusOverlayState State
Gets the current state of the overlay.
static void ShowStatus(string status)
Show the overlay with a given status message.
static bool GetActionDown(ControlsAction action)
Checks if the given action has just been pressed down.
Definition: Controls.cs:194
static void Hide()
Hide the overlay.
static string Text
Gets the text that the overlay is currently displaying.
Controls class. Allows for controls queries and controls injection from devices.
Definition: Controls.cs:41