[Gcblue-commits] gcb_wx/include/database tcMissileDBObject.h, 1.25, 1.26
Status: Alpha
Brought to you by:
ddcforge
From: Dewitt C. <ddc...@us...> - 2006-09-05 01:04:26
|
Update of /cvsroot/gcblue/gcb_wx/include/database In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv24958/include/database Modified Files: tcMissileDBObject.h Log Message: Index: tcMissileDBObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/database/tcMissileDBObject.h,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** tcMissileDBObject.h 17 Aug 2006 01:27:10 -0000 1.25 --- tcMissileDBObject.h 5 Sep 2006 01:04:24 -0000 1.26 *************** *** 131,135 **** bool needsFireControl; ///< true if seeker depends on a fire control sensor for guidance std::string payloadClass; ///< payload to deploy (missile shuts down after last payload segment) ! float seekerFOV_rad; ///< for fast lookup of seeker field of view --- 131,135 ---- bool needsFireControl; ///< true if seeker depends on a fire control sensor for guidance std::string payloadClass; ///< payload to deploy (missile shuts down after last payload segment) ! int fireAndForget; ///< -1 not initialized, 0 not FF, 1 FF float seekerFOV_rad; ///< for fast lookup of seeker field of view *************** *** 140,147 **** virtual const char* GetClassName() {return "Missile";} ///< returns class name of database object bool IsLeaf() const; ///< returns true if db obj is a leaf obj ! teWeaponLaunchMode GetLaunchMode(); long GetSensorKey(); float GetSeekerFOV(); ///< @returns FOV in radians bool HasAllEmitters(std::vector<long>& emitters); bool NeedsFireControl() const; virtual void PrintToFile(tcFile& file); --- 140,148 ---- virtual const char* GetClassName() {return "Missile";} ///< returns class name of database object bool IsLeaf() const; ///< returns true if db obj is a leaf obj ! teWeaponLaunchMode GetLaunchMode() const; long GetSensorKey(); float GetSeekerFOV(); ///< @returns FOV in radians bool HasAllEmitters(std::vector<long>& emitters); + bool IsFireAndForget(); bool NeedsFireControl() const; virtual void PrintToFile(tcFile& file); |