using UnityEngine; using NeonTea.Quakeball.Networking.Packets; namespace NeonTea.Quakeball.Players { /// The central glue class for players (both local and remote). /// Other classes will handle netcode/inputs, and then speak to this class in order to make the little people run around. [RequireComponent(typeof(CharacterController))] public class Player : MonoBehaviour { /// How long after running off a cliff should the player be considered "on ground"? public float CoyoteTime; /// How often should the player's movement be updated? Used by Local and Remote -Player classes. public float UpdateFrequency = 1f; public MoveStyle[] MoveStyles; public Transform Head; public Transform Body; public Transform Gun; public Animator GunBobber; [Header("Player rotation status")] /// The pitch of the player's head. public float Pitch; /// The total yaw of the player. Head yaw is Yaw - BodyYaw. public float Yaw; /// The yaw of the player body. Calculated from MoveDirection. public float BodyYaw; [Header("Player movement status")] /// The direction the player is going. public Vector3 MoveDirection; /// The player's desire to jump currently. public bool Jumping; /// The amount of movement the player wants to happen. /// Without analog controls, always 0 or 1. public float InputSpeed; /// The way the player is moving. public byte CurrentMoveStyle = 0; public MoveStyle MoveStyle => MoveStyles[CurrentMoveStyle]; [Header("Runtime computed values")] /// The speed at which the player is currently moving across the ground. public Vector3 GroundVelocity; /// The speed at which the player is rising or falling. public Vector3 GravitationalVelocity; /// The timestamp of when the player was last on the ground. public float GroundedTime; [Header("Misc. technical knobs")] public float GroundCastLength = 0.2f; public LayerMask GroundLayer; [Header("Debug settings")] public bool ShowGroundCast; public bool ShowMoveVector; private CharacterController CharacterController; private Vector3 FeetPosition; /// Creates a PlayerUpdatePckt representing this Player's current status, for sending to other peers. public PlayerUpdatePckt CreatePacket(ulong id = 0) { return new PlayerUpdatePckt(MoveDirection, CurrentMoveStyle, Jumping, Pitch, Yaw, id); } /// Updates this Player with the given packet, and sets it to null. No reusing packets. public void ProcessPacket(ref PlayerUpdatePckt packet) { Pitch = packet.Pitch; Yaw = packet.Yaw; MoveDirection = packet.MoveDirection; CurrentMoveStyle = packet.MoveStyle; Jumping = packet.Jumping; packet = null; } /// The normal of the ground below the player. If there is no ground, it's Vector3.up by default. public Vector3 GroundCast() { RaycastHit Hit; if (ShowGroundCast) { Debug.DrawLine(FeetPosition, FeetPosition - Vector3.up, Color.red, 1f); } if (Physics.Raycast(FeetPosition, -Vector3.up, out Hit, GroundCastLength, GroundLayer)) { return Hit.normal; } else { return Vector3.up; } } public bool IsGrounded() { return Time.time - GroundedTime <= CoyoteTime && Vector3.Dot(GravitationalVelocity, Vector3.down) >= 0; } private void Awake() { CharacterController = GetComponent(); FeetPosition = transform.position + CharacterController.center - Vector3.up * (CharacterController.height / 2 + CharacterController.skinWidth / 2); } private void Update() { if (MoveDirection.magnitude > 0) { BodyYaw = Vector3.SignedAngle(Vector3.forward, MoveDirection, Vector3.up); } Body.localRotation = Quaternion.Lerp(Body.localRotation, Quaternion.Euler(0, BodyYaw, 0), 20f * Time.deltaTime); Head.localRotation = Quaternion.Lerp(Head.localRotation, Quaternion.Euler(Pitch, Yaw, 0), 15f * Time.deltaTime); UpdateMovement(); } private void UpdateMovement() { bool Grounded = IsGrounded(); if (Grounded) { if (Vector3.Dot(Vector3.down, GravitationalVelocity) > 0) { GravitationalVelocity = Vector3.zero; } if (Jumping) { GravitationalVelocity = Vector3.up * MoveStyle.JumpVelocity; } } else { GravitationalVelocity += Physics.gravity * Time.deltaTime; } float FrictionVelocityFactor = Mathf.Max(GroundVelocity.magnitude, MoveStyle.StopVelocity); float Deccel = FrictionVelocityFactor * Time.deltaTime; if (Grounded) { Deccel *= MoveStyle.Friction; } else { Deccel *= MoveStyle.AirFriction; } float FrictionedVelocity = Mathf.Max(0, GroundVelocity.magnitude - Deccel); GroundVelocity = GroundVelocity.normalized * FrictionedVelocity; Vector3 GroundNormal = GroundCast(); Vector3 FixedHeading = Vector3.ProjectOnPlane(MoveDirection, GroundNormal).normalized; float CurrentSpeed = Vector3.Dot(GroundVelocity, FixedHeading); float Acceleration = MoveStyle.TargetVelocity * Time.deltaTime; if (Grounded) { Acceleration *= MoveStyle.Acceleration; } else { Acceleration *= MoveStyle.AirAcceleration; } Acceleration = Mathf.Min(Acceleration, MoveStyle.TargetVelocity - CurrentSpeed); GroundVelocity += FixedHeading * Acceleration; Vector3 FinalMoveVector = GroundVelocity + GravitationalVelocity; CharacterController.Move(FinalMoveVector * Time.deltaTime); if (CharacterController.isGrounded) { GroundedTime = Time.time; } if (ShowMoveVector) { Debug.DrawLine( transform.position + CharacterController.center, transform.position + CharacterController.center + FinalMoveVector, Color.green, 1.0f ); } float TargetBobbiness = Grounded ? GroundVelocity.magnitude / MoveStyle.TargetVelocity : 0; GunBobber.SetLayerWeight(1, Mathf.Lerp(GunBobber.GetLayerWeight(1), TargetBobbiness, 10f * Time.deltaTime)); } } }