/**********************************************************************
                                                                       
 FILENAME:     uiuc_menu_fog.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
               06/30/2003   (RD) replaced istrstream with istringstream
                            to get rid of the annoying warning about
                            using the strstream header

----------------------------------------------------------------------

 AUTHOR(S):    Robert Deters      <rdeters@uiuc.edu>
               Michael Selig      <m-selig@uiuc.edu>

----------------------------------------------------------------------

 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

**********************************************************************/

#include <simgear/compiler.h>

#if defined( __MWERKS__ )
// -dw- optimizer chokes (big-time) trying to optimize humongous
// loop/switch statements
#pragma optimization_level 0
#endif

#include <cstdlib>
#include <string>
#include STL_IOSTREAM

#include "uiuc_menu_fog.h"

SG_USING_STD(cerr);
SG_USING_STD(cout);
SG_USING_STD(endl);

#ifndef _MSC_VER
SG_USING_STD(exit);
#endif

void parse_fog( 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;
  int token_value_convert1;
  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(fog_map[linetoken2])
      {
      case fog_segments_flag:
	{
	  if (check_float(linetoken3))
	    token3 >> token_value_convert1;
	  else
	    uiuc_warnings_errors(1, *command_line);
	  
	  if (token_value_convert1 < 1 || token_value_convert1 > 100)
	    uiuc_warnings_errors(1, *command_line);
	  
	  fog_field = true;
	  fog_point_index = 0;
	  delete[] fog_time;
	  delete[] fog_value;
	  fog_segments = token_value_convert1;
	  fog_time = new double[fog_segments+1];
	  fog_time[0] = 0.0;
	  fog_value = new int[fog_segments+1];
	  fog_value[0] = 0;
	  
	  break;
	}
      case fog_point_flag:
	{
	  if (check_float(linetoken3))
	    token3 >> token_value;
	  else
	    uiuc_warnings_errors(1, *command_line);
	  
	  if (token_value < 0.1)
	    uiuc_warnings_errors(1, *command_line);
	  
	  if (check_float(linetoken4))
	    token4 >> token_value_convert1;
	  else
	    uiuc_warnings_errors(1, *command_line);
	  
	  if (token_value_convert1 < -1000 || token_value_convert1 > 1000)
	    uiuc_warnings_errors(1, *command_line);
	  
	  if (fog_point_index == fog_segments || fog_point_index == -1)
	    uiuc_warnings_errors(1, *command_line);
	  
	  fog_point_index++;
	  fog_time[fog_point_index] = token_value;
	  fog_value[fog_point_index] = token_value_convert1;
	  
	  break;
	}
      default:
	{
	  if (ignore_unknown_keywords) {
	    // do nothing
	  } else {
	    // print error message
	    uiuc_warnings_errors(2, *command_line);
	  }
	  break;
	}
      };
}