1
0
Fork 0

Compare commits

..

1 Commits

Author SHA1 Message Date
Nils Dagsson Moskopp 2c51da9c7d
Add rail rendering (WIP) 2022-05-22 23:07:20 +02:00
2 changed files with 185 additions and 78 deletions

261
init.lua
View File

@ -15,41 +15,34 @@ Codezeilen und schreibe das auch nicht dran.
]]--
local protector = minetest.get_modpath ("protector")
-- Detect stopping colors.
function tga_encoder.image:detect_stop_colors(icon, pos, stop_colors)
local x = pos.x
local z = pos.z
for i_z = 1,#icon do
for i_x = 1,#icon[i_z] do
if stop_colors[self.pixels[z + i_z][x + i_x][1]] then
return true
end
end
end
end
-- blit an icon into the image unless its rect overlaps pixels that
-- have any of the stop_colors, treating a nil pixel as transparent
-- have any of the stop_colors, treating a nil pixel as transparent
function tga_encoder.image:blit_icon(icon, pos, stop_colors)
local x = pos.x
local z = pos.z
-- Just as the comment above says, exit IMMEDIATELY if there
-- are stop_colors present in the image.
if self:detect_stop_colors(icon, pos, stop_colors) then
return
end
local overlap = false
for i_z = 1,#icon do
for i_x = 1,#icon[i_z] do
local color = icon[i_z][i_x][1]
if color then
self.pixels[z + i_z][x + i_x] = { color }
end
end
for i_x = 1,#icon[i_z] do
local color = self.pixels[z + i_z][x + i_x][1]
if stop_colors[color] then
overlap = true
break
end
end
if overlap then
break
end
end
if overlap then
return
end
for i_z = 1,#icon do
for i_x = 1,#icon[i_z] do
local color = icon[i_z][i_x][1]
if color then
self.pixels[z + i_z][x + i_x] = { color }
end
end
end
end
@ -72,26 +65,24 @@ local worldpath = minetest.get_worldpath()
local textures_dir = worldpath .. "/xmaps/"
minetest.mkdir(textures_dir)
function xmaps.get_map_filename(map_id)
return "xmaps_map_texture_" .. map_id .. ".tga"
xmaps.get_map_filename = function(map_id)
return "xmaps_map_texture_" .. map_id .. ".tga"
end
function xmaps.create_map_item(pos, properties)
properties = properties or {}
xmaps.create_map_item = function(pos, properties)
properties = properties or {}
local itemstack = ItemStack("xmaps:map")
local meta = itemstack:get_meta()
local itemstack = ItemStack("xmaps:map")
local meta = itemstack:get_meta()
local map_id = tostring(os.time() + math.random())
meta:set_string("xmaps:id", map_id)
-- Size is defined above
-- I love this, it's so clever
local minp = vector.multiply(vector.floor(vector.divide(pos, size)), size)
meta:set_string("xmaps:minp", minetest.pos_to_string(minp))
local maxp = vector.add(minp, vector.new(size - 1, size - 1, size - 1))
meta:set_string("xmaps:maxp", minetest.pos_to_string(maxp))
local map_id = tostring(os.time() + math.random())
meta:set_string("xmaps:id", map_id)
local minp = vector.multiply(vector.floor(vector.divide(pos, size)), size)
meta:set_string("xmaps:minp", minetest.pos_to_string(minp))
local maxp = vector.add(minp, vector.new(size - 1, size - 1, size - 1))
meta:set_string("xmaps:maxp", minetest.pos_to_string(maxp))
if properties.draw_x then
local xpos = vector.round(pos)
@ -122,6 +113,8 @@ function xmaps.create_map_item(pos, properties)
{ 150, 105, 55 }, -- more liquid
{ 60, 35, 16 }, -- tree outline
{ 150, 105, 55 }, -- tree fill
{ 60, 35, 15 }, -- rail line
{ 60, 35, 15 }, -- rail line
}
for x = 1,size,1 do
for z = 1,size,1 do
@ -175,6 +168,126 @@ function xmaps.create_map_item(pos, properties)
local image = tga_encoder.image(pixels)
local positions = minetest.find_nodes_in_area_under_air(
minp,
maxp,
"group:rail"
)
RAIL = 10
for _, p in ipairs(positions) do
local z = p.z - minp.z + 1
local x = p.x - minp.x + 1
pixels[z][x] = { RAIL }
end
-- thin out diagonal lines
for z = 1,#pixels do
for x = 1,#pixels[z] do
if (
RAIL == pixels[z][x][1] and
x < #pixels[z] -1 and
RAIL == pixels[z][x+1][1] and
not ( RAIL == pixels[z][x+2][1] )
) then
local color = 0 + ( ( x + z + 1 ) % 2 )
pixels[z][x+1] = { color }
end
if (
RAIL == pixels[z][x][1] and
z < #pixels - 1 and
RAIL == pixels[z+1][x][1] and
not ( RAIL == pixels[z+2][x][1] )
) then
local color = 0 + ( ( x + z + 1 ) % 2 )
pixels[z+1][x] = { color }
end
end
end
for _, p in ipairs(positions) do
local z = p.z - minp.z + 1
local x = p.x - minp.x + 1
local draw_rail = (
z > 1 and
z < size - 1 and
x > 1 and
x < size - 1
)
if draw_rail then
local _ = { nil } -- transparent
local R = { 11 } -- line
local rail
local node_sw = minetest.get_node({
x=p.x - 1,
y=p.y,
z=p.z - 1,
})
local node_se = minetest.get_node({
x=p.x - 1,
y=p.y,
z=p.z + 1,
})
local node_nw = minetest.get_node({
x=p.x + 1,
y=p.y,
z=p.z - 1,
})
local node_ne = minetest.get_node({
x=p.x + 1,
y=p.y,
z=p.z + 1,
})
if (
minetest.get_item_group(
node_sw.name,
"rail"
) > 0 or
minetest.get_item_group(
node_se.name,
"rail"
) > 0 or
minetest.get_item_group(
node_nw.name,
"rail"
) > 0 or
minetest.get_item_group(
node_ne.name,
"rail"
) > 0
) then
rail = {
{ R, _, R },
{ _, R, _ },
{ R, _, R },
}
else
rail = {
{ _, R, _ },
{ R, R, R },
{ _, R, _ },
}
end
if 0 == ( x + z ) % 4 then
rail = {}
end
assert( rail )
image:blit_icon(
rail,
{
x = x - 2,
z = z - 2,
},
{
[4] = true,
[5] = true,
[6] = true,
[7] = true,
[8] = true,
[9] = true,
[11] = true,
}
)
end
end
local positions = minetest.find_nodes_in_area(
minp,
maxp,
@ -216,6 +329,8 @@ function xmaps.create_map_item(pos, properties)
[7] = true,
[8] = true,
[9] = true,
[10] = true,
[11] = true,
}
)
end
@ -288,6 +403,8 @@ function xmaps.create_map_item(pos, properties)
[7] = true,
[8] = true,
[9] = true,
[10] = true,
[11] = true,
}
)
end
@ -330,6 +447,8 @@ function xmaps.create_map_item(pos, properties)
[7] = true,
[8] = true,
[9] = true,
[10] = true,
[11] = true,
}
)
end
@ -371,6 +490,8 @@ function xmaps.create_map_item(pos, properties)
[7] = true,
[8] = true,
[9] = true,
[10] = true,
[11] = true,
}
)
end
@ -520,7 +641,7 @@ xmaps.load_map_item = function(itemstack)
)
end
else
-- no texture file -> could be a world download
-- no texture file could be a world download
-- so we look for missing texture in item meta
-- and write that to the map texture file here
if texture_item_meta_exists then
@ -852,23 +973,17 @@ minetest.register_entity(
}
)
end,
on_punch = function(self, puncher)
-- Protection implemented.
local pos = self.object:get_pos()
if protector then
if minetest.is_protected (pos, puncher) then
return
end
end
local itemstring = self._itemstring
if pos and itemstring then
minetest.add_item(
pos,
itemstring
)
self.object:remove()
end
on_punch = function(self)
-- TODO: implement protection
local pos = self.object:get_pos()
local itemstring = self._itemstring
if pos and itemstring then
minetest.add_item(
pos,
itemstring
)
self.object:remove()
end
end
}
)
@ -880,7 +995,7 @@ minetest.register_craftitem(
inventory_image = "xmaps_map.tga",
groups = { not_in_creative_inventory = 1 },
on_place = function(itemstack, player, pointed_thing)
if pointed_thing.type ~= "node" then
if "node" ~= pointed_thing.type then
return
end
@ -890,10 +1005,7 @@ minetest.register_craftitem(
end
local node_pos = pointed_thing.under
if protector and minetest.is_protected (pointed_thing.above, player)
then
return
end
local direction = vector.normalize(
vector.subtract(
node_pos,
@ -945,11 +1057,7 @@ if minetest.registered_items["map:mapping_kit"] then
"map:mapping_kit",
{
on_place = function(itemstack, player, pointed_thing)
local pos = pointed_thing.under
if protector and minetest.is_protected (pointed_thing.above, player)
then
return
end
local pos = pointed_thing.under
if pos then
local map = xmaps.create_map_item(
pos,
@ -961,9 +1069,8 @@ if minetest.registered_items["map:mapping_kit"] then
on_secondary_use = function(itemstack, player, pointed_thing)
local pos = player:get_pos()
if pos then
local map = xmaps.create_map_item(pos)
return map
local map = xmaps.create_map_item(pos)
return map
end
end,
}

View File

@ -1,4 +1,4 @@
depends = tga_encoder
optional_depends = map, protector
optional_depends = map
description = Adds map items that show terrain in HUD
name = xmaps