]> git.mxchange.org Git - quix0rs-blobwars.git/blob - src/headers.h
Prevent a segmentation fault when using the -map option without specifying a map.
[quix0rs-blobwars.git] / src / headers.h
1 /*
2 Copyright (C) 2004-2011 Parallel Realities
3 Copyright (C) 2011-2015 Perpendicular Dimensions
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
14 See the GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 */
21
22 #include <errno.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <math.h>
26
27 #include <zlib.h>
28
29 #ifdef FRAMEWORK_SDL
30 #include <SDL/SDL.h>
31 #include <SDL_image/SDL_image.h>
32 #include <SDL_mixer/SDL_mixer.h>
33 #include <SDL_ttf/SDL_ttf.h>
34 #include <SDL_net/SDL_net.h>
35 #include <CoreFoundation/CoreFoundation.h>
36 extern C_LINKAGE void openHelpURL();
37 #ifndef SDL_GetGamma
38 extern DECLSPEC int SDLCALL SDL_GetGamma(float *red, float *green, float *blue);
39 #endif
40 #else
41 #include "SDL2/SDL.h"
42 #include "SDL2/SDL_image.h"
43 #include "SDL2/SDL_mixer.h"
44 #include "SDL2/SDL_ttf.h"
45 #include "SDL2/SDL_net.h"
46 #endif
47
48 #ifndef WIN32
49 #include <libintl.h>
50 #define _(string) gettext(string)
51 #else
52 #define _(x) (x)
53 #define gettext(x) (x)
54 #define bindtextdomain(x, y) while(false)
55 #define textdomain(x) while(false)
56 #endif
57
58 #if !defined(OpenBSD) && !defined(FreeBSD)
59 #define strlcat(dest, src, n) strncat((dest), (src), (n) - 1)
60 #define strlcpy(dest, src, n) do {strncpy((dest), (src), (n)); (dest)[(n) - 1] = 0;} while(false)
61 #endif
62
63 #include "defs.h"
64
65 #include "CMath.h"
66
67 #include "CGameObject.h"
68 #include "CList.h"
69
70 #include "CSprite.h"
71 #include "CData.h"
72 #include "CParticle.h"
73 #include "CWeapon.h"
74 #include "CEntity.h"
75 #include "CBoss.h"
76 #include "CTrain.h"
77 #include "CSpawnPoint.h"
78 #include "CSwitch.h"
79 #include "CEffect.h"
80 #include "CObjective.h"
81 #include "CTeleporter.h"
82 #include "CLineDef.h"
83 #include "CTrap.h"
84
85 #include "CPersistData.h"
86 #include "CPersistant.h"
87
88 #include "CMap.h"
89
90 #include "CCollision.h"
91
92 #include "CWidget.h"
93
94 #include "CFileData.h"
95 #include "CPak.h"
96
97 #include "CJoystick.h"
98 #include "CKeyboard.h"
99
100 #include "CEngine.h"
101 #include "CGraphics.h"
102 #include "CAudio.h"
103
104 #include "CGame.h"
105 #include "CGameData.h"
106
107 #include "CHub.h"
108 #include "CRadarBlip.h"
109
110 #include "CCutscene.h"
111
112 #include "CReplayDataHeader.h"
113 #include "CReplayData.h"
114 #include "CConfig.h"
115 #include "CMedalServer.h"