1
0
Fork 0

Add a function to allow transmission of messages to AI entities - the actual implementation is a bit of a temporary hack at the moment

This commit is contained in:
daveluff 2003-03-20 11:53:44 +00:00
parent 6fef4d457b
commit 254dc934d1
2 changed files with 7 additions and 8 deletions

View file

@ -46,6 +46,9 @@ FGAIEntity::~FGAIEntity() {
void FGAIEntity::Update(double dt) {
}
void FGAIEntity::RegisterTransmission(int code) {
}
// Run the internal calculations
//void FGAIEntity::Update() {
void FGAIEntity::Transform() {

View file

@ -18,14 +18,6 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
/*****************************************************************
*
* WARNING - Curt has some ideas about AI traffic so anything in here
* may get rewritten or scrapped. Contact Curt curt@flightgear.org
* before spending any time or effort on this code!!!
*
******************************************************************/
#ifndef _FG_AIEntity_HXX
#define _FG_AIEntity_HXX
@ -51,6 +43,10 @@ public:
// Run the internal calculations
virtual void Update(double dt);
// Send a transmission *TO* the AIEntity.
// FIXME int code is a hack - eventually this will receive Alexander's coded messages.
virtual void RegisterTransmission(int code);
protected: