2020-12-11 23:13:32 +00:00
|
|
|
|
using QSB.Animation;
|
2020-11-20 19:50:31 +00:00
|
|
|
|
using QSB.Instruments;
|
2020-11-03 21:33:48 +00:00
|
|
|
|
using QSB.Player;
|
2020-02-21 22:36:07 +00:00
|
|
|
|
using UnityEngine;
|
2020-02-10 22:03:28 +00:00
|
|
|
|
|
2020-02-21 22:36:07 +00:00
|
|
|
|
namespace QSB.TransformSync
|
2020-02-15 19:48:02 +00:00
|
|
|
|
{
|
2020-12-14 21:20:53 +00:00
|
|
|
|
public class PlayerTransformSync : TransformSync
|
|
|
|
|
{
|
|
|
|
|
public static PlayerTransformSync LocalInstance { get; private set; }
|
2020-02-10 22:03:28 +00:00
|
|
|
|
|
2020-12-24 16:34:24 +00:00
|
|
|
|
static PlayerTransformSync() => AnimControllerPatch.Init();
|
2020-07-27 23:13:43 +00:00
|
|
|
|
|
2020-12-20 09:42:57 +00:00
|
|
|
|
public override void OnStartLocalPlayer() => LocalInstance = this;
|
2020-08-19 20:29:53 +00:00
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
protected override void OnDestroy()
|
|
|
|
|
{
|
|
|
|
|
base.OnDestroy();
|
|
|
|
|
Player.HudMarker?.Remove();
|
|
|
|
|
QSBPlayerManager.RemovePlayer(PlayerId);
|
|
|
|
|
}
|
2020-12-13 22:25:23 +00:00
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
private Transform GetPlayerModel() =>
|
|
|
|
|
Locator.GetPlayerTransform().Find("Traveller_HEA_Player_v2");
|
2020-02-11 18:56:57 +00:00
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
protected override Transform InitLocalTransform()
|
|
|
|
|
{
|
|
|
|
|
var body = GetPlayerModel();
|
2020-02-14 21:14:24 +00:00
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
GetComponent<AnimationSync>().InitLocal(body);
|
|
|
|
|
GetComponent<InstrumentsManager>().InitLocal(body);
|
2020-02-21 20:51:58 +00:00
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
Player.Body = body.gameObject;
|
2020-10-23 18:06:11 +00:00
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
return body;
|
|
|
|
|
}
|
2020-02-12 19:05:08 +00:00
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
protected override Transform InitRemoteTransform()
|
|
|
|
|
{
|
|
|
|
|
var body = Instantiate(GetPlayerModel());
|
2020-02-12 21:00:17 +00:00
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
GetComponent<AnimationSync>().InitRemote(body);
|
|
|
|
|
GetComponent<InstrumentsManager>().InitRemote(body);
|
2020-02-14 21:14:24 +00:00
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
var marker = body.gameObject.AddComponent<PlayerHUDMarker>();
|
|
|
|
|
marker.Init(Player);
|
2020-05-19 17:41:33 +00:00
|
|
|
|
|
2020-12-20 18:16:23 +00:00
|
|
|
|
body.gameObject.AddComponent<PlayerMapMarker>().PlayerName = Player.Name;
|
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
Player.Body = body.gameObject;
|
2020-10-23 18:06:11 +00:00
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
return body;
|
|
|
|
|
}
|
2020-02-23 17:31:38 +00:00
|
|
|
|
|
2021-01-03 12:38:02 +00:00
|
|
|
|
private void OnRenderObject()
|
|
|
|
|
{
|
2021-01-30 10:09:27 +00:00
|
|
|
|
if (!QSBCore.HasWokenUp || !Player.IsReady || !QSBCore.DebugMode)
|
2021-01-03 12:38:02 +00:00
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-01-29 15:29:50 +00:00
|
|
|
|
Popcron.Gizmos.Cube(Player.Body.transform.position, Player.Body.transform.rotation, new Vector3(1, 2, 1));
|
2021-01-03 12:38:02 +00:00
|
|
|
|
Popcron.Gizmos.Line(ReferenceSector.Position, Player.Body.transform.position, Color.blue, true);
|
2021-01-26 14:07:17 +00:00
|
|
|
|
Popcron.Gizmos.Sphere(ReferenceSector.Position, 5f, Color.cyan);
|
2021-01-03 12:38:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-14 21:20:53 +00:00
|
|
|
|
public override bool IsReady => Locator.GetPlayerTransform() != null
|
|
|
|
|
&& Player != null
|
|
|
|
|
&& QSBPlayerManager.PlayerExists(Player.PlayerId)
|
|
|
|
|
&& Player.IsReady
|
|
|
|
|
&& NetId.Value != uint.MaxValue
|
|
|
|
|
&& NetId.Value != 0U;
|
|
|
|
|
}
|
2020-12-03 08:28:05 +00:00
|
|
|
|
}
|