Tagged Questions
0
votes
2answers
266 views
map data structure in pacman
i am trying to make a pacman game in c# using GDI+, i have done some basic work and i have previously replicated games like copter-it and minesweeper. but i am confused about how do i implement the ...
1
vote
2answers
245 views
Best practice for designing a risk-style board game
I'm just trying to figure out how to set up the code for a game like risk...
I would like it to be extensible, so that I can have multiple maps (ie- World, North America, Eurasia, Africa) so ...
5
votes
2answers
629 views
Custom extensible file format for 2d tiled maps
I have implemented much of my game logic right now, but still create my maps with nasty for-loops on-the-fly to be able to work with something. Now I wanted to move on and to do some research on how ...
5
votes
5answers
3k views
Alternative to 2D array in a tiled-map structure
After searching for a long time, I'm surprised this question was not asked yet. In a 2D, tiled-map game, how do you handle the map ? I'd be glad to have your point of view in any languages, though I'm ...