2020-05-31 17:07:22 +00:00
|
|
|
|
using SanAndreasUnity.Behaviours.Vehicles;
|
|
|
|
|
using SanAndreasUnity.Importing.Animation;
|
|
|
|
|
using SanAndreasUnity.Utilities;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using UnityEngine;
|
2019-04-25 20:26:49 +00:00
|
|
|
|
using SanAndreasUnity.Net;
|
2020-05-31 17:07:22 +00:00
|
|
|
|
|
|
|
|
|
namespace SanAndreasUnity.Behaviours
|
|
|
|
|
{
|
2019-10-06 22:53:16 +00:00
|
|
|
|
[RequireComponent(typeof(Ped))]
|
2020-05-31 17:07:22 +00:00
|
|
|
|
public class PlayerController : MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public static PlayerController Instance { get { return Ped.Instance != null ? Ped.Instance.GetComponent<PlayerController>() : null; } }
|
|
|
|
|
|
|
|
|
|
private Ped m_ped;
|
|
|
|
|
|
|
|
|
|
// Alpha speedometer
|
|
|
|
|
private const float velTimer = 1 / 4f;
|
|
|
|
|
|
|
|
|
|
private float m_velCounter = velTimer;
|
|
|
|
|
|
|
|
|
|
private Vector3 m_lastPos = Vector3.zero,
|
|
|
|
|
m_deltaPos = Vector3.zero;
|
|
|
|
|
|
|
|
|
|
private Vector2 _mouseAbsolute;
|
|
|
|
|
private Vector2 _smoothMouse = Vector2.zero;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Vector2 clampInDegrees = new Vector2(90, 60);
|
|
|
|
|
|
|
|
|
|
public float EnterVehicleRadius { get { return m_ped.EnterVehicleRadius; } }
|
|
|
|
|
|
|
|
|
|
public Vector2 smoothing = new Vector2(10, 10);
|
|
|
|
|
[SerializeField] private bool m_doSmooth = true;
|
|
|
|
|
|
|
|
|
|
[SerializeField] private bool m_smoothMovement = false;
|
|
|
|
|
|
|
|
|
|
public float CurVelocity { get { return m_deltaPos.magnitude * 3.6f / velTimer; } }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void Awake()
|
|
|
|
|
{
|
|
|
|
|
m_ped = GetComponent<Ped>();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-30 15:39:36 +00:00
|
|
|
|
void OnEnable()
|
|
|
|
|
{
|
|
|
|
|
UIManager.onGUI += this.OnGUICustom;
|
|
|
|
|
}
|
2020-05-31 17:07:22 +00:00
|
|
|
|
|
2019-08-30 15:39:36 +00:00
|
|
|
|
void OnDisable()
|
|
|
|
|
{
|
|
|
|
|
UIManager.onGUI -= this.OnGUICustom;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void OnGUICustom()
|
2020-05-31 17:07:22 +00:00
|
|
|
|
{
|
2019-04-25 20:18:02 +00:00
|
|
|
|
if (!m_ped.IsControlledByLocalPlayer)
|
2020-05-31 17:07:22 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!Loader.HasLoaded)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
2019-08-30 15:39:36 +00:00
|
|
|
|
UnityEngine.Profiling.Profiler.BeginSample ("PlayerController gui");
|
|
|
|
|
|
2020-05-31 17:07:22 +00:00
|
|
|
|
// show that we are in flying state
|
|
|
|
|
if (m_ped.CurrentState is Peds.States.FlyState)
|
|
|
|
|
{
|
|
|
|
|
int height = 25;
|
2019-08-30 15:39:36 +00:00
|
|
|
|
Rect rect = new Rect(Screen.width - 140, Screen.height - height, 140, height);
|
|
|
|
|
GUI.Label(rect, "Flying-mode enabled!");
|
2020-05-31 17:07:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-22 23:56:45 +00:00
|
|
|
|
if (PedManager.Instance.showPedSpeedometer)
|
2019-08-30 15:39:36 +00:00
|
|
|
|
GUI.Label(GUIUtils.GetCornerRect(ScreenCorner.TopLeft, 100, 25, new Vector2(5, 5)), string.Format("{0:0.0} km/h", m_deltaPos.magnitude * 3.6f / velTimer));
|
2020-05-31 17:07:22 +00:00
|
|
|
|
|
|
|
|
|
// show current ped state
|
2019-04-25 23:50:30 +00:00
|
|
|
|
GUI.Label (GUIUtils.GetCornerRect(ScreenCorner.BottomLeft, 250, 50), string.Format("Current ped state: {0}", m_ped.CurrentState != null ? m_ped.CurrentState.GetType().Name : "none") );
|
2020-05-31 17:07:22 +00:00
|
|
|
|
|
2019-08-30 15:39:36 +00:00
|
|
|
|
UnityEngine.Profiling.Profiler.EndSample();
|
|
|
|
|
|
2020-05-31 17:07:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void FixedUpdate()
|
|
|
|
|
{
|
|
|
|
|
m_velCounter -= Time.deltaTime;
|
|
|
|
|
if (m_velCounter <= 0)
|
|
|
|
|
{
|
|
|
|
|
Vector3 t = new Vector3(transform.position.x, 0, transform.position.z);
|
|
|
|
|
|
|
|
|
|
m_deltaPos = t - m_lastPos;
|
|
|
|
|
m_lastPos = t;
|
|
|
|
|
|
|
|
|
|
m_velCounter = velTimer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Update()
|
|
|
|
|
{
|
2019-04-25 20:18:02 +00:00
|
|
|
|
if (!m_ped.IsControlledByLocalPlayer)
|
2020-05-31 17:07:22 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!Loader.HasLoaded)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// reset ped input
|
|
|
|
|
m_ped.ResetMovementInput ();
|
|
|
|
|
m_ped.MouseMoveInput = Vector2.zero;
|
|
|
|
|
m_ped.MouseScrollInput = Vector2.zero;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!GameManager.CanPlayerReadInput()) return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// states must be read before events, otherwise callback functions for events will not have access
|
|
|
|
|
// to states (they will always be unpressed/reset, because we did a reset above)
|
|
|
|
|
this.ReadStates ();
|
|
|
|
|
this.ReadEvents ();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ReadStates()
|
|
|
|
|
{
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
CustomInput customInput = CustomInput.Instance;
|
|
|
|
|
|
2020-05-31 17:07:22 +00:00
|
|
|
|
this.ReadCameraInput ();
|
|
|
|
|
|
|
|
|
|
m_ped.MouseScrollInput = Input.mouseScrollDelta;
|
|
|
|
|
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
m_ped.IsAimOn = customInput.GetButton ("RightClick");
|
|
|
|
|
m_ped.IsFireOn = customInput.GetButton ("LeftClick");
|
2020-05-31 17:07:22 +00:00
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
m_ped.IsJumpOn = customInput.GetButton ("Jump");
|
2020-05-31 17:07:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Vector3 inputMove = Vector3.zero;
|
|
|
|
|
if (m_smoothMovement)
|
2019-07-22 15:14:21 +00:00
|
|
|
|
inputMove = new Vector3 (customInput.GetAxis ("Horizontal"), 0f, customInput.GetAxis ("Vertical"));
|
2020-05-31 17:07:22 +00:00
|
|
|
|
else
|
2019-07-22 15:14:21 +00:00
|
|
|
|
inputMove = new Vector3 (customInput.GetAxisRaw ("Horizontal"), 0f, customInput.GetAxisRaw ("Vertical"));
|
2020-05-31 17:07:22 +00:00
|
|
|
|
|
|
|
|
|
if (inputMove.sqrMagnitude > 0f)
|
|
|
|
|
{
|
|
|
|
|
inputMove.Normalize();
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
if (customInput.GetButton ("Walk"))
|
2020-05-31 17:07:22 +00:00
|
|
|
|
m_ped.IsWalkOn = true;
|
2019-07-22 15:14:21 +00:00
|
|
|
|
else if (customInput.GetButton ("Sprint"))
|
2020-05-31 17:07:22 +00:00
|
|
|
|
m_ped.IsSprintOn = true;
|
|
|
|
|
else
|
|
|
|
|
m_ped.IsRunOn = true;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_ped.Camera != null)
|
|
|
|
|
m_ped.Movement = m_ped.Camera.transform.TransformVector (inputMove).normalized;
|
|
|
|
|
else
|
|
|
|
|
m_ped.Movement = inputMove.normalized;
|
|
|
|
|
|
|
|
|
|
if (m_ped.Movement.sqrMagnitude > float.Epsilon) {
|
|
|
|
|
// only assign heading if there is any movement - we don't want the heading to be zero vector
|
|
|
|
|
m_ped.Heading = m_ped.Movement;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ReadEvents()
|
|
|
|
|
{
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
CustomInput customInput = CustomInput.Instance;
|
|
|
|
|
|
|
|
|
|
if (customInput.GetButtonDown ("LeftClick"))
|
2020-05-31 17:07:22 +00:00
|
|
|
|
m_ped.OnFireButtonPressed ();
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
if (customInput.GetButtonDown ("RightClick"))
|
2020-05-31 17:07:22 +00:00
|
|
|
|
m_ped.OnAimButtonPressed ();
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
if (customInput.GetKeyDown (KeyCode.Q))
|
2020-05-31 17:07:22 +00:00
|
|
|
|
m_ped.OnPreviousWeaponButtonPressed();
|
2019-07-22 15:14:21 +00:00
|
|
|
|
else if (customInput.GetKeyDown (KeyCode.E))
|
2020-05-31 17:07:22 +00:00
|
|
|
|
m_ped.OnNextWeaponButtonPressed();
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
if (customInput.GetButtonDown("Use"))
|
2020-05-31 17:07:22 +00:00
|
|
|
|
m_ped.OnSubmitPressed ();
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
if (customInput.GetButtonDown("Jump"))
|
2020-05-31 17:07:22 +00:00
|
|
|
|
m_ped.OnJumpButtonPressed ();
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
if (customInput.GetKeyDown(KeyCode.C))
|
2020-05-31 17:07:22 +00:00
|
|
|
|
m_ped.OnCrouchButtonPressed ();
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
if (customInput.GetKeyDown (KeyCode.T))
|
2020-05-31 17:07:22 +00:00
|
|
|
|
m_ped.OnFlyButtonPressed();
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
if (customInput.GetKeyDown (KeyCode.R))
|
2020-05-31 17:07:22 +00:00
|
|
|
|
m_ped.OnFlyThroughButtonPressed();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ReadCameraInput ()
|
|
|
|
|
{
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
CustomInput customInput = CustomInput.Instance;
|
|
|
|
|
|
2020-05-31 17:07:22 +00:00
|
|
|
|
if (GameManager.CanPlayerReadInput())
|
|
|
|
|
{
|
|
|
|
|
// rotate camera
|
|
|
|
|
|
2019-04-27 14:00:46 +00:00
|
|
|
|
// FIXME: Camera rotation should be done by ped's current state. We should only assign mouse move input.
|
|
|
|
|
|
2019-07-22 15:14:21 +00:00
|
|
|
|
var mouseDelta = new Vector2(customInput.GetAxisRaw("Mouse X"), customInput.GetAxisRaw("Mouse Y"));
|
|
|
|
|
var rightAnalogDelta = new Vector2(customInput.GetAxisRaw("Joystick X"), customInput.GetAxisRaw("Joystick Y"));
|
2020-05-31 17:07:22 +00:00
|
|
|
|
|
|
|
|
|
Vector2 totalMouseDelta = mouseDelta + rightAnalogDelta;
|
|
|
|
|
|
2019-06-23 00:13:55 +00:00
|
|
|
|
totalMouseDelta = Vector2.Scale (totalMouseDelta, GameManager.Instance.cursorSensitivity);
|
2020-05-31 17:07:22 +00:00
|
|
|
|
|
|
|
|
|
m_ped.MouseMoveInput = totalMouseDelta;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (m_doSmooth)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
_smoothMouse.x = Mathf.Lerp (_smoothMouse.x, totalMouseDelta.x, 1f / smoothing.x);
|
|
|
|
|
_smoothMouse.y = Mathf.Lerp (_smoothMouse.y, totalMouseDelta.y, 1f / smoothing.y);
|
|
|
|
|
|
|
|
|
|
_mouseAbsolute += _smoothMouse;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_mouseAbsolute += totalMouseDelta;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (clampInDegrees.y > 0)
|
|
|
|
|
_mouseAbsolute.y = Mathf.Clamp(_mouseAbsolute.y, -clampInDegrees.y, clampInDegrees.y);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void OnDrawGizmosSelected()
|
|
|
|
|
{
|
|
|
|
|
if (null == m_ped)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Gizmos.color = Color.white;
|
|
|
|
|
|
|
|
|
|
// draw enter vehicle radius
|
|
|
|
|
Gizmos.DrawWireSphere(transform.position, EnterVehicleRadius);
|
|
|
|
|
|
|
|
|
|
// find closest vehicle in entering range
|
|
|
|
|
|
|
|
|
|
var vehicles = FindObjectsOfType<Vehicle>()
|
|
|
|
|
.Where(x => Vector3.Distance(transform.position, x.FindClosestSeatTransform(transform.position).position) < EnterVehicleRadius)
|
|
|
|
|
.OrderBy(x => Vector3.Distance(transform.position, x.FindClosestSeatTransform(transform.position).position)).ToArray();
|
|
|
|
|
|
|
|
|
|
foreach (var vehicle in vehicles)
|
|
|
|
|
{
|
|
|
|
|
// draw all seats
|
|
|
|
|
foreach (var seat in vehicle.Seats)
|
|
|
|
|
{
|
|
|
|
|
Gizmos.color = Color.red;
|
|
|
|
|
Gizmos.DrawWireSphere(seat.Parent.position, 0.1f);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// draw closest seat
|
|
|
|
|
|
|
|
|
|
var closestSeat = vehicle.FindClosestSeat(transform.position);
|
|
|
|
|
|
|
|
|
|
if (closestSeat != Vehicle.SeatAlignment.None)
|
|
|
|
|
{
|
|
|
|
|
var closestSeatTransform = vehicle.GetSeatTransform(closestSeat);
|
|
|
|
|
|
|
|
|
|
Gizmos.color = Color.green;
|
|
|
|
|
Gizmos.DrawWireSphere(closestSeatTransform.position, 0.1f);
|
|
|
|
|
Gizmos.DrawLine(transform.position, closestSeatTransform.position);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|