3 using System.Collections.Generic;
14 public string Currency;
23 [AddComponentMenu(
"Liberi/Vendor")]
27 public string VendorName;
28 public AudioClip PurchaseSound;
29 public AudioClip EquipSound;
30 public AudioClip ErrorSound;
31 public AudioClip MenuScrollSound;
33 Timeline<GameMessage> _purchaseAttempts;
34 Timeline<GameMessage> _equipAttempts;
40 bool _selectionEquipped;
43 float _timeoutLength = 0.1f;
50 _inspectable = GetComponent<Inspectable>();
57 _purchaseAttempts.EntryPassed += OnPurchaseAttempted;
58 _equipAttempts.EntryPassed += OnEquipAttempt;
70 void OnPurchaseAttempted(Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
74 string playerID = purchaseMessage.ReadString();
75 string itemID = purchaseMessage.ReadString();
80 if (CanAfford(profile, itemInfo))
82 if (!profile.Inventory[
"Items"].HasChild(itemID))
83 profile.Inventory[
"Items"].AddChild(itemID, 0);
85 profile.Inventory[
"Items"][itemID].IntValue++;
89 profile.Inventory[
"Currency"][itemInfo.Currency].IntValue -= itemInfo.Price;
93 itemMsg.Write((byte)PlayerProfileOperationType.InventoryUpdate);
94 itemMsg.Write(
"Items/" + itemID);
95 itemMsg.Write(profile.Inventory[
"Items"][itemID].Value);
100 currencyMsg.Write((byte)PlayerProfileOperationType.InventoryUpdate);
101 currencyMsg.Write(
"Currency/" + itemInfo.Currency);
102 currencyMsg.Write(profile.Inventory[
"Currency"][itemInfo.Currency].Value);
114 void OnEquipAttempt(Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
118 string playerID = equipMessage.ReadString();
119 string itemID = equipMessage.ReadString();
124 if (itemType ==
"hero")
127 string slot = heroItem.
Slot.ToString().ToLower();
129 if (profile.Inventory[
"Items"].HasChild(itemID))
134 stylesMsg.Write((byte)PlayerProfileOperationType.StylesUpdate);
135 stylesMsg.Write(
"hero");
136 stylesMsg.Write(slot);
137 stylesMsg.Write(itemID);
141 profile.Styles[
"hero"][slot].Value = itemID;
145 else if (itemType ==
"guardian")
150 stylesMsg.Write((byte)PlayerProfileOperationType.StylesUpdate);
151 stylesMsg.Write(
"guardian");
152 stylesMsg.Write(
"weapon");
153 stylesMsg.Write(itemID);
157 profile.Styles[
"guardian"][
"weapon"].Value = itemID;
163 if (actionType == ControlsAction.Primary)
165 if (_selectionOwned && !_selectionEquipped && (_vendorItems[_selectionIndex].
Item.
Equippable))
167 else if (!_selectionOwned)
170 else if (actionType == ControlsAction.Back)
180 if (actionType == ControlsAction.Primary)
182 if (_selectionOwned && !_selectionEquipped)
184 else if (!_selectionOwned && CanAfford(Game.LocalPlayerProfile, _vendorItems[_selectionIndex]))
187 else if (actionType == ControlsAction.Back)
197 if (!profile.Inventory[
"Currency"].HasChild(
"libi"))
200 return profile.Inventory[
"Currency"][itemInfo.Currency].IntValue >= itemInfo.Price;
203 void OnVendorDataReceived(
UJeli vendorData)
205 var inventoryData = vendorData[
"Inventory"];
207 if (inventoryData != null)
209 var itemDatas = inventoryData.GetChildren(
"Item");
212 for (
int i = 0; i < itemDatas.Length; i++)
214 var itemData = itemDatas[i];
218 ItemID = itemData.Value,
219 Price = itemData[
"Price"].IntValue,
220 Currency = itemData[
"Currency"].Value,
223 _vendorItems[i] = item;
230 return _vendorItems.Where(i => i.ItemID == itemID).FirstOrDefault();
233 void OnStartInspecting()
237 StartCoroutine(ActionTimeout());
240 UpdateSelectionOwned(_vendorItems[_selectionIndex]);
241 StoreUIManager.UpdateSelectionIndex(_selectionIndex, _selectionOwned);
244 IEnumerator ActionTimeout()
246 _actionTimedout =
true;
247 yield
return new WaitForSeconds(_timeoutLength);
248 _actionTimedout =
false;
256 if (_inspectable.IsInspecting && !_actionTimedout)
260 if (!_selectionOwned && CanAfford(Game.LocalPlayerProfile, _vendorItems[_selectionIndex]))
262 MakePurchase(_vendorItems[_selectionIndex]);
264 else if (_selectionOwned && (_vendorItems[_selectionIndex].
Item.
Equippable))
266 EquipItem(_vendorItems[_selectionIndex]);
271 _inspectable.StopInspecting();
276 void OnStopInspecting()
283 void OnScroll(Vector3 scrollDir)
285 int newSelectionIndex = _selectionIndex + (int)scrollDir.x + (
int)scrollDir.y * -4;
287 if (newSelectionIndex >= _vendorItems.Length || newSelectionIndex < 0)
290 _selectionIndex = newSelectionIndex;
291 UpdateSelectionOwned(_vendorItems[_selectionIndex]);
292 StoreUIManager.UpdateSelectionIndex(_selectionIndex, _selectionOwned);
293 this.PlayPooledSound(MenuScrollSound);
298 _selectionOwned = Game.LocalPlayerProfile.Inventory[
"Items"].HasChild(itemInfo.ItemID);
301 _selectionEquipped = Game.LocalPlayerProfile.Styles[itemInfo.Item.
Type].GetChildValues<
string>(s => s).Contains(itemInfo.ItemID);
303 _selectionEquipped =
false;
310 equipAttempt.Write(Game.LocalPlayerID);
311 equipAttempt.Write(itemInfo.ItemID);
313 _equipAttempts[0] = equipAttempt;
317 this.PlayPooledSound(EquipSound);
324 purchaseMessage.Write(Game.LocalPlayerID);
325 purchaseMessage.Write(itemInfo.ItemID);
327 _purchaseAttempts[0] = purchaseMessage;
332 if (!profile.Inventory[
"Items"].HasChild(itemInfo.ItemID))
333 profile.Inventory[
"Items"].AddChild(itemInfo.ItemID, 0);
335 profile.Inventory[
"Items"][itemInfo.ItemID].IntValue++;
337 UpdateSelectionOwned(itemInfo);
338 StoreUIManager.UpdateSelectionIndex(_selectionIndex, _selectionOwned);
344 this.PlayPooledSound(PurchaseSound);
Derived class for storing Hero clothing items.
static string GetString(string key, SystemLanguage language=SystemLanguage.Unknown)
Gets the localized string for the given string key.
static GameServer Instance
Gets the sole instance of this game server.
void PullWorldData(string pageName, WorldDataReceivedHandler callback, bool useCache=false)
Requests a specific page of world data from the world server.
void PullWorldData(string pageName, WorldDataReceivedHandler callback, bool useCache=false)
Requests a specific page of world data from the world server.
static void UnregisterActionInfoProvider(ControlsAction action, IActionInfoProvider actionInfoProvider)
Unregister an action info provider.
bool IsActionEnabled(ControlsAction actionType)
Gets whether or not the given action is enabled.
The Vendor component. Used for making shops. Currently it just does way too much and should have it's...
A Class for storing items. Can be used as is or be derived from. See GemItem or GuardianWeapon for ex...
virtual string Type
Derived classes should override this property with a relevant string used for comparisons related to ...
static bool GetActionDown(ControlsAction action)
Checks if the given action has just been pressed down.
void PushPlayerData(string playerid, string tablePath, string propertyName, string propertyValue)
Pushes a single change to a player's persistent data.
virtual bool Equippable
Derived classes should override this property to return true if they are equippable.
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 ...
PlayerProfile GetPlayerProfile(string playerId)
Get the profile of the player with the given ID.
static GameClient Instance
Gets the sole instance of the game client.
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...
Something which can be inspected by the player.
static void RegisterActionInfoProvider(ControlsAction action, IActionInfoProvider actionInfoProvider)
Register an action info provider.
string GetActionCaption(ControlsAction actionType)
Gets the caption to use for the given action.
Class to manage the visual representation of the inventory screen.
Unity version of Jeli markup class.
string Slot
Which equipment slot this item is for.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Controls class. Allows for controls queries and controls injection from devices.