前面的学习中已经涉及到了随机运动,这一篇主要还是前面的随机运动的改进,不废话直接上效果图吧,对比前面的随机运动,这里的飞机会随机的转动方向,而且转弯平滑

有一种做法是每一帧都计算出一个随机的驱动力,但是这样会产生抖动,不能达到持久的转弯(事实上,一个好的随机函数,Perlin噪声,可以产生光滑转弯,但是CPU的开销会很大。当然当你没有其他办法时,这仍然是个办法,Perlin噪声有很多应用程序)。在这里的解决方案是,在飞机的前端凸出位置界定一个圆圈,隐藏一个跟踪物并被限制在该圆圈上,然后随机的使得这个隐藏的跟踪物运动起来,飞机只要保持追踪这个追踪物就可以实现平滑的随机转弯运动了。类似于,一个鱼前面有一个鱼竿挂着一个诱饵,但是鱼永远也追不上那个诱饵,因为它就绑在它身上。如图所示是它的隐藏效果图

主要代码下:

using unityEngine;[/size]

[size=14px]using System.Collections;[/size]

[size=14px]using UnityEngine.UI;[/size]

[size=14px]/// <summary>[/size]

[size=14px]/// 前面的随机运动是比较粗糙的,这种运动会产生抖动,不能达到持久的转弯(事实上,一个好的随机函数,Perlin噪声,可以产生光滑转弯,但是那样CPU的开销会很大。),在飞机前面添加一个凸出的圆圈,目标被限制在[/size]

[size=14px]/// 圆圈上,然后在移动飞机至目标上,当然飞机永远也不会追上目标就好像给鱼的前面掉一个钓鱼竿和诱饵一样。[/size]

[size=14px]/// </summary>[/size]

[size=14px]public class AIAdvancedRandMove : MonoBehaviour[/size]

[size=14px]{[/size]

[size=14px]public float m_weight;//这个值是用来转弯用的,值越大转弯越快[/size]

[size=14px]public PlayObject WanderTarget;//这是一个点,被限制在半径为m_dWanderRadius的圆圈里面,以大圆圈为中心[/size]

[size=14px][HideInInspector][/size]

[size=14px]private Vector2 vWanderTarget;[/size]

[size=14px]public PlayObject plane;[/size]

[size=14px]public Image Circle;[/size]

[size=14px]public float m_dWanderRadius;//wander圈的半径[/size]

[size=14px]public float m_dWanderDistance;//wander圈凸出在飞机前面的距离[/size]

[size=14px]public float m_dWanderJitter;//每秒加到目标的随机位移的最大值[/size]

[size=14px]// Use this for initialization[/size]

[size=14px]void Start()[/size]

[size=14px]{[/size]

[size=14px]//初始化小圆圈的位置并且限制小圆圈在大圆圈里面,大圆圈的半径为m_dWanderRadius[/size]

[size=14px]float thera = Random.Range(0, 361.0f)*Mathf.PI/180;//随机0~360度并转换成弧度[/size]

[size=14px]// Debug.Log(Mathf.Sin(30*Mathf.PI/180));[/size]

[size=14px]vWanderTarget = new Vector2(m_dWanderRadius * Mathf.Cos(thera), m_dWanderRadius * Mathf.Sin(thera));[/size]

[size=14px]WanderTarget.LocalPosition = vWanderTarget;[/size]

[size=14px]}[/size]


[size=14px]// Update is called once per frame[/size]

[size=14px]void Update()[/size]

[size=14px]{[/size]

[size=14px]Vector2 moveVec = AI_AdvancedRandMove();[/size]

[size=14px]float length = Mathf.Sqrt(moveVec.x * moveVec.x + moveVec.y * moveVec.y);[/size]

[size=14px]if (length != 0)[/size]

[size=14px]{[/size]

[size=14px]// Debug.Log("x:" + moveVec.x + "y:" + moveVec.y);[/size]

[size=14px]plane.Velocity +=m_weight * moveVec / length;[/size]

[size=14px]Circle.transform.position = plane.Position;[/size]

[size=14px]plane.Move(1, true);[/size]

[size=14px]}[/size]


[size=14px]}[/size]


[size=14px]Vector2 AI_AdvancedRandMove()[/size]

[size=14px]{[/size]

[size=14px]//随机位移值[/size]

[size=14px]float JitterThisTimeSlice = m_dWanderJitter * Time.deltaTime*100;[/size]

[size=14px]//首先,加一个小的随机向量到目标位置[/size]

[size=14px]vWanderTarget += new Vector2(Random.Range(-1, 2) * JitterThisTimeSlice, Random.Range(-1, 2) * JitterThisTimeSlice);[/size]

[size=14px]//把这个向量归一化,也即把这个向量重新投影回单元圆周上[/size]

[size=14px]float lenght = Mathf.Sqrt(vWanderTarget.x * vWanderTarget.x + vWanderTarget.y * vWanderTarget.y);[/size]

[size=14px]vWanderTarget = vWanderTarget / lenght;[/size]

[size=14px]//使向量的长度增加wander圆周的半径长度[/size]

[size=14px]vWanderTarget *= m_dWanderRadius;[/size]

[size=14px]Vector2 target = new Vector2(vWanderTarget.x+m_dWanderDistance,vWanderTarget.y);[/size]

[size=14px]WanderTarget.LocalPosition = target;[/size]

[size=14px]target = WanderTarget.Position;[/size]

[size=14px]// Vector2 Target = PointToWorldSpace(ref target, plane.vHeading, plane.vSide, plane.Position);[/size]

[size=14px]return target - plane.Position;[/size]

[size=14px]}[/size]

[size=14px]/// <summary>[/size]

[size=14px]/// 从局部坐标的位置转向世界坐标[/size]

[size=14px]/// </summary>[/size]

[size=14px]/// <param name="vec"></param>[/size]

[size=14px]/// <param name="Heading"></param>[/size]

[size=14px]/// <param name="Side"></param>[/size]

[size=14px]/// <returns></returns>[/size]

[size=14px]Vector2 PointToWorldSpace(ref Vector2 point, Vector2 Heading, Vector2 Side, Vector2 Postion)[/size]

[size=14px]{[/size]

[size=14px]Vector2 TransVec = point;[/size]

[size=14px]C2DMatrix matTransform = new C2DMatrix();[/size]

[size=14px]//旋转矩阵[/size]

[size=14px]matTransform.Rotate(ref Heading, ref Side);[/size]

[size=14px]//平移矩阵[/size]

[size=14px]matTransform.Translate(Postion.x, Postion.y);[/size]

[size=14px]matTransform.TransformVector2Ds(ref TransVec);[/size]

[size=14px]return TransVec;[/size]


[size=14px]}[/size]


[size=14px]}

另外附上工程的演示下载地址,如果各位看官觉得Nice就请点个赞吧!
网盘下载:http://www.taidous.com/bbs/thread-34245-1-1.html