summaryrefslogtreecommitdiff
path: root/infrastructure
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2016-01-10 04:28:30 -0600
committercheapie <no-email-for-you@example.com>2016-01-10 04:28:30 -0600
commitb6b08a8ad899186bb28e984cbe217d843a44559b (patch)
tree0144f877a7735ece3113a66267fbd9f997db7616 /infrastructure
parentf26a72d98d53ce34c57e6daeae58a736ebb3fa2e (diff)
downloadroads-b6b08a8ad899186bb28e984cbe217d843a44559b.tar
roads-b6b08a8ad899186bb28e984cbe217d843a44559b.tar.gz
roads-b6b08a8ad899186bb28e984cbe217d843a44559b.tar.bz2
roads-b6b08a8ad899186bb28e984cbe217d843a44559b.tar.xz
roads-b6b08a8ad899186bb28e984cbe217d843a44559b.zip
Redo pavement markings (full nodes only so far)
Diffstat (limited to 'infrastructure')
-rw-r--r--infrastructure/crafts.lua106
-rw-r--r--infrastructure/nodes.lua106
-rw-r--r--infrastructure/textures/infrastructure_double_yellow_line.pngbin270 -> 0 bytes
-rw-r--r--infrastructure/textures/infrastructure_single_yellow_line.pngbin231 -> 0 bytes
-rw-r--r--infrastructure/textures/infrastructure_single_yellow_line_corner.pngbin250 -> 0 bytes
-rw-r--r--infrastructure/textures/infrastructure_solid_double_yellow_line_corner.pngbin239 -> 0 bytes
-rw-r--r--infrastructure/textures/infrastructure_solid_yellow_line_one_side.pngbin272 -> 0 bytes
7 files changed, 0 insertions, 212 deletions
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
--- a/infrastructure/textures/infrastructure_double_yellow_line.png
+++ /dev/null
Binary files 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
--- a/infrastructure/textures/infrastructure_single_yellow_line.png
+++ /dev/null
Binary files 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
--- a/infrastructure/textures/infrastructure_single_yellow_line_corner.png
+++ /dev/null
Binary files 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
--- a/infrastructure/textures/infrastructure_solid_double_yellow_line_corner.png
+++ /dev/null
Binary files 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
--- a/infrastructure/textures/infrastructure_solid_yellow_line_one_side.png
+++ /dev/null
Binary files differ