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 23:36:07 +01:00
|
|
|
|
using UnityEngine;
|
2020-02-10 23:03:28 +01:00
|
|
|
|
|
2020-02-21 23:36:07 +01:00
|
|
|
|
namespace QSB.TransformSync
|
2020-02-15 20:48:02 +01:00
|
|
|
|
{
|
2020-12-02 21:29:53 +00:00
|
|
|
|
public class PlayerTransformSync : TransformSync
|
|
|
|
|
{
|
|
|
|
|
public static PlayerTransformSync LocalInstance { get; private set; }
|
2020-02-10 23:03:28 +01:00
|
|
|
|
|
2020-12-02 21:29:53 +00:00
|
|
|
|
static PlayerTransformSync()
|
|
|
|
|
{
|
|
|
|
|
AnimControllerPatch.Init();
|
|
|
|
|
}
|
2020-07-28 00:13:43 +01:00
|
|
|
|
|
2020-12-11 23:13:32 +00:00
|
|
|
|
public override void OnStartLocalPlayer()
|
2020-12-11 23:13:13 +00:00
|
|
|
|
=> LocalInstance = this;
|
2020-08-19 22:29:53 +02:00
|
|
|
|
|
2020-12-13 22:25:23 +00:00
|
|
|
|
protected override void OnDestroy()
|
|
|
|
|
{
|
|
|
|
|
base.OnDestroy();
|
|
|
|
|
Player.HudMarker?.Remove();
|
|
|
|
|
QSBPlayerManager.RemovePlayer(PlayerId);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-11 23:13:32 +00:00
|
|
|
|
private Transform GetPlayerModel()
|
2020-12-11 23:13:13 +00:00
|
|
|
|
=> Locator.GetPlayerTransform().Find("Traveller_HEA_Player_v2");
|
2020-02-11 19:56:57 +01:00
|
|
|
|
|
2020-12-02 21:29:53 +00:00
|
|
|
|
protected override Transform InitLocalTransform()
|
|
|
|
|
{
|
|
|
|
|
var body = GetPlayerModel();
|
2020-02-14 22:14:24 +01:00
|
|
|
|
|
2020-12-02 21:29:53 +00:00
|
|
|
|
GetComponent<AnimationSync>().InitLocal(body);
|
|
|
|
|
GetComponent<InstrumentsManager>().InitLocal(body);
|
2020-02-21 21:51:58 +01:00
|
|
|
|
|
2020-12-02 21:29:53 +00:00
|
|
|
|
Player.Body = body.gameObject;
|
2020-10-23 19:06:11 +01:00
|
|
|
|
|
2020-12-02 21:29:53 +00:00
|
|
|
|
return body;
|
|
|
|
|
}
|
2020-02-12 20:05:08 +01:00
|
|
|
|
|
2020-12-02 21:29:53 +00:00
|
|
|
|
protected override Transform InitRemoteTransform()
|
|
|
|
|
{
|
|
|
|
|
var body = Instantiate(GetPlayerModel());
|
2020-02-12 22:00:17 +01:00
|
|
|
|
|
2020-12-02 21:29:53 +00:00
|
|
|
|
GetComponent<AnimationSync>().InitRemote(body);
|
|
|
|
|
GetComponent<InstrumentsManager>().InitRemote(body);
|
2020-02-14 22:14:24 +01:00
|
|
|
|
|
2020-12-02 21:29:53 +00:00
|
|
|
|
var marker = body.gameObject.AddComponent<PlayerHUDMarker>();
|
|
|
|
|
marker.Init(Player);
|
2020-05-19 19:41:33 +02:00
|
|
|
|
|
2020-12-02 21:29:53 +00:00
|
|
|
|
Player.Body = body.gameObject;
|
2020-10-23 19:06:11 +01:00
|
|
|
|
|
2020-12-02 21:29:53 +00:00
|
|
|
|
return body;
|
|
|
|
|
}
|
2020-02-23 18:31:38 +01:00
|
|
|
|
|
2020-12-02 21:29: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
|
|
|
|
}
|