browner10 2002/06/14 07:51:14 PDT Added files: src/AI action.h aimanager.h ainode.h aisystem.h behavior.h behaviormachine.h eventreact.h instinct.h midworld.dep midworld.dsp midworld.dsw midworld.ncb midworld.opt midworld.plg test.cpp unit.h Log: Here is the *VERY* initial framework of the AI system it is being developed standalone and can be compiled on windows using the supplied project files. The file test.cpp is where I am running test from. There is beucoup (that's very much in french) documentation in it, but I don't know docbook commenting style so it may need modifying. by the end of the weekend I should be able to demonstrate randomely moving objects. In the meantime, midworld won't be set up to compile in the AI module but if someone wants to add it compile capabilities go right ahead. Right now there isn't in most of these files but I wanted to get them up so that it would motivate me to really get after it. I didn't put them in the namespace mw yet, but I'll add that in when I commit my next round of changes. Also there are probably ^M at the end of all the files since they came from windows but I haven't checked so I don't know. Revision Changes Path 1.1 +10 -0 midworld/src/AI/action.h (new) 1.1 +12 -0 midworld/src/AI/aimanager.h (new) 1.1 +98 -0 midworld/src/AI/ainode.h (new) 1.1 +45 -0 midworld/src/AI/aisystem.h (new) 1.1 +12 -0 midworld/src/AI/behavior.h (new) 1.1 +14 -0 midworld/src/AI/behaviormachine.h (new) 1.1 +26 -0 midworld/src/AI/eventreact.h (new) 1.1 +44 -0 midworld/src/AI/instinct.h (new) 1.1 +7 -0 midworld/src/AI/midworld.dep (new) 1.1 +136 -0 midworld/src/AI/midworld.dsp (new) 1.1 +29 -0 midworld/src/AI/midworld.dsw (new) 1.1 +93 -0 midworld/src/AI/midworld.ncb (new) 1.1 +385 -0 midworld/src/AI/midworld.opt (new) 1.1 +32 -0 midworld/src/AI/midworld.plg (new) 1.1 +31 -0 midworld/src/AI/test.cpp (new) 1.1 +21 -0 midworld/src/AI/unit.h (new) http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/action.h?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/aimanager.h?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/ainode.h?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/aisystem.h?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/behavior.h?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/behaviormachine.h?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/eventreact.h?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/instinct.h?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/midworld.dep?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/midworld.dsp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/midworld.dsw?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/midworld.ncb?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/midworld.opt?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/midworld.plg?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/test.cpp?rev=1.1&content-type=text/plain http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/midworld/src/AI/unit.h?rev=1.1&content-type=text/plain |