2 Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
5 This file is part of GtkRadiant.
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "debugging/debugging.h"
27 #include "gtkutil/messagebox.h"
29 #include "preferences.h"
46 For abnormal program terminations
52 FIXME the prompt wether to do prefs dialog, may not even be possible
53 if the crash happens before the game is loaded
56 void Error (const char *error, ...)
61 va_start (argptr,error);
62 vsprintf (text, error,argptr);
68 if (GetLastError() != 0)
72 FORMAT_MESSAGE_ALLOCATE_BUFFER |
73 FORMAT_MESSAGE_FROM_SYSTEM |
74 FORMAT_MESSAGE_IGNORE_INSERTS,
77 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
82 strcat( text, "GetLastError: " );
84 Gtk will only crunch 0<=char<=127
85 this is a bit hackish, but I didn't find useful functions in win32 API for this
86 http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=516
88 TCHAR *scan, *next = (TCHAR*)lpMsgBuf;
92 text[strlen(text)+1] = '\0';
93 if ((scan[0] >= 0) && (scan[0] <= 127))
94 text[strlen(text)] = char(scan[0]);
96 text[strlen(text)] = '?';
97 next = CharNext(scan);
98 } while (next != scan);
100 LocalFree( lpMsgBuf );
105 strcat( text, "errno: " );
106 strcat( text, strerror (errno));
113 // we need to have a current context to call glError()
114 if (g_glwindow_globals.d_glBase != 0)
116 // glGetError .. can record several errors, clears after calling
117 //++timo TODO: be able to deal with several errors if necessary, for now I'm just warning about pending error messages
118 // NOTE: forget that, most boards don't seem to follow the OpenGL standard
119 GLenum iGLError = glGetError();
120 if (iGLError != GL_NO_ERROR)
122 // use our own gluErrorString
123 strcat( text, "gluErrorString: " );
124 strcat( text, (char*)gluErrorString( iGLError ) );
125 strcat( text, "\n" );
130 strcat (text, "An unrecoverable error has occured.\n");
134 // force close logging if necessary