[stained_wood] Created & register nodes.

This commit is contained in:
AntumDeluge 2016-08-07 18:12:14 -07:00
parent 720b4c97af
commit f794b1f65d
2 changed files with 81 additions and 0 deletions

View File

@ -32,4 +32,22 @@ logMessage = function(message)
end
-- Get stained_wood mod path
local modpath = minetest.get_modpath("stained_wood")
-- Initialize stained_wood
stained_wood = {}
-- Define function to titleize labels (for description purposes)
titleize = function(string)
local string = string:gsub("^%l", string.upper)
return string
end
-- Load sub-scripts
dofile(modpath .. "/nodes.lua")
core.log("action", "[MOD] '" .. modname .. "' loaded")

View File

@ -0,0 +1,63 @@
-- The MIT License (MIT)
--
-- Copyright © 2016 Jordan Irwin
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy of
-- this software and associated documentation files (the "Software"), to deal in
-- the Software without restriction, including without limitation the rights to
-- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
-- of the Software, and to permit persons to whom the Software is furnished to do
-- so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-- SOFTWARE.
-- Define function to retrieve total number of stained wood colors
getWoodColorsCount = function(colors)
local color_count = 0
for _ in pairs(colors) do
color_count = color_count + 1
end
return color_count
end
-- Define function for adding a stained wood
addStainedWood = function(color)
local node_name = "stained_wood:" .. color
minetest.register_node(node_name, {
description = titleize(color) .. " Stained Wood",
tiles = {"wood_" .. color .. ".png"},
is_ground_content = false,
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, wood = 1},
sounds = default.node_sound_wood_defaults(),
})
logMessage("nodes.lua: Registered node '" .. node_name .. "'")
end
local wood_colors = {"blue", "brown", "gray", "green", "purple", "red",
"white", "yellow"}
local wood_colors_count = getWoodColorsCount(wood_colors)
logMessage("nodes.lua: " .. wood_colors_count .. " wood colors loaded")
-- Register all stained wood
for i = 1, wood_colors_count do
addStainedWood(wood_colors[i])
end