author | unc0rr |
Sun, 01 Mar 2009 17:24:25 +0000 | |
changeset 1849 | 2a989e5abda6 |
parent 1812 | 3d4692e825e7 |
child 1854 | 6e05013899b2 |
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; |
4 | 100 |
|
1054 | 101 |
flagMakeCapture: boolean = false; |
4 | 102 |
|
1054 | 103 |
InitStepsFlags: Longword = 0; |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
104 |
|
1054 | 105 |
RealTicks: Longword = 0; |
836 | 106 |
|
1054 | 107 |
AttackBar: LongInt = 0; // 0 - none, 1 - just bar at the right-down corner, 2 - like in WWP |
4 | 108 |
|
371 | 109 |
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
|
110 |
function Min(a, b: LongInt): LongInt; |
371 | 111 |
function Max(a, b: LongInt): LongInt; |
351 | 112 |
procedure OutError(Msg: String; isFatalError: boolean); |
4 | 113 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
114 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
316 | 115 |
function IntToStr(n: LongInt): shortstring; |
351 | 116 |
function FloatToStr(n: hwFloat): shortstring; |
775 | 117 |
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; |
371 | 118 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
119 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
|
4 | 120 |
procedure AdjustColor(var Color: Longword); |
121 |
{$IFDEF DEBUGFILE} |
|
122 |
procedure AddFileLog(s: shortstring); |
|
24 | 123 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
4 | 124 |
{$ENDIF} |
208 | 125 |
procedure SetKB(n: Longword); |
126 |
procedure SendKB; |
|
351 | 127 |
procedure SetLittle(var r: hwFloat); |
306 | 128 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
753 | 129 |
function Str2PChar(const s: shortstring): PChar; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
130 |
function NewTexture(width, height: Longword; buf: Pointer): PTexture; |
755 | 131 |
function Surface2Tex(surf: PSDL_Surface): PTexture; |
759 | 132 |
procedure FreeTexture(tex: PTexture); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
916
diff
changeset
|
133 |
function toPowerOf2(i: Longword): Longword; |
949 | 134 |
function DecodeBase64(s: shortstring): shortstring; |
1080 | 135 |
procedure MakeScreenshot(s: shortstring); |
4 | 136 |
|
137 |
var CursorPoint: TPoint; |
|
138 |
TargetPoint: TPoint = (X: NoPointX; Y: 0); |
|
139 |
||
140 |
implementation |
|
771 | 141 |
uses uConsole, uStore, uIO, Math, uRandom, GLU; |
208 | 142 |
var KBnum: Longword = 0; |
4 | 143 |
{$IFDEF DEBUGFILE} |
144 |
var f: textfile; |
|
145 |
{$ENDIF} |
|
146 |
||
371 | 147 |
function hwSign(r: hwFloat): LongInt; |
4 | 148 |
begin |
351 | 149 |
if r.isNegative then hwSign:= -1 else hwSign:= 1 |
4 | 150 |
end; |
151 |
||
371 | 152 |
function Min(a, b: LongInt): LongInt; |
4 | 153 |
begin |
351 | 154 |
if a < b then Min:= a else Min:= b |
4 | 155 |
end; |
156 |
||
371 | 157 |
function Max(a, b: LongInt): LongInt; |
4 | 158 |
begin |
351 | 159 |
if a > b then Max:= a else Max:= b |
4 | 160 |
end; |
161 |
||
351 | 162 |
procedure OutError(Msg: String; isFatalError: boolean); |
4 | 163 |
begin |
164 |
{$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF} |
|
53 | 165 |
WriteLnToConsole(Msg); |
4 | 166 |
if isFatalError then |
167 |
begin |
|
53 | 168 |
SendIPC('E' + GetLastConsoleLine); |
4 | 169 |
SDL_Quit; |
170 |
halt(1) |
|
53 | 171 |
end |
4 | 172 |
end; |
173 |
||
174 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
|
175 |
begin |
|
70 | 176 |
if not Assert then OutError(Msg, isFatal) |
4 | 177 |
end; |
178 |
||
179 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
180 |
begin |
|
181 |
if not Assert then OutError(SDL_GetError, isFatal) |
|
182 |
end; |
|
183 |
||
188 | 184 |
procedure AdjustColor(var Color: Longword); |
4 | 185 |
begin |
186 |
Color:= SDL_MapRGB(PixelFormat, (Color shr 16) and $FF, (Color shr 8) and $FF, Color and $FF) |
|
187 |
end; |
|
188 |
||
316 | 189 |
function IntToStr(n: LongInt): shortstring; |
4 | 190 |
begin |
351 | 191 |
str(n, IntToStr) |
4 | 192 |
end; |
193 |
||
351 | 194 |
function FloatToStr(n: hwFloat): shortstring; |
4 | 195 |
begin |
1346 | 196 |
FloatToStr:= cstr(n) + '_' + inttostr(Lo(n.QWordValue)) |
4 | 197 |
end; |
198 |
||
775 | 199 |
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; |
200 |
var dY, dX: Extended; |
|
201 |
begin |
|
202 |
dY:= _dY.QWordValue / $100000000; |
|
203 |
if _dY.isNegative then dY:= - dY; |
|
204 |
dX:= _dX.QWordValue / $100000000; |
|
205 |
if _dX.isNegative then dX:= - dX; |
|
206 |
DxDy2Angle:= arctan2(dY, dX) * 180 / pi |
|
207 |
end; |
|
208 |
||
371 | 209 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
100 | 210 |
const _16divPI: Extended = 16/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
211 |
var dY, dX: Extended; |
100 | 212 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
213 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
214 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
215 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
216 |
if _dX.isNegative then dX:= - dX; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
217 |
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f |
4 | 218 |
end; |
219 |
||
371 | 220 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
100 | 221 |
const MaxAngleDivPI: Extended = cMaxAngle/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
222 |
var dY, dX: Extended; |
100 | 223 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
224 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
225 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
226 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
227 |
if _dX.isNegative then dX:= - dX; |
438 | 228 |
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI) |
100 | 229 |
end; |
4 | 230 |
|
208 | 231 |
procedure SetKB(n: Longword); |
232 |
begin |
|
233 |
KBnum:= n |
|
234 |
end; |
|
235 |
||
236 |
procedure SendKB; |
|
237 |
var s: shortstring; |
|
238 |
begin |
|
239 |
if KBnum <> 0 then |
|
240 |
begin |
|
241 |
s:= 'K' + inttostr(KBnum); |
|
242 |
SendIPCRaw(@s, Length(s) + 1) |
|
243 |
end |
|
244 |
end; |
|
245 |
||
351 | 246 |
procedure SetLittle(var r: hwFloat); |
300 | 247 |
begin |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
543
diff
changeset
|
248 |
r:= SignAs(cLittle, r) |
300 | 249 |
end; |
250 |
||
337 | 251 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
1625 | 252 |
const stc: array [TStatInfoType] of char = 'rDkKH'; |
337 | 253 |
begin |
254 |
SendIPC('i' + stc[sit] + s) |
|
255 |
end; |
|
256 |
||
534 | 257 |
function Str2PChar(const s: shortstring): PChar; |
351 | 258 |
const CharArray: array[byte] of Char = ''; |
259 |
begin |
|
260 |
CharArray:= s; |
|
261 |
CharArray[Length(s)]:= #0; |
|
262 |
Str2PChar:= @CharArray |
|
263 |
end; |
|
264 |
||
771 | 265 |
function isPowerOf2(i: Longword): boolean; |
266 |
begin |
|
267 |
if i = 0 then exit(true); |
|
268 |
while (i and 1) = 0 do i:= i shr 1; |
|
269 |
isPowerOf2:= (i = 1) |
|
270 |
end; |
|
271 |
||
272 |
function toPowerOf2(i: Longword): Longword; |
|
273 |
begin |
|
274 |
toPowerOf2:= 1; |
|
275 |
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1 |
|
276 |
end; |
|
277 |
||
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
278 |
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
|
279 |
begin |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
280 |
new(NewTexture); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
281 |
NewTexture^.w:= width; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
282 |
NewTexture^.h:= height; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
283 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
284 |
glGenTextures(1, @NewTexture^.id); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
285 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
286 |
glBindTexture(GL_TEXTURE_2D, NewTexture^.id); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
287 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
288 |
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
|
289 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
290 |
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
|
291 |
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
|
292 |
end; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
293 |
|
755 | 294 |
function Surface2Tex(surf: PSDL_Surface): PTexture; |
753 | 295 |
var mode: LongInt; |
771 | 296 |
tw, th: Longword; |
297 |
tmpp: pointer; |
|
753 | 298 |
begin |
755 | 299 |
new(Surface2Tex); |
300 |
Surface2Tex^.w:= surf^.w; |
|
301 |
Surface2Tex^.h:= surf^.h; |
|
302 |
||
753 | 303 |
if (surf^.format^.BytesPerPixel = 3) then mode:= GL_RGB else |
304 |
if (surf^.format^.BytesPerPixel = 4) then mode:= GL_RGBA else |
|
305 |
begin |
|
869 | 306 |
TryDo(false, 'Surface2Tex: BytesPerPixel not in [3, 4]', true); |
755 | 307 |
Surface2Tex^.id:= 0; |
753 | 308 |
exit |
309 |
end; |
|
310 |
||
755 | 311 |
glGenTextures(1, @Surface2Tex^.id); |
753 | 312 |
|
755 | 313 |
glBindTexture(GL_TEXTURE_2D, Surface2Tex^.id); |
753 | 314 |
|
771 | 315 |
if SDL_MustLock(surf) then |
316 |
SDLTry(SDL_LockSurface(surf) >= 0, true); |
|
317 |
||
318 |
if not (isPowerOf2(Surf^.w) and isPowerOf2(Surf^.h)) then |
|
319 |
begin |
|
320 |
tw:= toPowerOf2(Surf^.w); |
|
321 |
th:= toPowerOf2(Surf^.h); |
|
322 |
||
323 |
GetMem(tmpp, tw * th * surf^.format^.BytesPerPixel); |
|
324 |
||
325 |
gluScaleImage(mode, Surf^.w, Surf^.h, GL_UNSIGNED_BYTE, |
|
326 |
Surf^.pixels, tw, th, GL_UNSIGNED_BYTE, |
|
327 |
tmpp); |
|
328 |
||
329 |
glTexImage2D(GL_TEXTURE_2D, 0, mode, tw, th, 0, mode, GL_UNSIGNED_BYTE, tmpp); |
|
330 |
||
331 |
FreeMem(tmpp, tw * th * surf^.format^.BytesPerPixel) |
|
332 |
end else |
|
333 |
glTexImage2D(GL_TEXTURE_2D, 0, mode, surf^.w, surf^.h, 0, mode, GL_UNSIGNED_BYTE, surf^.pixels); |
|
753 | 334 |
|
754 | 335 |
if SDL_MustLock(surf) then |
336 |
SDL_UnlockSurface(surf); |
|
337 |
||
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
785
diff
changeset
|
338 |
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
|
339 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR) |
753 | 340 |
end; |
341 |
||
759 | 342 |
procedure FreeTexture(tex: PTexture); |
343 |
begin |
|
344 |
glDeleteTextures(1, @tex^.id); |
|
345 |
dispose(tex) |
|
346 |
end; |
|
337 | 347 |
|
949 | 348 |
function DecodeBase64(s: shortstring): shortstring; |
349 |
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; |
|
350 |
var i, t, c: Longword; |
|
351 |
begin |
|
352 |
c:= 0; |
|
353 |
for i:= 1 to Length(s) do |
|
354 |
begin |
|
355 |
t:= Pos(s[i], table); |
|
356 |
if s[i] = '=' then inc(c); |
|
357 |
if t > 0 then byte(s[i]):= t - 1 else byte(s[i]):= 0 |
|
358 |
end; |
|
359 |
||
360 |
i:= 1; |
|
361 |
t:= 1; |
|
362 |
while i <= length(s) do |
|
363 |
begin |
|
364 |
DecodeBase64[t ]:= char((byte(s[i ]) shl 2) or (byte(s[i + 1]) shr 4)); |
|
365 |
DecodeBase64[t + 1]:= char((byte(s[i + 1]) shl 4) or (byte(s[i + 2]) shr 2)); |
|
366 |
DecodeBase64[t + 2]:= char((byte(s[i + 2]) shl 6) or (byte(s[i + 3]) )); |
|
367 |
inc(t, 3); |
|
368 |
inc(i, 4) |
|
369 |
end; |
|
370 |
||
371 |
if c < 3 then t:= t - c; |
|
372 |
||
373 |
byte(DecodeBase64[0]):= t - 1 |
|
374 |
end; |
|
375 |
||
1080 | 376 |
const GL_BGR = $80E0; // some opengl headers don't have that const (?) |
377 |
procedure MakeScreenshot(s: shortstring); |
|
378 |
const head: array[0..8] of Word = (0, 2, 0, 0, 0, 0, 0, 0, 24); |
|
379 |
var p: Pointer; |
|
380 |
size: Longword; |
|
381 |
f: file; |
|
382 |
begin |
|
383 |
head[6]:= cScreenWidth; |
|
384 |
head[7]:= cScreenHeight; |
|
385 |
||
386 |
size:= cScreenWidth * cScreenHeight * 3; |
|
387 |
p:= GetMem(size); |
|
388 |
||
389 |
glReadBuffer(GL_FRONT); |
|
390 |
glReadPixels(0, 0, cScreenWidth, cScreenHeight, GL_BGR, GL_UNSIGNED_BYTE, p); |
|
391 |
||
392 |
{$I-} |
|
393 |
Assign(f, s); |
|
394 |
Rewrite(f, 1); |
|
395 |
if IOResult = 0 then |
|
396 |
begin |
|
397 |
BlockWrite(f, head, sizeof(head)); |
|
398 |
BlockWrite(f, p^, size); |
|
399 |
Close(f); |
|
400 |
end; |
|
401 |
{$I+} |
|
402 |
||
403 |
FreeMem(p) |
|
404 |
end; |
|
405 |
||
949 | 406 |
{$IFDEF DEBUGFILE} |
407 |
procedure AddFileLog(s: shortstring); |
|
408 |
begin |
|
409 |
writeln(f, GameTicks: 6, ': ', s); |
|
410 |
flush(f) |
|
411 |
end; |
|
412 |
||
413 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
|
414 |
begin |
|
415 |
RectToStr:= '(x: ' + inttostr(rect.x) + '; y: ' + inttostr(rect.y) + '; w: ' + inttostr(rect.w) + '; h: ' + inttostr(rect.h) + ')' |
|
416 |
end; |
|
417 |
||
371 | 418 |
var i: LongInt; |
488 | 419 |
{$ENDIF} |
306 | 420 |
|
4 | 421 |
initialization |
351 | 422 |
cDrownSpeed.QWordValue:= 257698038;// 0.06 |
488 | 423 |
cMaxWindSpeed.QWordValue:= 2147484;// 0.0005 |
424 |
cWindSpeed.QWordValue:= 429496;// 0.0001 |
|
351 | 425 |
cGravity:= cMaxWindSpeed; |
1849 | 426 |
cDamageModifier:= _1; |
351 | 427 |
|
488 | 428 |
{$IFDEF DEBUGFILE} |
337 | 429 |
{$I-} |
497 | 430 |
if ParamCount > 0 then |
431 |
for i:= 0 to 7 do |
|
337 | 432 |
begin |
497 | 433 |
Assign(f, ParamStr(1) + '/debug' + inttostr(i) + '.txt'); |
337 | 434 |
rewrite(f); |
435 |
if IOResult = 0 then break |
|
436 |
end; |
|
437 |
{$I+} |
|
17 | 438 |
|
4 | 439 |
finalization |
916 | 440 |
//uRandom.DumpBuffer; |
4 | 441 |
writeln(f, '-= halt at ',GameTicks,' ticks =-'); |
442 |
Flush(f); |
|
351 | 443 |
close(f) |
4 | 444 |
{$ENDIF} |
445 |
||
446 |
end. |