Liberi
An exergame built for kids with CP!
StoreUIManager.cs
1 using UnityEngine;
2 using UnityEngine.UI;
3 using System.Collections;
4 
8 public class StoreUIManager : MonoBehaviour
9 {
10  static StoreUIManager _instance;
11 
12  Animator _animator;
13  int _isShownAnimParam = Animator.StringToHash("IsShown");
14  InventoryTile[] _inventoryTiles = new InventoryTile[20];
15  int _currentSelectionIndex;
16 
17  Text _vendorName;
18  Text _itemName;
19  Text _itemPrice;
20  Text _itemDescription;
21  Image _currencyIcon;
22 
23  void Awake ()
24  {
25  _instance = this;
26  _animator = GetComponent<Animator>();
27 
28  _vendorName = transform.FindChild("vendor_name").GetComponent<Text>();
29  _itemName = transform.FindChild("item_name").GetComponent<Text>();
30  _itemPrice = transform.FindChild("item_price").GetComponent<Text>();
31  _itemDescription = transform.FindChild("item_description").GetComponent<Text>();
32  _currencyIcon = transform.FindChild("currency_icon").GetComponent<Image>();
33  }
34 
35  void Start ()
36  {
37  Transform grid = transform.FindChild("grid");
38 
39  for (int i = 0; i < _inventoryTiles.Length; i++)
40  {
41  InventoryTile newTile = Sync.SpawnLocal("inventory_tile", Vector3.zero).GetComponent<InventoryTile>();
42  newTile.transform.SetParent(grid, false);
43  _inventoryTiles[i] = newTile;
44  }
45  }
46 
47  public static void Show (VendorItemInfo[] itemInfos, string vendorName)
48  {
49  _instance._animator.SetBool(_instance._isShownAnimParam, true);
50  _instance._vendorName.text = vendorName;
51 
52  for (int i = 0; i < itemInfos.Length; i++)
53  {
54  InventoryTile tile = _instance._inventoryTiles[i];
55  tile.gameObject.SetActive(true);
56 
57  if (itemInfos[i].Item.Type == "hero")
58  {
59  HeroItem heroItem = ItemRegistry.GetItem<HeroItem>(itemInfos[i].ItemID);
60 
61  tile.ItemName = Localizer.GetString(heroItem.DisplayNameID);
62  tile.ItemDescription = Localizer.GetString(heroItem.DescriptionID);
63  tile.ItemPrice = itemInfos[i].Price;
64  tile.ResetRotationAndScale();
65 
66  if (heroItem.Slot == "hands")
67  {
68  tile.FrontIcon = heroItem.PrimarySprite;
69  tile.BackIcon = heroItem.SecondarySprite;
70  }
71  else if (heroItem.Slot == "feet")
72  {
73  tile.FrontIcon = heroItem.PrimarySprite;
74  tile.BackIcon = heroItem.PrimarySprite;
75  }
76  else
77  {
78  tile.PrimaryIcon = heroItem.GUISprite;
79  }
80  }
81 
82  if (itemInfos[i].Item.Type == "guardian")
83  {
84  GuardianWeapon weapon = ItemRegistry.GetItem<GuardianWeapon>(itemInfos[i].ItemID);
85 
86  tile.ItemName = Localizer.GetString(weapon.DisplayNameID);
87  tile.ItemDescription = Localizer.GetString(weapon.DescriptionID);
88  tile.ItemPrice = itemInfos[i].Price;
89  tile.PrimaryIcon = weapon.GUISprite;
90 
91  // Guardian weapons need to display different than other items so they are rotated and scaled appropriately.
92  if (weapon.AttackStyle == GuardianWeaponType.Ranged)
93  tile.RotateAndScale(45, 0.55f);
94  else
95  tile.RotateAndScale(-45, 0.55f);
96  }
97  }
98 
99  // Deactivate all the unused tiles
100  for (int i = itemInfos.Length; i < _instance._inventoryTiles.Length; i++)
101  {
102  InventoryTile tile = _instance._inventoryTiles[i];
103  tile.gameObject.SetActive(false);
104  }
105  }
106 
107  public static void UpdateSelectionIndex (int newSelectionIndex, bool isOwned)
108  {
109  _instance._inventoryTiles[_instance._currentSelectionIndex].SetSelected(false);
110  _instance._inventoryTiles[newSelectionIndex].SetSelected(true);
111  _instance._currentSelectionIndex = newSelectionIndex;
112 
113  _instance._itemName.text = _instance._inventoryTiles[newSelectionIndex].ItemName;
114  _instance._itemDescription.text = _instance._inventoryTiles[newSelectionIndex].ItemDescription;
115 
116  if (!isOwned)
117  {
118  _instance._itemPrice.text = _instance._inventoryTiles[newSelectionIndex].ItemPrice.ToString("N0");
119  _instance._currencyIcon.enabled = true;
120  }
121  else
122  {
123  _instance._itemPrice.text = "";
124  _instance._currencyIcon.enabled = false;
125  }
126  }
127 
128  public static void BounceSelectedIcon ()
129  {
130  _instance._inventoryTiles[_instance._currentSelectionIndex].Bounce();
131  }
132 
133  public static void Hide ()
134  {
135  _instance._animator.SetBool(_instance._isShownAnimParam, false);
136 
137  for (int i = 0; i < _instance._inventoryTiles.Length; i++)
138  {
139  InventoryTile tile = _instance._inventoryTiles[i];
140  tile.SetSelected(false);
141  }
142  }
143 }
Derived class for storing Hero clothing items.
Definition: HeroItem.cs:7
static string GetString(string key, SystemLanguage language=SystemLanguage.Unknown)
Gets the localized string for the given string key.
Definition: Localizer.cs:55
string DisplayNameID
The Localization ID of the Item's actual name as it will appear in inventory/shops.
Definition: Item.cs:13
Localization manager.
Definition: Localizer.cs:9
A Class for storing items. Can be used as is or be derived from. See GemItem or GuardianWeapon for ex...
Definition: Item.cs:8
void SetSelected(bool state)
Makes a tile appear selected (glowing orange selection box, slightly scaled).
virtual string Type
Derived classes should override this property with a relevant string used for comparisons related to ...
Definition: Item.cs:28
void RotateAndScale(float degrees, float scale)
Rotates the and scales the primary Icon of the tile. U Used for items that are displayed in the gui d...
Sprite GUISprite
The Sprite used to represent this item in the GUI.
Definition: Item.cs:21
A visual representation of an Inventory item. Used by the StoreUIManager class to display items the v...
Definition: InventoryTile.cs:9
Sprite PrimarySprite
The primary sprite.
Definition: HeroItem.cs:16
void Bounce()
Plays a bounce animation on the tile to indicate an action was done on it (purchase/equip, etc).
Derived class for storing Wiskin Defense weapons.
A class that loads all Item Serializeable Objects from the Resources folder and provides the ability ...
Definition: ItemRegistry.cs:9
GuardianWeaponType AttackStyle
What attack style this weapon is (Melee vs. Ranged).
void ResetRotationAndScale()
Resets the rotation and scale of the primary icon to its default values.
string DescriptionID
The Localization ID of the Item's description/flavour text.
Definition: Item.cs:17
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:623
Class to manage the visual representation of the inventory screen.
Sprite SecondarySprite
The secondary sprite (currently just for the back hand for gloves).
Definition: HeroItem.cs:20
string Slot
Which equipment slot this item is for.
Definition: HeroItem.cs:12
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13