summaryrefslogtreecommitdiff
path: root/flashlight.lua
blob: c9901d16fc6b1d4414e8e867398cc9c919f176fd (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
-- original code comes from walkin_light mod by Echo http://minetest.net/forum/viewtopic.php?id=2621

flashlight_max_charge=30000
      
       minetest.register_tool("technic:flashlight", {
            description = "Flashlight",
            inventory_image = "technic_flashlight.png",
	stack_max = 1,
            on_use = function(itemstack, user, pointed_thing)
	end,	        
    })
     
    minetest.register_craft({
            output = "technic:flashlight",
            recipe = {
		    {"glass","glass","glass"},
                    {"technic:stainless_steel_ingot","technic:battery","technic:stainless_steel_ingot"},
                    {"","technic:battery",""}
            }
    })
local players = {}
local player_positions = {}
local last_wielded = {}

function round(num) 
	return math.floor(num + 0.5) 
end

minetest.register_on_joinplayer(function(player)
	local player_name = player:get_player_name()
	table.insert(players, player_name)
	local pos = player:getpos()
	local rounded_pos = {x=round(pos.x),y=round(pos.y)+1,z=round(pos.z)}
	player_positions[player_name] = {}
	player_positions[player_name]["x"] = rounded_pos.x;
	player_positions[player_name]["y"] = rounded_pos.y;
	player_positions[player_name]["z"] = rounded_pos.z;
end)

minetest.register_on_leaveplayer(function(player)
	local player_name = player:get_player_name()
	for i,v in ipairs(players) do
		if v == player_name then 
			table.remove(players, i)
			last_wielded[player_name] = nil
			-- Neuberechnung des Lichts erzwingen
			local pos = player:getpos()
			local rounded_pos = {x=round(pos.x),y=round(pos.y)+1,z=round(pos.z)}
			minetest.env:add_node(rounded_pos,{type="node",name="technic:light_off"})
			minetest.env:add_node(rounded_pos,{type="node",name="air"})
			player_positions[player_name]["x"] = nil
			player_positions[player_name]["y"] = nil
			player_positions[player_name]["z"] = nil
			player_positions[player_name]["m"] = nil
			player_positions[player_name] = nil
		end
	end
end)

minetest.register_globalstep(function(dtime)
	for i,player_name in ipairs(players) do
		local player = minetest.env:get_player_by_name(player_name)
		flashlight_weared=check_for_flashlight(player)
		local pos = player:getpos()
		local rounded_pos = {x=round(pos.x),y=round(pos.y)+1,z=round(pos.z)}
		local old_pos = {x=player_positions[player_name]["x"], y=player_positions[player_name]["y"], z=player_positions[player_name]["z"]}
		
		if last_wielded[player_name] and not flashlight_weared then --remove light, flashlight weared out or was removed from hotbar
			local node=minetest.env:get_node_or_nil(old_pos)
			if node then
			if node.name=="technic:light" then 
			  	minetest.env:add_node(old_pos,{type="node",name="technic:light_off"})
				minetest.env:add_node(old_pos,{type="node",name="air"})		
			  last_wielded[player_name]=false
			  end
			end
			end

		player_moved=not(old_pos.x==rounded_pos.x and old_pos.y==rounded_pos.y and old_pos.z==rounded_pos.z)
		if player_moved and last_wielded[player_name] and flashlight_weared  then
			
			local node=minetest.env:get_node_or_nil(rounded_pos)
			if node then
			if node.name=="air" then 
			  	minetest.env:add_node(rounded_pos,{type="node",name="technic:light"})
			  end
			end
			local node=minetest.env:get_node_or_nil(old_pos)
			if node then
			  if node.name=="technic:light" then 
			  	minetest.env:add_node(old_pos,{type="node",name="technic:light_off"})
				minetest.env:add_node(old_pos,{type="node",name="air"})		
			  end
			end
			player_positions[player_name]["x"] = rounded_pos.x
			player_positions[player_name]["y"] = rounded_pos.y
			player_positions[player_name]["z"] = rounded_pos.z
			
		else if not last_wielded[player_name] and flashlight_weared then
			local node=minetest.env:get_node_or_nil(rounded_pos)
			if node then
			if node.name=="air" then 
			  	minetest.env:add_node(rounded_pos,{type="node",name="technic:light"})
			  end
			end
			player_positions[player_name]["x"] = rounded_pos.x
			player_positions[player_name]["y"] = rounded_pos.y
			player_positions[player_name]["z"] = rounded_pos.z
			last_wielded[player_name]=true
			end			
			
	end
	end
end)

minetest.register_node("technic:light", {
	drawtype = "glasslike",
	tile_images = {"technic_light.png"},
	paramtype = "light",
	walkable = false,
	buildable_to = true,
	is_ground_content = true,
	light_propagates = true,
	sunlight_propagates = true,
	light_source = 15,
	selection_box = {
        type = "fixed",
        fixed = {0, 0, 0, 0, 0, 0},
    },
})
minetest.register_node("technic:light_off", {
	drawtype = "glasslike",
	tile_images = {"technic_light.png"},
	paramtype = "light",
	walkable = false,
	buildable_to = true,
	is_ground_content = true,
	light_propagates = true,
	sunlight_propagates = true,
	selection_box = {
        type = "fixed",
        fixed = {0, 0, 0, 0, 0, 0},
    },
})

function check_for_flashlight (player)
if player==nil then return false end
local inv = player:get_inventory()
local hotbar=inv:get_list("main")
		for i=1,8,1 do
			
			if hotbar[i]:get_name() == "technic:flashlight" then
			item=hotbar[i]:to_table()
			if item["metadata"]=="" or item["metadata"]=="0" then return false end --flashlight not charghed
			charge=tonumber(item["metadata"]) 
			if charge-2>0 then
			 charge =charge-2;	
			set_RE_wear(item,charge,flashlight_max_charge)
			item["metadata"]=tostring(charge)
			hotbar[i]:replace(item)
			inv:set_stack("main",i,hotbar[i])
			return true
			end
			end
		end
return false
end