cocos2dx 获取系统时间

前端之家收集整理的这篇文章主要介绍了cocos2dx 获取系统时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

很简单的方法

long Player::getCurrentTime()
{
	struct   tm  * tm ;  
	time_t  timep;  
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)   
	time(&timep);  
#else   
	struct  cc_timeval now;   
	CCTime::gettimeofdayCocos2d(&now,NULL);   
	timep = now.tv_sec;  
#endif 
	 tm  = localtime(&timep);  
	 long timeSecond = tm->tm_sec + tm->tm_min * 60 + tm->tm_hour * 3600;
	 return timeSecond;
}
原文链接:/cocos2dx/346184.html

猜你在找的Cocos2d-x相关文章