3 using System.Collections.Generic;
14 public List<LootPackEntry> Entries =
new List<LootPackEntry>();
24 public int MinQuantity;
25 public int MaxQuantity;
37 public class Loot : MonoBehaviour
39 static Loot _instance;
41 public List<LootPack> Packs;
42 float ScatterSourceRadius = 0;
43 float MinScatterSpeed = 5f;
44 float MaxScatterSpeed = 10f;
46 Timeline<GameMessage> _scatterMsgs;
56 Game.PullWorldData(
"loot_table", OnLootTableRecieved);
57 _scatterMsgs.EntryPassed += OnScatterMessage;
60 void OnLootTableRecieved(
UJeli worldDataPage)
62 foreach (var packJeli
in worldDataPage.GetChildren(
"Pack"))
64 var pack =
new LootPack() { ID = packJeli.Value };
68 foreach (var entryJeli
in packJeli.GetChildren(
"Entry"))
70 string[] entryTokens = entryJeli.Value.Split(
':');
74 ItemID = entryTokens[0],
75 MinQuantity =
int.Parse(entryTokens[1]),
76 MaxQuantity =
int.Parse(entryTokens[2]),
84 public static void Scatter(Vector3 position, GameObject target,
string packId)
88 msg.WriteGameObject(target);
91 _instance._scatterMsgs[0] = msg;
94 void OnScatterMessage(Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
96 var scatterMsg = entry.Value;
97 Vector3 position = scatterMsg.ReadVector3();
98 GameObject target = scatterMsg.ReadGameObject();
99 string packId = scatterMsg.ReadString();
100 scatterMsg.FinishReading();
105 Random.seed = (int)(entry.Time * 1000);
109 foreach (var p
in Packs)
121 foreach (var e
in pack.Entries)
123 int quantity = Random.Range(e.MinQuantity, e.MaxQuantity + 1);
128 for (
int i = 0; i < quantity; i++)
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);
137 var details =
new UJeli();
138 details.AddChild(
"Target", target);
139 details.AddChild(
"ItemID", e.ItemID);
140 details.AddChild(
"Velocity", scatterVel);
A component that needs to be included in a Minigame for access to loot mechanics in the game...
A simple object for storing data in LootPack.
A simple object for storing packs of loot. LootPackEntry records item IDs and in what quantities the ...
A class for serializing game data into a stream for propagation between objects and peers...
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Unity version of Jeli markup class.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...