VoxeLibre/mods/ITEMS/mcl_clock/init.lua

113 lines
3.1 KiB
Lua
Raw Normal View History

2017-01-09 03:02:23 +01:00
--[[
mcl_clock, renew of the renew of the watch mod
Original from Echo, here: http://forum.minetest.net/viewtopic.php?id=3795
]]--
2017-02-20 21:16:51 +01:00
mcl_clock = {}
local watch = {}
watch.old_time = -1
-- Image of all 64 possible faces
watch.images = {}
for frame=0,63 do
table.insert(watch.images, "mcl_clock_clock.png^[verticalframe:64:"..frame)
end
local function round(num)
return math.floor(num + 0.5)
end
function watch.get_clock_frame()
local t = 64 * minetest.get_timeofday()
t = round(t)
if t == 64 then t = 0 end
return tostring(t)
end
-- Register items
function watch.register_item(name, image, creative)
local g = 1
if creative then
g = 0
end
local doc = name == "mcl_clock:clock"
local longdesc, usagehelp
if doc then
longdesc = "Clocks are tools which shows the current time of day in the Overworld."
usagehelp = "The clock contains a rotating disc with a sun symbol (yellow disc) and moon symbol and a little “pointer” which shows the current time of day by estimating the real position of the sun and the moon in the sky. Noon is represented by the sun symbol and midnight is represented by the moon symbol."
end
2017-02-08 17:02:45 +01:00
minetest.register_craftitem(name, {
description = "Clock",
_doc_items_create_entry = doc,
_doc_items_longdesc = longdesc,
_doc_items_usagehelp = usagehelp,
inventory_image = image,
groups = {not_in_creative_inventory=g, tool=1, clock=1},
wield_image = "",
2017-02-08 17:02:45 +01:00
stack_max = 64,
})
end
2017-01-09 03:18:28 +01:00
-- This timer makes sure the clocks get updated from time to time regardless of time_speed,
-- just in case some clocks in the world go wrong
local force_clock_update_timer = 0
minetest.register_globalstep(function(dtime)
local now = watch.get_clock_frame()
2017-01-09 03:18:28 +01:00
force_clock_update_timer = force_clock_update_timer + dtime
2017-01-09 03:18:28 +01:00
if watch.old_time == now and force_clock_update_timer < 60 then
return
end
2017-01-09 03:18:28 +01:00
force_clock_update_timer = 0
watch.old_time = now
local players = minetest.get_connected_players()
for p, player in ipairs(players) do
for s, stack in ipairs(player:get_inventory():get_list("main")) do
2017-02-08 17:02:45 +01:00
local count = stack:get_count()
if stack:get_name() == "mcl_clock:clock" then
2017-02-08 17:02:45 +01:00
player:get_inventory():set_stack("main", s, "mcl_clock:clock_"..now.." "..count)
elseif string.sub(stack:get_name(), 1, 16) == "mcl_clock:clock_" then
2017-02-08 17:02:45 +01:00
player:get_inventory():set_stack("main", s, "mcl_clock:clock_"..now.." "..count)
end
end
end
end)
2017-01-09 03:18:28 +01:00
-- Immediately set correct clock time after crafting
minetest.register_on_craft(function(itemstack)
if itemstack:get_name() == "mcl_clock:clock" then
itemstack:set_name("mcl_clock:clock_"..watch.get_clock_frame())
end
end)
-- Clock recipe
minetest.register_craft({
output = 'mcl_clock:clock',
recipe = {
2017-01-31 23:32:56 +01:00
{'', 'mcl_core:gold_ingot', ''},
{'mcl_core:gold_ingot', 'mesecons:redstone', 'mcl_core:gold_ingot'},
{'', 'mcl_core:gold_ingot', ''}
}
})
-- Clock tool
watch.register_item("mcl_clock:clock", watch.images[1], true)
-- Faces
for a=0,63,1 do
local b = a
if b > 31 then
b = b - 32
else
b = b + 32
end
watch.register_item("mcl_clock:clock_"..tostring(a), watch.images[b+1], false)
end
2017-02-20 21:16:51 +01:00
mcl_clock.stereotype = "mcl_clock:clock"