Posts Tagged ‘game development’

Server move

Thursday, September 4th, 2008

Well things are now settling down here on our new server. 

Got a handful of old and new domains consolidated across the board and some nre goodies lined up.

Most notably would be the start of development on the dream wars.  Got a good start on the dsesign spec and some of the data modeling up and running.  It’s an ooold idea I had a long time ago but with the new png support that’s universal plus a bunch of new nifty ajaxy2.0buzzwordladen tools at my disposal it actually might be doable now.  The biggest concern is how browsers support 3-400 pngs with 8bit transparency.  I hope pereformance doesnt just suck. 

anyway.. more layout changes and general tweaking still needs to be done all over the place.  But it’s a beginning.

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.