Liberi
An exergame built for kids with CP!
UNetUtils.cs
1 using UnityEngine;
2 using System;
3 using System.IO;
4 using Janus;
5 using Lidgren.Network;
6 
10 public static class UNetUtils
11 {
15  public static void Write (this NetBuffer msg, Vector2 v)
16  {
17  msg.Write(v.x);
18  msg.Write(v.y);
19  }
20 
24  public static void Write (this NetBuffer msg, Vector3 v)
25  {
26  msg.Write(v.x);
27  msg.Write(v.y);
28  msg.Write(v.z);
29  }
30 
34  public static void Write (this NetBuffer msg, Vector4 v)
35  {
36  msg.Write(v.x);
37  msg.Write(v.y);
38  msg.Write(v.z);
39  msg.Write(v.w);
40  }
41 
45  public static void Write (this NetBuffer msg, Quaternion q)
46  {
47  msg.Write(q.x);
48  msg.Write(q.y);
49  msg.Write(q.z);
50  msg.Write(q.w);
51  }
52 
56  public static void Write (this NetBuffer msg, Matrix4x4 m)
57  {
58  for (int i = 0; i < 16; i++)
59  {
60  msg.Write(m[i]);
61  }
62  }
63 
67  public static void Write (this NetBuffer msg, Color c)
68  {
69  msg.Write(c.r);
70  msg.Write(c.g);
71  msg.Write(c.b);
72  msg.Write(c.a);
73  }
74 
78  public static void Write (this NetBuffer msg, Ray r)
79  {
80  msg.Write(r.origin);
81  msg.Write(r.direction);
82  }
83 
87  public static void WriteGameObject (this NetBuffer self, GameObject go)
88  {
89  self.Write(Sync.GetObjectIndex(go));
90  }
91 
96  public static void WriteAll (this NetBuffer self, params object[] objs)
97  {
98  foreach (var obj in objs)
99  {
100  self.WriteObject(obj);
101  }
102  }
103 
108  public static void WriteObject (this NetBuffer self, object obj)
109  {
110  if (obj is int)
111  self.Write((int)obj);
112  else if (obj is float)
113  self.Write((float)obj);
114  else if (obj is bool)
115  self.Write((bool)obj);
116  else if (obj is string)
117  self.Write((string)obj);
118  else if (obj is Vector3)
119  self.Write((Vector3)obj);
120  else if (obj is Quaternion)
121  self.Write((Quaternion)obj);
122  else if (obj is Color)
123  self.Write((Color)obj);
124  else if (obj is Vector4)
125  self.Write((Vector4)obj);
126  else if (obj is Vector2)
127  self.Write((Vector2)obj);
128  else if (obj is Matrix4x4)
129  self.Write((Matrix4x4)obj);
130  else if (obj is Ray)
131  self.Write((Ray)obj);
132  else if (obj is GameObject)
133  self.WriteGameObject((GameObject)obj);
134  else if (obj is byte)
135  self.Write((byte)obj);
136  else if (obj is uint)
137  self.Write((uint)obj);
138  else if (obj is short)
139  self.Write((short)obj);
140  else if (obj is ushort)
141  self.Write((ushort)obj);
142  else if (obj is long)
143  self.Write((long)obj);
144  else if (obj is ulong)
145  self.Write((ulong)obj);
146  else if (obj is double)
147  self.Write((double)obj);
148  }
149 
153  public static Vector2 ReadVector2 (this NetBuffer msg)
154  {
155  return new Vector2(msg.ReadFloat(), msg.ReadFloat());
156  }
157 
161  public static Vector3 ReadVector3 (this NetBuffer msg)
162  {
163  return new Vector3(msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat());
164  }
165 
169  public static Vector4 ReadVector4 (this NetBuffer msg)
170  {
171  return new Vector4(msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat());
172  }
173 
177  public static Quaternion ReadQuaternion (this NetBuffer msg)
178  {
179  return new Quaternion(msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat());
180  }
181 
185  public static Matrix4x4 ReadMatrix4x4 (this NetBuffer msg)
186  {
187  Matrix4x4 m = new Matrix4x4();
188 
189  for (int i = 0; i < 16; i++)
190  {
191  m[i] = msg.ReadFloat();
192  }
193 
194  return m;
195  }
196 
200  public static Color ReadColor (this NetBuffer msg)
201  {
202  return new Color(msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat());
203  }
204 
208  public static Ray ReadRay (this NetBuffer msg)
209  {
210  return new Ray(msg.ReadVector3(), msg.ReadVector3());
211  }
212 
216  public static GameObject ReadGameObject (this NetBuffer self)
217  {
218  return Sync.GetObject(self.ReadInt32());
219  }
220 }
static int GetObjectIndex(GameObject go)
Gets the object index of a given object.
Definition: Sync.Static.cs:190
static GameObject GetObject(int objectIndex)
Get an object by its object index.
Definition: Sync.Static.cs:143
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13