author | unc0rr |
Thu, 05 Oct 2006 16:33:18 +0000 | |
changeset 183 | 57c2ef19f719 |
parent 174 | 0b2c5b22f644 |
child 188 | a7c2a61524c2 |
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; |
|
39 | 40 |
cTimerInterval : Cardinal = 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 |
||
53 |
cSkyColor : Cardinal = 0; |
|
56 | 54 |
cWaterColor : Cardinal = $005ACE; |
4 | 55 |
cWhiteColor : Cardinal = $FFFFFF; |
56 |
cConsoleSplitterColor : Cardinal = $FF0000; |
|
57 |
cColorNearBlack : Cardinal = 16; |
|
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} |
103 |
||
104 |
var CursorPoint: TPoint; |
|
105 |
TargetPoint: TPoint = (X: NoPointX; Y: 0); |
|
106 |
||
107 |
implementation |
|
100 | 108 |
uses uConsole, uStore, uIO{$IFDEF FPC}, Math{$ENDIF}; |
4 | 109 |
{$IFDEF DEBUGFILE} |
110 |
var f: textfile; |
|
111 |
{$ENDIF} |
|
112 |
||
113 |
||
108 | 114 |
function hwSign(r: Double): integer; |
4 | 115 |
begin |
116 |
if r < 0 then Result:= -1 else Result:= 1 |
|
117 |
end; |
|
118 |
||
119 |
function Min(a, b: integer): integer; |
|
120 |
begin |
|
121 |
if a < b then Result:= a else Result:= b |
|
122 |
end; |
|
123 |
||
124 |
function Max(a, b: integer): integer; |
|
125 |
begin |
|
126 |
if a > b then Result:= a else Result:= b |
|
127 |
end; |
|
128 |
||
129 |
procedure OutError(Msg: String; const isFatalError: boolean=false); |
|
130 |
begin |
|
131 |
{$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF} |
|
53 | 132 |
WriteLnToConsole(Msg); |
4 | 133 |
if isFatalError then |
134 |
begin |
|
53 | 135 |
SendIPC('E' + GetLastConsoleLine); |
4 | 136 |
SDL_Quit; |
137 |
halt(1) |
|
53 | 138 |
end |
4 | 139 |
end; |
140 |
||
141 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
|
142 |
begin |
|
70 | 143 |
if not Assert then OutError(Msg, isFatal) |
4 | 144 |
end; |
145 |
||
146 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
147 |
begin |
|
148 |
if not Assert then OutError(SDL_GetError, isFatal) |
|
149 |
end; |
|
150 |
||
151 |
procedure AdjustColor(var Color: Cardinal); |
|
152 |
begin |
|
153 |
Color:= SDL_MapRGB(PixelFormat, (Color shr 16) and $FF, (Color shr 8) and $FF, Color and $FF) |
|
154 |
end; |
|
155 |
||
156 |
function IntToStr(n: integer): shortstring; |
|
157 |
begin |
|
158 |
str(n, Result) |
|
159 |
end; |
|
160 |
||
107 | 161 |
function FloatToStr(n: Double): shortstring; |
4 | 162 |
begin |
53 | 163 |
str(n:5:5, Result) |
4 | 164 |
end; |
165 |
||
100 | 166 |
{$IFNDEF FPC} |
107 | 167 |
function arctan2(const Y, X: Double): Double; |
4 | 168 |
asm |
169 |
fld Y |
|
170 |
fld X |
|
171 |
fpatan |
|
172 |
fwait |
|
173 |
end; |
|
100 | 174 |
{$ENDIF} |
4 | 175 |
|
176 |
function DxDy2Angle32(const _dY, _dX: Extended): integer; |
|
100 | 177 |
const _16divPI: Extended = 16/pi; |
178 |
begin |
|
179 |
Result:= trunc(arctan2(_dY, _dX) * _16divPI) and $1f |
|
4 | 180 |
end; |
181 |
||
100 | 182 |
function DxDy2AttackAngle(const _dY, _dX: Extended): integer; |
183 |
const MaxAngleDivPI: Extended = cMaxAngle/pi; |
|
184 |
begin |
|
185 |
Result:= trunc(arctan2(_dY, _dX) * MaxAngleDivPI) mod cMaxAngle |
|
186 |
end; |
|
4 | 187 |
|
188 |
{$IFDEF DEBUGFILE} |
|
189 |
procedure AddFileLog(s: shortstring); |
|
190 |
begin |
|
191 |
writeln(f, GameTicks: 6, ': ', s); |
|
192 |
flush(f) |
|
193 |
end; |
|
194 |
||
24 | 195 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
196 |
begin |
|
197 |
Result:= '(x: ' + inttostr(rect.x) + '; y: ' + inttostr(rect.y) + '; w: ' + inttostr(rect.w) + '; h: ' + inttostr(rect.h) + ')' |
|
198 |
end; |
|
199 |
||
4 | 200 |
initialization |
108 | 201 |
AssignFile(f, 'debug.txt'); |
4 | 202 |
rewrite(f); |
17 | 203 |
|
4 | 204 |
finalization |
205 |
writeln(f, '-= halt at ',GameTicks,' ticks =-'); |
|
206 |
Flush(f); |
|
207 |
closefile(f) |
|
208 |
{$ENDIF} |
|
209 |
||
210 |
end. |