[Gcblue-commits] gcb_wx/include/scriptinterface tcPlatformInterface.h,1.43,1.44 tcScenarioInterface.
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-07-26 00:37:50
|
Update of /cvsroot/gcblue/gcb_wx/include/scriptinterface In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13788/include/scriptinterface Modified Files: tcPlatformInterface.h tcScenarioInterface.h Log Message: Added mission goal status to "Mission" channel (hit F7), added sub periscope and mast ops to multiplayer, changed torpedo behavior to resume s-search if track lost early, made afterburner smoke thin a little more uniformly Index: tcPlatformInterface.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/scriptinterface/tcPlatformInterface.h,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** tcPlatformInterface.h 2 Jul 2005 16:51:08 -0000 1.43 --- tcPlatformInterface.h 26 Jul 2005 00:37:03 -0000 1.44 *************** *** 149,155 **** void SetThrottle(float throttleFraction); /// sets heading in degrees ! void SetHeading(float heading_deg) {mpPlatformObj->SetHeading(C_PIOVER180*heading_deg);} /// sets heading in radians ! void SetHeadingRad(float heading_rad) {mpPlatformObj->SetHeading(heading_rad);} /// get heading to (lon,lat) datum in degrees float GetHeadingToDatum(float afLon_rad, float afLat_rad); --- 149,155 ---- void SetThrottle(float throttleFraction); /// sets heading in degrees ! void SetHeading(float heading_deg); /// sets heading in radians ! void SetHeadingRad(float heading_rad); /// get heading to (lon,lat) datum in degrees float GetHeadingToDatum(float afLon_rad, float afLat_rad); Index: tcScenarioInterface.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/scriptinterface/tcScenarioInterface.h,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** tcScenarioInterface.h 2 Jul 2005 16:51:09 -0000 1.21 --- tcScenarioInterface.h 26 Jul 2005 00:37:03 -0000 1.22 *************** *** 154,158 **** tcCompoundGoal CompoundGoal(int type); tcTimeGoal TimeGoal(); ! tcDestroyGoal DestroyGoal(std::string target); // non-python methods --- 154,159 ---- tcCompoundGoal CompoundGoal(int type); tcTimeGoal TimeGoal(); ! tcDestroyGoal DestroyGoal(const std::string& target); ! tcProtectGoal ProtectGoal(const std::string& target); // non-python methods |