-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathPlayerInfo.cs
93 lines (79 loc) · 2.76 KB
/
PlayerInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
using System.Collections.Generic;
using System.Linq;
using Multiplayer.API;
using Multiplayer.Common;
using UnityEngine;
using Verse;
namespace Multiplayer.Client;
public class PlayerInfo : IPlayerInfo
{
public static readonly Vector3 Invalid = new(-1, 0, -1);
public int id;
public string username;
public int latency;
public int ticksBehind;
public bool simulating;
public float frameTime;
public PlayerType type;
public PlayerStatus status;
public Color color;
public Material selectionBracketMaterial;
public int factionId;
public ulong steamId;
public string steamPersonaName;
public byte cursorSeq;
public byte map = byte.MaxValue;
public Vector3 cursor;
public Vector3 lastCursor;
public double updatedAt;
public double lastDelta;
public byte cursorIcon;
public Vector3 dragStart = Invalid;
public Dictionary<int, float> selectedThings = new();
public int Id => id;
public string Username => username;
public bool IsArbiter => type == PlayerType.Arbiter;
public int CurrentMapIndex => map;
public Map CurrentMap => Find.Maps.Find(m => m.Index == map);
public IReadOnlyList<int> SelectedThingsByIds => selectedThings
.Select(x => x.Key)
.ToList()
.AsReadOnly();
public IReadOnlyList<Thing> SelectedThings => selectedThings
.Select(x => ThingsById.thingsById.TryGetValue(x.Key, out var thing) ? thing : null)
.Where(x => x != null)
.ToList()
.AsReadOnly();
private PlayerInfo(int id, string username, int latency, PlayerType type)
{
this.id = id;
this.username = username;
this.latency = latency;
this.type = type;
}
public static PlayerInfo Read(ByteReader data)
{
int id = data.ReadInt32();
string username = data.ReadString();
int latency = data.ReadInt32();
var type = (PlayerType)data.ReadByte();
var status = (PlayerStatus)data.ReadByte();
var steamId = data.ReadULong();
var steamName = data.ReadString();
var ticksBehind = data.ReadInt32();
var simulating = data.ReadBool();
var color = new Color(data.ReadByte() / 255f, data.ReadByte() / 255f, data.ReadByte() / 255f);
int factionId = data.ReadInt32();
return new PlayerInfo(id, username, latency, type)
{
status = status,
steamId = steamId,
steamPersonaName = steamName,
color = color,
selectionBracketMaterial = MaterialPool.MatFrom("UI/Overlays/SelectionBracket", ShaderDatabase.MetaOverlay, color * new Color(1, 1, 1, 0.5f)),
ticksBehind = ticksBehind,
simulating = simulating,
factionId = factionId
};
}
}