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