9 public static class UTimelineUtils
14 public static float MaxExtrapolationTimeJump = 1f;
20 public static void SetDefautTimelineFunctions ()
22 Timeline<Vector2>.TypeEncode = EncodeVector2;
23 Timeline<Vector2>.TypeDecode = DecodeVector2;
24 Timeline<Vector3>.TypeEncode = EncodeVector3;
25 Timeline<Vector3>.TypeDecode = DecodeVector3;
26 Timeline<Vector4>.TypeEncode = EncodeVector4;
27 Timeline<Vector4>.TypeDecode = DecodeVector4;
28 Timeline<Quaternion>.TypeEncode = EncodeQuaternion;
29 Timeline<Quaternion>.TypeDecode = DecodeQuaternion;
30 Timeline<Matrix4x4>.TypeEncode = EncodeMatrix4x4;
31 Timeline<Matrix4x4>.TypeDecode = DecodeMatrix4x4;
32 Timeline<Ray>.TypeEncode = EncodeRay;
33 Timeline<Ray>.TypeDecode = DecodeRay;
34 Timeline<Color>.TypeEncode = EncodeColor;
35 Timeline<Color>.TypeDecode = DecodeColor;
36 Timeline<GameObject>.TypeEncode = EncodeGameObject;
37 Timeline<GameObject>.TypeDecode = DecodeGameObject;
38 Timeline<UJeli>.TypeEncode = EncodeUJeli;
39 Timeline<UJeli>.TypeDecode = DecodeUJeli;
40 Timeline<GameMessage>.TypeEncode = EncodeGameMessage;
41 Timeline<GameMessage>.TypeDecode = DecodeGameMessage;
43 Timeline<Vector2>.TypeInterpolate = TimelineUtils.BuildLinearInterpolator<Vector2>(
44 (x, y) => x + y, (x, y) => x * y);
45 Timeline<Vector2>.TypeExtrapolate = TimelineUtils.BuildLinearExtrapolator<Vector2>(
46 (x, y) => x + y, (x, y) => x * y, MaxExtrapolationTimeJump);
47 Timeline<Vector3>.TypeInterpolate = TimelineUtils.BuildLinearInterpolator<Vector3>(
48 (x, y) => x + y, (x, y) => x * y);
49 Timeline<Vector3>.TypeExtrapolate = TimelineUtils.BuildLinearExtrapolator<Vector3>(
50 (x, y) => x + y, (x, y) => x * y, MaxExtrapolationTimeJump);
51 Timeline<Vector4>.TypeInterpolate = TimelineUtils.BuildLinearInterpolator<Vector4>(
52 (x, y) => x + y, (x, y) => x * y);
53 Timeline<Vector4>.TypeExtrapolate = TimelineUtils.BuildLinearExtrapolator<Vector4>(
54 (x, y) => x + y, (x, y) => x * y, MaxExtrapolationTimeJump);
56 Timeline<Quaternion>.TypeInterpolate = InterpolateQuaternionSlerp;
57 Timeline<Quaternion>.TypeExtrapolate = ExtrapolateQuaternionSlerp;
58 Timeline<Ray>.TypeInterpolate = InterpolateRay;
59 Timeline<Ray>.TypeExtrapolate = ExtrapolateRay;
62 public static byte[] EncodeVector2 (Vector2 value)
64 byte[] bytes =
new byte[2 *
sizeof(float)];
66 BinaryWriter bw =
new BinaryWriter(
new MemoryStream(bytes));
67 bw.Write(value.x); bw.Write(value.y);
73 public static Vector2 DecodeVector2 (byte[] bytes)
75 BinaryReader br =
new BinaryReader(
new MemoryStream(bytes));
76 var value =
new Vector2(br.ReadSingle(), br.ReadSingle());
82 public static byte[] EncodeVector3 (Vector3 value)
84 byte[] bytes =
new byte[3 *
sizeof(float)];
86 BinaryWriter bw =
new BinaryWriter(
new MemoryStream(bytes));
87 bw.Write(value.x); bw.Write(value.y); bw.Write(value.z);
93 public static Vector3 DecodeVector3 (byte[] bytes)
95 BinaryReader br =
new BinaryReader(
new MemoryStream(bytes));
96 var value =
new Vector3(br.ReadSingle(), br.ReadSingle(), br.ReadSingle());
102 public static byte[] EncodeVector4 (Vector4 value)
104 byte[] bytes =
new byte[4 *
sizeof(float)];
106 BinaryWriter bw =
new BinaryWriter(
new MemoryStream(bytes));
107 bw.Write(value.x); bw.Write(value.y); bw.Write(value.z); bw.Write(value.w);
113 public static Vector4 DecodeVector4 (byte[] bytes)
115 BinaryReader br =
new BinaryReader(
new MemoryStream(bytes));
116 var value =
new Vector4(br.ReadSingle(), br.ReadSingle(), br.ReadSingle(), br.ReadSingle());
122 public static byte[] EncodeQuaternion (Quaternion value)
124 byte[] bytes =
new byte[4 *
sizeof(float)];
126 BinaryWriter bw =
new BinaryWriter(
new MemoryStream(bytes));
127 bw.Write(value.x); bw.Write(value.y); bw.Write(value.z); bw.Write(value.w);
133 public static Quaternion DecodeQuaternion (byte[] bytes)
135 BinaryReader br =
new BinaryReader(
new MemoryStream(bytes));
136 var value =
new Quaternion(br.ReadSingle(), br.ReadSingle(), br.ReadSingle(), br.ReadSingle());
142 public static byte[] EncodeByteEnum<T> (T value)
144 return new byte[] { (byte)(
object)value };
147 public static T DecodeByteEnum<T> (byte[] bytes)
149 return (T)(object)bytes[0];
152 public static byte[] EncodeIntEnum<T> (T value)
154 return BitConverter.GetBytes((
int)(
object)value);
157 public static T DecodeIntEnum<T> (byte[] bytes)
159 return (T)(object)BitConverter.ToInt32(bytes, 0);
162 public static byte[] EncodeShortEnum<T> (T value)
164 return BitConverter.GetBytes((
short)(
object)value);
167 public static T DecodeShortEnum<T> (byte[] bytes)
169 return (T)(object)BitConverter.ToInt16(bytes, 0);
172 public static byte[] EncodeEnumByName<T> (T value)
174 return TimelineUtils.EncodeString(value.ToString());
177 public static T DecodeEnumByName<T> (byte[] bytes)
179 return (T)Enum.Parse(typeof(T), TimelineUtils.DecodeString(bytes));
182 public static byte[] EncodeGameObject (GameObject value)
187 public static GameObject DecodeGameObject (byte[] bytes)
192 public static byte[] EncodeUJeli (
UJeli value)
194 return TimelineUtils.EncodeString(value.ToString());
197 public static UJeli DecodeUJeli (byte[] bytes)
199 return UJeli.Parse(TimelineUtils.DecodeString(bytes));
202 public static byte[] EncodeGameMessage (
GameMessage value)
207 public static GameMessage DecodeGameMessage (byte[] bytes)
216 public static Vector2 InterpolateVector2Slerp (Timeline<Vector2> timeline, TimelineContext<Vector2> context)
218 return Vector3.Slerp(context.Prev.Value, context.Next.Value,
219 (
float)(context.Time - context.Prev.Time) / (
float)(context.Next.Time - context.Prev.Time));
222 public static Vector2 ExtrapolateVector2Slerp (Timeline<Vector2> timeline, TimelineContext<Vector3> context)
224 if (context.Prev.Prev != null && context.Prev.Prev.Time != context.Prev.Time)
226 return ExtrapolateVector3Slerp(context.Prev.Prev.Value, context.Prev.Value,
227 (
float)(context.Prev.Time - context.Prev.Prev.Time), (
float)(context.Time - context.Prev.Prev.Time));
229 else return context.Prev.Value;
232 public static Vector3 InterpolateVector3Slerp (Timeline<Vector3> timeline, TimelineContext<Vector3> context)
234 return Vector3.Slerp(context.Prev.Value, context.Next.Value,
235 (
float)(context.Time - context.Prev.Time) / (
float)(context.Next.Time - context.Prev.Time));
238 public static Vector3 ExtrapolateVector3Slerp (Timeline<Vector3> timeline, TimelineContext<Vector3> context)
240 if (context.Prev.Prev != null && context.Prev.Prev.Time != context.Prev.Time)
242 return ExtrapolateVector3Slerp(context.Prev.Prev.Value, context.Prev.Value,
243 (
float)(context.Prev.Time - context.Prev.Prev.Time), (
float)(context.Time - context.Prev.Prev.Time));
245 else return context.Prev.Value;
248 public static Vector3 ExtrapolateVector3Slerp (Vector3 v1, Vector3 v2,
float t12,
float t13)
253 float timeJump = Mathf.Min(MaxExtrapolationTimeJump, t13 - t12);
254 t13 = t12 + timeJump;
256 var baseRot = Quaternion.FromToRotation(v1, v2);
260 baseRot.ToAngleAxis(out baseRotAngle, out rotAxis);
262 float rotSpeed = baseRotAngle / t12;
263 float newRotAngle = rotSpeed * t13;
265 var newRot = Quaternion.AngleAxis(newRotAngle, rotAxis);
269 public static Quaternion InterpolateQuaternionSlerp (Timeline<Quaternion> timeline,
270 TimelineContext<Quaternion> context)
272 return Quaternion.Slerp(context.Prev.Value, context.Next.Value,
273 (
float)(context.Time - context.Prev.Time) / (
float)(context.Next.Time - context.Prev.Time));
276 public static Quaternion ExtrapolateQuaternionSlerp (Timeline<Quaternion> timeline,
277 TimelineContext<Quaternion> context)
279 if (context.Prev.Prev != null && context.Prev.Prev.Time != context.Prev.Time)
281 return ExtrapolateQuaternionSlerp(
282 context.Prev.Prev.Value, context.Prev.Value,
283 (
float)(context.Prev.Time - context.Prev.Prev.Time),
284 (
float)(context.Time - context.Prev.Prev.Time));
286 else return context.Prev.Value;
289 public static Quaternion ExtrapolateQuaternionSlerp (Quaternion q1, Quaternion q2,
float t12,
float t13)
294 float timeJump = Mathf.Min(MaxExtrapolationTimeJump, t13 - t12);
295 t13 = t12 + timeJump;
297 var baseRot = q2 * Quaternion.Inverse(q1);
301 baseRot.ToAngleAxis(out baseRotAngle, out rotAxis);
303 float rotSpeed = baseRotAngle / t12;
304 float newRotAngle = rotSpeed * t13;
306 var newRot = Quaternion.AngleAxis(newRotAngle, rotAxis);
310 public static float InterpolateAngleSlerp (Timeline<float> timeline, TimelineContext<float> context)
312 return Mathf.LerpAngle(context.Prev.Value, context.Next.Value,
313 (
float)(context.Time - context.Prev.Time) / (
float)(context.Next.Time - context.Prev.Time));
316 public static float ExtrapolateAngleSlerp (Timeline<float> timeline, TimelineContext<float> context)
318 if (context.Prev.Prev != null && context.Prev.Prev.Time != context.Prev.Time)
320 return ExtrapolateAngleSlerp(
321 context.Prev.Prev.Value, context.Prev.Value,
322 (
float)(context.Prev.Time - context.Prev.Prev.Time),
323 (
float)(context.Time - context.Prev.Prev.Time));
325 else return context.Prev.Value;
328 public static float ExtrapolateAngleSlerp (
float a1,
float a2,
float t12,
float t13)
333 float timeJump = Mathf.Min(MaxExtrapolationTimeJump, t13 - t12);
334 t13 = t12 + timeJump;
336 return NormalizeAngle(ExtrapolateQuaternionSlerp(
337 Quaternion.Euler(0, 0, NormalizeAngle(a1)),
338 Quaternion.Euler(0, 0, NormalizeAngle(a2)), t12, t13).eulerAngles.z);
341 public static float NormalizeAngle (
float a)
343 while (a > 180) { a -= 360; }
344 while (a < -180) { a += 360; }
349 public static byte[] EncodeMatrix4x4 (Matrix4x4 value)
351 byte[] bytes =
new byte[16 *
sizeof(float)];
353 BinaryWriter bw =
new BinaryWriter(
new MemoryStream(bytes));
354 bw.Write(value.m00); bw.Write(value.m01); bw.Write(value.m02); bw.Write(value.m03);
355 bw.Write(value.m10); bw.Write(value.m11); bw.Write(value.m12); bw.Write(value.m13);
356 bw.Write(value.m20); bw.Write(value.m21); bw.Write(value.m22); bw.Write(value.m23);
357 bw.Write(value.m30); bw.Write(value.m31); bw.Write(value.m32); bw.Write(value.m33);
363 public static Matrix4x4 DecodeMatrix4x4 (byte[] bytes)
365 var value =
new Matrix4x4();
367 BinaryReader br =
new BinaryReader(
new MemoryStream(bytes));
368 value.SetRow(0,
new Vector4(br.ReadSingle(), br.ReadSingle(), br.ReadSingle(), br.ReadSingle()));
369 value.SetRow(1,
new Vector4(br.ReadSingle(), br.ReadSingle(), br.ReadSingle(), br.ReadSingle()));
370 value.SetRow(2,
new Vector4(br.ReadSingle(), br.ReadSingle(), br.ReadSingle(), br.ReadSingle()));
371 value.SetRow(3,
new Vector4(br.ReadSingle(), br.ReadSingle(), br.ReadSingle(), br.ReadSingle()));
377 public static byte[] EncodeRay (Ray value)
379 byte[] bytes =
new byte[6 *
sizeof(float)];
381 BinaryWriter bw =
new BinaryWriter(
new MemoryStream(bytes));
382 bw.Write(value.origin.x); bw.Write(value.origin.y); bw.Write(value.origin.z);
383 bw.Write(value.direction.x); bw.Write(value.direction.y); bw.Write(value.direction.z);
389 public static Ray DecodeRay (byte[] bytes)
391 BinaryReader br =
new BinaryReader(
new MemoryStream(bytes));
393 new Vector3(br.ReadSingle(), br.ReadSingle(), br.ReadSingle()),
394 new Vector3(br.ReadSingle(), br.ReadSingle(), br.ReadSingle()));
400 public static Ray InterpolateRay (Timeline<Ray> timeline, TimelineContext<Ray> context)
402 float interpFactor = (float)(context.Time - context.Prev.Time) / (float)(context.Next.Time - context.Prev.Time);
405 Vector3.Lerp(context.Prev.Value.origin, context.Next.Value.origin, interpFactor),
406 Vector3.Slerp(context.Prev.Value.direction, context.Next.Value.direction, interpFactor));
409 public static Ray ExtrapolateRay (Timeline<Ray> timeline, TimelineContext<Ray> context)
411 if (context.Prev.Prev != null && context.Prev.Prev.Time != context.Prev.Time)
413 return context.Prev.Value;
415 else return context.Prev.Value;
418 public static byte[] EncodeColor (Color value)
420 byte[] bytes =
new byte[4 *
sizeof(float)];
422 BinaryWriter bw =
new BinaryWriter(
new MemoryStream(bytes));
423 bw.Write(value.r); bw.Write(value.g); bw.Write(value.b); bw.Write(value.a);
429 public static Color DecodeColor (byte[] bytes)
431 BinaryReader br =
new BinaryReader(
new MemoryStream(bytes));
432 var value =
new Color(br.ReadSingle(), br.ReadSingle(), br.ReadSingle(), br.ReadSingle());
438 public static bool HasPart<T> (
this TimelineEntry<T> entry, T part)
440 int valueInt = (int)Convert.ChangeType(entry.Value, typeof(
int));
441 int partInt = (int)Convert.ChangeType(part, typeof(
int));
443 return (valueInt & partInt) != 0;
446 public static bool GotPart<T> (
this TimelineEntry<T> entry, T part)
448 int valueInt = (int)Convert.ChangeType(entry.Value, typeof(
int));
449 int partInt = (int)Convert.ChangeType(part, typeof(
int));
451 return (valueInt & partInt) == partInt &&
452 (entry.Prev == null || ((int)Convert.ChangeType(entry.Prev.Value, typeof(
int)) & partInt) == 0);
455 public static bool LostPart<T> (
this TimelineEntry<T> entry, T part)
457 int valueInt = (int)Convert.ChangeType(entry.Value, typeof(
int));
458 int partInt = (int)Convert.ChangeType(part, typeof(
int));
460 return (valueInt & partInt) == 0 &&
461 (entry.Prev != null && ((int)Convert.ChangeType(entry.Prev.Value, typeof(
int)) & partInt) == partInt);
static int GetObjectIndex(GameObject go)
Gets the object index of a given object.
A class for serializing game data into a stream for propagation between objects and peers...
static GameObject GetObject(int objectIndex)
Get an object by its object index.
Unity version of Jeli markup class.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...