From: Ingo Ruhnke Date: Fri, 19 Mar 2004 23:14:21 +0000 (+0000) Subject: - added worldmap gfx (just placeholder) X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=ffce65fb6d49eb2c23b89871e89f335a2c98e507;p=supertux.git - added worldmap gfx (just placeholder) SVN-Revision: 264 --- diff --git a/data/images/worldmap/antarctica.scm b/data/images/worldmap/antarctica.scm new file mode 100644 index 000000000..307738168 --- /dev/null +++ b/data/images/worldmap/antarctica.scm @@ -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 index 000000000..6eaa400f4 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 index 000000000..579e33e9f 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 index 000000000..07c59f1d8 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 index 000000000..1f28ea28d 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 index 000000000..675af3203 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 index 000000000..101da1f67 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 index 000000000..1dead3bfb 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 index 000000000..043a5cd22 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 index 000000000..3f9a888ed 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 index 000000000..bfa5ac885 Binary files /dev/null and b/data/images/worldmap/tux.png differ