author | unc0rr |
Fri, 27 Oct 2006 22:07:38 +0000 | |
changeset 208 | a049157d673a |
parent 196 | 993cf173218b |
child 281 | 5b483aa9f2ab |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
47 | 3 |
* Copyright (c) 2004, 2005, 2006 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 |
|
21 |
uses uConsts, SDLh; |
|
22 |
{$INCLUDE options.inc} |
|
23 |
var isCursorVisible : boolean = false; |
|
24 |
isTerminated : boolean = false; |
|
25 |
isInLag : boolean = false; |
|
26 |
isSoundEnabled : boolean = true; |
|
72 | 27 |
isSEBackup : boolean = true; |
4 | 28 |
isInMultiShoot : boolean = false; |
29 |
||
39 | 30 |
GameState : TGameState = Low(TGameState); |
4 | 31 |
GameType : TGameType = gmtLocal; |
32 |
GameFlags : Longword = 0; |
|
33 |
TurnTimeLeft : Longword = 0; |
|
95 | 34 |
cHedgehogTurnTime: Longword = 45000; |
143 | 35 |
cMaxAIThinkTime : Longword = 5000; |
4 | 36 |
|
37 |
cCloudsNumber : integer = 9; |
|
38 |
cConsoleHeight : integer = 320; |
|
39 |
cConsoleYAdd : integer = 0; |
|
188 | 40 |
cTimerInterval : Longword = 5; |
4 | 41 |
cScreenWidth : integer = 1024; |
42 |
cScreenHeight : integer = 768; |
|
43 |
cBits : integer = 16; |
|
74 | 44 |
cBitsStr : string[2] = '16'; |
45 |
||
4 | 46 |
cWaterLine : integer = 1024; |
75 | 47 |
cVisibleWater : integer = 128; |
4 | 48 |
cScreenEdgesDist : integer = 240; |
47 | 49 |
cTeamHealthWidth : integer = 128; |
4 | 50 |
|
51 |
GameTicks : LongWord = 0; |
|
52 |
||
188 | 53 |
cSkyColor : Longword = 0; |
54 |
cWaterColor : Longword = $005ACE; |
|
55 |
cWhiteColor : Longword = $FFFFFF; |
|
56 |
cConsoleSplitterColor : Longword = $FF0000; |
|
57 |
cColorNearBlack : Longword = 16; |
|
4 | 58 |
cExplosionBorderColor : LongWord = $808080; |
59 |
||
108 | 60 |
cDrownSpeed : Double = 0.06; |
61 |
cMaxWindSpeed : Double = 0.0005; |
|
62 |
cWindSpeed : Double = 0.0001; |
|
63 |
cGravity : Double = 0.0005; |
|
4 | 64 |
|
65 |
cShowFPS : boolean = true; |
|
66 |
cFullScreen : boolean = true; |
|
80 | 67 |
cLocaleFName : shortstring = 'en.txt'; |
81 | 68 |
cSeed : shortstring = ''; |
174 | 69 |
cInitVolume : integer = 128; |
70 |
cVolumeDelta : integer = 0; |
|
4 | 71 |
|
72 |
const |
|
73 |
cMaxPower = 1500; |
|
74 |
cMaxAngle = 2048; |
|
75 |
cPowerDivisor = 1500; |
|
76 |
||
77 |
var |
|
78 |
cSendEmptyPacketTime : LongWord = 2000; |
|
79 |
cSendCursorPosTime : LongWord = 50; |
|
13 | 80 |
ShowCrosshair : boolean; |
4 | 81 |
|
82 |
flagMakeCapture: boolean = false; |
|
83 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
84 |
InitStepsFlags: Longword = 0; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
85 |
|
79 | 86 |
AttackBar: integer = 0; // 0 - none, 1 - just bar at the right-down corner, 2 - like in WWP |
4 | 87 |
|
108 | 88 |
function hwSign(r: Double): integer; |
4 | 89 |
function Min(a, b: integer): integer; |
90 |
function Max(a, b: integer): integer; |
|
91 |
procedure OutError(Msg: String; const isFatalError: boolean=false); |
|
92 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
|
93 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
94 |
function IntToStr(n: integer): shortstring; |
|
107 | 95 |
function FloatToStr(n: Double): shortstring; |
4 | 96 |
function DxDy2Angle32(const _dY, _dX: Extended): integer; |
100 | 97 |
function DxDy2AttackAngle(const _dY, _dX: Extended): integer; |
4 | 98 |
procedure AdjustColor(var Color: Longword); |
99 |
{$IFDEF DEBUGFILE} |
|
100 |
procedure AddFileLog(s: shortstring); |
|
24 | 101 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
4 | 102 |
{$ENDIF} |
208 | 103 |
procedure SetKB(n: Longword); |
104 |
procedure SendKB; |
|
4 | 105 |
|
106 |
var CursorPoint: TPoint; |
|
107 |
TargetPoint: TPoint = (X: NoPointX; Y: 0); |
|
108 |
||
109 |
implementation |
|
100 | 110 |
uses uConsole, uStore, uIO{$IFDEF FPC}, Math{$ENDIF}; |
208 | 111 |
var KBnum: Longword = 0; |
4 | 112 |
{$IFDEF DEBUGFILE} |
113 |
var f: textfile; |
|
114 |
{$ENDIF} |
|
115 |
||
108 | 116 |
function hwSign(r: Double): integer; |
4 | 117 |
begin |
118 |
if r < 0 then Result:= -1 else Result:= 1 |
|
119 |
end; |
|
120 |
||
121 |
function Min(a, b: integer): integer; |
|
122 |
begin |
|
123 |
if a < b then Result:= a else Result:= b |
|
124 |
end; |
|
125 |
||
126 |
function Max(a, b: integer): integer; |
|
127 |
begin |
|
128 |
if a > b then Result:= a else Result:= b |
|
129 |
end; |
|
130 |
||
131 |
procedure OutError(Msg: String; const isFatalError: boolean=false); |
|
132 |
begin |
|
133 |
{$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF} |
|
53 | 134 |
WriteLnToConsole(Msg); |
4 | 135 |
if isFatalError then |
136 |
begin |
|
53 | 137 |
SendIPC('E' + GetLastConsoleLine); |
4 | 138 |
SDL_Quit; |
139 |
halt(1) |
|
53 | 140 |
end |
4 | 141 |
end; |
142 |
||
143 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
|
144 |
begin |
|
70 | 145 |
if not Assert then OutError(Msg, isFatal) |
4 | 146 |
end; |
147 |
||
148 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
149 |
begin |
|
150 |
if not Assert then OutError(SDL_GetError, isFatal) |
|
151 |
end; |
|
152 |
||
188 | 153 |
procedure AdjustColor(var Color: Longword); |
4 | 154 |
begin |
155 |
Color:= SDL_MapRGB(PixelFormat, (Color shr 16) and $FF, (Color shr 8) and $FF, Color and $FF) |
|
156 |
end; |
|
157 |
||
158 |
function IntToStr(n: integer): shortstring; |
|
159 |
begin |
|
160 |
str(n, Result) |
|
161 |
end; |
|
162 |
||
107 | 163 |
function FloatToStr(n: Double): shortstring; |
4 | 164 |
begin |
53 | 165 |
str(n:5:5, Result) |
4 | 166 |
end; |
167 |
||
100 | 168 |
{$IFNDEF FPC} |
107 | 169 |
function arctan2(const Y, X: Double): Double; |
4 | 170 |
asm |
171 |
fld Y |
|
172 |
fld X |
|
173 |
fpatan |
|
174 |
fwait |
|
175 |
end; |
|
100 | 176 |
{$ENDIF} |
4 | 177 |
|
178 |
function DxDy2Angle32(const _dY, _dX: Extended): integer; |
|
100 | 179 |
const _16divPI: Extended = 16/pi; |
180 |
begin |
|
181 |
Result:= trunc(arctan2(_dY, _dX) * _16divPI) and $1f |
|
4 | 182 |
end; |
183 |
||
100 | 184 |
function DxDy2AttackAngle(const _dY, _dX: Extended): integer; |
185 |
const MaxAngleDivPI: Extended = cMaxAngle/pi; |
|
186 |
begin |
|
187 |
Result:= trunc(arctan2(_dY, _dX) * MaxAngleDivPI) mod cMaxAngle |
|
188 |
end; |
|
4 | 189 |
|
208 | 190 |
procedure SetKB(n: Longword); |
191 |
begin |
|
192 |
KBnum:= n |
|
193 |
end; |
|
194 |
||
195 |
procedure SendKB; |
|
196 |
var s: shortstring; |
|
197 |
begin |
|
198 |
if KBnum <> 0 then |
|
199 |
begin |
|
200 |
s:= 'K' + inttostr(KBnum); |
|
201 |
SendIPCRaw(@s, Length(s) + 1) |
|
202 |
end |
|
203 |
end; |
|
204 |
||
4 | 205 |
{$IFDEF DEBUGFILE} |
206 |
procedure AddFileLog(s: shortstring); |
|
207 |
begin |
|
208 |
writeln(f, GameTicks: 6, ': ', s); |
|
209 |
flush(f) |
|
210 |
end; |
|
211 |
||
24 | 212 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
213 |
begin |
|
214 |
Result:= '(x: ' + inttostr(rect.x) + '; y: ' + inttostr(rect.y) + '; w: ' + inttostr(rect.w) + '; h: ' + inttostr(rect.h) + ')' |
|
215 |
end; |
|
216 |
||
4 | 217 |
initialization |
108 | 218 |
AssignFile(f, 'debug.txt'); |
4 | 219 |
rewrite(f); |
17 | 220 |
|
4 | 221 |
finalization |
222 |
writeln(f, '-= halt at ',GameTicks,' ticks =-'); |
|
223 |
Flush(f); |
|
224 |
closefile(f) |
|
225 |
{$ENDIF} |
|
226 |
||
227 |
end. |