]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - tools/quake3/q3map2/main.c
Merge branch 'fix-fast' into 'master'
[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
105
106         /* we want consistent 'randomness' */
107         srand( 0 );
108
109         /* start timer */
110         start = I_FloatTime();
111
112         /* this was changed to emit version number over the network */
113         printf( Q3MAP_VERSION "\n" );
114
115         /* set exit call */
116         atexit( ExitQ3Map );
117
118         /* read general options first */
119         for ( i = 1; i < argc; i++ )
120         {
121                 /* -help */
122                 if ( !strcmp( argv[ i ], "-h" ) || !strcmp( argv[ i ], "--help" )
123                         || !strcmp( argv[ i ], "-help" ) ) {
124                         HelpMain(argv[i+1]);
125                         return 0;
126                 }
127
128                 /* -connect */
129                 if ( !strcmp( argv[ i ], "-connect" ) ) {
130                         argv[ i ] = NULL;
131                         i++;
132                         Broadcast_Setup( argv[ i ] );
133                         argv[ i ] = NULL;
134                 }
135
136                 /* verbose */
137                 else if ( !strcmp( argv[ i ], "-v" ) ) {
138                         if ( !verbose ) {
139                                 verbose = qtrue;
140                                 argv[ i ] = NULL;
141                         }
142                 }
143
144                 /* force */
145                 else if ( !strcmp( argv[ i ], "-force" ) ) {
146                         force = qtrue;
147                         argv[ i ] = NULL;
148                 }
149
150                 /* patch subdivisions */
151                 else if ( !strcmp( argv[ i ], "-subdivisions" ) ) {
152                         argv[ i ] = NULL;
153                         i++;
154                         patchSubdivisions = atoi( argv[ i ] );
155                         argv[ i ] = NULL;
156                         if ( patchSubdivisions <= 0 ) {
157                                 patchSubdivisions = 1;
158                         }
159                 }
160
161                 /* threads */
162                 else if ( !strcmp( argv[ i ], "-threads" ) ) {
163                         argv[ i ] = NULL;
164                         i++;
165                         numthreads = atoi( argv[ i ] );
166                         argv[ i ] = NULL;
167                 }
168         }
169
170         /* init model library */
171         PicoInit();
172         PicoSetMallocFunc( safe_malloc );
173         PicoSetFreeFunc( free );
174         PicoSetPrintFunc( PicoPrintFunc );
175         PicoSetLoadFileFunc( PicoLoadFileFunc );
176         PicoSetFreeFileFunc( free );
177
178         /* set number of threads */
179         ThreadSetDefault();
180
181         /* generate sinusoid jitter table */
182         for ( i = 0; i < MAX_JITTERS; i++ )
183         {
184                 jitters[ i ] = sin( i * 139.54152147 );
185                 //%     Sys_Printf( "Jitter %4d: %f\n", i, jitters[ i ] );
186         }
187
188         /* we print out two versions, q3map's main version (since it evolves a bit out of GtkRadiant)
189            and we put the GtkRadiant version to make it easy to track with what version of Radiant it was built with */
190
191         Sys_Printf( "Q3Map         - v1.0r (c) 1999 Id Software Inc.\n" );
192         Sys_Printf( "Q3Map (ydnar) - v" Q3MAP_VERSION "\n" );
193         Sys_Printf( "NetRadiant    - v" RADIANT_VERSION " " __DATE__ " " __TIME__ "\n" );
194         Sys_Printf( "%s\n", Q3MAP_MOTD );
195
196         /* ydnar: new path initialization */
197         InitPaths( &argc, argv );
198
199         /* set game options */
200         if ( !patchSubdivisions ) {
201                 patchSubdivisions = game->patchSubdivisions;
202         }
203
204         /* check if we have enough options left to attempt something */
205         if ( argc < 2 ) {
206                 Error( "Usage: %s [general options] [options] mapfile", argv[ 0 ] );
207         }
208
209         /* fixaas */
210         if ( !strcmp( argv[ 1 ], "-fixaas" ) ) {
211                 r = FixAASMain( argc - 1, argv + 1 );
212         }
213
214         /* analyze */
215         else if ( !strcmp( argv[ 1 ], "-analyze" ) ) {
216                 r = AnalyzeBSPMain( argc - 1, argv + 1 );
217         }
218
219         /* info */
220         else if ( !strcmp( argv[ 1 ], "-info" ) ) {
221                 r = BSPInfoMain( argc - 2, argv + 2 );
222         }
223
224         /* vis */
225         else if ( !strcmp( argv[ 1 ], "-vis" ) ) {
226                 r = VisMain( argc - 1, argv + 1 );
227         }
228
229         /* light */
230         else if ( !strcmp( argv[ 1 ], "-light" ) ) {
231                 r = LightMain( argc - 1, argv + 1 );
232         }
233
234         /* vlight */
235         else if ( !strcmp( argv[ 1 ], "-vlight" ) ) {
236                 Sys_FPrintf( SYS_WRN, "WARNING: VLight is no longer supported, defaulting to -light -fast instead\n\n" );
237                 argv[ 1 ] = "-fast";    /* eek a hack */
238                 r = LightMain( argc, argv );
239         }
240
241         /* QBall: export entities */
242         else if ( !strcmp( argv[ 1 ], "-exportents" ) ) {
243                 r = ExportEntitiesMain( argc - 1, argv + 1 );
244         }
245
246         /* ydnar: lightmap export */
247         else if ( !strcmp( argv[ 1 ], "-export" ) ) {
248                 r = ExportLightmapsMain( argc - 1, argv + 1 );
249         }
250
251         /* ydnar: lightmap import */
252         else if ( !strcmp( argv[ 1 ], "-import" ) ) {
253                 r = ImportLightmapsMain( argc - 1, argv + 1 );
254         }
255
256         /* ydnar: bsp scaling */
257         else if ( !strcmp( argv[ 1 ], "-scale" ) ) {
258                 r = ScaleBSPMain( argc - 1, argv + 1 );
259         }
260
261         /* ydnar: bsp conversion */
262         else if ( !strcmp( argv[ 1 ], "-convert" ) ) {
263                 r = ConvertBSPMain( argc - 1, argv + 1 );
264         }
265
266         /* div0: minimap */
267         else if ( !strcmp( argv[ 1 ], "-minimap" ) ) {
268                 r = MiniMapBSPMain( argc - 1, argv + 1 );
269         }
270
271         /* ydnar: otherwise create a bsp */
272         else{
273                 r = BSPMain( argc, argv );
274         }
275
276         /* emit time */
277         end = I_FloatTime();
278         Sys_Printf( "%9.0f seconds elapsed\n", end - start );
279
280         /* shut down connection */
281         Broadcast_Shutdown();
282
283         /* return any error code */
284         return r;
285 }