summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-04 22:25:25 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-04 22:25:25 +0000
commita7bf0d48fb863282d7d93209505b518fd507285b (patch)
tree4efe6cee2818f2a478b8c34bc217378483650383 /crawl-ref/source/acr.cc
parent7c805921b8b0847c39c20ed508c0d8e6b76ae55a (diff)
downloadcrawl-ref-a7bf0d48fb863282d7d93209505b518fd507285b.tar.gz
crawl-ref-a7bf0d48fb863282d7d93209505b518fd507285b.zip
Implement second part of labyrinth tweaks:
* allow mapping of labyrinths, but apply heavy map rot * lab walls shift from time to time * added a wizmode command (&k) to test the changes My usual sequence goes something like &l, >, &{, #, (copy map dump elsewhere), X, Ctrl-F, y, Esc, &k, &{, #. I've tweaked my monster pathfinding A* algorithm to only work for non-monsters, so I've been using that. Because of the mapping, labyrinths are now actually easier to solve. (It's a bit hard to tell, though, since I got *really* good at solving labyrinths over the 40 something trial runs. :) ) At the same time they are now much more interesting and flavourful because of the map rot, and the shifting provides some wonderful excitement. So, whoever came up with that idea, thanks! :D Still to do: * Exceptions for vaults. (Distinction between vault/non-vault walls.) * Better handling of walls. (They currently "teleport" to the chosen floor grid, leading to unusual wall types appearing somewhere else.) * Improve the feel of the shifted mazes. (They come really close to the original now but still do not look exactly the same.) The numbers may need tweaking. Currently, they are: shift rate : 10% chance, every 20 turns map rot rate: 45% of the map, every 20 turns size of shifted area: 12x12 to 24x24 number of shifted walls per round: 12-45 Shifting will only ever take place between unexplored (or forgotten) grids. Thus, the chance of changes taking place is greater in areas away from the player. I also increased the starting distance from the centre from 20*20 to 28*28. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7387 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index c4c77e7025..b71d92209a 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -792,6 +792,13 @@ static void _do_wizard_command(int wiz_command, bool silent_fail)
grd(you.pos()) = DNGN_ENTER_LABYRINTH;
break;
+ case 'k':
+ if (you.level_type == LEVEL_LABYRINTH)
+ change_labyrinth(true);
+ else
+ mpr("This only makes sense in a labyrinth!");
+ break;
+
case 'L':
debug_place_map();
break;