Liberi
An exergame built for kids with CP!
StickerManager.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 
9 public class StickerManager : MonoBehaviour
10 {
11  static StickerManager _instance;
12  Dictionary<string, List<Sticker>> _stickers = new Dictionary<string, List<Sticker>>();
13  List<string> _shownStickers = new List<string>();
14 
15  void Awake()
16  {
17  _instance = this;
18  }
19 
20  public static Transform Canvas
21  {
22  get { return _instance.transform; }
23  }
24 
28  public static void RegisterSticker(Sticker sticker)
29  {
30  if (!_instance._stickers.ContainsKey(sticker.Tag))
31  _instance._stickers.Add(sticker.Tag, new List<Sticker>());
32 
33  _instance._stickers[sticker.Tag].Add(sticker);
34 
35  sticker.Shown = _instance._shownStickers.Contains(sticker.Tag);
36  }
37 
41  public static void UnregisterSticker(Sticker sticker)
42  {
43  _instance._stickers[sticker.Tag].Remove(sticker);
44  }
45 
49  public static void ShowStickers(string tag)
50  {
51  if (_instance._shownStickers.Contains(tag))
52  return;
53 
54  _instance._shownStickers.Add(tag);
55 
56  if (!_instance._stickers.ContainsKey(tag))
57  return;
58 
59  for (int i = 0; i < _instance._stickers[tag].Count; i++)
60  _instance._stickers[tag][i].Shown = true;
61  }
62 
66  public static void HideStickers(string tag)
67  {
68  if (!_instance._stickers.ContainsKey(tag))
69  return;
70 
71  for (int i = 0; i < _instance._stickers[tag].Count; i++)
72  _instance._stickers[tag][i].Shown = false;
73 
74  _instance._shownStickers.Remove(tag);
75  }
76 
80  public static void HideAllStickers()
81  {
82  for (int i = 0; i < _instance._shownStickers.Count; i++)
83  {
84  if (!_instance._stickers.ContainsKey(_instance._shownStickers[i]))
85  continue;
86 
87  for (int j = 0; j < _instance._stickers[_instance._shownStickers[i]].Count; j++)
88  _instance._stickers[_instance._shownStickers[i]][j].Shown = false;
89  }
90 
91  _instance._shownStickers.Clear();
92  }
93 }
static void HideAllStickers()
Hide all Stickers regardless of tag.
The manager class of all Sticker objects. Stickers are generic GUI objects used for various purposes ...
static void HideStickers(string tag)
Hide all Stickers for a given tag.
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with t...
Definition: Sticker.cs:10
static void UnregisterSticker(Sticker sticker)
Unregister a sticker when a sticker is destroyed and not to be used any more (such as a player leavin...
bool Shown
Whether or not this sticker is shown at all. Used in conjunction with Tag system to enabled/disable t...
Definition: Sticker.cs:38
static void RegisterSticker(Sticker sticker)
Register a sticker with the manager so that the manager know about the stickers existence.
string Tag
A Tag used to identify groups of sticker. Eg, "player_names" could be the tag for LabelStickers attac...
Definition: Sticker.cs:24
static void ShowStickers(string tag)
Show all Stickers for a given tag.