- added worldmap gfx (just placeholder)
authorIngo Ruhnke <grumbel@gmx.de>
Fri, 19 Mar 2004 23:14:21 +0000 (23:14 +0000)
committerIngo Ruhnke <grumbel@gmx.de>
Fri, 19 Mar 2004 23:14:21 +0000 (23:14 +0000)
SVN-Revision: 264

data/images/worldmap/antarctica.scm [new file with mode: 0644]
data/images/worldmap/ground.png [new file with mode: 0644]
data/images/worldmap/placeholder.png [new file with mode: 0644]
data/images/worldmap/road_cross.png [new file with mode: 0644]
data/images/worldmap/road_e.png [new file with mode: 0644]
data/images/worldmap/road_h.png [new file with mode: 0644]
data/images/worldmap/road_h_stop.png [new file with mode: 0644]
data/images/worldmap/road_v.png [new file with mode: 0644]
data/images/worldmap/road_v_stop.png [new file with mode: 0644]
data/images/worldmap/road_ws.png [new file with mode: 0644]
data/images/worldmap/tux.png [new file with mode: 0644]

diff --git a/data/images/worldmap/antarctica.scm b/data/images/worldmap/antarctica.scm
new file mode 100644 (file)
index 0000000..3077381
--- /dev/null
@@ -0,0 +1,64 @@
+;; (tile (id INT)
+;;       (directions TOP RIGHT DOWN LEFT) 
+;;
+(supertux-worldmap-tiles
+ (tile (id 0)
+       (image "ground.png")
+       (north #f)
+       (south #f)
+       (east  #f)
+       (west  #f)
+       (stop #f))
+ (tile (id 1)
+       (image "road_h.png")
+       (north #f)
+       (south #f)
+       (west  #t)
+       (east  #t)
+       (stop #f))
+ (tile (id 2)
+       (image "road_v.png")
+       (north #t)
+       (south #t)
+       (west  #f)
+       (east  #f)
+       (stop #f))
+ (tile (id 3)
+       (image "road_ws.png")
+       (north #f)
+       (south #t)
+       (west  #t)
+       (east  #f)
+       (stop #t))
+ (tile (id 4)
+       (image "road_cross.png")
+       (north #t)
+       (south #t)
+       (west  #t)
+       (east  #t)
+       (stop #t))
+ (tile (id 5)
+       (image "road_e.png")
+       (north #f)
+       (south #f)
+       (west  #f)
+       (east  #t)
+       (stop #t))
+ (tile (id 6)
+       (image "road_h_stop.png")
+       (north #f)
+       (south #f)
+       (west  #t)
+       (east  #t)
+       (stop #t))
+ (tile (id 7)
+       (image "road_v_stop.png")
+       (north #t)
+       (south #t)
+       (west  #f)
+       (east  #f)
+       (stop #t))
+
+)
+
+;; EOF ;;
diff --git a/data/images/worldmap/ground.png b/data/images/worldmap/ground.png
new file mode 100644 (file)
index 0000000..6eaa400
Binary files /dev/null and b/data/images/worldmap/ground.png differ
diff --git a/data/images/worldmap/placeholder.png b/data/images/worldmap/placeholder.png
new file mode 100644 (file)
index 0000000..579e33e
Binary files /dev/null and b/data/images/worldmap/placeholder.png differ
diff --git a/data/images/worldmap/road_cross.png b/data/images/worldmap/road_cross.png
new file mode 100644 (file)
index 0000000..07c59f1
Binary files /dev/null and b/data/images/worldmap/road_cross.png differ
diff --git a/data/images/worldmap/road_e.png b/data/images/worldmap/road_e.png
new file mode 100644 (file)
index 0000000..1f28ea2
Binary files /dev/null and b/data/images/worldmap/road_e.png differ
diff --git a/data/images/worldmap/road_h.png b/data/images/worldmap/road_h.png
new file mode 100644 (file)
index 0000000..675af32
Binary files /dev/null and b/data/images/worldmap/road_h.png differ
diff --git a/data/images/worldmap/road_h_stop.png b/data/images/worldmap/road_h_stop.png
new file mode 100644 (file)
index 0000000..101da1f
Binary files /dev/null and b/data/images/worldmap/road_h_stop.png differ
diff --git a/data/images/worldmap/road_v.png b/data/images/worldmap/road_v.png
new file mode 100644 (file)
index 0000000..1dead3b
Binary files /dev/null and b/data/images/worldmap/road_v.png differ
diff --git a/data/images/worldmap/road_v_stop.png b/data/images/worldmap/road_v_stop.png
new file mode 100644 (file)
index 0000000..043a5cd
Binary files /dev/null and b/data/images/worldmap/road_v_stop.png differ
diff --git a/data/images/worldmap/road_ws.png b/data/images/worldmap/road_ws.png
new file mode 100644 (file)
index 0000000..3f9a888
Binary files /dev/null and b/data/images/worldmap/road_ws.png differ
diff --git a/data/images/worldmap/tux.png b/data/images/worldmap/tux.png
new file mode 100644 (file)
index 0000000..bfa5ac8
Binary files /dev/null and b/data/images/worldmap/tux.png differ