Hey,
My game is going to be a doom clone. I got dared. I cannot resist a dare. Its a bit ambitious, but nowhere near as ambitious as my previous attempts, both of which were RTS games and unsurprisingly failed. I am determined that one day I will do a proper RTS though…
Anyway, my starting framework is XNA with some windows specific hacks I worked out, and a game state system. I also made a crude tiled file loader, but didn’t really test it with any kind of renderer, only inspected its results in the debugger. It seems to work.
http://dl.dropbox.com/u/7274197/LudumDare21StartingFramework.zip
There are two application projects. The first is code I ripped out of a real game, i wrote it for testing content pipeline extensions. Ive done this so I can stick breakpoints directly in the code and not worry about how VS insists on using msbuild on my content extensions. If you run it in the debugger you can put breakpoints in and test that the tiled map file is loaded correctly.
The other is a blank screen. Warning: it captures the mouse. This is because I plan to do a 3d FPS and capturing the mouse is necessary in this situation.
[edit]
I forgot to say what stuff I was using 😛 So yeah, here is a list:
XNA for everything code side
My own tmx map loader which I just wrote in the last few hours
tiled for building the worlds
paint.net for doing graphics
sfxr and audacity for sound stuff
VS 2010 express IDE
BEPU Physics engine for the vehicle sequences. Only joking. No vehicle sequences. That would probably suck, but i do need it for ray casting (shooting) and for the collision and stuff.
SVN, hosted on unfuddle, for backup (yes, source control is useful)
XACT for formatting the sound so XNA can use it.