author | unc0rr |
Mon, 02 Mar 2009 21:13:07 +0000 | |
changeset 1854 | 6e05013899b2 |
parent 1849 | 2a989e5abda6 |
child 1861 | 98de5dc5fda7 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2004-2008 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
19 |
unit uMisc; |
|
20 |
interface |
|
753 | 21 |
uses uConsts, SDLh, uFloat, GL; |
4 | 22 |
{$INCLUDE options.inc} |
1054 | 23 |
var |
24 |
isCursorVisible : boolean = false; |
|
25 |
isTerminated : boolean = false; |
|
26 |
isInLag : boolean = false; |
|
27 |
isPaused : boolean = false; |
|
28 |
isSoundEnabled : boolean = true; |
|
1128 | 29 |
isMusicEnabled : boolean = false; |
1054 | 30 |
isSEBackup : boolean = true; |
31 |
isInMultiShoot : boolean = false; |
|
32 |
isSpeed : boolean = false; |
|
4 | 33 |
|
1560
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1530
diff
changeset
|
34 |
fastUntilLag : boolean = false; |
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1530
diff
changeset
|
35 |
|
1054 | 36 |
GameState : TGameState = Low(TGameState); |
37 |
GameType : TGameType = gmtLocal; |
|
38 |
GameFlags : Longword = 0; |
|
39 |
TurnTimeLeft : Longword = 0; |
|
1784 | 40 |
cSuddenDTurns : LongInt = 15; |
1797 | 41 |
cTemplateFilter : LongInt = 0; |
42 |
||
1054 | 43 |
cHedgehogTurnTime: Longword = 45000; |
44 |
cMaxAIThinkTime : Longword = 9000; |
|
4 | 45 |
|
1054 | 46 |
cCloudsNumber : LongInt = 9; |
47 |
cScreenWidth : LongInt = 1024; |
|
48 |
cScreenHeight : LongInt = 768; |
|
1121
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1080
diff
changeset
|
49 |
cInitWidth : LongInt = 1024; |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1080
diff
changeset
|
50 |
cInitHeight : LongInt = 768; |
1054 | 51 |
cBits : LongInt = 16; |
52 |
cBitsStr : string[2] = '16'; |
|
53 |
cTagsMask : byte = 7; |
|
74 | 54 |
|
1760 | 55 |
cWaterLine : LongInt = LAND_HEIGHT; |
1054 | 56 |
cVisibleWater : LongInt = 128; |
57 |
cGearScrEdgesDist: LongInt = 240; |
|
1530 | 58 |
cCursorEdgesDist : LongInt = 100; |
1054 | 59 |
cTeamHealthWidth : LongInt = 128; |
60 |
cAltDamage : boolean = true; |
|
4 | 61 |
|
1054 | 62 |
GameTicks : LongWord = 0; |
63 |
||
64 |
cSkyColor : Longword = 0; |
|
65 |
cWhiteColor : Longword = $FFFFFFFF; |
|
66 |
cColorNearBlack : Longword = $FF000010; |
|
67 |
cExplosionBorderColor : LongWord = $808080; |
|
4 | 68 |
|
1054 | 69 |
cShowFPS : boolean = true; |
1298 | 70 |
cCaseFactor : Longword = 5; {0..9} |
1054 | 71 |
cLandAdditions: Longword = 4; |
72 |
cFullScreen : boolean = true; |
|
1812 | 73 |
cReducedQuality : boolean = false; |
1054 | 74 |
cLocaleFName : shortstring = 'en.txt'; |
75 |
cSeed : shortstring = ''; |
|
76 |
cInitVolume : LongInt = 128; |
|
77 |
cVolumeDelta : LongInt = 0; |
|
78 |
cTimerInterval : Longword = 5; |
|
79 |
cHasFocus : boolean = true; |
|
1057 | 80 |
cInactDelay : Longword = 1250; |
4 | 81 |
|
1054 | 82 |
bBetweenTurns: boolean = false; |
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
83 |
cHealthDecrease: LongWord = 0; |
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
84 |
bWaterRising : Boolean = false; |
4 | 85 |
|
614 | 86 |
{$WARNINGS OFF} |
1124 | 87 |
cAirPlaneSpeed: hwFloat = (isNegative: false; QWordValue: 3006477107); // 1.4 |
1054 | 88 |
cBombsSpeed : hwFloat = (isNegative: false; QWordValue: 429496729); |
614 | 89 |
{$WARNINGS ON} |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
539
diff
changeset
|
90 |
|
4 | 91 |
var |
1054 | 92 |
cSendEmptyPacketTime : LongWord = 2000; |
93 |
cSendCursorPosTime : LongWord = 50; |
|
94 |
ShowCrosshair : boolean; |
|
95 |
cDrownSpeed, |
|
96 |
cMaxWindSpeed, |
|
97 |
cWindSpeed, |
|
98 |
cGravity: hwFloat; |
|
1849 | 99 |
cDamageModifier: hwFloat; |
1854 | 100 |
cLaserSighting: boolean; |
4 | 101 |
|
1054 | 102 |
flagMakeCapture: boolean = false; |
4 | 103 |
|
1054 | 104 |
InitStepsFlags: Longword = 0; |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
105 |
|
1054 | 106 |
RealTicks: Longword = 0; |
836 | 107 |
|
1054 | 108 |
AttackBar: LongInt = 0; // 0 - none, 1 - just bar at the right-down corner, 2 - like in WWP |
4 | 109 |
|
371 | 110 |
function hwSign(r: hwFloat): LongInt; |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
788
diff
changeset
|
111 |
function Min(a, b: LongInt): LongInt; |
371 | 112 |
function Max(a, b: LongInt): LongInt; |
351 | 113 |
procedure OutError(Msg: String; isFatalError: boolean); |
4 | 114 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
115 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
316 | 116 |
function IntToStr(n: LongInt): shortstring; |
351 | 117 |
function FloatToStr(n: hwFloat): shortstring; |
775 | 118 |
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; |
371 | 119 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
120 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
|
4 | 121 |
procedure AdjustColor(var Color: Longword); |
122 |
{$IFDEF DEBUGFILE} |
|
123 |
procedure AddFileLog(s: shortstring); |
|
24 | 124 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
4 | 125 |
{$ENDIF} |
208 | 126 |
procedure SetKB(n: Longword); |
127 |
procedure SendKB; |
|
351 | 128 |
procedure SetLittle(var r: hwFloat); |
306 | 129 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
753 | 130 |
function Str2PChar(const s: shortstring): PChar; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
131 |
function NewTexture(width, height: Longword; buf: Pointer): PTexture; |
755 | 132 |
function Surface2Tex(surf: PSDL_Surface): PTexture; |
759 | 133 |
procedure FreeTexture(tex: PTexture); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
916
diff
changeset
|
134 |
function toPowerOf2(i: Longword): Longword; |
949 | 135 |
function DecodeBase64(s: shortstring): shortstring; |
1080 | 136 |
procedure MakeScreenshot(s: shortstring); |
4 | 137 |
|
138 |
var CursorPoint: TPoint; |
|
139 |
TargetPoint: TPoint = (X: NoPointX; Y: 0); |
|
140 |
||
141 |
implementation |
|
771 | 142 |
uses uConsole, uStore, uIO, Math, uRandom, GLU; |
208 | 143 |
var KBnum: Longword = 0; |
4 | 144 |
{$IFDEF DEBUGFILE} |
145 |
var f: textfile; |
|
146 |
{$ENDIF} |
|
147 |
||
371 | 148 |
function hwSign(r: hwFloat): LongInt; |
4 | 149 |
begin |
351 | 150 |
if r.isNegative then hwSign:= -1 else hwSign:= 1 |
4 | 151 |
end; |
152 |
||
371 | 153 |
function Min(a, b: LongInt): LongInt; |
4 | 154 |
begin |
351 | 155 |
if a < b then Min:= a else Min:= b |
4 | 156 |
end; |
157 |
||
371 | 158 |
function Max(a, b: LongInt): LongInt; |
4 | 159 |
begin |
351 | 160 |
if a > b then Max:= a else Max:= b |
4 | 161 |
end; |
162 |
||
351 | 163 |
procedure OutError(Msg: String; isFatalError: boolean); |
4 | 164 |
begin |
165 |
{$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF} |
|
53 | 166 |
WriteLnToConsole(Msg); |
4 | 167 |
if isFatalError then |
168 |
begin |
|
53 | 169 |
SendIPC('E' + GetLastConsoleLine); |
4 | 170 |
SDL_Quit; |
171 |
halt(1) |
|
53 | 172 |
end |
4 | 173 |
end; |
174 |
||
175 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
|
176 |
begin |
|
70 | 177 |
if not Assert then OutError(Msg, isFatal) |
4 | 178 |
end; |
179 |
||
180 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
181 |
begin |
|
182 |
if not Assert then OutError(SDL_GetError, isFatal) |
|
183 |
end; |
|
184 |
||
188 | 185 |
procedure AdjustColor(var Color: Longword); |
4 | 186 |
begin |
187 |
Color:= SDL_MapRGB(PixelFormat, (Color shr 16) and $FF, (Color shr 8) and $FF, Color and $FF) |
|
188 |
end; |
|
189 |
||
316 | 190 |
function IntToStr(n: LongInt): shortstring; |
4 | 191 |
begin |
351 | 192 |
str(n, IntToStr) |
4 | 193 |
end; |
194 |
||
351 | 195 |
function FloatToStr(n: hwFloat): shortstring; |
4 | 196 |
begin |
1346 | 197 |
FloatToStr:= cstr(n) + '_' + inttostr(Lo(n.QWordValue)) |
4 | 198 |
end; |
199 |
||
775 | 200 |
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; |
201 |
var dY, dX: Extended; |
|
202 |
begin |
|
203 |
dY:= _dY.QWordValue / $100000000; |
|
204 |
if _dY.isNegative then dY:= - dY; |
|
205 |
dX:= _dX.QWordValue / $100000000; |
|
206 |
if _dX.isNegative then dX:= - dX; |
|
207 |
DxDy2Angle:= arctan2(dY, dX) * 180 / pi |
|
208 |
end; |
|
209 |
||
371 | 210 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
100 | 211 |
const _16divPI: Extended = 16/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
212 |
var dY, dX: Extended; |
100 | 213 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
214 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
215 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
216 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
217 |
if _dX.isNegative then dX:= - dX; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
218 |
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f |
4 | 219 |
end; |
220 |
||
371 | 221 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
100 | 222 |
const MaxAngleDivPI: Extended = cMaxAngle/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
223 |
var dY, dX: Extended; |
100 | 224 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
225 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
226 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
227 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
228 |
if _dX.isNegative then dX:= - dX; |
438 | 229 |
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI) |
100 | 230 |
end; |
4 | 231 |
|
208 | 232 |
procedure SetKB(n: Longword); |
233 |
begin |
|
234 |
KBnum:= n |
|
235 |
end; |
|
236 |
||
237 |
procedure SendKB; |
|
238 |
var s: shortstring; |
|
239 |
begin |
|
240 |
if KBnum <> 0 then |
|
241 |
begin |
|
242 |
s:= 'K' + inttostr(KBnum); |
|
243 |
SendIPCRaw(@s, Length(s) + 1) |
|
244 |
end |
|
245 |
end; |
|
246 |
||
351 | 247 |
procedure SetLittle(var r: hwFloat); |
300 | 248 |
begin |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
543
diff
changeset
|
249 |
r:= SignAs(cLittle, r) |
300 | 250 |
end; |
251 |
||
337 | 252 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
1625 | 253 |
const stc: array [TStatInfoType] of char = 'rDkKH'; |
337 | 254 |
begin |
255 |
SendIPC('i' + stc[sit] + s) |
|
256 |
end; |
|
257 |
||
534 | 258 |
function Str2PChar(const s: shortstring): PChar; |
351 | 259 |
const CharArray: array[byte] of Char = ''; |
260 |
begin |
|
261 |
CharArray:= s; |
|
262 |
CharArray[Length(s)]:= #0; |
|
263 |
Str2PChar:= @CharArray |
|
264 |
end; |
|
265 |
||
771 | 266 |
function isPowerOf2(i: Longword): boolean; |
267 |
begin |
|
268 |
if i = 0 then exit(true); |
|
269 |
while (i and 1) = 0 do i:= i shr 1; |
|
270 |
isPowerOf2:= (i = 1) |
|
271 |
end; |
|
272 |
||
273 |
function toPowerOf2(i: Longword): Longword; |
|
274 |
begin |
|
275 |
toPowerOf2:= 1; |
|
276 |
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1 |
|
277 |
end; |
|
278 |
||
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
279 |
function NewTexture(width, height: Longword; buf: Pointer): PTexture; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
280 |
begin |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
281 |
new(NewTexture); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
282 |
NewTexture^.w:= width; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
283 |
NewTexture^.h:= height; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
284 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
285 |
glGenTextures(1, @NewTexture^.id); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
286 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
287 |
glBindTexture(GL_TEXTURE_2D, NewTexture^.id); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
288 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
289 |
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, buf); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
290 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
291 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
292 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR) |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
293 |
end; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
294 |
|
755 | 295 |
function Surface2Tex(surf: PSDL_Surface): PTexture; |
753 | 296 |
var mode: LongInt; |
771 | 297 |
tw, th: Longword; |
298 |
tmpp: pointer; |
|
753 | 299 |
begin |
755 | 300 |
new(Surface2Tex); |
301 |
Surface2Tex^.w:= surf^.w; |
|
302 |
Surface2Tex^.h:= surf^.h; |
|
303 |
||
753 | 304 |
if (surf^.format^.BytesPerPixel = 3) then mode:= GL_RGB else |
305 |
if (surf^.format^.BytesPerPixel = 4) then mode:= GL_RGBA else |
|
306 |
begin |
|
869 | 307 |
TryDo(false, 'Surface2Tex: BytesPerPixel not in [3, 4]', true); |
755 | 308 |
Surface2Tex^.id:= 0; |
753 | 309 |
exit |
310 |
end; |
|
311 |
||
755 | 312 |
glGenTextures(1, @Surface2Tex^.id); |
753 | 313 |
|
755 | 314 |
glBindTexture(GL_TEXTURE_2D, Surface2Tex^.id); |
753 | 315 |
|
771 | 316 |
if SDL_MustLock(surf) then |
317 |
SDLTry(SDL_LockSurface(surf) >= 0, true); |
|
318 |
||
319 |
if not (isPowerOf2(Surf^.w) and isPowerOf2(Surf^.h)) then |
|
320 |
begin |
|
321 |
tw:= toPowerOf2(Surf^.w); |
|
322 |
th:= toPowerOf2(Surf^.h); |
|
323 |
||
324 |
GetMem(tmpp, tw * th * surf^.format^.BytesPerPixel); |
|
325 |
||
326 |
gluScaleImage(mode, Surf^.w, Surf^.h, GL_UNSIGNED_BYTE, |
|
327 |
Surf^.pixels, tw, th, GL_UNSIGNED_BYTE, |
|
328 |
tmpp); |
|
329 |
||
330 |
glTexImage2D(GL_TEXTURE_2D, 0, mode, tw, th, 0, mode, GL_UNSIGNED_BYTE, tmpp); |
|
331 |
||
332 |
FreeMem(tmpp, tw * th * surf^.format^.BytesPerPixel) |
|
333 |
end else |
|
334 |
glTexImage2D(GL_TEXTURE_2D, 0, mode, surf^.w, surf^.h, 0, mode, GL_UNSIGNED_BYTE, surf^.pixels); |
|
753 | 335 |
|
754 | 336 |
if SDL_MustLock(surf) then |
337 |
SDL_UnlockSurface(surf); |
|
338 |
||
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
785
diff
changeset
|
339 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
785
diff
changeset
|
340 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR) |
753 | 341 |
end; |
342 |
||
759 | 343 |
procedure FreeTexture(tex: PTexture); |
344 |
begin |
|
345 |
glDeleteTextures(1, @tex^.id); |
|
346 |
dispose(tex) |
|
347 |
end; |
|
337 | 348 |
|
949 | 349 |
function DecodeBase64(s: shortstring): shortstring; |
350 |
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; |
|
351 |
var i, t, c: Longword; |
|
352 |
begin |
|
353 |
c:= 0; |
|
354 |
for i:= 1 to Length(s) do |
|
355 |
begin |
|
356 |
t:= Pos(s[i], table); |
|
357 |
if s[i] = '=' then inc(c); |
|
358 |
if t > 0 then byte(s[i]):= t - 1 else byte(s[i]):= 0 |
|
359 |
end; |
|
360 |
||
361 |
i:= 1; |
|
362 |
t:= 1; |
|
363 |
while i <= length(s) do |
|
364 |
begin |
|
365 |
DecodeBase64[t ]:= char((byte(s[i ]) shl 2) or (byte(s[i + 1]) shr 4)); |
|
366 |
DecodeBase64[t + 1]:= char((byte(s[i + 1]) shl 4) or (byte(s[i + 2]) shr 2)); |
|
367 |
DecodeBase64[t + 2]:= char((byte(s[i + 2]) shl 6) or (byte(s[i + 3]) )); |
|
368 |
inc(t, 3); |
|
369 |
inc(i, 4) |
|
370 |
end; |
|
371 |
||
372 |
if c < 3 then t:= t - c; |
|
373 |
||
374 |
byte(DecodeBase64[0]):= t - 1 |
|
375 |
end; |
|
376 |
||
1080 | 377 |
const GL_BGR = $80E0; // some opengl headers don't have that const (?) |
378 |
procedure MakeScreenshot(s: shortstring); |
|
379 |
const head: array[0..8] of Word = (0, 2, 0, 0, 0, 0, 0, 0, 24); |
|
380 |
var p: Pointer; |
|
381 |
size: Longword; |
|
382 |
f: file; |
|
383 |
begin |
|
384 |
head[6]:= cScreenWidth; |
|
385 |
head[7]:= cScreenHeight; |
|
386 |
||
387 |
size:= cScreenWidth * cScreenHeight * 3; |
|
388 |
p:= GetMem(size); |
|
389 |
||
390 |
glReadBuffer(GL_FRONT); |
|
391 |
glReadPixels(0, 0, cScreenWidth, cScreenHeight, GL_BGR, GL_UNSIGNED_BYTE, p); |
|
392 |
||
393 |
{$I-} |
|
394 |
Assign(f, s); |
|
395 |
Rewrite(f, 1); |
|
396 |
if IOResult = 0 then |
|
397 |
begin |
|
398 |
BlockWrite(f, head, sizeof(head)); |
|
399 |
BlockWrite(f, p^, size); |
|
400 |
Close(f); |
|
401 |
end; |
|
402 |
{$I+} |
|
403 |
||
404 |
FreeMem(p) |
|
405 |
end; |
|
406 |
||
949 | 407 |
{$IFDEF DEBUGFILE} |
408 |
procedure AddFileLog(s: shortstring); |
|
409 |
begin |
|
410 |
writeln(f, GameTicks: 6, ': ', s); |
|
411 |
flush(f) |
|
412 |
end; |
|
413 |
||
414 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
|
415 |
begin |
|
416 |
RectToStr:= '(x: ' + inttostr(rect.x) + '; y: ' + inttostr(rect.y) + '; w: ' + inttostr(rect.w) + '; h: ' + inttostr(rect.h) + ')' |
|
417 |
end; |
|
418 |
||
371 | 419 |
var i: LongInt; |
488 | 420 |
{$ENDIF} |
306 | 421 |
|
4 | 422 |
initialization |
351 | 423 |
cDrownSpeed.QWordValue:= 257698038;// 0.06 |
488 | 424 |
cMaxWindSpeed.QWordValue:= 2147484;// 0.0005 |
425 |
cWindSpeed.QWordValue:= 429496;// 0.0001 |
|
351 | 426 |
cGravity:= cMaxWindSpeed; |
1849 | 427 |
cDamageModifier:= _1; |
1854 | 428 |
cLaserSighting:= false; |
351 | 429 |
|
488 | 430 |
{$IFDEF DEBUGFILE} |
337 | 431 |
{$I-} |
497 | 432 |
if ParamCount > 0 then |
433 |
for i:= 0 to 7 do |
|
337 | 434 |
begin |
497 | 435 |
Assign(f, ParamStr(1) + '/debug' + inttostr(i) + '.txt'); |
337 | 436 |
rewrite(f); |
437 |
if IOResult = 0 then break |
|
438 |
end; |
|
439 |
{$I+} |
|
17 | 440 |
|
4 | 441 |
finalization |
916 | 442 |
//uRandom.DumpBuffer; |
4 | 443 |
writeln(f, '-= halt at ',GameTicks,' ticks =-'); |
444 |
Flush(f); |
|
351 | 445 |
close(f) |
4 | 446 |
{$ENDIF} |
447 |
||
448 |
end. |