summaryrefslogtreecommitdiff
path: root/wrench/support.lua
blob: 1d2181190ec6a270c5e6ec23e23fe7e42dc51a87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
--[[
supported_nodes
This table stores all nodes that are compatible with the wrench mod.
Syntax:
	[<node name>] = {
		lists = {"<inventory list name>"},
		metas = {["<meta name>"] = STRING,
			["<meta name>"] = INT,
			["<meta name>"] = FLOAT},
		owned = true,
		store_meta_always = true,
	}
	owned - nodes that are protected by owner requirements (Ex. locked chests)
	store_meta_always - when nodes are broken this ensures metadata and 
	inventory is always stored (Ex. active state for machines)
--]]

wrench.META_TYPE_INT = 0
wrench.META_TYPE_FLOAT = 1
wrench.META_TYPE_STRING = 2

local INT, STRING, FLOAT  = 
	wrench.META_TYPE_INT,
	wrench.META_TYPE_STRING,
	wrench.META_TYPE_FLOAT

wrench.registered_nodes = {
	["default:chest"] = {
		lists = {"main"},
	},
	["default:chest_locked"] = {
		lists = {"main"},
		metas = {owner = STRING,
			infotext = STRING},
		owned = true,
	},
	["default:furnace"] = {
		lists = {"fuel", "src", "dst"},
		metas = {infotext = STRING,
			fuel_totaltime = FLOAT,
			fuel_time = FLOAT,
			src_totaltime = FLOAT,
			src_time = FLOAT},
	},
	["default:furnace_active"] = {
		lists = {"fuel", "src", "dst"},
		metas = {infotext = STRING,
			fuel_totaltime = FLOAT,
			fuel_time = FLOAT,
			src_totaltime = FLOAT,
			src_time = FLOAT},
		store_meta_always = true,
	},
	["default:sign_wall"] = {
		metas = {infotext = STRING,
			text = STRING},
	},
}

function wrench:original_name(name)
	for key, value in pairs(self.registered_nodes) do
		if name == value.name then
			return key
		end
	end
end

function wrench:register_node(name, def)
	if minetest.registered_nodes[name] then
	    self.registered_nodes[name] = def
	end
end