]> git.jsancho.org Git - lugaru.git/blob - Source/GameDraw.cpp
Cleanning up Sprite class. More can be done, but it's already prettier.
[lugaru.git] / Source / GameDraw.cpp
1 /*
2 Copyright (C) 2003, 2010 - Wolfire Games
3
4 This file is part of Lugaru.
5
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.
10
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.  
14
15 See the GNU General Public License for more details.
16
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.
20 */
21
22 #include "Game.h"
23 #include "openal_wrapper.h"
24 #include "Input.h"
25
26 using namespace std;
27
28 extern XYZ viewer;
29 extern int environment;
30 extern float texscale;
31 extern Light light;
32 extern Terrain terrain;
33 //extern Sprites sprites;
34 extern float multiplier;
35 extern float sps;
36 extern float viewdistance;
37 extern float fadestart;
38 extern float screenwidth,screenheight;
39 extern int kTextureSize;
40 extern FRUSTUM frustum;
41 extern Light light;
42 extern Objects objects;
43 extern int detail;
44 extern float usermousesensitivity;
45 extern bool osx;
46 extern float camerashake;
47 extern Weapons weapons;
48 extern Person player[maxplayers];
49 extern int slomo;
50 extern float slomodelay;
51 extern bool ismotionblur;
52 extern float woozy;
53 extern float blackout;
54 extern bool damageeffects;
55 extern float volume;
56 extern int numplayers;
57 extern bool texttoggle;
58 extern float blurness;
59 extern float targetblurness;
60 extern float playerdist;
61 extern bool cellophane;
62 extern bool freeze;
63 extern float flashamount,flashr,flashg,flashb;
64 extern int flashdelay;
65 extern int netstate;
66 extern float motionbluramount;
67 extern bool isclient;
68 extern bool alwaysblur;
69 extern int test;
70 extern bool tilt2weird;
71 extern bool tiltweird;
72 extern bool midweird;
73 extern bool proportionweird;
74 extern bool vertexweird[6];
75 extern bool velocityblur;
76 extern bool debugmode;
77 extern int mainmenu;
78 extern int oldmainmenu;
79 extern int bloodtoggle;
80 extern int difficulty;
81 extern bool decals;
82 // MODIFIED GWC
83 //extern int texdetail;
84 extern float texdetail;
85 extern bool musictoggle;
86 extern int bonus;
87 extern float bonusvalue;
88 extern float bonustotal;
89 extern float bonustime;
90 extern int oldbonus;
91 extern float startbonustotal;
92 extern float bonusnum[100];
93 extern int tutoriallevel;
94 extern float smoketex;
95 extern float tutorialstagetime;
96 extern float tutorialmaxtime;
97 extern int tutorialstage;
98 extern bool againbonus;
99 extern float damagedealt;
100 extern float damagetaken;
101 extern bool invertmouse;
102
103 extern int numhotspots;
104 extern int winhotspot;
105 extern int killhotspot;
106 extern XYZ hotspot[40];
107 extern int hotspottype[40];
108 extern float hotspotsize[40];
109 extern char hotspottext[40][256];
110 extern int currenthotspot;;
111
112 extern int numfalls;
113 extern int numflipfail;
114 extern int numseen;
115 extern int numstaffattack;
116 extern int numswordattack;
117 extern int numknifeattack;
118 extern int numunarmedattack;
119 extern int numescaped;
120 extern int numflipped;
121 extern int numwallflipped;
122 extern int numthrowkill;
123 extern int numafterkill;
124 extern int numreversals;
125 extern int numattacks;
126 extern int maxalarmed;
127 extern int numresponded;
128
129 extern bool campaign;
130 extern bool winfreeze;
131
132 extern float menupulse;
133
134 extern bool gamestart;
135
136 extern int numdialogues;
137 extern int numdialogueboxes[max_dialogues];
138 extern int dialoguetype[max_dialogues];
139 extern int dialogueboxlocation[max_dialogues][max_dialoguelength];
140 extern float dialogueboxcolor[max_dialogues][max_dialoguelength][3];
141 extern int dialogueboxsound[max_dialogues][max_dialoguelength];
142 extern char dialoguetext[max_dialogues][max_dialoguelength][128];
143 extern char dialoguename[max_dialogues][max_dialoguelength][64];
144 extern XYZ dialoguecamera[max_dialogues][max_dialoguelength];
145 extern XYZ participantlocation[max_dialogues][10];
146 extern int participantfocus[max_dialogues][max_dialoguelength];
147 extern int participantaction[max_dialogues][max_dialoguelength];
148 extern float participantrotation[max_dialogues][10];
149 extern XYZ participantfacing[max_dialogues][max_dialoguelength][10];
150 extern float dialoguecamerarotation[max_dialogues][max_dialoguelength];
151 extern float dialoguecamerarotation2[max_dialogues][max_dialoguelength];
152 extern int indialogue;
153 extern int whichdialogue;
154 extern int directing;
155 extern float dialoguetime;
156 extern int dialoguegonethrough[20];
157
158 extern bool gamestarted;
159
160 extern bool showdamagebar;
161
162 extern OPENAL_SAMPLE    *samp[100];
163 extern int channels[100];
164 extern "C"      void PlaySoundEx(int channel, OPENAL_SAMPLE *sptr, OPENAL_DSPUNIT *dsp, signed char startpaused);
165
166 void Game::flash() { // shouldn't be that way, these should be attributes and Person class should not change rendering.
167         flashr=1;
168         flashg=0;
169         flashb=0;
170         flashamount=1;
171         flashdelay=1;
172 }
173 /*********************> DrawGLScene() <*****/
174 long long Game::MD5_string (char* string){
175         char temp[256]="";
176         char temp2[256]="";
177         long long num=90814;
178
179         sprintf (temp, "%s",string);
180
181         int i=0;
182         while (i<256&&temp[i]!='\0'){
183                 if(temp[i]%3==0)num+=temp[i]*124;
184                 else if(temp[i]%3==1)num-=temp[i]*temp[i];
185                 else num*=temp[i];
186                 i++;
187         }
188
189         num=longlongabs(num);
190         if(num==0)num+=1452;
191
192         while(num<LONGLONGCONST(5000000000000000)){
193                 num*=1.85421521;
194         }
195
196         while(num>LONGLONGCONST(9900000000000000)){
197                 num/=1.235421521;
198         }
199
200         return num;
201
202         //return 1111111111111111;
203 }
204
205 int Game::DrawGLScene(StereoSide side)
206 {       
207         static float texcoordwidth,texcoordheight;
208         static float texviewwidth, texviewheight;
209         static int i,j,k,l;
210         static GLubyte color;
211         static float newbrightness;
212         static float changespeed;
213         static XYZ checkpoint;
214         static float tempmult;
215         float tutorialopac;
216         static char string[256]="";
217         static char string2[256]="";
218         static char string3[256]="";
219
220         static float lastcheck;
221
222         lastcheck+=multiplier;
223
224         if ( stereomode == stereoAnaglyph ) {
225                 switch(side) {
226                         case stereoLeft: glColorMask( 0.0, 1.0, 1.0, 1.0 ); break;
227                         case stereoRight: glColorMask( 1.0, 0.0, 0.0, 1.0 ); break;
228                 }
229         } else {
230                 glColorMask( 1.0, 1.0, 1.0, 1.0 );
231                 
232                 if ( stereomode == stereoHorizontalInterlaced || stereomode == stereoVerticalInterlaced ) {
233                         glStencilFunc(side == stereoLeft ? GL_NOTEQUAL : GL_EQUAL, 0x01, 0x01);
234                 }
235         }
236
237         if(freeze||winfreeze||(mainmenu&&gameon)||(!gameon&&gamestarted)){
238                 tempmult=multiplier;
239                 multiplier=0;
240         }
241
242         if(!mainmenu){
243                 if(editorenabled){
244                         numboundaries=mapradius*2;
245                         if(numboundaries>360)numboundaries=360;
246                         for(i=0;i<numboundaries;i++){
247                                 boundary[i]=0;
248                                 boundary[i].z=1;
249                                 boundary[i]=mapcenter+DoRotation(boundary[i]*mapradius,0,i*(360/((float)(numboundaries))),0);
250                         }
251                 }
252
253                 SetUpLighting();
254
255                 static int changed;
256                 changed=0;
257
258                 olddrawmode=drawmode;
259                 if(ismotionblur&&!loading){
260                         if((findLengthfast(&player[0].velocity)>200)&&velocityblur&&!cameramode){
261                                 drawmode=motionblurmode;
262                                 motionbluramount=200/(findLengthfast(&player[0].velocity));
263                                 changed=1;
264                         }
265                         if(player[0].damage-player[0].superpermanentdamage>(player[0].damagetolerance-player[0].superpermanentdamage)*1/2&&damageeffects&&!cameramode){
266                                 drawmode=doublevisionmode;
267                                 changed=1;
268                         }
269                 }
270
271                 if(slomo&&!loading){
272                         if(ismotionblur)
273                                 drawmode=motionblurmode;
274                         motionbluramount=.2;
275                         slomodelay-=multiplier;
276                         if(slomodelay<0)slomo=0;
277                         camerashake=0;
278                         changed=1;
279                 }
280                 if((!changed&&!slomo)||loading){
281                         drawmode=normalmode;
282                         if(ismotionblur&&(/*fps>100||*/alwaysblur)){
283                                 if(olddrawmode!=realmotionblurmode)change=1;
284                                 else change=0;
285                                 drawmode=realmotionblurmode;
286                         }
287                         else if(olddrawmode==realmotionblurmode)change=2;
288                         else change=0;
289                 }
290
291                 if(freeze||winfreeze||(mainmenu&&gameon)||(!gameon&&gamestarted))drawmode=normalmode;
292                 if((freeze||winfreeze)&&ismotionblur&&!mainmenu)drawmode=radialzoommode;
293
294                 if(winfreeze||mainmenu)drawmode=normalmode;
295
296                 //drawmode=glowmode;
297                 if(drawmode==glowmode){
298                         RGBColor color2;
299                         color2.red=0;
300                         color2.green=0;
301                         color2.blue=0;
302 #if PLATFORM_MACOSX
303                         DSpContext_FadeGamma(NULL,200,&color2);
304 #endif
305                 }
306
307                 if(drawtoggle!=2)drawtoggle=1-drawtoggle;
308
309                 if(!texcoordwidth){
310
311                         texviewwidth=kTextureSize;
312                         if(texviewwidth>screenwidth)texviewwidth=screenwidth;
313                         texviewheight=kTextureSize;
314                         if(texviewheight>screenheight)texviewheight=screenheight;
315
316                         texcoordwidth=screenwidth/kTextureSize;
317                         texcoordheight=screenheight/kTextureSize;
318                         if(texcoordwidth>1)texcoordwidth=1;
319                         if(texcoordheight>1)texcoordheight=1;
320                 }
321
322                 glDrawBuffer(GL_BACK);
323                 glReadBuffer(GL_BACK);
324
325                 /*if(environment==desertenvironment)glTexEnvf( GL_TEXTURE_FILTER_CONTROL_EXT, GL_TEXTURE_LOD_BIAS_EXT, (float)(abs(Random()%100))/50 );
326                 else glTexEnvf( GL_TEXTURE_FILTER_CONTROL_EXT, GL_TEXTURE_LOD_BIAS_EXT, 0);
327                 */
328                 if(abs(blurness-targetblurness)<multiplier*10||abs(blurness-targetblurness)>2){
329                         blurness=targetblurness;
330                         targetblurness=(float)(abs(Random()%100))/40;
331                 }
332                 if(blurness<targetblurness)blurness+=multiplier*5;
333                 if(blurness>targetblurness)blurness-=multiplier*5;
334
335                 //glFinish();
336                 static XYZ terrainlight;
337                 static float distance;
338                 //if(drawmode==normalmode)ReSizeGLScene(90,.1);
339                 if(drawmode==normalmode)ReSizeGLScene(90,.1f);
340                 if(drawmode!=normalmode)glViewport(0,0,texviewwidth,texviewheight);     
341                 glDepthFunc(GL_LEQUAL);
342                 glDepthMask(1);
343                 glAlphaFunc(GL_GREATER, 0.0001f);
344                 glEnable(GL_ALPHA_TEST);
345                 glClearColor(0.25f, 0.25f, 0.25f, 1.0f);
346                 glClear(GL_DEPTH_BUFFER_BIT);
347
348                 glMatrixMode (GL_MODELVIEW);
349                 glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
350                 glLoadIdentity ();
351                 
352                 // Move the camera for the current eye's point of view.
353                 // Reverse the movement if we're reversing stereo
354                 glTranslatef((stereoseparation/2) * side * (stereoreverse  ? -1 : 1), 0, 0);
355                 
356                 if(!cameramode&&!freeze&&!winfreeze){
357                         glRotatef(float(Random()%100)/10*camerashake/*+(woozy*woozy)/10*/,0,0,1);
358                         glRotatef(rotation2+sin(woozy/2)*(player[0].damage/player[0].damagetolerance)*5,1,0,0);
359                         glRotatef(rotation+sin(woozy)*(player[0].damage/player[0].damagetolerance)*5,0,1,0);
360                 }
361                 if(cameramode||freeze||winfreeze){
362                         //glRotatef(float(Random()%100)/10*camerashake/*+(woozy*woozy)/10*/,0,0,1);
363                         glRotatef(rotation2,1,0,0);
364                         glRotatef(rotation,0,1,0);
365                 }
366
367                 if(environment==desertenvironment){
368                         glRotatef((float)(abs(Random()%100))/3000-1,1,0,0);
369                         glRotatef((float)(abs(Random()%100))/3000-1,0,1,0);
370                         //glRotatef(blurness/40-1,1,0,0);
371                         //glRotatef(blurness/40-1,0,1,0);
372                 }
373                 SetUpLight(&light,0);
374                 glPushMatrix();
375                 if(environment==desertenvironment&&detail==2)glTexEnvf( GL_TEXTURE_FILTER_CONTROL_EXT, GL_TEXTURE_LOD_BIAS_EXT, blurness+.4 );
376                 if(environment==desertenvironment){
377                         glRotatef((float)(abs(Random()%100))/1000,1,0,0);
378                         glRotatef((float)(abs(Random()%100))/1000,0,1,0);
379                 }       
380                 skybox.draw();
381                 glTexEnvf( GL_TEXTURE_FILTER_CONTROL_EXT, GL_TEXTURE_LOD_BIAS_EXT, 0);
382                 glPopMatrix();
383                 glTranslatef(-viewer.x,-viewer.y,-viewer.z);
384                 frustum.GetFrustum();
385
386                 //Make Shadow
387                 static XYZ point;
388                 static float size,opacity,rotation;
389                 rotation=0;
390                 for(k=0;k<numplayers;k++){
391                         if(!player[k].skeleton.free&&player[k].playerdetail&&player[k].howactive<typesleeping)
392                                 if(frustum.SphereInFrustum(player[k].coords.x,player[k].coords.y+player[k].scale*3,player[k].coords.z,player[k].scale*7)&&player[k].occluded<25)
393                                         for(i=0;i<player[k].skeleton.num_joints;i++){
394                                                 if(player[k].skeleton.joints[i].label==leftknee||player[k].skeleton.joints[i].label==rightknee||player[k].skeleton.joints[i].label==groin){
395                                                         point=DoRotation(player[k].skeleton.joints[i].position,0,player[k].rotation,0)*player[k].scale+player[k].coords;
396                                                         size=.4f;
397                                                         opacity=.4-player[k].skeleton.joints[i].position.y*player[k].scale/5-(player[k].coords.y-terrain.getHeight(player[k].coords.x,player[k].coords.z))/10;
398                                                         if(k!=0&&tutoriallevel==1){
399                                                                 opacity=.2+.2*sin(smoketex*6+i)-player[k].skeleton.joints[i].position.y*player[k].scale/5-(player[k].coords.y-terrain.getHeight(player[k].coords.x,player[k].coords.z))/10;
400                                                         }
401                                                         terrain.MakeDecal(shadowdecal,point,size,opacity,rotation);
402                                                         if(terrain.patchobjectnum[player[k].whichpatchx][player[k].whichpatchz])
403                                                                 for(l=0;l<terrain.patchobjectnum[player[k].whichpatchx][player[k].whichpatchz];l++){
404                                                                         j=terrain.patchobjects[player[k].whichpatchx][player[k].whichpatchz][l];
405                                                                         if(objects.position[j].y<player[k].coords.y||objects.type[j]==tunneltype||objects.type[j]==weirdtype){
406                                                                                 point=DoRotation(DoRotation(player[k].skeleton.joints[i].position,0,player[k].rotation,0)*player[k].scale+player[k].coords-objects.position[j],0,-objects.rotation[j],0);
407                                                                                 size=.4f;
408                                                                                 opacity=.4f;
409                                                                                 if(k!=0&&tutoriallevel==1){
410                                                                                         opacity=.2+.2*sin(smoketex*6+i);
411                                                                                 }
412                                                                                 objects.model[j].MakeDecal(shadowdecal,&point,&size,&opacity,&rotation);
413                                                                         }
414                                                                 }
415                                                 }
416                                         }
417                                         if((player[k].skeleton.free||player[k].howactive>=typesleeping)&&player[k].playerdetail)
418                                                 if(frustum.SphereInFrustum(player[k].coords.x,player[k].coords.y,player[k].coords.z,player[k].scale*5)&&player[k].occluded<25)
419                                                         for(i=0;i<player[k].skeleton.num_joints;i++){
420                                                                 if(player[k].skeleton.joints[i].label==leftknee||player[k].skeleton.joints[i].label==rightknee||player[k].skeleton.joints[i].label==groin||player[k].skeleton.joints[i].label==leftelbow||player[k].skeleton.joints[i].label==rightelbow||player[k].skeleton.joints[i].label==neck){
421                                                                         if(player[k].skeleton.free)point=player[k].skeleton.joints[i].position*player[k].scale+player[k].coords;
422                                                                         else point=DoRotation(player[k].skeleton.joints[i].position,0,player[k].rotation,0)*player[k].scale+player[k].coords;
423                                                                         size=.4f;
424                                                                         opacity=.4-player[k].skeleton.joints[i].position.y*player[k].scale/5-(player[k].coords.y-terrain.getHeight(player[k].coords.x,player[k].coords.z))/5;
425                                                                         if(k!=0&&tutoriallevel==1){
426                                                                                 opacity=.2+.2*sin(smoketex*6+i)-player[k].skeleton.joints[i].position.y*player[k].scale/5-(player[k].coords.y-terrain.getHeight(player[k].coords.x,player[k].coords.z))/10;
427                                                                         }
428                                                                         terrain.MakeDecal(shadowdecal,point,size,opacity*.7,rotation);
429                                                                         if(terrain.patchobjectnum[player[k].whichpatchx][player[k].whichpatchz])
430                                                                                 for(l=0;l<terrain.patchobjectnum[player[k].whichpatchx][player[k].whichpatchz];l++){
431                                                                                         j=terrain.patchobjects[player[k].whichpatchx][player[k].whichpatchz][l];
432                                                                                         if(objects.position[j].y<player[k].coords.y||objects.type[j]==tunneltype||objects.type[j]==weirdtype){
433                                                                                                 if(player[k].skeleton.free)point=DoRotation(player[k].skeleton.joints[i].position*player[k].scale+player[k].coords-objects.position[j],0,-objects.rotation[j],0);
434                                                                                                 else point=DoRotation(DoRotation(player[k].skeleton.joints[i].position,0,player[k].rotation,0)*player[k].scale+player[k].coords-objects.position[j],0,-objects.rotation[j],0);
435                                                                                                 size=.4f;
436                                                                                                 opacity=.4f;
437                                                                                                 if(k!=0&&tutoriallevel==1){
438                                                                                                         opacity=.2+.2*sin(smoketex*6+i);
439                                                                                                 }
440                                                                                                 objects.model[j].MakeDecal(shadowdecal,&point,&size,&opacity,&rotation);
441                                                                                         }
442                                                                                 }
443                                                                 }
444                                                         }
445
446                                                         if(!player[k].playerdetail)
447                                                                 if(frustum.SphereInFrustum(player[k].coords.x,player[k].coords.y,player[k].coords.z,player[k].scale*5))
448                                                                 {
449                                                                         point=player[k].coords;
450                                                                         size=.7;
451                                                                         opacity=.4-(player[k].coords.y-terrain.getHeight(player[k].coords.x,player[k].coords.z))/5;
452                                                                         terrain.MakeDecal(shadowdecal,point,size,opacity*.7,rotation);
453                                                                         if(terrain.patchobjectnum[player[k].whichpatchx][player[k].whichpatchz])
454                                                                                 for(l=0;l<terrain.patchobjectnum[player[k].whichpatchx][player[k].whichpatchz];l++){
455                                                                                         j=terrain.patchobjects[player[k].whichpatchx][player[k].whichpatchz][l];
456                                                                                         point=DoRotation(player[k].coords-objects.position[j],0,-objects.rotation[j],0);
457                                                                                         size=.7;
458                                                                                         opacity=.4f;
459                                                                                         objects.model[j].MakeDecal(shadowdecal,&point,&size,&opacity,&rotation);
460                                                                                 }
461                                                                 }
462                 }
463
464                 //Terrain
465                 glEnable(GL_TEXTURE_2D);
466                 glDepthMask(1);
467                 glEnable(GL_DEPTH_TEST);
468                 glEnable(GL_CULL_FACE);
469                 glDisable(GL_BLEND);
470                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
471                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); 
472                 glBindTexture( GL_TEXTURE_2D, terraintexture);
473                 terrain.draw(0);
474                 glBindTexture( GL_TEXTURE_2D, terraintexture2);
475                 terrain.draw(1);
476                 //glBindTexture( GL_TEXTURE_2D, terraintexture3);
477                 //glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
478                 //terrain.draw(2);
479
480                 terrain.drawdecals();
481
482                 //Model
483                 glEnable(GL_CULL_FACE);
484                 glEnable(GL_LIGHTING);
485                 glDisable(GL_BLEND);
486                 glEnable(GL_TEXTURE_2D);
487                 glDepthMask(1);
488
489                 glEnable(GL_COLOR_MATERIAL);
490
491                 test=2;
492                 tilt2weird=0;
493                 tiltweird=0;
494                 midweird=0;
495                 proportionweird=0;
496                 vertexweird[0]=0;
497                 vertexweird[1]=0;
498                 vertexweird[2]=0;
499                 vertexweird[3]=0;
500                 vertexweird[4]=0;
501                 vertexweird[5]=0;
502
503                 if(!cellophane){
504                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
505                         glEnable(GL_CULL_FACE);
506                         glCullFace(GL_FRONT);
507                         glDepthMask(1);
508                         for(k=0;k<numplayers;k++){
509                                 if(k==0||tutoriallevel!=1){
510                                         glEnable(GL_BLEND);
511                                         glEnable(GL_LIGHTING);
512                                         terrainlight=terrain.getLighting(player[k].coords.x,player[k].coords.z);
513                                         distance=findDistancefast(&viewer,&player[k].coords);
514                                         distance=(viewdistance*viewdistance-(distance-(viewdistance*viewdistance*fadestart))*(1/(1-fadestart)))/viewdistance/viewdistance;
515                                         glColor4f(terrainlight.x,terrainlight.y,terrainlight.z,distance);
516                                         if(distance>=1)glDisable(GL_BLEND);
517                                         if(distance>=.5){
518                                                 checkpoint=DoRotation(player[k].skeleton.joints[abs(Random()%player[k].skeleton.num_joints)].position,0,player[k].rotation,0)*player[k].scale+player[k].coords;
519                                                 checkpoint.y+=1;
520                                                 if(!player[k].occluded==0)i=checkcollide(viewer,checkpoint,player[k].lastoccluded);
521                                                 if(i==-1||player[k].occluded==0)i=checkcollide(viewer,checkpoint);
522                                                 if(i!=-1){
523                                                         player[k].occluded+=1;
524                                                         player[k].lastoccluded=i;
525                                                 }
526                                                 else player[k].occluded=0;
527                                                 if(player[k].occluded<25)player[k].DrawSkeleton();
528                                         }
529                                 }
530                         }
531                 }
532
533                 if(!cameramode&&musictype==stream_music2)playerdist=findDistancefastflat(&player[0].coords,&viewer);
534                 else playerdist=-100;
535                 glPushMatrix();
536                 glCullFace(GL_BACK);
537                 glEnable(GL_TEXTURE_2D);
538                 objects.Draw();
539                 glPopMatrix();
540
541                 glPushMatrix();
542                 if(frustum.SphereInFrustum(realhawkcoords.x+hawk.boundingspherecenter.x,realhawkcoords.y+hawk.boundingspherecenter.y,realhawkcoords.z+hawk.boundingspherecenter.z,2)){   
543                         glAlphaFunc(GL_GREATER, 0.0001f);
544                         glDepthMask(1);
545                         glDisable(GL_CULL_FACE);
546                         glDisable(GL_LIGHTING);
547                         glEnable(GL_BLEND);
548                         glTranslatef(hawkcoords.x,hawkcoords.y,hawkcoords.z);
549                         glRotatef(hawkrotation,0,1,0);
550                         glTranslatef(25,0,0);
551                         distance=findDistancefast(&viewer,&realhawkcoords)*1.2;
552                         glColor4f(light.color[0],light.color[1],light.color[2],(viewdistance*viewdistance-(distance-(viewdistance*viewdistance*fadestart))*(1/(1-fadestart)))/viewdistance/viewdistance);
553                         if((viewdistance*viewdistance-(distance-(viewdistance*viewdistance*fadestart))*(1/(1-fadestart)))/viewdistance/viewdistance>1)glColor4f(light.color[0],light.color[1],light.color[2],1);
554                         if((viewdistance*viewdistance-(distance-(viewdistance*viewdistance*fadestart))*(1/(1-fadestart)))/viewdistance/viewdistance>0)
555                                 hawk.drawdifftex(hawktexture);
556                 }
557                 glPopMatrix();
558
559                 glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
560                 glEnable(GL_CULL_FACE);
561                 glCullFace(GL_FRONT);
562                 glDepthMask(1);
563                 for(k=0;k<numplayers;k++){
564                         if(!(k==0||tutoriallevel!=1)){
565                                 glEnable(GL_BLEND);
566                                 glEnable(GL_LIGHTING);
567                                 terrainlight=terrain.getLighting(player[k].coords.x,player[k].coords.z);
568                                 distance=findDistancefast(&viewer,&player[k].coords);
569                                 distance=(viewdistance*viewdistance-(distance-(viewdistance*viewdistance*fadestart))*(1/(1-fadestart)))/viewdistance/viewdistance;
570                                 glColor4f(terrainlight.x,terrainlight.y,terrainlight.z,distance);
571                                 if(distance>=1)glDisable(GL_BLEND);
572                                 if(distance>=.5){
573                                         checkpoint=DoRotation(player[k].skeleton.joints[abs(Random()%player[k].skeleton.num_joints)].position,0,player[k].rotation,0)*player[k].scale+player[k].coords;
574                                         checkpoint.y+=1;
575                                         if(!player[k].occluded==0)i=checkcollide(viewer,checkpoint,player[k].lastoccluded);
576                                         if(i==-1||player[k].occluded==0)i=checkcollide(viewer,checkpoint);
577                                         if(i!=-1){
578                                                 player[k].occluded+=1;
579                                                 player[k].lastoccluded=i;
580                                         }
581                                         else player[k].occluded=0;
582                                         if(player[k].occluded<25)player[k].DrawSkeleton();
583                                 }
584                         }
585                 }
586                 //}
587
588                 glPushMatrix();
589                 glEnable(GL_TEXTURE_2D);
590                 weapons.Draw();
591                 glPopMatrix();
592                 glCullFace(GL_BACK);
593
594                 glDisable(GL_COLOR_MATERIAL);
595
596                 glDisable(GL_LIGHTING);
597                 glDisable(GL_TEXTURE_2D);
598
599                 glDepthMask(0);
600
601                 Sprite::Draw();
602
603                 if(editorenabled){
604                         glEnable(GL_BLEND);
605                         glDisable(GL_LIGHTING);
606                         glDisable(GL_TEXTURE_2D);
607                         glDisable(GL_COLOR_MATERIAL);
608                         glColor4f(1,1,0,1);
609
610                         for(k=0;k<numplayers;k++){
611                                 if(player[k].numwaypoints>1){
612                                         glBegin(GL_LINE_LOOP);
613                                         for(i=0;i<player[k].numwaypoints;i++){
614                                                 glVertex3f(player[k].waypoints[i].x,player[k].waypoints[i].y+.5,player[k].waypoints[i].z);
615                                         }
616                                         glEnd();
617                                 }
618                         }
619
620
621                         if(numpathpoints>1){
622                                 glColor4f(0,1,0,1);
623                                 for(k=0;k<numpathpoints;k++){
624                                         if(numpathpointconnect[k]){
625                                                 for(i=0;i<numpathpointconnect[k];i++){
626                                                         glBegin(GL_LINE_LOOP);
627                                                         glVertex3f(pathpoint[k].x,pathpoint[k].y+.5,pathpoint[k].z);
628                                                         glVertex3f(pathpoint[pathpointconnect[k][i]].x,pathpoint[pathpointconnect[k][i]].y+.5,pathpoint[pathpointconnect[k][i]].z);                                     
629                                                         glEnd();
630                                                 }
631                                         }
632                                 }
633                                 glColor4f(1,1,1,1);
634                                 glPointSize(4);
635                                 glBegin(GL_POINTS);
636                                 glVertex3f(pathpoint[pathpointselected].x,pathpoint[pathpointselected].y+.5,pathpoint[pathpointselected].z);
637                                 glEnd();
638                         }
639                 }
640
641                 //Text
642
643                 glEnable(GL_TEXTURE_2D);
644                 glColor4f(.5,.5,.5,1);
645                 if(!console){
646                         sprintf (string, " ",(int)(fps));
647                         text.glPrint(10,30,string,0,.8,screenwidth,screenheight);
648
649                         if(!tutoriallevel)
650                                 if(bonus>0&&bonustime<1&&!winfreeze&&indialogue==-1/*bonustime<4*/){
651                                         if(bonus==tracheotomy)sprintf (string, "Tracheotomy!");
652                                         else if(bonus==backstab)sprintf (string, "Backstabber!");
653                                         else if(bonus==spinecrusher)sprintf (string, "Spinecrusher!");
654                                         else if(bonus==ninja)sprintf (string, "Ninja Bonus!");
655                                         else if(bonus==style)sprintf (string, "Style Bonus!");
656                                         else if(bonus==cannon)sprintf (string, "Leg Cannon!");
657                                         else if(bonus==aimbonus)sprintf (string, "Nice Aim!");
658                                         else if(bonus==deepimpact)sprintf (string, "Heavy Impact!");
659                                         else if(bonus==touchofdeath)sprintf (string, "Touch of Death!");
660                                         else if(bonus==swordreversebonus)sprintf (string, "Sword Disarm!");
661                                         else if(bonus==staffreversebonus)sprintf (string, "Staff Disarm!");
662                                         else if(bonus==reverseko)sprintf (string, "Reversal KO!");
663                                         else if(bonus==solidhit)sprintf (string, "Solid Hit!");
664                                         else if(bonus==twoxcombo)sprintf (string, "2X Combo!");
665                                         else if(bonus==threexcombo)sprintf (string, "3X Combo!");
666                                         else if(bonus==fourxcombo)sprintf (string, "4X COMBO!");
667                                         else if(bonus==megacombo)sprintf (string, "MEGA COMBO!");
668                                         else if(bonus==Reversal)sprintf (string, "Reversal!");
669                                         else if(bonus==Stabbonus)sprintf (string, "Punctured!");
670                                         else if(bonus==Slicebonus)sprintf (string, "Sliced!");
671                                         else if(bonus==Bullseyebonus)sprintf (string, "Bullseye!");
672                                         else if(bonus==Slashbonus)sprintf (string, "Slashed!");
673                                         else if(bonus==Wolfbonus)sprintf (string, "WOLF SLAYER!");
674                                         else if(bonus==FinishedBonus)sprintf (string, "SLAIN!");
675                                         else if(bonus==TackleBonus)sprintf (string, "Tackle!");
676                                         else if(bonus==AboveBonus)sprintf (string, "Death from Above!");
677                                         else sprintf (string, "Excellent!");
678
679                                         glColor4f(0,0,0,1-bonustime);
680                                         text.glPrintOutline(1024/2-10*strlen(string)-4,768/16-4+768*4/5,string,1,2.5,1024,768);
681                                         glColor4f(1,0,0,1-bonustime);
682                                         text.glPrint(1024/2-10*strlen(string),768/16+768*4/5,string,1,2,1024,768);
683
684                                         sprintf (string, "%d",(int)bonusvalue);
685                                         glColor4f(0,0,0,1-bonustime);
686                                         text.glPrintOutline(1024/2-10*strlen(string)-4,768/16-4-20+768*4/5,string,1,2.5*.8,1024,768);
687                                         glColor4f(1,0,0,1-bonustime);
688                                         text.glPrint(1024/2-10*strlen(string),768/16-20+768*4/5,string,1,2*.8,1024,768);
689                                         glColor4f(.5,.5,.5,1);
690                                 }
691
692                                 if(tutoriallevel==1){
693                                         tutorialopac=tutorialmaxtime-tutorialstagetime;
694                                         if(tutorialopac>1)tutorialopac=1;
695                                         if(tutorialopac<0)tutorialopac=0;
696
697                                         sprintf (string, " ");
698                                         sprintf (string2, " ");
699                                         sprintf (string3, " ");
700                                         if(tutorialstage==0){
701                                                 sprintf (string, " ");
702                                                 sprintf (string2, " ");
703                                                 sprintf (string3, " ");
704                                         }
705                                         if(tutorialstage==1){
706                                                 sprintf (string, "Welcome to the Lugaru training level!");
707                                                 sprintf (string2, " ");
708                                                 sprintf (string3, " ");
709                                         }
710                                         if(tutorialstage==2){
711                                                 sprintf (string, "BASIC MOVEMENT:");
712                                                 sprintf (string2, " ");
713                                                 sprintf (string3, " ");
714                                         }
715                                         if(tutorialstage==3){
716                                                 sprintf (string, "You can move the mouse to rotate the camera.");
717                                                 sprintf (string2, " ");
718                                                 sprintf (string3, " ");
719                                         }
720                                         if(tutorialstage==4){
721                                                 sprintf (string, "Try using the %s, %s, %s and %s keys to move around.",Input::keyToChar(forwardkey),Input::keyToChar(leftkey),Input::keyToChar(backkey),Input::keyToChar(rightkey));
722                                                 sprintf (string2, "All movement is relative to the camera.");
723                                                 sprintf (string3, " ");
724                                         }
725                                         if(tutorialstage==5){
726                                                 sprintf (string, "Please press %s to jump.",Input::keyToChar(jumpkey));
727                                                 sprintf (string2, "You can hold it longer to jump higher.");
728                                                 sprintf (string3, " ");
729                                         }
730                                         if(tutorialstage==6){
731                                                 sprintf (string, "You can press %s to crouch.",Input::keyToChar(crouchkey));
732                                                 sprintf (string2, "You can jump higher from a crouching position.");
733                                                 sprintf (string3, " ");
734                                         }
735                                         if(tutorialstage==7){
736                                                 sprintf (string, "While running, you can press %s to roll.",Input::keyToChar(crouchkey));
737                                                 sprintf (string2, " ");
738                                                 sprintf (string3, " ");
739                                         }
740                                         if(tutorialstage==8){
741                                                 sprintf (string, "While crouching, you can sneak around silently");
742                                                 sprintf (string2, "using the movement keys.");
743                                                 sprintf (string3, " ");
744                                         }
745                                         if(tutorialstage==9){
746                                                 sprintf (string, "Release the crouch key while sneaking and hold the movement keys");
747                                                 sprintf (string2, "to run animal-style.");
748                                                 sprintf (string3, " ");
749                                         }
750                                         if(tutorialstage==10){
751                                                 sprintf (string, "ADVANCED MOVEMENT:");
752                                                 sprintf (string2, " ");
753                                                 sprintf (string3, " ");
754                                         }
755                                         if(tutorialstage==11){
756                                                 sprintf (string, "When you jump at a wall, you can hold %s again",Input::keyToChar(jumpkey));
757                                                 sprintf (string2, "during impact to perform a walljump.");
758                                                 sprintf (string3, "Be sure to use the movement keys to press against the wall");
759                                         }
760                                         if(tutorialstage==12){
761                                                 sprintf (string, "While in the air, you can press crouch to flip.",Input::keyToChar(jumpkey));
762                                                 sprintf (string2, "Walljumps and flips confuse enemies and give you more control.");
763                                                 sprintf (string3, " ");
764                                         }
765                                         if(tutorialstage==13){
766                                                 sprintf (string, "BASIC COMBAT:");
767                                                 sprintf (string2, " ");
768                                                 sprintf (string3, " ");
769                                         }
770                                         if(tutorialstage==14){
771                                                 sprintf (string, "There is now an imaginary enemy");
772                                                 sprintf (string2, "in the middle of the training area.");
773                                                 sprintf (string3, " ");
774                                         }
775                                         if(tutorialstage==15){
776                                                 if(attackkey==MOUSEBUTTON1)sprintf (string, "Click to attack when you are near an enemy.");
777                                                 else sprintf (string, "Press %s to attack when you are near an enemy.",Input::keyToChar(attackkey));
778                                                 sprintf (string2, "You can punch by standing still near an enemy and attacking.");
779                                                 sprintf (string3, " ");
780                                         }
781                                         if(tutorialstage==16){
782                                                 sprintf (string, "If you are close, you will perform a weak punch.");
783                                                 sprintf (string2, "The weak punch is excellent for starting attack combinations.");
784                                                 sprintf (string3, " ");
785                                         }
786                                         if(tutorialstage==17){
787                                                 sprintf (string, "Attacking while running results in a spin kick.");
788                                                 sprintf (string2, "This is one of your most powerful ground attacks.");
789                                                 sprintf (string3, " ");
790                                         }
791                                         if(tutorialstage==18){
792                                                 sprintf (string, "Sweep the enemy's legs out by attacking while crouched.");
793                                                 sprintf (string2, "This is a very fast attack, and easy to follow up.");
794                                                 sprintf (string3, " ");
795                                         }
796                                         if(tutorialstage==19){
797                                                 sprintf (string, "When an enemy is on the ground, you can deal some extra");
798                                                 sprintf (string2, "damage by running up and drop-kicking him.");
799                                                 sprintf (string3, "(Try knocking them down with a sweep first)");
800                                         }
801                                         if(tutorialstage==20){
802                                                 sprintf (string, "Your most powerful individual attack is the rabbit kick.");
803                                                 if(attackkey==MOUSEBUTTON1)sprintf (string2, "Run at the enemy while holding the mouse button, and press");
804                                                 else sprintf (string2, "Run at the enemy while holding %s, and press", Input::keyToChar(attackkey));
805                                                 sprintf (string3, "the jump key (%s) to attack.",Input::keyToChar(jumpkey));
806                                         }
807                                         if(tutorialstage==21){
808                                                 sprintf (string, "This attack is devastating if timed correctly.");
809                                                 sprintf (string2, "Even if timed incorrectly, it will knock the enemy over.");
810                                                 if(againbonus)sprintf (string3, "Try rabbit-kicking the imaginary enemy again.");
811                                                 else sprintf (string3, "Try rabbit-kicking the imaginary enemy.");
812                                         }
813                                         if(tutorialstage==22){
814                                                 sprintf (string, "If you sneak behind an enemy unnoticed, you can kill");
815                                                 sprintf (string2, "him instantly. Move close behind this enemy");
816                                                 sprintf (string3, "and attack.");
817                                         }
818                                         if(tutorialstage==23){
819                                                 sprintf (string, "Another important attack is the wall kick. When an enemy");
820                                                 sprintf (string2, "is near a wall, perform a walljump nearby and hold");
821                                                 sprintf (string3, "the attack key during impact with the wall.");
822                                         }
823                                         if(tutorialstage==24){
824                                                 sprintf (string, "You can tackle enemies by running at them animal-style");
825                                                 if(attackkey==MOUSEBUTTON1)sprintf (string2, "and pressing jump (%s) or attack(mouse button).",Input::keyToChar(jumpkey));
826                                                 else sprintf (string2, "and pressing jump (%s) or attack(%s).",Input::keyToChar(jumpkey),Input::keyToChar(attackkey));
827                                                 sprintf (string3, "This is especially useful when they are running away.");
828                                         }
829                                         if(tutorialstage==25){
830                                                 sprintf (string, "Dodge by pressing back and attack. Dodging is essential");
831                                                 sprintf (string2, "against enemies with swords or other long weapons.");
832                                                 sprintf (string3, " ");
833                                         }
834                                         if(tutorialstage==26){
835                                                 sprintf (string, "REVERSALS AND COUNTER-REVERSALS");
836                                                 sprintf (string2, " ");
837                                                 sprintf (string3, " ");
838                                         }
839                                         if(tutorialstage==27){
840                                                 sprintf (string, "The enemy can now reverse your attacks.");
841                                                 sprintf (string2, " ");
842                                                 sprintf (string3, " ");
843                                         }
844                                         if(tutorialstage==28){
845                                                 sprintf (string, "If you attack, you will notice that the enemy now sometimes");
846                                                 sprintf (string2, "catches your attack and uses it against you. Hold");
847                                                 sprintf (string3, "crouch (%s) after attacking to escape from reversals.",Input::keyToChar(crouchkey));
848                                         }
849                                         if(tutorialstage==29){
850                                                 sprintf (string, "Try escaping from two more reversals in a row.");
851                                                 sprintf (string2, " ");
852                                                 sprintf (string3, " ");
853                                         }
854                                         if(tutorialstage==30){
855                                                 sprintf (string, "Good!");
856                                                 sprintf (string2, " ");
857                                                 sprintf (string3, " ");
858                                         }
859                                         if(tutorialstage==31){
860                                                 sprintf (string, "To reverse an attack, you must tap crouch (%s) during the",Input::keyToChar(crouchkey));
861                                                 sprintf (string2, "enemy's attack. You must also be close to the enemy;");
862                                                 sprintf (string3, "this is especially important against armed opponents.");
863                                         }
864                                         if(tutorialstage==32){
865                                                 sprintf (string, "The enemy can attack in %d seconds.", (int)(tutorialmaxtime-tutorialstagetime));
866                                                 sprintf (string2, "This imaginary opponents attacks will be highlighted");
867                                                 sprintf (string3, "to make this easier.");
868                                         }
869                                         if(tutorialstage==33){
870                                                 sprintf (string, "Reverse three enemy attacks!");
871                                                 sprintf (string2, " ");
872                                                 sprintf (string3, " ");
873                                         }
874                                         if(tutorialstage==34){
875                                                 sprintf (string, "Reverse two more enemy attacks!");
876                                                 sprintf (string2, " ");
877                                                 sprintf (string3, " ");
878                                         }
879                                         if(tutorialstage==35){
880                                                 sprintf (string, "Reverse one more enemy attack!");
881                                                 sprintf (string2, " ");
882                                                 sprintf (string3, " ");
883                                         }
884                                         if(tutorialstage==36){
885                                                 sprintf (string, "Excellent!");
886                                                 sprintf (string2, " ");
887                                                 sprintf (string3, " ");
888                                         }
889                                         if(tutorialstage==37){
890                                                 sprintf (string, "Now spar with the enemy for %d more seconds.", (int)(tutorialmaxtime-tutorialstagetime));
891                                                 sprintf (string2, "Damage dealt: %d",(int)damagedealt);
892                                                 sprintf (string3, "Damage taken: %d.",(int)damagetaken);
893                                         }
894                                         if(tutorialstage==38){
895                                                 sprintf (string, "WEAPONS:");
896                                                 sprintf (string2, " ");
897                                                 sprintf (string3, " ");
898                                         }
899                                         if(tutorialstage==39){
900                                                 sprintf (string, "There is now an imaginary knife");
901                                                 sprintf (string2, "in the center of the training area.");
902                                                 sprintf (string3, " ");
903                                         }
904                                         if(tutorialstage==40){
905                                                 sprintf (string, "Stand, roll or handspring over the knife");
906                                                 sprintf (string2, "while pressing %s to pick it up.",Input::keyToChar(throwkey));
907                                                 sprintf (string3, "You can crouch and press the same key to drop it again.");
908                                         }
909                                         if(tutorialstage==41){
910                                                 sprintf (string, "You can equip and unequip weapons using the %s key.",Input::keyToChar(drawkey));
911                                                 sprintf (string2, "Sometimes it is best to keep them unequipped to");
912                                                 sprintf (string3, "prevent enemies from taking them. ");
913                                         }
914                                         if(tutorialstage==42){
915                                                 sprintf (string, "The knife is the smallest weapon and the least encumbering.");
916                                                 sprintf (string2, "You can equip or unequip it while standing, crouching,");
917                                                 sprintf (string3, "running or flipping.");
918                                         }
919                                         if(tutorialstage==43){
920                                                 sprintf (string, "You perform weapon attacks the same way as unarmed attacks,");
921                                                 sprintf (string2, "but sharp weapons cause permanent damage, instead of the");
922                                                 sprintf (string3, "temporary trauma from blunt weapons, fists and feet.");
923                                         }
924                                         if(tutorialstage==44){
925                                                 sprintf (string, "The enemy now has your knife!");
926                                                 sprintf (string2, "Please reverse two of his knife attacks.");
927                                                 sprintf (string3, " ");
928                                         }
929                                         if(tutorialstage==45){
930                                                 sprintf (string, "Please reverse one more of his knife attacks.");
931                                                 sprintf (string2, " ");
932                                                 sprintf (string3, " ");
933                                         }
934                                         if(tutorialstage==46){
935                                                 sprintf (string, "Now he has a sword!");
936                                                 sprintf (string2, "The sword has longer reach than your arms, so you");
937                                                 sprintf (string3, "must move close to reverse the sword slash.");
938                                         }
939                                         if(tutorialstage==47){
940                                                 sprintf (string, "Long weapons like the sword and staff are also useful for defense;");
941                                                 sprintf (string2, "you can parry enemy weapon attacks by pressing the attack key");
942                                                 sprintf (string3, "at the right time. Please try parrying the enemy's attacks!");
943                                         }
944                                         if(tutorialstage==48){
945                                                 sprintf (string, "The staff is like the sword, but has two main attacks.");
946                                                 sprintf (string2, "The standing smash is fast and effective, and the running");
947                                                 sprintf (string3, "spin smash is slower and more powerful.");
948                                         }
949                                         if(tutorialstage==49){
950                                                 sprintf (string, "When facing an enemy, you can throw the knife with %s.",Input::keyToChar(throwkey));
951                                                 sprintf (string2, "It is possible to throw the knife while flipping,");
952                                                 sprintf (string3, "but it is very inaccurate.");
953                                         }
954                                         if(tutorialstage==50){
955                                                 sprintf (string, "You now know everything you can learn from training.");
956                                                 sprintf (string2, "Everything else you must learn from experience!");
957                                                 sprintf (string3, " ");
958                                         }
959                                         if(tutorialstage==51){
960                                                 sprintf (string, "Walk out of the training area to return to the main menu.");
961                                                 sprintf (string2, " ");
962                                                 sprintf (string3, " ");
963                                         }
964
965                                         glColor4f(0,0,0,tutorialopac);
966                                         text.glPrintOutline(screenwidth/2-7.6*strlen(string)*screenwidth/1024-4,screenheight/16-4+screenheight*4/5,string,1,1.5*1.25*screenwidth/1024,screenwidth,screenheight);
967                                         text.glPrintOutline(screenwidth/2-7.6*strlen(string2)*screenwidth/1024-4,screenheight/16-4+screenheight*4/5-20*screenwidth/1024,string2,1,1.5*1.25*screenwidth/1024,screenwidth,screenheight);
968                                         text.glPrintOutline(screenwidth/2-7.6*strlen(string3)*screenwidth/1024-4,screenheight/16-4+screenheight*4/5-40*screenwidth/1024,string3,1,1.5*1.25*screenwidth/1024,screenwidth,screenheight);
969                                         glColor4f(1,1,1,tutorialopac);
970                                         text.glPrint(screenwidth/2-7.6*strlen(string)*screenwidth/1024,screenheight/16+screenheight*4/5,string,1,1.5*screenwidth/1024,screenwidth,screenheight);
971                                         text.glPrint(screenwidth/2-7.6*strlen(string2)*screenwidth/1024,screenheight/16+screenheight*4/5-20*screenwidth/1024,string2,1,1.5*screenwidth/1024,screenwidth,screenheight);
972                                         text.glPrint(screenwidth/2-7.6*strlen(string3)*screenwidth/1024,screenheight/16+screenheight*4/5-40*screenwidth/1024,string3,1,1.5*screenwidth/1024,screenwidth,screenheight);
973
974                                         sprintf (string, "Press 'tab' to skip to the next item.",Input::keyToChar(jumpkey));
975                                         sprintf (string2, "Press escape at any time to");
976                                         sprintf (string3, "pause or exit the tutorial.");
977
978                                         glColor4f(0,0,0,1);
979                                         text.glPrintOutline(screenwidth/2-7.6*strlen(string)*screenwidth/1024*.8-4,0-4+screenheight*1/10,string,1,1.5*1.25*screenwidth/1024*.8,screenwidth,screenheight);
980                                         text.glPrintOutline(screenwidth/2-7.6*strlen(string2)*screenwidth/1024*.8-4,0-4+screenheight*1/10-20*.8*screenwidth/1024,string2,1,1.5*1.25*screenwidth/1024*.8,screenwidth,screenheight);
981                                         text.glPrintOutline(screenwidth/2-7.6*strlen(string3)*screenwidth/1024*.8-4,0-4+screenheight*1/10-40*.8*screenwidth/1024,string3,1,1.5*1.25*screenwidth/1024*.8,screenwidth,screenheight);
982                                         glColor4f(0.5,0.5,0.5,1);
983                                         text.glPrint(screenwidth/2-7.6*strlen(string)*screenwidth/1024*.8,0+screenheight*1/10,string,1,1.5*screenwidth/1024*.8,screenwidth,screenheight);
984                                         text.glPrint(screenwidth/2-7.6*strlen(string2)*screenwidth/1024*.8,0+screenheight*1/10-20*.8*screenwidth/1024,string2,1,1.5*screenwidth/1024*.8,screenwidth,screenheight);
985                                         text.glPrint(screenwidth/2-7.6*strlen(string3)*screenwidth/1024*.8,0+screenheight*1/10-40*.8*screenwidth/1024,string3,1,1.5*screenwidth/1024*.8,screenwidth,screenheight);
986                                 }
987                                 //Hot spots     
988
989                                 if(numhotspots&&(bonustime>=1||bonus<=0||bonustime<0)&&!tutoriallevel){
990                                         int closest=-1;
991                                         float closestdist=-1;
992                                         float distance=0;
993                                         closest=currenthotspot;
994                                         for(i=0;i<numhotspots;i++){
995                                                 distance=findDistancefast(&player[0].coords,&hotspot[i]);
996                                                 if(closestdist==-1||distance<closestdist){
997                                                         if(findDistancefast(&player[0].coords,&hotspot[i])<hotspotsize[i]&&((hotspottype[i]<=10&&hotspottype[i]>=0)||(hotspottype[i]<=40&&hotspottype[i]>=20))){
998                                                                 closestdist=distance;
999                                                                 closest=i;
1000                                                         }
1001                                                 }
1002                                         }
1003                                         if(closest!=-1)
1004                                                 currenthotspot=closest;
1005                                         if(currenthotspot!=-1){
1006                                                 if(hotspottype[closest]<=10){
1007                                                         if(findDistancefast(&player[0].coords,&hotspot[closest])<hotspotsize[closest])
1008                                                                 tutorialstagetime=0;
1009                                                         tutorialmaxtime=1;
1010                                                         tutorialopac=tutorialmaxtime-tutorialstagetime;
1011                                                         if(tutorialopac>1)tutorialopac=1;
1012                                                         if(tutorialopac<0)tutorialopac=0;
1013
1014                                                         sprintf (string, "%s", hotspottext[closest]);
1015
1016                                                         int lastline;
1017                                                         int line=0;
1018                                                         bool done=0;
1019                                                         lastline=0;
1020                                                         i=0;
1021                                                         while(!done){
1022                                                                 if(string[i]=='\n'||string[i]>'z'||string[i]<' '||string[i]=='\0'){
1023                                                                         glColor4f(0,0,0,tutorialopac);
1024                                                                         text.glPrintOutline(screenwidth/2-7.6*(i-lastline)*screenwidth/1024-4,screenheight/16-4+screenheight*4/5-20*screenwidth/1024*line,string,1,1.5*1.25*screenwidth/1024,screenwidth,screenheight,lastline,i);
1025                                                                         glColor4f(1,1,1,tutorialopac);
1026                                                                         text.glPrint(screenwidth/2-7.6*(i-lastline)*screenwidth/1024,screenheight/16+screenheight*4/5-20*screenwidth/1024*line,string,1,1.5*screenwidth/1024,screenwidth,screenheight,lastline,i);
1027                                                                         lastline=i+1;
1028                                                                         line++;
1029                                                                         if(string[i]=='\0')done=1;
1030                                                                 }
1031                                                                 if(i>=255)done=1;
1032                                                                 i++;
1033                                                         }
1034                                                 }
1035                                                 else if (hotspottype[closest]>=20&&dialoguegonethrough[hotspottype[closest]-20]==0){
1036                                                         whichdialogue=hotspottype[closest]-20;
1037                                                         for(j=0;j<numdialogueboxes[whichdialogue];j++){
1038                                                                 player[participantfocus[whichdialogue][j]].coords=participantlocation[whichdialogue][participantfocus[whichdialogue][j]];
1039                                                                 player[participantfocus[whichdialogue][j]].rotation=participantrotation[whichdialogue][participantfocus[whichdialogue][j]];
1040                                                                 player[participantfocus[whichdialogue][j]].targetrotation=participantrotation[whichdialogue][participantfocus[whichdialogue][j]];
1041                                                                 player[participantfocus[whichdialogue][j]].velocity=0;
1042                                                                 player[participantfocus[whichdialogue][j]].targetanimation=player[participantfocus[whichdialogue][j]].getIdle();
1043                                                                 player[participantfocus[whichdialogue][j]].targetframe=0;
1044                                                         }
1045                                                         directing=0;
1046                                                         indialogue=0;
1047                                                         dialoguegonethrough[whichdialogue]++;
1048                                                         if(dialogueboxsound[whichdialogue][indialogue]!=0){
1049                                                                 static float gLoc[3];
1050                                                                 static float vel[3];
1051                                                                 gLoc[0]=player[participantfocus[whichdialogue][indialogue]].coords.x;
1052                                                                 gLoc[1]=player[participantfocus[whichdialogue][indialogue]].coords.y;
1053                                                                 gLoc[2]=player[participantfocus[whichdialogue][indialogue]].coords.z;
1054                                                                 vel[0]=0;
1055                                                                 vel[1]=0;
1056                                                                 vel[2]=0;
1057                                                                 int whichsoundplay;
1058                                                                 if(dialogueboxsound[whichdialogue][indialogue]==1)whichsoundplay=rabbitchitter;
1059                                                                 if(dialogueboxsound[whichdialogue][indialogue]==2)whichsoundplay=rabbitchitter2;
1060                                                                 if(dialogueboxsound[whichdialogue][indialogue]==3)whichsoundplay=rabbitpainsound;
1061                                                                 if(dialogueboxsound[whichdialogue][indialogue]==4)whichsoundplay=rabbitpain1sound;
1062                                                                 if(dialogueboxsound[whichdialogue][indialogue]==5)whichsoundplay=rabbitattacksound;
1063                                                                 if(dialogueboxsound[whichdialogue][indialogue]==6)whichsoundplay=rabbitattack2sound;
1064                                                                 if(dialogueboxsound[whichdialogue][indialogue]==7)whichsoundplay=rabbitattack3sound;
1065                                                                 if(dialogueboxsound[whichdialogue][indialogue]==8)whichsoundplay=rabbitattack4sound;
1066                                                                 if(dialogueboxsound[whichdialogue][indialogue]==9)whichsoundplay=growlsound;
1067                                                                 if(dialogueboxsound[whichdialogue][indialogue]==10)whichsoundplay=growl2sound;
1068                                                                 if(dialogueboxsound[whichdialogue][indialogue]==11)whichsoundplay=snarlsound;
1069                                                                 if(dialogueboxsound[whichdialogue][indialogue]==12)whichsoundplay=snarl2sound;
1070                                                                 if(dialogueboxsound[whichdialogue][indialogue]==13)whichsoundplay=barksound;
1071                                                                 if(dialogueboxsound[whichdialogue][indialogue]==14)whichsoundplay=bark2sound;
1072                                                                 if(dialogueboxsound[whichdialogue][indialogue]==15)whichsoundplay=bark3sound;
1073                                                                 if(dialogueboxsound[whichdialogue][indialogue]==16)whichsoundplay=barkgrowlsound;
1074                                                                 if(dialogueboxsound[whichdialogue][indialogue]==-1)whichsoundplay=fireendsound;
1075                                                                 if(dialogueboxsound[whichdialogue][indialogue]==-2)whichsoundplay=firestartsound;
1076                                                                 if(dialogueboxsound[whichdialogue][indialogue]==-3)whichsoundplay=consolesuccesssound;
1077                                                                 if(dialogueboxsound[whichdialogue][indialogue]==-4)whichsoundplay=consolefailsound;
1078                                                                 PlaySoundEx( whichsoundplay, samp[whichsoundplay], NULL, true);
1079                                                                 OPENAL_3D_SetAttributes(channels[whichsoundplay], gLoc, vel);
1080                                                                 OPENAL_SetVolume(channels[whichsoundplay], 256);
1081                                                                 OPENAL_SetPaused(channels[whichsoundplay], false);
1082                                                         }
1083                                                 }
1084                                         }
1085                                 }
1086
1087                                 if(indialogue!=-1&&!mainmenu){
1088                                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
1089                                         glDisable(GL_CULL_FACE);
1090                                         glDisable(GL_LIGHTING);
1091                                         glDisable(GL_TEXTURE_2D);
1092                                         glDepthMask(0);
1093                                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1094                                         glPushMatrix();                                                                         // Store The Projection Matrix
1095                                         glLoadIdentity();                                                                       // Reset The Projection Matrix
1096                                         glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
1097                                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1098                                         glPushMatrix();                                                                         // Store The Modelview Matrix
1099                                         glLoadIdentity();                                                               // Reset The Modelview Matrix
1100                                         if(dialogueboxlocation[whichdialogue][indialogue]==1)glTranslatef(0,screenheight*3/4,0);
1101                                         glScalef(screenwidth,screenheight/4,1);
1102                                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
1103                                         glEnable(GL_BLEND);
1104
1105                                         glColor4f(dialogueboxcolor[whichdialogue][indialogue][0],dialogueboxcolor[whichdialogue][indialogue][1],dialogueboxcolor[whichdialogue][indialogue][2],0.7);
1106                                         glBegin(GL_QUADS);
1107                                         glVertex3f(0,           0,       0.0f);
1108                                         glVertex3f(1,   0,       0.0f);
1109                                         glVertex3f(1,   1, 0.0f);
1110                                         glVertex3f(0,   1, 0.0f);
1111                                         glEnd();
1112                                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1113                                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1114                                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1115                                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1116                                         glEnable(GL_DEPTH_TEST);                                                        // Enables Depth Testing
1117                                         glEnable(GL_CULL_FACE);
1118                                         glDisable(GL_BLEND);
1119                                         glDepthMask(1);
1120                                         glEnable(GL_TEXTURE_2D);
1121
1122                                         tutorialopac=1;
1123
1124                                         float startx;
1125                                         float starty;
1126
1127                                         startx=screenwidth*1/5;
1128                                         if(dialogueboxlocation[whichdialogue][indialogue]==1)starty=screenheight/16+screenheight*4/5;
1129                                         if(dialogueboxlocation[whichdialogue][indialogue]==2)starty=screenheight*1/5-screenheight/16;
1130
1131 //                                      char tempname[64];
1132                                         char tempname[264];
1133                                         bool goodchar;
1134                                         int tempnum=0;
1135 //                                      for(i=0;i<64;i++){
1136                                         for(i=0;i<264;i++){
1137                                                 tempname[i]='\0';
1138                                         }
1139
1140                                         for(i=0;i<(int)strlen(dialoguename[whichdialogue][indialogue]);i++){
1141                                                 tempname[tempnum]=dialoguename[whichdialogue][indialogue][i];
1142                                                 goodchar=1;
1143                                                 if(dialoguename[whichdialogue][indialogue][i]=='#'||dialoguename[whichdialogue][indialogue][i]=='\0')goodchar=0;
1144                                                 //if(tempnum>2)if(tempname[tempnum-2]=='e'&&tempname[tempnum-1]=='r')goodchar=0;
1145                                                 //if(tempnum>2)if(tempname[tempnum]=='r'&&tempname[0]=='a')goodchar=0;
1146                                                 if(goodchar)tempnum++;
1147                                                 else tempname[tempnum]='\0';
1148                                         }
1149
1150                                         sprintf (string, "%s: ", tempname);
1151
1152                                         if(dialogueboxcolor[whichdialogue][indialogue][0]+dialogueboxcolor[whichdialogue][indialogue][1]+dialogueboxcolor[whichdialogue][indialogue][2]<1.5){
1153                                                 glColor4f(0,0,0,tutorialopac);
1154                                                 text.glPrintOutline(startx-2*7.6*strlen(string)*screenwidth/1024-4,starty-4,string,1,1.5*1.25*screenwidth/1024,screenwidth,screenheight);
1155                                                 glColor4f(0.7,0.7,0.7,tutorialopac);
1156                                                 text.glPrint(startx-2*7.6*strlen(string)*screenwidth/1024,starty,string,1,1.5*screenwidth/1024,screenwidth,screenheight);
1157                                         }
1158                                         else
1159                                         {
1160                                                 glColor4f(0,0,0,tutorialopac);
1161                                                 text.glPrintOutline(startx-2*7.6*strlen(string)*screenwidth/1024-4,starty-4,string,1,1.5*1.25*screenwidth/1024,screenwidth,screenheight);
1162
1163                                         }
1164
1165                                         tempnum=0;
1166                                         for(i=0;i<(int)strlen(dialoguetext[whichdialogue][indialogue])+1;i++){
1167                                                 tempname[tempnum]=dialoguetext[whichdialogue][indialogue][i];
1168                                                 if(dialoguetext[whichdialogue][indialogue][i]!='#')tempnum++;
1169                                         }
1170
1171
1172                                         sprintf (string, "%s", tempname);
1173
1174
1175                                         int lastline;
1176                                         int line=0;
1177                                         bool done=0;
1178                                         lastline=0;
1179                                         i=0;
1180                                         while(!done){
1181                                                 if(string[i]=='\n'||string[i]>'z'||string[i]<' '||string[i]=='\0'){
1182                                                         if(dialogueboxcolor[whichdialogue][indialogue][0]+dialogueboxcolor[whichdialogue][indialogue][1]+dialogueboxcolor[whichdialogue][indialogue][2]<1.5){
1183                                                                 glColor4f(0,0,0,tutorialopac);
1184                                                                 text.glPrintOutline(startx/*-7.6*(i-lastline)*screenwidth/1024*/-4,starty-4-20*screenwidth/1024*line,string,1,1.5*1.25*screenwidth/1024,screenwidth,screenheight,lastline,i);
1185                                                                 glColor4f(1,1,1,tutorialopac);
1186                                                                 text.glPrint(startx/*-7.6*(i-lastline)*screenwidth/1024*/,starty-20*screenwidth/1024*line,string,1,1.5*screenwidth/1024,screenwidth,screenheight,lastline,i);
1187                                                         }
1188                                                         else
1189                                                         {
1190                                                                 glColor4f(0,0,0,tutorialopac);
1191                                                                 text.glPrint(startx/*-7.6*(i-lastline)*screenwidth/1024*/,starty-20*screenwidth/1024*line,string,1,1.5*screenwidth/1024,screenwidth,screenheight,lastline,i);
1192                                                         }
1193                                                         lastline=i+1;
1194                                                         line++;
1195                                                         if(string[i]=='\0')done=1;
1196                                                 }
1197                                                 if(i>=255)done=1;
1198                                                 i++;
1199                                         }
1200                                 }       
1201
1202                                 if(!tutoriallevel&&!winfreeze&&indialogue==-1&&!mainmenu){
1203                                         if(campaign){
1204                                                 if(!scoreadded)sprintf (string, "Score: %d", (int)accountactive->getCampaignScore()+(int)bonustotal);//(int)bonustotal);
1205                                                 if(scoreadded)sprintf (string, "Score: %d", (int)accountactive->getCampaignScore());//(int)bonustotal);
1206                                         }
1207                                         if(!campaign)sprintf (string, "Score: %d", (int)bonustotal);
1208                                         glColor4f(0,0,0,1);
1209                                         text.glPrintOutline(1024/40-4,768/16-4+768*14/16,string,1,1.5*1.25,1024,768);
1210                                         glColor4f(1,0,0,1);
1211                                         text.glPrint(1024/40,768/16+768*14/16,string,1,1.5,1024,768);
1212                                         if(showdamagebar) {
1213                                                 glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
1214                                                 glDisable(GL_CULL_FACE);
1215                                                 glDisable(GL_LIGHTING);
1216                                                 glDisable(GL_TEXTURE_2D);
1217                                                 glDepthMask(0);
1218                                                 glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1219                                                 glPushMatrix();                                                                         // Store The Projection Matrix
1220                                                 glLoadIdentity();                                                                       // Reset The Projection Matrix
1221                                                 glOrtho(0,screenwidth,0,screenheight,-100,100);         // Set Up An Ortho Screen
1222                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1223                                                 glPushMatrix();                                                                         // Store The Modelview Matrix
1224                                                 glLoadIdentity();                                                                       // Reset The Modelview Matrix
1225                                                 glTranslatef(15,screenheight*17.5/20,0);
1226                                                 glScalef(screenwidth/3+20,screenheight/20,1);
1227                                                 glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
1228                                                 glEnable(GL_BLEND);
1229                                                 glColor4f(0.0,0.4,0.0,0.7);
1230                                                 float bar=((float)player[0].damage)/player[0].damagetolerance;
1231                                                 glBegin(GL_QUADS);
1232                                                 glVertex3f((bar<1?bar:1),0,0.0f);
1233                                                 glVertex3f(1,0,0.0f);
1234                                                 glVertex3f(1,1,0.0f);
1235                                                 glVertex3f((bar<1?bar:1),1,0.0f);
1236                                                 glEnd();
1237                                                 glColor4f(0.1,0.0,0.0,1);
1238                                                 bar = ((float)player[0].bloodloss)/player[0].damagetolerance;
1239                                                 glBegin(GL_QUADS);
1240                                                 glVertex3f(0,0,0.0f);
1241                                                 glVertex3f((bar<1?bar:1),0,0.0f);
1242                                                 glVertex3f((bar<1?bar:1),1,0.0f);
1243                                                 glVertex3f(0,1,0.0f);
1244                                                 glEnd();
1245                                                 glColor4f(0.4,0.0,0.0,0.7);
1246                                                 bar = ((float)player[0].damage)/player[0].damagetolerance;
1247                                                 glBegin(GL_QUADS);
1248                                                 glVertex3f(0,0,0.0f);
1249                                                 glVertex3f((bar<1?bar:1),0,0.0f);
1250                                                 glVertex3f((bar<1?bar:1),1,0.0f);
1251                                                 glVertex3f(0,1,0.0f);
1252                                                 glEnd();
1253                                                 glColor4f(0.4,0.0,0.0,0.7);
1254                                                 bar = ((float)player[0].permanentdamage)/player[0].damagetolerance;
1255                                                 glBegin(GL_QUADS);
1256                                                 glVertex3f(0,0,0.0f);
1257                                                 glVertex3f((bar<1?bar:1),0,0.0f);
1258                                                 glVertex3f((bar<1?bar:1),1,0.0f);
1259                                                 glVertex3f(0,1,0.0f);
1260                                                 glEnd();
1261                                                 glColor4f(0.4,0.0,0.0,0.7);
1262                                                 bar = ((float)player[0].superpermanentdamage)/player[0].damagetolerance;
1263                                                 glBegin(GL_QUADS);
1264                                                 glVertex3f(0,0,0.0f);
1265                                                 glVertex3f((bar<1?bar:1),0,0.0f);
1266                                                 glVertex3f((bar<1?bar:1),1,0.0f);
1267                                                 glVertex3f(0,1,0.0f);
1268                                                 glEnd();
1269                                                 glColor4f(0.0,0.0,0.0,0.7);
1270                                                 glLineWidth(2.0);
1271                                                 glBegin(GL_LINE_STRIP);
1272                                                 glVertex3f(0,0,0.0f);
1273                                                 glVertex3f(1,0,0.0f);
1274                                                 glVertex3f(1,1,0.0f);
1275                                                 glVertex3f(0,1,0.0f);
1276                                                 glVertex3f(0,0,0.0f);
1277                                                 glEnd();
1278                                                 
1279                                                 glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1280                                                 glPopMatrix();                                                                          // Restore The Old Projection Matrix
1281                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1282                                                 glPopMatrix();                                                                          // Restore The Old Projection Matrix
1283                                                 glEnable(GL_DEPTH_TEST);                                                        // Enables Depth Testing
1284                                                 glEnable(GL_CULL_FACE);
1285                                                 glDisable(GL_BLEND);
1286                                                 glDepthMask(1);
1287                                                 glEnable(GL_TEXTURE_2D);
1288                                                 
1289                                                 // writing the numbers : 
1290                                                 sprintf (string, "Damages : %d/%d (%d)",(int)(player[0].damage),(int)(player[0].damagetolerance),(int)(player[0].bloodloss));
1291                                                 glColor4f(0,0,0,1);
1292                                                 text.glPrintOutline(1024/40-4,768/16-4+768*14/16-40,string,1,1.5*1.25,1024,768);
1293                                                 glColor4f(1,0,0,1);
1294                                                 text.glPrint(1024/40,768/16+768*14/16-40,string,1,1.5,1024,768);
1295                                         }
1296                                 }
1297
1298                                 glColor4f(.5,.5,.5,1);
1299
1300
1301                                 if((texttoggle||editorenabled)&&debugmode&&!mainmenu){
1302                                         sprintf (string, "The framespersecond is %d.",(int)(fps));
1303                                         text.glPrint(10,30,string,0,.8,1024,768);
1304
1305                                         sprintf (string, "Name: %s", registrationname);
1306                                         text.glPrint(10,260,string,0,.8,1024,768);
1307
1308
1309                                         if(editorenabled)sprintf (string, "Map editor enabled.");
1310                                         if(!editorenabled)sprintf (string, "Map editor Disabled.");
1311                                         text.glPrint(10,60,string,0,.8,1024,768);
1312                                         if(editorenabled){
1313                                                 sprintf (string, "Object size: %f",editorsize);
1314                                                 text.glPrint(10,75,string,0,.8,1024,768);
1315                                                 if(editorrotation>=0)sprintf (string, "Object rotation: %f",editorrotation);
1316                                                 else sprintf (string, "Object rotation: Random");
1317                                                 text.glPrint(10,90,string,0,.8,1024,768);
1318                                                 if(editorrotation2>=0)sprintf (string, "Object rotation2: %f",editorrotation2);
1319                                                 else sprintf (string, "Object rotation2: Random");
1320                                                 text.glPrint(10,105,string,0,.8,1024,768);
1321                                                 sprintf (string, "Object type: %d",editortype);
1322                                                 text.glPrint(10,120,string,0,.8,1024,768);
1323                                                 if(editortype==boxtype)sprintf (string, "(box)");
1324                                                 if(editortype==treetrunktype)sprintf (string, "(tree)");
1325                                                 if(editortype==walltype)sprintf (string, "(wall)");
1326                                                 if(editortype==weirdtype)sprintf (string, "(weird)");
1327                                                 if(editortype==spiketype)sprintf (string, "(spike)");
1328                                                 if(editortype==rocktype)sprintf (string, "(rock)");
1329                                                 if(editortype==bushtype)sprintf (string, "(bush)");
1330                                                 if(editortype==tunneltype)sprintf (string, "(tunnel)");
1331                                                 if(editortype==chimneytype)sprintf (string, "(chimney)");
1332                                                 if(editortype==platformtype)sprintf (string, "(platform)");
1333                                                 if(editortype==cooltype)sprintf (string, "(cool)");
1334                                                 if(editortype==firetype)sprintf (string, "(fire)");
1335                                                 text.glPrint(130,120,string,0,.8,1024,768);
1336
1337                                                 sprintf (string, "Numplayers: %d",numplayers);
1338                                                 text.glPrint(10,155,string,0,.8,1024,768);
1339                                                 sprintf (string, "Player %d: numwaypoints: %d",numplayers,player[numplayers-1].numwaypoints);
1340                                                 text.glPrint(10,140,string,0,.8,1024,768);
1341                                         }
1342                                         /*sprintf (string, "Coords are: %f %f %f",player[0].coords.x,player[0].coords.y,player[0].coords.z);
1343                                         text.glPrint(10,200,string,0,.8,1024,768);*/
1344                                         sprintf (string, "Difficulty: %d",difficulty);
1345                                         text.glPrint(10,240,string,0,.8,1024,768);
1346                                         /*
1347                                         sprintf (string, "lasthotspot: %d",hotspottype[numhotspots-1]);
1348                                         text.glPrint(10,240,string,0,.8,1024,768);
1349                                         sprintf (string, "killhotspot: %d",killhotspot);
1350                                         text.glPrint(10,220,string,0,.8,1024,768);
1351                                         sprintf (string, "winhotspot: %d",winhotspot);
1352                                         text.glPrint(10,200,string,0,.8,1024,768);*/
1353
1354                                 }
1355                 }
1356
1357                 if(drawmode==glowmode){
1358                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
1359                         glDisable(GL_CULL_FACE);
1360                         glDisable(GL_LIGHTING);
1361                         glDisable(GL_TEXTURE_2D);
1362                         glDepthMask(0);
1363                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1364                         glPushMatrix();                                                                         // Store The Projection Matrix
1365                         glLoadIdentity();                                                                       // Reset The Projection Matrix
1366                         glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
1367                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1368                         glPushMatrix();                                                                         // Store The Modelview Matrix
1369                         glLoadIdentity();                                                               // Reset The Modelview Matrix
1370                         glScalef(screenwidth,screenheight,1);
1371                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
1372                         glEnable(GL_BLEND);
1373                         glColor4f(0,0,0,.5);
1374                         glBegin(GL_QUADS);
1375                         glVertex3f(0,           0,       0.0f);
1376                         glVertex3f(256, 0,       0.0f);
1377                         glVertex3f(256, 256, 0.0f);
1378                         glVertex3f(0,   256, 0.0f);
1379                         glEnd();
1380                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1381                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1382                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1383                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1384                         glEnable(GL_DEPTH_TEST);                                                        // Enables Depth Testing
1385                         glEnable(GL_CULL_FACE);
1386                         glDisable(GL_BLEND);
1387                         glDepthMask(1);
1388                 }
1389
1390                 if((((blackout&&damageeffects)||(player[0].bloodloss>0&&damageeffects&&player[0].blooddimamount>0)||player[0].dead)&&!cameramode)||console){
1391                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
1392                         glDisable(GL_CULL_FACE);
1393                         glDisable(GL_LIGHTING);
1394                         glDisable(GL_TEXTURE_2D);
1395                         glDepthMask(0);
1396                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1397                         glPushMatrix();                                                                         // Store The Projection Matrix
1398                         glLoadIdentity();                                                                       // Reset The Projection Matrix
1399                         glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
1400                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1401                         glPushMatrix();                                                                         // Store The Modelview Matrix
1402                         glLoadIdentity();                                                               // Reset The Modelview Matrix
1403                         glScalef(screenwidth,screenheight,1);
1404                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
1405                         glEnable(GL_BLEND);
1406                         if(player[0].dead)blackout+=multiplier*3;
1407                         if(player[0].dead==1)blackout=.4f;
1408                         if(player[0].dead==2&&blackout>.6)blackout=.6;
1409                         glColor4f(0,0,0,blackout);
1410                         if(!player[0].dead){
1411                                 if((player[0].bloodloss/player[0].damagetolerance*(sin(woozy)/4+.5))*.3<.3){
1412                                         glColor4f(0,0,0,player[0].blooddimamount*player[0].bloodloss/player[0].damagetolerance*(sin(woozy)/4+.5)*.3);
1413                                         blackout=player[0].blooddimamount*player[0].bloodloss/player[0].damagetolerance*(sin(woozy)/4+.5)*.3;
1414                                 }
1415                                 else {
1416                                         glColor4f(0,0,0,player[0].blooddimamount*.3);
1417                                         blackout=player[0].blooddimamount*.3;
1418                                 }
1419                         }
1420                         if(console)glColor4f(.7,0,0,.2);
1421                         glBegin(GL_QUADS);
1422                         glVertex3f(0,           0,       0.0f);
1423                         glVertex3f(256, 0,       0.0f);
1424                         glVertex3f(256, 256, 0.0f);
1425                         glVertex3f(0,   256, 0.0f);
1426                         glEnd();
1427                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1428                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1429                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1430                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1431                         glEnable(GL_DEPTH_TEST);                                                        // Enables Depth Testing
1432                         glEnable(GL_CULL_FACE);
1433                         glDisable(GL_BLEND);
1434                         glDepthMask(1);
1435                 }
1436
1437                 if(flashamount>0&&damageeffects){
1438                         if(flashamount>1)flashamount=1;
1439                         if(flashdelay<=0)flashamount-=multiplier;
1440                         flashdelay--;
1441                         if(flashamount<0)flashamount=0;
1442                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
1443                         glDisable(GL_CULL_FACE);
1444                         glDisable(GL_LIGHTING);
1445                         glDepthMask(0);
1446                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1447                         glPushMatrix();                                                                         // Store The Projection Matrix
1448                         glLoadIdentity();                                                                       // Reset The Projection Matrix
1449                         glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
1450                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1451                         glPushMatrix();                                                                         // Store The Modelview Matrix
1452                         glLoadIdentity();                                                               // Reset The Modelview Matrix
1453                         glScalef(screenwidth,screenheight,1);
1454                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
1455                         glEnable(GL_BLEND);
1456                         glColor4f(flashr,flashg,flashb,flashamount);
1457                         glBegin(GL_QUADS);
1458                         glVertex3f(0,           0,       0.0f);
1459                         glVertex3f(256, 0,       0.0f);
1460                         glVertex3f(256, 256, 0.0f);
1461                         glVertex3f(0,   256, 0.0f);
1462                         glEnd();
1463                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1464                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1465                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1466                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1467                         glEnable(GL_DEPTH_TEST);                                                        // Enables Depth Testing
1468                         glEnable(GL_CULL_FACE);
1469                         glDisable(GL_BLEND);
1470                         glDepthMask(1);
1471                 }       
1472
1473                 if(!console){
1474                         displaytime[0]=0;
1475                         glEnable(GL_TEXTURE_2D);
1476                         glColor4f(1,1,1,1);
1477                         if(chatting){
1478                                 sprintf (string, " ]");
1479                                 text.glPrint(10,30+screenheight-330,string,0,1,screenwidth,screenheight);
1480                                 if(displayblink){
1481                                         sprintf (string, "_");
1482                                         text.glPrint(30+(float)(displayselected)*10,30+(screenheight-330),string,0,1,screenwidth,screenheight);
1483                                 }
1484                         }
1485                         for(i=0;i<15;i++){
1486                                 if((i!=0||chatting)&&displaytime[i]<4)
1487                                         for(j=0;j<displaychars[i];j++){
1488                                                 glColor4f(1,1,1,4-displaytime[i]);
1489                                                 if(j<displaychars[i]){
1490                                                         sprintf (string, "%c",displaytext[i][j]);
1491                                                         text.glPrint(30+j*10,30+i*20+(screenheight-330),string,0,1,screenwidth,screenheight);
1492                                                 }
1493                                         }
1494                         }
1495                 }
1496
1497                 if(minimap&&indialogue==-1){
1498                         float mapviewdist;
1499                         mapviewdist=20000;
1500
1501                         glDisable(GL_DEPTH_TEST);
1502                         glColor3f (1.0, 1.0, 1.0); // no coloring
1503
1504                         glEnable(GL_TEXTURE_2D);
1505                         glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE );
1506                         glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE );
1507                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
1508                         glDisable(GL_CULL_FACE);
1509                         glDisable(GL_LIGHTING);
1510                         glDepthMask(0);
1511                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1512                         glPushMatrix();                                                                         // Store The Projection Matrix
1513                         glLoadIdentity();                                                                       // Reset The Projection Matrix
1514                         glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
1515                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1516                         glPushMatrix();                                                                         // Store The Modelview Matrix
1517                         glLoadIdentity();                                                               // Reset The Modelview Matrix
1518                         glScalef((float)screenwidth/2,(float)screenwidth/2,1);
1519                         glTranslatef(1.75,.25,0);
1520                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
1521                         glEnable(GL_BLEND);
1522                         glColor4f(1,1,1,1);
1523                         glPushMatrix();
1524                         float opac;
1525                         opac=.7;
1526                         XYZ center;
1527                         float radius;
1528                         float distcheck;
1529                         center=0;
1530                         int numliveplayers=0;
1531                         for(i=0;i<numplayers;i++){
1532                                 if(!player[i].dead)numliveplayers++;
1533                         }
1534
1535                         int numadd;
1536                         numadd=0;
1537
1538                         for(i=0;i<objects.numobjects;i++){
1539                                 if(objects.type[i]==treetrunktype||objects.type[i]==boxtype){
1540                                         center+=objects.position[i];    
1541                                         numadd++;
1542                                 }
1543                         }
1544                         for(i=0;i<numplayers;i++){
1545                                 if(!player[i].dead)center+=player[i].coords;    
1546                         }
1547                         center/=numadd+numliveplayers;
1548
1549                         center=player[0].coords;
1550
1551                         float maxdistance=0;
1552                         float tempdist;
1553                         int whichclosest;
1554                         for(i=0;i<objects.numobjects;i++){
1555                                 tempdist=findDistancefast(&center,&objects.position[i]);
1556                                 if(tempdist>maxdistance){
1557                                         whichclosest=i;
1558                                         maxdistance=tempdist;
1559                                 }
1560                         }
1561                         for(i=0;i<numplayers;i++){
1562                                 if(!player[i].dead){
1563                                         tempdist=findDistancefast(&center,&player[i].coords);
1564                                         if(tempdist>maxdistance){
1565                                                 whichclosest=i;
1566                                                 maxdistance=tempdist;
1567                                         }
1568                                 }
1569                         }
1570                         radius=fast_sqrt(maxdistance);
1571
1572                         radius=110;
1573
1574                         glScalef(.25/radius*256*terrain.scale*.4,.25/radius*256*terrain.scale*.4,1);
1575                         glPushMatrix();
1576                         glScalef(1/(1/radius*256*terrain.scale*.4),1/(1/radius*256*terrain.scale*.4),1);
1577                         glPopMatrix();
1578                         glRotatef(player[0].lookrotation*-1+180,0,0,1);
1579                         glTranslatef(-(center.x/terrain.scale/256*-2+1),(center.z/terrain.scale/256*-2+1),0);
1580                         for(i=0;i<objects.numobjects;i++){
1581                                 if(objects.type[i]==treetrunktype){
1582                                         distcheck=findDistancefast(&player[0].coords,&objects.position[i]);
1583                                         if(distcheck<mapviewdist){
1584                                                 glBindTexture( GL_TEXTURE_2D, Mapcircletexture);
1585                                                 glColor4f(0,.3,0,opac*(1-distcheck/mapviewdist));
1586                                                 glPushMatrix();
1587                                                 glTranslatef(objects.position[i].x/terrain.scale/256*-2+1,objects.position[i].z/terrain.scale/256*2-1,0);
1588                                                 glRotatef(objects.rotation[i],0,0,1);
1589                                                 glScalef(.003,.003,.003);
1590                                                 glBegin(GL_QUADS);
1591                                                 glTexCoord2f(0,0);
1592                                                 glVertex3f(-1,          -1,      0.0f);
1593                                                 glTexCoord2f(1,0);
1594                                                 glVertex3f(1,   -1,      0.0f);
1595                                                 glTexCoord2f(1,1);
1596                                                 glVertex3f(1,   1, 0.0f);
1597                                                 glTexCoord2f(0,1);
1598                                                 glVertex3f(-1,  1, 0.0f);
1599                                                 glEnd();
1600                                                 glPopMatrix();
1601                                         }
1602                                 }
1603                                 if(objects.type[i]==boxtype){
1604                                         distcheck=findDistancefast(&player[0].coords,&objects.position[i]);
1605                                         if(distcheck<mapviewdist){
1606                                                 glBindTexture( GL_TEXTURE_2D, Mapboxtexture);
1607                                                 glColor4f(.4,.4,.4,opac*(1-distcheck/mapviewdist));
1608                                                 glPushMatrix();
1609                                                 glTranslatef(objects.position[i].x/terrain.scale/256*-2+1,objects.position[i].z/terrain.scale/256*2-1,0);
1610                                                 glRotatef(objects.rotation[i],0,0,1);
1611                                                 glScalef(.01*objects.scale[i],.01*objects.scale[i],.01*objects.scale[i]);
1612                                                 glBegin(GL_QUADS);
1613                                                 glTexCoord2f(0,0);
1614                                                 glVertex3f(-1,          -1,      0.0f);
1615                                                 glTexCoord2f(1,0);
1616                                                 glVertex3f(1,   -1,      0.0f);
1617                                                 glTexCoord2f(1,1);
1618                                                 glVertex3f(1,   1, 0.0f);
1619                                                 glTexCoord2f(0,1);
1620                                                 glVertex3f(-1,  1, 0.0f);
1621                                                 glEnd();
1622                                                 glPopMatrix();
1623                                         }
1624                                 }
1625                         }
1626                         if(editorenabled){
1627                                 glBindTexture( GL_TEXTURE_2D, Mapcircletexture);
1628                                 for(i=0;i<numboundaries;i++){
1629                                         glColor4f(0,0,0,opac/3);
1630                                         glPushMatrix();
1631                                         glTranslatef(boundary[i].x/terrain.scale/256*-2+1,boundary[i].z/terrain.scale/256*2-1,0);
1632                                         glScalef(.002,.002,.002);
1633                                         glBegin(GL_QUADS);
1634                                         glTexCoord2f(0,0);
1635                                         glVertex3f(-1,          -1,      0.0f);
1636                                         glTexCoord2f(1,0);
1637                                         glVertex3f(1,   -1,      0.0f);
1638                                         glTexCoord2f(1,1);
1639                                         glVertex3f(1,   1, 0.0f);
1640                                         glTexCoord2f(0,1);
1641                                         glVertex3f(-1,  1, 0.0f);
1642                                         glEnd();
1643                                         glPopMatrix();
1644                                 }
1645                         }
1646                         for(i=0;i<numplayers;i++){
1647                                 distcheck=findDistancefast(&player[0].coords,&player[i].coords);
1648                                 if(distcheck<mapviewdist){
1649                                         glPushMatrix();
1650                                         glBindTexture( GL_TEXTURE_2D, Maparrowtexture);
1651                                         if(i==0)glColor4f(1,1,1,opac);
1652                                         else if(player[i].dead==2||player[i].howactive>typesleeping)glColor4f(0,0,0,opac*(1-distcheck/mapviewdist));
1653                                         else if(player[i].dead)glColor4f(.3,.3,.3,opac*(1-distcheck/mapviewdist));
1654                                         else if(player[i].aitype==attacktypecutoff)glColor4f(1,0,0,opac*(1-distcheck/mapviewdist));
1655                                         else if(player[i].aitype==passivetype)glColor4f(0,1,0,opac*(1-distcheck/mapviewdist));
1656                                         else glColor4f(1,1,0,1);
1657                                         glTranslatef(player[i].coords.x/terrain.scale/256*-2+1,player[i].coords.z/terrain.scale/256*2-1,0);
1658                                         glRotatef(player[i].rotation+180,0,0,1);
1659                                         glScalef(.005,.005,.005);
1660                                         glBegin(GL_QUADS);
1661                                         glTexCoord2f(0,0);
1662                                         glVertex3f(-1,          -1,      0.0f);
1663                                         glTexCoord2f(1,0);
1664                                         glVertex3f(1,   -1,      0.0f);
1665                                         glTexCoord2f(1,1);
1666                                         glVertex3f(1,   1, 0.0f);
1667                                         glTexCoord2f(0,1);
1668                                         glVertex3f(-1,  1, 0.0f);
1669                                         glEnd();
1670                                         glPopMatrix();
1671                                 }
1672                         }
1673                         glPopMatrix();
1674                         glDisable(GL_TEXTURE_2D);
1675                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1676                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1677                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1678                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1679                         glEnable(GL_DEPTH_TEST);                                                        // Enables Depth Testing
1680                         glEnable(GL_CULL_FACE);
1681                         glDisable(GL_BLEND);
1682                         glDepthMask(1);
1683                 }
1684
1685                 if(loading&&!stealthloading&&(!campaign||player[0].dead)){
1686                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
1687                         glDisable(GL_CULL_FACE);
1688                         glDisable(GL_LIGHTING);
1689                         glDisable(GL_TEXTURE_2D);
1690                         glDepthMask(0);
1691                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1692                         glPushMatrix();                                                                         // Store The Projection Matrix
1693                         glLoadIdentity();                                                                       // Reset The Projection Matrix
1694                         glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
1695                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1696                         glPushMatrix();                                                                         // Store The Modelview Matrix
1697                         glLoadIdentity();                                                               // Reset The Modelview Matrix
1698                         glScalef(screenwidth,screenheight,1);
1699                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
1700                         glEnable(GL_BLEND);
1701                         glColor4f(0,0,0,.7);
1702                         glBegin(GL_QUADS);
1703                         glVertex3f(0,           0,       0.0f);
1704                         glVertex3f(256, 0,       0.0f);
1705                         glVertex3f(256, 256, 0.0f);
1706                         glVertex3f(0,   256, 0.0f);
1707                         glEnd();
1708                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1709                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1710                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1711                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1712                         glEnable(GL_DEPTH_TEST);                                                        // Enables Depth Testing
1713                         glEnable(GL_CULL_FACE);
1714                         glDisable(GL_BLEND);
1715                         glDepthMask(1);
1716
1717                         //logo
1718                         glDisable(GL_DEPTH_TEST);
1719                         glColor3f (1.0, 1.0, 1.0); // no coloring
1720
1721                         glEnable(GL_TEXTURE_2D);
1722
1723                         //Minimap
1724
1725                         if(loading!=4){                         
1726                                 glEnable(GL_TEXTURE_2D);
1727                                 glColor4f(1,1,1,1);
1728                                 sprintf (string, "Loading...");
1729                                 text.glPrint(1024/2-90,768/2,string,1,2,1024,768);
1730                         }
1731                         loading=2;
1732                         //if(ismotionblur)drawmode=motionblurmode;
1733                         drawmode=normalmode;
1734                 }
1735
1736                 if(winfreeze&&!campaign){
1737                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
1738                         glDisable(GL_CULL_FACE);
1739                         glDisable(GL_LIGHTING);
1740                         glDisable(GL_TEXTURE_2D);
1741                         glDepthMask(0);
1742                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1743                         glPushMatrix();                                                                         // Store The Projection Matrix
1744                         glLoadIdentity();                                                                       // Reset The Projection Matrix
1745                         glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
1746                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1747                         glPushMatrix();                                                                         // Store The Modelview Matrix
1748                         glLoadIdentity();                                                               // Reset The Modelview Matrix
1749                         glScalef(screenwidth,screenheight,1);
1750                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
1751                         glEnable(GL_BLEND);
1752                         glColor4f(0,0,0,.4);
1753                         glBegin(GL_QUADS);
1754                         glVertex3f(0,           0,       0.0f);
1755                         glVertex3f(256, 0,       0.0f);
1756                         glVertex3f(256, 256, 0.0f);
1757                         glVertex3f(0,   256, 0.0f);
1758                         glEnd();
1759                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1760                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1761                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1762                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
1763                         glEnable(GL_DEPTH_TEST);                                                        // Enables Depth Testing
1764                         glEnable(GL_CULL_FACE);
1765                         glDisable(GL_BLEND);
1766                         glDepthMask(1);
1767
1768                         //logo
1769                         glDisable(GL_DEPTH_TEST);
1770                         glColor3f (1.0, 1.0, 1.0); // no coloring
1771
1772                         glEnable(GL_TEXTURE_2D);
1773
1774                         //Awards
1775                         int numawards;
1776                         int awards[30];
1777                         numawards=0;
1778
1779                         if(damagetaken==0&&player[0].bloodloss==0){
1780                                 awards[numawards]=awardflawless;
1781                                 numawards++;
1782                         }
1783                         bool alldead;
1784                         alldead=1;
1785                         for(i=1;i<numplayers;i++){              
1786                                 if(player[i].dead!=2)alldead=0;
1787                         }
1788                         if(alldead){
1789                                 awards[numawards]=awardalldead;
1790                                 numawards++;
1791                         }
1792                         alldead=1;
1793                         for(i=1;i<numplayers;i++){              
1794                                 if(player[i].dead!=1)alldead=0;
1795                         }
1796                         if(alldead){
1797                                 awards[numawards]=awardnodead;
1798                                 numawards++;
1799                         }
1800                         if(numresponded==0&&!numthrowkill){
1801                                 awards[numawards]=awardstealth;
1802                                 numawards++;
1803                         }
1804                         if(numattacks==numstaffattack&&numattacks>0){
1805                                 awards[numawards]=awardbojutsu;
1806                                 numawards++;
1807                         }
1808                         if(numattacks==numswordattack&&numattacks>0){
1809                                 awards[numawards]=awardswordsman;
1810                                 numawards++;
1811                         }
1812                         if(numattacks==numknifeattack&&numattacks>0){
1813                                 awards[numawards]=awardknifefighter;
1814                                 numawards++;
1815                         }
1816                         if(numattacks==numunarmedattack&&numthrowkill==0&&weapons.numweapons>0){
1817                                 awards[numawards]=awardkungfu;
1818                                 numawards++;
1819                         }
1820                         if(numescaped>0){
1821                                 awards[numawards]=awardevasion;
1822                                 numawards++;
1823                         }
1824                         if(numflipfail==0&&numflipped+numwallflipped*2>20){
1825                                 awards[numawards]=awardacrobat;
1826                                 numawards++;
1827                         }
1828                         if(numthrowkill==numplayers-1){
1829                                 awards[numawards]=awardlongrange;
1830                                 numawards++;
1831                         }
1832                         alldead=1;
1833                         for(i=1;i<numplayers;i++){              
1834                                 if(player[i].dead!=2)alldead=0;
1835                         }
1836                         if(numafterkill>0&&alldead){
1837                                 awards[numawards]=awardbrutal;
1838                                 numawards++;
1839                         }
1840                         if(numreversals>((float)numattacks)*.8&&numreversals>3){
1841                                 awards[numawards]=awardaikido;
1842                                 numawards++;
1843                         }
1844                         if(maxalarmed==1&&numplayers>2){
1845                                 awards[numawards]=awardstrategy;
1846                                 numawards++;
1847                         }
1848                         if(numflipfail>3){
1849                                 awards[numawards]=awardklutz;
1850                                 numawards++;
1851                         }
1852
1853
1854                                                 //Win Screen Won Victory
1855
1856                                                 glEnable(GL_TEXTURE_2D);
1857                                                 glColor4f(1,1,1,1);
1858                                                 sprintf (string, "Level Cleared!");
1859                                                 text.glPrintOutlined(1024/2-strlen(string)*10,768*7/8,string,1,2,1024,768);
1860
1861                                                 sprintf (string, "Score:     %d",(int)(bonustotal-startbonustotal));
1862                                                 text.glPrintOutlined(1024/30,768*6/8,string,1,2,1024,768);
1863
1864                                                 if(!campaign)sprintf (string, "Press Escape to return to menu or Space to continue");
1865                                                 if(campaign)sprintf (string, "Press Escape or Space to continue");
1866                                                 text.glPrintOutlined(640/2-strlen(string)*5,480*1/16,string,1,1,640,480);
1867
1868                                                 char temp[255];
1869
1870                                                 for(i=0;i<255;i++)string[i]='\0';
1871                                                 sprintf (temp, "Time:      %d:",(int)(((int)leveltime-(int)(leveltime)%60)/60));
1872                                                 strcat(string,temp);
1873                                                 if((int)(leveltime)%60<10)strcat(string,"0");
1874                                                 sprintf (temp, "%d",(int)(leveltime)%60);
1875                                                 strcat(string,temp);
1876                                                 text.glPrintOutlined(1024/30,768*6/8-40,string,1,2,1024,768);
1877
1878                                                 for(i=0;i<numawards;i++){
1879                                                         if(i<6){
1880                                                                 if(awards[i]==awardklutz)sprintf (string, "Suicidal");
1881                                                                 if(awards[i]==awardflawless)sprintf (string, "Flawless!");
1882                                                                 if(awards[i]==awardalldead)sprintf (string, "Take no prisoners");
1883                                                                 if(awards[i]==awardnodead)sprintf (string, "Merciful");
1884                                                                 if(awards[i]==awardstealth)sprintf (string, "One with the shadows!");
1885                                                                 if(awards[i]==awardswordsman)sprintf (string, "Swordsman");
1886                                                                 if(awards[i]==awardkungfu)sprintf (string, "Unarmed!");
1887                                                                 if(awards[i]==awardknifefighter)sprintf (string, "Knife fighter");
1888                                                                 if(awards[i]==awardcoward)sprintf (string, "Coward");
1889                                                                 if(awards[i]==awardevasion)sprintf (string, "Escape artist");
1890                                                                 if(awards[i]==awardacrobat)sprintf (string, "Gymnast");
1891                                                                 if(awards[i]==awardlongrange)sprintf (string, "Blade slinger");
1892                                                                 if(awards[i]==awardbrutal)sprintf (string, "Brutal");
1893                                                                 if(awards[i]==awardhyper)sprintf (string, "Hyper");
1894                                                                 if(awards[i]==awardaikido)sprintf (string, "Aikido master!");
1895                                                                 if(awards[i]==awardrambo)sprintf (string, "Rambo");
1896                                                                 if(awards[i]==awardfast)sprintf (string, "Fast");
1897                                                                 if(awards[i]==awardrealfast)sprintf (string, "Real fast");
1898                                                                 if(awards[i]==awarddamnfast)sprintf (string, "Damn fast");
1899                                                                 if(awards[i]==awardstrategy)sprintf (string, "Divide and conquer");
1900                                                                 if(awards[i]==awardbojutsu)sprintf (string, "Bojutsu");
1901                                                                 text.glPrintOutlined(1024/30,768*6/8-90-40*i,string,1,2,1024,768);
1902                                                         }
1903                                                 }
1904
1905                                                 //drawmode=normalmode;
1906                 }
1907
1908                 if(drawmode!=normalmode){
1909                         glEnable(GL_TEXTURE_2D);
1910                         glFinish();
1911                         if(!drawtoggle||drawmode!=realmotionblurmode||(drawtoggle==2||change==1)){
1912                                 if(screentexture){
1913
1914                                         glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_COMBINE_EXT);
1915                                         GLfloat subtractColor[4] = { 0.5, 0.5, 0.5, 0.0 };
1916                                         glTexEnvfv(GL_TEXTURE_ENV, GL_TEXTURE_ENV_COLOR, subtractColor);
1917                                         //glTexEnvi(GL_TEXTURE_ENV, GL_COMBINE_RGB_EXT, GL_SUBTRACT);
1918                                         glTexEnvi(GL_TEXTURE_ENV, GL_SOURCE0_RGB_EXT, GL_TEXTURE);
1919                                         glTexEnvi(GL_TEXTURE_ENV, GL_SOURCE1_RGB_EXT, GL_CONSTANT_EXT);
1920                                         glTexEnvf(GL_TEXTURE_ENV, GL_RGB_SCALE_EXT, 2.0f);
1921
1922                                         glBindTexture( GL_TEXTURE_2D, screentexture);
1923                                         glCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 0, 0, texviewwidth, texviewheight);         
1924                                 }
1925                         }
1926                         if((drawtoggle||change==1)&&drawmode==realmotionblurmode){
1927                                 if(screentexture2){
1928                                         glBindTexture( GL_TEXTURE_2D, screentexture2);
1929                                         glCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 0, 0, texviewwidth, texviewheight);         
1930                                 }
1931                                 if(!screentexture2){
1932                                         glPixelStorei( GL_UNPACK_ALIGNMENT, 1 );
1933
1934                                         glGenTextures( 1, &screentexture2 );
1935                                         glTexEnvi( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE );
1936
1937                                         glEnable(GL_TEXTURE_2D);
1938                                         glBindTexture( GL_TEXTURE_2D, screentexture2);
1939                                         glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR );
1940                                         glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR );
1941
1942                                         glCopyTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 0, 0, kTextureSize, kTextureSize, 0);                
1943                                 }
1944                         }
1945                         //glFlush();
1946                 }
1947
1948                 glClear(GL_DEPTH_BUFFER_BIT);
1949                 ReSizeGLScene(90,.1f);
1950                 glViewport(0,0,screenwidth,screenheight);       
1951
1952                 if(drawmode!=normalmode){
1953                         glDisable(GL_DEPTH_TEST);
1954                         if(drawmode==motionblurmode){
1955                                 glDrawBuffer(GL_FRONT);
1956                                 glReadBuffer(GL_BACK);
1957                                 //myassert(glGetError() == GL_NO_ERROR);
1958                                 //glFlush();
1959                         }
1960                         glColor3f (1.0, 1.0, 1.0); // no coloring
1961
1962                         glEnable(GL_TEXTURE_2D);
1963                         glBindTexture( GL_TEXTURE_2D, screentexture);
1964                         glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE );
1965                         glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE );
1966                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
1967                         glDisable(GL_CULL_FACE);
1968                         glDisable(GL_LIGHTING);
1969                         glDepthMask(0);
1970                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
1971                         glPushMatrix();                                                                         // Store The Projection Matrix
1972                         glLoadIdentity();                                                                       // Reset The Projection Matrix
1973                         glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
1974                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
1975                         glPushMatrix();                                                                         // Store The Modelview Matrix
1976                         glLoadIdentity();                                                               // Reset The Modelview Matrix
1977                         glScalef((float)screenwidth/2,(float)screenheight/2,1);
1978                         glTranslatef(1,1,0);
1979                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
1980                         glEnable(GL_BLEND);
1981                         if(drawmode==motionblurmode){
1982                                 if(motionbluramount<.2)motionbluramount=.2;
1983                                 //glColor4f(1,1,1,fast_sqrt(multiplier)*2.9*motionbluramount);
1984                                 glColor4f(1,1,1,motionbluramount);
1985                                 glPushMatrix();
1986                                 glBegin(GL_QUADS);
1987                                 glTexCoord2f(0,0);
1988                                 glVertex3f(-1,          -1,      0.0f);
1989                                 glTexCoord2f(texcoordwidth,0);
1990                                 glVertex3f(1,   -1,      0.0f);
1991                                 glTexCoord2f(texcoordwidth,texcoordheight);
1992                                 glVertex3f(1,   1, 0.0f);
1993                                 glTexCoord2f(0,texcoordheight);
1994                                 glVertex3f(-1,  1, 0.0f);
1995                                 glEnd();
1996                                 glPopMatrix();
1997                         }
1998                         if(drawmode==realmotionblurmode){
1999                                 glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
2000                                 glClear(GL_COLOR_BUFFER_BIT);
2001                                 glBlendFunc(GL_SRC_ALPHA,GL_ONE);
2002                                 glBindTexture( GL_TEXTURE_2D, screentexture);
2003                                 glColor4f(1,1,1,.5);
2004                                 glPushMatrix();
2005                                 glBegin(GL_QUADS);
2006                                 glTexCoord2f(0,0);
2007                                 glVertex3f(-1,          -1,      0.0f);
2008                                 glTexCoord2f(texcoordwidth,0);
2009                                 glVertex3f(1,   -1,      0.0f);
2010                                 glTexCoord2f(texcoordwidth,texcoordheight);
2011                                 glVertex3f(1,   1, 0.0f);
2012                                 glTexCoord2f(0,texcoordheight);
2013                                 glVertex3f(-1,  1, 0.0f);
2014                                 glEnd();
2015                                 glPopMatrix();
2016                                 glBindTexture( GL_TEXTURE_2D, screentexture2);
2017                                 glColor4f(1,1,1,.5);
2018                                 glPushMatrix();
2019                                 glBegin(GL_QUADS);
2020                                 glTexCoord2f(0,0);
2021                                 glVertex3f(-1,          -1,      0.0f);
2022                                 glTexCoord2f(texcoordwidth,0);
2023                                 glVertex3f(1,   -1,      0.0f);
2024                                 glTexCoord2f(texcoordwidth,texcoordheight);
2025                                 glVertex3f(1,   1, 0.0f);
2026                                 glTexCoord2f(0,texcoordheight);
2027                                 glVertex3f(-1,  1, 0.0f);
2028                                 glEnd();
2029                                 glPopMatrix();
2030                                 glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
2031                         }
2032                         if(drawmode==doublevisionmode){
2033                                 static float crosseyedness;
2034                                 crosseyedness=abs(player[0].damage-player[0].superpermanentdamage-(player[0].damagetolerance-player[0].superpermanentdamage)*1/2)/30;
2035                                 if(crosseyedness>1)crosseyedness=1;
2036                                 if(crosseyedness<0)crosseyedness=0;
2037                                 glColor4f(1,1,1,1);
2038                                 glDisable(GL_BLEND);
2039                                 glPushMatrix();
2040                                 glScalef(1,1,1);
2041                                 glBegin(GL_QUADS);
2042                                 glTexCoord2f(0,0);
2043                                 glVertex3f(-1,          -1,      0.0f);
2044                                 glTexCoord2f(texcoordwidth,0);
2045                                 glVertex3f(1,   -1,      0.0f);
2046                                 glTexCoord2f(texcoordwidth,texcoordheight);
2047                                 glVertex3f(1,   1, 0.0f);
2048                                 glTexCoord2f(0,texcoordheight);
2049                                 glVertex3f(-1,  1, 0.0f);
2050                                 glEnd();
2051                                 glPopMatrix();
2052                                 if(crosseyedness){
2053                                         glColor4f(1,1,1,.5);
2054                                         glEnable(GL_BLEND);
2055                                         glPushMatrix();
2056                                         glTranslatef(.015*crosseyedness,0,0);
2057                                         glScalef(1,1,1);
2058                                         glBegin(GL_QUADS);
2059                                         glTexCoord2f(0,0);
2060                                         glVertex3f(-1,          -1,      0.0f);
2061                                         glTexCoord2f(texcoordwidth,0);
2062                                         glVertex3f(1,   -1,      0.0f);
2063                                         glTexCoord2f(texcoordwidth,texcoordheight);
2064                                         glVertex3f(1,   1, 0.0f);
2065                                         glTexCoord2f(0,texcoordheight);
2066                                         glVertex3f(-1,  1, 0.0f);
2067                                         glEnd();
2068                                         glPopMatrix();
2069                                 }
2070                         }
2071                         if(drawmode==glowmode){
2072                                 glColor4f(.5,.5,.5,.5);
2073                                 glEnable(GL_BLEND);
2074                                 glBlendFunc(GL_SRC_ALPHA,GL_ONE);
2075                                 glPushMatrix();
2076                                 glTranslatef(.01,0,0);
2077                                 glBegin(GL_QUADS);
2078                                 glTexCoord2f(0,0);
2079                                 glVertex3f(-1,          -1,      0.0f);
2080                                 glTexCoord2f(texcoordwidth,0);
2081                                 glVertex3f(1,   -1,      0.0f);
2082                                 glTexCoord2f(texcoordwidth,texcoordheight);
2083                                 glVertex3f(1,   1, 0.0f);
2084                                 glTexCoord2f(0,texcoordheight);
2085                                 glVertex3f(-1,  1, 0.0f);
2086                                 glEnd();
2087                                 glPopMatrix();
2088                                 glPushMatrix();
2089                                 glTranslatef(-.01,0,0);
2090                                 glBegin(GL_QUADS);
2091                                 glTexCoord2f(0,0);
2092                                 glVertex3f(-1,          -1,      0.0f);
2093                                 glTexCoord2f(texcoordwidth,0);
2094                                 glVertex3f(1,   -1,      0.0f);
2095                                 glTexCoord2f(texcoordwidth,texcoordheight);
2096                                 glVertex3f(1,   1, 0.0f);
2097                                 glTexCoord2f(0,texcoordheight);
2098                                 glVertex3f(-1,  1, 0.0f);
2099                                 glEnd();
2100                                 glPopMatrix();
2101                                 glPushMatrix();
2102                                 glTranslatef(.0,.01,0);
2103                                 glBegin(GL_QUADS);
2104                                 glTexCoord2f(0,0);
2105                                 glVertex3f(-1,          -1,      0.0f);
2106                                 glTexCoord2f(texcoordwidth,0);
2107                                 glVertex3f(1,   -1,      0.0f);
2108                                 glTexCoord2f(texcoordwidth,texcoordheight);
2109                                 glVertex3f(1,   1, 0.0f);
2110                                 glTexCoord2f(0,texcoordheight);
2111                                 glVertex3f(-1,  1, 0.0f);
2112                                 glEnd();
2113                                 glPopMatrix();
2114                                 glPushMatrix();
2115                                 glTranslatef(0,-.01,0);
2116                                 glBegin(GL_QUADS);
2117                                 glTexCoord2f(0,0);
2118                                 glVertex3f(-1,          -1,      0.0f);
2119                                 glTexCoord2f(texcoordwidth,0);
2120                                 glVertex3f(1,   -1,      0.0f);
2121                                 glTexCoord2f(texcoordwidth,texcoordheight);
2122                                 glVertex3f(1,   1, 0.0f);
2123                                 glTexCoord2f(0,texcoordheight);
2124                                 glVertex3f(-1,  1, 0.0f);
2125                                 glEnd();
2126                                 glPopMatrix();
2127                         }
2128                         if(drawmode==radialzoommode){
2129                                 for(i=0;i<3;i++){
2130                                         //glRotatef((float)i*.1,0,0,1);
2131                                         glColor4f(1,1,1,1/((float)i+1));
2132                                         glPushMatrix();
2133                                         glScalef(1+(float)i*.01,1+(float)i*.01,1);
2134                                         glBegin(GL_QUADS);
2135                                         glTexCoord2f(0,0);
2136                                         glVertex3f(-1,          -1,      0.0f);
2137                                         glTexCoord2f(texcoordwidth,0);
2138                                         glVertex3f(1,   -1,      0.0f);
2139                                         glTexCoord2f(texcoordwidth,texcoordheight);
2140                                         glVertex3f(1,   1, 0.0f);
2141                                         glTexCoord2f(0,texcoordheight);
2142                                         glVertex3f(-1,  1, 0.0f);
2143                                         glEnd();
2144                                         glPopMatrix();
2145                                 }
2146                         }
2147                         glDisable(GL_TEXTURE_2D);
2148                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
2149                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
2150                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
2151                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
2152                         glEnable(GL_DEPTH_TEST);                                                        // Enables Depth Testing
2153                         glEnable(GL_CULL_FACE);
2154                         glDisable(GL_BLEND);
2155                         glDepthMask(1);
2156                 }
2157
2158                 if(console){
2159                         glEnable(GL_TEXTURE_2D);
2160                         glColor4f(1,1,1,1);
2161                         if(console){
2162                                 int offset;
2163                                 offset=0;
2164                                 if(consoleselected>=60)offset=consoleselected-60;
2165                                 sprintf (string, " ]");
2166                                 text.glPrint(10,30,string,0,1,1024,768);
2167                                 if(consoleblink){
2168                                         sprintf (string, "_");
2169                                         text.glPrint(30+(float)(consoleselected)*10-offset*10,30,string,0,1,1024,768);
2170                                 }
2171                                 for(i=0;i<15;i++){
2172                                         for(j=0;j<consolechars[i];j++){
2173                                                 glColor4f(1,1,1,1-(float)(i)/16);
2174                                                 if(j<consolechars[i]){
2175                                                         sprintf (string, "%c",consoletext[i][j]);
2176                                                         text.glPrint(30+j*10-offset*10,30+i*20,string,0,1,1024,768);
2177                                                 }
2178                                         }
2179                                 }
2180                         }
2181                 }
2182         }
2183
2184         if(freeze||winfreeze||(mainmenu&&gameon)||(!gameon&&gamestarted)||(mainmenu&&gameon)||(!gameon&&gamestarted)||(!gameon&&gamestarted)){
2185                 multiplier=tempmult;
2186         }
2187
2188         if(mainmenu){
2189
2190         // !!! FIXME: hack: clamp framerate in menu so text input works correctly on fast systems.
2191         SDL_Delay(15);
2192
2193                 glDrawBuffer(GL_BACK);
2194                 glReadBuffer(GL_BACK);
2195                 glTexEnvi( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE );
2196                 ReSizeGLScene(90,.1f);
2197
2198                 int temptexdetail;
2199                 temptexdetail=texdetail;
2200                 if(texdetail>2)texdetail=2;
2201                 if(mainmenu!=oldmainmenu&&oldmainmenu!=0){
2202                         if(mainmenu==1){
2203                                 LoadTexture(":Data:Textures:Newgame.png",&Mainmenuitems[1],0,0);
2204                                 LoadTexture(":Data:Textures:Quit.png",&Mainmenuitems[3],0,0);
2205                         }
2206                         if(mainmenu==2){
2207                                 LoadTexture(":Data:Textures:Resume.png",&Mainmenuitems[1],0,0);
2208                                 LoadTexture(":Data:Textures:Endgame.png",&Mainmenuitems[3],0,0);
2209                         }
2210                 }
2211                 if(lastcheck>.5||oldmainmenu!=mainmenu){
2212                         if(mainmenu==5){
2213                                 ifstream ipstream(ConvertFileName(":Data:Campaigns:main.txt"));
2214                                 //campaignnumlevels=0;
2215                                 //accountactive->getCampaignChoicesMade()=0;
2216                                 ipstream.ignore(256,':');
2217                                 ipstream >> campaignnumlevels;
2218                                 for(i=0;i<campaignnumlevels;i++){
2219                                         ipstream.ignore(256,':');
2220                                         ipstream.ignore(256,':');
2221                                         ipstream.ignore(256,' ');
2222                                         ipstream >> campaignmapname[i];
2223                                         ipstream.ignore(256,':');
2224                                         ipstream >> campaigndescription[i];
2225                                         for(j=0;j<256;j++){
2226                                                 if(campaigndescription[i][j]=='_')campaigndescription[i][j]=' ';
2227                                         }
2228                                         ipstream.ignore(256,':');
2229                                         ipstream >> campaignchoosenext[i];
2230                                         ipstream.ignore(256,':');
2231                                         ipstream >> campaignnumnext[i];
2232                                         if(campaignnumnext[i])
2233                                                 for(j=0;j<campaignnumnext[i];j++){
2234                                                         ipstream.ignore(256,':');
2235                                                         ipstream >> campaignnextlevel[i][j];
2236                                                         campaignnextlevel[i][j]-=1;
2237                                                 }
2238                                                 ipstream.ignore(256,':');
2239                                                 ipstream >> campaignlocationx[i];
2240                                                 //campaignlocationx[i]-=30;
2241                                                 ipstream.ignore(256,':');
2242                                                 ipstream >> campaignlocationy[i];
2243                                                 //campaignlocationy[i]+=30;
2244                                 }
2245                                 ipstream.close();
2246
2247                                 for(i=0;i<campaignnumlevels;i++){
2248                                         levelvisible[i]=0;
2249                                         levelhighlight[i]=0;
2250                                 }
2251
2252                                 levelorder[0]=0;
2253                                 levelvisible[0]=1;
2254                                 if(accountactive->getCampaignChoicesMade())
2255                                         for(i=0;i<accountactive->getCampaignChoicesMade();i++){
2256                                                 levelorder[i+1]=campaignnextlevel[levelorder[i]][accountactive->getCampaignChoice(i)];
2257                                                 levelvisible[levelorder[i+1]]=1;
2258                                         }
2259                                         int whichlevelstart;
2260                                         whichlevelstart=accountactive->getCampaignChoicesMade()-1;
2261                                         if(whichlevelstart<0){
2262                                                 accountactive->setCampaignScore(0);
2263                                                 accountactive->resetFasttime();
2264                                                 campaignchoicenum=1;
2265                                                 campaignchoicewhich[0]=0;
2266                                         }
2267                                         else
2268                                         {
2269                                                 campaignchoicenum=campaignnumnext[levelorder[whichlevelstart]];
2270                                                 if(campaignchoicenum==0){
2271                                                         //if(accountactive->getCampaignFasttime()==0||accountcampaigntime[accountactive]<accountactive->getCampaignFasttime())accountactive->getCampaignFasttime()=accountcampaigntime[accountactive];          
2272                                                 }
2273                                                 if(campaignchoicenum)
2274                                                         for(i=0;i<campaignchoicenum;i++){
2275                                                                 campaignchoicewhich[i]=campaignnextlevel[levelorder[whichlevelstart]][i];
2276                                                                 levelvisible[campaignnextlevel[levelorder[whichlevelstart]][i]]=1;
2277                                                                 levelhighlight[campaignnextlevel[levelorder[whichlevelstart]][i]]=1;
2278                                                         }
2279                                         }
2280                                         /*levelorder[0]=0;
2281                                         levelorder[1]=1;
2282                                         levelorder[2]=2;
2283                                         levelorder[3]=3;*/
2284                         }
2285                 }
2286                 if(mainmenu==5){
2287                         lastcheck=0;
2288                 }
2289
2290                 texdetail=temptexdetail;
2291
2292                 /*if(mainmenu!=0)*/oldmainmenu=mainmenu;
2293
2294                 if(mainmenu==3||mainmenu==4||mainmenu==5||mainmenu==6||mainmenu==7||mainmenu==8||mainmenu==9||mainmenu==10||mainmenu==119||mainmenu==13||mainmenu==17||mainmenu==18){
2295                         glClear(GL_DEPTH_BUFFER_BIT);
2296                         glEnable(GL_ALPHA_TEST);
2297                         glAlphaFunc(GL_GREATER, 0.001f);
2298                         glEnable(GL_TEXTURE_2D);
2299                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
2300                         glDisable(GL_CULL_FACE);
2301                         glDisable(GL_LIGHTING);
2302                         glDepthMask(0);
2303                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
2304                         glPushMatrix();                                                                         // Store The Projection Matrix
2305                                 glLoadIdentity();                                                                       // Reset The Projection Matrix
2306                                 glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
2307                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
2308                                         glPushMatrix();                                                                         // Store The Modelview Matrix
2309                                         glLoadIdentity();                                                               // Reset The Modelview Matrix
2310                                         glTranslatef(screenwidth/2,screenheight/2,0);
2311                                         glPushMatrix();
2312                                                 glScalef((float)screenwidth/2,(float)screenheight/2,1);
2313                                                 glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
2314                                                 glDisable(GL_BLEND);
2315                                                 glColor4f(0,0,0,1.0);
2316                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP );
2317                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP );
2318                                                 glDisable(GL_TEXTURE_2D);
2319                                                 glPushMatrix();
2320                                                         //glScalef(.25,.25,.25);
2321                                                         glBegin(GL_QUADS);
2322                                                         glTexCoord2f(0,0);
2323                                                         glVertex3f(-1,          -1,      0.0f);
2324                                                         glTexCoord2f(1,0);
2325                                                         glVertex3f(1,   -1,      0.0f);
2326                                                         glTexCoord2f(1,1);
2327                                                         glVertex3f(1,   1, 0.0f);
2328                                                         glTexCoord2f(0,1);
2329                                                         glVertex3f(-1,  1, 0.0f);
2330                                                         glEnd();
2331                                                 glPopMatrix();
2332                                                 glEnable(GL_BLEND);
2333                                                 glColor4f(0.4,0.4,0.4,1.0);
2334                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP );
2335                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP );
2336                                                 glEnable(GL_TEXTURE_2D);
2337                                                 glBindTexture( GL_TEXTURE_2D, Mainmenuitems[4]);
2338                                                 glPushMatrix();
2339                                                         //glScalef(.25,.25,.25);
2340                                                         glBegin(GL_QUADS);
2341                                                         glTexCoord2f(0,0);
2342                                                         glVertex3f(-1,          -1,      0.0f);
2343                                                         glTexCoord2f(1,0);
2344                                                         glVertex3f(1,   -1,      0.0f);
2345                                                         glTexCoord2f(1,1);
2346                                                         glVertex3f(1,   1, 0.0f);
2347                                                         glTexCoord2f(0,1);
2348                                                         glVertex3f(-1,  1, 0.0f);
2349                                                         glEnd();
2350                                                 glPopMatrix();
2351                                         glPopMatrix();
2352                                 glPopMatrix();
2353                                 glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
2354                         glPopMatrix();
2355                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
2356
2357                         if(mainmenu==3){                        
2358                                 nummenuitems=14;
2359                                 if((float)newscreenwidth>(float)newscreenheight*1.61||(float)newscreenwidth<(float)newscreenheight*1.59)sprintf (menustring[0], "Resolution: %d*%d",(int)newscreenwidth,(int)newscreenheight);
2360                                 else sprintf (menustring[0], "Resolution: %d*%d (widescreen)",(int)newscreenwidth,(int)newscreenheight);
2361                                 startx[0]=10+20;
2362                                 starty[0]=440;
2363                                 endx[0]=startx[0]+strlen(menustring[0])*10;
2364                                 endy[0]=starty[0]+20;
2365                                 movex[0]=0;
2366                                 movey[0]=0;
2367
2368                                 if(newdetail==2)sprintf (menustring[1], "Detail: High");
2369                                 else if(newdetail==1)sprintf (menustring[1], "Detail: Medium");
2370                                 else sprintf (menustring[1], "Detail: Low");
2371                                 startx[1]=10+60;
2372                                 starty[1]=405;
2373                                 endx[1]=startx[1]+strlen(menustring[1])*10;
2374                                 endy[1]=starty[1]+20;
2375                                 movex[1]=0;
2376                                 movey[1]=0;
2377
2378                                 if(bloodtoggle==2)sprintf (menustring[2], "Blood: On, high detail (slower)");
2379                                 if(bloodtoggle==1)sprintf (menustring[2], "Blood: On, low detail");
2380                                 if(bloodtoggle==0)sprintf (menustring[2], "Blood: Off");
2381                                 startx[2]=10+70;
2382                                 starty[2]=370;
2383                                 endx[2]=startx[2]+strlen(menustring[2])*10;
2384                                 endy[2]=starty[2]+20;
2385                                 movex[2]=0;
2386                                 movey[2]=0;
2387
2388                                 if(difficulty==2)sprintf (menustring[3], "Difficulty: Insane");
2389                                 if(difficulty==1)sprintf (menustring[3], "Difficulty: Difficult");
2390                                 if(difficulty==0)sprintf (menustring[3], "Difficulty: Easier");
2391                                 startx[3]=10+20-1000;
2392                                 starty[3]=335-1000;
2393                                 endx[3]=startx[3]+strlen(menustring[3])*10;
2394                                 endy[3]=starty[3]+20;
2395                                 movex[3]=0;
2396                                 movey[3]=0;
2397
2398                                 if(ismotionblur==1)sprintf (menustring[4], "Blur Effects: Enabled (less compatible)");
2399                                 if(ismotionblur==0)sprintf (menustring[4], "Blur Effects: Disabled (more compatible)");
2400                                 startx[4]=10;
2401                                 starty[4]=335;
2402                                 endx[4]=startx[4]+strlen(menustring[4])*10;
2403                                 endy[4]=starty[4]+20;
2404                                 movex[4]=0;
2405                                 movey[4]=0;
2406
2407                                 if(decals==1)sprintf (menustring[5], "Decals: Enabled (slower)");
2408                                 if(decals==0)sprintf (menustring[5], "Decals: Disabled");
2409                                 startx[5]=10+60;
2410                                 starty[5]=300;
2411                                 endx[5]=startx[5]+strlen(menustring[5])*10;
2412                                 endy[5]=starty[5]+20;
2413                                 movex[5]=0;
2414                                 movey[5]=0;
2415
2416                                 if(musictoggle==1)sprintf (menustring[6], "Music: Enabled");
2417                                 if(musictoggle==0)sprintf (menustring[6], "Music: Disabled");
2418                                 startx[6]=10+70;
2419                                 starty[6]=265;
2420                                 endx[6]=startx[6]+strlen(menustring[6])*10;
2421                                 endy[6]=starty[6]+20;
2422                                 movex[6]=0;
2423                                 movey[6]=0;
2424
2425                                 if(invertmouse==1)sprintf (menustring[9], "Invert mouse: Yes");
2426                                 if(invertmouse==0)sprintf (menustring[9], "Invert mouse: No");
2427                                 startx[9]=10;
2428                                 starty[9]=230;
2429                                 endx[9]=startx[9]+strlen(menustring[9])*10;
2430                                 endy[9]=starty[9]+20;
2431                                 movex[9]=0;
2432                                 movey[9]=0;
2433
2434                                 sprintf (menustring[10], "Mouse Speed: %d", (int)(usermousesensitivity*5));
2435                                 startx[10]=20;
2436                                 starty[10]=195;
2437                                 endx[10]=startx[10]+strlen(menustring[10])*10;
2438                                 endy[10]=starty[10]+20;
2439                                 movex[10]=0;
2440                                 movey[10]=0;
2441                                 
2442                                 sprintf (menustring[11], "Volume: %d%%", (int)(volume*100));
2443                                 startx[11]=10+60;
2444                                 starty[11]=160;
2445                                 endx[11]=startx[11]+strlen(menustring[11])*10;
2446                                 endy[11]=starty[11]+20;
2447                                 movex[11]=0;
2448                                 movey[11]=0;
2449                                 
2450                                 sprintf (menustring[13], "Damage Bar: %s",(showdamagebar?"on":"off"));
2451                                 startx[13]=30;
2452                                 starty[13]=125;
2453                                 endx[13]=startx[13]+strlen(menustring[13])*10;
2454                                 endy[13]=starty[13]+20;
2455                                 movex[13]=0;
2456                                 movey[13]=0;
2457                                 
2458                                 sprintf (menustring[7], "-Configure Controls-");
2459                                 startx[7]=10+15;
2460                                 starty[7]=90;
2461                                 endx[7]=startx[7]+strlen(menustring[7])*10;
2462                                 endy[7]=starty[7]+20;
2463                                 movex[7]=0;
2464                                 movey[7]=0;
2465
2466                                 sprintf (menustring[12], "-Configure Stereo -");
2467                                 startx[12]=10+15;
2468                                 starty[12]=55;
2469                                 endx[12]=startx[12]+strlen(menustring[7])*10;
2470                                 endy[12]=starty[12]+20;
2471                                 movex[12]=0;
2472                                 movey[12]=0;
2473                                 
2474                                 if(newdetail==detail&&newscreenheight==(int)screenheight&&newscreenwidth==(int)screenwidth)sprintf (menustring[8], "Back");
2475                                 else sprintf (menustring[8], "Back (some changes take effect next time Lugaru is opened)");
2476                                 startx[8]=10;
2477                                 endx[8]=startx[8]+strlen(menustring[8])*10;
2478                                 starty[8]=10;
2479                                 endy[8]=starty[8]+20;
2480                                 movex[8]=0;
2481                                 movey[8]=0;
2482                         }
2483
2484                         if(mainmenu==4){                        
2485                                 nummenuitems=10;
2486                                 if(keyselect!=0)sprintf (menustring[0], "Forwards: %s",Input::keyToChar(forwardkey));
2487                                 else sprintf (menustring[0], "Forwards: _");
2488                                 startx[0]=10;
2489                                 starty[0]=400;
2490                                 endx[0]=startx[0]+strlen(menustring[0])*10;
2491                                 endy[0]=starty[0]+20;
2492                                 movex[0]=0;
2493                                 movey[0]=0;
2494
2495                                 if(keyselect!=1)sprintf (menustring[1], "Back: %s",Input::keyToChar(backkey));
2496                                 else sprintf (menustring[1], "Back: _");
2497                                 startx[1]=10+40;
2498                                 starty[1]=360;
2499                                 endx[1]=startx[1]+strlen(menustring[1])*10;
2500                                 endy[1]=starty[1]+20;
2501                                 movex[1]=0;
2502                                 movey[1]=0;
2503
2504                                 if(keyselect!=2)sprintf (menustring[2], "Left: %s",Input::keyToChar(leftkey));
2505                                 else sprintf (menustring[2], "Left: _");
2506                                 startx[2]=10+40;
2507                                 starty[2]=320;
2508                                 endx[2]=startx[2]+strlen(menustring[2])*10;
2509                                 endy[2]=starty[2]+20;
2510                                 movex[2]=0;
2511                                 movey[2]=0;
2512
2513                                 if(keyselect!=3)sprintf (menustring[3], "Right: %s",Input::keyToChar(rightkey));
2514                                 else sprintf (menustring[3], "Right: _");
2515                                 startx[3]=10+30;
2516                                 starty[3]=280;
2517                                 endx[3]=startx[3]+strlen(menustring[3])*10;
2518                                 endy[3]=starty[3]+20;
2519                                 movex[3]=0;
2520                                 movey[3]=0;
2521
2522                                 if(keyselect!=4)sprintf (menustring[4], "Crouch: %s",Input::keyToChar(crouchkey));
2523                                 else sprintf (menustring[4], "Crouch: _");
2524                                 startx[4]=10+20;
2525                                 starty[4]=240;
2526                                 endx[4]=startx[4]+strlen(menustring[4])*10;
2527                                 endy[4]=starty[4]+20;
2528                                 movex[4]=0;
2529                                 movey[4]=0;
2530
2531                                 if(keyselect!=5)sprintf (menustring[5], "Jump: %s",Input::keyToChar(jumpkey));
2532                                 else sprintf (menustring[5], "Jump: _");
2533                                 startx[5]=10+40;
2534                                 starty[5]=200;
2535                                 endx[5]=startx[5]+strlen(menustring[5])*10;
2536                                 endy[5]=starty[5]+20;
2537                                 movex[5]=0;
2538                                 movey[5]=0;
2539
2540                                 if(keyselect!=6)sprintf (menustring[6], "Draw: %s",Input::keyToChar(drawkey));
2541                                 else sprintf (menustring[6], "Draw: _");
2542                                 startx[6]=10+40;
2543                                 starty[6]=160;
2544                                 endx[6]=startx[6]+strlen(menustring[6])*10;
2545                                 endy[6]=starty[6]+20;
2546                                 movex[6]=0;
2547                                 movey[6]=0;
2548
2549                                 if(keyselect!=7)sprintf (menustring[7], "Throw: %s",Input::keyToChar(throwkey));
2550                                 else sprintf (menustring[7], "Throw: _");
2551                                 startx[7]=10+30;
2552                                 starty[7]=120;
2553                                 endx[7]=startx[7]+strlen(menustring[7])*10;
2554                                 endy[7]=starty[7]+20;
2555                                 movex[7]=0;
2556                                 movey[7]=0;
2557
2558                                 if(keyselect!=8)sprintf (menustring[8], "Attack: %s",Input::keyToChar(attackkey));
2559                                 else sprintf (menustring[8], "Attack: _");
2560                                 startx[8]=10+20;
2561                                 starty[8]=80;
2562                                 endx[8]=startx[8]+strlen(menustring[8])*10;
2563                                 endy[8]=starty[8]+20;
2564                                 movex[8]=0;
2565                                 movey[8]=0;
2566
2567
2568
2569                                 sprintf (menustring[9], "Back");
2570                                 startx[9]=10;
2571                                 endx[9]=startx[9]+strlen(menustring[9])*10;
2572                                 starty[9]=10;
2573                                 endy[9]=starty[9]+20;
2574                                 movex[9]=0;
2575                                 movey[9]=0;
2576                         }
2577                         if(mainmenu==5){                        
2578                                 nummenuitems=7+accountactive->getCampaignChoicesMade()+campaignchoicenum;
2579
2580                                 sprintf (menustring[0], "%s",accountactive->getName());
2581                                 startx[0]=5;
2582                                 starty[0]=400;
2583                                 endx[0]=startx[0]+strlen(menustring[0])*10;
2584                                 endy[0]=starty[0]+20;
2585                                 movex[0]=0;
2586                                 movey[0]=0;
2587
2588                                 sprintf (menustring[1], "Tutorial");
2589                                 startx[1]=5;
2590                                 starty[1]=300;
2591                                 endx[1]=startx[1]+strlen(menustring[1])*10;
2592                                 endy[1]=starty[1]+20;
2593                                 movex[1]=0;
2594                                 movey[1]=0;
2595
2596                                 sprintf (menustring[2], "Challenge");
2597                                 startx[2]=5;
2598                                 starty[2]=240;
2599                                 endx[2]=startx[2]+strlen(menustring[2])*10;
2600                                 endy[2]=starty[2]+20;
2601                                 movex[2]=0;
2602                                 movey[2]=0;
2603
2604                                 sprintf (menustring[3], "Delete User");
2605                                 startx[3]=400;
2606                                 starty[3]=10;
2607                                 endx[3]=startx[3]+strlen(menustring[3])*10;
2608                                 endy[3]=starty[3]+20;
2609                                 movex[3]=0;
2610                                 movey[3]=0;
2611
2612                                 sprintf (menustring[4], "Main Menu");
2613                                 startx[4]=5;
2614                                 starty[4]=10;
2615                                 endx[4]=startx[4]+strlen(menustring[4])*10;
2616                                 endy[4]=starty[4]+20;
2617                                 movex[4]=0;
2618                                 movey[4]=0;
2619
2620                                 sprintf (menustring[5], "Change User");
2621                                 startx[5]=5;
2622                                 endx[5]=startx[5]+strlen(menustring[5])*10;
2623                                 starty[5]=180;
2624                                 endy[5]=starty[5]+20;
2625                                 movex[5]=0;
2626                                 movey[5]=0;
2627
2628                                 //World
2629
2630                                 sprintf (menustring[6], "World");
2631                                 startx[6]=30+120;
2632                                 starty[6]=30+480-400-50;
2633                                 endx[6]=startx[6]+400;
2634                                 endy[6]=30+480-50;
2635                                 movex[6]=0;
2636                                 movey[6]=0;
2637
2638                                 if(accountactive->getCampaignChoicesMade())
2639                                         for(i=0;i<accountactive->getCampaignChoicesMade();i++){
2640                                                 sprintf (menustring[7+i], "%s", campaigndescription[levelorder[i]]);
2641                                                 startx[7+i]=30+120+campaignlocationx[levelorder[i]]*400/512;
2642                                                 starty[7+i]=30+30+(512-campaignlocationy[levelorder[i]])*400/512;
2643                                                 endx[7+i]=startx[7+i]+10;
2644                                                 endy[7+i]=starty[7+i]+10;
2645                                                 movex[7+i]=0;
2646                                                 movey[7+i]=0;
2647                                         }
2648
2649                                         if(campaignchoicenum>0)
2650                                                 for(i=accountactive->getCampaignChoicesMade();i<accountactive->getCampaignChoicesMade()+campaignchoicenum;i++){
2651                                                         sprintf (menustring[7+i], "%s", campaigndescription[levelorder[i]]);
2652                                                         startx[7+i]=30+120+campaignlocationx[campaignchoicewhich[i-(accountactive->getCampaignChoicesMade())]]*400/512;
2653                                                         starty[7+i]=30+30+(512-campaignlocationy[campaignchoicewhich[i-(accountactive->getCampaignChoicesMade())]])*400/512;
2654                                                         endx[7+i]=startx[7+i]+10;
2655                                                         endy[7+i]=starty[7+i]+10;
2656                                                         movex[7+i]=0;
2657                                                         movey[7+i]=0;
2658                                                 }
2659
2660                                                 /*sprintf (menustring[7], "Dot");
2661                                                 startx[7]=120+260*400/512;
2662                                                 starty[7]=30+(512-184)*400/512;
2663                                                 endx[7]=startx[7]+10;
2664                                                 endy[7]=starty[7]+10;
2665                                                 movex[7]=0;
2666                                                 movey[7]=0;
2667
2668                                                 sprintf (menustring[8], "Dot");
2669                                                 startx[8]=120+129*400/512;
2670                                                 starty[8]=30+(512-284)*400/512;
2671                                                 endx[8]=startx[8]+10;
2672                                                 endy[8]=starty[8]+10;
2673                                                 movex[8]=0;
2674                                                 movey[8]=0;
2675
2676                                                 sprintf (menustring[9], "Dot");
2677                                                 startx[9]=120+358*400/512;
2678                                                 starty[9]=30+(512-235)*400/512;
2679                                                 endx[9]=startx[9]+10;
2680                                                 endy[9]=starty[9]+10;
2681                                                 movex[9]=0;
2682                                                 movey[9]=0;
2683
2684                                                 sprintf (menustring[10], "Dot");
2685                                                 startx[10]=120+359*400/512;
2686                                                 starty[10]=30+(512-308)*400/512;
2687                                                 endx[10]=startx[10]+10;
2688                                                 endy[10]=starty[10]+10;
2689                                                 movex[10]=0;
2690                                                 movey[10]=0;
2691
2692                                                 sprintf (menustring[11], "Dot");
2693                                                 startx[11]=120+288*400/512;
2694                                                 starty[11]=30+(512-277)*400/512;
2695                                                 endx[11]=startx[11]+10;
2696                                                 endy[11]=starty[11]+10;
2697                                                 movex[11]=0;
2698                                                 movey[11]=0;*/
2699                         }
2700
2701                         if(mainmenu==6){                        
2702                                 nummenuitems=3;
2703
2704                                 sprintf (menustring[0], "Are you sure you want to delete this user?");
2705                                 startx[0]=10;
2706                                 starty[0]=400;
2707                                 endx[0]=startx[0]+strlen(menustring[0])*10;
2708                                 endy[0]=starty[0]+20;
2709                                 movex[0]=0;
2710                                 movey[0]=0;
2711
2712                                 sprintf (menustring[1], "Yes");
2713                                 startx[1]=10;
2714                                 starty[1]=360;
2715                                 endx[1]=startx[1]+strlen(menustring[1])*10;
2716                                 endy[1]=starty[1]+20;
2717                                 movex[1]=0;
2718                                 movey[1]=0;
2719
2720                                 sprintf (menustring[2], "No");
2721                                 startx[2]=10;
2722                                 starty[2]=320;
2723                                 endx[2]=startx[2]+strlen(menustring[2])*10;
2724                                 endy[2]=starty[2]+20;
2725                                 movex[2]=0;
2726                                 movey[2]=0;
2727
2728                                 sprintf (menustring[3], "Extra 4");
2729                                 startx[3]=10;
2730                                 starty[3]=280;
2731                                 endx[3]=startx[3]+strlen(menustring[3])*10;
2732                                 endy[3]=starty[3]+20;
2733                                 movex[3]=0;
2734                                 movey[3]=0;
2735
2736                                 sprintf (menustring[4], "Extra 5");
2737                                 startx[4]=10;
2738                                 starty[4]=240;
2739                                 endx[4]=startx[4]+strlen(menustring[4])*10;
2740                                 endy[4]=starty[4]+20;
2741                                 movex[4]=0;
2742                                 movey[4]=0;
2743
2744                                 sprintf (menustring[5], "Back");
2745                                 startx[5]=10;
2746                                 endx[5]=startx[5]+strlen(menustring[5])*10;
2747                                 starty[5]=10;
2748                                 endy[5]=starty[5]+20;
2749                                 movex[5]=0;
2750                                 movey[5]=0;
2751                         }
2752
2753                         if(mainmenu==7){        
2754                                 nummenuitems=Account::getNbAccounts()+2;
2755
2756                                 int num;
2757
2758                                 if(Account::getNbAccounts()<8)
2759                                         sprintf (menustring[0], "New User");
2760                                 else
2761                                         sprintf (menustring[0], "No More Users");
2762                                 startx[0]=10;
2763                                 starty[0]=400;
2764                                 endx[0]=startx[0]+strlen(menustring[0])*10;
2765                                 endy[0]=starty[0]+20;
2766                                 movex[0]=0;
2767                                 movey[0]=0;
2768
2769                                 if(entername)
2770                                         startx[0]+=10;
2771
2772
2773                                 num=1;
2774                                 for(i=0;i<Account::getNbAccounts();i++){
2775                                         sprintf (menustring[num], "%s",Account::get(i)->getName());
2776                                         startx[num]=10;
2777                                         starty[num]=360-20-20*num;
2778                                         endx[num]=startx[num]+strlen(menustring[num])*10;
2779                                         endy[num]=starty[num]+20;
2780                                         movex[num]=0;
2781                                         movey[num]=0;
2782
2783                                         num++;
2784                                 }
2785
2786                                 sprintf (menustring[num], "Back");
2787                                 startx[num]=10;
2788                                 endx[num]=startx[num]+strlen(menustring[num])*10;
2789                                 starty[num]=10;
2790                                 endy[num]=starty[num]+20;
2791                                 movex[num]=0;
2792                                 movey[num]=0;
2793                         }
2794                         if(mainmenu==8){                        
2795                                 nummenuitems=3;
2796
2797                                 sprintf (menustring[0], "Easier");
2798                                 startx[0]=10;
2799                                 starty[0]=400;
2800                                 endx[0]=startx[0]+strlen(menustring[0])*10;
2801                                 endy[0]=starty[0]+20;
2802                                 movex[0]=0;
2803                                 movey[0]=0;
2804
2805                                 sprintf (menustring[1], "Difficult");
2806                                 startx[1]=10;
2807                                 starty[1]=360;
2808                                 endx[1]=startx[1]+strlen(menustring[1])*10;
2809                                 endy[1]=starty[1]+20;
2810                                 movex[1]=0;
2811                                 movey[1]=0;
2812
2813                                 sprintf (menustring[2], "Insane");
2814                                 startx[2]=10;
2815                                 starty[2]=320;
2816                                 endx[2]=startx[2]+strlen(menustring[2])*10;
2817                                 endy[2]=starty[2]+20;
2818                                 movex[2]=0;
2819                                 movey[2]=0;
2820                         }
2821                         if(mainmenu==9){                        
2822                                 int tempncl;
2823                                 //tempncl=numchallengelevels;
2824                                 //numchallengelevels=9;
2825                                 nummenuitems=2+numchallengelevels;
2826                                 char temp[255];
2827
2828                                 for(j=0;j<numchallengelevels;j++){
2829                                         for(i=0;i<255;i++)menustring[j][i]='\0';
2830                                         sprintf (temp, "Level %d",j+1);
2831                                         strcpy(menustring[j],temp);
2832                                         for(i=0;i<17;i++)if(menustring[j][i]=='\0')menustring[j][i]=' ';
2833                                         menustring[j][17]='\0';
2834                                         sprintf (temp, "%d",(int)accountactive->getHighScore(j));
2835                                         strcat(menustring[j],temp);
2836                                         for(i=18;i<32;i++)if(menustring[j][i]=='\0')menustring[j][i]=' ';
2837                                         menustring[j][32]='\0';
2838                                         sprintf (temp, "%d:",(int)(((int)accountactive->getFastTime(j)-(int)(accountactive->getFastTime(j))%60)/60));
2839                                         strcat(menustring[j],temp);
2840                                         if((int)(accountactive->getFastTime(j))%60<10)strcat(menustring[j],"0");
2841                                         sprintf (temp, "%d",(int)(accountactive->getFastTime(j))%60);
2842                                         strcat(menustring[j],temp);
2843
2844                                         startx[j]=10;
2845                                         starty[j]=400-j*25;
2846                                         endx[j]=startx[j]+strlen(menustring[j])*10;
2847                                         endy[j]=starty[j]+20;
2848                                         movex[j]=0;
2849                                         movey[j]=0;
2850                                 }
2851
2852                                 sprintf (menustring[numchallengelevels], "Back");
2853                                 startx[numchallengelevels]=10;
2854                                 endx[numchallengelevels]=startx[numchallengelevels]+strlen(menustring[numchallengelevels])*10;
2855                                 starty[numchallengelevels]=10;
2856                                 endy[numchallengelevels]=starty[numchallengelevels]+20;
2857                                 movex[numchallengelevels]=0;
2858                                 movey[numchallengelevels]=0;
2859
2860                                 sprintf (menustring[numchallengelevels+1], "             High Score      Best Time");
2861                                 startx[numchallengelevels+1]=10;
2862                                 starty[numchallengelevels+1]=440;
2863                                 endx[numchallengelevels+1]=startx[numchallengelevels+1]+strlen(menustring[numchallengelevels+1])*10;
2864                                 endy[numchallengelevels+1]=starty[numchallengelevels+1]+20;
2865                                 movex[numchallengelevels+1]=0;
2866                                 movey[numchallengelevels+1]=0;
2867
2868                                 //numchallengelevels=tempncl;
2869
2870                         }
2871                         if(mainmenu==11){                       
2872                                 nummenuitems=2+numchallengelevels;
2873                                 char temp[255];
2874
2875                                 for(j=0;j<numchallengelevels;j++){
2876                                         for(i=0;i<255;i++)menustring[j][i]='\0';
2877                                         sprintf (temp, "Level %d",j+1);
2878                                         strcpy(menustring[j],temp);
2879                                         for(i=0;i<17;i++)if(menustring[j][i]=='\0')menustring[j][i]=' ';
2880                                         menustring[j][17]='\0';
2881                                         sprintf (temp, "%d",(int)accountactive->getHighScore(j));
2882                                         strcat(menustring[j],temp);
2883                                         for(i=18;i<32;i++)if(menustring[j][i]=='\0')menustring[j][i]=' ';
2884                                         menustring[j][32]='\0';
2885                                         sprintf (temp, "%d:",(int)(((int)accountactive->getFastTime(j)-(int)(accountactive->getFastTime(j))%60)/60));
2886                                         strcat(menustring[j],temp);
2887                                         if((int)(accountactive->getFastTime(j))%60<10)strcat(menustring[j],"0");
2888                                         sprintf (temp, "%d",(int)(accountactive->getFastTime(j))%60);
2889                                         strcat(menustring[j],temp);
2890
2891                                         startx[j]=10;
2892                                         starty[j]=360-j*40;
2893                                         endx[j]=startx[j]+strlen(menustring[j])*10;
2894                                         endy[j]=starty[j]+20;
2895                                         movex[j]=0;
2896                                         movey[j]=0;
2897                                 }
2898
2899                                 sprintf (menustring[numchallengelevels], "Back");
2900                                 startx[numchallengelevels]=10;
2901                                 endx[numchallengelevels]=startx[numchallengelevels]+strlen(menustring[numchallengelevels])*10;
2902                                 starty[numchallengelevels]=10;
2903                                 endy[numchallengelevels]=starty[numchallengelevels]+20;
2904                                 movex[numchallengelevels]=0;
2905                                 movey[numchallengelevels]=0;
2906
2907                                 sprintf (menustring[numchallengelevels+1], "             High Score      Best Time");
2908                                 startx[numchallengelevels+1]=10;
2909                                 starty[numchallengelevels+1]=400;
2910                                 endx[numchallengelevels+1]=startx[numchallengelevels+1]+strlen(menustring[numchallengelevels+1])*10;
2911                                 endy[numchallengelevels+1]=starty[numchallengelevels+1]+20;
2912                                 movex[numchallengelevels+1]=0;
2913                                 movey[numchallengelevels+1]=0;
2914
2915                         }
2916                         if(mainmenu==10){                       
2917                                 nummenuitems=6;
2918                                 char temp[255];
2919
2920                                 sprintf (menustring[0], "Congratulations!");
2921                                 startx[0]=220;
2922                                 starty[0]=330;
2923                                 endx[0]=startx[0]+strlen(menustring[0])*10;
2924                                 endy[0]=starty[0]+20;
2925                                 movex[0]=0;
2926                                 movey[0]=0;
2927
2928                                 sprintf (menustring[1], "You have avenged your family and");
2929                                 startx[1]=140;
2930                                 starty[1]=300;
2931                                 endx[1]=startx[1]+strlen(menustring[1])*10;
2932                                 endy[1]=starty[1]+20;
2933                                 movex[1]=0;
2934                                 movey[1]=0;
2935
2936                                 sprintf (menustring[2], "restored peace to the island of Lugaru.");
2937                                 startx[2]=110;
2938                                 starty[2]=270;
2939                                 endx[2]=startx[2]+strlen(menustring[2])*10;
2940                                 endy[2]=starty[2]+20;
2941                                 movex[2]=0;
2942                                 movey[2]=0;
2943
2944                                 sprintf (menustring[3], "Back");
2945                                 startx[3]=10;
2946                                 endx[3]=startx[3]+strlen(menustring[3])*10;
2947                                 starty[3]=10;
2948                                 endy[3]=starty[3]+20;
2949                                 movex[3]=0;
2950                                 movey[3]=0;
2951
2952                                 for(i=0;i<255;i++)menustring[4][i]='\0';
2953                                 sprintf (temp, "Your score:");
2954                                 strcpy(menustring[4],temp);
2955                                 for(i=0;i<20;i++)if(menustring[4][i]=='\0')menustring[4][i]=' ';
2956                                 menustring[4][20]='\0';
2957                                 sprintf (temp, "%d",(int)accountactive->getCampaignScore());
2958                                 strcat(menustring[4],temp);
2959                                 startx[4]=190;
2960                                 endx[4]=startx[4]+strlen(menustring[4])*10;
2961                                 starty[4]=200;
2962                                 endy[4]=starty[4]+20;
2963                                 movex[4]=0;
2964                                 movey[4]=0;
2965                                 /*
2966                                 for(i=0;i<255;i++)menustring[5][i]='\0';
2967                                 sprintf (temp, "Your time:");
2968                                 strcpy(menustring[5],temp);
2969                                 for(i=0;i<20;i++)if(menustring[5][i]=='\0')menustring[5][i]=' ';
2970                                 menustring[5][20]='\0';
2971                                 sprintf (temp, "%d",(int)accountcampaigntime[accountactive]);
2972                                 strcat(menustring[5],temp);
2973                                 startx[5]=200;
2974                                 endx[5]=startx[5]+strlen(menustring[5])*10;
2975                                 starty[5]=180;
2976                                 endy[5]=starty[5]+20;
2977                                 movex[5]=0;
2978                                 movey[5]=0;
2979                                 */
2980                                 for(i=0;i<255;i++)menustring[5][i]='\0';
2981                                 sprintf (temp, "Highest score:");
2982                                 strcpy(menustring[5],temp);
2983                                 for(i=0;i<20;i++)if(menustring[5][i]=='\0')menustring[5][i]=' ';
2984                                 menustring[5][20]='\0';
2985                                 sprintf (temp, "%d",(int)accountactive->getCampaignHighScore());
2986                                 strcat(menustring[5],temp);
2987                                 startx[5]=190;
2988                                 endx[5]=startx[5]+strlen(menustring[5])*10;
2989                                 starty[5]=180;
2990                                 endy[5]=starty[5]+20;
2991                                 movex[5]=0;
2992                                 movey[5]=0;
2993                                 /*
2994                                 for(i=0;i<255;i++)menustring[7][i]='\0';
2995                                 sprintf (temp, "Lowest time:");
2996                                 strcpy(menustring[7],temp);
2997                                 for(i=0;i<20;i++)if(menustring[7][i]=='\0')menustring[7][i]=' ';
2998                                 menustring[7][20]='\0';
2999                                 sprintf (temp, "%d",(int)accountactive->getCampaignFasttime());
3000                                 strcat(menustring[7],temp);
3001                                 startx[7]=200;
3002                                 endx[7]=startx[7]+strlen(menustring[7])*10;
3003                                 starty[7]=130;
3004                                 endy[7]=starty[7]+20;
3005                                 movex[7]=0;
3006                                 movey[7]=0;*/
3007                         }
3008                         if (mainmenu==18) {
3009                                 nummenuitems=4;
3010                                 sprintf (menustring[0], "Stereo mode: %s", StereoModeName(newstereomode));
3011                                 startx[0]=70;
3012                                 starty[0]=400;
3013                                 endx[0]=startx[0]+strlen(menustring[0])*10;
3014                                 endy[0]=starty[0]+20;
3015                                 movex[0]=0;
3016                                 movey[0]=0;
3017                                 
3018                                 sprintf (menustring[1], "Stereo separation: %.3f", stereoseparation);
3019                                 startx[1]=10;
3020                                 starty[1]=360;
3021                                 endx[1]=startx[1]+strlen(menustring[1])*10;
3022                                 endy[1]=starty[1]+20;
3023                                 movex[1]=0;
3024                                 movey[1]=0;
3025
3026                                 sprintf (menustring[2], "Reverse stereo: %s", stereoreverse ? "Yes" : "No");
3027                                 startx[2]=40;
3028                                 starty[2]=320;
3029                                 endx[2]=startx[2]+strlen(menustring[2])*10;
3030                                 endy[2]=starty[2]+20;
3031                                 movex[2]=0;
3032                                 movey[2]=0;
3033                                 
3034                                 sprintf (menustring[3], "Back");
3035                                 startx[3]=10;
3036                                 endx[3]=startx[3]+strlen(menustring[3])*10;
3037                                 starty[3]=10;
3038                                 endy[3]=starty[3]+20;
3039                                 movex[3]=0;
3040                                 movey[3]=0;                             
3041                         }
3042                 }
3043
3044                 if(mainmenu==13){       
3045                         nummenuitems=2;
3046                         char temp[255];
3047
3048                         sprintf (menustring[0], "Please enter your name:");
3049                         startx[0]=50;
3050                         starty[0]=250;
3051                         endx[0]=startx[0]+strlen(menustring[0])*10;
3052                         endy[0]=starty[0]+20;
3053                         movex[0]=0;
3054                         movey[0]=0;
3055
3056                         sprintf (menustring[1], "Please enter your name:");
3057                         startx[1]=290;
3058                         starty[1]=250;
3059                         endx[1]=startx[1]+strlen(menustring[1])*10;
3060                         endy[1]=starty[1]+20;
3061                         movex[1]=0;
3062                         movey[1]=0;
3063                 }
3064                 if(mainmenu==1||mainmenu==2){
3065                         nummenuitems=7;
3066                         startx[0]=150;
3067                         starty[0]=480-128;
3068                         endx[0]=150+256;
3069                         endy[0]=480;
3070                         movex[0]=0;
3071                         movey[0]=0;
3072
3073                         startx[1]=18;
3074                         starty[1]=480-152-32;
3075                         endx[1]=18+128;
3076                         endy[1]=480-152;
3077                         movex[1]=0;
3078                         movey[1]=0;
3079
3080                         startx[2]=18;
3081                         starty[2]=480-228-32;
3082                         endx[2]=2+128;
3083                         endy[2]=480-228;
3084                         movex[2]=0;
3085                         movey[2]=0;
3086
3087                         if(mainmenu==1){
3088                                 startx[3]=18;
3089                                 starty[3]=480-306-32;
3090                                 endx[3]=22+64;
3091                                 endy[3]=480-306;
3092                                 movex[3]=0;
3093                                 movey[3]=0;
3094                         }
3095
3096                         if(mainmenu==2){
3097                                 startx[3]=18;
3098                                 starty[3]=480-306-32;
3099                                 endx[3]=22+128;
3100                                 endy[3]=480-306;
3101                                 movex[3]=0;
3102                                 movey[3]=0;
3103                         }
3104
3105                         /*startx[4]=150;
3106                         starty[4]=480-256;
3107                         endx[4]=150+256;
3108                         endy[4]=480;
3109                         */
3110                         if(anim==0){
3111                                 startx[4]=380;
3112                                 starty[4]=480-140-256;
3113                                 endx[4]=380+256;
3114                                 endy[4]=480-140;
3115                                 movex[4]=80;
3116                                 movey[4]=0;
3117
3118                                 startx[5]=145;
3119                                 starty[5]=480-138-256;
3120                                 endx[5]=145+256;
3121                                 endy[5]=480-138;
3122                                 movex[5]=40;
3123                                 movey[5]=0;
3124
3125                                 startx[6]=254;
3126                                 starty[6]=480-144-256;
3127                                 endx[6]=254+256;
3128                                 endy[6]=480-144;
3129                                 movex[6]=20;
3130                                 movey[6]=0;
3131                         }
3132                         if(anim==1){
3133                                 startx[4]=180;
3134                                 starty[4]=480-140-256;
3135                                 endx[4]=180+256;
3136                                 endy[4]=480-140;
3137                                 movex[4]=80;
3138                                 movey[4]=0;
3139
3140                                 startx[5]=500;
3141                                 starty[5]=480-138-256;
3142                                 endx[5]=500+256;
3143                                 endy[5]=480-138;
3144                                 movex[5]=40;
3145                                 movey[5]=0;
3146
3147                                 startx[6]=340;
3148                                 starty[6]=480-144-256;
3149                                 endx[6]=340+256;
3150                                 endy[6]=480-144;
3151                                 movex[6]=20;
3152                                 movey[6]=0;
3153                         }
3154                         if(anim==2){
3155                                 startx[4]=460;
3156                                 starty[4]=480-140-256;
3157                                 endx[4]=460+256;
3158                                 endy[4]=480-140;
3159                                 movex[4]=50;
3160                                 movey[4]=0;
3161
3162                                 startx[5]=295;
3163                                 starty[5]=480-150-256;
3164                                 endx[5]=295+256;
3165                                 endy[5]=480-138;
3166                                 movex[5]=-10;
3167                                 movey[5]=0;
3168
3169                                 startx[6]=204;
3170                                 starty[6]=480-144-256;
3171                                 endx[6]=204+256;
3172                                 endy[6]=480-144;
3173                                 movex[6]=-30;
3174                                 movey[6]=0;
3175                         }
3176                         if(anim==3){
3177                                 startx[4]=150;
3178                                 starty[4]=480-140-256;
3179                                 endx[4]=200+256;
3180                                 endy[4]=480-140;
3181                                 movex[4]=80;
3182                                 movey[4]=0;
3183
3184                                 startx[5]=350;
3185                                 starty[5]=480-150-256;
3186                                 endx[5]=350+256;
3187                                 endy[5]=480-138;
3188                                 movex[5]=5;
3189                                 movey[5]=0;
3190
3191                                 startx[6]=500;
3192                                 starty[6]=480-144-256;
3193                                 endx[6]=500+256;
3194                                 endy[6]=480-144;
3195                                 movex[6]=-10;
3196                                 movey[6]=0;
3197                         }
3198                         if(anim==4){
3199                                 startx[4]=190;
3200                                 starty[4]=480-100-256;
3201                                 endx[4]=190+256;
3202                                 endy[4]=480-100;
3203                                 movex[4]=-30;
3204                                 movey[4]=0;
3205
3206                                 startx[5]=185;
3207                                 starty[5]=480-120-256;
3208                                 endx[5]=185+256;
3209                                 endy[5]=480-120;
3210                                 movex[5]=-5;
3211                                 movey[5]=0;
3212
3213                                 startx[6]=400;
3214                                 starty[6]=480-144-256;
3215                                 endx[6]=400+256;
3216                                 endy[6]=480-144;
3217                                 movex[6]=20;
3218                                 movey[6]=0;
3219                         }
3220                 }
3221
3222                 selected=-1;
3223
3224                 if(mainmenu==1||mainmenu==2)
3225                         for(i=1;i<4;i++){
3226                                 if((mousecoordh/screenwidth*640)>startx[i]&&(mousecoordh/screenwidth*640)<endx[i]&&480-(mousecoordv/screenheight*480)>starty[i]&&480-(mousecoordv/screenheight*480)<endy[i]){
3227                                         selected=i;
3228                                 }
3229                         }
3230
3231                         if(mainmenu==3||mainmenu==4||mainmenu==5||mainmenu==6||mainmenu==7||mainmenu==8||mainmenu==9||mainmenu==10||mainmenu==11||mainmenu==13||mainmenu==17||mainmenu==18)
3232                                 for(i=0;i<nummenuitems;i++){
3233                                         if((mousecoordh/screenwidth*640)>startx[i]&&(mousecoordh/screenwidth*640)<endx[i]&&480-(mousecoordv/screenheight*480)>starty[i]&&480-(mousecoordv/screenheight*480)<endy[i]){
3234                                                 if(mainmenu!=5)selected=i;
3235                                                 if(mainmenu==5&&(i!=0&&i!=6))selected=i;
3236                                                 if(mainmenu==9&&(i!=numchallengelevels+1))selected=i;
3237                                                 if(mainmenu==11&&(i!=numchallengelevels+1))selected=i;
3238                                         }
3239                                 }
3240
3241                                 if(nummenuitems>0)
3242                                         for(i=0;i<nummenuitems;i++){
3243                                                 if(selected==i)selectedlong[i]+=multiplier*5;
3244                                                 if(selectedlong[i]>1)selectedlong[i]=1;
3245                                                 if(selected!=i)selectedlong[i]-=multiplier*5;
3246                                                 if(selectedlong[i]<0)selectedlong[i]=0; 
3247                                                 //if(i>=4)selectedlong[i]=.3;           
3248                                                 if(i>=4&&(mainmenu==1||mainmenu==2))selectedlong[i]=0;  
3249                                         }
3250
3251                                         if(nummenuitems>0)
3252                                                 for(i=0;i<nummenuitems;i++){
3253                                                         offsetx[i]=(startx[i]+endx[i])/2-(mousecoordh/screenwidth*640);
3254                                                         offsety[i]=(starty[i]+endy[i])/2-(480-(mousecoordv/screenheight*480));
3255                                                         offsetx[i]*=.06f;
3256                                                         offsety[i]*=.06f;
3257                                                         offsetx[i]=0;
3258                                                         offsety[i]=0;
3259                                                         if(i>=4&&(mainmenu==1||mainmenu==2)){
3260                                                                 offsetx[i]=(startx[i]+endx[i]+movex[i]*transition)/2-(640+190)/2;
3261                                                                 offsety[i]=(starty[i]+endy[i]+movey[i]*transition)/2-(336+150)/2;
3262                                                                 offsetx[i]*=.06f;
3263                                                                 offsety[i]*=.06f;
3264                                                         }
3265                                                 }
3266
3267                                                 if(mainmenu==1||mainmenu==2){
3268                                                         glClear(GL_DEPTH_BUFFER_BIT);
3269                                                         glEnable(GL_ALPHA_TEST);
3270                                                         glAlphaFunc(GL_GREATER, 0.001f);
3271                                                         glEnable(GL_TEXTURE_2D);
3272                                                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
3273                                                         glDisable(GL_CULL_FACE);
3274                                                         glDisable(GL_LIGHTING);
3275                                                         glDepthMask(0);
3276                                                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3277                                                         glPushMatrix();                                                                         // Store The Projection Matrix
3278                                                                 glLoadIdentity();                                                                       // Reset The Projection Matrix
3279                                                                 glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
3280                                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3281                                                                 glPushMatrix();                                                                         // Store The Modelview Matrix
3282                                                                         glLoadIdentity();                                                               // Reset The Modelview Matrix
3283                                                                         glTranslatef(screenwidth/2,screenheight/2,0);
3284                                                                         glPushMatrix();
3285                                                                                 glScalef((float)screenwidth/2,(float)screenheight/2,1);
3286                                                                                 glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
3287                                                                                 glDisable(GL_BLEND);
3288                                                                                 glColor4f(0,0,0,1.0);
3289                                                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP );
3290                                                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP );
3291                                                                                 glDisable(GL_TEXTURE_2D);
3292                                                                                 glPushMatrix();
3293                                                                                         //glScalef(.25,.25,.25);
3294                                                                                         glBegin(GL_QUADS);
3295                                                                                         glTexCoord2f(0,0);
3296                                                                                         glVertex3f(-1,          -1,      0.0f);
3297                                                                                         glTexCoord2f(1,0);
3298                                                                                         glVertex3f(1,   -1,      0.0f);
3299                                                                                         glTexCoord2f(1,1);
3300                                                                                         glVertex3f(1,   1, 0.0f);
3301                                                                                         glTexCoord2f(0,1);
3302                                                                                         glVertex3f(-1,  1, 0.0f);
3303                                                                                         glEnd();
3304                                                                                 glPopMatrix();
3305                                                                                 glEnable(GL_BLEND);
3306                                                                                 glColor4f(0.4,0.4,0.4,1.0);
3307                                                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP );
3308                                                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP );
3309                                                                                 glEnable(GL_TEXTURE_2D);
3310                                                                                 glBindTexture( GL_TEXTURE_2D, Mainmenuitems[4]);
3311                                                                                 glPushMatrix();
3312                                                                                         //glScalef(.25,.25,.25);
3313                                                                                         glBegin(GL_QUADS);
3314                                                                                         glTexCoord2f(0,0);
3315                                                                                         glVertex3f(-1,          -1,      0.0f);
3316                                                                                         glTexCoord2f(1,0);
3317                                                                                         glVertex3f(1,   -1,      0.0f);
3318                                                                                         glTexCoord2f(1,1);
3319                                                                                         glVertex3f(1,   1, 0.0f);
3320                                                                                         glTexCoord2f(0,1);
3321                                                                                         glVertex3f(-1,  1, 0.0f);
3322                                                                                         glEnd();
3323                                                                                 glPopMatrix();
3324                                                                         glPopMatrix();
3325                                                                 glPopMatrix();
3326                                                                 glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3327                                                         glPopMatrix();
3328
3329                                                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3330                                                         glPushMatrix();                                                                         // Store The Projection Matrix
3331                                                                 glLoadIdentity();                                                                       // Reset The Projection Matrix
3332                                                                 glOrtho(0,640,0,480,-100,100);                                          // Set Up An Ortho Screen
3333                                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3334                                                                 glPushMatrix();                                                                         // Store The Modelview Matrix
3335                                                                         glLoadIdentity();                                                               // Reset The Modelview Matrix
3336                                                                         glPushMatrix();
3337                                                                                 glDisable(GL_TEXTURE_2D);
3338                                                                                 glColor4f(1,0,0,1);
3339                                                                                 /*glPushMatrix();
3340                                                                                 glBegin(GL_QUADS);
3341                                                                                 glTexCoord2f(0,0);
3342                                                                                 if(anim!=1)glVertex3f(190,      150,     0.0f);
3343                                                                                 if(anim==1)glVertex3f(190+movex[4]*transition,  150,     0.0f);
3344                                                                                 glTexCoord2f(1,0);
3345                                                                                 glVertex3f(640, 150,     0.0f);
3346                                                                                 glTexCoord2f(1,1);
3347                                                                                 glVertex3f(640, 336, 0.0f);
3348                                                                                 glTexCoord2f(0,1);
3349                                                                                 if(anim!=1)glVertex3f(190, 336, 0.0f);
3350                                                                                 if(anim==1)glVertex3f(190+movex[4]*transition, 336,      0.0f);
3351                                                                                 glEnd();
3352                                                                                 glPopMatrix();*/
3353                                                                         glPopMatrix();
3354                                                                 glPopMatrix();
3355                                                                 glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3356                                                         glPopMatrix();
3357                                                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3358
3359                                                 }
3360
3361                                                 glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3362                                                 glPushMatrix();                                                                         // Store The Projection Matrix
3363                                                 glLoadIdentity();                                                                       // Reset The Projection Matrix
3364                                                 glOrtho(0,640,0,480,-100,100);                                          // Set Up An Ortho Screen
3365                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3366                                                 glPushMatrix();                                                                         // Store The Modelview Matrix
3367                                                 glLoadIdentity();                                                               // Reset The Modelview Matrix
3368                                                 glEnable(GL_TEXTURE_2D);
3369                                                 if(nummenuitems>0)
3370                                                 {
3371                                                         for(j=0;j<nummenuitems;j++)
3372                                                         {
3373                                                                 if(j<=3||(mainmenu!=1&&mainmenu!=2))
3374                                                                 {
3375                                                                         //glDisable(GL_BLEND);
3376                                                                         glEnable(GL_ALPHA_TEST);
3377                                                                         glEnable(GL_BLEND);
3378                                                                         //glDisable(GL_ALPHA_TEST);
3379                                                                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
3380                                                                         if(mainmenu==1||mainmenu==2)
3381                                                                         {
3382                                                                                 glColor4f(1,1,1,1);
3383                                                                                 glBlendFunc(GL_SRC_ALPHA,GL_ONE);
3384                                                                                 glBindTexture( GL_TEXTURE_2D, Mainmenuitems[j]);
3385                                                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE );
3386                                                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE );
3387                                                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3388                                                                                 glPushMatrix();
3389                                                                                         glBegin(GL_QUADS);
3390                                                                                         glTexCoord2f(0,0);
3391                                                                                         glVertex3f(startx[j]+movex[j]*transition,       starty[j]+movey[j]*transition,   0.0f);
3392                                                                                         glTexCoord2f(1,0);
3393                                                                                         glVertex3f(endx[j]+movex[j]*transition,         starty[j]+movey[j]*transition,   0.0f);
3394                                                                                         glTexCoord2f(1,1);
3395                                                                                         glVertex3f(endx[j]+movex[j]*transition,         endy[j]+movey[j]*transition, 0.0f);
3396                                                                                         glTexCoord2f(0,1);
3397                                                                                         glVertex3f(startx[j]+movex[j]*transition,       endy[j]+movey[j]*transition, 0.0f);
3398                                                                                         glEnd();
3399                                                                                 glPopMatrix();
3400                                                                                 glEnable(GL_BLEND);
3401                                                                                 //glDisable(GL_ALPHA_TEST);
3402                                                                                 if(j<4)glBlendFunc(GL_SRC_ALPHA,GL_ONE);
3403                                                                                 for(i=0;i<10;i++)
3404                                                                                 {
3405                                                                                         if(1-((float)i)/10-(1-selectedlong[j])>0)
3406                                                                                         {
3407                                                                                                 glColor4f(1,1,1,(1-((float)i)/10-(1-selectedlong[j]))*.25);
3408                                                                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3409                                                                                                 glPushMatrix();
3410                                                                                                         glBegin(GL_QUADS);
3411                                                                                                         glTexCoord2f(0,0);
3412                                                                                                         glVertex3f(startx[j]-((float)i)*1/2+offsetx[j]*((float)i)/2+movex[j]*transition,        starty[j]-((float)i)*1/2+offsety[j]*((float)i)/2+movey[j]*transition,    0.0f);
3413                                                                                                         glTexCoord2f(1,0);
3414                                                                                                         glVertex3f(endx[j]+((float)i)*1/2+offsetx[j]*((float)i)/2+movex[j]*transition,  starty[j]-((float)i)*1/2+offsety[j]*((float)i)/2+movey[j]*transition,    0.0f);
3415                                                                                                         glTexCoord2f(1,1);
3416                                                                                                         glVertex3f(endx[j]+((float)i)*1/2+offsetx[j]*((float)i)/2+movex[j]*transition,  endy[j]+((float)i)*1/2+offsety[j]*((float)i)/2+movey[j]*transition, 0.0f);
3417                                                                                                         glTexCoord2f(0,1);
3418                                                                                                         glVertex3f(startx[j]-((float)i)*1/2+offsetx[j]*((float)i)/2+movex[j]*transition, endy[j]+((float)i)*1/2+offsety[j]*((float)i)/2+movey[j]*transition, 0.0f);
3419                                                                                                         glEnd();
3420                                                                                                 glPopMatrix();
3421                                                                                         }
3422                                                                                 }
3423                                                                         }
3424                                                                         if(mainmenu==3||mainmenu==4||mainmenu==5||mainmenu==6||mainmenu==7||mainmenu==8||mainmenu==9||mainmenu==10||mainmenu==11||mainmenu==13||mainmenu==17||mainmenu==18)
3425                                                                         {
3426                                                                                 if(mainmenu!=5||j<6)
3427                                                                                 {
3428                                                                                         glColor4f(1,0,0,1);
3429                                                                                         if(mainmenu==9&&j>accountactive->getProgress()&&j<numchallengelevels)glColor4f(0.5,0,0,1);
3430                                                                                         if(mainmenu==11&&j>accountactive->getProgress()&&j<numchallengelevels)glColor4f(0.5,0,0,1);
3431                                                                                         //if(1-((float)i)/10-(1-selectedlong[j])>0){
3432                                                                                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3433                                                                                         glPushMatrix();
3434                                                                                                 if(mainmenu!=7||j!=0||!entername)
3435                                                                                                         text.glPrint(startx[j],starty[j],menustring[j],0,1,640,480);
3436                                                                                                 else
3437                                                                                                 {
3438                                                                                                         if(displayblink){
3439                                                                                                                 sprintf (string, "_");
3440                                                                                                                 text.glPrint(startx[j]+(float)(displayselected)*10,starty[j],string,0,1,640,480);
3441                                                                                                         }
3442                                                                                                         for(l=0;l<displaychars[0];l++){
3443                                                                                                                 sprintf (string, "%c",displaytext[0][l]);
3444                                                                                                                 text.glPrint(startx[j]+l*10,starty[j],string,0,1,640,480);
3445                                                                                                         }
3446                                                                                                 }
3447                                                                                         glPopMatrix();
3448                                                                                         glEnable(GL_BLEND);
3449                                                                                         glBlendFunc(GL_SRC_ALPHA,GL_ONE);
3450                                                                                         for(i=0;i<15;i++)
3451                                                                                         {
3452                                                                                                 if(1-((float)i)/15-(1-selectedlong[j])>0)
3453                                                                                                 {
3454                                                                                                         glColor4f(1,0,0,(1-((float)i)/10-(1-selectedlong[j]))*.25);
3455                                                                                                         if(mainmenu==9&&j>accountactive->getProgress()&&j<numchallengelevels)glColor4f(0.5,0,0,(1-((float)i)/10-(1-selectedlong[j]))*.25);
3456                                                                                                         if(mainmenu==11&&j>accountactive->getProgress()&&j<numchallengelevels)glColor4f(0.5,0,0,(1-((float)i)/10-(1-selectedlong[j]))*.25);
3457                                                                                                         if(mainmenu==3)text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4-((/*1*/+((float)i)/70)*strlen(menustring[j]))*3,starty[j]/*-i*1/2*/+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3458                                                                                                         if(mainmenu==4)text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4/*-((((float)i)/70)*strlen(menustring[j]))*3*/,starty[j]/*-i*1/2*/+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3459                                                                                                         if(mainmenu==5)text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4/*-((((float)i)/70)*strlen(menustring[j]))*3*/,starty[j]/*-i*1/2*/+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3460                                                                                                         if(mainmenu==6)text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4/*-((((float)i)/70)*strlen(menustring[j]))*3*/,starty[j]/*-i*1/2*/+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3461                                                                                                         if(mainmenu==7&&(j!=0||!entername)) text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4,starty[j]+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3462                                                                                                         if(mainmenu==8)text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4/*-((((float)i)/70)*strlen(menustring[j]))*3*/,starty[j]/*-i*1/2*/+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3463                                                                                                         if(mainmenu==9)text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4/*-((((float)i)/70)*strlen(menustring[j]))*3*/,starty[j]/*-i*1/2*/+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3464                                                                                                         if(mainmenu==11)text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4/*-((((float)i)/70)*strlen(menustring[j]))*3*/,starty[j]/*-i*1/2*/+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3465                                                                                                         if(mainmenu==10)text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4/*-((((float)i)/70)*strlen(menustring[j]))*3*/,starty[j]/*-i*1/2*/+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3466                                                                                                         if(mainmenu==17)text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4/*-((((float)i)/70)*strlen(menustring[j]))*3*/,starty[j]/*-i*1/2*/+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3467                                                                                                         if(mainmenu==13&&j!=1)text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4/*-((((float)i)/70)*strlen(menustring[j]))*3*/,starty[j]/*-i*1/2*/+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3468                                                                                                         if(mainmenu==18)text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4/*-((((float)i)/70)*strlen(menustring[j]))*3*/,starty[j]/*-i*1/2*/+offsety[j]*((float)i)/4,menustring[j],0,1+((float)i)/70,640,480);
3469                                                                                                         /*else{
3470                                                                                                         if(displayblink){
3471                                                                                                         sprintf (string, "_");
3472                                                                                                         text.glPrint(startx[j]-((float)i)+offsetx[j]*((float)i)/4+(float)(displayselected)*10*(1+((float)i)/70),starty[j]+offsety[j]*((float)i)/4,string,0,1+((float)i)/70,640,480);
3473                                                                                                         }
3474                                                                                                         k=0;
3475                                                                                                         for(l=0;l<displaychars[k];l++){
3476                                                                                                         if(l<displaychars[k]){
3477                                                                                                         sprintf (string, "%c",displaytext[k][l]);
3478                                                                                                         text.glPrint(startx[j]-((float)k)+offsetx[j]*((float)k)/4+l*10*(1+((float)i)/70),starty[j]+offsety[j]*((float)i)/4,string,0,1+((float)i)/70,640,480);
3479                                                                                                         }
3480                                                                                                         }
3481                                                                                                         }*/
3482                                                                                                 }
3483                                                                                         }
3484                                                                                 }
3485                                                                                 else
3486                                                                                 {
3487                                                                                         glClear(GL_DEPTH_BUFFER_BIT);
3488                                                                                         glEnable(GL_ALPHA_TEST);
3489                                                                                         glAlphaFunc(GL_GREATER, 0.001f);
3490                                                                                         glEnable(GL_TEXTURE_2D);
3491                                                                                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
3492                                                                                         glDisable(GL_CULL_FACE);
3493                                                                                         glDisable(GL_LIGHTING);
3494                                                                                         if(j==6)glColor4f(1,1,1,1);
3495                                                                                         else glColor4f(1,0,0,1);
3496
3497                                                                                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3498                                                                                         glPushMatrix();                                                                         // Store The Projection Matrix
3499                                                                                                 glLoadIdentity();                                                                       // Reset The Projection Matrix
3500                                                                                                 glOrtho(0,640,0,480,-100,100);                                          // Set Up An Ortho Screen
3501                                                                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3502                                                                                                 glPushMatrix();                                                                         // Store The Modelview Matrix
3503                                                                                                         glLoadIdentity();                                                               // Reset The Modelview Matrix
3504                                                                                                         glPushMatrix();
3505
3506                                                                                                                 //Draw world, draw map
3507                                                                                                                 glTranslatef(2,-5,0);
3508
3509                                                                                                                 if(j>6&&j<nummenuitems-1)
3510                                                                                                                 {
3511                                                                                                                         XYZ linestart,lineend,offset;
3512                                                                                                                         XYZ fac;
3513                                                                                                                         float startsize;
3514                                                                                                                         float endsize;
3515                                                                                                                         linestart=0;
3516                                                                                                                         lineend=0;
3517                                                                                                                         offset=0;
3518                                                                                                                         //float linestartx,lineendx,linestarty,lineendy,offsetx,offsety;
3519                                                                                                                         linestart.x=(startx[j]+endx[j])/2;
3520                                                                                                                         linestart.y=(starty[j]+endy[j])/2;
3521                                                                                                                         if(j>=6+accountactive->getCampaignChoicesMade()){
3522                                                                                                                                 linestart.x=(startx[6+accountactive->getCampaignChoicesMade()]+endx[6+accountactive->getCampaignChoicesMade()])/2;
3523                                                                                                                                 linestart.y=(starty[6+accountactive->getCampaignChoicesMade()]+endy[6+accountactive->getCampaignChoicesMade()])/2;
3524                                                                                                                         }
3525                                                                                                                         lineend.x=(startx[j+1]+endx[j+1])/2;
3526                                                                                                                         lineend.y=(starty[j+1]+endy[j+1])/2;
3527                                                                                                                         offset=lineend-linestart;
3528                                                                                                                         fac=offset;
3529                                                                                                                         Normalise(&fac);
3530                                                                                                                         offset=DoRotation(offset,0,0,90);
3531                                                                                                                         Normalise(&offset);
3532                                                                                                                         glDisable(GL_TEXTURE_2D);                                                       
3533
3534                                                                                                                         if(j<6+accountactive->getCampaignChoicesMade()){
3535                                                                                                                                 glColor4f(0.5,0,0,1);
3536                                                                                                                                 startsize=.5;
3537                                                                                                                                 endsize=.5;
3538                                                                                                                         }
3539                                                                                                                         if(j>=6+accountactive->getCampaignChoicesMade()){
3540                                                                                                                                 glColor4f(1,0,0,1);
3541                                                                                                                                 endsize=1;
3542                                                                                                                                 startsize=.5;
3543                                                                                                                         }
3544
3545                                                                                                                         linestart+=fac*4*startsize;
3546                                                                                                                         lineend-=fac*4*endsize;
3547
3548                                                                                                                         if(!(j>7+accountactive->getCampaignChoicesMade()+campaignchoicenum)){
3549                                                                                                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3550                                                                                                                                 glPushMatrix();
3551                                                                                                                                         glBegin(GL_QUADS);
3552                                                                                                                                         glTexCoord2f(0,0);
3553                                                                                                                                         glVertex3f(linestart.x-offset.x*startsize,      linestart.y-offset.y*startsize,          0.0f);
3554                                                                                                                                         glTexCoord2f(1,0);
3555                                                                                                                                         glVertex3f(linestart.x+offset.x*startsize,      linestart.y+offset.y*startsize,          0.0f);
3556                                                                                                                                         glTexCoord2f(1,1);
3557                                                                                                                                         glVertex3f(lineend.x+offset.x*endsize,          lineend.y+offset.y*endsize, 0.0f);
3558                                                                                                                                         glTexCoord2f(0,1);
3559                                                                                                                                         glVertex3f(lineend.x-offset.x*endsize,          lineend.y-offset.y*endsize, 0.0f);
3560                                                                                                                                         glEnd();
3561                                                                                                                                 glPopMatrix();
3562                                                                                                                         }
3563                                                                                                                         glEnable(GL_TEXTURE_2D);
3564                                                                                                                 }
3565
3566
3567                                                                                                                 if(j==6)glBindTexture( GL_TEXTURE_2D, Mainmenuitems[7]);
3568                                                                                                                 else glBindTexture( GL_TEXTURE_2D, Mapcircletexture);
3569                                                                                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE );
3570                                                                                                                 glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE );
3571                                                                                                                 if(j-7<accountactive->getCampaignChoicesMade())glColor4f(0.5,0,0,1);
3572                                                                                                                 if(j-7>=accountactive->getCampaignChoicesMade())glColor4f(1,0,0,1);
3573                                                                                                                 if(j==6)glColor4f(1,1,1,1);
3574                                                                                                                 XYZ midpoint;
3575                                                                                                                 float itemsize;
3576                                                                                                                 itemsize=abs(startx[j]-endx[j])/2;
3577                                                                                                                 midpoint=0;
3578                                                                                                                 midpoint.x=(startx[j]+endx[j])/2;
3579                                                                                                                 midpoint.y=(starty[j]+endy[j])/2;
3580                                                                                                                 if(j>6&&(j-7<accountactive->getCampaignChoicesMade()))itemsize*=.5;
3581                                                                                                                 if(!(j-7>accountactive->getCampaignChoicesMade()+campaignchoicenum))
3582                                                                                                                 {
3583                                                                                                                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3584                                                                                                                         glPushMatrix();
3585                                                                                                                                 glBegin(GL_QUADS);
3586                                                                                                                                 glTexCoord2f(0,0);
3587                                                                                                                                 glVertex3f(midpoint.x-itemsize+movex[j]*transition,     midpoint.y-itemsize+movey[j]*transition,         0.0f);
3588                                                                                                                                 glTexCoord2f(1,0);
3589                                                                                                                                 glVertex3f(midpoint.x+itemsize+movex[j]*transition,             midpoint.y-itemsize+movey[j]*transition,         0.0f);
3590                                                                                                                                 glTexCoord2f(1,1);
3591                                                                                                                                 glVertex3f(midpoint.x+itemsize+movex[j]*transition,             midpoint.y+itemsize+movey[j]*transition, 0.0f);
3592                                                                                                                                 glTexCoord2f(0,1);
3593                                                                                                                                 glVertex3f(midpoint.x-itemsize+movex[j]*transition,     midpoint.y+itemsize+movey[j]*transition, 0.0f);
3594                                                                                                                                 glEnd();
3595                                                                                                                         glPopMatrix();
3596                                                                                                                         glEnable(GL_BLEND);
3597                                                                                                                         //glDisable(GL_ALPHA_TEST);
3598                                                                                                                         if(j<4)glBlendFunc(GL_SRC_ALPHA,GL_ONE);
3599                                                                                                                         for(i=0;i<10;i++)
3600                                                                                                                         {
3601                                                                                                                                 if(1-((float)i)/10-(1-selectedlong[j])>0)
3602                                                                                                                                 {
3603                                                                                                                                         glColor4f(1,0,0,(1-((float)i)/10-(1-selectedlong[j]))*.25);
3604                                                                                                                                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3605                                                                                                                                         glPushMatrix();
3606                                                                                                                                                 glBegin(GL_QUADS);
3607                                                                                                                                                 glTexCoord2f(0,0);
3608                                                                                                                                                 glVertex3f(midpoint.x-itemsize-((float)i)*1/2+offsetx[j]*((float)i)/2+movex[j]*transition,      midpoint.y-itemsize-((float)i)*1/2+offsety[j]*((float)i)/2+movey[j]*transition,          0.0f);
3609                                                                                                                                                 glTexCoord2f(1,0);
3610                                                                                                                                                 glVertex3f(midpoint.x+itemsize+((float)i)*1/2+offsetx[j]*((float)i)/2+movex[j]*transition,      midpoint.y-itemsize-((float)i)*1/2+offsety[j]*((float)i)/2+movey[j]*transition,          0.0f);
3611                                                                                                                                                 glTexCoord2f(1,1);
3612                                                                                                                                                 glVertex3f(midpoint.x+itemsize+((float)i)*1/2+offsetx[j]*((float)i)/2+movex[j]*transition,      midpoint.y+itemsize+((float)i)*1/2+offsety[j]*((float)i)/2+movey[j]*transition, 0.0f);
3613                                                                                                                                                 glTexCoord2f(0,1);
3614                                                                                                                                                 glVertex3f(midpoint.x-itemsize-((float)i)*1/2+offsetx[j]*((float)i)/2+movex[j]*transition, midpoint.y+itemsize+((float)i)*1/2+offsety[j]*((float)i)/2+movey[j]*transition, 0.0f);
3615                                                                                                                                                 glEnd();
3616                                                                                                                                         glPopMatrix();
3617                                                                                                                                 }
3618                                                                                                                         }
3619                                                                                                                 }
3620                                                                                                         glPopMatrix();
3621                                                                                                 glPopMatrix();
3622                                                                                                 glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3623                                                                                         glPopMatrix();
3624                                                                                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3625
3626                                                                                         if(j-7>=accountactive->getCampaignChoicesMade()){
3627                                                                                                 //glColor4f(0,0,0,1);
3628                                                                                                 //text.glPrintOutline(startx[j]+10-1.5,starty[j]-4-1.5,menustring[j],0,0.6*1.25,640,480);
3629                                                                                                 //glColor4f(1,0,0,1);
3630                                                                                                 //text.glPrint(startx[j]+10,starty[j]-4,menustring[j],0,0.6,640,480);
3631                                                                                                 text.glPrintOutlined(0.9,0,0,startx[j]+10,starty[j]-4,menustring[j],0,0.6,640,480);
3632                                                                                                 glDisable(GL_DEPTH_TEST);
3633                                                                                         }
3634                                                                                 }
3635                                                                         }
3636                                                                 }
3637                                                         }
3638                                                 }
3639                                                 glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3640                                                 glPopMatrix();
3641                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3642                                                 glPopMatrix();
3643
3644                                                         if(mainmenu==1||mainmenu==2)
3645                                                                 if(transition<.1||transition>.9){
3646                                                                         glClear(GL_DEPTH_BUFFER_BIT);
3647                                                                         glEnable(GL_ALPHA_TEST);
3648                                                                         glAlphaFunc(GL_GREATER, 0.001f);
3649                                                                         glEnable(GL_TEXTURE_2D);
3650                                                                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
3651                                                                         glDisable(GL_CULL_FACE);
3652                                                                         glDisable(GL_LIGHTING);
3653                                                                         glDepthMask(0);
3654                                                                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3655                                                                         glPushMatrix();                                                                         // Store The Projection Matrix
3656                                                                                 glLoadIdentity();                                                                       // Reset The Projection Matrix
3657                                                                                 glOrtho(0,640,0,480,-100,100);                                          // Set Up An Ortho Screen
3658                                                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3659                                                                                 glPushMatrix();                                                                         // Store The Modelview Matrix
3660                                                                                         glLoadIdentity();                                                               // Reset The Modelview Matrix
3661                                                                                         glPushMatrix();
3662                                                                                                 glDisable(GL_TEXTURE_2D);
3663                                                                                                 if(transition<.1)glColor4f(1,0,0,1-(transition*10));
3664                                                                                                 if(transition>.9)glColor4f(1,0,0,1-((1-transition)*10));
3665                                                                                                 /*glPushMatrix();
3666                                                                                                 glBegin(GL_QUADS);
3667                                                                                                 glTexCoord2f(0,0);
3668                                                                                                 glVertex3f(190, 150,     0.0f);
3669                                                                                                 glTexCoord2f(1,0);
3670                                                                                                 glVertex3f(640, 150,     0.0f);
3671                                                                                                 glTexCoord2f(1,1);
3672                                                                                                 glVertex3f(640, 336, 0.0f);
3673                                                                                                 glTexCoord2f(0,1);
3674                                                                                                 glVertex3f(190, 336, 0.0f);
3675                                                                                                 glEnd();
3676                                                                                                 glPopMatrix();*/
3677                                                                                         glPopMatrix();
3678                                                                                 glPopMatrix();
3679                                                                                 glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3680                                                                         glPopMatrix();
3681                                                                 }
3682
3683                                                                 glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3684                                                                 glPushMatrix();                                                                         // Store The Projection Matrix
3685                                                                         glLoadIdentity();                                                                       // Reset The Projection Matrix
3686                                                                         glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
3687                                                                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3688                                                                         glPushMatrix();                                                                         // Store The Modelview Matrix
3689                                                                                 glLoadIdentity();                                                               // Reset The Modelview Matrix
3690                                                                                 glTranslatef(screenwidth/2,screenheight/2,0);
3691                                                                                 glPushMatrix();
3692                                                                                         glScalef((float)screenwidth/2,(float)screenheight/2,1);
3693                                                                                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
3694                                                                                         glEnable(GL_BLEND);
3695                                                                                         glEnable(GL_TEXTURE_2D);
3696                                                                                         glColor4f(1,1,1,1);
3697                                                                                         glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP );
3698                                                                                         glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP );
3699                                                                                 glPopMatrix();
3700                                                                                 if(!waiting) { // hide the cursor while waiting for a key
3701                                                                                         glPushMatrix();
3702                                                                                                 glTranslatef(mousecoordh-screenwidth/2,mousecoordv*-1+screenheight/2,0);
3703                                                                                                 glScalef((float)screenwidth/64,(float)screenwidth/64,1);
3704                                                                                                 glTranslatef(1,-1,0);
3705                                                                                                 glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
3706                                                                                                 glColor4f(1,1,1,1);
3707                                                                                                 glBindTexture( GL_TEXTURE_2D, cursortexture);
3708                                                                                                 glPushMatrix();
3709                                                                                                         //glScalef(.25,.25,.25);
3710                                                                                                         glBegin(GL_QUADS);
3711                                                                                                         glTexCoord2f(0,0);
3712                                                                                                         glVertex3f(-1,          -1,      0.0f);
3713                                                                                                         glTexCoord2f(1,0);
3714                                                                                                         glVertex3f(1,   -1,      0.0f);
3715                                                                                                         glTexCoord2f(1,1);
3716                                                                                                         glVertex3f(1,   1, 0.0f);
3717                                                                                                         glTexCoord2f(0,1);
3718                                                                                                         glVertex3f(-1,  1, 0.0f);
3719                                                                                                         glEnd();
3720                                                                                                 glPopMatrix();
3721                                                                                         glPopMatrix();
3722                                                                                 }
3723                                                                         glPopMatrix();
3724                                                                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3725                                                                 glPopMatrix();
3726
3727
3728                                                                 if(flashamount>0)
3729                                                                 {
3730                                                                         //printf("Flash amount: %f, delay %i\n", flashamount, flashdelay);
3731                                                                         if(flashamount>1)flashamount=1;
3732                                                                         if(flashdelay<=0)flashamount-=multiplier;
3733                                                                         flashdelay--;
3734                                                                         if(flashamount<0)flashamount=0;
3735                                                                         glDisable(GL_DEPTH_TEST);                                                       // Disables Depth Testing
3736                                                                         glDisable(GL_CULL_FACE);
3737                                                                         glDisable(GL_LIGHTING);
3738                                                                         glDisable(GL_TEXTURE_2D);
3739                                                                         glDepthMask(0);
3740                                                                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3741                                                                         glPushMatrix();                                                                         // Store The Projection Matrix
3742                                                                                 glLoadIdentity();                                                                       // Reset The Projection Matrix
3743                                                                                 glOrtho(0,screenwidth,0,screenheight,-100,100);                                         // Set Up An Ortho Screen
3744                                                                                 glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3745                                                                                 glPushMatrix();                                                                         // Store The Modelview Matrix
3746                                                                                         glLoadIdentity();                                                               // Reset The Modelview Matrix
3747                                                                                         glScalef(screenwidth,screenheight,1);
3748                                                                                         glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
3749                                                                                         glEnable(GL_BLEND);
3750                                                                                         glColor4f(flashr,flashg,flashb,flashamount);
3751                                                                                         glBegin(GL_QUADS);
3752                                                                                         glVertex3f(0,           0,       0.0f);
3753                                                                                         glVertex3f(256, 0,       0.0f);
3754                                                                                         glVertex3f(256, 256, 0.0f);
3755                                                                                         glVertex3f(0,   256, 0.0f);
3756                                                                                         glEnd();
3757                                                                                         glMatrixMode(GL_PROJECTION);                                            // Select The Projection Matrix
3758                                                                                 glPopMatrix();                                                                          // Restore The Old Projection Matrix
3759                                                                         glMatrixMode(GL_MODELVIEW);                                                     // Select The Modelview Matrix
3760                                                                         glPopMatrix();                                                                          // Restore The Old Projection Matrix
3761                                                                         glEnable(GL_DEPTH_TEST);                                                        // Enables Depth Testing
3762                                                                         glEnable(GL_CULL_FACE);
3763                                                                         glDisable(GL_BLEND);
3764                                                                         glDepthMask(1);
3765                                                                 }       
3766         }
3767
3768         if(freeze||winfreeze||(mainmenu&&gameon)||(!gameon&&gamestarted)||(!gameon&&gamestarted)){
3769                 tempmult=multiplier;
3770                 multiplier=0;
3771         }
3772
3773         //glFlush();
3774         if ( side == stereoRight || side == stereoCenter ) {
3775                 if(drawmode!=motionblurmode||mainmenu){
3776                         swap_gl_buffers();
3777                 }
3778         }
3779
3780         //myassert(glGetError() == GL_NO_ERROR);
3781         glDrawBuffer(GL_BACK);
3782         glReadBuffer(GL_BACK);
3783         //glFlush();
3784
3785         weapons.DoStuff();
3786
3787         if(drawtoggle==2)drawtoggle=0;
3788
3789         if(freeze||winfreeze||(mainmenu&&gameon)||(!gameon&&gamestarted)){
3790                 multiplier=tempmult;
3791         }
3792         //Jordan fixed your warning!
3793         return 0;
3794 }
3795