Liberi
An exergame built for kids with CP!
Loot.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using Janus;
5 
10 [System.Serializable]
11 public class LootPack
12 {
13  public string ID;
14  public List<LootPackEntry> Entries = new List<LootPackEntry>();
15 }
16 
20 [System.Serializable]
21 public class LootPackEntry
22 {
23  public string ItemID;
24  public int MinQuantity;
25  public int MaxQuantity;
26 }
27 
37 public class Loot : MonoBehaviour
38 {
39  static Loot _instance;
40 
41  public List<LootPack> Packs;
42  float ScatterSourceRadius = 0;
43  float MinScatterSpeed = 5f;
44  float MaxScatterSpeed = 10f;
45 
46  Timeline<GameMessage> _scatterMsgs;
47 
48  void Awake()
49  {
50  _instance = this;
51  _scatterMsgs = Sync.CreateEvent<GameMessage>();
52  }
53 
54  void OnSpawn()
55  {
56  Game.PullWorldData("loot_table", OnLootTableRecieved);
57  _scatterMsgs.EntryPassed += OnScatterMessage;
58  }
59 
60  void OnLootTableRecieved(UJeli worldDataPage)
61  {
62  foreach (var packJeli in worldDataPage.GetChildren("Pack"))
63  {
64  var pack = new LootPack() { ID = packJeli.Value };
65 
66  pack.Entries.Clear();
67 
68  foreach (var entryJeli in packJeli.GetChildren("Entry"))
69  {
70  string[] entryTokens = entryJeli.Value.Split(':');
71 
72  pack.Entries.Add(new LootPackEntry()
73  {
74  ItemID = entryTokens[0],
75  MinQuantity = int.Parse(entryTokens[1]),
76  MaxQuantity = int.Parse(entryTokens[2]),
77  });
78  }
79 
80  Packs.Add(pack);
81  }
82  }
83 
84  public static void Scatter(Vector3 position, GameObject target, string packId)
85  {
86  var msg = new GameMessage();
87  msg.Write(position);
88  msg.WriteGameObject(target);
89  msg.Write(packId);
90 
91  _instance._scatterMsgs[0] = msg;
92  }
93 
94  void OnScatterMessage(Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
95  {
96  var scatterMsg = entry.Value;
97  Vector3 position = scatterMsg.ReadVector3();
98  GameObject target = scatterMsg.ReadGameObject();
99  string packId = scatterMsg.ReadString();
100  scatterMsg.FinishReading();
101 
102  if (target == null)
103  return;
104 
105  Random.seed = (int)(entry.Time * 1000);
106 
107  LootPack pack = null;
108 
109  foreach (var p in Packs)
110  {
111  if (p.ID == packId)
112  {
113  pack = p;
114  break;
115  }
116  }
117 
118  if (pack == null)
119  return;
120 
121  foreach (var e in pack.Entries)
122  {
123  int quantity = Random.Range(e.MinQuantity, e.MaxQuantity + 1);
124 
125  if (quantity <= 0)
126  continue;
127 
128  for (int i = 0; i < quantity; i++)
129  {
130  Vector2 scatterOffset = Random.insideUnitCircle;
131  Vector3 scatterPos = position +
132  new Vector3(scatterOffset.x, scatterOffset.y, 0f) * ScatterSourceRadius;
133  float scatterAngle = Random.Range(0f, 360f);
134  Vector3 scatterDir = Quaternion.Euler(0f, 0f, scatterAngle) * Vector3.up;
135  Vector3 scatterVel = scatterDir * Random.Range(MinScatterSpeed, MaxScatterSpeed);
136 
137  var details = new UJeli();
138  details.AddChild("Target", target);
139  details.AddChild("ItemID", e.ItemID);
140  details.AddChild("Velocity", scatterVel);
141 
142  Sync.SpawnLocal("item_pickup", scatterPos, details);
143  }
144  }
145  }
146 }
A component that needs to be included in a Minigame for access to loot mechanics in the game...
Definition: Loot.cs:37
A simple object for storing data in LootPack.
Definition: Loot.cs:21
A simple object for storing packs of loot. LootPackEntry records item IDs and in what quantities the ...
Definition: Loot.cs:11
A class for serializing game data into a stream for propagation between objects and peers...
Definition: GameMessage.cs:14
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:623
Unity version of Jeli markup class.
Definition: UJeli.cs:10
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13