-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathStateMachine.cs
99 lines (81 loc) · 2.04 KB
/
StateMachine.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class StateMachine : MonoBehaviour
{
public StateMachineType type = StateMachineType.Generic;
public string fsmName;
protected StateTransition[] transitions = new StateTransition[0];
protected State state;
protected State[] states;
private float _stateTime = 0f;
private string _defaultName;
public float CurrentStateTime {
get {
return _stateTime;
}
}
public States CurrentState {
get {
return state != null ? state.stateType : States.Default;
}
}
public void SetState(States newState)
{
var s = FindStateOfType(newState);
if (s != null)
{
if (state != null)
state.OnStateExit();
state = s;
gameObject.name = _defaultName + " - " + state.name;
_stateTime = 0f;
state.OnStateEnter();
}
}
public bool IsInState(States state)
{
return this.state.stateType == state;
}
protected virtual void Initialize() { }
private void Start()
{
states = GetComponentsInChildren<State>();
_defaultName = gameObject.name;
Initialize();
SetState(States.Default);
}
private void Update()
{
CheckTransitions();
_stateTime += Time.deltaTime;
state.OnStateUpdate();
}
private void CheckTransitions()
{
foreach (var t in transitions)
{
if (t.source == this.state.stateType || t.source == States.Any)
{
if(t.HasMetCondition())
{
SetState(t.target);
return;
}
}
}
}
private State FindStateOfType(States state)
{
foreach (State s in states)
if (s.stateType == state)
return s;
return null;
}
}
public enum StateMachineType
{
Generic,
Movement,
Combat
}