/********************************************************************** FILENAME: uiuc_menu_misc.cpp ---------------------------------------------------------------------- DESCRIPTION: reads input data for specified aircraft and creates approporiate data storage space ---------------------------------------------------------------------- STATUS: alpha version ---------------------------------------------------------------------- REFERENCES: based on "menu reader" format of Michael Selig ---------------------------------------------------------------------- HISTORY: 04/04/2003 initial release ---------------------------------------------------------------------- AUTHOR(S): Robert Deters Michael Selig ---------------------------------------------------------------------- VARIABLES: ---------------------------------------------------------------------- INPUTS: n/a ---------------------------------------------------------------------- OUTPUTS: n/a ---------------------------------------------------------------------- CALLED BY: uiuc_menu() ---------------------------------------------------------------------- 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 ---------------------------------------------------------------------- COPYRIGHT: (C) 2003 by Michael Selig This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 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. **********************************************************************/ #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 "uiuc_menu_misc.h" SG_USING_STD(cerr); SG_USING_STD(cout); SG_USING_STD(endl); #ifndef _MSC_VER SG_USING_STD(exit); #endif void parse_misc( 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 ) { 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()); switch(misc_map[linetoken2]) { case simpleHingeMomentCoef_flag: { if (check_float(linetoken3)) token3 >> token_value; else uiuc_warnings_errors(1, *command_line); simpleHingeMomentCoef = token_value; break; } case dfTimefdf_flag: { dfTimefdf = linetoken3; /* call 1D File Reader with file name (dfTimefdf); function returns array of dfs (dfArray) and corresponding time values (TimeArray) and max number of terms in arrays (ndf) */ uiuc_1DdataFileReader(dfTimefdf, dfTimefdf_dfArray, dfTimefdf_TimeArray, dfTimefdf_ndf); break; } case flapper_flag: { string flap_file; flap_file = aircraft_directory + "flap.dat"; flapper_model = true; flapper_data = new FlapData(flap_file.c_str()); break; } case flapper_phi_init_flag: { if (check_float(linetoken3)) token3 >> token_value; else uiuc_warnings_errors(1, *command_line); flapper_phi_init = token_value*DEG_TO_RAD; break; } default: { if (ignore_unknown_keywords) { // do nothing } else { // print error message uiuc_warnings_errors(2, *command_line); } break; } }; }