author | displacer |
Tue, 18 Sep 2007 18:42:50 +0000 | |
changeset 598 | bb66dd64916b |
parent 564 | 17fb45c670c1 |
child 614 | 0e04504bc140 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
393 | 3 |
* Copyright (c) 2004-2007 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 |
|
351 | 21 |
uses uConsts, SDLh, uFloat; |
4 | 22 |
{$INCLUDE options.inc} |
23 |
var isCursorVisible : boolean = false; |
|
24 |
isTerminated : boolean = false; |
|
25 |
isInLag : boolean = false; |
|
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
208
diff
changeset
|
26 |
isPaused : boolean = false; |
4 | 27 |
isSoundEnabled : boolean = true; |
72 | 28 |
isSEBackup : boolean = true; |
4 | 29 |
isInMultiShoot : boolean = false; |
30 |
||
39 | 31 |
GameState : TGameState = Low(TGameState); |
4 | 32 |
GameType : TGameType = gmtLocal; |
33 |
GameFlags : Longword = 0; |
|
34 |
TurnTimeLeft : Longword = 0; |
|
95 | 35 |
cHedgehogTurnTime: Longword = 45000; |
433 | 36 |
cMaxAIThinkTime : Longword = 9000; |
4 | 37 |
|
371 | 38 |
cCloudsNumber : LongInt = 9; |
39 |
cConsoleHeight : LongInt = 320; |
|
40 |
cConsoleYAdd : LongInt = 0; |
|
41 |
cScreenWidth : LongInt = 1024; |
|
42 |
cScreenHeight : LongInt = 768; |
|
43 |
cBits : LongInt = 16; |
|
74 | 44 |
cBitsStr : string[2] = '16'; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
45 |
cTagsMask : byte = 7; |
74 | 46 |
|
371 | 47 |
cWaterLine : LongInt = 1024; |
48 |
cVisibleWater : LongInt = 128; |
|
49 |
cGearScrEdgesDist: LongInt = 240; |
|
50 |
cCursorEdgesDist : LongInt = 40; |
|
51 |
cTeamHealthWidth : LongInt = 128; |
|
529 | 52 |
cAltDamage : boolean = true; |
4 | 53 |
|
54 |
GameTicks : LongWord = 0; |
|
55 |
||
188 | 56 |
cSkyColor : Longword = 0; |
57 |
cWaterColor : Longword = $005ACE; |
|
58 |
cWhiteColor : Longword = $FFFFFF; |
|
59 |
cConsoleSplitterColor : Longword = $FF0000; |
|
60 |
cColorNearBlack : Longword = 16; |
|
4 | 61 |
cExplosionBorderColor : LongWord = $808080; |
62 |
||
63 |
cShowFPS : boolean = true; |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
543
diff
changeset
|
64 |
cCaseFactor : Longword = 7; {1..10} |
4 | 65 |
cFullScreen : boolean = true; |
80 | 66 |
cLocaleFName : shortstring = 'en.txt'; |
81 | 67 |
cSeed : shortstring = ''; |
371 | 68 |
cInitVolume : LongInt = 128; |
69 |
cVolumeDelta : LongInt = 0; |
|
296 | 70 |
cTimerInterval : Longword = 5; |
351 | 71 |
cHasFocus : boolean = true; |
4 | 72 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
539
diff
changeset
|
73 |
cAirPlaneSpeed: hwFloat = (isNegative: false; QWordValue: 6012954214); // 1.4 |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
539
diff
changeset
|
74 |
cBombsSpeed : hwFloat = (isNegative: false; QWordValue: 429496729); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
539
diff
changeset
|
75 |
|
4 | 76 |
var |
77 |
cSendEmptyPacketTime : LongWord = 2000; |
|
78 |
cSendCursorPosTime : LongWord = 50; |
|
13 | 79 |
ShowCrosshair : boolean; |
351 | 80 |
cDrownSpeed, |
81 |
cMaxWindSpeed, |
|
82 |
cWindSpeed, |
|
83 |
cGravity: hwFloat; |
|
4 | 84 |
|
85 |
flagMakeCapture: boolean = false; |
|
86 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
87 |
InitStepsFlags: Longword = 0; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
88 |
|
564 | 89 |
RealTicks: Longword = 0; |
90 |
||
371 | 91 |
AttackBar: LongInt = 0; // 0 - none, 1 - just bar at the right-down corner, 2 - like in WWP |
4 | 92 |
|
371 | 93 |
function hwSign(r: hwFloat): LongInt; |
534 | 94 |
function Min(a, b: LongInt): LongInt; |
371 | 95 |
function Max(a, b: LongInt): LongInt; |
351 | 96 |
function rndSign(num: hwFloat): hwFloat; |
97 |
procedure OutError(Msg: String; isFatalError: boolean); |
|
4 | 98 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
99 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
316 | 100 |
function IntToStr(n: LongInt): shortstring; |
351 | 101 |
function FloatToStr(n: hwFloat): shortstring; |
371 | 102 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
103 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
|
4 | 104 |
procedure AdjustColor(var Color: Longword); |
105 |
{$IFDEF DEBUGFILE} |
|
106 |
procedure AddFileLog(s: shortstring); |
|
24 | 107 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
4 | 108 |
{$ENDIF} |
208 | 109 |
procedure SetKB(n: Longword); |
110 |
procedure SendKB; |
|
351 | 111 |
procedure SetLittle(var r: hwFloat); |
306 | 112 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
534 | 113 |
function Str2PChar(const s: shortstring): PChar; |
4 | 114 |
|
115 |
var CursorPoint: TPoint; |
|
116 |
TargetPoint: TPoint = (X: NoPointX; Y: 0); |
|
117 |
||
118 |
implementation |
|
351 | 119 |
uses uConsole, uStore, uIO, Math, uRandom; |
208 | 120 |
var KBnum: Longword = 0; |
4 | 121 |
{$IFDEF DEBUGFILE} |
122 |
var f: textfile; |
|
123 |
{$ENDIF} |
|
124 |
||
371 | 125 |
function hwSign(r: hwFloat): LongInt; |
4 | 126 |
begin |
351 | 127 |
if r.isNegative then hwSign:= -1 else hwSign:= 1 |
4 | 128 |
end; |
129 |
||
371 | 130 |
function Min(a, b: LongInt): LongInt; |
4 | 131 |
begin |
351 | 132 |
if a < b then Min:= a else Min:= b |
4 | 133 |
end; |
134 |
||
371 | 135 |
function Max(a, b: LongInt): LongInt; |
4 | 136 |
begin |
351 | 137 |
if a > b then Max:= a else Max:= b |
4 | 138 |
end; |
139 |
||
351 | 140 |
procedure OutError(Msg: String; isFatalError: boolean); |
4 | 141 |
begin |
142 |
{$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF} |
|
53 | 143 |
WriteLnToConsole(Msg); |
4 | 144 |
if isFatalError then |
145 |
begin |
|
53 | 146 |
SendIPC('E' + GetLastConsoleLine); |
4 | 147 |
SDL_Quit; |
148 |
halt(1) |
|
53 | 149 |
end |
4 | 150 |
end; |
151 |
||
152 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
|
153 |
begin |
|
70 | 154 |
if not Assert then OutError(Msg, isFatal) |
4 | 155 |
end; |
156 |
||
157 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
158 |
begin |
|
159 |
if not Assert then OutError(SDL_GetError, isFatal) |
|
160 |
end; |
|
161 |
||
188 | 162 |
procedure AdjustColor(var Color: Longword); |
4 | 163 |
begin |
164 |
Color:= SDL_MapRGB(PixelFormat, (Color shr 16) and $FF, (Color shr 8) and $FF, Color and $FF) |
|
165 |
end; |
|
166 |
||
316 | 167 |
function IntToStr(n: LongInt): shortstring; |
4 | 168 |
begin |
351 | 169 |
str(n, IntToStr) |
4 | 170 |
end; |
171 |
||
351 | 172 |
function FloatToStr(n: hwFloat): shortstring; |
4 | 173 |
begin |
351 | 174 |
FloatToStr:= cstr(n) |
4 | 175 |
end; |
176 |
||
371 | 177 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
100 | 178 |
const _16divPI: Extended = 16/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
179 |
var dY, dX: Extended; |
100 | 180 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
181 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
182 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
183 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
184 |
if _dX.isNegative then dX:= - dX; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
185 |
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f |
4 | 186 |
end; |
187 |
||
371 | 188 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
100 | 189 |
const MaxAngleDivPI: Extended = cMaxAngle/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
190 |
var dY, dX: Extended; |
100 | 191 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
192 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
193 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
194 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
195 |
if _dX.isNegative then dX:= - dX; |
438 | 196 |
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI) |
100 | 197 |
end; |
4 | 198 |
|
208 | 199 |
procedure SetKB(n: Longword); |
200 |
begin |
|
201 |
KBnum:= n |
|
202 |
end; |
|
203 |
||
204 |
procedure SendKB; |
|
205 |
var s: shortstring; |
|
206 |
begin |
|
207 |
if KBnum <> 0 then |
|
208 |
begin |
|
209 |
s:= 'K' + inttostr(KBnum); |
|
210 |
SendIPCRaw(@s, Length(s) + 1) |
|
211 |
end |
|
212 |
end; |
|
213 |
||
351 | 214 |
procedure SetLittle(var r: hwFloat); |
300 | 215 |
begin |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
543
diff
changeset
|
216 |
r:= SignAs(cLittle, r) |
300 | 217 |
end; |
218 |
||
337 | 219 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
220 |
const stc: array [TStatInfoType] of char = 'rDK'; |
|
221 |
begin |
|
222 |
SendIPC('i' + stc[sit] + s) |
|
223 |
end; |
|
224 |
||
351 | 225 |
function rndSign(num: hwFloat): hwFloat; |
226 |
begin |
|
227 |
num.isNegative:= getrandom(2) = 0; |
|
228 |
rndSign:= num |
|
229 |
end; |
|
230 |
||
534 | 231 |
function Str2PChar(const s: shortstring): PChar; |
351 | 232 |
const CharArray: array[byte] of Char = ''; |
233 |
begin |
|
234 |
CharArray:= s; |
|
235 |
CharArray[Length(s)]:= #0; |
|
236 |
Str2PChar:= @CharArray |
|
237 |
end; |
|
238 |
||
4 | 239 |
{$IFDEF DEBUGFILE} |
240 |
procedure AddFileLog(s: shortstring); |
|
241 |
begin |
|
242 |
writeln(f, GameTicks: 6, ': ', s); |
|
243 |
flush(f) |
|
244 |
end; |
|
245 |
||
24 | 246 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
247 |
begin |
|
351 | 248 |
RectToStr:= '(x: ' + inttostr(rect.x) + '; y: ' + inttostr(rect.y) + '; w: ' + inttostr(rect.w) + '; h: ' + inttostr(rect.h) + ')' |
24 | 249 |
end; |
250 |
||
337 | 251 |
|
371 | 252 |
var i: LongInt; |
488 | 253 |
{$ENDIF} |
306 | 254 |
|
4 | 255 |
initialization |
351 | 256 |
cDrownSpeed.QWordValue:= 257698038;// 0.06 |
488 | 257 |
cMaxWindSpeed.QWordValue:= 2147484;// 0.0005 |
258 |
cWindSpeed.QWordValue:= 429496;// 0.0001 |
|
351 | 259 |
cGravity:= cMaxWindSpeed; |
260 |
||
488 | 261 |
{$IFDEF DEBUGFILE} |
337 | 262 |
{$I-} |
497 | 263 |
if ParamCount > 0 then |
264 |
for i:= 0 to 7 do |
|
337 | 265 |
begin |
497 | 266 |
Assign(f, ParamStr(1) + '/debug' + inttostr(i) + '.txt'); |
337 | 267 |
rewrite(f); |
268 |
if IOResult = 0 then break |
|
269 |
end; |
|
270 |
{$I+} |
|
17 | 271 |
|
4 | 272 |
finalization |
273 |
writeln(f, '-= halt at ',GameTicks,' ticks =-'); |
|
274 |
Flush(f); |
|
351 | 275 |
close(f) |
4 | 276 |
{$ENDIF} |
277 |
||
278 |
end. |