]> icculus.org git repositories - divverent/netradiant.git/blob - radiant/error.cpp
enable the previously disabled "Sphere" patch primitive
[divverent/netradiant.git] / radiant / error.cpp
1 /*
2 Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
4
5 This file is part of GtkRadiant.
6
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.
11
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.
16
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
20 */
21
22 #include "error.h"
23
24 #include "debugging/debugging.h"
25 #include "igl.h"
26
27 #include "gtkutil/messagebox.h"
28 #include "console.h"
29 #include "preferences.h"
30
31
32 #ifdef WIN32
33 #define UNICODE
34 #include <windows.h>
35 #else
36 #include <errno.h>
37 #include <unistd.h>
38 #endif
39
40
41
42 /*
43 =================
44 Error
45
46 For abnormal program terminations
47 =================
48 */
49
50 /*!
51 \todo 
52 FIXME the prompt wether to do prefs dialog, may not even be possible 
53 if the crash happens before the game is loaded
54 */
55
56 void Error (const char *error, ...)
57 {
58   va_list argptr;
59   char  text[4096];
60
61   va_start (argptr,error);
62   vsprintf (text, error,argptr);
63   va_end (argptr);
64
65   strcat( text, "\n" );
66
67 #ifdef WIN32
68   if (GetLastError() != 0)
69   {
70     LPVOID lpMsgBuf;
71     FormatMessage( 
72       FORMAT_MESSAGE_ALLOCATE_BUFFER | 
73       FORMAT_MESSAGE_FROM_SYSTEM | 
74       FORMAT_MESSAGE_IGNORE_INSERTS,
75       0,
76       GetLastError(),
77       MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
78       (LPTSTR) &lpMsgBuf,
79       0,
80       0 
81       );
82     strcat( text, "GetLastError: " );
83     /*
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
87     */
88     TCHAR *scan, *next = (TCHAR*)lpMsgBuf;
89     do
90     {
91       scan = next;
92       text[strlen(text)+1] = '\0';
93       if ((scan[0] >= 0) && (scan[0] <= 127))
94         text[strlen(text)] = char(scan[0]);
95       else
96         text[strlen(text)] = '?';
97       next = CharNext(scan);
98     } while (next != scan);
99     strcat( text, "\n");
100     LocalFree( lpMsgBuf );
101   }
102 #else
103   if (errno != 0)
104   {
105     strcat( text, "errno: " );
106     strcat( text, strerror (errno));
107     strcat( text, "\n");
108   }
109 #endif
110
111
112 #if 0
113   // we need to have a current context to call glError()
114   if (g_glwindow_globals.d_glBase != 0)
115   {
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)
121     {
122       // use our own gluErrorString
123       strcat( text, "gluErrorString: " );
124       strcat( text, (char*)gluErrorString( iGLError ) );
125       strcat( text, "\n" );
126     }
127   }
128 #endif
129
130   strcat (text, "An unrecoverable error has occured.\n");
131
132   ERROR_MESSAGE(text);
133
134   // force close logging if necessary
135         Sys_LogFile(false);
136
137   _exit (1);
138 }