1
0
Fork 0
flightgear/src/FDM/UIUCModel/uiuc_warnings_errors.cpp

106 lines
3 KiB
C++
Raw Normal View History

/**********************************************************************
FILENAME: uiuc_warnings_errors.cpp
----------------------------------------------------------------------
DESCRIPTION:
Prints to screen the follow:
- Error Code (errorCode)
- Message indicating the problem. This message should be preceded by
"Warning", "Error" or "Note". Warnings are non-fatal and the code
will pause. Errors are fatal and will stop the code. Notes are only
for information.
----------------------------------------------------------------------
STATUS: alpha version
----------------------------------------------------------------------
REFERENCES: based on "menu reader" format of Michael Selig
----------------------------------------------------------------------
HISTORY: 01/29/2000 initial release
----------------------------------------------------------------------
AUTHOR(S): Bipin Sehgal <bsehgal@uiuc.edu>
Jeff Scott <jscott@mail.com>
Michael Selig <m-selig@uiuc.edu>
----------------------------------------------------------------------
VARIABLES:
----------------------------------------------------------------------
INPUTS: -error code
-input line
----------------------------------------------------------------------
OUTPUTS: -warning/error message to screen
----------------------------------------------------------------------
CALLED BY: uiuc_menu.cpp
----------------------------------------------------------------------
CALLS TO: none
----------------------------------------------------------------------
COPYRIGHT: (C) 2000 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 <stdlib.h>
#include "uiuc_warnings_errors.h"
2001-04-13 21:00:07 +00:00
#if !defined (SG_HAVE_NATIVE_SGI_COMPILERS)
2001-03-23 22:59:18 +00:00
SG_USING_STD (cerr);
SG_USING_STD (endl);
2001-01-11 04:54:33 +00:00
2001-04-13 21:00:07 +00:00
# ifndef _MSC_VER
2001-03-23 22:59:18 +00:00
SG_USING_STD (exit);
2001-04-13 21:00:07 +00:00
# endif
2001-01-11 04:54:33 +00:00
#endif
void uiuc_warnings_errors(int errorCode, string line)
{
switch (errorCode)
{
case 1:
cerr << "UIUC ERROR: The value of the coefficient in \"" << line << "\" should be of type float" << endl;
exit(-1);
break;
case 2:
cerr << "UIUC ERROR: Unknown identifier in \"" << line << "\"" << endl;
exit(-1);
break;
}
}
// end uiuc_warnings_errors.cpp