Posts Tagged ‘Blood Soaked Deadly Dungeons of Doom!’

A good weekend’s worth of progress.

Tuesday, February 10th, 2009

ss0Made a pretty hefty chunk of progress over the weekend and last two nights.

Some behind the scenes work with putting everything in the level controlled by a manager object that keeps track of what’s going on and what to spawn next.

 

 

 

 

 

ss1

Off the top of my head:

  • WSAD controls work.
  • Money powerup (yellow dots)
  • Magic powerup (blue Sigils)
  • monsters drop money and score interfaces.
  • New guis
  • Basic fundamentals of waves are in place. 
  • Object thresholds are in place so (in theory) it shouldnt crash due to too many simultanious spawns.

 

As always this is an alpha build, play with it at yer own risk.

 Graphics are primarily placeholders.. No there isn’t any sound yet. 

You can download it here www.swiftthought.com/BSDDoD/BSDD0D-alpha002.zip (3.94mb)

Feedback always appreciated.

Mapmaking tools

Monday, February 23rd, 2009

Ok so pretty good weekend.  I decided to have the main game dungeon created from larger macro tiles. so instead of having to come up with a super complex dungeon generator, all I’ll need to do is to have an algorithem that just connects the larger tiles together.  

So Friday and Saturday morning I sat down and wrote this

It’s essentially a tile based map editor.  It doesn’t have any real fun features such as checking the validity of the map or verifying that the only open tiles on the outer edge are by the designated exit area.  

Spent some time Sunday getting the data exported from the page into the Torque Game Builder engine, which wasn’t hard at all.  So the game now can render macro tiles.  Problem is that the collisions don’t seem to be working properly.. so that’s the next task.

Further Mapmaking Tools and Integration

Thursday, February 26th, 2009

Got some good progress done.  The online Map editor is coming along nicely with some new additions such as, saving to a database, generating exportable content files for integration into Torque.  Still I need to do a couple things to it, mainly bulletproofing the submitted maps to make sure I don’t forget to add doors, things are sealed properly etc etc. 

(more…)

Short update

Thursday, March 5th, 2009

Its been a bit of a slog to make much progress.  Tons of little ‘try this.. er.. hmm well how about that.. ooh that broke it… humm well then how about ….’

BUT the upside. 

The player now triggers doors when he/she walks across em. (yes the collision polygons need some tweaking but basically it works). This causes a recusive floodfill to determine all the tiles that are available inside the room.  There was an issue where it caused the game to stutter while the fill ran but with the use of some scheduling calls I actually wound up with a smooth and more even area determination.  

So.. why does that make me happy?  

Well, glad I asked.

So now I have a nice and easy way to get all the available tiles in a room, with just some minor tweaks the monster spawner (in the inital Alpha) will be able to find an open spot and start spawning critters.

Esentially  I’m just a few minor tweaks from having a playable core base to work off of.   

Then I can start going crazy with different monsters, powerups etc etc.