| | 1 | | using UnityEngine; |
| | 2 | |
|
| | 3 | | public class PredictorState { |
| | 4 | | // Position. |
| 0 | 5 | | public Vector3 Position { get; } |
| | 6 | |
|
| | 7 | | // Velocity. |
| 0 | 8 | | public Vector3 Velocity { get; } |
| | 9 | |
|
| | 10 | | // Acceleration. |
| 0 | 11 | | public Vector3 Acceleration { get; } |
| | 12 | |
|
| 0 | 13 | | public PredictorState() {} |
| 0 | 14 | | public PredictorState(Agent agent) { |
| 0 | 15 | | Position = agent.GetPosition(); |
| 0 | 16 | | Velocity = agent.GetVelocity(); |
| 0 | 17 | | Acceleration = agent.GetAcceleration(); |
| 0 | 18 | | } |
| 0 | 19 | | public PredictorState(Vector3 position, Vector3 velocity, Vector3 acceleration) { |
| 0 | 20 | | Position = position; |
| 0 | 21 | | Velocity = velocity; |
| 0 | 22 | | Acceleration = acceleration; |
| 0 | 23 | | } |
| | 24 | | } |
| | 25 | |
|
| | 26 | | // The predictor class is an interface for predicting the trajectories of agents. |
| | 27 | | public abstract class IPredictor { |
| | 28 | | // Agent state. |
| | 29 | | protected PredictorState _state; |
| | 30 | |
|
| | 31 | | public IPredictor(in Agent agent) { |
| | 32 | | _state = new PredictorState(agent); |
| | 33 | | } |
| | 34 | |
|
| | 35 | | // Predict the state at the given time. |
| | 36 | | public abstract PredictorState Predict(float time); |
| | 37 | | } |