官术网_书友最值得收藏!

Arriving and leaving

Similar to Seek and Flee, the idea behind these algorithms is to apply the same principles and extend the functionality to a point where the agent stops automatically after a condition is met, either being close to its destination (arrive), or far enough from a dangerous point (leave).

Getting ready

We need to create one file for each of the algorithms, Arrive and Leave, respectively, and remember to set their custom execution order.

How to do it...

They use the same approach, but in terms of implementation, the name of the member variables change as well as some computations in the first half of the GetSteering function:

  1. First, implement the Arrive behaviour with its member variables to define the radius for stopping (target) and slowing down:
    using UnityEngine;
    using System.Collections;
    
    public class Arrive : AgentBehaviour
    {
        public float targetRadius;
        public float slowRadius;
        public float timeToTarget = 0.1f;
    }
  2. Create the GetSteering function:
    public override Steering GetSteering()
    {
        // code in next steps
    }
  3. Define the first half of the GetSteering function, in which we compute the desired speed depending on the distance from the target according to the radii variables:
    Steering steering = new Steering();
    Vector3 direction = target.transform.position - transform.position;
    float distance = direction.magnitude;
    float targetSpeed;
    if (distance < targetRadius)
        return steering;
    if (distance > slowRadius)
        targetSpeed = agent.maxSpeed;
    else
        targetSpeed = agent.maxSpeed * distance / slowRadius;
  4. Define the second half of the GetSteering function, in which we set the steering value and clamp it according to the maximum speed:
    Vector3 desiredVelocity = direction;
    desiredVelocity.Normalize();
    desiredVelocity *= targetSpeed;
    steering.linear = desiredVelocity - agent.velocity;
    steering.linear /= timeToTarget;
    if (steering.linear.magnitude > agent.maxAccel)
    {
        steering.linear.Normalize();
        steering.linear *= agent.maxAccel;
    }
    return steering;
  5. To implement Leave, the name of the member variables changes:
    using UnityEngine;
    using System.Collections;
    
    public class Leave : AgentBehaviour
    {
        public float escapeRadius;
        public float dangerRadius;
        public float timeToTarget = 0.1f;
    }
  6. Define the first half of the GetSteering function:
    Steering steering = new Steering();
    Vector3 direction = transform.position - target.transform.position;
    float distance = direction.magnitude;
    if (distance > dangerRadius)
        return steering;
    float reduce;
    if (distance < escapeRadius)
        reduce = 0f;
    else
        reduce = distance / dangerRadius * agent.maxSpeed;
    float targetSpeed = agent.maxSpeed - reduce;
  7. And finally, the second half of GetSteering stays just the same.

How it works...

After calculating the direction to go in, the next calculations are based on two radii distances in order to know when to go full throttle, slow down, and stop; that's why we have several if statements. In the Arrive behavior, when the agent is too far, we aim to full-throttle, progressively slow down when inside the proper radius, and finally to stop when close enough to the target. The converse train of thought applies to Leave.

How it works...

A visual reference for the Arrive and Leave behaviors

主站蜘蛛池模板: 仁布县| 静安区| 柘城县| 平顺县| 正阳县| 雅江县| 鞍山市| 洛宁县| 灵川县| 台北县| 湘西| 广德县| 梁河县| 云南省| 稷山县| 呼伦贝尔市| 广丰县| 承德市| 淳安县| 洪泽县| 临泽县| 盐津县| 温州市| 库尔勒市| 阿合奇县| 苏州市| 文化| 永定县| 朝阳县| 手游| 鄱阳县| 维西| 鹤峰县| 搜索| 新丰县| 曲靖市| 社会| 项城市| 霞浦县| 栾川县| 武定县|