Random map generator

In the context of my student research project I want to develop a random map generator for VCMI. The project has been approved by the university. It has to be submitted at the latest 1st july 2013. Any help regarding map generation algorithms or the h3m map format is appreciated. Yeah, I didnā€™t want to develop VCMI any further, but things have changed:) The possibility to do a student project about vcmi/rmg gave me the motivation.

The RMG should be handled as a sub-project like libvcmi, battleAI,ā€¦ Iā€™ll commit to trunk if I got something usable. (which is almost safe and wonā€™t be changed to frequently)

@Ivan/Tow: Is there any good material how the .H3M format is composed of?(Iā€™ve searched a little bit, and you may know already some good material^^, I can always look into the source code, i know^^)

The next step is to compare already developed algorithms(which can be found via the internet) and compare them with the original H3 template-based RMG. That seems to be very nice: www-cs-students.stanford.edu/~am ā€¦ eneration/. Perhaps it can be adapted to the tile-based terrain of H3.

In the far future I may write a simple map viewer with Qt if there is enough time. This way I can watch generated maps directly in linux instead of copying them to VM/Windows. This should be relatively easy. Some map drawing code have to be moved from client to lib. (then it can used by external apps) This map viewer can be used as a base for a map editor later. (I know far future, so donā€™t think too much about itā€¦)

You probably will want to follow this, at least in main points:
dropbox.com/s/a2ex55xbuq1if ā€¦ edstad.ppt

Original RMG explained. Some implementation details are missing, but I find it a very worthy read. Even considered coding RMG on my own in the future, glad thereā€™s someone to take the job :wink:

I canā€™t see much reason behind ā€œsimple map viewerā€, consider using this:
mapeditor.org/

And good luck!

Thanks Warmonger! Hmhm I canā€™t download the ppt file from dropbox. I receive a dropbox error 500 when clicking on the link. Any country restrictions?(donā€™t know)

What do you mean with the map editor project? Can this editor be programmed to load and render h3 maps?

I think RMG shouldnā€™t be concerned with map storage formatā€¦ just fill fields our H3M reader fills.

BTW, I doubt simple map viewer would be simple to do ā€“ there is a quite big step of randomization performed after a map is loaded but before it is displayed. You would have to make terrainRect render non-randomized maps. It uses callbacks for FoW etc. ā€“ a common piece code for client and map viewer would be a nontrivial task. Moreover, putting terrainRect into lib would make it dependent on SDL. Iā€™m not sure if it would be a good decision. After all server doesnā€™t need it. Lib is designed to handle game data/mechanics common to lib and server, not rendering of graphics. What about a new dynamically linked library instead?

Link fixed.

Looks like it. Among other things, it contains ready GUI and Json parser. Also, has ā€œQtā€ in its name :stuck_out_tongue:

If this is going to be submodule like libraries maybe you should use not h3m but our internal format directly? This will also remove some limitations that come from it. Rectangular maps were requested already after all :slight_smile:
And instead of storing generated maps you can store presets + random seed.

I remember some RMG-related info on Russian forums. Will try to find it.

Not sure if this can work as full H3 editor - objects in H3 are quite complex and from what I see this map editor is oriented towards simple set of tiles.

OK Iā€™ve created a list which steps I want to do. The main goal is to develop rapidly a functional RMG with all parts of generation(terrain, heroes, towns, ā€¦). It doesnā€™t need every feature or produce good-looking maps in the first development phases. The implemention of the RMG will be similar to the original algorithm of H3.

I want to use the internal map format of VCMI. Storing generated maps to H3M is not required for now. Iā€™ll integrate the RMG lib into vcmiclient, therefore a specific RMG generation screen/GUI(in PreGame) is needed (like in H3) => to start/test a generated map. That functionality is experimental and disabled by default. For testing purposes the generated map is fully visible when starting the game.

Thatā€™s my current todo list:

  • I want to separate map loading logic and the object representation of a map(map header,ā€¦). It simplifies/separates better the API and different map loading/saving algorithms can be supported. Mappa gets split into: CMap(the value object), CMapService(contains loading, saving, map accessing logicā€¦)
  • Have a detailed look into the internal map format. Add javadoc comments like I did for the filesystem API. Add remarks which map attributes are required/optional.
  • Add RMG screen/GUI to vcmiclient/map selection. (buttons may be disabled, donā€™t have any functionality for nowā€¦)
  • Mock map generation(with terrain, obstacles, townsā€¦). VCMI should start that map (to find out how the internal system works) This is coded in libRMG.

Future steps(i havenā€™t done much research, but algorithms which I found are similar -> fractal, voronoi polygons):

  • Simple templates in JSON
  • Terrain gen
  • Obstacles mask gen
  • Town/Monsters/Mines gen
  • Obstacles placement
    ā€¦

Interesting posts on Russian forums (ask me if you need to translate them):

Parameters of objects in RMG (max number on whole map and for each zone, cost of the objects)
forum.df2.ru/index.php?showtopic ā€¦ ntry559149

Generation of guards for objects (calculations of guards strength)
forum.df2.ru/index.php?showtopic ā€¦ ntry558697

