make MineDOT streetlights use the new code
(sorry, cheapie :) )
This commit is contained in:
parent
ff5ccba41f
commit
d30fa509c8
117
minedot.lua
117
minedot.lua
@ -1,95 +1,32 @@
|
||||
local schems = {
|
||||
single = minetest.register_schematic(string.format("schems%sstreetlight-single.mts",DIR_DELIM)),
|
||||
double = minetest.register_schematic(string.format("schems%sstreetlight-double.mts",DIR_DELIM)),
|
||||
}
|
||||
for k,v in pairs({1, 2}) do
|
||||
-- why +6? because table entries 1-6 are set in modern.lua :-)
|
||||
streetlights.schematics[k+6] =
|
||||
minetest.register_schematic(string.format("schems%sstreetlight_minedot_"..v..".mts",DIR_DELIM))
|
||||
|
||||
local singleMaterials = {
|
||||
ItemStack("streets:bigpole 6"),
|
||||
ItemStack("streets:bigpole_edge 2"),
|
||||
ItemStack("homedecor:glowlight_quarter 1"),
|
||||
}
|
||||
local s = (v == 1) and "" or "s"
|
||||
|
||||
local doubleMaterials = {
|
||||
ItemStack("streets:bigpole 7"),
|
||||
ItemStack("streets:bigpole_edge 2"),
|
||||
ItemStack("streets:bigpole_tjunction 1"),
|
||||
ItemStack("homedecor:glowlight_quarter 2"),
|
||||
}
|
||||
|
||||
local offsets = {
|
||||
single = {
|
||||
[0] = {x = 0,y = 0,z = 0},
|
||||
[90] = {x = 0,y = 0,z = 0},
|
||||
[180] = {x = 0,y = 0,z = -2},
|
||||
[270] = {x = -2,y = 0,z = 0},
|
||||
},
|
||||
double = {
|
||||
[0] = {x = 0,y = 0,z = -2},
|
||||
[90] = {x = -2,y = 0,z = 0},
|
||||
[180] = {x = 0,y = 0,z = -2},
|
||||
[270] = {x = -2,y = 0,z = 0},
|
||||
},
|
||||
}
|
||||
|
||||
local function takeMaterials(player, sneak, materials)
|
||||
local name = player:get_player_name()
|
||||
if creative and creative.is_enabled_for(name) then return true end
|
||||
local inv = minetest.get_inventory({type = "player",name = name})
|
||||
local hasMaterials = true
|
||||
for _,i in ipairs(materials) do
|
||||
if not inv:contains_item("main",i) then hasMaterials = false end
|
||||
end
|
||||
if sneak and streetlights.basic_materials and not inv:contains_item("main", streetlights.concrete) then
|
||||
hasMaterials = false
|
||||
end
|
||||
if hasMaterials then
|
||||
for _,i in ipairs(materials) do inv:remove_item("main",i) end
|
||||
if sneak then
|
||||
inv:remove_item("main", streetlights.concrete)
|
||||
minetest.register_tool("simple_streetlights:spawner_minedot_"..v, {
|
||||
description = "Streetlight spawner (MineDOT-stylw, with "..v.." lamp"..s..")",
|
||||
inventory_image = "simple_streetlights_inv_minedot_"..v..".png",
|
||||
use_texture_alpha = true,
|
||||
tool_capabilities = { full_punch_interval=0.1 },
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
streetlights.check_and_place(itemstack, placer, pointed_thing, {
|
||||
schematic = streetlights.schematics[k+6],
|
||||
materials = {
|
||||
"streets:bigpole "..(v+5),
|
||||
"streets:bigpole_edge 2",
|
||||
"homedecor:glowlight_quarter "..v,
|
||||
(v == 2) and "streets:bigpole_tjunction 1"
|
||||
},
|
||||
protection_box = {
|
||||
omin = {x = (-2*v + 2), y = 0, z = 0},
|
||||
omax = {x = 2, y = 5, z = 0},
|
||||
}
|
||||
})
|
||||
end
|
||||
return true
|
||||
else
|
||||
minetest.chat_send_player(name,"You don't have the necessary materials to do that!")
|
||||
return false
|
||||
end
|
||||
})
|
||||
end
|
||||
|
||||
local function place(itemstack,player,pointed)
|
||||
if not player then return end
|
||||
local sneak = player:get_player_control().sneak
|
||||
local name = player:get_player_name()
|
||||
if not minetest.check_player_privs(name,{streetlight = true}) then
|
||||
minetest.chat_send_player(name,"*** You don't have permission to use a streetlight spawner.")
|
||||
return
|
||||
end
|
||||
local pos = pointed.above
|
||||
if minetest.is_protected(pos,name) and not minetest.check_player_privs(name,{protection_bypass = true}) then
|
||||
minetest.record_protection_violation(pos,name)
|
||||
return
|
||||
end
|
||||
local isDouble = string.sub(itemstack:get_name(),-6,-1) == "double"
|
||||
if not takeMaterials(player, sneak, isDouble and doubleMaterials or singleMaterials) then return end
|
||||
local facedir = minetest.facedir_to_dir(minetest.dir_to_facedir(player:get_look_dir()))
|
||||
local schemDir = 0
|
||||
if facedir.x == 1 then schemDir = 180
|
||||
elseif facedir.z == 1 then schemDir = 90
|
||||
elseif facedir.z == -1 then schemDir = 270 end
|
||||
local offset = offsets[isDouble and "double" or "single"][schemDir]
|
||||
if sneak and streetlights.basic_materials then
|
||||
minetest.set_node({x=pos.x, y=pos.y-1, z=pos.z}, {name = streetlights.concrete})
|
||||
end
|
||||
local pos = vector.add(pos,offset)
|
||||
minetest.place_schematic(pos,isDouble and schems.double or schems.single,schemDir,nil,false)
|
||||
end
|
||||
|
||||
minetest.register_tool(":minedot_streetlights:spawner_single",{
|
||||
description = "MineDOT-style Street Light Spawner (single-sided)",
|
||||
inventory_image = "minedot_streetlights_single.png",
|
||||
on_place = place,
|
||||
})
|
||||
|
||||
minetest.register_tool(":minedot_streetlights:spawner_double",{
|
||||
description = "MineDOT-style Street Light Spawner (double-sided)",
|
||||
inventory_image = "minedot_streetlights_double.png",
|
||||
on_place = place,
|
||||
})
|
||||
minetest.register_alias("minedot_streetlights:spawner_single", "simple_streetlights:spawner_minedot_1")
|
||||
minetest.register_alias("minedot_streetlights:spawner_double", "simple_streetlights:spawner_minedot_2")
|
||||
|
Binary file not shown.
Binary file not shown.
BIN
schems/streetlight_minedot_1.mts
Normal file
BIN
schems/streetlight_minedot_1.mts
Normal file
Binary file not shown.
BIN
schems/streetlight_minedot_2.mts
Normal file
BIN
schems/streetlight_minedot_2.mts
Normal file
Binary file not shown.
Before Width: | Height: | Size: 199 B After Width: | Height: | Size: 199 B |
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 210 B |
Loading…
x
Reference in New Issue
Block a user