author | koda |
Sun, 17 Mar 2013 01:26:40 +0100 | |
changeset 8739 | bbab7e35eaf2 |
parent 7715 | 8b653edac2a2 |
child 8026 | 4a4f21070479 |
child 8838 | aa2ffd427f6a |
permissions | -rw-r--r-- |
351 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
6700 | 3 |
* Copyright (c) 2004-2012 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 |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
45 |
isNegative: boolean; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
46 |
case byte of |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
47 |
0: (Frac, Round: Longword); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
48 |
1: (QWordValue : QWord); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
49 |
end; |
2599 | 50 |
{$ELSE} |
351 | 51 |
type hwFloat = record |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
52 |
isNegative: boolean; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
53 |
case byte of |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
54 |
0: (Round, Frac: Longword); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
55 |
1: (QWordValue : QWord); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
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; |
5151
cbadb9fa52fc
An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents:
5124
diff
changeset
|
61 |
function hwFloat2Float (const i: hwFloat) : extended; inline; |
351 | 62 |
|
5122 | 63 |
// The implemented operators |
64 |
||
6415 | 65 |
operator = (const z1, z2: hwFloat) z : boolean; inline; |
7043
7c080e5ac8d0
Some work to make more units compile after conversion to c
unc0rr
parents:
7042
diff
changeset
|
66 |
{$IFDEF PAS2C} |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
6879
diff
changeset
|
67 |
operator <> (const z1, z2: hwFloat) z : boolean; inline; |
7043
7c080e5ac8d0
Some work to make more units compile after conversion to c
unc0rr
parents:
7042
diff
changeset
|
68 |
{$ENDIF} |
3599 | 69 |
operator + (const z1, z2: hwFloat) z : hwFloat; inline; |
70 |
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
|
71 |
operator - (const z1: hwFloat) 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) z : hwFloat; inline; |
3599 | 74 |
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
|
75 |
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
|
76 |
operator / (const z1: hwFloat; const z2: LongInt) z : hwFloat; inline; |
351 | 77 |
|
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
|
78 |
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
|
79 |
operator > (const z1, z2: hwFloat) b : boolean; inline; |
351 | 80 |
|
5122 | 81 |
|
82 |
// Various functions for hwFloat (some are inlined in the resulting code for better performance) |
|
83 |
||
84 |
function cstr(const z: hwFloat): shortstring; // Returns a shortstring representations of the hwFloat. |
|
85 |
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) |
|
86 |
function hwAbs(const t: hwFloat): hwFloat; inline; // Returns the value of t with positive sign. |
|
87 |
function hwSqr(const t: hwFloat): hwFloat; inline; // Returns the square value of parameter t. |
|
6785 | 88 |
function hwPow(const t: hwFloat; p: LongWord): hwFloat; inline; // Returns the power of the value |
5122 | 89 |
function hwSqrt(const t: hwFloat): hwFloat; inline; // Returns the the positive square root of parameter t. |
90 |
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. |
|
91 |
function DistanceI(const dx, dy: LongInt): hwFloat; // Same as above for integer parameters. |
|
515 | 92 |
function AngleSin(const Angle: Longword): hwFloat; |
93 |
function AngleCos(const Angle: Longword): hwFloat; |
|
7714
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
94 |
function vector2Angle(const x, y: hwFloat): LongInt; |
5122 | 95 |
function SignAs(const num, signum: hwFloat): hwFloat; inline; // Returns an hwFloat with the value of parameter num and the sign of signum. |
96 |
function hwSign(r: hwFloat): LongInt; inline; // Returns an integer with value 1 and sign of parameter r. |
|
6879 | 97 |
function hwSignf(r: real): LongInt; inline; // Returns an integer with value 1 and sign of parameter r. |
5599
2e4b90f33a83
aiming fixed, inverted cursor on ammo menu, added equal and isZero function to uFloat, changed the way ammo menu opens, you must now click on the hog rather than anywhere on the screen
Xeli
parents:
5319
diff
changeset
|
98 |
function isZero(const z: hwFloat): boolean; inline; |
2599 | 99 |
{$IFDEF FPC} |
538 | 100 |
{$J-} |
2599 | 101 |
{$ENDIF} |
611 | 102 |
{$WARNINGS OFF} |
5122 | 103 |
|
104 |
||
105 |
// some hwFloat constants |
|
106 |
||
351 | 107 |
const _1div1024: hwFloat = (isNegative: false; QWordValue: 4194304); |
108 |
_1div10000: hwFloat = (isNegative: false; QWordValue: 429496); |
|
109 |
_1div50000: hwFloat = (isNegative: false; QWordValue: 85899); |
|
110 |
_1div100000: hwFloat = (isNegative: false; QWordValue: 42950); |
|
111 |
_1div3: hwFloat = (isNegative: false; QWordValue: 1431655766); |
|
112 |
hwPi: hwFloat = (isNegative: false; QWordValue: 13493037704); |
|
113 |
_0_000004: hwFloat = (isNegative: false; QWordValue: 17179); |
|
3591 | 114 |
_0_000064: hwFloat = (isNegative: false; QWordValue: 274878); |
351 | 115 |
_0_0002: hwFloat = (isNegative: false; QWordValue: 858993); |
1586 | 116 |
_0_0005: hwFloat = (isNegative: false; QWordValue: 2147484); |
351 | 117 |
_0_001: hwFloat = (isNegative: false; QWordValue: 4294967); |
118 |
_0_003: hwFloat = (isNegative: false; QWordValue: 12884902); |
|
7663 | 119 |
_0_0032: hwFloat = (isNegative: false; QWordValue: 13743895); |
351 | 120 |
_0_004: hwFloat = (isNegative: false; QWordValue: 17179869); |
121 |
_0_005: hwFloat = (isNegative: false; QWordValue: 21474836); |
|
3428 | 122 |
_0_008: hwFloat = (isNegative: false; QWordValue: 34359738); |
351 | 123 |
_0_01: hwFloat = (isNegative: false; QWordValue: 42949673); |
7593
b966e2d833f2
An attempt to run main rope code only every 8th tick:
unc0rr
parents:
7515
diff
changeset
|
124 |
_0_0128: hwFloat = (isNegative: false; QWordValue: 54975581); |
351 | 125 |
_0_02: hwFloat = (isNegative: false; QWordValue: 85899345); |
126 |
_0_03: hwFloat = (isNegative: false; QWordValue: 128849018); |
|
6295
5b2b304a91ec
Due to the small values and friction, halve the step in low gravity, instead of the value
nemo
parents:
5843
diff
changeset
|
127 |
_0_07: hwFloat = (isNegative: false; QWordValue: 300647710); |
351 | 128 |
_0_08: hwFloat = (isNegative: false; QWordValue: 343597383); |
365 | 129 |
_0_1: hwFloat = (isNegative: false; QWordValue: 429496730); |
351 | 130 |
_0_15: hwFloat = (isNegative: false; QWordValue: 644245094); |
131 |
_0_2: hwFloat = (isNegative: false; QWordValue: 858993459); |
|
132 |
_0_25: hwFloat = (isNegative: false; QWordValue: 1073741824); |
|
133 |
_0_3: hwFloat = (isNegative: false; QWordValue: 1288490189); |
|
134 |
_0_35: hwFloat = (isNegative: false; QWordValue: 1503238553); |
|
2784 | 135 |
_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
|
136 |
_0_39: hwFloat = (isNegative: false; QWordValue: 1675037245); |
351 | 137 |
_0_4: hwFloat = (isNegative: false; QWordValue: 1717986918); |
138 |
_0_45: hwFloat = (isNegative: false; QWordValue: 1932735283); |
|
139 |
_0_5: hwFloat = (isNegative: false; QWordValue: 2147483648); |
|
140 |
_0_55: hwFloat = (isNegative: false; QWordValue: 2362232012); |
|
141 |
_0_6: hwFloat = (isNegative: false; QWordValue: 2576980377); |
|
3583 | 142 |
_0_64: hwFloat = (isNegative: false; QWordValue: 2748779064); |
358 | 143 |
_0_7: hwFloat = (isNegative: false; QWordValue: 3006477107); |
351 | 144 |
_0_8: hwFloat = (isNegative: false; QWordValue: 3435973837); |
145 |
_0_84: hwFloat = (isNegative: false; QWordValue: 3607772528); |
|
146 |
_0_87: hwFloat = (isNegative: false; QWordValue: 3736621547); |
|
147 |
_0_9: hwFloat = (isNegative: false; QWordValue: 3865470566); |
|
148 |
_0_93: hwFloat = (isNegative: false; QWordValue: 3994319585); |
|
149 |
_0_96: hwFloat = (isNegative: false; QWordValue: 4123168604); |
|
150 |
_0_995: hwFloat = (isNegative: false; QWordValue: 4273492459); |
|
151 |
_0_999: hwFloat = (isNegative: false; QWordValue: 4290672328); |
|
498 | 152 |
_0: hwFloat = (isNegative: false; QWordValue: 0); |
153 |
_1: hwFloat = (isNegative: false; QWordValue: 4294967296); |
|
7657
347e18494fb9
Let's try *4 instead. Not nearly as much of a win, but might be usable.
nemo
parents:
7638
diff
changeset
|
154 |
_1_2: hwFloat = (isNegative: false; QWordValue: 1288490189*4); |
513
69e06d710d46
Moving hedgehog could get another hedgehog moving forward
unc0rr
parents:
498
diff
changeset
|
155 |
_1_5: hwFloat = (isNegative: false; QWordValue: 4294967296 * 3 div 2); |
7593
b966e2d833f2
An attempt to run main rope code only every 8th tick:
unc0rr
parents:
7515
diff
changeset
|
156 |
_1_6: hwFloat = (isNegative: false; QWordValue: 4294967296 * 8 div 5); |
3584 | 157 |
_1_9: hwFloat = (isNegative: false; QWordValue: 8160437862); |
498 | 158 |
_2: hwFloat = (isNegative: false; QWordValue: 4294967296 * 2); |
7593
b966e2d833f2
An attempt to run main rope code only every 8th tick:
unc0rr
parents:
7515
diff
changeset
|
159 |
_2_4: hwFloat = (isNegative: false; QWordValue: 4294967296 * 12 div 5); |
498 | 160 |
_3: hwFloat = (isNegative: false; QWordValue: 4294967296 * 3); |
7657
347e18494fb9
Let's try *4 instead. Not nearly as much of a win, but might be usable.
nemo
parents:
7638
diff
changeset
|
161 |
_3_2: hwFloat = (isNegative: false; QWordValue: 3435973837*4); |
6785 | 162 |
_PI: hwFloat = (isNegative: false; QWordValue: 13493037704); |
498 | 163 |
_4: hwFloat = (isNegative: false; QWordValue: 4294967296 * 4); |
6498 | 164 |
_4_5: hwFloat = (isNegative: false; QWordValue: 4294967296 * 9 div 2); |
498 | 165 |
_5: hwFloat = (isNegative: false; QWordValue: 4294967296 * 5); |
166 |
_6: hwFloat = (isNegative: false; QWordValue: 4294967296 * 6); |
|
7594 | 167 |
_6_4: hwFloat = (isNegative: false; QWordValue: 3435973837 * 8); |
7593
b966e2d833f2
An attempt to run main rope code only every 8th tick:
unc0rr
parents:
7515
diff
changeset
|
168 |
_7: hwFloat = (isNegative: false; QWordValue: 4294967296 * 7); |
498 | 169 |
_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
|
170 |
_12: hwFloat = (isNegative: false; QWordValue: 4294967296 * 12); |
498 | 171 |
_16: hwFloat = (isNegative: false; QWordValue: 4294967296 * 16); |
172 |
_19: hwFloat = (isNegative: false; QWordValue: 4294967296 * 19); |
|
173 |
_20: hwFloat = (isNegative: false; QWordValue: 4294967296 * 20); |
|
174 |
_25: hwFloat = (isNegative: false; QWordValue: 4294967296 * 25); |
|
175 |
_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
|
176 |
_40: hwFloat = (isNegative: false; QWordValue: 4294967296 * 40); |
7594 | 177 |
_41: hwFloat = (isNegative: false; QWordValue: 4294967296 * 41); |
7593
b966e2d833f2
An attempt to run main rope code only every 8th tick:
unc0rr
parents:
7515
diff
changeset
|
178 |
_49: hwFloat = (isNegative: false; QWordValue: 4294967296 * 49); |
3036
c6ba6531cb4b
Make barrels a little more likely to blow up. 25% more damage in fall
nemo
parents:
2955
diff
changeset
|
179 |
_50: hwFloat = (isNegative: false; QWordValue: 4294967296 * 50); |
2933 | 180 |
_70: hwFloat = (isNegative: false; QWordValue: 4294967296 * 70); |
5599
2e4b90f33a83
aiming fixed, inverted cursor on ammo menu, added equal and isZero function to uFloat, changed the way ammo menu opens, you must now click on the hog rather than anywhere on the screen
Xeli
parents:
5319
diff
changeset
|
181 |
_90: hwFloat = (isNegative: false; QWordValue: 4294967296 * 90); |
498 | 182 |
_128: hwFloat = (isNegative: false; QWordValue: 4294967296 * 128); |
5599
2e4b90f33a83
aiming fixed, inverted cursor on ammo menu, added equal and isZero function to uFloat, changed the way ammo menu opens, you must now click on the hog rather than anywhere on the screen
Xeli
parents:
5319
diff
changeset
|
183 |
_180: hwFloat = (isNegative: false; QWordValue: 4294967296 * 180); |
5319
51d8e4747876
bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents:
5192
diff
changeset
|
184 |
_250: hwFloat = (isNegative: false; QWordValue: 4294967296 * 250); |
1915 | 185 |
_256: hwFloat = (isNegative: false; QWordValue: 4294967296 * 256); |
1124 | 186 |
_300: hwFloat = (isNegative: false; QWordValue: 4294967296 * 300); |
5599
2e4b90f33a83
aiming fixed, inverted cursor on ammo menu, added equal and isZero function to uFloat, changed the way ammo menu opens, you must now click on the hog rather than anywhere on the screen
Xeli
parents:
5319
diff
changeset
|
187 |
_360: hwFloat = (isNegative: false; QWordValue: 4294967296 * 360); |
498 | 188 |
_450: hwFloat = (isNegative: false; QWordValue: 4294967296 * 450); |
5319
51d8e4747876
bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents:
5192
diff
changeset
|
189 |
_1000: hwFloat = (isNegative: false; QWordValue: 4294967296 * 1000); |
611 | 190 |
_1024: hwFloat = (isNegative: false; QWordValue: 4294967296 * 1024); |
191 |
_2048: hwFloat = (isNegative: false; QWordValue: 4294967296 * 2048); |
|
1753 | 192 |
_4096: hwFloat = (isNegative: false; QWordValue: 4294967296 * 4096); |
498 | 193 |
_10000: hwFloat = (isNegative: false; QWordValue: 4294967296 * 10000); |
351 | 194 |
|
195 |
cLittle: hwFloat = (isNegative: false; QWordValue: 1); |
|
967 | 196 |
cHHKick: hwFloat = (isNegative: false; QWordValue: 42949673); // _0_01 |
611 | 197 |
{$WARNINGS ON} |
351 | 198 |
{$ENDIF} |
199 |
||
200 |
{$IFNDEF FPC} |
|
201 |
type hwFloat = Extended; |
|
202 |
{$ENDIF} |
|
203 |
||
204 |
implementation |
|
4415 | 205 |
uses uSinTable; |
351 | 206 |
|
3599 | 207 |
|
351 | 208 |
{$IFDEF FPC} |
209 |
||
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
210 |
function int2hwFloat (const i: LongInt) : hwFloat; inline; |
351 | 211 |
begin |
498 | 212 |
int2hwFloat.isNegative:= i < 0; |
213 |
int2hwFloat.Round:= abs(i); |
|
214 |
int2hwFloat.Frac:= 0 |
|
351 | 215 |
end; |
216 |
||
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
217 |
function hwFloat2Float (const i: hwFloat) : extended; inline; |
5151
cbadb9fa52fc
An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents:
5124
diff
changeset
|
218 |
begin |
7614
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
219 |
hwFloat2Float:= i.Frac / $100000000 + i.Round; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
220 |
if i.isNegative then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
221 |
hwFloat2Float:= -hwFloat2Float; |
5151
cbadb9fa52fc
An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents:
5124
diff
changeset
|
222 |
end; |
cbadb9fa52fc
An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents:
5124
diff
changeset
|
223 |
|
7614
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
224 |
{$IFNDEF WEB} |
6415 | 225 |
operator = (const z1, z2: hwFloat) z : boolean; inline; |
5599
2e4b90f33a83
aiming fixed, inverted cursor on ammo menu, added equal and isZero function to uFloat, changed the way ammo menu opens, you must now click on the hog rather than anywhere on the screen
Xeli
parents:
5319
diff
changeset
|
226 |
begin |
5665 | 227 |
z:= (z1.isNegative = z2.isNegative) and (z1.QWordValue = z2.QWordValue); |
5599
2e4b90f33a83
aiming fixed, inverted cursor on ammo menu, added equal and isZero function to uFloat, changed the way ammo menu opens, you must now click on the hog rather than anywhere on the screen
Xeli
parents:
5319
diff
changeset
|
228 |
end; |
2e4b90f33a83
aiming fixed, inverted cursor on ammo menu, added equal and isZero function to uFloat, changed the way ammo menu opens, you must now click on the hog rather than anywhere on the screen
Xeli
parents:
5319
diff
changeset
|
229 |
|
7043
7c080e5ac8d0
Some work to make more units compile after conversion to c
unc0rr
parents:
7042
diff
changeset
|
230 |
{$IFDEF PAS2C} |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
6879
diff
changeset
|
231 |
operator <> (const z1, z2: hwFloat) z : boolean; inline; |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
6879
diff
changeset
|
232 |
begin |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
6879
diff
changeset
|
233 |
z:= (z1.isNegative <> z2.isNegative) or (z1.QWordValue <> z2.QWordValue); |
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
6879
diff
changeset
|
234 |
end; |
7043
7c080e5ac8d0
Some work to make more units compile after conversion to c
unc0rr
parents:
7042
diff
changeset
|
235 |
{$ENDIF} |
7042
de20086a6bcc
Support overloaded operators on (hwFloat op hwFloat) calls
unc0rr
parents:
6879
diff
changeset
|
236 |
|
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
237 |
operator + (const z1, z2: hwFloat) z : hwFloat; inline; |
351 | 238 |
begin |
239 |
if z1.isNegative = z2.isNegative then |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
240 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
241 |
z.isNegative:= z1.isNegative; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
242 |
z.QWordValue:= z1.QWordValue + z2.QWordValue |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
243 |
end |
351 | 244 |
else |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
245 |
if z1.QWordValue > z2.QWordValue then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
246 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
247 |
z.isNegative:= z1.isNegative; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
248 |
z.QWordValue:= z1.QWordValue - z2.QWordValue |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
249 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
250 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
251 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
252 |
z.isNegative:= z2.isNegative; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
253 |
z.QWordValue:= z2.QWordValue - z1.QWordValue |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
254 |
end |
351 | 255 |
end; |
256 |
||
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
257 |
operator - (const z1, z2: hwFloat) z : hwFloat; inline; |
351 | 258 |
begin |
259 |
if z1.isNegative = z2.isNegative then |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
260 |
if z1.QWordValue > z2.QWordValue then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
261 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
262 |
z.isNegative:= z1.isNegative; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
263 |
z.QWordValue:= z1.QWordValue - z2.QWordValue |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
264 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
265 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
266 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
267 |
z.isNegative:= not z2.isNegative; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
268 |
z.QWordValue:= z2.QWordValue - z1.QWordValue |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
269 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
270 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
271 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
272 |
z.isNegative:= z1.isNegative; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
273 |
z.QWordValue:= z1.QWordValue + z2.QWordValue |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
274 |
end |
351 | 275 |
end; |
7623
addc5b262617
isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents:
7614
diff
changeset
|
276 |
|
addc5b262617
isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents:
7614
diff
changeset
|
277 |
function isZero(const z: hwFloat): boolean; inline; |
addc5b262617
isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents:
7614
diff
changeset
|
278 |
begin |
addc5b262617
isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents:
7614
diff
changeset
|
279 |
isZero := z.QWordValue = 0; |
addc5b262617
isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents:
7614
diff
changeset
|
280 |
end; |
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
281 |
|
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
282 |
operator < (const z1, z2: hwFloat) b : boolean; inline; |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
283 |
begin |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
284 |
if z1.isNegative xor z2.isNegative then |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
285 |
b:= z1.isNegative |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
286 |
else |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
287 |
if z1.QWordValue = z2.QWordValue then |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
288 |
b:= false |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
289 |
else |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
290 |
b:= not((z1.QWordValue = z2.QWordValue) or ((z2.QWordValue < z1.QWordValue) <> z1.isNegative)) |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
291 |
end; |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
292 |
|
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
293 |
operator > (const z1, z2: hwFloat) b : boolean; inline; |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
294 |
begin |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
295 |
if z1.isNegative xor z2.isNegative then |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
296 |
b:= z2.isNegative |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
297 |
else |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
298 |
if z1.QWordValue = z2.QWordValue then |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
299 |
b:= false |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
300 |
else |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
301 |
b:= (z1.QWordValue > z2.QWordValue) <> z2.isNegative |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
302 |
end; |
7614
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
303 |
{$ENDIF} |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
304 |
{$IFDEF WEB} |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
305 |
(* |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
306 |
Mostly to be kind to JS as of 2012-08-27 where there is no int64/uint64. This may change though. |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
307 |
*) |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
308 |
operator = (const z1, z2: hwFloat) z : boolean; inline; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
309 |
begin |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
310 |
z:= (z1.isNegative = z2.isNegative) and (z1.Frac = z2.Frac) and (z1.Round = z2.Round); |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
311 |
end; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
312 |
|
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
313 |
operator <> (const z1, z2: hwFloat) z : boolean; inline; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
314 |
begin |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
315 |
z:= (z1.isNegative <> z2.isNegative) or (z1.Frac <> z2.Frac) or (z1.Round <> z2.Round); |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
316 |
end; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
317 |
|
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
318 |
operator + (const z1, z2: hwFloat) z : hwFloat; inline; |
7614
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
319 |
begin |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
320 |
if z1.isNegative = z2.isNegative then |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
321 |
begin |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
322 |
z:= z1; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
323 |
z.Frac:= z.Frac + z2.Frac; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
324 |
z.Round:= z.Round + z2.Round; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
325 |
if z.Frac<z1.Frac then inc(z.Round) |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
326 |
end |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
327 |
else |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
328 |
if (z1.Round > z2.Round) or ((z1.Round = z2.Round) and (z1.Frac > z2.Frac)) then |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
329 |
begin |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
330 |
z.isNegative:= z1.isNegative; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
331 |
z.Round:= z1.Round - z2.Round; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
332 |
z.Frac:= z1.Frac - z2.Frac; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
333 |
if z2.Frac > z1.Frac then dec(z.Round) |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
334 |
end |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
335 |
else |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
336 |
begin |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
337 |
z.isNegative:= z2.isNegative; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
338 |
z.Round:= z2.Round - z1.Round; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
339 |
z.Frac:= z2.Frac-z1.Frac; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
340 |
if z2.Frac < z1.Frac then dec(z.Round) |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
341 |
end |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
342 |
end; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
343 |
|
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
344 |
operator - (const z1, z2: hwFloat) z : hwFloat; inline; |
7614
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
345 |
begin |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
346 |
if z1.isNegative = z2.isNegative then |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
347 |
if (z1.Round > z2.Round) or ((z1.Round = z2.Round) and (z1.Frac > z2.Frac)) then |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
348 |
begin |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
349 |
z.isNegative:= z1.isNegative; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
350 |
z.Round:= z1.Round - z2.Round; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
351 |
z.Frac:= z1.Frac-z2.Frac; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
352 |
if z2.Frac > z1.Frac then dec(z.Round) |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
353 |
end |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
354 |
else |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
355 |
begin |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
356 |
z.isNegative:= not z2.isNegative; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
357 |
z.Round:= z2.Round - z1.Round; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
358 |
z.Frac:= z2.Frac-z1.Frac; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
359 |
if z2.Frac < z1.Frac then dec(z.Round) |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
360 |
end |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
361 |
else |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
362 |
begin |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
363 |
z:= z1; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
364 |
z.Frac:= z.Frac + z2.Frac; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
365 |
z.Round:= z.Round + z2.Round; |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
366 |
if z.Frac<z1.Frac then inc(z.Round) |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
367 |
end |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
368 |
end; |
7623
addc5b262617
isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents:
7614
diff
changeset
|
369 |
|
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
370 |
operator < (const z1, z2: hwFloat) b : boolean; inline; |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
371 |
begin |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
372 |
if z1.isNegative xor z2.isNegative then |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
373 |
b:= z1.isNegative |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
374 |
else |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
375 |
(* Not so sure this specialcase is a win w/ Round/Frac. have to do more tests anyway. |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
376 |
if (z1.Round = z2.Round and (z1.Frac = z2.Frac)) then |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
377 |
b:= false |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
378 |
else *) |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
379 |
b:= ((z1.Round < z2.Round) or ((z1.Round = z2.Round) and (z1.Frac < z2.Frac))) <> z1.isNegative |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
380 |
end; |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
381 |
|
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
382 |
operator > (const z1, z2: hwFloat) b : boolean; inline; |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
383 |
begin |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
384 |
if z1.isNegative xor z2.isNegative then |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
385 |
b:= z2.isNegative |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
386 |
else |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
387 |
(* |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
388 |
if z1.QWordValue = z2.QWordValue then |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
389 |
b:= false |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
390 |
else*) |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
391 |
b:= ((z1.Round > z2.Round) or ((z1.Round = z2.Round) and (z1.Frac > z2.Frac))) <> z1.isNegative |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
392 |
end; |
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
393 |
|
7623
addc5b262617
isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents:
7614
diff
changeset
|
394 |
function isZero(const z: hwFloat): boolean; inline; |
addc5b262617
isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents:
7614
diff
changeset
|
395 |
begin |
7638 | 396 |
isZero := (z.Round = 0) and (z.Frac = 0); |
7623
addc5b262617
isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents:
7614
diff
changeset
|
397 |
end; |
7614
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7594
diff
changeset
|
398 |
{$ENDIF} |
351 | 399 |
|
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
400 |
operator - (const z1: hwFloat) z : hwFloat; inline; |
351 | 401 |
begin |
402 |
z:= z1; |
|
403 |
z.isNegative:= not z.isNegative |
|
404 |
end; |
|
405 |
||
406 |
||
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
407 |
operator * (const z1, z2: hwFloat) z : hwFloat; inline; |
351 | 408 |
begin |
409 |
z.isNegative:= z1.isNegative xor z2.isNegative; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
410 |
z.QWordValue:= QWord(z1.Round) * z2.Frac + QWord(z1.Frac) * z2.Round + ((QWord(z1.Frac) * z2.Frac) shr 32); |
351 | 411 |
z.Round:= z.Round + QWord(z1.Round) * z2.Round; |
412 |
end; |
|
413 |
||
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
414 |
operator * (const z1: hwFloat; const z2: LongInt) z : hwFloat; inline; |
351 | 415 |
begin |
416 |
z.isNegative:= z1.isNegative xor (z2 < 0); |
|
515 | 417 |
z.QWordValue:= z1.QWordValue * abs(z2) |
351 | 418 |
end; |
419 |
||
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
420 |
operator / (const z1: hwFloat; z2: hwFloat) z : hwFloat; inline; |
351 | 421 |
var t: hwFloat; |
422 |
begin |
|
423 |
z.isNegative:= z1.isNegative xor z2.isNegative; |
|
424 |
z.Round:= z1.QWordValue div z2.QWordValue; |
|
425 |
t:= z1 - z2 * z.Round; |
|
426 |
if t.QWordValue = 0 then |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
427 |
z.Frac:= 0 |
351 | 428 |
else |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
429 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
430 |
while ((t.QWordValue and $8000000000000000) = 0) and ((z2.QWordValue and $8000000000000000) = 0) do |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
431 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
432 |
t.QWordValue:= t.QWordValue shl 1; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
433 |
z2.QWordValue:= z2.QWordValue shl 1 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
434 |
end; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
435 |
if z2.Round > 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
436 |
z.Frac:= (t.QWordValue) div (z2.Round) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
437 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
438 |
z.Frac:= 0 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
439 |
end |
351 | 440 |
end; |
441 |
||
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
442 |
operator / (const z1: hwFloat; const z2: LongInt) z : hwFloat; inline; |
498 | 443 |
begin |
444 |
z.isNegative:= z1.isNegative xor (z2 < 0); |
|
515 | 445 |
z.QWordValue:= z1.QWordValue div abs(z2) |
498 | 446 |
end; |
447 |
||
2905 | 448 |
function cstr(const z: hwFloat): shortstring; |
449 |
var tmpstr: shortstring; |
|
351 | 450 |
begin |
451 |
str(z.Round, cstr); |
|
452 |
if z.Frac <> 0 then |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
453 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
454 |
str(z.Frac / $100000000, tmpstr); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
455 |
delete(tmpstr, 1, 2); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
456 |
cstr:= cstr + '.' + copy(tmpstr, 1, 10) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
457 |
end; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
458 |
if z.isNegative then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
459 |
cstr:= '-' + cstr |
351 | 460 |
end; |
461 |
||
515 | 462 |
function hwRound(const t: hwFloat): LongInt; |
351 | 463 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
464 |
if t.isNegative then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
465 |
hwRound:= -(t.Round and $7FFFFFFF) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
466 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
467 |
hwRound:= t.Round and $7FFFFFFF |
351 | 468 |
end; |
469 |
||
515 | 470 |
function hwAbs(const t: hwFloat): hwFloat; |
351 | 471 |
begin |
472 |
hwAbs:= t; |
|
473 |
hwAbs.isNegative:= false |
|
474 |
end; |
|
475 |
||
7624
03d662ff9c41
A few more operators. Committing in case unc0rr wants to fiddle.
nemo
parents:
7623
diff
changeset
|
476 |
function hwSqr(const t: hwFloat): hwFloat; inline; |
351 | 477 |
begin |
1433 | 478 |
hwSqr.isNegative:= false; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
479 |
hwSqr.QWordValue:= ((QWord(t.Round) * t.Round) shl 32) + QWord(t.Round) * t.Frac * 2 + ((QWord(t.Frac) * t.Frac) shr 32); |
351 | 480 |
end; |
481 |
||
6785 | 482 |
function hwPow(const t: hwFloat;p: LongWord): hwFloat; |
483 |
begin |
|
484 |
hwPow:= t; |
|
7515 | 485 |
if p mod 2 = 0 then hwPow.isNegative:= false; |
6785 | 486 |
|
487 |
while p > 0 do |
|
488 |
begin |
|
489 |
hwPow.QWordValue:= QWord(hwPow.Round) * t.Frac + QWord(hwPow.Frac) * t.Round + ((QWord(hwPow.Frac) * t.Frac) shr 32); |
|
490 |
dec(p) |
|
491 |
end |
|
492 |
end; |
|
493 |
||
515 | 494 |
function hwSqrt(const t: hwFloat): hwFloat; |
7688
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
495 |
const pwr = 8; // even value, feel free to adjust |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
496 |
rThreshold = 1 shl (pwr + 32); |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
497 |
lThreshold = 1 shl (pwr div 2 + 32); |
738 | 498 |
var l, r: QWord; |
499 |
c: hwFloat; |
|
357 | 500 |
begin |
501 |
hwSqrt.isNegative:= false; |
|
744 | 502 |
|
503 |
if t.Round = 0 then |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
504 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
505 |
l:= t.QWordValue; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
506 |
r:= $100000000 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
507 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
508 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
509 |
begin |
7688
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
510 |
if t.QWordValue > $FFFFFFFFFFFF then // t.Round > 65535.9999 |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
511 |
begin |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
512 |
l:= $10000000000; // 256 |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
513 |
r:= $FFFFFFFFFFFF; // 65535.9999 |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
514 |
end else |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
515 |
if t.QWordValue >= rThreshold then |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
516 |
begin |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
517 |
l:= lThreshold; |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
518 |
r:= $10000000000; // 256 |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
519 |
end else |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
520 |
begin |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
521 |
l:= $100000000; |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
522 |
r:= lThreshold; |
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
523 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
524 |
end; |
744 | 525 |
|
738 | 526 |
repeat |
7688
9daa06188551
New hwSqrt which is up to 8.7% more efficient than old one on synthetic tests
unc0rr
parents:
7663
diff
changeset
|
527 |
c.QWordValue:= (l + r) shr 1; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
528 |
if hwSqr(c).QWordValue > t.QWordValue then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
529 |
r:= c.QWordValue |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
530 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
531 |
l:= c.QWordValue |
738 | 532 |
until r - l <= 1; |
744 | 533 |
|
738 | 534 |
hwSqrt.QWordValue:= l |
357 | 535 |
end; |
536 |
||
515 | 537 |
function Distance(const dx, dy: hwFloat): hwFloat; |
351 | 538 |
begin |
738 | 539 |
Distance:= hwSqrt(hwSqr(dx) + hwSqr(dy)) |
351 | 540 |
end; |
541 |
||
515 | 542 |
function DistanceI(const dx, dy: LongInt): hwFloat; |
498 | 543 |
begin |
856 | 544 |
DistanceI:= hwSqrt(int2hwFloat(sqr(dx) + sqr(dy))) |
498 | 545 |
end; |
546 |
||
515 | 547 |
function SignAs(const num, signum: hwFloat): hwFloat; |
498 | 548 |
begin |
856 | 549 |
SignAs.QWordValue:= num.QWordValue; |
498 | 550 |
SignAs.isNegative:= signum.isNegative |
551 |
end; |
|
552 |
||
4374 | 553 |
function hwSign(r: hwFloat): LongInt; |
554 |
begin |
|
555 |
// yes, we have negative zero for a reason |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
556 |
if r.isNegative then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
557 |
hwSign:= -1 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
558 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
559 |
hwSign:= 1 |
4374 | 560 |
end; |
561 |
||
6879 | 562 |
function hwSignf(r: real): LongInt; |
6775 | 563 |
begin |
564 |
if r < 0 then |
|
6879 | 565 |
hwSignf:= -1 |
6775 | 566 |
else |
6879 | 567 |
hwSignf:= 1 |
6775 | 568 |
end; |
569 |
||
357 | 570 |
|
515 | 571 |
function AngleSin(const Angle: Longword): hwFloat; |
351 | 572 |
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
|
573 |
//TryDo((Angle >= 0) and (Angle <= 2048), 'Sin param exceeds limits', true); |
351 | 574 |
AngleSin.isNegative:= false; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
575 |
if Angle < 1024 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
576 |
AngleSin.QWordValue:= SinTable[Angle] |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
577 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
578 |
AngleSin.QWordValue:= SinTable[2048 - Angle] |
351 | 579 |
end; |
580 |
||
515 | 581 |
function AngleCos(const Angle: Longword): hwFloat; |
351 | 582 |
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
|
583 |
//TryDo((Angle >= 0) and (Angle <= 2048), 'Cos param exceeds limits', true); |
357 | 584 |
AngleCos.isNegative:= Angle > 1024; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
585 |
if Angle < 1024 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
586 |
AngleCos.QWordValue:= SinTable[1024 - Angle] |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
587 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6498
diff
changeset
|
588 |
AngleCos.QWordValue:= SinTable[Angle - 1024] |
351 | 589 |
end; |
7714
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
590 |
|
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
591 |
function vector2Angle(const x, y: hwFloat): LongInt; |
7715 | 592 |
var d, nf: hwFloat; |
7714
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
593 |
l, r, c, oc: Longword; |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
594 |
n: QWord; |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
595 |
begin |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
596 |
d:= _1 / Distance(x, y); |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
597 |
|
7715 | 598 |
nf:= y * d; |
599 |
n:= nf.QWordValue; |
|
7714
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
600 |
|
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
601 |
l:= 0; |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
602 |
r:= 1024; |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
603 |
c:= 0; |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
604 |
|
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
605 |
repeat |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
606 |
oc:= c; |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
607 |
|
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
608 |
c:= (l + r) shr 1; |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
609 |
|
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
610 |
if n >= SinTable[c] then |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
611 |
l:= c |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
612 |
else |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
613 |
r:= c; |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
614 |
|
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
615 |
until (oc = c); |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
616 |
|
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
617 |
if x.isNegative then c:= 2048 - c; |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
618 |
if y.isNegative then c:= - c; |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
619 |
|
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
620 |
vector2Angle:= c |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
621 |
end; |
981001b84f0b
vector2Angle function which converts vector to angle from -2048 to 2048
unc0rr
parents:
7688
diff
changeset
|
622 |
|
351 | 623 |
{$ENDIF} |
624 |
||
625 |
end. |