2020-08-10 12:16:07 +01:00
|
|
|
|
using System.Linq;
|
2020-07-30 22:27:14 +02:00
|
|
|
|
using QSB.Tools;
|
2020-07-30 21:57:39 +02:00
|
|
|
|
using QSB.Utility;
|
|
|
|
|
using UnityEngine;
|
2020-07-28 15:59:24 +02:00
|
|
|
|
|
|
|
|
|
namespace QSB
|
|
|
|
|
{
|
|
|
|
|
public class PlayerInfo
|
|
|
|
|
{
|
2020-07-30 21:57:39 +02:00
|
|
|
|
public uint NetId { get; }
|
2020-07-28 15:59:24 +02:00
|
|
|
|
public GameObject Body { get; set; }
|
|
|
|
|
public GameObject Camera { get; set; }
|
2020-08-07 20:39:07 +01:00
|
|
|
|
public GameObject ProbeBody { get; set; }
|
|
|
|
|
public QSBProbe Probe { get; set; }
|
2020-07-30 21:57:39 +02:00
|
|
|
|
public QSBFlashlight FlashLight => Camera.GetComponentInChildren<QSBFlashlight>();
|
|
|
|
|
public QSBTool Signalscope => GetToolByType(ToolType.Signalscope);
|
|
|
|
|
public QSBTool Translator => GetToolByType(ToolType.Translator);
|
2020-08-07 20:39:07 +01:00
|
|
|
|
public QSBTool ProbeLauncher => GetToolByType(ToolType.ProbeLauncher);
|
2020-07-28 15:59:24 +02:00
|
|
|
|
public string Name { get; set; }
|
2020-08-09 21:46:51 +01:00
|
|
|
|
public bool IsReady { get; set; }
|
2020-08-10 11:45:24 +01:00
|
|
|
|
public State State { get; set; }
|
2020-07-30 21:57:39 +02:00
|
|
|
|
|
|
|
|
|
public PlayerInfo(uint id)
|
|
|
|
|
{
|
|
|
|
|
NetId = id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdateState(State state, bool value)
|
|
|
|
|
{
|
|
|
|
|
var states = State;
|
|
|
|
|
if (value)
|
|
|
|
|
{
|
|
|
|
|
FlagsHelper.Set(ref states, state);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
FlagsHelper.Unset(ref states, state);
|
|
|
|
|
}
|
|
|
|
|
State = states;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-10 11:45:24 +01:00
|
|
|
|
public void UpdateStateObjects()
|
2020-08-09 21:46:51 +01:00
|
|
|
|
{
|
2020-08-13 22:06:34 +01:00
|
|
|
|
if (OWInput.GetInputMode() == InputMode.None)
|
2020-08-10 11:45:24 +01:00
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-08-16 17:35:27 +02:00
|
|
|
|
FlashLight?.UpdateState(FlagsHelper.IsSet(State, State.Flashlight));
|
|
|
|
|
Translator?.ChangeEquipState(FlagsHelper.IsSet(State, State.Translator));
|
|
|
|
|
ProbeLauncher?.ChangeEquipState(FlagsHelper.IsSet(State, State.ProbeLauncher));
|
|
|
|
|
Signalscope?.ChangeEquipState(FlagsHelper.IsSet(State, State.Signalscope));
|
|
|
|
|
PlayerRegistry.GetAnimationSync(NetId)?.SetSuitState(FlagsHelper.IsSet(State, State.Suit));
|
2020-08-09 21:46:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-07 20:39:07 +01:00
|
|
|
|
public bool GetState(State state)
|
|
|
|
|
{
|
|
|
|
|
return FlagsHelper.IsSet(State, state);
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-30 21:57:39 +02:00
|
|
|
|
private QSBTool GetToolByType(ToolType type)
|
|
|
|
|
{
|
2020-08-17 18:58:45 +02:00
|
|
|
|
return Camera?.GetComponentsInChildren<QSBTool>()
|
|
|
|
|
.FirstOrDefault(x => x.Type == type);
|
2020-07-30 21:57:39 +02:00
|
|
|
|
}
|
2020-07-28 15:59:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|