Problems with H3 RMG:

  • zones placement: huge amount of portals, including one-way portals. Sometimes - even completely sealed off sections. Algorithm should be able to place zones without large nuber of intersections (try to make zones graph planar). May be one of the most complex part of RMG.
  • creatures placement: sometimes H3 RMG may place them incorrectly. E.g. artifact guardians may block access to nearby town.
  • huge maps generation: if zones are not big enough to cover whole map large areas of maps will be filled with blocked terrain

Similiar info about templates is posted on HC.

Iā€™d rather call it still unsolved problem and impossible to do anyway in many situations.

Thanks! That is really nice material. Iā€™ll dive into it later:)

First part of preparation is done. Map loading is separated from the map object. If there are any new bugs when loading maps, please tell me. (Iā€™ve tested several maps/campaignsā€¦)

Second part is to add the RMG ingame screen and some mock map generation for testing. I wonā€™t add a new library for the RMG, code will be placed into /lib/RMG.

I agree that it canā€™t be fixed completely - not every graph can be made planar.

But RMG places just too many teleporters too often. For example I just generated random map.
Template was 8MM0b, one level map. Connections in rmg.txt look like this:

1 -- 2 -- 3
| \  |  / |
|  \ | /  |
8 -- 9 -- 4
|  / | \  |
| /  |  \ |
7 -- 6 -- 5

This template can be generated without teleporters but nevertheless I have 4 pairs of them placed as well.

Even two-level maps with water ( = a lot of connection possibilities) suffer from this from time to time.

EDIT:
beegee, it looks that all your files use 4 spaces for indentation. Switch them to tabs for consistency with the rest of VCMI code.

I think it could be relatively easily and with good results approximated with some kind of genetic algorithm. You can consider placements as permutations.

Any progress on this? I am also interested in a new RMG.

Of course! But productivity is currently limited due to exams:( The RMG screen and the foundation to start RMG maps is done so far, if you didnā€™t know it already. Currently Iā€™m busy with creating a mock map. I thought to get this step done earlier, but terrain placement seems to be trickier than expected. Mostly you just donā€™t recognize it, but the map editor of H3 does a lot of processing here. Selecting the correct view image of the terrain type and adding implicitely terrain tiles if needed. But I got now a theory to map this in a straightforward and easy way. (patterns which indicate which terrain view to useā€¦ relatively simple rules -> complex patterns -> rolled out in .json files)
This week are the last exams, so hopefully I get some time over christmas time!

Your progress so far, Is it public already?

The map generator is disabled by default ATM. There are many things left to do. When a basic map can be played(!) this may be changed. To show current progress in-game you have to set enableRMG to true in one of those files config/settings.json(for Win) or ~/.vcmi/config/settings.json(for Linux):

"general" : {
		"music" : 0,
		"sound" : 0,
		"enableRMG" : true
},

The RMG code is commited to lib/RMG. There will be some additions to lib/Map in the next days. At this timeline youā€™ll see progress and source code changes better: sourceforge.net/apps/trac/vcmi/timeline.

There are some updates to announce:) The RMG generates now(with rev3084) a test map with one island and 1 town for every player. Current town & terrain generation has the only purpose to create a valid map. This will be changed later of course. But the rest this means player/team generation, map header(description,ā€¦) is fully functional.
There a few known bugs to mention:

  • correct terrain view handling implemented, but not activated for now(1 part is missing + testing)
  • starting the map with only 1 player currently crashes(should be fixed in a few days)

If there are any further bugs, let me know.

Good to see some progress here :slight_smile: One isuse, though:

Indeed thereā€™s no such file in my boost 1.46 folder. Is this part of new version of library?

VCMI_Lib is not compiling.

1>d:\home\krs\work\programming\vcmi\vcmi\lib\mapping\cmapeditmanager.cpp(256): warning C4018: '<' : signed/unsigned mismatch
1>d:\home\krs\work\programming\vcmi\vcmi\lib\mapping\cmapeditmanager.cpp(288): error C2440: '=' : cannot convert from 'void' to 'bool'
1>          Expressions of type void cannot be converted to other types
1>d:\home\krs\work\programming\vcmi\vcmi\lib\mapping\cmapeditmanager.cpp(294): error C2440: '=' : cannot convert from 'void' to 'bool'
1>          Expressions of type void cannot be converted to other types
1>d:\home\krs\work\programming\vcmi\vcmi\lib\mapping\cmapeditmanager.cpp(300): error C2440: '=' : cannot convert from 'void' to 'bool'
1>          Expressions of type void cannot be converted to other types
1>d:\home\krs\work\programming\vcmi\vcmi\lib\mapping\cmapeditmanager.cpp(267): error C3499: a lambda that has been specified to have a void return type cannot return a value
1>
1>Build FAILED.

Sorry for that circumstances.

The boost random library is header only and exists since boost 1.4.3 if i have looked correctly. The problem is that theyā€™ve renamed the header files sometime between boost 1.4.6 and 1.5.0. Warmonger you have three options. Either you update to boost 1.5.0+ if you want to compile it quickly. The second option would be to fix it by yourself with a macro. The third and probably most convenient option would be to wait till 20.00h(utc+1), then I will have fixed it:)

Krs it seems to be that your compiler doesnā€™t support the new function declaration syntax for automatic return type deducation or sth. like that is it called:) You have only two options. Either fix it by yourself and adding -> bool after the line 261 right near (bool rslt). The second option is to wait as said above.