Thursday 10 March 2011

Updates to environment complexity and some AI.

Although I'm probably making life more difficult for myself than is strictly necessary, I decided I wanted to do a good job on the AI of the Scourge and make them an enemy you had to outwit as well as outgun.  Each one of them counts as its own 2D dynamics object, and applies a couple of thrusters in order to navigate around the world.  Coupled with the first implementation of the navigational node system, this produces a result something like this:

The Scourge on a circular patrol route using their basic untuned P+D controller and singularly failing to navigate around some of the new flair objects.



Although this at least validates a lot of the underlying ideas, there's still a good amount of work to do.

1) Each of the individual enemies does not interact in any way with its neighbours, meaning that although there is some impression of a swarm simply due to numbers they don't really exhibit any swarm behaviour.  I have plans to upgrade this to so that they will dynamically track those in front of them, leading to much more realistic swarming.
2) At the moment the swarms stay much too bunched up, which is a combination of the fact that they have no knowledge of/collision detection with other members of the swarm, and also because they still aim squarely for the centre of navigation nodes at the moment, rather than exploiting their full radius.

Ideally, I would like an attacking swarm to be able to peel off automatically into subswarms that will attempt to attack the player from multiple angles using a variety of tactics.  For example, against weapons with a large spread it may be better to bunch up and rush the player, whereas for weapons with a single large beam scattering and attacking individually may be superior.

Wednesday 9 March 2011

Environmental Decoration

Over the last couple of days I've been doing further work on the world editor towards a more interesting environment.  It now extends upon the brush editing capability I created for actually carving the world to allow the creation of vector graphics to add as decoration.

An example of a (slightly) decorated environment using a few simple static flair meshes.  The plan is for areas infested by the Scourge to be significantly different visually in order to warn the player.  Since this screenshot was taken from within the World Editor the transform handles for each object are overlaid.  
My current plan is to try and create a first playable demo by May, although this will almost certainly be only to a few playtesters, rather than general release.  This will probably take the form of an environment where the player must dig in at points (using some of the deployable items I have planned) and hold off waves of Scourge before progressing.  There are going to be prox mines, because I honestly can't think of a game that hasn't been improved by prox mines.  

Right, now for some sleep.