[Gcblue-commits] gcb_wx/include/database CsvTranslator.h,1.4,1.5 tcAirDBObject.h,1.9,1.10 tcLauncher
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-05-21 02:00:35
|
Update of /cvsroot/gcblue/gcb_wx/include/database In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19557/include/database Modified Files: CsvTranslator.h tcAirDBObject.h tcLauncherDBObject.h Log Message: Mods to allow aircraft to load / unload with airbase stores, simplified flight model Index: tcLauncherDBObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/database/tcLauncherDBObject.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** tcLauncherDBObject.h 1 Feb 2005 02:28:08 -0000 1.11 --- tcLauncherDBObject.h 21 May 2005 02:00:27 -0000 1.12 *************** *** 45,52 **** bool isAutoPoint; ///< true to always point launcher toward target tcDBString mzChildClass; ///< class of platform to launch (simple model) ! UINT mnCapacity; ///< max number of launch objects held (simple model) tcDBString maChildClass[MAX_LAUNCHER_CONFIGURATIONS]; ///< array for multiple options ! UINT maCapacity[MAX_LAUNCHER_CONFIGURATIONS]; ///< array for mult configs ! UINT mnConfigurations; std::string fireControlSensorClass; ///< class of sensor on platform for fire control ///< (track required to launch) --- 45,52 ---- bool isAutoPoint; ///< true to always point launcher toward target tcDBString mzChildClass; ///< class of platform to launch (simple model) ! unsigned short mnCapacity; ///< max number of launch objects held (simple model) tcDBString maChildClass[MAX_LAUNCHER_CONFIGURATIONS]; ///< array for multiple options ! unsigned short maCapacity[MAX_LAUNCHER_CONFIGURATIONS]; ///< array for mult configs ! unsigned short mnConfigurations; std::string fireControlSensorClass; ///< class of sensor on platform for fire control ///< (track required to launch) Index: CsvTranslator.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/database/CsvTranslator.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** CsvTranslator.h 8 Aug 2004 00:31:32 -0000 1.4 --- CsvTranslator.h 21 May 2005 02:00:26 -0000 1.5 *************** *** 61,65 **** --- 61,67 ---- CsvTranslator& operator>>(double& val); CsvTranslator& operator>>(int& val); + CsvTranslator& operator>>(short& val); CsvTranslator& operator>>(unsigned int& val); + CsvTranslator& operator>>(unsigned short& val); CsvTranslator& operator>>(long& val); CsvTranslator& operator>>(std::string& s); Index: tcAirDBObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/database/tcAirDBObject.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** tcAirDBObject.h 29 Nov 2004 03:54:48 -0000 1.9 --- tcAirDBObject.h 21 May 2005 02:00:27 -0000 1.10 *************** *** 61,66 **** float mfMsupm; ///< supersonic mach number float mfKdi; ///< constant for simplified induced drag model ! float mfMaxAoa_rad; ///< max angle of attack [rad] ! float mfMaxCl; ///< max lift coefficient float mfGmax; ///< max Gs --- 61,65 ---- float mfMsupm; ///< supersonic mach number float mfKdi; ///< constant for simplified induced drag model ! float stallSpeed_mps; ///< [m/s] stall speed at sea level float mfGmax; ///< max Gs |