=== This page explains the zones generation algorithem in my rmg === ---- In my rmg zones are generated in similar way to the homm3 algorithem , It uses something called voronoi diagram , At first stage a constant number of points are set randomly and divide the map area : {{http://img216.imageshack.us/img216/8784/zonesdemo1tz2.jpg?600x400}} Pic Sample From that starting point an algorithem that tries to put adjacent zones (based on connection definition) closer to each other and the 2 starting zones as far away as possible from each other. Basically it picks the 2 farest zones and tries to fit them into the zone size ,If the zone is bigger then the zone size spacified in the template it needs to be shrinked ,there for another point will be added , spliting the zone , if its small then it adds a random adjacent zone . {{http://img361.imageshack.us/img361/2961/zonesdemo1xh1.jpg?600x400}} Pic Sample the next step adding a new point : {{http://img361.imageshack.us/img361/9117/zonesdemo2oj3.jpg?600x400}} Pic Sample After this proccess is completed for all zones the final shape is achieved and map making proccess continues..