不多说,贴代码:

 #include "stdafx.h"
#include <list>
#include <thread>
#include <chrono> struct ICoroutine
{
virtual void reset(){}
virtual bool move_next(int & r, float & fv) { return false; }
virtual ~ICoroutine() {}
public:
float mWaitSeconds;
}; template<typename T>
struct _IGenerator : public ICoroutine
{
T* _stack;
int _line;
_IGenerator() :_stack(), _line(-) {}
virtual void reset()
{
_line = -;
}
void _push() { T* n = new T; *n = *static_cast<T*>(this); _stack = n; }
bool _pop() { if (!_stack) return false; T* t = _stack; *static_cast<T*>(this) = *_stack; t->_stack = ; delete t; return true; }
~_IGenerator() { while (_pop()); }
}; #define $coroutine(NAME) struct NAME : public _IGenerator<NAME> #define $begin virtual bool move_next(int& _rv, float& _rv2) { \
if(_line < ) _line=; \
$START: switch(_line) { case :; #define $stop } _line = 0; if(_pop()) goto $START; return false; } #define $restart(WITH) { _push(); _stack->_line = __LINE__; _line=0; WITH; goto $START; case __LINE__:; } #define $yield(V) \
do {\
_line=__LINE__;\
_rv = (V); return true; case __LINE__:;\
} while () #define $yield_f(V, V2) \
do {\
_line=__LINE__;\
_rv = (V); _rv2 = V2; return true; case __LINE__:;\
} while () enum CoroutineState
{
CO_None,
CO_WaitForNextUpdate,
CO_WaitForSeconds,
CO_Exit
}; class GScheduler
{
protected:
std::list<ICoroutine *> mActivityGList;
std::list<ICoroutine *> mWaitingGList;
std::list<ICoroutine *> mDeadingGList; std::list<ICoroutine *> mGList; void DestroyAllCoroutine()
{
std::list<ICoroutine *>::iterator iter;
for (iter = mGList.begin(); iter != mGList.end(); iter++)
{
ICoroutine * co = *iter;
delete co;
}
mGList.clear();
mDeadingGList.clear();
mWaitingGList.clear();
mActivityGList.clear();
}
public:
~GScheduler()
{
DestroyAllCoroutine();
} template<typename T, typename T2>
ICoroutine* StartCoroutine(T2 * tObj)
{
ICoroutine * gen = new T(tObj);
mGList.push_back(gen);
mActivityGList.push_back(gen);
return gen;
} void StopCoroutine(ICoroutine *)
{
} void RestartAllCoroutine()
{
std::list<ICoroutine *>::iterator iter;
for (iter = mGList.begin(); iter != mGList.end(); iter++)
{
ICoroutine * co = *iter;
co->reset();
mActivityGList.push_back(co);
}
} void StopAllCoroutine()
{
mDeadingGList.clear();
mWaitingGList.clear();
mActivityGList.clear();
}
void UpdateAllCoroutine(float dt)
{
std::list<ICoroutine *>::iterator iter, next;
for (iter = mWaitingGList.begin(); iter != mWaitingGList.end();iter = next)
{
next = iter; next++; ICoroutine * co = *iter;
co->mWaitSeconds -= dt;
if (co->mWaitSeconds <= )
{
next = mWaitingGList.erase(iter);
mActivityGList.push_back(co);
}
} for (iter = mActivityGList.begin(); iter != mActivityGList.end(); iter = next)
{
next = iter; next++; ICoroutine * co = *iter; bool isDeading = false; int retValue = ;
float retFValue = ;
if (!co->move_next(retValue, retFValue))
{
isDeading = true;
}
CoroutineState state = (CoroutineState)retValue;
if (state == CO_Exit)
{
isDeading = true;
}
else if (state == CO_WaitForNextUpdate)
{ }
else if (state == CO_WaitForSeconds)
{
float seconds = retFValue;
co->mWaitSeconds = seconds;
next = mActivityGList.erase(iter);
mWaitingGList.push_back(co);
} if (isDeading)
{
next = mActivityGList.erase(iter);
mDeadingGList.push_back(co);
}
}
}
};
//**********************************************************************************************************
//以下是测试程序:
class TestCoroutine1;
class TestCoroutine2;
class UIMain : public GScheduler
{
public:
UIMain()
{
}
void Enable()
{
RestartAllCoroutine();
}
void Disable()
{
StopAllCoroutine();
} void Start()
{
ICoroutine *testCo = StartCoroutine<TestCoroutine1, UIMain>(this);
StartCoroutine<TestCoroutine2, UIMain>(this);
} void Update(float dt)
{
UpdateAllCoroutine(dt);
} void Test1(int v)
{
printf("Test1, v = %d\n", v);
}
void Test2(int v)
{
printf("Test2, v = %d\n", v);
}
}; $coroutine(TestCoroutine1)
{
UIMain* n;
TestCoroutine1(UIMain* root = ) : n(root) {}
int i = ;
$begin
for (i = ; i < ; i++)
{
n->Test1(i);
$yield(CO_WaitForNextUpdate);
}
$yield(CO_Exit);
n->Test1();
$stop
}; $coroutine(TestCoroutine2)
{
UIMain* n;
TestCoroutine2(UIMain* root = ) : n(root) {}
int i = ;
$begin
for (i = ; i < ; i++)
{
n->Test2(i);
$yield_f(CO_WaitForSeconds, 0.5f);
}
$yield(CO_Exit);
n->Test1();
$stop
}; int _tmain(int argc, _TCHAR* argv[])
{
UIMain uiMain; uiMain.Enable();
uiMain.Start(); float dt = 0.05f;
float time = ;
while (true)
{
uiMain.Update(dt);
std::this_thread::sleep_for(std::chrono::milliseconds((int)(dt*)));
time += dt;
if (time > ) //10秒后重开协程
{
uiMain.Disable();
uiMain.Enable(); //重新开始协程
time = ;
}
}
return ;
}

跨平台c++ Coroutine,仿unity3d实现的更多相关文章

  1. Coroutine协同程序介绍(Unity3D开发之三)

    猴子原创,欢迎转载.转载请注明: 转载自Cocos2D开发网–Cocos2Dev.com,谢谢! 原文地址: http://www.cocos2dev.com/?p=496 Coroutine在Uni ...

  2. 在unity3d中使用opencv

    1.首先下载opencv2.4.10,解压缩后放在合适的地方,然后根据自己的电脑(32位或64位)选择X86或X64,我的是32位,将“opencv存放路径\build\x86\vc12\bin”加入 ...

  3. Electron-Vite2-MacUI桌面管理框架|electron13+vue3.x仿mac桌面UI

    基于vue3.0.11+electron13仿制macOS桌面UI管理系统ElectronVue3MacUI. 前段时间有分享一个vue3结合electron12开发后台管理系统项目.今天要分享的是最 ...

  4. 漫谈C#编程语言在游戏领域的应用

    0x00 前言 随着微软越来越开放,C#也变得越来越吸引人们的眼球.而在游戏行业中,C#也开始慢慢地获得了关注.这不, 网易绝代双娇手游团队已经全面使用.Net Core支持前后端统一C#开发,跨平台 ...

  5. Index

    我主要在研究.NET/C# 实现 PC IMERP 和 Android IMERP ,目的在解决企业通信中遇到的各类自动化问题   分布式缓存框架: Microsoft Velocity:微软自家分布 ...

  6. GitHub上整理的一些工具

    技术站点 Hacker News:非常棒的针对编程的链接聚合网站 Programming reddit:同上 MSDN:微软相关的官方技术集中地,主要是文档类 infoq:企业级应用,关注软件开发领域 ...

  7. 推荐书籍 -《移动App测试的22条军规》

    在今天的博文中,博主希望给大家分享一本博主同事黄勇的最新利作:<移动App测试的22条军规>.黄勇是ThoughtWorks资深敏捷QA和咨询师.对于我来说,和黄勇在一起的工作的这个项目, ...

  8. GitHub上整理的一些工具[转载]

    Source:http://segmentfault.com/q/1010000002404545 技术站点 Hacker News:非常棒的针对编程的链接聚合网站 Programming reddi ...

  9. GitHub 开源工具整理

    技术站点 Hacker News:非常棒的针对编程的链接聚合网站 Programming reddit:同上 MSDN:微软相关的官方技术集中地,主要是文档类 infoq:企业级应用,关注软件开发领域 ...

随机推荐

  1. 05 Linux下开发JSP项目(Hello world)

    测试环境: 主机系统:Win 7 虚拟机:VMware workstation 11.1.0 虚拟机OS: centos 6.5 64位 Kernel 2.6.32-431-e16.x86_64 My ...

  2. LintCode "k Sum" !!

    Great great DP learning experience:http://www.cnblogs.com/yuzhangcmu/p/4279676.html Remember 2 steps ...

  3. SSH_框架整合3-删除

    一.普通删除 1 完善src中 类: (1)EmployeeDao.java中: //2 删除 public void delete(Integer id){ String hql="DEL ...

  4. android学习笔记十——TabHost

    TabHost——标签页 ==> TabHost,可以在窗口放置多个标签页,每个标签页相当于获得了一个与外部容器相同大小的组件摆放区域. 通过此种方式可以实现在一个容器放置更多组件(EG:通话记 ...

  5. vs 引用sqlite的问题

    错误 4 未能找到类型或命名空间名称“SQLiteCommand”(是否缺少 using 指令或程序集引用?) D:\01学习\SQLite\HBZCSCXT_Mobile\SqlLiteHelper ...

  6. (C/C++ interview) Static 详解

    C Static http://stackoverflow.com/questions/572547/what-does-static-mean-in-a-c-program Static could ...

  7. (C/C++) 算法,编程题

    注: 如下的题目皆来自互联网,答案是结合了自己的习惯稍作了修改. 1. 求一个数的二进制中的1的个数. int func(int x) { ; while (x) { count++; x = x&a ...

  8. [UEditor]百度编辑器配置总结

    前端配置文件ueditor.config.js 前端有两个重要的配置属性: UEDITOR_HOME_URL: 配置百度编辑器的资源目录路径,你可以手动指定此路径,默认是有URL变量指定,而URL变量 ...

  9. PLSQL_基础系列01_正则表达REGEXP_LIKE / SUBSTR / INSTR / REPLACE(案例)

    2014-11-30 Created By BaoXinjian

  10. UVA 133 The Dole Queue

    The Dole Queue 题解: 这里写一个走多少步,返回位置的函数真的很重要,并且,把顺时针和逆时针写到了一起,也真的很厉害,需要学习 代码: #include<stdio.h> # ...