Unity 游戏框架搭建 (十五) 优雅的 ActionKit(QChain)

加班加了三个月终于喘了口气,博客很久没有更新了,这段期间框架加了很多Feature,大部分不太稳定,这些Feature中实现起来比较简单而且用的比较稳定的就是链式编程支持了。

什么是链式编程?

我想大家应该都接触过DOTween,用起来是这样的。

  1. transform.DOMove(Vector3.one, 0.5f)
  2. .SetEase(Ease.InBack)
  3. .OnKill(() => Debug.Log("on killed"))
  4. .OnComplete(() => Debug.Log("on completed"));

像以上.XXX().YYY().ZZZ()这种写法就叫链式编程了。

QChain是什么?

QFramework中有零零散散支持了链式写法,打算整理出来作为一个独立的库进行过维护。目前的使用方式如下:

  1. this.Show()
  2. .LocalIdentity() // 归一化
  3. .LocalPosition(Vector3.back)
  4. .LocalPositionX(1.0f)
  5. .Sequence() // 开始序列
  6. .Delay(1.0f)
  7. .Event(() => Log.I("frame event"))
  8. .Until(() => count == 2)
  9. .Event(() => Log.I("count is 2"))
  10. .Begin() // 执行序列
  11. .DisposeWhen(() => count == 3)
  12. .OnDisposed(() => Log.I("On Disposed"));
  13.  
  14. this.Repeat()
  15. .Delay(1.0f)
  16. .Event(() => count++)
  17. .Begin()
  18. .DisposeWhenGameObjDestroyed();
  19.  
  20. this.Repeat(5)
  21. .Event(() => Log.I(" Hello workd"))
  22. .Begin()
  23. .DisposeWhenFinished(); // 默认是这个
  24.  
  25. this.Sequence()
  26. .Delay(1.0f)
  27. .Event(() => Log.I("delay one second"))
  28. .Delay(1.0f)
  29. .Event(() => Log.E("delay two second"))
  30. .Begin();

为什么要用QChain

前段时间在给公司写一个蓝牙的插件,比较麻烦的是蓝牙管理类的状态同步和当状态改变时通知其他对象的问题。但是有了QChain,蓝牙连接的代码可以这样写:

  1. this.Sequence()
  2. .Event(() => PTBluetooth.Initialize(true, false))
  3. .Until(() => PTBluetooth.IsInitialized)
  4. .Until(() => PTBluetooth.IsOpened)
  5. .Event(() => PTBluetooth.ScanPeripheral((address, name, rssi, adInfo) => name.Contains("device")))
  6. .Until(() => PTBluetooth.ScannedDevices.Count >= 1)
  7. .Event(() => PTBluetooth.ConnectToPeripheral(PTBluetooth.ScannedDevices[0].Address))
  8. .Begin()
  9. .DisposeWhen(()=>
  10. {
  11. if (PTBluetooth.IsInitialized && !PTBluetooth.IsOpened)
  12. {
  13. // TODO: 这里处理初始化失败逻辑
  14. return true;
  15. }
  16.  
  17. // ... 其他失败逻辑处理
  18. return false;
  19. });

这样写的好处是,逻辑不会分散到处都是。相比于协程,生命周期更好进行管理(不用管理协程对象),可作为协程的替代方案。还有其他的好处随着本系列的更新逐个讨论。

相关链接:

我的框架地址:https://github.com/liangxiegame/QFramework

教程源码:https://github.com/liangxiegame/QFramework/tree/master/Assets/HowToWriteUnityGameFramework/

QFramework &游戏框架搭建QQ交流群: 623597263

转载请注明地址:凉鞋的笔记http://liangxiegame.com/

微信公众号:liangxiegame

15.优雅的 ActionKit(QChain)  - 图1

如果有帮助到您:

如果觉得本篇教程对您有帮助,不妨通过以下方式赞助笔者一下,鼓励笔者继续写出更多高质量的教程,也让更多的力量加入 QFramework 。