2 Copyright (C) 2003, 2010 - Wolfire Games
4 This file is part of Lugaru.
6 Lugaru is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 See the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 #if (defined(__APPLE__) && defined(__MACH__))
28 # ifdef PLATFORM_MACOSX
29 # error Do not define PLATFORM_MACOSX for new builds. It is for the old Carbonized build.
33 #ifdef PLATFORM_MACOSX
35 #include "Quicktime.h"
38 //Jordan included glut.h
41 #include "TGALoader.h"
49 #include "Constants.h"
54 //#include <DrawSprocket.h>
63 extern GLuint rabbittexture;
68 typedef std::map<std::string, GLuint> TextureList;
69 typedef std::map<GLuint, std::string> GLTextureList;
70 typedef TextureList::iterator TexIter;
71 static TextureList textures;
73 GLuint terraintexture;
74 GLuint terraintexture2;
75 GLuint terraintexture3;
77 GLuint screentexture2;
79 GLuint loadscreentexture;
80 GLuint Maparrowtexture;
82 GLuint Mapcircletexture;
84 GLuint Mainmenuitems[10];
91 float selectedlong[100];
107 char menustring[100][256];
108 char registrationname[256];
109 float registrationnumber;
117 int mousecoordh,mousecoordv;
118 int oldmousecoordh,oldmousecoordv;
119 float rotation,rotation2;
122 bool cameratogglekeydown;
123 bool chattogglekeydown;
126 bool drawmodetogglekeydown;
127 bool explodetogglekeydown;
128 bool detailtogglekeydown;
148 int campaignnumlevels;
149 char campaignmapname[50][256];
150 char campaigndescription[50][256];
151 int campaignchoosenext[50];
152 int campaignnumnext[50];
153 int campaignnextlevel[50][10];
154 int campaignchoicesmade;
155 int campaignchoices[5000];
156 int campaignlocationx[50];
157 int campaignlocationy[50];
158 int campaignchoicenum;
159 int campaignchoicewhich[10];
163 int levelorder[5000];
164 int levelvisible[50];
165 int levelhighlight[50];
169 int musictype,oldmusictype,oldoldmusictype;
184 bool envtogglekeydown;
185 bool slomotogglekeydown;
186 bool texturesizetogglekeydown;
187 bool freezetogglekeydown;
193 float editorrotation;
194 float editorrotation2;
203 int numpathpointconnect[30];
204 int pathpointconnect[30][30];
205 int pathpointselected;
209 int numchallengelevels;
213 char consoletext[15][256];
214 int consolechars[15];
216 char displaytext[15][256];
217 int displaychars[15];
218 float displaytime[15];
219 float displayblinkdelay;
223 bool consoletogglekeydown;
224 float consoleblinkdelay;
227 //int togglekey[140];
228 //float togglekeydelay[140];
232 unsigned short crouchkey,jumpkey,forwardkey,chatkey,backkey,leftkey,rightkey,drawkey,throwkey,attackkey;
235 static void LoadTexture(const char *fileName, GLuint *textureid,int mipmap, bool hasalpha);
236 static void LoadTextureSave(const char *fileName, GLuint *textureid,int mipmap,GLubyte *array, int *skinsize);
237 void LoadSave(const char *fileName, GLuint *textureid,bool mipmap,GLubyte *array, int *skinsize);
238 bool AddClothes(const char *fileName, GLuint *textureid,bool mipmap,GLubyte *array, int *skinsize);
241 void LoadingScreen();
242 void FadeLoadingScreen(float howmuch);
244 int DrawGLScene(StereoSide side);
248 void TickOnceAfter();
249 void SetUpLighting();
250 void Loadlevel(int which);
251 void Loadlevel(char *name);
252 void Setenvironment(int which);
253 GLvoid ReSizeGLScene(float fov, float near);
254 int findPathDist(int start,int end);
255 int checkcollide(XYZ startpoint, XYZ endpoint);
256 int checkcollide(XYZ startpoint, XYZ endpoint, int what);
260 void fireSound(int sound=fireendsound);
261 void setKeySelected();
271 float musicvolume[4];
272 float oldmusicvolume[4];
277 for(int i=0;i<10;i++){
278 if(Mainmenuitems[i])glDeleteTextures( 1, &Mainmenuitems[i] );
280 glDeleteTextures( 1, &cursortexture );
281 glDeleteTextures( 1, &Maparrowtexture );
282 glDeleteTextures( 1, &Mapboxtexture );
283 glDeleteTextures( 1, &Mapcircletexture );
284 glDeleteTextures( 1, &terraintexture );
285 glDeleteTextures( 1, &terraintexture2 );
286 if(screentexture>0)glDeleteTextures( 1, &screentexture );
287 if(screentexture2>0)glDeleteTextures( 1, &screentexture2 );
288 glDeleteTextures( 1, &hawktexture );
289 glDeleteTextures( 1, &logotexture );
290 glDeleteTextures( 1, &loadscreentexture );
294 bool isWaiting() { return waiting; };
296 void setKeySelected_thread();
297 static int thread(void *data);
298 void inputText(char* str, int* charselected, int* nb_chars);
301 bool mainmenutogglekeydown;
303 Account* accountactive;
306 #ifndef __forceinline
308 # define __forceinline inline __attribute__((always_inline))
312 static __forceinline void swap_gl_buffers(void)
314 SDL_GL_SwapBuffers();
317 extern "C" { void UndefinedSymbolToExposeStubbedCode(void); }
318 //#define STUBBED(x) UndefinedSymbolToExposeStubbedCode();
319 #define STUBBED(x) { static bool seen = false; if (!seen) { seen = true; fprintf(stderr, "STUBBED: %s at %s:%d\n", x, __FILE__, __LINE__); } }
322 extern int numplayers;