doom3-gpl
Doom 3 GPL source release
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
edit_stub.cpp
Go to the documentation of this file.
1 /*
2 ===========================================================================
3 
4 Doom 3 GPL Source Code
5 Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
6 
7 This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
8 
9 Doom 3 Source Code is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
13 
14 Doom 3 Source Code is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18 
19 You should have received a copy of the GNU General Public License
20 along with Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
21 
22 In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
23 
24 If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
25 
26 ===========================================================================
27 */
28 
29 #include "../idlib/precompiled.h"
30 #pragma hdrstop
31 
32 void RadiantInit( void ) { common->Printf( "The level editor Radiant only runs on Win32\n" ); }
33 void RadiantShutdown( void ) {}
34 void RadiantRun( void ) {}
35 void RadiantPrint( const char *text ) {}
36 void RadiantSync( const char *mapName, const idVec3 &viewOrg, const idAngles &viewAngles ) {}
37 
38 void LightEditorInit( const idDict *spawnArgs ) { common->Printf( "The Light Editor only runs on Win32\n" ); }
39 void LightEditorShutdown( void ) {}
40 void LightEditorRun( void ) {}
41 
42 void SoundEditorInit( const idDict *spawnArgs ) { common->Printf( "The Sound Editor only runs on Win32\n" ); }
43 void SoundEditorShutdown( void ) {}
44 void SoundEditorRun( void ) {}
45 
46 void AFEditorInit( const idDict *spawnArgs ) { common->Printf( "The Articulated Figure Editor only runs on Win32\n" ); }
47 void AFEditorShutdown( void ) {}
48 void AFEditorRun( void ) {}
49 
50 void ParticleEditorInit( const idDict *spawnArgs ) { common->Printf( "The Particle Editor only runs on Win32\n" ); }
51 void ParticleEditorShutdown( void ) {}
52 void ParticleEditorRun( void ) {}
53 
54 void ScriptEditorInit( const idDict *spawnArgs ) { common->Printf( "The Script Editor only runs on Win32\n" ); }
55 void ScriptEditorShutdown( void ) {}
56 void ScriptEditorRun( void ) {}
57 
58 void DeclBrowserInit( const idDict *spawnArgs ) { common->Printf( "The Declaration Browser only runs on Win32\n" ); }
59 void DeclBrowserShutdown( void ) {}
60 void DeclBrowserRun( void ) {}
62 
63 void GUIEditorInit( void ) { common->Printf( "The GUI Editor only runs on Win32\n" ); }
64 void GUIEditorShutdown( void ) {}
65 void GUIEditorRun( void ) {}
66 bool GUIEditorHandleMessage( void *msg ) { return false; }
67 
68 void DebuggerClientLaunch( void ) {}
69 void DebuggerClientInit( const char *cmdline ) { common->Printf( "The Script Debugger Client only runs on Win32\n" ); }
70 bool DebuggerServerInit( void ) { return false; }
71 void DebuggerServerShutdown( void ) {}
72 void DebuggerServerPrint( const char *text ) {}
74 
75 void PDAEditorInit( const idDict *spawnArgs ) { common->Printf( "The PDA editor only runs on Win32\n" ); }
76 
77 void MaterialEditorInit() { common->Printf( "The Material editor only runs on Win32\n" ); }
78 void MaterialEditorPrintConsole( const char *text ) {}
void AFEditorInit(const idDict *spawnArgs)
Definition: edit_stub.cpp:46
void ScriptEditorRun(void)
Definition: edit_stub.cpp:56
void DebuggerClientLaunch(void)
Definition: edit_stub.cpp:68
void DeclBrowserShutdown(void)
Definition: edit_stub.cpp:59
void SoundEditorRun(void)
Definition: edit_stub.cpp:44
void DeclBrowserInit(const idDict *spawnArgs)
Definition: edit_stub.cpp:58
void DebuggerServerCheckBreakpoint(idInterpreter *interpreter, idProgram *program, int instructionPointer)
Definition: edit_stub.cpp:73
Definition: Vector.h:316
void LightEditorInit(const idDict *spawnArgs)
Definition: edit_stub.cpp:38
void GUIEditorShutdown(void)
Definition: edit_stub.cpp:64
void DebuggerServerShutdown(void)
Definition: edit_stub.cpp:71
bool DebuggerServerInit(void)
Definition: edit_stub.cpp:70
void ParticleEditorRun(void)
Definition: edit_stub.cpp:52
void GUIEditorRun(void)
Definition: edit_stub.cpp:65
void SoundEditorShutdown(void)
Definition: edit_stub.cpp:43
void RadiantSync(const char *mapName, const idVec3 &viewOrg, const idAngles &viewAngles)
Definition: edit_stub.cpp:36
void MaterialEditorPrintConsole(const char *text)
Definition: edit_stub.cpp:78
void DeclBrowserRun(void)
Definition: edit_stub.cpp:60
void ScriptEditorShutdown(void)
Definition: edit_stub.cpp:55
GLuint program
Definition: glext.h:3473
void SoundEditorInit(const idDict *spawnArgs)
Definition: edit_stub.cpp:42
void RadiantPrint(const char *text)
Definition: edit_stub.cpp:35
idCommon * common
Definition: Common.cpp:206
Definition: Dict.h:65
void ParticleEditorShutdown(void)
Definition: edit_stub.cpp:51
void LightEditorShutdown(void)
Definition: edit_stub.cpp:39
void LightEditorRun(void)
Definition: edit_stub.cpp:40
void AFEditorShutdown(void)
Definition: edit_stub.cpp:47
void DebuggerClientInit(const char *cmdline)
Definition: edit_stub.cpp:69
virtual void Printf(const char *fmt,...) id_attribute((format(printf
void RadiantRun(void)
Definition: edit_stub.cpp:34
void AFEditorRun(void)
Definition: edit_stub.cpp:48
bool GUIEditorHandleMessage(void *msg)
Definition: edit_stub.cpp:66
void DeclBrowserReloadDeclarations(void)
Definition: edit_stub.cpp:61
void PDAEditorInit(const idDict *spawnArgs)
Definition: edit_stub.cpp:75
void RadiantShutdown(void)
Definition: edit_stub.cpp:33
void GUIEditorInit(void)
Definition: edit_stub.cpp:63
void ScriptEditorInit(const idDict *spawnArgs)
Definition: edit_stub.cpp:54
void DebuggerServerPrint(const char *text)
Definition: edit_stub.cpp:72
void ParticleEditorInit(const idDict *spawnArgs)
Definition: edit_stub.cpp:50
void MaterialEditorInit()
Definition: edit_stub.cpp:77
void RadiantInit(void)
Definition: edit_stub.cpp:32