cocos2dx-lua 一些公共方法

cocos2dx-lua 一些公共方法,第1张

概述function getStringTimeForInt(timeInt) if(tonumber(timeInt) <= 0)then return "00:00:00" elseif(timeInt/60 >= 60)then return string.format("%.2d:%.2d:%.2d",timeInt/3600,(timeInt/60)%60,timeInt%60) elsei

function getStringTimeForInt(timeInt)

if(tonumber(timeInt) <= 0)then

return "00:00:00"

elseif(timeInt/60 >= 60)then

return string.format("%.2d:%.2d:%.2d",timeInt/3600,(timeInt/60)%60,timeInt%60)

elseif(timeInt >= 60)then

return string.format("00:%.2d:%.2d",timeInt%60)

else

return string.format("00:00:%.2d",timeInt%60)

end

end

-- 将一个时间数转换成"00:00:00"格式

function getTimeString(timeInt)

if(tonumber(timeInt) <= 0)then

return "00:00:00"

else

return string.format("%02d:%02d:%02d",math.floor(timeInt/(60*60)),math.floor((timeInt/60)%60),timeInt%60)

end

end

-- 将一个时间数转换成"00时00分00秒"格式

function getTimeStringFont(timeInt)

if(tonumber(timeInt) <= 0)then

return "00时00分00秒"

else

return string.format("%02d时%02d分%02d秒",timeInt%60)

end

end

-- nGenTime: 产生时间戳(也可以是一个未来的时间,比如CD时间戳)

-- nDuration: 固定的有效期间,单位秒,计算某个未来时间的剩余时间时不需要指定

-- 返回3个结果,第一个是剩余到期时间的字符串,"HH:MM:SS",不足2位自动补零;第二个是bool,标识nGenTime是否到期;第三个是剩余秒数

function expireTimeString( nGenTime,nDuration )

local nNow = BTUtil:getSvrTimeInterval()

--ccluaLog("nGenTime = " .. nGenTime .. " nNow = " .. nNow)

local nVIEwSec = (nDuration or 0) - (nNow - nGenTime)

return getTimeString(nVIEwSec),nVIEwSec <= 0,nVIEwSec

end

--得到一个时间戳timeInt与当前时间的相隔天数

--offset是偏移量,例如凌晨4点:4*60*60

--return type is integer,0--当天,n--不在同一天,相差n天

function getDifferDay(timeInt,offset)

timeInt = tonumber(timeInt or 0)

offset = tonumber(offset or 0)

local curTime = tonumber(BTUtil:getSvrTimeInterval()) - offset

if(os.date("%j",curTime) == 1 and os.date("%j",timeInt - offset) ~= 1)then

return os.date("%j",curTime) - (os.date("%j",timeInt - offset) - os.date("%j",curTime-24*60*60))

else--if(os.date("%j",curTime) ~= os.date("%j",timeInt - offset))then

return os.date("%j",curTime) - os.date("%j",timeInt - offset)

end

end

-- 指定一个日期时间字符串,返回与之对应的东八区(服务器时区)时间戳

-- sTime: 格式 "2013-07-02 20:00:00"

function getIntervalByTimeString( sTime )

local t = string.split(sTime," ")

local tDate = string.split(t[1],"-")

local tTime = string.split(t[2],":")

local tt = os.time({year = tDate[1],month = tDate[2],day = tDate[3],hour = tTime[1],min = tTime[2],sec = tTime[3]})

local ut = os.date("!*t",tt)

local east8 = os.time(ut) + 8*60*60 -- UTC时间+8小时转为东八区北京时间

return east8

end

--给一个时间如:153000,得到今天15:30:00的时间戳

function getIntervalByTime( time )

local curTime = BTUtil:getSvrTimeInterval()

local temp = os.date("*t",curTime)

local h,m,s = string.match(time,"(%d%d)(%d%d)(%d%d)" )

local timeString = temp.year .."-".. temp.month .."-".. temp.day .." ".. h ..":".. m ..":".. s

local timeInt = TimeUtil.getIntervalByTimeString(timeString)

return timeInt

end

总结

以上是内存溢出为你收集整理的cocos2dx-lua 一些公共方法全部内容,希望文章能够帮你解决cocos2dx-lua 一些公共方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1005213.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存