Liberi
An exergame built for kids with CP!
Vendor.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using System.Linq;
5 using System.Net;
6 using Lidgren.Network;
7 using Janus;
8 
9 [System.Serializable]
10 public class VendorItemInfo
11 {
12  public string ItemID;
13  public int Price;
14  public string Currency;
15  public Item Item { get { return ItemRegistry.GetItem<Item>(ItemID); } }
16 }
17 
23 [AddComponentMenu("Liberi/Vendor")]
24 [RequireComponent(typeof(Inspectable))]
25 public class Vendor : MonoBehaviour, IActionInfoProvider
26 {
27  public string VendorName;
28  public AudioClip PurchaseSound;
29  public AudioClip EquipSound;
30  public AudioClip ErrorSound;
31  public AudioClip MenuScrollSound;
32 
33  Timeline<GameMessage> _purchaseAttempts;
34  Timeline<GameMessage> _equipAttempts;
35 
36  VendorItemInfo[] _vendorItems;
37  Inspectable _inspectable;
38  int _selectionIndex;
39  bool _selectionOwned;
40  bool _selectionEquipped;
41 
42  bool _actionTimedout;
43  float _timeoutLength = 0.1f;
44 
45  void Awake()
46  {
47  _purchaseAttempts = Sync.CreateEvent<GameMessage>();
48  _equipAttempts = Sync.CreateEvent<GameMessage>();
49  _vendorItems = new VendorItemInfo[0];
50  _inspectable = GetComponent<Inspectable>();
51  }
52 
53  void OnSpawn()
54  {
55  if (Game.IsServer)
56  {
57  _purchaseAttempts.EntryPassed += OnPurchaseAttempted;
58  _equipAttempts.EntryPassed += OnEquipAttempt;
59  GameServer.Instance.PullWorldData(name, OnVendorDataReceived);
60  return;
61  }
62 
63  GameClient.Instance.PullWorldData(name, OnVendorDataReceived);
64  }
65 
70  void OnPurchaseAttempted(Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
71  {
72  GameMessage purchaseMessage = entry.Value;
73 
74  string playerID = purchaseMessage.ReadString();
75  string itemID = purchaseMessage.ReadString();
76 
77  VendorItemInfo itemInfo = GetVendorItemInfoByID(itemID);
79 
80  if (CanAfford(profile, itemInfo))
81  {
82  if (!profile.Inventory["Items"].HasChild(itemID))
83  profile.Inventory["Items"].AddChild(itemID, 0);
84 
85  profile.Inventory["Items"][itemID].IntValue++;
86 
87  GameServer.Instance.PushPlayerData(playerID, "Inventory", "Items/" + itemID, profile.Inventory["Items"][itemID].Value);
88 
89  profile.Inventory["Currency"][itemInfo.Currency].IntValue -= itemInfo.Price;
90  GameServer.Instance.PushPlayerData(playerID, "Inventory", "Currency/" + itemInfo.Currency, profile.Inventory["Currency"][itemInfo.Currency].Value);
91 
92  GameMessage itemMsg = new GameMessage();
93  itemMsg.Write((byte)PlayerProfileOperationType.InventoryUpdate);
94  itemMsg.Write("Items/" + itemID);
95  itemMsg.Write(profile.Inventory["Items"][itemID].Value);
96 
97  GameServer.Instance.SendPlayerProfileOperation(profile, itemMsg);
98 
99  GameMessage currencyMsg = new GameMessage();
100  currencyMsg.Write((byte)PlayerProfileOperationType.InventoryUpdate);
101  currencyMsg.Write("Currency/" + itemInfo.Currency);
102  currencyMsg.Write(profile.Inventory["Currency"][itemInfo.Currency].Value);
103 
104  GameServer.Instance.SendPlayerProfileOperation(profile, currencyMsg);
105  }
106  }
107 
114  void OnEquipAttempt(Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
115  {
116  GameMessage equipMessage = entry.Value;
117 
118  string playerID = equipMessage.ReadString();
119  string itemID = equipMessage.ReadString();
120  string itemType = ItemRegistry.GetItem<Item>(itemID).Type;
121 
123 
124  if (itemType == "hero")
125  {
126  HeroItem heroItem = ItemRegistry.GetItem<HeroItem>(itemID);
127  string slot = heroItem.Slot.ToString().ToLower();
128 
129  if (profile.Inventory["Items"].HasChild(itemID))
130  {
131  GameServer.Instance.PushPlayerData(playerID, "Styles", "hero/" + slot, itemID);
132 
133  GameMessage stylesMsg = new GameMessage();
134  stylesMsg.Write((byte)PlayerProfileOperationType.StylesUpdate);
135  stylesMsg.Write("hero");
136  stylesMsg.Write(slot);
137  stylesMsg.Write(itemID);
138 
139  GameServer.Instance.SendPlayerProfileOperation(profile, stylesMsg, true);
140 
141  profile.Styles["hero"][slot].Value = itemID;
142  }
143  }
144 
145  else if (itemType == "guardian")
146  {
147  GameServer.Instance.PushPlayerData(playerID, "Styles", "guardian/weapon", itemID);
148 
149  GameMessage stylesMsg = new GameMessage();
150  stylesMsg.Write((byte)PlayerProfileOperationType.StylesUpdate);
151  stylesMsg.Write("guardian");
152  stylesMsg.Write("weapon");
153  stylesMsg.Write(itemID);
154 
155  GameServer.Instance.SendPlayerProfileOperation(profile, stylesMsg, true);
156 
157  profile.Styles["guardian"]["weapon"].Value = itemID;
158  }
159  }
160 
161  public string GetActionCaption(ControlsAction actionType)
162  {
163  if (actionType == ControlsAction.Primary)
164  {
165  if (_selectionOwned && !_selectionEquipped && (_vendorItems[_selectionIndex].Item.Equippable))
166  return Localizer.GetString("caption.equip");
167  else if (!_selectionOwned)
168  return Localizer.GetString("caption.buy");
169  }
170  else if (actionType == ControlsAction.Back)
171  {
172  return Localizer.GetString("caption.close"); ;
173  }
174 
175  return "";
176  }
177 
178  public bool IsActionEnabled(ControlsAction actionType)
179  {
180  if (actionType == ControlsAction.Primary)
181  {
182  if (_selectionOwned && !_selectionEquipped)
183  return true;
184  else if (!_selectionOwned && CanAfford(Game.LocalPlayerProfile, _vendorItems[_selectionIndex]))
185  return true;
186  }
187  else if (actionType == ControlsAction.Back)
188  {
189  return true;
190  }
191 
192  return false;
193  }
194 
195  bool CanAfford(PlayerProfile profile, VendorItemInfo itemInfo)
196  {
197  if (!profile.Inventory["Currency"].HasChild("libi"))
198  return false;
199 
200  return profile.Inventory["Currency"][itemInfo.Currency].IntValue >= itemInfo.Price;
201  }
202 
203  void OnVendorDataReceived(UJeli vendorData)
204  {
205  var inventoryData = vendorData["Inventory"];
206 
207  if (inventoryData != null)
208  {
209  var itemDatas = inventoryData.GetChildren("Item");
210  _vendorItems = new VendorItemInfo[itemDatas.Length];
211 
212  for (int i = 0; i < itemDatas.Length; i++)
213  {
214  var itemData = itemDatas[i];
215 
216  var item = new VendorItemInfo()
217  {
218  ItemID = itemData.Value,
219  Price = itemData["Price"].IntValue,
220  Currency = itemData["Currency"].Value,
221  };
222 
223  _vendorItems[i] = item;
224  }
225  }
226  }
227 
228  VendorItemInfo GetVendorItemInfoByID(string itemID)
229  {
230  return _vendorItems.Where(i => i.ItemID == itemID).FirstOrDefault();
231  }
232 
233  void OnStartInspecting()
234  {
235  Controls.RegisterActionInfoProvider(ControlsAction.Primary, this);
236  Controls.RegisterActionInfoProvider(ControlsAction.Back, this);
237  StartCoroutine(ActionTimeout());
238  _selectionIndex = 0;
239  StoreUIManager.Show(_vendorItems, VendorName);
240  UpdateSelectionOwned(_vendorItems[_selectionIndex]);
241  StoreUIManager.UpdateSelectionIndex(_selectionIndex, _selectionOwned);
242  }
243 
244  IEnumerator ActionTimeout()
245  {
246  _actionTimedout = true;
247  yield return new WaitForSeconds(_timeoutLength);
248  _actionTimedout = false;
249  }
250 
251  void Update()
252  {
253  if (Game.IsServer)
254  return;
255 
256  if (_inspectable.IsInspecting && !_actionTimedout)
257  {
258  if (Controls.GetActionDown(ControlsAction.Primary))
259  {
260  if (!_selectionOwned && CanAfford(Game.LocalPlayerProfile, _vendorItems[_selectionIndex]))
261  {
262  MakePurchase(_vendorItems[_selectionIndex]);
263  }
264  else if (_selectionOwned && (_vendorItems[_selectionIndex].Item.Equippable))
265  {
266  EquipItem(_vendorItems[_selectionIndex]);
267  }
268  }
269  else if (Controls.GetActionDown(ControlsAction.Back))
270  {
271  _inspectable.StopInspecting();
272  }
273  }
274  }
275 
276  void OnStopInspecting()
277  {
278  Controls.UnregisterActionInfoProvider(ControlsAction.Primary, this);
279  Controls.UnregisterActionInfoProvider(ControlsAction.Back, this);
280  StoreUIManager.Hide();
281  }
282 
283  void OnScroll(Vector3 scrollDir)
284  {
285  int newSelectionIndex = _selectionIndex + (int)scrollDir.x + (int)scrollDir.y * -4;
286 
287  if (newSelectionIndex >= _vendorItems.Length || newSelectionIndex < 0)
288  return;
289 
290  _selectionIndex = newSelectionIndex;
291  UpdateSelectionOwned(_vendorItems[_selectionIndex]);
292  StoreUIManager.UpdateSelectionIndex(_selectionIndex, _selectionOwned);
293  this.PlayPooledSound(MenuScrollSound);
294  }
295 
296  void UpdateSelectionOwned(VendorItemInfo itemInfo)
297  {
298  _selectionOwned = Game.LocalPlayerProfile.Inventory["Items"].HasChild(itemInfo.ItemID);
299 
300  if (_selectionOwned)
301  _selectionEquipped = Game.LocalPlayerProfile.Styles[itemInfo.Item.Type].GetChildValues<string>(s => s).Contains(itemInfo.ItemID);
302  else
303  _selectionEquipped = false;
304  }
305 
306  private void EquipItem(VendorItemInfo itemInfo)
307  {
308  GameMessage equipAttempt = new GameMessage();
309 
310  equipAttempt.Write(Game.LocalPlayerID);
311  equipAttempt.Write(itemInfo.ItemID);
312 
313  _equipAttempts[0] = equipAttempt;
314 
315  StoreUIManager.BounceSelectedIcon();
316 
317  this.PlayPooledSound(EquipSound);
318  }
319 
320  private void MakePurchase(VendorItemInfo itemInfo)
321  {
322  GameMessage purchaseMessage = new GameMessage();
323 
324  purchaseMessage.Write(Game.LocalPlayerID);
325  purchaseMessage.Write(itemInfo.ItemID);
326 
327  _purchaseAttempts[0] = purchaseMessage;
328 
329  // Update the local state instantly so the item appears bought (assumes no cheating, server can correct otherwise)
330  PlayerProfile profile = Game.LocalPlayerProfile;
331 
332  if (!profile.Inventory["Items"].HasChild(itemInfo.ItemID))
333  profile.Inventory["Items"].AddChild(itemInfo.ItemID, 0);
334 
335  profile.Inventory["Items"][itemInfo.ItemID].IntValue++;
336 
337  UpdateSelectionOwned(itemInfo);
338  StoreUIManager.UpdateSelectionIndex(_selectionIndex, _selectionOwned);
339  StoreUIManager.BounceSelectedIcon();
340 
341  if (itemInfo.Item.Equippable)
342  EquipItem(itemInfo);
343 
344  this.PlayPooledSound(PurchaseSound);
345  }
346 }
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
static GameServer Instance
Gets the sole instance of this game server.
Definition: GameServer.cs:95
void PullWorldData(string pageName, WorldDataReceivedHandler callback, bool useCache=false)
Requests a specific page of world data from the world server.
Definition: GameServer.cs:592
void PullWorldData(string pageName, WorldDataReceivedHandler callback, bool useCache=false)
Requests a specific page of world data from the world server.
Definition: GameClient.cs:726
static void UnregisterActionInfoProvider(ControlsAction action, IActionInfoProvider actionInfoProvider)
Unregister an action info provider.
Definition: Controls.cs:100
Localization manager.
Definition: Localizer.cs:9
Main game server class.
Definition: GameServer.cs:19
bool IsActionEnabled(ControlsAction actionType)
Gets whether or not the given action is enabled.
Definition: Vendor.cs:178
The Vendor component. Used for making shops. Currently it just does way too much and should have it's...
Definition: Vendor.cs:25
A Class for storing items. Can be used as is or be derived from. See GemItem or GuardianWeapon for ex...
Definition: Item.cs:8
virtual string Type
Derived classes should override this property with a relevant string used for comparisons related to ...
Definition: Item.cs:28
static bool GetActionDown(ControlsAction action)
Checks if the given action has just been pressed down.
Definition: Controls.cs:194
void PushPlayerData(string playerid, string tablePath, string propertyName, string propertyValue)
Pushes a single change to a player's persistent data.
Definition: GameServer.cs:661
virtual bool Equippable
Derived classes should override this property to return true if they are equippable.
Definition: Item.cs:33
Interface for classes which provide information for an action.
A class that loads all Item Serializeable Objects from the Resources folder and provides the ability ...
Definition: ItemRegistry.cs:9
PlayerProfile GetPlayerProfile(string playerId)
Get the profile of the player with the given ID.
Definition: GameServer.cs:441
static GameClient Instance
Gets the sole instance of the game client.
Definition: GameClient.cs:136
Stores data related to the player profile. Loads from a World Data file and provides runtime operatio...
A class for serializing game data into a stream for propagation between objects and peers...
Definition: GameMessage.cs:14
Main game client class.
Definition: GameClient.cs:16
Something which can be inspected by the player.
Definition: Inspectable.cs:15
static void RegisterActionInfoProvider(ControlsAction action, IActionInfoProvider actionInfoProvider)
Register an action info provider.
Definition: Controls.cs:90
string GetActionCaption(ControlsAction actionType)
Gets the caption to use for the given action.
Definition: Vendor.cs:161
Class to manage the visual representation of the inventory screen.
Unity version of Jeli markup class.
Definition: UJeli.cs:10
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
Controls class. Allows for controls queries and controls injection from devices.
Definition: Controls.cs:41