revival/game/Assets/Scripts/Player/PlayerInputHandler.cs

88 lines
2.5 KiB
C#
Raw Normal View History

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.InputSystem;
2021-02-19 21:38:45 +01:00
using Ktyl.Util;
public class PlayerInputHandler : MonoBehaviour
{
//to get the artifact id you are near to
2021-02-19 21:38:45 +01:00
[SerializeField] private SerialInt _nearbyArtefactID;
[SerializeField]
private PlayerInputSettings _inputSettings;
2021-03-02 19:28:13 +01:00
[SerializeField]
private Camera _camera;
2021-02-15 19:09:32 +01:00
public class PlayerInputState
{
public BufferedInput Jump;
2021-02-15 19:09:32 +01:00
public BufferedInput Blink;
public BufferedInput Use;
2021-01-27 13:06:17 +01:00
public CameraRelativeInput Move;
public Vector2 Look;
2021-01-27 13:06:17 +01:00
public float MoveRotation;
2021-02-15 19:09:32 +01:00
public PlayerInputState( float jumpBuffer, float blinkBuffer, float useBuffer )
{
Jump = new BufferedInput( jumpBuffer );
Blink = new BufferedInput( blinkBuffer );
Use = new BufferedInput( useBuffer );
Move = new CameraRelativeInput();
Look = Vector2.zero;
}
public void Update( float deltaTime )
{
Jump.Update(deltaTime);
Blink.Update(deltaTime);
Use.Update(deltaTime);
}
}
public PlayerInputState InputState => _state;
private PlayerInputState _state;
private void Awake()
{
2021-02-15 19:09:32 +01:00
_state = new PlayerInputState(
_inputSettings.JumpBufferTime,
_inputSettings.BlinkBufferTime,
_inputSettings.UseBufferTime
);
}
private void FixedUpdate()
{
2021-02-15 19:09:32 +01:00
_state.Update( Time.fixedDeltaTime );
2021-03-02 19:28:13 +01:00
float cameraRotation = _camera.transform.rotation.eulerAngles.y;
_state.Move.SetAngle(-cameraRotation);
}
public void SetCameraRotation(float angle)
=> _state.Move.SetAngle(angle);
2021-01-27 13:06:17 +01:00
public void Look(InputAction.CallbackContext context)
=> _state.Look = context.ReadValue<Vector2>();
public void Move(InputAction.CallbackContext context)
=> _state.Move.SetValue(context.ReadValue<Vector2>());
2021-02-15 19:09:32 +01:00
public void Blink( InputAction.CallbackContext context )
=> _state.Blink.Set( context.ReadValueAsButton() );
public void Jump( InputAction.CallbackContext context )
2021-02-15 19:09:32 +01:00
=> _state.Jump.Set( context.ReadValueAsButton() );
public void Use(InputAction.CallbackContext context)
{
_state.Use.Set( context.ReadValueAsButton() );
if(context.started)
2021-02-19 21:38:45 +01:00
EventHandler.current.ArtefactPickUp(_nearbyArtefactID.Value);
}
}