]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - tools/quake3/q3map2/main.c
q3map2: make Smokin'Guns code not requiring a rebuild
[xonotic/netradiant.git] / tools / quake3 / q3map2 / main.c
1 /* -------------------------------------------------------------------------------
2
3    Copyright (C) 1999-2007 id Software, Inc. and contributors.
4    For a list of contributors, see the accompanying CONTRIBUTORS file.
5
6    This file is part of GtkRadiant.
7
8    GtkRadiant is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    GtkRadiant is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with GtkRadiant; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21
22    -------------------------------------------------------------------------------
23
24    This code has been altered significantly from its original form, to support
25    several games based on the Quake III Arena engine, in the form of "Q3Map2."
26
27    ------------------------------------------------------------------------------- */
28
29
30
31 /* marker */
32 #define MAIN_C
33
34
35
36 /* dependencies */
37 #include "q3map2.h"
38 #include <glib.h>
39
40 /*
41    Random()
42    returns a pseudorandom number between 0 and 1
43  */
44
45 vec_t Random( void ){
46         return (vec_t) rand() / RAND_MAX;
47 }
48
49
50 char *Q_strncpyz( char *dst, const char *src, size_t len ) {
51         if ( len == 0 ) {
52                 abort();
53         }
54
55         strncpy( dst, src, len );
56         dst[ len - 1 ] = '\0';
57         return dst;
58 }
59
60
61 char *Q_strcat( char *dst, size_t dlen, const char *src ) {
62         size_t n = strlen( dst  );
63
64         if ( n > dlen ) {
65                 abort(); /* buffer overflow */
66         }
67
68         return Q_strncpyz( dst + n, src, dlen - n );
69 }
70
71
72 char *Q_strncat( char *dst, size_t dlen, const char *src, size_t slen ) {
73         size_t n = strlen( dst );
74
75         if ( n > dlen ) {
76                 abort(); /* buffer overflow */
77         }
78
79         return Q_strncpyz( dst + n, src, MIN( slen, dlen - n ) );
80 }
81
82
83 /*
84    ExitQ3Map()
85    cleanup routine
86  */
87
88 static void ExitQ3Map( void ){
89         BSPFilesCleanup();
90         if ( mapDrawSurfs != NULL ) {
91                 free( mapDrawSurfs );
92         }
93 }
94
95
96 /*
97    main()
98    q3map mojo...
99  */
100
101 int main( int argc, char **argv ){
102         int i, r;
103         double start, end;
104         extern qboolean werror;
105
106
107         /* we want consistent 'randomness' */
108         srand( 0 );
109
110         /* start timer */
111         start = I_FloatTime();
112
113         /* this was changed to emit version number over the network */
114         printf( Q3MAP_VERSION "\n" );
115
116         /* set exit call */
117         atexit( ExitQ3Map );
118
119         /* read general options first */
120         for ( i = 1; i < argc; i++ )
121         {
122                 /* -help */
123                 if ( !strcmp( argv[ i ], "-h" ) || !strcmp( argv[ i ], "--help" )
124                         || !strcmp( argv[ i ], "-help" ) ) {
125                         HelpMain(argv[i+1]);
126                         return 0;
127                 }
128
129                 /* -connect */
130                 if ( !strcmp( argv[ i ], "-connect" ) ) {
131                         argv[ i ] = NULL;
132                         i++;
133                         Broadcast_Setup( argv[ i ] );
134                         argv[ i ] = NULL;
135                 }
136
137                 /* verbose */
138                 else if ( !strcmp( argv[ i ], "-v" ) ) {
139                         if ( !verbose ) {
140                                 verbose = qtrue;
141                                 argv[ i ] = NULL;
142                         }
143                 }
144
145                 /* force */
146                 else if ( !strcmp( argv[ i ], "-force" ) ) {
147                         force = qtrue;
148                         argv[ i ] = NULL;
149                 }
150
151                 /* make all warnings into errors */
152                 else if ( !strcmp( argv[ i ], "-werror" ) ) {
153                         werror = qtrue;
154                         argv[ i ] = NULL;
155                 }
156
157                 /* patch subdivisions */
158                 else if ( !strcmp( argv[ i ], "-subdivisions" ) ) {
159                         argv[ i ] = NULL;
160                         i++;
161                         patchSubdivisions = atoi( argv[ i ] );
162                         argv[ i ] = NULL;
163                         if ( patchSubdivisions <= 0 ) {
164                                 patchSubdivisions = 1;
165                         }
166                 }
167
168                 /* threads */
169                 else if ( !strcmp( argv[ i ], "-threads" ) ) {
170                         argv[ i ] = NULL;
171                         i++;
172                         numthreads = atoi( argv[ i ] );
173                         argv[ i ] = NULL;
174                 }
175         }
176
177         /* init model library */
178         PicoInit();
179         PicoSetMallocFunc( safe_malloc );
180         PicoSetFreeFunc( free );
181         PicoSetPrintFunc( PicoPrintFunc );
182         PicoSetLoadFileFunc( PicoLoadFileFunc );
183         PicoSetFreeFileFunc( free );
184
185         /* set number of threads */
186         ThreadSetDefault();
187
188         /* generate sinusoid jitter table */
189         for ( i = 0; i < MAX_JITTERS; i++ )
190         {
191                 jitters[ i ] = sin( i * 139.54152147 );
192                 //%     Sys_Printf( "Jitter %4d: %f\n", i, jitters[ i ] );
193         }
194
195         /* we print out two versions, q3map's main version (since it evolves a bit out of GtkRadiant)
196            and we put the GtkRadiant version to make it easy to track with what version of Radiant it was built with */
197
198         Sys_Printf( "Q3Map         - v1.0r (c) 1999 Id Software Inc.\n" );
199         Sys_Printf( "Q3Map (ydnar) - v" Q3MAP_VERSION "\n" );
200         Sys_Printf( "NetRadiant    - v" RADIANT_VERSION " " __DATE__ " " __TIME__ "\n" );
201         Sys_Printf( "%s\n", Q3MAP_MOTD );
202
203         /* ydnar: new path initialization */
204         InitPaths( &argc, argv );
205
206         /* set game options */
207         if ( !patchSubdivisions ) {
208                 patchSubdivisions = game->patchSubdivisions;
209         }
210
211         /* check if we have enough options left to attempt something */
212         if ( argc < 2 ) {
213                 Error( "Usage: %s [general options] [options] mapfile", argv[ 0 ] );
214         }
215
216         /* fixaas */
217         if ( !strcmp( argv[ 1 ], "-fixaas" ) ) {
218                 r = FixAASMain( argc - 1, argv + 1 );
219         }
220
221         /* analyze */
222         else if ( !strcmp( argv[ 1 ], "-analyze" ) ) {
223                 r = AnalyzeBSPMain( argc - 1, argv + 1 );
224         }
225
226         /* info */
227         else if ( !strcmp( argv[ 1 ], "-info" ) ) {
228                 r = BSPInfoMain( argc - 2, argv + 2 );
229         }
230
231         /* vis */
232         else if ( !strcmp( argv[ 1 ], "-vis" ) ) {
233                 r = VisMain( argc - 1, argv + 1 );
234         }
235
236         /* light */
237         else if ( !strcmp( argv[ 1 ], "-light" ) ) {
238                 r = LightMain( argc - 1, argv + 1 );
239         }
240
241         /* vlight */
242         else if ( !strcmp( argv[ 1 ], "-vlight" ) ) {
243                 Sys_FPrintf( SYS_WRN, "WARNING: VLight is no longer supported, defaulting to -light -fast instead\n\n" );
244                 argv[ 1 ] = "-fast";    /* eek a hack */
245                 r = LightMain( argc, argv );
246         }
247
248         /* QBall: export entities */
249         else if ( !strcmp( argv[ 1 ], "-exportents" ) ) {
250                 r = ExportEntitiesMain( argc - 1, argv + 1 );
251         }
252
253         /* ydnar: lightmap export */
254         else if ( !strcmp( argv[ 1 ], "-export" ) ) {
255                 r = ExportLightmapsMain( argc - 1, argv + 1 );
256         }
257
258         /* ydnar: lightmap import */
259         else if ( !strcmp( argv[ 1 ], "-import" ) ) {
260                 r = ImportLightmapsMain( argc - 1, argv + 1 );
261         }
262
263         /* ydnar: bsp scaling */
264         else if ( !strcmp( argv[ 1 ], "-scale" ) ) {
265                 r = ScaleBSPMain( argc - 1, argv + 1 );
266         }
267
268         /* ydnar: bsp conversion */
269         else if ( !strcmp( argv[ 1 ], "-convert" ) ) {
270                 r = ConvertBSPMain( argc - 1, argv + 1 );
271         }
272
273         /* div0: minimap */
274         else if ( !strcmp( argv[ 1 ], "-minimap" ) ) {
275                 r = MiniMapBSPMain( argc - 1, argv + 1 );
276         }
277
278         /* ydnar: otherwise create a bsp */
279         else {
280                 /* used to write Smokin'Guns like tex file */
281                 compile_map = qtrue;
282
283                 r = BSPMain( argc, argv );
284         }
285
286         /* emit time */
287         end = I_FloatTime();
288         Sys_Printf( "%9.0f seconds elapsed\n", end - start );
289
290         /* shut down connection */
291         Broadcast_Shutdown();
292
293         /* return any error code */
294         return r;
295 }