Wednesday, October 21, 2009

Quake Live and Quake Arena source code

Played a bit of Quake III: Arena yesterday to get a feel for how the existing AI works and how believable it is. There were a couple of things I noticed about the bots.
  • They seem to move pretty fluidly thorough out the map, but it appears to be random and after a while the movement behavior becomes rather obvious. I may need to look at an adaptive strategy.
  • When spectating, when the bots are aiming at another player it seems as if they're picking random points in the players general direction to shoot at and pointing at those points instantly. The motion doesn't look fluid, and it looks as if they're jumping from point to point. A possible solution to that wold be to SLERP from the points at which they are currently aiming at to the point at which they want to aim at so it looks less obvious.

I also played some Quake Live to observe the behavior of human players who play. The main thing I noticed was that players don't seem to chat that much on the game servers. Also, there were a couple of times where myself and one other particular player would return to the same point and try and battle it out for the same camping spot, which sparked that player engaging in conversation. I may need to look at how exactly to go about provoking conversation like this.

I had a look at the documentation for the existing AI and it seems pretty good. I should get around to building a base AI entity to start work on soon enough.

No comments:

Post a Comment