]> git.jsancho.org Git - lugaru.git/blob - Source/Globals.cpp
Merge with p/lugaru
[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 = 0;
44 float usermousesensitivity = 0;
45 bool floatjump = 0;
46 bool cellophane = 0;
47 bool autoslomo = 0;
48 bool decals = 0;
49 bool invertmouse = 0;
50 bool texttoggle = 0;
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 = 0;
93 float camerashake = 0;
94 float woozy = 0;
95 float blackout = 0;
96 bool foliage = 0;
97 bool musictoggle = 0;
98 bool trilinear;
99 Weapons weapons;
100 bool damageeffects = 0;
101 int numplayers = 0;
102 bool ambientsound = 0;
103 bool mousejump = 0;
104 bool freeze = 0;
105 bool winfreeze = 0;
106 float flashamount = 0,flashr = 0,flashg = 0,flashb = 0;
107 int flashdelay = 0;
108 bool vblsync = 0;
109 float motionbluramount = 0;
110 bool keyboardfrozen = 0;
111 bool loadingstuff = 0;
112 bool stillloading = 0;
113 bool showpoints = 0;
114 bool showdamagebar = 0;
115 bool alwaysblur = 0;
116 bool immediate = 0;
117 bool velocityblur = 0;
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 loadscreencolor = 0;
125 int whichjointstartarray[26] = {0};
126 int whichjointendarray[26] = {0};
127 int kBitsPerPixel = 0;
128
129 int numhotspots = 0;
130 XYZ hotspot[40];
131 int hotspottype[40] = {0};
132 float hotspotsize[40] = {0};
133 char hotspottext[40][256] = {0};
134 int currenthotspot = 0; 
135 int winhotspot = 0;
136 int windialogue = 0;
137 int killhotspot = 0;
138
139 float menupulse = 0;
140
141 float smoketex = 0;
142
143 float slomospeed = 0;
144 float slomofreq = 0;
145
146 int tutoriallevel = 0;
147 int tutorialstage = 0;
148 float tutorialstagetime = 0;
149 float tutorialmaxtime = 0;
150 float tutorialsuccess = 0;
151
152 bool againbonus = 0;
153
154 float damagedealt = 0;
155
156 int maptype = 0;
157
158 int editoractive = 0;
159 int editorpathtype = 0;
160
161 bool reversaltrain = 0;
162 bool cananger = 0;
163 bool canattack = 0;
164
165 bool skyboxtexture = 0;
166 float skyboxr = 0;
167 float skyboxg = 0;
168 float skyboxb = 0;
169 float skyboxlightr = 0;
170 float skyboxlightg = 0;
171 float skyboxlightb = 0;
172
173 int hostile = 0;
174 float hostiletime = 0;
175
176 XYZ envsound[30]; // = {0};
177 float envsoundvol[30] = {0};
178 float envsoundlife[30] = {0};
179 int numenvsounds;
180
181
182 bool tilt2weird = 0;
183 bool tiltweird = 0;
184 bool midweird = 0;
185 bool proportionweird = 0;
186 bool vertexweird[6] = {0};
187 TGAImageRec texture;
188 bool debugmode = 0;
189
190 bool won = 0;
191
192
193 bool campaign = 0;
194
195 bool gamestarted = 0;
196
197 //TextureList textures;
198
199 StereoMode stereomode =  stereoNone;
200 StereoMode newstereomode = stereoNone;
201 float stereoseparation = 0.05;
202 bool  stereoreverse = false;