From b6b08a8ad899186bb28e984cbe217d843a44559b Mon Sep 17 00:00:00 2001 From: cheapie Date: Sun, 10 Jan 2016 04:28:30 -0600 Subject: Redo pavement markings (full nodes only so far) --- infrastructure/crafts.lua | 106 --------------------- infrastructure/nodes.lua | 106 --------------------- .../textures/infrastructure_double_yellow_line.png | Bin 270 -> 0 bytes .../textures/infrastructure_single_yellow_line.png | Bin 231 -> 0 bytes .../infrastructure_single_yellow_line_corner.png | Bin 250 -> 0 bytes ...rastructure_solid_double_yellow_line_corner.png | Bin 239 -> 0 bytes .../infrastructure_solid_yellow_line_one_side.png | Bin 272 -> 0 bytes 7 files changed, 212 deletions(-) delete mode 100644 infrastructure/textures/infrastructure_double_yellow_line.png delete mode 100644 infrastructure/textures/infrastructure_single_yellow_line.png delete mode 100644 infrastructure/textures/infrastructure_single_yellow_line_corner.png delete mode 100644 infrastructure/textures/infrastructure_solid_double_yellow_line_corner.png delete mode 100644 infrastructure/textures/infrastructure_solid_yellow_line_one_side.png (limited to 'infrastructure') diff --git a/infrastructure/crafts.lua b/infrastructure/crafts.lua index 4a324fe..9897892 100644 --- a/infrastructure/crafts.lua +++ b/infrastructure/crafts.lua @@ -23,112 +23,6 @@ } }) --- **************************************************************************************************** CENTER LINES - --- Asphalt block with center dashed line - minetest.register_craft({ - output = '"infrastructure:asphalt_center_dashed" 9', - recipe = { - {'infrastructure:asphalt', 'wool:yellow', 'infrastructure:asphalt'}, - {'infrastructure:asphalt', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'infrastructure:asphalt', 'wool:yellow', 'infrastructure:asphalt'} - } - }) - --- Asphalt block with center solid line - minetest.register_craft({ - output = '"infrastructure:asphalt_center_solid_line" 9', - recipe = { - {'infrastructure:asphalt', 'wool:yellow', 'infrastructure:asphalt'}, - {'infrastructure:asphalt', 'wool:yellow', 'infrastructure:asphalt'}, - {'infrastructure:asphalt', 'wool:yellow', 'infrastructure:asphalt'} - } - }) - --- Asphalt block with center solid line on one side - minetest.register_craft({ - output = '"infrastructure:asphalt_center_solid_one_side" 9', - recipe = { - {'wool:yellow', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'wool:yellow', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'wool:yellow', 'infrastructure:asphalt', 'infrastructure:asphalt'} - } - }) - - --- Asphalt block with center solid double line - minetest.register_craft({ - output = '"infrastructure:asphalt_center_solid_double" 9', - recipe = { - {'wool:yellow', 'infrastructure:asphalt', 'wool:yellow'}, - {'wool:yellow', 'infrastructure:asphalt', 'wool:yellow'}, - {'wool:yellow', 'infrastructure:asphalt', 'wool:yellow'} - } - }) - --- Asphalt block with center corner single line - minetest.register_craft({ - output = '"infrastructure:asphalt_center_corner_single" 9', - recipe = { - {'infrastructure:asphalt', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'infrastructure:asphalt', 'wool:yellow', 'wool:yellow'}, - {'infrastructure:asphalt', 'wool:yellow', 'infrastructure:asphalt'} - } - }) - --- Asphalt block with center corner double line - minetest.register_craft({ - output = '"infrastructure:asphalt_center_corner_double" 9', - recipe = { - {'wool:yellow', 'wool:yellow', 'wool:yellow'}, - {'wool:yellow', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'wool:yellow', 'infrastructure:asphalt', 'wool:yellow'} - } - }) - --- **************************************************************************************************** BORDER LINES - --- Asphalt block with side dashed line - minetest.register_craft({ - output = '"infrastructure:asphalt_side_dashed" 9', - recipe = { - {'wool:white', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'infrastructure:asphalt', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'wool:white', 'infrastructure:asphalt', 'infrastructure:asphalt'} - } - }) - --- Asphalt block with side solid line - minetest.register_craft({ - output = '"infrastructure:asphalt_side_solid" 9', - recipe = { - {'wool:white', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'wool:white', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'wool:white', 'infrastructure:asphalt', 'infrastructure:asphalt'} - } - }) - --- Asphalt block with lines for inner edge - minetest.register_craft({ - output = '"infrastructure:asphalt_inner_edge" 9', - recipe = { - {'wool:white', 'wool:white', 'wool:white'}, - {'wool:white', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'wool:white', 'infrastructure:asphalt', 'infrastructure:asphalt'} - } - }) - --- Asphalt block with lines for outer edge - minetest.register_craft({ - output = '"infrastructure:asphalt_outer_edge" 9', - recipe = { - {'infrastructure:asphalt', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'infrastructure:asphalt', 'infrastructure:asphalt', 'infrastructure:asphalt'}, - {'wool:white', 'infrastructure:asphalt', 'infrastructure:asphalt'} - } - }) - - -- **************************************************************************************************** PRECAST CONCRETE -- Concrete seperating wall diff --git a/infrastructure/nodes.lua b/infrastructure/nodes.lua index 33845c1..e0455ee 100644 --- a/infrastructure/nodes.lua +++ b/infrastructure/nodes.lua @@ -33,112 +33,6 @@ groups = {cracky = 2}, }) --- **************************************************************************************************** CENTER LINES - --- Asphalt block with center solid line - minetest.register_node("infrastructure:asphalt_center_solid_line", { - description = "Asphalt with center solid line", - tiles = { - "streets_asphalt.png^infrastructure_single_yellow_line.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - }, - drawtype = "normal", - paramtype = "light", - paramtype2 = "facedir", - groups = {cracky = 1}, - }) - --- Asphalt block with center solid line on one side (for making dashed lines) - minetest.register_node("infrastructure:asphalt_center_solid_one_side", { - description = "Asphalt with center solid line on one side", - tiles = { - "streets_asphalt.png^infrastructure_solid_yellow_line_one_side.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - }, - drawtype = "normal", - paramtype = "light", - paramtype2 = "facedir", - groups = {cracky = 1}, - }) - --- Asphalt block with center solid double line - minetest.register_node("infrastructure:asphalt_center_solid_double", { - description = "Asphalt with center solid double line", - tiles = { - "streets_asphalt.png^infrastructure_double_yellow_line.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - }, - drawtype = "normal", - paramtype = "light", - paramtype2 = "facedir", - groups = {cracky = 1}, - }) - --- Asphalt block with center corner single line - minetest.register_node("infrastructure:asphalt_center_corner_single", { - description = "Asphalt with center corner single line", - tiles = { - "streets_asphalt.png^infrastructure_single_yellow_line_corner.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - }, - drawtype = "normal", - paramtype = "light", - paramtype2 = "facedir", - groups = {cracky = 1}, - }) - --- Asphalt block with center corner double line - minetest.register_node("infrastructure:asphalt_center_corner_double", { - description = "Asphalt with center corner double line", - tiles = { - "streets_asphalt.png^infrastructure_solid_double_yellow_line_corner.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - "streets_asphalt.png", - }, - drawtype = "normal", - paramtype = "light", - paramtype2 = "facedir", - groups = {cracky = 1}, - }) - --- **************************************************************************************************** TRAFFIC MARKS - --- Asphalt block with arrow straight - minetest.register_alias("infrastructure:asphalt_arrow_straight", "streets:asphalt_arrow_straight") - --- Asphalt block with arrow straight + left - minetest.register_alias("infrastructure:asphalt_arrow_straight_left", "streets:asphalt_arrow_straight_left") - --- Asphalt block with arrow straight + right - minetest.register_alias("infrastructure:asphalt_arrow_straight_right", "streets:asphalt_arrow_straight_left") - --- Asphalt block with arrow left - minetest.register_alias("infrastructure:asphalt_arrow_left", "streets:asphalt_arrow_left") - --- Asphalt block with arrow right - minetest.register_alias("infrastructure:asphalt_arrow_right", "streets:asphalt_arrow_right") - --- Asphalt block with "P"-sign - minetest.register_alias("infrastructure:asphalt_parking", "streets:asphalt_parking") -- **************************************************************************************************** PRECAST CONCRETE diff --git a/infrastructure/textures/infrastructure_double_yellow_line.png b/infrastructure/textures/infrastructure_double_yellow_line.png deleted file mode 100644 index 3f21c45..0000000 Binary files a/infrastructure/textures/infrastructure_double_yellow_line.png and /dev/null differ diff --git a/infrastructure/textures/infrastructure_single_yellow_line.png b/infrastructure/textures/infrastructure_single_yellow_line.png deleted file mode 100644 index a9ca74b..0000000 Binary files a/infrastructure/textures/infrastructure_single_yellow_line.png and /dev/null differ diff --git a/infrastructure/textures/infrastructure_single_yellow_line_corner.png b/infrastructure/textures/infrastructure_single_yellow_line_corner.png deleted file mode 100644 index a41d06a..0000000 Binary files a/infrastructure/textures/infrastructure_single_yellow_line_corner.png and /dev/null differ diff --git a/infrastructure/textures/infrastructure_solid_double_yellow_line_corner.png b/infrastructure/textures/infrastructure_solid_double_yellow_line_corner.png deleted file mode 100644 index 09a3719..0000000 Binary files a/infrastructure/textures/infrastructure_solid_double_yellow_line_corner.png and /dev/null differ diff --git a/infrastructure/textures/infrastructure_solid_yellow_line_one_side.png b/infrastructure/textures/infrastructure_solid_yellow_line_one_side.png deleted file mode 100644 index 0cff2e9..0000000 Binary files a/infrastructure/textures/infrastructure_solid_yellow_line_one_side.png and /dev/null differ -- cgit v1.2.3