Advertisement

Writing AI from scratch for Doom 3

Started by May 21, 2015 04:31 PM
2 comments, last by moeen k 9 years, 5 months ago

I am looking into writing AI from scratch for Doom 3 mod (AI scripts), but I am not really sure where to start. I just want to start small, basically just have spawned AI to idle and look at player (turn toward) when player is inside a certain radius around AI.

I am not sure if anyone here ever modded Doom 3, but I figured it worth asking smile.png Thanks.

Web: http://www.kot-in-action.com
IRC: irc.freenode.org #steelstorm

1) Do you know how to get the location of an object in Doom 3?

2) Do you know how to measure distance between objects in Doom 3?

3) Do you know how to change the facing of an object in Doom 3?

If you answered yes to those questions, then you can write the AI you posted on your own. If you do not know how to do those things, this isn't an AI question and is more of a Doom 3 code question.

Dave Mark - President and Lead Designer of Intrinsic Algorithm LLC
Professional consultant on game AI, mathematical modeling, simulation modeling
Co-founder and 10 year advisor of the GDC AI Summit
Author of the book, Behavioral Mathematics for Game AI
Blogs I write:
IA News - What's happening at IA | IA on AI - AI news and notes | Post-Play'em - Observations on AI of games I play

"Reducing the world to mathematical equations!"

Advertisement

I know all of those things. Except that there is a special structure to script, etc. Plus if I delve into AI dev, I wouldn't be able to work on art (I do art primarily, and some gameplay scripting; sometimes I poke at C++ code; so do more programming would generally means zero progress on assets :( )

Web: http://www.kot-in-action.com
IRC: irc.freenode.org #steelstorm

well. scripting for doom3 is very specefic for forum like gamedev and i think its hard to find an answer for that. instead best place for finding you answer is id dev net website :

http://www.iddevnet.com/doom3/script.php

but in general when you want to generalize AI for a character first of all you have to make an state machine for it. states are like IDLE SEARCHING ATTACKING and ... in each of these states AI BOT behave different and in conditions like player is in distance less than certain value go to state attack form idle and... there are alot in internet about that. first of all i think you have to learn about game it concepts and after that start special script like doom3.

This topic is closed to new replies.

Advertisement