Setup all the files so they can be state machined

This commit is contained in:
Melbyj1125
2022-02-15 21:37:49 -06:00
parent 833183d034
commit f580be178a
18 changed files with 352 additions and 139 deletions

View File

@@ -2,17 +2,21 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DashCooldownState : MonoBehaviour
public class DashCooldownState : DashBaseState
{
// Start is called before the first frame update
void Start()
{
public override void EnterState(DashStateManager dSM, DashBaseState previousState){
}
// Update is called once per frame
void Update()
{
public override void ExitState(DashStateManager dSM, DashBaseState nextState){
}
public override void UpdateState(DashStateManager dSM){
}
public override void FixedUpdateState(DashStateManager dSM){
}
}

View File

@@ -2,17 +2,21 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DashDashingState : MonoBehaviour
public class DashDashingState : DashBaseState
{
// Start is called before the first frame update
void Start()
{
public override void EnterState(DashStateManager dSM, DashBaseState previousState){
}
// Update is called once per frame
void Update()
{
public override void ExitState(DashStateManager dSM, DashBaseState nextState){
}
public override void UpdateState(DashStateManager dSM){
}
public override void FixedUpdateState(DashStateManager dSM){
}
}

View File

@@ -2,17 +2,21 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DashIncapacitatedState : MonoBehaviour
public class DashIncapacitatedState : DashBaseState
{
// Start is called before the first frame update
void Start()
{
public override void EnterState(DashStateManager dSM, DashBaseState previousState){
}
// Update is called once per frame
void Update()
{
public override void ExitState(DashStateManager dSM, DashBaseState nextState){
}
public override void UpdateState(DashStateManager dSM){
}
public override void FixedUpdateState(DashStateManager dSM){
}
}

View File

@@ -2,17 +2,21 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DashNoneState : MonoBehaviour
public class DashNoneState : DashBaseState
{
// Start is called before the first frame update
void Start()
{
public override void EnterState(DashStateManager dSM, DashBaseState previousState){
}
// Update is called once per frame
void Update()
{
public override void ExitState(DashStateManager dSM, DashBaseState nextState){
}
public override void UpdateState(DashStateManager dSM){
}
public override void FixedUpdateState(DashStateManager dSM){
}
}

View File

@@ -12,11 +12,11 @@ public class DashStateManager : MonoBehaviour
public DashNoneState NoneState = new DashNoneState();
public DashIncapacitatedState IncapacitatedState = new DashIncapacitatedState();
public DashCooldownState CooldownState = new DashCooldownState();
public DashDashingState DashingState = new DashDashingState();
////
////Objects Sections
GameObject parentObj; // Parent object
public Camera cam; // Camera object
////
////Components Section
@@ -30,4 +30,50 @@ public class DashStateManager : MonoBehaviour
public PlayerStats pStats; // Player Stats
public MoveStateManager mSM;
////
void Awake(){
////Initialize Player Components
moveController = GetComponent<CharacterController>(); // set Character Controller
rB = GetComponent<Rigidbody>(); //set Rigid Body
capCol = GetComponent<CapsuleCollider>(); // set Capsule Collider
capCol.enabled = true;
parentObj = transform.parent.gameObject; // set parent object
animator = GetComponent<Animator>(); // set animator
////
////Initialize Scripts
pStats = GetComponent<PlayerStats>(); // set PlayerStats
mSM = GetComponent<MoveStateManager>(); // set move state manager
////
}
void Start(){
//players starting state
currentState = NoneState;
previousState = NoneState;
currentState.EnterState(this, previousState);
}
void Update(){
//calls any logic in the update state from current state
currentState.UpdateState(this);
}
void FixedUpdate(){
//calls any logic in the fixed update state from current state
currentState.FixedUpdateState(this);
}
public void SwitchState(DashBaseState state){
currentState.ExitState(this, state);
//Sets the previous State
previousState = currentState;
//updates current state and calls logic for entering
currentState = state;
currentState.EnterState(this, previousState);
}
}