| | 1 | | using System.Collections; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using UnityEngine; |
| | 4 | |
|
| | 5 | | public abstract class Agent : MonoBehaviour { |
| | 6 | | // In the initialized phase, the agent is subject to no forces. |
| | 7 | | // In the ready phase, the agent is subject to gravity and drag with zero input acceleration. |
| | 8 | | public enum FlightPhase { INITIALIZED, READY, BOOST, MIDCOURSE, TERMINAL, TERMINATED } |
| | 9 | |
|
| | 10 | | [SerializeField] |
| 64 | 11 | | private FlightPhase _flightPhase = FlightPhase.INITIALIZED; |
| | 12 | |
|
| | 13 | | [SerializeField] |
| | 14 | | protected Vector3 _velocity; |
| | 15 | |
|
| | 16 | | [SerializeField] |
| | 17 | | protected Vector3 _acceleration; |
| | 18 | |
|
| | 19 | | [SerializeField] |
| | 20 | | protected Vector3 _dragAcceleration; |
| | 21 | |
|
| | 22 | | [SerializeField] |
| | 23 | | protected float _speed; |
| | 24 | |
|
| | 25 | | [SerializeField] |
| 64 | 26 | | protected List<Agent> _interceptors = new List<Agent>(); |
| | 27 | | [SerializeField] |
| | 28 | | protected Agent _target; |
| | 29 | | [SerializeField] |
| | 30 | | protected Agent _targetModel; |
| | 31 | |
|
| | 32 | | [SerializeField] |
| 64 | 33 | | protected double _timeSinceBoost = 0; |
| | 34 | | [SerializeField] |
| 64 | 35 | | protected double _timeInPhase = 0; |
| | 36 | |
|
| | 37 | | public StaticAgentConfig staticAgentConfig; |
| | 38 | | public DynamicAgentConfig dynamicAgentConfig; |
| | 39 | |
|
| | 40 | | // Define delegates. |
| | 41 | | public delegate void TerminatedEventHandler(Agent agent); |
| | 42 | | public event TerminatedEventHandler OnTerminated; |
| | 43 | |
|
| | 44 | | public delegate void InterceptHitEventHandler(Interceptor interceptor, Threat target); |
| | 45 | | public delegate void InterceptMissEventHandler(Interceptor interceptor, Threat target); |
| | 46 | | public delegate void ThreatHitEventHandler(Threat threat); |
| | 47 | | public delegate void ThreatMissEventHandler(Threat threat); |
| | 48 | |
|
| | 49 | | // Define events. |
| | 50 | | public event InterceptHitEventHandler OnInterceptHit; |
| | 51 | | public event InterceptMissEventHandler OnInterceptMiss; |
| | 52 | | public event ThreatHitEventHandler OnThreatHit; |
| | 53 | | public event ThreatMissEventHandler OnThreatMiss; |
| | 54 | |
|
| | 55 | | private Vector3 _initialVelocity; |
| | 56 | |
|
| 0 | 57 | | public void SetFlightPhase(FlightPhase flightPhase) { |
| 0 | 58 | | _timeInPhase = 0; |
| 0 | 59 | | _flightPhase = flightPhase; |
| 0 | 60 | | if (flightPhase == FlightPhase.INITIALIZED || flightPhase == FlightPhase.TERMINATED) { |
| 0 | 61 | | GetComponent<Rigidbody>().constraints = RigidbodyConstraints.FreezeAll; |
| 0 | 62 | | } else { |
| 0 | 63 | | GetComponent<Rigidbody>().constraints = RigidbodyConstraints.None; |
| 0 | 64 | | } |
| 0 | 65 | | if (flightPhase == FlightPhase.BOOST) { |
| 0 | 66 | | SetVelocity(GetVelocity() + _initialVelocity); |
| 0 | 67 | | } |
| 0 | 68 | | } |
| | 69 | |
|
| 0 | 70 | | public FlightPhase GetFlightPhase() { |
| 0 | 71 | | return _flightPhase; |
| 0 | 72 | | } |
| | 73 | |
|
| 0 | 74 | | public bool HasLaunched() { |
| 0 | 75 | | return _flightPhase != FlightPhase.INITIALIZED; |
| 0 | 76 | | } |
| | 77 | |
|
| 0 | 78 | | public bool HasTerminated() { |
| 0 | 79 | | return _flightPhase == FlightPhase.TERMINATED; |
| 0 | 80 | | } |
| | 81 | |
|
| 15 | 82 | | public virtual void SetDynamicAgentConfig(DynamicAgentConfig config) { |
| 15 | 83 | | dynamicAgentConfig = config; |
| 15 | 84 | | } |
| | 85 | |
|
| 15 | 86 | | public virtual void SetStaticAgentConfig(StaticAgentConfig config) { |
| 15 | 87 | | staticAgentConfig = config; |
| 15 | 88 | | GetComponent<Rigidbody>().mass = staticAgentConfig.bodyConfig.mass; |
| 15 | 89 | | } |
| | 90 | |
|
| 0 | 91 | | public virtual bool IsAssignable() { |
| 0 | 92 | | return true; |
| 0 | 93 | | } |
| | 94 | |
|
| 0 | 95 | | public virtual void AssignTarget(Agent target) { |
| 0 | 96 | | _target = target; |
| 0 | 97 | | _target.AddInterceptor(this); |
| 0 | 98 | | _targetModel = SimManager.Instance.CreateDummyAgent(target.GetPosition(), target.GetVelocity()); |
| 0 | 99 | | } |
| | 100 | |
|
| 0 | 101 | | public Agent GetAssignedTarget() { |
| 0 | 102 | | return _target; |
| 0 | 103 | | } |
| | 104 | |
|
| 14 | 105 | | public bool HasAssignedTarget() { |
| 14 | 106 | | return _target != null; |
| 14 | 107 | | } |
| | 108 | |
|
| 0 | 109 | | public Agent GetTargetModel() { |
| 0 | 110 | | return _targetModel; |
| 0 | 111 | | } |
| | 112 | |
|
| 0 | 113 | | public virtual void UnassignTarget() { |
| 0 | 114 | | if (HasAssignedTarget()) { |
| 0 | 115 | | _target.RemoveInterceptor(this); |
| 0 | 116 | | } |
| 0 | 117 | | _target = null; |
| 0 | 118 | | _targetModel = null; |
| 0 | 119 | | } |
| | 120 | |
|
| 24 | 121 | | public bool IsTerminated() { |
| 24 | 122 | | return _flightPhase == FlightPhase.TERMINATED; |
| 24 | 123 | | } |
| | 124 | |
|
| 0 | 125 | | public void AddInterceptor(Agent interceptor) { |
| 0 | 126 | | _interceptors.Add(interceptor); |
| 0 | 127 | | } |
| | 128 | |
|
| 0 | 129 | | public void RemoveInterceptor(Agent interceptor) { |
| 0 | 130 | | _interceptors.Remove(interceptor); |
| 0 | 131 | | } |
| | 132 | |
|
| | 133 | | public IReadOnlyList<Agent> AssignedInterceptors { |
| 15 | 134 | | get { return _interceptors; } |
| | 135 | | } |
| | 136 | |
|
| 0 | 137 | | public virtual void TerminateAgent() { |
| 0 | 138 | | UnassignTarget(); |
| 0 | 139 | | if (_flightPhase != FlightPhase.TERMINATED) { |
| 0 | 140 | | OnTerminated?.Invoke(this); |
| 0 | 141 | | } |
| 0 | 142 | | _flightPhase = FlightPhase.TERMINATED; |
| 0 | 143 | | SetPosition(Vector3.zero); |
| 0 | 144 | | gameObject.SetActive(false); |
| 0 | 145 | | } |
| | 146 | |
|
| 0 | 147 | | public void HandleInterceptHit(Agent agent) { |
| 0 | 148 | | if (this is Interceptor interceptor && agent is Threat threat) { |
| 0 | 149 | | OnInterceptHit?.Invoke(interceptor, threat); |
| 0 | 150 | | TerminateAgent(); |
| 0 | 151 | | } |
| 0 | 152 | | } |
| | 153 | |
|
| 0 | 154 | | public void HandleInterceptMiss() { |
| 0 | 155 | | if (this is Interceptor interceptor && _target is Threat threat) { |
| 0 | 156 | | OnInterceptMiss?.Invoke(interceptor, threat); |
| 0 | 157 | | } |
| 0 | 158 | | } |
| | 159 | |
|
| 0 | 160 | | public void HandleTargetIntercepted() { |
| 0 | 161 | | if (this is Threat threat) { |
| 0 | 162 | | TerminateAgent(); |
| 0 | 163 | | } |
| 0 | 164 | | } |
| | 165 | |
|
| 0 | 166 | | public void HandleThreatHit() { |
| 0 | 167 | | if (this is Threat threat) { |
| 0 | 168 | | OnThreatHit?.Invoke(threat); |
| 0 | 169 | | TerminateAgent(); |
| 0 | 170 | | } |
| 0 | 171 | | } |
| | 172 | |
|
| 0 | 173 | | public void HandleHitGround() { |
| 0 | 174 | | if (this is Interceptor interceptor && _target is Threat target) { |
| 0 | 175 | | OnInterceptMiss?.Invoke(interceptor, target); |
| 0 | 176 | | } |
| 0 | 177 | | if (this is Threat threat) { |
| 0 | 178 | | OnThreatMiss?.Invoke(threat); |
| 0 | 179 | | } |
| 0 | 180 | | TerminateAgent(); |
| 0 | 181 | | } |
| | 182 | |
|
| 15 | 183 | | public void SetInitialVelocity(Vector3 velocity) { |
| 15 | 184 | | _initialVelocity = velocity; |
| 15 | 185 | | } |
| | 186 | |
|
| 67 | 187 | | public Vector3 GetPosition() { |
| 67 | 188 | | return transform.position; |
| 67 | 189 | | } |
| | 190 | |
|
| 4 | 191 | | public void SetPosition(Vector3 position) { |
| 4 | 192 | | transform.position = position; |
| 4 | 193 | | } |
| | 194 | |
|
| 30 | 195 | | public double GetSpeed() { |
| 30 | 196 | | return GetComponent<Rigidbody>().linearVelocity.magnitude; |
| 30 | 197 | | } |
| | 198 | |
|
| 67 | 199 | | public Vector3 GetVelocity() { |
| 67 | 200 | | return GetComponent<Rigidbody>().linearVelocity; |
| 67 | 201 | | } |
| | 202 | |
|
| 1 | 203 | | public void SetVelocity(Vector3 velocity) { |
| 1 | 204 | | GetComponent<Rigidbody>().linearVelocity = velocity; |
| 1 | 205 | | } |
| | 206 | |
|
| 11 | 207 | | public Vector3 GetAcceleration() { |
| 11 | 208 | | return _acceleration; |
| 11 | 209 | | } |
| | 210 | |
|
| 0 | 211 | | public void SetAcceleration(Vector3 acceleration) { |
| 0 | 212 | | _acceleration = acceleration; |
| 0 | 213 | | } |
| | 214 | |
|
| 3 | 215 | | public Transformation GetRelativeTransformation(Agent target) { |
| 3 | 216 | | Transformation transformation = new Transformation(); |
| | 217 | |
|
| | 218 | | // Get the relative position transformation. |
| 3 | 219 | | transformation.position = |
| | 220 | | GetRelativePositionTransformation(target.GetPosition() - GetPosition()); |
| | 221 | |
|
| | 222 | | // Get the relative velocity transformation. |
| 3 | 223 | | transformation.velocity = GetRelativeVelocityTransformation( |
| | 224 | | target.GetPosition() - GetPosition(), target.GetVelocity() - GetVelocity()); |
| | 225 | |
|
| | 226 | | // Get the relative acceleration transformation. |
| 3 | 227 | | transformation.acceleration = GetRelativeAccelerationTransformation(target); |
| 3 | 228 | | return transformation; |
| 3 | 229 | | } |
| | 230 | |
|
| 5 | 231 | | public Transformation GetRelativeTransformationToWaypoint(Vector3 waypoint) { |
| 5 | 232 | | Transformation transformation = new Transformation(); |
| | 233 | |
|
| | 234 | | // Get the relative position transformation. |
| 5 | 235 | | transformation.position = GetRelativePositionTransformation(waypoint - GetPosition()); |
| | 236 | |
|
| | 237 | | // Get the relative velocity transformation. |
| 5 | 238 | | transformation.velocity = |
| | 239 | | GetRelativeVelocityTransformation(waypoint - GetPosition(), -GetVelocity()); |
| | 240 | |
|
| 5 | 241 | | return transformation; |
| 5 | 242 | | } |
| | 243 | |
|
| 8 | 244 | | private PositionTransformation GetRelativePositionTransformation(Vector3 relativePosition) { |
| 8 | 245 | | PositionTransformation positionTransformation = new PositionTransformation(); |
| | 246 | |
|
| | 247 | | // Set the relative position in Cartesian coordinates. |
| 8 | 248 | | positionTransformation.cartesian = relativePosition; |
| | 249 | |
|
| | 250 | | // Calculate the distance (range) to the target. |
| 8 | 251 | | positionTransformation.range = relativePosition.magnitude; |
| | 252 | |
|
| 8 | 253 | | Vector3 flatRelativePosition = Vector3.ProjectOnPlane(relativePosition, transform.up); |
| 8 | 254 | | Vector3 verticalRelativePosition = relativePosition - flatRelativePosition; |
| | 255 | |
|
| | 256 | | // Calculate the elevation (vertical angle relative to forward). |
| 8 | 257 | | positionTransformation.elevation = |
| | 258 | | Mathf.Atan(verticalRelativePosition.magnitude / flatRelativePosition.magnitude); |
| | 259 | |
|
| | 260 | | // Calculate the azimuth (horizontal angle relative to forward). |
| 9 | 261 | | if (flatRelativePosition.magnitude == 0) { |
| 1 | 262 | | positionTransformation.azimuth = 0; |
| 8 | 263 | | } else { |
| 7 | 264 | | positionTransformation.azimuth = |
| | 265 | | Vector3.SignedAngle(transform.forward, flatRelativePosition, transform.up) * Mathf.PI / |
| | 266 | | 180; |
| 7 | 267 | | } |
| | 268 | |
|
| 8 | 269 | | return positionTransformation; |
| 8 | 270 | | } |
| | 271 | |
|
| | 272 | | private VelocityTransformation GetRelativeVelocityTransformation(Vector3 relativePosition, |
| 8 | 273 | | Vector3 relativeVelocity) { |
| 8 | 274 | | VelocityTransformation velocityTransformation = new VelocityTransformation(); |
| | 275 | |
|
| | 276 | | // Set the relative velocity in Cartesian coordinates. |
| 8 | 277 | | velocityTransformation.cartesian = relativeVelocity; |
| | 278 | |
|
| | 279 | | // Calculate range rate (radial velocity). |
| 8 | 280 | | velocityTransformation.range = Vector3.Dot(relativeVelocity, relativePosition.normalized); |
| | 281 | |
|
| | 282 | | // Project relative velocity onto the sphere passing through the target. |
| 8 | 283 | | Vector3 tangentialVelocity = Vector3.ProjectOnPlane(relativeVelocity, relativePosition); |
| | 284 | |
|
| | 285 | | // The target azimuth vector is orthogonal to the relative position vector and |
| | 286 | | // points to the starboard of the target along the azimuth-elevation sphere. |
| 8 | 287 | | Vector3 targetAzimuth = Vector3.Cross(transform.up, relativePosition); |
| | 288 | | // The target elevation vector is orthogonal to the relative position vector |
| | 289 | | // and points upwards from the target along the azimuth-elevation sphere. |
| 8 | 290 | | Vector3 targetElevation = Vector3.Cross(relativePosition, transform.right); |
| | 291 | | // If the relative position vector is parallel to the yaw or pitch axis, the |
| | 292 | | // target azimuth vector or the target elevation vector will be undefined. |
| 9 | 293 | | if (targetAzimuth.magnitude == 0) { |
| 1 | 294 | | targetAzimuth = Vector3.Cross(targetElevation, relativePosition); |
| 10 | 295 | | } else if (targetElevation.magnitude == 0) { |
| 2 | 296 | | targetElevation = Vector3.Cross(relativePosition, targetAzimuth); |
| 2 | 297 | | } |
| | 298 | |
|
| | 299 | | // Project the relative velocity vector on the azimuth-elevation sphere onto |
| | 300 | | // the target azimuth vector. |
| 8 | 301 | | Vector3 tangentialVelocityOnAzimuth = Vector3.Project(tangentialVelocity, targetAzimuth); |
| | 302 | |
|
| | 303 | | // Calculate the time derivative of the azimuth to the target. |
| 8 | 304 | | velocityTransformation.azimuth = |
| | 305 | | tangentialVelocityOnAzimuth.magnitude / relativePosition.magnitude; |
| 9 | 306 | | if (Vector3.Dot(tangentialVelocityOnAzimuth, targetAzimuth) < 0) { |
| 1 | 307 | | velocityTransformation.azimuth *= -1; |
| 1 | 308 | | } |
| | 309 | |
|
| | 310 | | // Project the velocity vector on the azimuth-elevation sphere onto the target |
| | 311 | | // elevation vector. |
| 8 | 312 | | Vector3 tangentialVelocityOnElevation = Vector3.Project(tangentialVelocity, targetElevation); |
| | 313 | |
|
| | 314 | | // Calculate the time derivative of the elevation to the target. |
| 8 | 315 | | velocityTransformation.elevation = |
| | 316 | | tangentialVelocityOnElevation.magnitude / relativePosition.magnitude; |
| 9 | 317 | | if (Vector3.Dot(tangentialVelocityOnElevation, targetElevation) < 0) { |
| 1 | 318 | | velocityTransformation.elevation *= -1; |
| 1 | 319 | | } |
| | 320 | |
|
| 8 | 321 | | return velocityTransformation; |
| 8 | 322 | | } |
| | 323 | |
|
| 3 | 324 | | private AccelerationTransformation GetRelativeAccelerationTransformation(Agent agent) { |
| | 325 | | // Since the agent's acceleration is an input, the relative acceleration is just the agent's |
| | 326 | | // acceleration. |
| 3 | 327 | | AccelerationTransformation accelerationTransformation = new AccelerationTransformation(); |
| 3 | 328 | | accelerationTransformation.cartesian = agent.GetAcceleration(); |
| 3 | 329 | | return accelerationTransformation; |
| 3 | 330 | | } |
| | 331 | |
|
| 0 | 332 | | public double GetDynamicPressure() { |
| 0 | 333 | | var airDensity = Constants.CalculateAirDensityAtAltitude(transform.position.y); |
| 0 | 334 | | var flowSpeed = GetSpeed(); |
| 0 | 335 | | return 0.5 * airDensity * (flowSpeed * flowSpeed); |
| 0 | 336 | | } |
| | 337 | |
|
| | 338 | | protected abstract void UpdateReady(double deltaTime); |
| | 339 | | protected abstract void UpdateBoost(double deltaTime); |
| | 340 | | protected abstract void UpdateMidCourse(double deltaTime); |
| | 341 | |
|
| 0 | 342 | | protected virtual void Awake() {} |
| | 343 | |
|
| | 344 | | // Start is called before the first frame update |
| 38 | 345 | | protected virtual void Start() {} |
| | 346 | |
|
| | 347 | | // Update is called once per frame |
| 0 | 348 | | protected virtual void FixedUpdate() { |
| 0 | 349 | | _speed = (float)GetSpeed(); |
| 0 | 350 | | if (_flightPhase != FlightPhase.INITIALIZED && _flightPhase != FlightPhase.READY) { |
| 0 | 351 | | _timeSinceBoost += Time.fixedDeltaTime; |
| 0 | 352 | | } |
| 0 | 353 | | _timeInPhase += Time.fixedDeltaTime; |
| | 354 | |
|
| 0 | 355 | | var boost_time = staticAgentConfig.boostConfig.boostTime; |
| 0 | 356 | | double elapsedSimulationTime = SimManager.Instance.GetElapsedSimulationTime(); |
| | 357 | |
|
| 0 | 358 | | if (_flightPhase == FlightPhase.TERMINATED) { |
| 0 | 359 | | return; |
| | 360 | | } |
| 0 | 361 | | if (_flightPhase == FlightPhase.INITIALIZED || _flightPhase == FlightPhase.READY) { |
| 0 | 362 | | SetFlightPhase(FlightPhase.BOOST); |
| 0 | 363 | | } |
| 0 | 364 | | if (_timeSinceBoost > boost_time && _flightPhase == FlightPhase.BOOST) { |
| 0 | 365 | | SetFlightPhase(FlightPhase.MIDCOURSE); |
| 0 | 366 | | } |
| 0 | 367 | | AlignWithVelocity(); |
| 0 | 368 | | switch (_flightPhase) { |
| | 369 | | case FlightPhase.INITIALIZED: |
| 0 | 370 | | break; |
| | 371 | | case FlightPhase.READY: |
| 0 | 372 | | UpdateReady(Time.fixedDeltaTime); |
| 0 | 373 | | break; |
| | 374 | | case FlightPhase.BOOST: |
| 0 | 375 | | UpdateBoost(Time.fixedDeltaTime); |
| 0 | 376 | | break; |
| | 377 | | case FlightPhase.MIDCOURSE: |
| | 378 | | case FlightPhase.TERMINAL: |
| 0 | 379 | | UpdateMidCourse(Time.fixedDeltaTime); |
| 0 | 380 | | break; |
| | 381 | | case FlightPhase.TERMINATED: |
| 0 | 382 | | break; |
| | 383 | | } |
| | 384 | |
|
| 0 | 385 | | _velocity = GetVelocity(); |
| | 386 | | // Store the acceleration because it is set to zero after each simulation step |
| 0 | 387 | | _acceleration = |
| | 388 | | GetComponent<Rigidbody>().GetAccumulatedForce() / GetComponent<Rigidbody>().mass; |
| 0 | 389 | | } |
| | 390 | |
|
| 0 | 391 | | protected virtual void AlignWithVelocity() { |
| 0 | 392 | | Vector3 velocity = GetVelocity(); |
| 0 | 393 | | if (velocity.magnitude > 0.1f) // Only align if we have significant velocity |
| 0 | 394 | | { |
| | 395 | | // Create a rotation with forward along velocity and up along world up |
| 0 | 396 | | Quaternion targetRotation = Quaternion.LookRotation(velocity, Vector3.up); |
| | 397 | |
|
| | 398 | | // Smoothly rotate towards the target rotation |
| 0 | 399 | | transform.rotation = Quaternion.RotateTowards(transform.rotation, targetRotation, |
| | 400 | | 10000f * Time.fixedDeltaTime); |
| 0 | 401 | | } |
| 0 | 402 | | } |
| | 403 | |
|
| 0 | 404 | | protected Vector3 CalculateAcceleration(Vector3 accelerationInput) { |
| 0 | 405 | | Vector3 gravity = Physics.gravity; |
| 0 | 406 | | float airDrag = CalculateDrag(); |
| 0 | 407 | | float liftInducedDrag = CalculateLiftInducedDrag(accelerationInput + gravity); |
| 0 | 408 | | float dragAcceleration = -(airDrag + liftInducedDrag); |
| | 409 | |
|
| | 410 | | // Project the drag acceleration onto the forward direction |
| 0 | 411 | | Vector3 dragAccelerationAlongRoll = dragAcceleration * transform.forward; |
| 0 | 412 | | _dragAcceleration = dragAccelerationAlongRoll; |
| | 413 | |
|
| 0 | 414 | | return accelerationInput + gravity + dragAccelerationAlongRoll; |
| 0 | 415 | | } |
| | 416 | |
|
| 5 | 417 | | public float CalculateMaxForwardAcceleration() { |
| 5 | 418 | | return staticAgentConfig.accelerationConfig.maxForwardAcceleration; |
| 5 | 419 | | } |
| | 420 | |
|
| 15 | 421 | | public float CalculateMaxNormalAcceleration() { |
| 15 | 422 | | float maxReferenceNormalAcceleration = |
| | 423 | | (float)(staticAgentConfig.accelerationConfig.maxReferenceNormalAcceleration * |
| | 424 | | Constants.kGravity); |
| 15 | 425 | | float referenceSpeed = staticAgentConfig.accelerationConfig.referenceSpeed; |
| 15 | 426 | | return Mathf.Pow((float)GetSpeed() / referenceSpeed, 2) * maxReferenceNormalAcceleration; |
| 15 | 427 | | } |
| | 428 | |
|
| 0 | 429 | | private float CalculateDrag() { |
| 0 | 430 | | float dragCoefficient = staticAgentConfig.liftDragConfig.dragCoefficient; |
| 0 | 431 | | float crossSectionalArea = staticAgentConfig.bodyConfig.crossSectionalArea; |
| 0 | 432 | | float mass = staticAgentConfig.bodyConfig.mass; |
| 0 | 433 | | float dynamicPressure = (float)GetDynamicPressure(); |
| 0 | 434 | | float dragForce = dragCoefficient * dynamicPressure * crossSectionalArea; |
| 0 | 435 | | return dragForce / mass; |
| 0 | 436 | | } |
| | 437 | |
|
| 0 | 438 | | private float CalculateLiftInducedDrag(Vector3 accelerationInput) { |
| 0 | 439 | | float liftAcceleration = Vector3.ProjectOnPlane(accelerationInput, transform.up).magnitude; |
| 0 | 440 | | float liftDragRatio = staticAgentConfig.liftDragConfig.liftDragRatio; |
| 0 | 441 | | return Mathf.Abs(liftAcceleration / liftDragRatio); |
| 0 | 442 | | } |
| | 443 | | } |
| | 444 | |
|
| | 445 | | public class DummyAgent : Agent { |
| | 446 | | protected override void Start() { |
| | 447 | | base.Start(); |
| | 448 | | } |
| | 449 | |
|
| | 450 | | protected override void FixedUpdate() { |
| | 451 | | GetComponent<Rigidbody>().AddForce(_acceleration, ForceMode.Acceleration); |
| | 452 | | } |
| | 453 | |
|
| | 454 | | protected override void UpdateReady(double deltaTime) { |
| | 455 | | // Do nothing. |
| | 456 | | } |
| | 457 | |
|
| | 458 | | protected override void UpdateBoost(double deltaTime) { |
| | 459 | | // Do nothing. |
| | 460 | | } |
| | 461 | |
|
| | 462 | | protected override void UpdateMidCourse(double deltaTime) { |
| | 463 | | // Do nothing. |
| | 464 | | } |
| | 465 | | } |