author | sheepluva |
Fri, 08 Apr 2011 11:40:18 +0200 | |
changeset 5124 | 84267f79879b |
parent 5122 | 9b0513507ba8 |
child 5151 | cbadb9fa52fc |
permissions | -rw-r--r-- |
351 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2004-2011 Andrey Korotaev <unC0Rr@gmail.com> |
351 | 4 |
* |
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 |
|
8 |
* |
|
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. |
|
13 |
* |
|
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 |
|
17 |
*) |
|
18 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
351 | 21 |
unit uFloat; |
5122 | 22 |
(* |
23 |
* This unit provides a custom data type, hwFloat. |
|
24 |
* |
|
25 |
* hwFloat represents a floating point number - the value and operations |
|
26 |
* of this numbers are independent from the hardware architecture |
|
27 |
* the game runs on. |
|
28 |
* |
|
29 |
* This is important for calculations that affect the course of the game |
|
30 |
* and would lead to different results if based on a hardware dependent |
|
31 |
* data type. |
|
32 |
* |
|
33 |
* Note: Not all comparisons are implemented. |
|
34 |
* |
|
35 |
* Note: Below you'll find a list of hwFloat constants: |
|
36 |
* E.g. _1 is an hwFloat with value 1.0, and -_0_9 is -0.9 |
|
5124 | 37 |
* Use and extend the list if needed, rather than using int2hwFloat() |
38 |
* with integer constants. |
|
5122 | 39 |
*) |
351 | 40 |
interface |
41 |
||
42 |
{$IFDEF FPC} |
|
2599 | 43 |
{$IFDEF ENDIAN_LITTLE} |
351 | 44 |
type hwFloat = record |
45 |
isNegative: boolean; |
|
46 |
case byte of |
|
47 |
0: (Frac, Round: Longword); |
|
48 |
1: (QWordValue : QWord); |
|
49 |
end; |
|
2599 | 50 |
{$ELSE} |
351 | 51 |
type hwFloat = record |
52 |
isNegative: boolean; |
|
53 |
case byte of |
|
54 |
0: (Round, Frac: Longword); |
|
55 |
1: (QWordValue : QWord); |
|
56 |
end; |
|
2599 | 57 |
{$ENDIF} |
351 | 58 |
|
5122 | 59 |
// Returns an hwFloat that represents the value of integer parameter i |
3599 | 60 |
function int2hwFloat (const i: LongInt) : hwFloat; inline; |
351 | 61 |
|
5122 | 62 |
// The implemented operators |
63 |
||
3599 | 64 |
operator + (const z1, z2: hwFloat) z : hwFloat; inline; |
65 |
operator - (const z1, z2: hwFloat) z : hwFloat; inline; |
|
3929
9a4bbc1f67a2
Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents:
3599
diff
changeset
|
66 |
operator - (const z1: hwFloat) z : hwFloat; inline; |
351 | 67 |
|
3929
9a4bbc1f67a2
Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents:
3599
diff
changeset
|
68 |
operator * (const z1, z2: hwFloat) z : hwFloat; inline; |
3599 | 69 |
operator * (const z1: hwFloat; const z2: LongInt) z : hwFloat; inline; |
3929
9a4bbc1f67a2
Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents:
3599
diff
changeset
|
70 |
operator / (const z1: hwFloat; z2: hwFloat) z : hwFloat; inline; |
9a4bbc1f67a2
Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents:
3599
diff
changeset
|
71 |
operator / (const z1: hwFloat; const z2: LongInt) z : hwFloat; inline; |
351 | 72 |
|
3929
9a4bbc1f67a2
Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents:
3599
diff
changeset
|
73 |
operator < (const z1, z2: hwFloat) b : boolean; inline; |
9a4bbc1f67a2
Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents:
3599
diff
changeset
|
74 |
operator > (const z1, z2: hwFloat) b : boolean; inline; |
351 | 75 |
|
5122 | 76 |
|
77 |
// Various functions for hwFloat (some are inlined in the resulting code for better performance) |
|
78 |
||
79 |
function cstr(const z: hwFloat): shortstring; // Returns a shortstring representations of the hwFloat. |
|
80 |
function hwRound(const t: hwFloat): LongInt; inline; // Does NOT really round but returns the integer representation of the hwFloat without fractional digits. (-_0_9 -> -0, _1_5 -> _1) |
|
81 |
function hwAbs(const t: hwFloat): hwFloat; inline; // Returns the value of t with positive sign. |
|
82 |
function hwSqr(const t: hwFloat): hwFloat; inline; // Returns the square value of parameter t. |
|
83 |
function hwSqrt(const t: hwFloat): hwFloat; inline; // Returns the the positive square root of parameter t. |
|
84 |
function Distance(const dx, dy: hwFloat): hwFloat; // Returns the distance between two points in 2-dimensional space, of which the parameters are the horizontal and vertical distance. |
|
85 |
function DistanceI(const dx, dy: LongInt): hwFloat; // Same as above for integer parameters. |
|
515 | 86 |
function AngleSin(const Angle: Longword): hwFloat; |
87 |
function AngleCos(const Angle: Longword): hwFloat; |
|
5122 | 88 |
function SignAs(const num, signum: hwFloat): hwFloat; inline; // Returns an hwFloat with the value of parameter num and the sign of signum. |
89 |
function hwSign(r: hwFloat): LongInt; inline; // Returns an integer with value 1 and sign of parameter r. |
|
351 | 90 |
|
2599 | 91 |
{$IFDEF FPC} |
538 | 92 |
{$J-} |
2599 | 93 |
{$ENDIF} |
611 | 94 |
{$WARNINGS OFF} |
5122 | 95 |
|
96 |
||
97 |
// some hwFloat constants |
|
98 |
||
351 | 99 |
const _1div1024: hwFloat = (isNegative: false; QWordValue: 4194304); |
100 |
_1div10000: hwFloat = (isNegative: false; QWordValue: 429496); |
|
101 |
_1div50000: hwFloat = (isNegative: false; QWordValue: 85899); |
|
102 |
_1div100000: hwFloat = (isNegative: false; QWordValue: 42950); |
|
103 |
_1div3: hwFloat = (isNegative: false; QWordValue: 1431655766); |
|
104 |
hwPi: hwFloat = (isNegative: false; QWordValue: 13493037704); |
|
105 |
_0_000004: hwFloat = (isNegative: false; QWordValue: 17179); |
|
3591 | 106 |
_0_000064: hwFloat = (isNegative: false; QWordValue: 274878); |
351 | 107 |
_0_0002: hwFloat = (isNegative: false; QWordValue: 858993); |
1586 | 108 |
_0_0005: hwFloat = (isNegative: false; QWordValue: 2147484); |
351 | 109 |
_0_001: hwFloat = (isNegative: false; QWordValue: 4294967); |
110 |
_0_003: hwFloat = (isNegative: false; QWordValue: 12884902); |
|
111 |
_0_004: hwFloat = (isNegative: false; QWordValue: 17179869); |
|
112 |
_0_005: hwFloat = (isNegative: false; QWordValue: 21474836); |
|
3428 | 113 |
_0_008: hwFloat = (isNegative: false; QWordValue: 34359738); |
351 | 114 |
_0_01: hwFloat = (isNegative: false; QWordValue: 42949673); |
115 |
_0_02: hwFloat = (isNegative: false; QWordValue: 85899345); |
|
116 |
_0_03: hwFloat = (isNegative: false; QWordValue: 128849018); |
|
117 |
_0_08: hwFloat = (isNegative: false; QWordValue: 343597383); |
|
365 | 118 |
_0_1: hwFloat = (isNegative: false; QWordValue: 429496730); |
351 | 119 |
_0_15: hwFloat = (isNegative: false; QWordValue: 644245094); |
120 |
_0_2: hwFloat = (isNegative: false; QWordValue: 858993459); |
|
121 |
_0_25: hwFloat = (isNegative: false; QWordValue: 1073741824); |
|
122 |
_0_3: hwFloat = (isNegative: false; QWordValue: 1288490189); |
|
123 |
_0_35: hwFloat = (isNegative: false; QWordValue: 1503238553); |
|
2784 | 124 |
_0_375: hwFloat = (isNegative: false; QWordValue: 4294967296 * 3 div 8); |
835
6f567934cc44
Automatically use parachute when vertical speed is high enough
unc0rr
parents:
745
diff
changeset
|
125 |
_0_39: hwFloat = (isNegative: false; QWordValue: 1675037245); |
351 | 126 |
_0_4: hwFloat = (isNegative: false; QWordValue: 1717986918); |
127 |
_0_45: hwFloat = (isNegative: false; QWordValue: 1932735283); |
|
128 |
_0_5: hwFloat = (isNegative: false; QWordValue: 2147483648); |
|
129 |
_0_55: hwFloat = (isNegative: false; QWordValue: 2362232012); |
|
130 |
_0_6: hwFloat = (isNegative: false; QWordValue: 2576980377); |
|
3583 | 131 |
_0_64: hwFloat = (isNegative: false; QWordValue: 2748779064); |
358 | 132 |
_0_7: hwFloat = (isNegative: false; QWordValue: 3006477107); |
351 | 133 |
_0_8: hwFloat = (isNegative: false; QWordValue: 3435973837); |
134 |
_0_84: hwFloat = (isNegative: false; QWordValue: 3607772528); |
|
135 |
_0_87: hwFloat = (isNegative: false; QWordValue: 3736621547); |
|
136 |
_0_9: hwFloat = (isNegative: false; QWordValue: 3865470566); |
|
137 |
_0_93: hwFloat = (isNegative: false; QWordValue: 3994319585); |
|
138 |
_0_96: hwFloat = (isNegative: false; QWordValue: 4123168604); |
|
139 |
_0_995: hwFloat = (isNegative: false; QWordValue: 4273492459); |
|
140 |
_0_999: hwFloat = (isNegative: false; QWordValue: 4290672328); |
|
498 | 141 |
_0: hwFloat = (isNegative: false; QWordValue: 0); |
142 |
_1: hwFloat = (isNegative: false; QWordValue: 4294967296); |
|
513
69e06d710d46
Moving hedgehog could get another hedgehog moving forward
unc0rr
parents:
498
diff
changeset
|
143 |
_1_5: hwFloat = (isNegative: false; QWordValue: 4294967296 * 3 div 2); |
3584 | 144 |
_1_9: hwFloat = (isNegative: false; QWordValue: 8160437862); |
498 | 145 |
_2: hwFloat = (isNegative: false; QWordValue: 4294967296 * 2); |
146 |
_3: hwFloat = (isNegative: false; QWordValue: 4294967296 * 3); |
|
147 |
_4: hwFloat = (isNegative: false; QWordValue: 4294967296 * 4); |
|
148 |
_5: hwFloat = (isNegative: false; QWordValue: 4294967296 * 5); |
|
149 |
_6: hwFloat = (isNegative: false; QWordValue: 4294967296 * 6); |
|
150 |
_10: hwFloat = (isNegative: false; QWordValue: 4294967296 * 10); |
|
3422
41ae3c48faa0
* some changes/cleanups to portal, still much to do :/ * reverted nemo's temporary loop fix * notice: small loops possible again, so take care :P, bigger onces should be interrupted
sheepluva
parents:
3407
diff
changeset
|
151 |
_12: hwFloat = (isNegative: false; QWordValue: 4294967296 * 12); |
498 | 152 |
_16: hwFloat = (isNegative: false; QWordValue: 4294967296 * 16); |
153 |
_19: hwFloat = (isNegative: false; QWordValue: 4294967296 * 19); |
|
154 |
_20: hwFloat = (isNegative: false; QWordValue: 4294967296 * 20); |
|
155 |
_25: hwFloat = (isNegative: false; QWordValue: 4294967296 * 25); |
|
156 |
_30: hwFloat = (isNegative: false; QWordValue: 4294967296 * 30); |
|
2955
fb361d137524
Tweak to joke in french locale (everyone always fixes the spelling) updated explosive frames from Palewolf, increase explosive fall damage from 30 to 40
nemo
parents:
2948
diff
changeset
|
157 |
_40: hwFloat = (isNegative: false; QWordValue: 4294967296 * 40); |
3036
c6ba6531cb4b
Make barrels a little more likely to blow up. 25% more damage in fall
nemo
parents:
2955
diff
changeset
|
158 |
_50: hwFloat = (isNegative: false; QWordValue: 4294967296 * 50); |
2933 | 159 |
_70: hwFloat = (isNegative: false; QWordValue: 4294967296 * 70); |
498 | 160 |
_128: hwFloat = (isNegative: false; QWordValue: 4294967296 * 128); |
1915 | 161 |
_256: hwFloat = (isNegative: false; QWordValue: 4294967296 * 256); |
1124 | 162 |
_300: hwFloat = (isNegative: false; QWordValue: 4294967296 * 300); |
498 | 163 |
_450: hwFloat = (isNegative: false; QWordValue: 4294967296 * 450); |
611 | 164 |
_1024: hwFloat = (isNegative: false; QWordValue: 4294967296 * 1024); |
165 |
_2048: hwFloat = (isNegative: false; QWordValue: 4294967296 * 2048); |
|
1753 | 166 |
_4096: hwFloat = (isNegative: false; QWordValue: 4294967296 * 4096); |
498 | 167 |
_10000: hwFloat = (isNegative: false; QWordValue: 4294967296 * 10000); |
351 | 168 |
|
169 |
cLittle: hwFloat = (isNegative: false; QWordValue: 1); |
|
967 | 170 |
cHHKick: hwFloat = (isNegative: false; QWordValue: 42949673); // _0_01 |
611 | 171 |
{$WARNINGS ON} |
351 | 172 |
{$ENDIF} |
173 |
||
174 |
{$IFNDEF FPC} |
|
175 |
type hwFloat = Extended; |
|
176 |
{$ENDIF} |
|
177 |
||
178 |
implementation |
|
4415 | 179 |
uses uSinTable; |
351 | 180 |
|
3599 | 181 |
|
351 | 182 |
{$IFDEF FPC} |
183 |
||
515 | 184 |
function int2hwFloat (const i: LongInt) : hwFloat; |
351 | 185 |
begin |
498 | 186 |
int2hwFloat.isNegative:= i < 0; |
187 |
int2hwFloat.Round:= abs(i); |
|
188 |
int2hwFloat.Frac:= 0 |
|
351 | 189 |
end; |
190 |
||
515 | 191 |
operator + (const z1, z2: hwFloat) z : hwFloat; |
351 | 192 |
begin |
193 |
if z1.isNegative = z2.isNegative then |
|
194 |
begin |
|
195 |
z.isNegative:= z1.isNegative; |
|
196 |
z.QWordValue:= z1.QWordValue + z2.QWordValue |
|
197 |
end |
|
198 |
else |
|
199 |
if z1.QWordValue > z2.QWordValue then |
|
200 |
begin |
|
201 |
z.isNegative:= z1.isNegative; |
|
202 |
z.QWordValue:= z1.QWordValue - z2.QWordValue |
|
203 |
end else |
|
204 |
begin |
|
205 |
z.isNegative:= z2.isNegative; |
|
206 |
z.QWordValue:= z2.QWordValue - z1.QWordValue |
|
207 |
end |
|
208 |
end; |
|
209 |
||
515 | 210 |
operator - (const z1, z2: hwFloat) z : hwFloat; |
351 | 211 |
begin |
212 |
if z1.isNegative = z2.isNegative then |
|
213 |
if z1.QWordValue > z2.QWordValue then |
|
214 |
begin |
|
215 |
z.isNegative:= z1.isNegative; |
|
216 |
z.QWordValue:= z1.QWordValue - z2.QWordValue |
|
217 |
end else |
|
218 |
begin |
|
219 |
z.isNegative:= not z2.isNegative; |
|
220 |
z.QWordValue:= z2.QWordValue - z1.QWordValue |
|
221 |
end |
|
222 |
else begin |
|
223 |
z.isNegative:= z1.isNegative; |
|
224 |
z.QWordValue:= z1.QWordValue + z2.QWordValue |
|
225 |
end |
|
226 |
end; |
|
227 |
||
515 | 228 |
operator - (const z1: hwFloat) z : hwFloat; |
351 | 229 |
begin |
230 |
z:= z1; |
|
231 |
z.isNegative:= not z.isNegative |
|
232 |
end; |
|
233 |
||
234 |
||
515 | 235 |
operator * (const z1, z2: hwFloat) z : hwFloat; |
351 | 236 |
begin |
237 |
z.isNegative:= z1.isNegative xor z2.isNegative; |
|
238 |
z.QWordValue:= QWord(z1.Round) * z2.Frac + |
|
239 |
QWord(z1.Frac) * z2.Round + |
|
240 |
((QWord(z1.Frac) * z2.Frac) shr 32); |
|
241 |
z.Round:= z.Round + QWord(z1.Round) * z2.Round; |
|
242 |
end; |
|
243 |
||
515 | 244 |
operator * (const z1: hwFloat; const z2: LongInt) z : hwFloat; |
351 | 245 |
begin |
246 |
z.isNegative:= z1.isNegative xor (z2 < 0); |
|
515 | 247 |
z.QWordValue:= z1.QWordValue * abs(z2) |
351 | 248 |
end; |
249 |
||
515 | 250 |
operator / (const z1: hwFloat; z2: hwFloat) z : hwFloat; |
351 | 251 |
var t: hwFloat; |
252 |
begin |
|
253 |
z.isNegative:= z1.isNegative xor z2.isNegative; |
|
254 |
z.Round:= z1.QWordValue div z2.QWordValue; |
|
255 |
t:= z1 - z2 * z.Round; |
|
256 |
if t.QWordValue = 0 then |
|
257 |
z.Frac:= 0 |
|
258 |
else |
|
259 |
begin |
|
260 |
while ((t.QWordValue and $8000000000000000) = 0) and |
|
261 |
((z2.QWordValue and $8000000000000000) = 0) do |
|
262 |
begin |
|
263 |
t.QWordValue:= t.QWordValue shl 1; |
|
264 |
z2.QWordValue:= z2.QWordValue shl 1 |
|
265 |
end; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
538
diff
changeset
|
266 |
if z2.Round > 0 then z.Frac:= (t.QWordValue) div (z2.Round) |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
538
diff
changeset
|
267 |
else z.Frac:= 0 |
351 | 268 |
end |
269 |
end; |
|
270 |
||
515 | 271 |
operator / (const z1: hwFloat; const z2: LongInt) z : hwFloat; |
498 | 272 |
begin |
273 |
z.isNegative:= z1.isNegative xor (z2 < 0); |
|
515 | 274 |
z.QWordValue:= z1.QWordValue div abs(z2) |
498 | 275 |
end; |
276 |
||
515 | 277 |
operator < (const z1, z2: hwFloat) b : boolean; |
351 | 278 |
begin |
916 | 279 |
if z1.isNegative xor z2.isNegative then |
351 | 280 |
b:= z1.isNegative |
281 |
else |
|
282 |
if z1.QWordValue = z2.QWordValue then |
|
283 |
b:= false |
|
284 |
else |
|
285 |
b:= (z1.QWordValue < z2.QWordValue) xor z1.isNegative |
|
286 |
end; |
|
287 |
||
515 | 288 |
operator > (const z1, z2: hwFloat) b : boolean; |
351 | 289 |
begin |
916 | 290 |
if z1.isNegative xor z2.isNegative then |
351 | 291 |
b:= z2.isNegative |
292 |
else |
|
293 |
if z1.QWordValue = z2.QWordValue then |
|
294 |
b:= false |
|
295 |
else |
|
296 |
b:= (z1.QWordValue > z2.QWordValue) xor z2.isNegative |
|
297 |
end; |
|
298 |
||
2905 | 299 |
function cstr(const z: hwFloat): shortstring; |
300 |
var tmpstr: shortstring; |
|
351 | 301 |
begin |
302 |
str(z.Round, cstr); |
|
303 |
if z.Frac <> 0 then |
|
304 |
begin |
|
305 |
str(z.Frac / $100000000:1:15, tmpstr); |
|
306 |
delete(tmpstr, 1, 2); |
|
307 |
cstr:= cstr + '.' + tmpstr |
|
308 |
end; |
|
309 |
if z.isNegative then cstr:= '-' + cstr |
|
310 |
end; |
|
311 |
||
515 | 312 |
function hwRound(const t: hwFloat): LongInt; |
351 | 313 |
begin |
2300 | 314 |
if t.isNegative then hwRound:= -(t.Round and $7FFFFFFF) |
315 |
else hwRound:= t.Round and $7FFFFFFF |
|
351 | 316 |
end; |
317 |
||
515 | 318 |
function hwAbs(const t: hwFloat): hwFloat; |
351 | 319 |
begin |
320 |
hwAbs:= t; |
|
321 |
hwAbs.isNegative:= false |
|
322 |
end; |
|
323 |
||
515 | 324 |
function hwSqr(const t: hwFloat): hwFloat; |
351 | 325 |
begin |
1433 | 326 |
hwSqr.isNegative:= false; |
327 |
hwSqr.QWordValue:= |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2933
diff
changeset
|
328 |
((QWord(t.Round) * t.Round) shl 32) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2933
diff
changeset
|
329 |
+ QWord(t.Round) * t.Frac * 2 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2933
diff
changeset
|
330 |
+ ((QWord(t.Frac) * t.Frac) shr 32); |
351 | 331 |
end; |
332 |
||
515 | 333 |
function hwSqrt(const t: hwFloat): hwFloat; |
738 | 334 |
var l, r: QWord; |
335 |
c: hwFloat; |
|
357 | 336 |
begin |
337 |
hwSqrt.isNegative:= false; |
|
744 | 338 |
|
339 |
if t.Round = 0 then |
|
340 |
begin |
|
341 |
l:= t.QWordValue; |
|
342 |
r:= $100000000 |
|
343 |
end else |
|
344 |
begin |
|
345 |
l:= $100000000; |
|
953
237fc147950c
Fix bug in hwSqrt when calculating square root of number >= 65536
unc0rr
parents:
916
diff
changeset
|
346 |
r:= t.QWordValue div 2 + $80000000; // r:= t / 2 + 0.5 |
237fc147950c
Fix bug in hwSqrt when calculating square root of number >= 65536
unc0rr
parents:
916
diff
changeset
|
347 |
if r > $FFFFFFFFFFFF then r:= $FFFFFFFFFFFF |
744 | 348 |
end; |
349 |
||
738 | 350 |
repeat |
351 |
c.QWordValue:= (l + r) div 2; |
|
352 |
if hwSqr(c).QWordValue > t.QWordValue then r:= c.QWordValue else l:= c.QWordValue |
|
353 |
until r - l <= 1; |
|
744 | 354 |
|
738 | 355 |
hwSqrt.QWordValue:= l |
357 | 356 |
end; |
357 |
||
515 | 358 |
function Distance(const dx, dy: hwFloat): hwFloat; |
351 | 359 |
begin |
738 | 360 |
Distance:= hwSqrt(hwSqr(dx) + hwSqr(dy)) |
351 | 361 |
end; |
362 |
||
515 | 363 |
function DistanceI(const dx, dy: LongInt): hwFloat; |
498 | 364 |
begin |
856 | 365 |
DistanceI:= hwSqrt(int2hwFloat(sqr(dx) + sqr(dy))) |
498 | 366 |
end; |
367 |
||
515 | 368 |
function SignAs(const num, signum: hwFloat): hwFloat; |
498 | 369 |
begin |
856 | 370 |
SignAs.QWordValue:= num.QWordValue; |
498 | 371 |
SignAs.isNegative:= signum.isNegative |
372 |
end; |
|
373 |
||
4374 | 374 |
function hwSign(r: hwFloat): LongInt; |
375 |
begin |
|
376 |
// yes, we have negative zero for a reason |
|
377 |
if r.isNegative then hwSign:= -1 else hwSign:= 1 |
|
378 |
end; |
|
379 |
||
357 | 380 |
|
515 | 381 |
function AngleSin(const Angle: Longword): hwFloat; |
351 | 382 |
begin |
3929
9a4bbc1f67a2
Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents:
3599
diff
changeset
|
383 |
//TryDo((Angle >= 0) and (Angle <= 2048), 'Sin param exceeds limits', true); |
351 | 384 |
AngleSin.isNegative:= false; |
357 | 385 |
if Angle < 1024 then AngleSin.QWordValue:= SinTable[Angle] |
386 |
else AngleSin.QWordValue:= SinTable[2048 - Angle] |
|
351 | 387 |
end; |
388 |
||
515 | 389 |
function AngleCos(const Angle: Longword): hwFloat; |
351 | 390 |
begin |
3929
9a4bbc1f67a2
Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents:
3599
diff
changeset
|
391 |
//TryDo((Angle >= 0) and (Angle <= 2048), 'Cos param exceeds limits', true); |
357 | 392 |
AngleCos.isNegative:= Angle > 1024; |
393 |
if Angle < 1024 then AngleCos.QWordValue:= SinTable[1024 - Angle] |
|
394 |
else AngleCos.QWordValue:= SinTable[Angle - 1024] |
|
351 | 395 |
end; |
396 |
||
397 |
{$ENDIF} |
|
398 |
||
399 |
end. |