< Summary

Class:IPredictor
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Algorithms/Prediction/Predictor.cs
Covered lines:3
Uncovered lines:0
Coverable lines:3
Total lines:37
Line coverage:100% (3 of 3)
Covered branches:0
Total branches:0
Covered methods:1
Total methods:1
Method coverage:100% (1 of 1)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
IPredictor(...)0%110100%

File(s)

/github/workspace/Assets/Scripts/Algorithms/Prediction/Predictor.cs

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

Methods/Properties

IPredictor(Agent&)