]> git.jsancho.org Git - lugaru.git/blob - Source/Globals.cpp
Some cleans, some duplicated code corrected.
[lugaru.git] / Source / Globals.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 "SDL.h"
23
24 #include "gamegl.h"
25 #include "Quaternions.h"
26 #include "Lights.h"
27 #include "Skeleton.h"
28 #include "Terrain.h"
29 #include "Sprite.h"
30 #include "Frustum.h"
31 #include "Objects.h"
32 #include "Weapons.h"
33 #include "Person.h"
34 #include "TGALoader.h"
35 #include "openal_wrapper.h"
36 #include "Stereo.h"
37
38 #include "Animation.h"
39
40 bool visibleloading = 0;
41
42 float volume = 0;
43 bool ismotionblur = false;
44 float usermousesensitivity = 0;
45 bool floatjump = false;
46 bool cellophane = false;
47 bool autoslomo = false;
48 bool decals = false;
49 bool invertmouse = false;
50 bool texttoggle = false;
51 float blurness = 0;
52 float targetblurness = 0;
53 float windvar = 0;
54 float precipdelay = 0;
55 float gamespeed = 0;
56 float oldgamespeed = 0;
57 float tintr = 0,tintg = 0,tintb = 0;
58 int difficulty = 0;
59 float multiplier = 0;
60 float realmultiplier = 0;
61 float screenwidth = 0,screenheight = 0;
62 float viewdistance = 0;
63 XYZ viewer;
64 XYZ viewerfacing;
65 XYZ lightlocation;
66 float fadestart = 0;
67 int environment = 0;
68 float texscale = 0;
69 float gravity = 0;
70 Light light;
71 Animation animation[animation_count];
72 Skeleton testskeleton;
73 int numsounds = 0;
74 Terrain terrain;
75 float sps = 0;
76
77 SDL_Surface *sdlscreen;
78
79 int kTextureSize = 0;
80 int detail = 0;
81 FRUSTUM frustum;
82 float texdetail = 0;
83 float realtexdetail = 0;
84 float playerdist = 0;
85 Objects objects;
86 int slomo = 0;
87 float slomodelay = 0;
88 GLubyte bloodText[512*512*3] = {0};
89 GLubyte wolfbloodText[512*512*3] = {0};
90 float colors[3] = {0};
91 int bloodtoggle = 0;
92 bool osx = false;
93 float camerashake = 0;
94 float woozy = 0;
95 float blackout = 0;
96 bool foliage = false;
97 bool musictoggle = false;
98 bool trilinear;
99 Weapons weapons;
100 bool damageeffects = false;
101 int numplayers = 0;
102 bool ambientsound = false;
103 bool mousejump = false;
104 bool freeze = false;
105 bool winfreeze = false;
106 float flashamount = 0,flashr = 0,flashg = 0,flashb = 0;
107 int flashdelay = 0;
108 bool vblsync = false;
109 float motionbluramount = 0;
110 bool keyboardfrozen = false;
111 bool loadingstuff = false;
112 bool stillloading = false;
113 bool showpoints = false;
114 bool showdamagebar = false;
115 bool alwaysblur = false;
116 bool immediate = false;
117 bool velocityblur = false;
118 int test = 0;
119 XYZ windvector;
120 short vRefNum = 0;
121 long dirID = 0;
122 int mainmenu = 0;
123 int oldmainmenu = 0;
124 int whichjointstartarray[26] = {0};
125 int whichjointendarray[26] = {0};
126 int kBitsPerPixel = 0;
127
128 int numhotspots = 0;
129 XYZ hotspot[40];
130 int hotspottype[40] = {0};
131 float hotspotsize[40] = {0};
132 char hotspottext[40][256] = {0};
133 int currenthotspot = 0; 
134 int winhotspot = 0;
135 int windialogue = 0;
136 int killhotspot = 0;
137
138 float menupulse = 0;
139
140 float smoketex = 0;
141
142 float slomospeed = 0;
143 float slomofreq = 0;
144
145 int tutoriallevel = 0;
146 int tutorialstage = 0;
147 float tutorialstagetime = 0;
148 float tutorialmaxtime = 0;
149 float tutorialsuccess = 0;
150
151 bool againbonus = false;
152
153 float damagedealt = 0;
154
155 int maptype = 0;
156
157 int editoractive = 0;
158 int editorpathtype = 0;
159
160 bool reversaltrain = false;
161 bool cananger = false;
162 bool canattack = false;
163
164 bool skyboxtexture = false;
165 float skyboxr = 0;
166 float skyboxg = 0;
167 float skyboxb = 0;
168 float skyboxlightr = 0;
169 float skyboxlightg = 0;
170 float skyboxlightb = 0;
171
172 int hostile = 0;
173 float hostiletime = 0;
174
175 XYZ envsound[30]; // = {0};
176 float envsoundvol[30] = {0};
177 float envsoundlife[30] = {0};
178 int numenvsounds;
179
180
181 bool tilt2weird = false;
182 bool tiltweird = false;
183 bool midweird = false;
184 bool proportionweird = false;
185 bool vertexweird[6] = {0};
186 TGAImageRec texture;
187 bool debugmode = false;
188
189 bool won = false;
190
191
192 bool campaign = false;
193
194 bool gamestarted = false;
195
196 //TextureList textures;
197
198 StereoMode stereomode =  stereoNone;
199 StereoMode newstereomode = stereoNone;
200 float stereoseparation = 0.05;
201 bool  stereoreverse = false;