Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a game map?

I am trying to develop a strategy game and i am thinking of creating the following game maps similar to below.

alt text
(source: totaldiplomacy.com)

alt text
(source: teamteabag.com)

How do i go about doing it and what kind of software to use of books/ tutorials to follow?

Thanks

like image 304
dfd Avatar asked Nov 14 '22 10:11

dfd


1 Answers

Assuming that you can draw the graphics that you need, the rest is accomplished by defining the "territories".

A territory will have

  • a name
  • a location (just a simple position would probably suffice, one for each place where you want to draw the key bits of information)
  • a list of neighboring territories
  • any other game-relevant information, such as what units are there, what resources it provides, etc.

The "hard" bit may be generating the connectivity graph. It's probably easiest to refer to each of your territories by number, as in your second image. Then, the "list of neighboring territories" for territory 14 would be 13, 15, and 23. So don't try to do this automatically, it'll be much easier (as long as the scope doesn't grow too large) to just define this manually.

like image 67
dash-tom-bang Avatar answered Dec 14 '22 23:12

dash-tom-bang