2022-10-20 00:55:07 +02:00
|
|
|
---
|
2022-10-23 09:20:34 +02:00
|
|
|
--- Generated by EmmyLua.
|
2022-10-20 00:55:07 +02:00
|
|
|
--- Created by Michieal (FaerRaven).
|
|
|
|
--- DateTime: 10/14/22 4:05 PM
|
|
|
|
---
|
|
|
|
|
2021-05-29 16:12:33 +02:00
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
local modpath = minetest.get_modpath(modname)
|
2019-03-08 00:22:28 +01:00
|
|
|
|
2022-10-20 00:55:07 +02:00
|
|
|
-- Signs API
|
|
|
|
dofile(modpath .. "/signs_api.lua")
|
2017-01-24 02:31:49 +01:00
|
|
|
|
2022-10-20 00:55:07 +02:00
|
|
|
-- LOCALIZATION
|
|
|
|
local S = minetest.get_translator(modname)
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2022-10-20 00:55:07 +02:00
|
|
|
-- HANDLE THE FORMSPEC CALLBACK
|
2017-07-25 01:56:04 +02:00
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
2022-10-20 00:55:07 +02:00
|
|
|
if formname:find("mcl_signs:set_text_") == 1 then
|
|
|
|
local x, y, z = formname:match("mcl_signs:set_text_(.-)_(.-)_(.*)")
|
|
|
|
local pos = { x = tonumber(x), y = tonumber(y), z = tonumber(z) }
|
|
|
|
if not pos or not pos.x or not pos.y or not pos.z then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
mcl_signs:update_sign(pos, fields, player)
|
|
|
|
end
|
2017-07-25 01:56:04 +02:00
|
|
|
end)
|
|
|
|
|
2022-10-23 09:20:34 +02:00
|
|
|
-- This defines the text entity for the lettering of the sign.
|
2019-02-18 21:29:11 +01:00
|
|
|
-- FIXME: Prevent entity destruction by /clearobjects
|
2017-07-25 02:20:37 +02:00
|
|
|
minetest.register_entity("mcl_signs:text", {
|
2022-10-20 00:55:07 +02:00
|
|
|
pointable = false,
|
|
|
|
visual = "upright_sprite",
|
|
|
|
textures = {},
|
|
|
|
physical = false,
|
|
|
|
collide_with_objects = false,
|
|
|
|
|
|
|
|
_signnodename = nil, -- node name of sign node to which the text belongs
|
|
|
|
|
|
|
|
on_activate = function(self, staticdata)
|
2022-10-22 04:50:39 +02:00
|
|
|
|
|
|
|
local meta = minetest.get_meta(self.object:get_pos())
|
|
|
|
local text = meta:get_string("text")
|
|
|
|
local text_color = meta:get_string("mcl_signs:text_color")
|
|
|
|
local glowing_sign = meta:get_string("mcl_signs:glowing_sign")
|
2022-10-20 00:55:07 +02:00
|
|
|
if staticdata and staticdata ~= "" then
|
|
|
|
local des = minetest.deserialize(staticdata)
|
|
|
|
if des then
|
|
|
|
self._signnodename = des._signnodename
|
2022-10-22 04:50:39 +02:00
|
|
|
if des._text_color ~= nil and des._text_color ~= "" then
|
|
|
|
self.text_color = des._text_color
|
|
|
|
end
|
|
|
|
if des._glowing_sign ~= nil and des._glowing_sign ~= "" then
|
|
|
|
self.glowing_sign = des._glowing_sign
|
|
|
|
end
|
2022-10-20 00:55:07 +02:00
|
|
|
end
|
|
|
|
end
|
2022-10-22 04:50:39 +02:00
|
|
|
|
|
|
|
if text_color == "" or text_color == nil then
|
|
|
|
text_color = "#000000" -- default to black text.
|
|
|
|
meta:set_string("mcl_signs:text_color", text_color)
|
|
|
|
end
|
|
|
|
|
|
|
|
if glowing_sign == "" or glowing_sign == nil then
|
|
|
|
glowing_sign = "false" -- default to not glowing.
|
|
|
|
meta:set_string("mcl_signs:glowing_sign", glowing_sign)
|
|
|
|
end
|
|
|
|
|
2022-10-20 00:55:07 +02:00
|
|
|
self.object:set_properties({
|
2022-10-22 04:50:39 +02:00
|
|
|
textures = { mcl_signs:create_lettering(text, self._signnodename, text_color) },
|
2022-10-20 00:55:07 +02:00
|
|
|
})
|
2022-10-22 04:50:39 +02:00
|
|
|
if glowing_sign == "true" then
|
|
|
|
self.object:set_properties({
|
|
|
|
glow = 6, --sign_glow,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-10-20 00:55:07 +02:00
|
|
|
self.object:set_armor_groups({ immortal = 1 })
|
2022-10-22 04:50:39 +02:00
|
|
|
|
2022-10-20 00:55:07 +02:00
|
|
|
end,
|
|
|
|
get_staticdata = function(self)
|
2022-10-22 04:50:39 +02:00
|
|
|
local out = {
|
|
|
|
_signnodename = self._signnodename,
|
|
|
|
}
|
2022-10-20 00:55:07 +02:00
|
|
|
return minetest.serialize(out)
|
|
|
|
end,
|
|
|
|
})
|
2017-07-26 15:11:52 +02:00
|
|
|
|
2022-10-22 04:50:39 +02:00
|
|
|
-- Build the signs x,y,z & rotations so that they work. (IE, do not remove!)
|
|
|
|
mcl_signs.build_signs_info()
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2022-10-22 04:50:39 +02:00
|
|
|
-- ---------------------------- --
|
|
|
|
-- Register Signs for use. --
|
|
|
|
-- ---------------------------- --
|
2017-02-16 21:47:47 +01:00
|
|
|
|
2022-10-22 04:50:39 +02:00
|
|
|
-- Standard (original) Sign
|
2023-05-01 04:26:11 +02:00
|
|
|
mcl_signs.register_sign("mcl_core", "#ffffff", "", S("Sign"))
|
2022-10-22 04:50:39 +02:00
|
|
|
mcl_signs.register_sign_craft("mcl_core", "mcl_core:wood", "")
|
2022-10-20 00:55:07 +02:00
|
|
|
|
2022-10-23 09:20:34 +02:00
|
|
|
-- birchwood Sign "#d5cb8d" / "#ffdba7"
|
2022-10-22 04:50:39 +02:00
|
|
|
mcl_signs.register_sign_custom("mcl_core", "_birchwood",
|
2023-02-15 15:38:37 +01:00
|
|
|
"mcl_signs_sign_greyscale.png","#ffdba7", "mcl_signs_default_sign_greyscale.png",
|
2023-05-01 04:26:11 +02:00
|
|
|
"mcl_signs_default_sign_greyscale.png", S("Birch Sign")
|
2022-10-22 04:50:39 +02:00
|
|
|
)
|
|
|
|
mcl_signs.register_sign_craft("mcl_core", "mcl_core:birchwood", "_birchwood")
|
2022-10-20 00:55:07 +02:00
|
|
|
|
2022-10-22 04:50:39 +02:00
|
|
|
-- sprucewood Sign
|
|
|
|
mcl_signs.register_sign_custom("mcl_core", "_sprucewood",
|
2023-02-15 15:38:37 +01:00
|
|
|
"mcl_signs_sign_dark.png","#ffffff", "mcl_signs_default_sign_dark.png",
|
2023-05-01 04:26:11 +02:00
|
|
|
"mcl_signs_default_sign_dark.png", S("Spruce Sign")
|
2022-10-22 04:50:39 +02:00
|
|
|
)
|
|
|
|
mcl_signs.register_sign_craft("mcl_core", "mcl_core:sprucewood", "_sprucewood")
|
2022-10-20 00:55:07 +02:00
|
|
|
|
2022-10-23 09:20:34 +02:00
|
|
|
-- darkwood Sign "#291f1a" / "#856443"
|
2022-10-22 04:50:39 +02:00
|
|
|
mcl_signs.register_sign_custom("mcl_core", "_darkwood",
|
2023-02-15 15:38:37 +01:00
|
|
|
"mcl_signs_sign_greyscale.png","#856443", "mcl_signs_default_sign_greyscale.png",
|
2023-05-01 04:26:11 +02:00
|
|
|
"mcl_signs_default_sign_greyscale.png", S("Dark Oak Sign")
|
2022-10-22 04:50:39 +02:00
|
|
|
)
|
|
|
|
mcl_signs.register_sign_craft("mcl_core", "mcl_core:darkwood", "_darkwood")
|
|
|
|
|
|
|
|
-- junglewood Sign
|
2023-05-01 04:26:11 +02:00
|
|
|
mcl_signs.register_sign("mcl_core", "#866249", "_junglewood", S("Jungle Sign"))
|
2022-10-22 04:50:39 +02:00
|
|
|
mcl_signs.register_sign_craft("mcl_core", "mcl_core:junglewood", "_junglewood")
|
|
|
|
|
|
|
|
-- acaciawood Sign "b8693d"
|
2023-05-01 04:26:11 +02:00
|
|
|
mcl_signs.register_sign("mcl_core", "#ea7479", "_acaciawood", S("Acacia Sign"))
|
2022-10-22 04:50:39 +02:00
|
|
|
mcl_signs.register_sign_craft("mcl_core", "mcl_core:acaciawood", "_acaciawood")
|
2017-07-25 02:20:37 +02:00
|
|
|
|
2022-11-18 00:45:16 +01:00
|
|
|
if minetest.get_modpath("mcl_mangrove") then
|
|
|
|
-- mangrove_wood Sign "#c7545c"
|
2023-05-01 04:26:11 +02:00
|
|
|
mcl_signs.register_sign("mcl_mangrove", "#b8693d", "_mangrove_wood", S("Mangrove Sign"))
|
2022-11-18 00:45:16 +01:00
|
|
|
mcl_signs.register_sign_craft("mcl_mangrove", "mcl_mangrove:mangrove_wood", "_mangrove_wood")
|
|
|
|
end
|
2022-10-22 04:50:39 +02:00
|
|
|
|
2022-11-03 02:56:03 +01:00
|
|
|
-- add in the nether wood signs
|
|
|
|
if minetest.get_modpath("mcl_crimson") then
|
|
|
|
|
|
|
|
-- warped_hyphae_wood Sign
|
|
|
|
mcl_signs.register_sign_custom("mcl_crimson","_warped_hyphae_wood", "mcl_signs_sign_greyscale.png",
|
2023-02-15 15:38:37 +01:00
|
|
|
"#9f7dcf", "mcl_signs_default_sign_greyscale.png", "mcl_signs_default_sign_greyscale.png",
|
2023-05-01 04:26:11 +02:00
|
|
|
S("Warped Hyphae Sign"))
|
2022-11-03 02:56:03 +01:00
|
|
|
mcl_signs.register_sign_craft("mcl_crimson", "mcl_crimson:warped_hyphae_wood", "_warped_hyphae_wood")
|
|
|
|
|
|
|
|
-- crimson_hyphae_wood Sign
|
|
|
|
mcl_signs.register_sign_custom("mcl_crimson", "_crimson_hyphae_wood","mcl_signs_sign_greyscale.png",
|
2023-02-15 15:38:37 +01:00
|
|
|
"#c35f51","mcl_signs_default_sign_greyscale.png", "mcl_signs_default_sign_greyscale.png",
|
2023-05-01 04:26:11 +02:00
|
|
|
S("Crimson Hyphae Sign"))
|
2022-11-03 02:56:03 +01:00
|
|
|
mcl_signs.register_sign_craft("mcl_crimson", "mcl_crimson:crimson_hyphae_wood", "_crimson_hyphae_wood")
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2022-10-22 04:50:39 +02:00
|
|
|
-- Register the LBMs for the created signs.
|
|
|
|
mcl_signs.make_lbm()
|
|
|
|
|
|
|
|
-- really ancient compatibility.
|
2017-07-25 02:20:37 +02:00
|
|
|
minetest.register_alias("signs:sign_wall", "mcl_signs:wall_sign")
|
|
|
|
minetest.register_alias("signs:sign_yard", "mcl_signs:standing_sign")
|
2022-10-22 04:50:39 +02:00
|
|
|
minetest.register_alias("mcl_signs:wall_sign_dark", "mcl_signs:wall_sign_sprucewood")
|
|
|
|
minetest.register_alias("mcl_signs:standing_sign_dark", "mcl_signs:standing_sign_sprucewood")
|