]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - tools/quake3/common/inout.h
Merge remote-tracking branch 'github/master'
[xonotic/netradiant.git] / tools / quake3 / common / inout.h
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 #ifndef __INOUT__
23 #define __INOUT__
24
25 // inout is the only stuff relying on xml, include the headers there
26 #include "libxml/tree.h"
27 #include "mathlib.h"
28
29 // some useful xml routines
30 xmlNodePtr xml_NodeForVec( vec3_t v );
31 void xml_SendNode( xmlNodePtr node );
32 // print a message in q3map output and send the corresponding select information down the xml stream
33 // bError: do we end with an error on this one or do we go ahead?
34 void xml_Select( char *msg, int entitynum, int brushnum, qboolean bError );
35 // end q3map with an error message and send a point information in the xml stream
36 // note: we might want to add a boolean to use this as a warning or an error thing..
37 void xml_Winding( char *msg, vec3_t p[], int numpoints, qboolean die );
38 void xml_Point( char *msg, vec3_t pt );
39
40 extern qboolean bNetworkBroadcast;
41 void Broadcast_Setup( const char *dest );
42 void Broadcast_Shutdown();
43
44 #define SYS_VRB 0 // verbose support (on/off)
45 #define SYS_STD 1 // standard print level
46 #define SYS_WRN 2 // warnings
47 #define SYS_ERR 3 // error
48 #define SYS_NOXML 4 // don't send that down the XML stream
49
50 extern qboolean verbose;
51 void Sys_Printf( const char *text, ... );
52 void Sys_FPrintf( int flag, const char *text, ... );
53
54 #ifdef _DEBUG
55 #define DBG_XML 1
56 #endif
57
58 #ifdef DBG_XML
59 void DumpXML();
60 #endif
61
62 #endif