本站为《超级机器人大战DD》手游非官方资料站;信息更新会所延迟,如有不满请直接编辑。

全站通知:

模块:首页时间

来自超级机器人大战DDWIKI_BWIKI_哔哩哔哩
跳到导航 跳到搜索

编辑文档

{{#invoke:首页时间|info}}
现在是:11月5日 周二
如需调整代码,请进入模块:首页时间

{{#invoke:首页时间|activity}}
活动:向群星许愿

第25次共斗战

第20次镇压战


local p={}

function p.isleap(year)
	if (year%100~=0 and year%4==0 or year%400==0) then
		-- mw.log("true")
		return true
	else
		-- mw.log("false")
		return false
	end
end

function p.info(frame)
	
	if (frame==nil) then
		frame = mw.getCurrentFrame()
	end
	
	-- 当前时间信息
	local wkday = {"周日","周一","周二","周三","周四","周五","周六"}
	local gamedate = os.date("*t", os.time() - 4*60*60) --当前时间往前4小时,对应凌晨四点刷新日期
	local dmonth = gamedate["month"]
	local dday = gamedate["day"]
	local dwkday = gamedate["wday"]
	local text_date = [['''现在是:]]..dmonth..[[月]]..dday..[[日 ]]..wkday[dwkday]..[[</span>''']]
	-- text_date = text_date.."  "..gamedate["hour"].."时"..gamedate["min"].."分"
	
	-- 每月活动
	local text_exchange = ""
	local month_event = {
		[1] = "和服(咕咕咕),",
		[2] = "半周年",
		[3] = ",",
		[4] = ",",
		[5] = ",",
		[6] = ",",
		[7] = ",",
		[8] = "周年,泳装",
		[9] = "",
		[10] = "制作人生日",
		[11] = "",
		[12] = "圣诞"
	}
	local exg_char_data = month_event[dmonth]
	local exg_char_text = frame:callParserFunction{name="#arraymap:"..exg_char_data, args={", ","@@@",""}}
	text_exchange = "[[模块:首页时间|"..[['''<font style="color: #3B475D;">如需调整代码,请进入模块:首页时间</font>''']].."]]<br>"..exg_char_text
	
	-- 以下代码用于输出结果,不要删
	local result = text_date.."<hr>"..text_exchange
	mw.log(result)
	return result
end

function p.activity(frame)

	if (frame==nil) then
		frame = mw.getCurrentFrame()
	end
	local nowdate = os.date("%Y/%m/%d %H:%M", os.time())
	local expdate = os.date("%Y/%m/%d %H:%M", os.time()+7*24*3600) --可提前3天后展示
	local act_data = frame:callParserFunction{name="#ask:[[分类:活动]][[开始时间::<"..expdate.."]][[结束时间::>"..nowdate.."]][[结束描述::!永久]]",args={
		"?开始描述",
		"?结束描述",
		"?开始时间#-F[Y-m-d H:i]",
		"?结束时间#-F[Y-m-d H:i]",
		format="template",
		template="首页活动/行",
		sort="开始时间,结束时间",
		order="desc",
		link="none",
		userparam=nowdate}}
	mw.log(act_data)
	return act_data
end

function p.rtime(frame)
	local nowdate = os.date("%Y-%m-%d %H:%M", os.time())
	mw.log(nowdate)
	return nowdate
end

return p