summaryrefslogtreecommitdiff
path: root/infrastructure/advanced_crosswalk_warning_light.lua
blob: 213223ace6f8bbccce3e86664625d8c9c3c50a63 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
-- Crosswalk warning light
function on_off_light(pos, node)
	if node.name == "infrastructure:crosswalk_warning_light_off" then
		minetest.swap_node(pos, {name = "infrastructure:crosswalk_warning_light_on", param2 = node.param2})
	elseif (node.name == "infrastructure:crosswalk_warning_light_on") then
		minetest.swap_node(pos, {name = "infrastructure:crosswalk_warning_light_off", param2 = node.param2})
	end
end

minetest.register_node("infrastructure:crosswalk_warning_light_off", {
	description = "Crosswalk warning light",
	inventory_image = "infrastructure_crosswalk_warning_light_front_bright.png",
	wield_image = "infrastructure_crosswalk_warning_light_front_bright.png",
	tiles = {
		"infrastructure_traffic_lights_side.png",
		"infrastructure_traffic_lights_side.png",
		"infrastructure_traffic_lights_side.png",
		"infrastructure_traffic_lights_side.png",
		"infrastructure_crosswalk_warning_light_back.png",
		"infrastructure_crosswalk_warning_light_front_dark.png"
	},
	drawtype = "nodebox",
	paramtype = "light",
	paramtype2 = "facedir",
	groups = {cracky = 3, not_in_creative_inventory = 0},
	node_box = {
		type = "fixed",
		fixed = {
			{-5/16, -5/16, -1/8, 5/16, 3/8, 1/8},
			{-1/2, -1/2, -1/8, 1/2, 1/2, -1/8},

			{-5/16, 1/4, -5/16, 5/16, 5/16, -1/8},
			{-5/16, 0, -1/4, -1/4, 1/4, -1/8},
			{1/4, 0, -1/4, 5/16, 1/4, -1/8},

			{-1/16, -1/4, 1/8, 1/16, 1/4, 3/8},
			{-1/4, -1/16, 1/8, 1/4, 1/16, 3/8},
			{-1/4, -1/4, 3/8, 1/4, 1/4, 1/2 - 0.001}
		}
	},
	selection_box = {
		type = "fixed",
		fixed = {
			{-5/16, -5/16, -1/8, 5/16, 3/8, 1/8},

			{-5/16, 1/4, -5/16, 5/16, 5/16, -1/8},
			{-5/16, 0, -1/4, -1/4, 1/4, -1/8},
			{1/4, 0, -1/4, 5/16, 1/4, -1/8},

			{-1/16, -1/4, 1/8, 1/16, 1/4, 3/8},
			{-1/4, -1/16, 1/8, 1/4, 1/16, 3/8},
			{-1/4, -1/4, 3/8, 1/4, 1/4, 1/2 - 0.01}
		}
	},

	on_punch = function(pos, node)
		on_off_light(pos, node)
	end,

	mesecons = {effector = {
		action_on = function(pos, node)
			on_off_light(pos, node)
		end,
	}}
})

minetest.register_node("infrastructure:crosswalk_warning_light_on", {
	tiles = {
		"infrastructure_traffic_lights_side.png",
		"infrastructure_traffic_lights_side.png",
		"infrastructure_traffic_lights_side.png",
		"infrastructure_traffic_lights_side.png",
		"infrastructure_crosswalk_warning_light_back.png",
		{name="infrastructure_crosswalk_warning_light_front_anim.png",animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=1.5}}
	},
	drawtype = "nodebox",
	paramtype = "light",
	paramtype2 = "facedir",
	groups = {cracky = 3, not_in_creative_inventory = 1},
	drop = "infrastructure:crosswalk_warning_light_off",
	node_box = {
		type = "fixed",
		fixed = {
			{-5/16, -5/16, -1/8, 5/16, 3/8, 1/8},
			{-1/2, -1/2, -1/8, 1/2, 1/2, -1/8},

			{-5/16, 1/4, -5/16, 5/16, 5/16, -1/8},
			{-5/16, 0, -1/4, -1/4, 1/4, -1/8},
			{1/4, 0, -1/4, 5/16, 1/4, -1/8},

			{-1/16, -1/4, 1/8, 1/16, 1/4, 3/8},
			{-1/4, -1/16, 1/8, 1/4, 1/16, 3/8},
			{-1/4, -1/4, 3/8, 1/4, 1/4, 1/2 - 0.001}
		}
	},
	selection_box = {
		type = "fixed",
		fixed = {
			{-5/16, -5/16, -1/8, 5/16, 3/8, 1/8},

			{-5/16, 1/4, -5/16, 5/16, 5/16, -1/8},
			{-5/16, 0, -1/4, -1/4, 1/4, -1/8},
			{1/4, 0, -1/4, 5/16, 1/4, -1/8},

			{-1/16, -1/4, 1/8, 1/16, 1/4, 3/8},
			{-1/4, -1/16, 1/8, 1/4, 1/16, 3/8},
			{-1/4, -1/4, 3/8, 1/4, 1/4, 1/2 - 0.01}
		}
	},

	on_punch = function(pos, node)
		on_off_light(pos, node)
	end,

	mesecons = {effector = {
		action_on = function(pos, node)
			on_off_light(pos, node)
		end,
	}}
})

minetest.register_alias("infrastructure:crosswalk_warning_light", "infrastructure:crosswalk_warning_light_off")
minetest.register_alias("infrastructure:crosswalk_warning_bright", "infrastructure:crosswalk_warning_light_on")
minetest.register_alias("infrastructure:crosswalk_warning_dark", "infrastructure:crosswalk_warning_light_on")