summaryrefslogtreecommitdiffstats
path: root/pages/gallery.php
diff options
context:
space:
mode:
authorPatrick Davison <snapwilliam@gmail.com>2011-09-10 01:50:53 -0700
committerPatrick Davison <snapwilliam@gmail.com>2011-09-10 01:50:53 -0700
commit632c6e40b7e93eae0341fadcc8afda62b64951e8 (patch)
treee4561e3e18d5f94078e9f10c56851fbe5e304bda /pages/gallery.php
parentf5fae4bbf7d84419cf4ecb38238bfb9bb2f911e5 (diff)
parenta8e48c969b5b56f76a37121fe157b75398461e84 (diff)
downloadpathery-632c6e40b7e93eae0341fadcc8afda62b64951e8.tar.xz
Merge branch 'staging'
Conflicts: css/mapstyle.css globe.php Signed-off-by: Patrick Davison <snapwilliam@gmail.com>
Diffstat (limited to 'pages/gallery.php')
-rw-r--r--pages/gallery.php47
1 files changed, 47 insertions, 0 deletions
diff --git a/pages/gallery.php b/pages/gallery.php
index 68c17ae..259ac2a 100644
--- a/pages/gallery.php
+++ b/pages/gallery.php
@@ -79,7 +79,54 @@ $map = GenerateMap(
weight(3,3,3,4) //Teleports
);
+//ABC's
+$map = GenerateMap(
+ 19, 11, 12 , //width, height, rocks
+ weight(20,21,22,22,23) , //Walls
+ weight(3) , //Checkpoints
+ weight(0) //Teleports
+);
+
+//Ultra Complex
+$map = GenerateMap(
+ 18, 16, 12 , //width, height, rocks
+ weight(16,17,18,18) , //Walls
+ weight(5) , //Checkpoints
+ weight(5) //Teleports
+);
+//Tall tall map
+$map = GenerateMap(
+ 18, 14, 20 , //width, height, rocks
+ weight(30) , //Walls
+ weight(1) , //Checkpoints
+ weight(1) //Teleports
+);
+//Thirty
+$map = GenerateMap(
+ 18, 14, 20 , //width, height, rocks
+ weight(30) , //Walls
+ weight(1) , //Checkpoints
+ weight(1) //Teleports
+);
+//Simple
+$map = GenerateMap(
+ 18, 9, 7 , //width, height, rocks
+ weight(15,16,17) , //Walls
+ weight(0) , //Checkpoints
+ weight(0) //Teleports
+);
+//huge
+$map = GenerateMap(
+ 75, 20, 7 , //width, height, rocks
+ weight(100) , //Walls
+ weight(5) , //Checkpoints
+ weight(4) //Teleports
+);
+$a[0] = 't';
+$a[1] = 't';
+$a['1'] = 'hi';
+echo $a[1];
$mapdisplay = DisplayMap($map);
$code = GenerateMapCode($map);