GGJ2022/Assets/Scripts/PlayerController.cs

202 lines
6.5 KiB
C#
Raw Normal View History

2022-01-28 19:00:56 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerController : MonoBehaviour
{
2022-01-29 15:44:40 +00:00
public float speed = 7.5f;
public float maxSpeed = 15.0f;
public float minSpeed = 5.0f;
[HideInInspector]
public float currentSpeed = 0f;
private float modifier = 0.0f;
2022-01-28 19:00:56 +00:00
public float jumpSpeed = 7.5f;
public float lookSpeed = 7.5f;
2022-01-29 14:40:02 +00:00
public float lookXLimit = 40.0f;
2022-01-28 19:00:56 +00:00
public Camera playerCamera;
2022-01-29 00:39:17 +00:00
public ParticleSystem runningParticles;
2022-01-28 19:00:56 +00:00
Vector3 moveDirection = Vector3.zero;
public float rotationX = 0;
2022-01-29 02:15:33 +00:00
public Transform mainObject;
2022-01-28 19:00:56 +00:00
// Start is called before the first frame update
[HideInInspector]
bool canMove = true;
Rigidbody rb;
2022-01-28 20:05:41 +00:00
float moveDirectionY;
2022-01-29 12:08:41 +00:00
public bool jump = false;
2022-01-29 09:57:53 +00:00
private bool isGrounded = false;
2022-01-29 01:01:10 +00:00
public bool isRunning = false;
2022-01-28 19:00:56 +00:00
2022-01-29 13:07:27 +00:00
private Vector3 saveDirection;
2022-01-29 11:03:01 +00:00
private Vector3 downDirection;
2022-01-29 15:44:40 +00:00
private Vector3 platformForward;
2022-01-29 11:03:01 +00:00
2022-01-29 02:15:33 +00:00
private Vector3 follow = Vector3.zero;
2022-01-28 19:00:56 +00:00
void Start()
{
rb = GetComponent<Rigidbody>();
2022-01-29 15:44:40 +00:00
platformForward = Vector3.forward;
2022-01-29 11:21:42 +00:00
}
public void disableCursor()
{
2022-01-28 19:00:56 +00:00
Cursor.lockState = CursorLockMode.Locked;
Cursor.visible = false;
}
// Update is called once per frame
void Update()
{
rotationX += -Input.GetAxis("Mouse Y") * lookSpeed;
rotationX = Mathf.Clamp(rotationX, -lookXLimit, lookXLimit);
playerCamera.transform.localRotation = Quaternion.Euler(rotationX, 0, 0);
transform.rotation *= Quaternion.Euler(0, Input.GetAxis("Mouse X") * lookSpeed, 0);
2022-01-29 01:01:10 +00:00
isRunning = Input.GetKey(KeyCode.LeftShift);
2022-01-29 15:44:40 +00:00
if (currentSpeed < minSpeed)
{
currentSpeed += 0.0005f;
}
if (Input.GetAxis("Vertical") > 0 && currentSpeed < maxSpeed)
{
currentSpeed += 0.01f;
} else if (Input.GetAxis("Vertical") < 0 && currentSpeed > minSpeed) {
currentSpeed -= 0.01f;
}
float curSpeedX = canMove ? (currentSpeed + modifier) : 0;
float curSpeedY = canMove ? speed * Input.GetAxis("Horizontal") : 0;
2022-01-28 19:00:56 +00:00
2022-01-29 15:44:40 +00:00
moveDirection = (platformForward * curSpeedX * Time.deltaTime) + (transform.right * curSpeedY * Time.deltaTime);
2022-01-28 19:00:56 +00:00
2022-01-29 01:01:10 +00:00
if (isRunning && !runningParticles.isPlaying && Input.GetKey(KeyCode.W))
2022-01-29 00:39:17 +00:00
{
2022-01-29 01:01:10 +00:00
runningParticles.Play(true);
2022-01-29 00:39:17 +00:00
}
2022-01-29 01:01:10 +00:00
else if ((!isRunning && runningParticles.isPlaying) || !Input.GetKey(KeyCode.W))
2022-01-29 00:39:17 +00:00
{
2022-01-29 01:01:10 +00:00
runningParticles.Stop(true, ParticleSystemStopBehavior.StopEmittingAndClear);
2022-01-29 00:39:17 +00:00
}
2022-01-29 09:57:53 +00:00
if (Input.GetKeyDown(KeyCode.Space) && isGrounded)
2022-01-28 19:00:56 +00:00
{
2022-01-29 12:08:41 +00:00
jump = true;
2022-01-29 09:57:53 +00:00
isGrounded = false;
2022-01-28 19:00:56 +00:00
}
2022-01-28 20:05:41 +00:00
rb.MovePosition(rb.position + moveDirection);
2022-01-28 19:00:56 +00:00
}
2022-01-29 12:08:41 +00:00
private void FixedUpdate()
{
if (jump)
{
Debug.Log("Jump");
rb.AddForce(transform.up * jumpSpeed * 100 * Time.deltaTime, ForceMode.Impulse);
jump = false;
}
2022-01-29 13:07:27 +00:00
if (saveDirection != Vector3.zero)
{
Vector3 axis;
float angle;
axis = Vector3.Cross(-transform.up, saveDirection);
angle = Mathf.Atan2(Vector3.Magnitude(axis), Vector3.Dot(-transform.up, saveDirection));
transform.RotateAround(axis, angle * Time.deltaTime * 5f);
}
2022-01-29 12:08:41 +00:00
}
2022-01-29 09:57:53 +00:00
void OnCollisionExit(Collision other)
{
if (other.gameObject.tag == "platform")
{
2022-01-29 11:03:01 +00:00
Physics.gravity = this.downDirection * 9.81f;
2022-01-29 09:57:53 +00:00
}
}
2022-01-28 20:50:13 +00:00
2022-01-29 13:56:30 +00:00
void OnCollisionStay(Collision other)
{
2022-01-29 09:57:53 +00:00
if (other.gameObject.tag != "platform") return;
PlatformManager platform = other.gameObject.GetComponent<PlatformManager>();
if (platform == null)
{
// FIXME: Should platforms be allowed to not to have a PlatformManager?
// Debug.Log("ERROR");
return;
}
2022-01-29 11:03:01 +00:00
2022-01-29 14:08:02 +00:00
if (other.GetContact(0).normal == other.transform.forward
|| other.GetContact(0).normal == -other.transform.forward
|| (other.GetContact(0).normal != -other.transform.up
&& other.GetContact(0).normal != other.transform.up
&& other.GetContact(0).normal != other.transform.right
&& other.GetContact(0).normal != -other.transform.right)
)
2022-01-29 12:48:05 +00:00
{
return;
}
2022-01-29 14:34:38 +00:00
this.downDirection = -other.GetContact(0).normal;
saveDirection = -other.GetContact(0).normal;
2022-01-29 13:07:27 +00:00
2022-01-29 11:03:01 +00:00
// TODO: Handle other PlatformTypes
2022-01-29 11:50:26 +00:00
Physics.gravity = -other.GetContact(0).normal * 9.81f;
2022-01-29 09:57:53 +00:00
}
void OnCollisionEnter(Collision other)
2022-01-28 20:50:13 +00:00
{
2022-01-29 09:57:53 +00:00
isGrounded = true;
2022-01-28 22:38:33 +00:00
if (other.gameObject.tag == "platform")
2022-01-28 20:50:13 +00:00
{
2022-01-29 12:48:05 +00:00
2022-01-29 14:08:02 +00:00
if (other.GetContact(0).normal == other.transform.forward
|| other.GetContact(0).normal == -other.transform.forward
|| (other.GetContact(0).normal != -other.transform.up
&& other.GetContact(0).normal != other.transform.up
&& other.GetContact(0).normal != other.transform.right
&& other.GetContact(0).normal != -other.transform.right)
)
2022-01-29 11:03:01 +00:00
{
return;
}
2022-01-28 23:40:14 +00:00
2022-01-29 13:07:27 +00:00
saveDirection = -other.GetContact(0).normal;
2022-01-29 02:15:33 +00:00
2022-01-29 00:19:21 +00:00
Vector3 gDirection;
PlatformManager platform = other.gameObject.GetComponent<PlatformManager>();
2022-01-29 13:56:30 +00:00
gDirection = -other.GetContact(0).normal;
switch (platform.type)
2022-01-29 00:39:17 +00:00
{
2022-01-29 13:56:30 +00:00
case PlatformManager.PlatformType.Push:
break;
case PlatformManager.PlatformType.Pull:
break;
case PlatformManager.PlatformType.RotateY:
break;
case PlatformManager.PlatformType.RotateZ:
break;
case PlatformManager.PlatformType.SpeedUp:
2022-01-29 15:44:40 +00:00
modifier += platform.speed;
2022-01-29 13:56:30 +00:00
break;
case PlatformManager.PlatformType.SpeedDown:
2022-01-29 15:44:40 +00:00
if (modifier - platform.speed >= 0) {
modifier -= platform.speed;
} else {
modifier = 0.0f;
}
2022-01-29 13:56:30 +00:00
break;
default:
gDirection = -transform.up;
break;
2022-01-29 00:19:21 +00:00
}
2022-01-29 15:44:40 +00:00
platformForward = other.transform.forward;
2022-01-29 11:03:01 +00:00
this.downDirection = gDirection;
2022-01-28 22:18:07 +00:00
Physics.gravity = gDirection * 9.81f;
2022-01-28 20:50:13 +00:00
}
}
2022-01-29 09:57:53 +00:00
2022-01-28 19:00:56 +00:00
}