X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2FUIUCModel%2Fuiuc_menu_gear.cpp;h=2d55960a909f80e5fc89bb28a205fbaef50f9814;hb=c62b0044380eb0387c447cc33660f74b02cbbce4;hp=5dbcb9ed5cfe25ae07136d6fb746d0ca2afec5b8;hpb=bd5ea959a01d3f4cfa5332b159e6a5ca4e0cdf30;p=flightgear.git diff --git a/src/FDM/UIUCModel/uiuc_menu_gear.cpp b/src/FDM/UIUCModel/uiuc_menu_gear.cpp index 5dbcb9ed5..2d55960a9 100644 --- a/src/FDM/UIUCModel/uiuc_menu_gear.cpp +++ b/src/FDM/UIUCModel/uiuc_menu_gear.cpp @@ -18,6 +18,9 @@ ---------------------------------------------------------------------- HISTORY: 04/04/2003 initial release + 06/30/2003 (RD) replaced istrstream with istringstream + to get rid of the annoying warning about + using the strstream header ---------------------------------------------------------------------- @@ -43,10 +46,10 @@ ---------------------------------------------------------------------- CALLS TO: check_float() if needed - d_2_to_3() if needed - d_1_to_2() if needed - i_1_to_2() if needed - d_1_to_1() if needed + d_2_to_3() if needed + d_1_to_2() if needed + i_1_to_2() if needed + d_1_to_1() if needed ---------------------------------------------------------------------- @@ -63,180 +66,174 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, - USA or view http://www.gnu.org/copyleft/gpl.html. + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. **********************************************************************/ #include -#if defined( __MWERKS__ ) -// -dw- optimizer chokes (big-time) trying to optimize humongous -// loop/switch statements -#pragma optimization_level 0 -#endif #include #include -#include STL_IOSTREAM +#include #include "uiuc_menu_gear.h" -SG_USING_STD(cerr); -SG_USING_STD(cout); -SG_USING_STD(endl); +using std::cerr; +using std::cout; +using std::endl; #ifndef _MSC_VER -SG_USING_STD(exit); +using std::exit; #endif void parse_gear( const string& linetoken2, const string& linetoken3, - const string& linetoken4, const string& linetoken5, - const string& linetoken6, const string& linetoken7, - const string& linetoken8, const string& linetoken9, - const string& linetoken10, const string& aircraft_directory, - LIST command_line ) { + const string& linetoken4, const string& linetoken5, + const string& linetoken6, const string& linetoken7, + const string& linetoken8, const string& linetoken9, + const string& linetoken10, const string& aircraft_directory, + LIST command_line ) { double token_value; - istrstream token3(linetoken3.c_str()); - istrstream token4(linetoken4.c_str()); - istrstream token5(linetoken5.c_str()); - istrstream token6(linetoken6.c_str()); - istrstream token7(linetoken7.c_str()); - istrstream token8(linetoken8.c_str()); - istrstream token9(linetoken9.c_str()); - istrstream token10(linetoken10.c_str()); + istringstream token3(linetoken3.c_str()); + istringstream token4(linetoken4.c_str()); + istringstream token5(linetoken5.c_str()); + istringstream token6(linetoken6.c_str()); + istringstream token7(linetoken7.c_str()); + istringstream token8(linetoken8.c_str()); + istringstream token9(linetoken9.c_str()); + istringstream token10(linetoken10.c_str()); switch(gear_map[linetoken2]) { case Dx_gear_flag: - { - int index; - token3 >> index; - if (index < 0 || index >= 16) - uiuc_warnings_errors(1, *command_line); - if (check_float(linetoken4)) - token4 >> token_value; - else - uiuc_warnings_errors(1, *command_line); - D_gear_v[index][0] = token_value; - gear_model[index] = true; - break; - } + { + int index; + token3 >> index; + if (index < 0 || index >= 16) + uiuc_warnings_errors(1, *command_line); + if (check_float(linetoken4)) + token4 >> token_value; + else + uiuc_warnings_errors(1, *command_line); + D_gear_v[index][0] = token_value; + gear_model[index] = true; + break; + } case Dy_gear_flag: - { - int index; - token3 >> index; - if (index < 0 || index >= 16) - uiuc_warnings_errors(1, *command_line); - if (check_float(linetoken4)) - token4 >> token_value; - else - uiuc_warnings_errors(1, *command_line); - D_gear_v[index][1] = token_value; - gear_model[index] = true; - break; - } + { + int index; + token3 >> index; + if (index < 0 || index >= 16) + uiuc_warnings_errors(1, *command_line); + if (check_float(linetoken4)) + token4 >> token_value; + else + uiuc_warnings_errors(1, *command_line); + D_gear_v[index][1] = token_value; + gear_model[index] = true; + break; + } case Dz_gear_flag: - { - int index; - token3 >> index; - if (index < 0 || index >= 16) - uiuc_warnings_errors(1, *command_line); - if (check_float(linetoken4)) - token4 >> token_value; - else - uiuc_warnings_errors(1, *command_line); - D_gear_v[index][2] = token_value; - gear_model[index] = true; - break; - } + { + int index; + token3 >> index; + if (index < 0 || index >= 16) + uiuc_warnings_errors(1, *command_line); + if (check_float(linetoken4)) + token4 >> token_value; + else + uiuc_warnings_errors(1, *command_line); + D_gear_v[index][2] = token_value; + gear_model[index] = true; + break; + } case cgear_flag: - { - int index; - token3 >> index; - if (index < 0 || index >= 16) - uiuc_warnings_errors(1, *command_line); - if (check_float(linetoken4)) - token4 >> token_value; - else - uiuc_warnings_errors(1, *command_line); - cgear[index] = token_value; - gear_model[index] = true; - break; - } + { + int index; + token3 >> index; + if (index < 0 || index >= 16) + uiuc_warnings_errors(1, *command_line); + if (check_float(linetoken4)) + token4 >> token_value; + else + uiuc_warnings_errors(1, *command_line); + cgear[index] = token_value; + gear_model[index] = true; + break; + } case kgear_flag: - { - int index; - token3 >> index; - if (index < 0 || index >= 16) - uiuc_warnings_errors(1, *command_line); - if (check_float(linetoken4)) - token4 >> token_value; - else - uiuc_warnings_errors(1, *command_line); - kgear[index] = token_value; - gear_model[index] = true; - break; - } + { + int index; + token3 >> index; + if (index < 0 || index >= 16) + uiuc_warnings_errors(1, *command_line); + if (check_float(linetoken4)) + token4 >> token_value; + else + uiuc_warnings_errors(1, *command_line); + kgear[index] = token_value; + gear_model[index] = true; + break; + } case muGear_flag: - { - int index; - token3 >> index; - if (index < 0 || index >= 16) - uiuc_warnings_errors(1, *command_line); - if (check_float(linetoken4)) - token4 >> token_value; - else - uiuc_warnings_errors(1, *command_line); - muGear[index] = token_value; - gear_model[index] = true; - break; - } + { + int index; + token3 >> index; + if (index < 0 || index >= 16) + uiuc_warnings_errors(1, *command_line); + if (check_float(linetoken4)) + token4 >> token_value; + else + uiuc_warnings_errors(1, *command_line); + muGear[index] = token_value; + gear_model[index] = true; + break; + } case strutLength_flag: - { - int index; - token3 >> index; - if (index < 0 || index >= 16) - uiuc_warnings_errors(1, *command_line); - if (check_float(linetoken4)) - token4 >> token_value; - else - uiuc_warnings_errors(1, *command_line); - strutLength[index] = token_value; - gear_model[index] = true; - break; - } + { + int index; + token3 >> index; + if (index < 0 || index >= 16) + uiuc_warnings_errors(1, *command_line); + if (check_float(linetoken4)) + token4 >> token_value; + else + uiuc_warnings_errors(1, *command_line); + strutLength[index] = token_value; + gear_model[index] = true; + break; + } case gear_max_flag: - { - if (check_float(linetoken3)) - token3 >> token_value; - else - uiuc_warnings_errors(1, *command_line); - - use_gear = true; - gear_max = token_value; - break; - } + { + if (check_float(linetoken3)) + token3 >> token_value; + else + uiuc_warnings_errors(1, *command_line); + + use_gear = true; + gear_max = token_value; + break; + } case gear_rate_flag: - { - if (check_float(linetoken3)) - token3 >> token_value; - else - uiuc_warnings_errors(1, *command_line); - - use_gear = true; - gear_rate = token_value; - break; - } + { + if (check_float(linetoken3)) + token3 >> token_value; + else + uiuc_warnings_errors(1, *command_line); + + use_gear = true; + gear_rate = token_value; + break; + } default: - { - if (ignore_unknown_keywords) { - // do nothing - } else { - // print error message - uiuc_warnings_errors(2, *command_line); - } - break; - } + { + if (ignore_unknown_keywords) { + // do nothing + } else { + // print error message + uiuc_warnings_errors(2, *command_line); + } + break; + } }; }