author | unc0rr |
Fri, 22 Aug 2014 00:37:26 +0400 | |
changeset 10391 | ce3ccc45d790 |
parent 10390 | 13bfbade06a5 |
child 10441 | d2f599997b54 |
permissions | -rw-r--r-- |
4976 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
9998 | 3 |
* Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com> |
4976 | 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10082
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
4976 | 17 |
*) |
18 |
||
4388 | 19 |
{$INCLUDE "options.inc"} |
4976 | 20 |
|
4388 | 21 |
unit uGearsRender; |
22 |
||
23 |
interface |
|
7671 | 24 |
uses uTypes, uConsts, GLunit, uFloat, SDLh; |
4388 | 25 |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7978
diff
changeset
|
26 |
type |
10015 | 27 |
Tar = record |
8330 | 28 |
X, Y: hwFloat; |
29 |
dLen: hwFloat; |
|
30 |
b : boolean; |
|
31 |
end; |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7978
diff
changeset
|
32 |
TRopePoints = record |
8330 | 33 |
Count : Longword; |
34 |
HookAngle : GLfloat; |
|
35 |
ar : array[0..MAXROPEPOINTS] of Tar; |
|
36 |
rounded : array[0..MAXROPEPOINTS + 2] of TVertex2f; |
|
37 |
end; |
|
4388 | 38 |
procedure RenderGear(Gear: PGear; x, y: LongInt); |
39 |
||
40 |
var RopePoints: record |
|
41 |
Count: Longword; |
|
42 |
HookAngle: GLfloat; |
|
43 |
ar: array[0..MAXROPEPOINTS] of record |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
44 |
X, Y: hwFloat; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
45 |
dLen: hwFloat; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
46 |
b: boolean; |
8733
b6002f1956d5
Hard math to fix issue 571. Well, not really hard math,
unc0rr
parents:
8689
diff
changeset
|
47 |
sx, sy, sb: boolean; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
48 |
end; |
4388 | 49 |
rounded: array[0..MAXROPEPOINTS + 2] of TVertex2f; |
50 |
end; |
|
51 |
||
52 |
implementation |
|
9285 | 53 |
uses uRender, uUtils, uVariables, uAmmos, Math, uVisualGearsList; |
4388 | 54 |
|
55 |
procedure DrawRopeLinesRQ(Gear: PGear); |
|
56 |
begin |
|
57 |
with RopePoints do |
|
58 |
begin |
|
59 |
rounded[Count].X:= hwRound(Gear^.X); |
|
60 |
rounded[Count].Y:= hwRound(Gear^.Y); |
|
61 |
rounded[Count + 1].X:= hwRound(Gear^.Hedgehog^.Gear^.X); |
|
62 |
rounded[Count + 1].Y:= hwRound(Gear^.Hedgehog^.Gear^.Y); |
|
63 |
end; |
|
64 |
||
65 |
if (RopePoints.Count > 0) or (Gear^.Elasticity.QWordValue > 0) then |
|
66 |
begin |
|
67 |
glDisable(GL_TEXTURE_2D); |
|
68 |
//glEnable(GL_LINE_SMOOTH); |
|
69 |
||
70 |
glPushMatrix; |
|
71 |
||
72 |
glTranslatef(WorldDx, WorldDy, 0); |
|
73 |
||
10264
cb4331b032f4
use cScaleFactor where I incorrectly used the variable zoom in the past. i was young and needed the money
sheepluva
parents:
10142
diff
changeset
|
74 |
glLineWidth(2.0 * cScaleFactor); |
4388 | 75 |
|
76 |
Tint($C0, $C0, $C0, $FF); |
|
77 |
||
78 |
glVertexPointer(2, GL_FLOAT, 0, @RopePoints.rounded[0]); |
|
79 |
glDrawArrays(GL_LINE_STRIP, 0, RopePoints.Count + 2); |
|
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
80 |
untint; |
4388 | 81 |
|
82 |
glPopMatrix; |
|
83 |
||
84 |
glEnable(GL_TEXTURE_2D); |
|
85 |
//glDisable(GL_LINE_SMOOTH) |
|
86 |
end |
|
87 |
end; |
|
88 |
||
89 |
||
6508
bf5db4517148
Fix regression from 6480 too. Extra assignments might make this slightly less efficient.
nemo
parents:
6490
diff
changeset
|
90 |
function DrawRopeLine(X1, Y1, X2, Y2, roplen: LongInt): LongInt; |
6490 | 91 |
var eX, eY, dX, dY: LongInt; |
92 |
i, sX, sY, x, y, d: LongInt; |
|
93 |
b: boolean; |
|
94 |
begin |
|
4388 | 95 |
if (X1 = X2) and (Y1 = Y2) then |
6490 | 96 |
begin |
97 |
//OutError('WARNING: zero length rope line!', false); |
|
10015 | 98 |
DrawRopeLine:= 0; |
6490 | 99 |
exit |
100 |
end; |
|
4388 | 101 |
eX:= 0; |
102 |
eY:= 0; |
|
103 |
dX:= X2 - X1; |
|
104 |
dY:= Y2 - Y1; |
|
105 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
106 |
if (dX > 0) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
107 |
sX:= 1 |
4388 | 108 |
else |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
109 |
if (dX < 0) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
110 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
111 |
sX:= -1; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
112 |
dX:= -dX |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
113 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
114 |
else sX:= dX; |
4388 | 115 |
|
8689 | 116 |
if (dY > 0) then |
6490 | 117 |
sY:= 1 |
4388 | 118 |
else |
6490 | 119 |
if (dY < 0) then |
4388 | 120 |
begin |
6490 | 121 |
sY:= -1; |
122 |
dY:= -dY |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
123 |
end |
8689 | 124 |
else |
6490 | 125 |
sY:= dY; |
126 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
127 |
if (dX > dY) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
128 |
d:= dX |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
129 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
130 |
d:= dY; |
6490 | 131 |
|
132 |
x:= X1; |
|
133 |
y:= Y1; |
|
134 |
||
135 |
for i:= 0 to d do |
|
136 |
begin |
|
137 |
inc(eX, dX); |
|
138 |
inc(eY, dY); |
|
139 |
b:= false; |
|
140 |
if (eX > d) then |
|
141 |
begin |
|
142 |
dec(eX, d); |
|
143 |
inc(x, sX); |
|
144 |
b:= true |
|
145 |
end; |
|
146 |
if (eY > d) then |
|
147 |
begin |
|
148 |
dec(eY, d); |
|
149 |
inc(y, sY); |
|
150 |
b:= true |
|
151 |
end; |
|
152 |
if b then |
|
153 |
begin |
|
154 |
inc(roplen); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
155 |
if (roplen mod 4) = 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
156 |
DrawSprite(sprRopeNode, x - 2, y - 2, 0) |
6490 | 157 |
end |
6508
bf5db4517148
Fix regression from 6480 too. Extra assignments might make this slightly less efficient.
nemo
parents:
6490
diff
changeset
|
158 |
end; |
10015 | 159 |
DrawRopeLine:= roplen; |
6490 | 160 |
end; |
161 |
||
162 |
procedure DrawRope(Gear: PGear); |
|
163 |
var roplen: LongInt; |
|
164 |
i: Longword; |
|
4388 | 165 |
begin |
166 |
if (cReducedQuality and rqSimpleRope) <> 0 then |
|
167 |
DrawRopeLinesRQ(Gear) |
|
168 |
else |
|
169 |
begin |
|
170 |
roplen:= 0; |
|
171 |
if RopePoints.Count > 0 then |
|
172 |
begin |
|
173 |
i:= 0; |
|
174 |
while i < Pred(RopePoints.Count) do |
|
175 |
begin |
|
6508
bf5db4517148
Fix regression from 6480 too. Extra assignments might make this slightly less efficient.
nemo
parents:
6490
diff
changeset
|
176 |
roplen:= DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
6490 | 177 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy, roplen); |
4388 | 178 |
inc(i) |
179 |
end; |
|
6508
bf5db4517148
Fix regression from 6480 too. Extra assignments might make this slightly less efficient.
nemo
parents:
6490
diff
changeset
|
180 |
roplen:= DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
6490 | 181 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, roplen); |
6508
bf5db4517148
Fix regression from 6480 too. Extra assignments might make this slightly less efficient.
nemo
parents:
6490
diff
changeset
|
182 |
roplen:= DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
6490 | 183 |
hwRound(Gear^.Hedgehog^.Gear^.X) + WorldDx, hwRound(Gear^.Hedgehog^.Gear^.Y) + WorldDy, roplen); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
184 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
185 |
else |
4388 | 186 |
if Gear^.Elasticity.QWordValue > 0 then |
6508
bf5db4517148
Fix regression from 6480 too. Extra assignments might make this slightly less efficient.
nemo
parents:
6490
diff
changeset
|
187 |
roplen:= DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
6490 | 188 |
hwRound(Gear^.Hedgehog^.Gear^.X) + WorldDx, hwRound(Gear^.Hedgehog^.Gear^.Y) + WorldDy, roplen); |
4388 | 189 |
end; |
190 |
||
191 |
||
192 |
if RopePoints.Count > 0 then |
|
6999 | 193 |
DrawSpriteRotated(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx, hwRound(RopePoints.ar[0].Y) + WorldDy, 1, RopePoints.HookAngle) |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
194 |
else |
4388 | 195 |
if Gear^.Elasticity.QWordValue > 0 then |
6999 | 196 |
DrawSpriteRotated(sprRopeHook, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 197 |
end; |
198 |
||
199 |
||
200 |
procedure DrawAltWeapon(Gear: PGear; sx, sy: LongInt); |
|
201 |
begin |
|
202 |
with Gear^.Hedgehog^ do |
|
203 |
begin |
|
204 |
if not (((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) <> 0) and ((Gear^.State and gstAttacked) = 0)) then |
|
205 |
exit; |
|
206 |
DrawTexture(sx + 16, sy + 16, ropeIconTex); |
|
207 |
DrawTextureF(SpritesData[sprAMAmmos].Texture, 0.75, sx + 30, sy + 30, ord(CurAmmoType) - 1, 1, 32, 32); |
|
208 |
end; |
|
209 |
end; |
|
210 |
||
211 |
||
212 |
procedure DrawHH(Gear: PGear; ox, oy: LongInt); |
|
213 |
var i, t: LongInt; |
|
214 |
amt: TAmmoType; |
|
5615
104f69e798bb
changed aiming to be triggered when touching the crosshair
Xeli
parents:
5561
diff
changeset
|
215 |
sign, hx, hy, tx, ty, sx, sy, m: LongInt; // hedgehog, crosshair, temp, sprite, direction |
4388 | 216 |
dx, dy, ax, ay, aAngle, dAngle, hAngle, lx, ly: real; // laser, change |
217 |
defaultPos, HatVisible: boolean; |
|
218 |
HH: PHedgehog; |
|
219 |
CurWeapon: PAmmo; |
|
8557 | 220 |
iceOffset:Longint; |
221 |
r:TSDL_Rect; |
|
4388 | 222 |
begin |
223 |
HH:= Gear^.Hedgehog; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
224 |
if HH^.Unplaced then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
225 |
exit; |
4388 | 226 |
m:= 1; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
227 |
if ((Gear^.State and gstHHHJump) <> 0) and (not cArtillery) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
228 |
m:= -1; |
4388 | 229 |
sx:= ox + 1; // this offset is very common |
230 |
sy:= oy - 3; |
|
231 |
sign:= hwSign(Gear^.dX); |
|
232 |
||
233 |
if (Gear^.State and gstHHDeath) <> 0 then |
|
234 |
begin |
|
235 |
DrawSprite(sprHHDeath, ox - 16, oy - 26, Gear^.Pos); |
|
4810 | 236 |
Tint(HH^.Team^.Clan^.Color shl 8 or $FF); |
4388 | 237 |
DrawSprite(sprHHDeath, ox - 16, oy - 26, Gear^.Pos + 8); |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
238 |
untint; |
4388 | 239 |
exit |
240 |
end |
|
241 |
else if (Gear^.State and gstHHGone) <> 0 then |
|
242 |
begin |
|
6999 | 243 |
DrawSpriteRotatedF(sprTeleport, sx, sy, Gear^.Pos, sign, 0); |
4388 | 244 |
exit |
245 |
end; |
|
246 |
||
247 |
defaultPos:= true; |
|
248 |
HatVisible:= false; |
|
249 |
||
8560 | 250 |
if HH^.Effects[heFrozen] > 0 then |
8656
a8282143a8df
use opacity to indicate thawing. not totally happy w/ effect, but argument was made to indicate some progress towards thaw. drop "exit" since it really wasn't helpful, and not rendering tags, was more annoying than fun.
nemo
parents:
8628
diff
changeset
|
251 |
if HH^.Effects[heFrozen] < 150000 then |
8560 | 252 |
begin |
253 |
DrawHedgehog(sx, sy, |
|
254 |
sign, |
|
255 |
0, |
|
256 |
0, |
|
257 |
0); |
|
258 |
defaultPos:= false; |
|
8656
a8282143a8df
use opacity to indicate thawing. not totally happy w/ effect, but argument was made to indicate some progress towards thaw. drop "exit" since it really wasn't helpful, and not rendering tags, was more annoying than fun.
nemo
parents:
8628
diff
changeset
|
259 |
if HH^.Effects[heFrozen] < 256 then |
a8282143a8df
use opacity to indicate thawing. not totally happy w/ effect, but argument was made to indicate some progress towards thaw. drop "exit" since it really wasn't helpful, and not rendering tags, was more annoying than fun.
nemo
parents:
8628
diff
changeset
|
260 |
HatVisible:= true |
a8282143a8df
use opacity to indicate thawing. not totally happy w/ effect, but argument was made to indicate some progress towards thaw. drop "exit" since it really wasn't helpful, and not rendering tags, was more annoying than fun.
nemo
parents:
8628
diff
changeset
|
261 |
else HatVisible:= false |
8560 | 262 |
end |
8689 | 263 |
else |
8560 | 264 |
begin |
265 |
DrawHedgehog(sx, sy, |
|
266 |
sign, |
|
267 |
2, |
|
268 |
4, |
|
269 |
0); |
|
270 |
defaultPos:= false; |
|
8656
a8282143a8df
use opacity to indicate thawing. not totally happy w/ effect, but argument was made to indicate some progress towards thaw. drop "exit" since it really wasn't helpful, and not rendering tags, was more annoying than fun.
nemo
parents:
8628
diff
changeset
|
271 |
HatVisible:= false |
8560 | 272 |
end; |
273 |
||
4388 | 274 |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6999
diff
changeset
|
275 |
if HH^.Effects[hePoisoned] <> 0 then |
4388 | 276 |
begin |
277 |
Tint($00, $FF, $40, $40); |
|
10142 | 278 |
DrawTextureRotatedF(SpritesData[sprSmokeWhite].texture, 2, 0, 0, sx, sy, 0, 1, 22, 22, (RealTicks shr 4) mod 360); |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
279 |
untint |
4388 | 280 |
end; |
281 |
||
8557 | 282 |
|
4388 | 283 |
if ((Gear^.State and gstWinner) <> 0) and |
284 |
((CurAmmoGear = nil) or (CurAmmoGear^.Kind <> gtPickHammer)) then |
|
285 |
begin |
|
286 |
DrawHedgehog(sx, sy, |
|
287 |
sign, |
|
288 |
2, |
|
289 |
0, |
|
290 |
0); |
|
291 |
defaultPos:= false |
|
292 |
end; |
|
293 |
if (Gear^.State and gstDrowning) <> 0 then |
|
294 |
begin |
|
295 |
DrawHedgehog(sx, sy, |
|
296 |
sign, |
|
297 |
1, |
|
298 |
7, |
|
299 |
0); |
|
300 |
defaultPos:= false |
|
301 |
end else |
|
302 |
if (Gear^.State and gstLoser) <> 0 then |
|
303 |
begin |
|
304 |
DrawHedgehog(sx, sy, |
|
305 |
sign, |
|
306 |
2, |
|
307 |
3, |
|
308 |
0); |
|
309 |
defaultPos:= false |
|
310 |
end else |
|
311 |
||
312 |
if (Gear^.State and gstHHDriven) <> 0 then |
|
313 |
begin |
|
5145
120f4271f197
adjust crosshair criteria again. this should take care of sniper rifle and crosshair after attacking
nemo
parents:
5137
diff
changeset
|
314 |
if ((Gear^.State and (gstHHThinking or gstAnimation)) = 0) and |
5136
948da1e50205
Fix a few crosshair bugs. Disable ShowCrosshair and just decide when drawing.
nemo
parents:
5041
diff
changeset
|
315 |
/// If current ammo is active, and current ammo has alt attack and uses a crosshair (rope, basically, right now, with no crosshair for parachute/saucer |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
316 |
(((CurAmmoGear <> nil) and //((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0) and |
10390 | 317 |
// don't render crosshair/laser during kamikaze |
318 |
((CurAmmoGear^.AmmoType <> amKamikaze) or ((Gear^.State and gstAttacking) = 0)) and |
|
5136
948da1e50205
Fix a few crosshair bugs. Disable ShowCrosshair and just decide when drawing.
nemo
parents:
5041
diff
changeset
|
319 |
((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_NoCrossHair) = 0)) or |
948da1e50205
Fix a few crosshair bugs. Disable ShowCrosshair and just decide when drawing.
nemo
parents:
5041
diff
changeset
|
320 |
/// If no current ammo is active, and the selected ammo uses a crosshair |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
321 |
((CurAmmoGear = nil) and ((Ammoz[HH^.CurAmmoType].Ammo.Propz and ammoprop_NoCrosshair) = 0) and ((Gear^.State and gstAttacked) = 0))) then |
4388 | 322 |
begin |
323 |
(* These calculations are a little complex for a few reasons: |
|
324 |
1: I need to draw the laser from weapon origin to nearest land |
|
325 |
2: I need to start the beam outside the hedgie for attractiveness. |
|
326 |
3: I need to extend the beam beyond land. |
|
327 |
This routine perhaps should be pushed into uStore or somesuch instead of continuuing the increase in size of this function. |
|
328 |
*) |
|
329 |
dx:= sign * m * Sin(Gear^.Angle * pi / cMaxAngle); |
|
330 |
dy:= -Cos(Gear^.Angle * pi / cMaxAngle); |
|
331 |
if cLaserSighting then |
|
332 |
begin |
|
333 |
lx:= GetLaunchX(HH^.CurAmmoType, sign * m, Gear^.Angle); |
|
334 |
ly:= GetLaunchY(HH^.CurAmmoType, Gear^.Angle); |
|
335 |
||
336 |
// ensure we start outside the hedgehog (he's solid after all) |
|
337 |
while abs(lx * lx + ly * ly) < (Gear^.radius * Gear^.radius) do |
|
338 |
begin |
|
339 |
lx:= lx + dx; |
|
340 |
ly:= ly + dy |
|
341 |
end; |
|
342 |
||
343 |
// add hog's position |
|
344 |
lx:= lx + ox - WorldDx; |
|
345 |
ly:= ly + oy - WorldDy; |
|
346 |
||
347 |
// decrease number of iterations required |
|
348 |
ax:= dx * 4; |
|
349 |
ay:= dy * 4; |
|
350 |
||
351 |
tx:= round(lx); |
|
352 |
ty:= round(ly); |
|
353 |
hx:= tx; |
|
354 |
hy:= ty; |
|
355 |
while ((ty and LAND_HEIGHT_MASK) = 0) and |
|
356 |
((tx and LAND_WIDTH_MASK) = 0) and |
|
357 |
(Land[ty, tx] = 0) do // TODO: check for constant variable instead |
|
358 |
begin |
|
359 |
lx:= lx + ax; |
|
360 |
ly:= ly + ay; |
|
361 |
tx:= round(lx); |
|
8854
31133afaa025
remove 70c086d9b03f - I suspect the issue was actually part of more general prob probably fixed in cfc44db21d72 by jaree
nemo
parents:
8733
diff
changeset
|
362 |
ty:= round(ly) |
4388 | 363 |
end; |
364 |
// reached edge of land. assume infinite beam. Extend it way out past camera |
|
365 |
if ((ty and LAND_HEIGHT_MASK) <> 0) or ((tx and LAND_WIDTH_MASK) <> 0) then |
|
366 |
begin |
|
7829
c1dc7839d7b9
Set minimums on a few values to avoid camera zooming out past them. partly Issue #430. Might be worth defining a new constant for this.
nemo
parents:
7730
diff
changeset
|
367 |
tx:= round(lx + ax * (max(LAND_WIDTH,4096) div 2)); |
c1dc7839d7b9
Set minimums on a few values to avoid camera zooming out past them. partly Issue #430. Might be worth defining a new constant for this.
nemo
parents:
7730
diff
changeset
|
368 |
ty:= round(ly + ay * (max(LAND_WIDTH,4096) div 2)); |
4388 | 369 |
end; |
370 |
||
371 |
//if (abs(lx-tx)>8) or (abs(ly-ty)>8) then |
|
372 |
begin |
|
373 |
DrawLine(hx, hy, tx, ty, 1.0, $FF, $00, $00, $C0); |
|
374 |
end; |
|
375 |
end; |
|
376 |
// draw crosshair |
|
5615
104f69e798bb
changed aiming to be triggered when touching the crosshair
Xeli
parents:
5561
diff
changeset
|
377 |
CrosshairX := Round(hwRound(Gear^.X) + dx * 80 + GetLaunchX(HH^.CurAmmoType, sign * m, Gear^.Angle)); |
104f69e798bb
changed aiming to be triggered when touching the crosshair
Xeli
parents:
5561
diff
changeset
|
378 |
CrosshairY := Round(hwRound(Gear^.Y) + dy * 80 + GetLaunchY(HH^.CurAmmoType, Gear^.Angle)); |
8689 | 379 |
|
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
380 |
setTintAdd(true); |
9655
e154ccca4dad
Tinted crosshair (without that cool white dot in the middle)
unc0rr
parents:
9505
diff
changeset
|
381 |
Tint(HH^.Team^.Clan^.Color shl 8 or $FF); |
e154ccca4dad
Tinted crosshair (without that cool white dot in the middle)
unc0rr
parents:
9505
diff
changeset
|
382 |
DrawTextureRotated(CrosshairTexture, |
5615
104f69e798bb
changed aiming to be triggered when touching the crosshair
Xeli
parents:
5561
diff
changeset
|
383 |
12, 12, CrosshairX + WorldDx, CrosshairY + WorldDy, 0, |
9667
0b27737fc28f
Don't change crosshair look when hedgehog does high jump
unc0rr
parents:
9666
diff
changeset
|
384 |
sign * m * (Gear^.Angle * 180.0) / cMaxAngle); |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
385 |
untint; |
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
386 |
setTintAdd(false); |
4388 | 387 |
end; |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
388 |
|
4388 | 389 |
hx:= ox + 8 * sign; |
390 |
hy:= oy - 2; |
|
391 |
aangle:= Gear^.Angle * 180 / cMaxAngle - 90; |
|
5935 | 392 |
if (CurAmmoGear <> nil) and (CurAmmoGear^.Kind <> gtTardis) then |
4388 | 393 |
begin |
394 |
case CurAmmoGear^.Kind of |
|
395 |
gtShotgunShot: begin |
|
396 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
|
6999 | 397 |
DrawSpriteRotated(sprShotgun, hx, hy, sign, aangle) |
4388 | 398 |
else |
6999 | 399 |
DrawSpriteRotated(sprHandShotgun, hx, hy, sign, aangle); |
4388 | 400 |
end; |
6999 | 401 |
gtDEagleShot: DrawSpriteRotated(sprDEagle, hx, hy, sign, aangle); |
4388 | 402 |
gtSniperRifleShot: begin |
403 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
|
6999 | 404 |
DrawSpriteRotatedF(sprSniperRifle, hx, hy, 1, sign, aangle) |
4388 | 405 |
else |
6999 | 406 |
DrawSpriteRotatedF(sprSniperRifle, hx, hy, 0, sign, aangle) |
4388 | 407 |
end; |
6999 | 408 |
gtBallgun: DrawSpriteRotated(sprHandBallgun, hx, hy, sign, aangle); |
4388 | 409 |
gtRCPlane: begin |
6999 | 410 |
DrawSpriteRotated(sprHandPlane, hx, hy, sign, 0); |
4388 | 411 |
defaultPos:= false |
412 |
end; |
|
413 |
gtRope: begin |
|
414 |
if Gear^.X < CurAmmoGear^.X then |
|
415 |
begin |
|
416 |
dAngle:= 0; |
|
417 |
hAngle:= 180; |
|
418 |
i:= 1 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
419 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
420 |
else |
4388 | 421 |
begin |
422 |
dAngle:= 180; |
|
423 |
hAngle:= 0; |
|
424 |
i:= -1 |
|
425 |
end; |
|
7547 | 426 |
if ((Gear^.State and gstWinner) = 0) then |
427 |
begin |
|
428 |
DrawHedgehog(ox, oy, |
|
429 |
i, |
|
430 |
1, |
|
431 |
0, |
|
432 |
DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + dAngle); |
|
433 |
with HH^ do |
|
434 |
if (HatTex <> nil) then |
|
4388 | 435 |
begin |
7547 | 436 |
DrawTextureRotatedF(HatTex, 1.0, -1.0, -6.0, ox, oy, 0, i, 32, 32, |
4388 | 437 |
i*DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + hAngle); |
7547 | 438 |
if HatTex^.w > 64 then |
439 |
begin |
|
440 |
Tint(HH^.Team^.Clan^.Color shl 8 or $FF); |
|
441 |
DrawTextureRotatedF(HatTex, 1.0, -1.0, -6.0, ox, oy, 32, i, 32, 32, |
|
442 |
i*DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + hAngle); |
|
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
443 |
untint |
7547 | 444 |
end |
4388 | 445 |
end |
446 |
end; |
|
447 |
DrawAltWeapon(Gear, ox, oy); |
|
448 |
defaultPos:= false |
|
449 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
450 |
gtBlowTorch: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
451 |
begin |
6999 | 452 |
DrawSpriteRotated(sprBlowTorch, hx, hy, sign, aangle); |
4388 | 453 |
DrawHedgehog(sx, sy, |
454 |
sign, |
|
455 |
3, |
|
456 |
HH^.visStepPos div 2, |
|
457 |
0); |
|
458 |
with HH^ do |
|
459 |
if (HatTex <> nil) then |
|
460 |
begin |
|
461 |
DrawTextureF(HatTex, |
|
462 |
1, |
|
463 |
sx, |
|
464 |
sy - 5, |
|
465 |
0, |
|
466 |
sign, |
|
467 |
32, |
|
468 |
32); |
|
469 |
if HatTex^.w > 64 then |
|
470 |
begin |
|
4810 | 471 |
Tint(HH^.Team^.Clan^.Color shl 8 or $FF); |
4388 | 472 |
DrawTextureF(HatTex, |
473 |
1, |
|
474 |
sx, |
|
475 |
sy - 5, |
|
476 |
32, |
|
477 |
sign, |
|
478 |
32, |
|
479 |
32); |
|
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
480 |
untint |
4388 | 481 |
end |
482 |
end; |
|
483 |
defaultPos:= false |
|
484 |
end; |
|
6999 | 485 |
gtShover: DrawSpriteRotated(sprHandBaseball, hx, hy, sign, aangle + 180); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
486 |
gtFirePunch: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
487 |
begin |
4388 | 488 |
DrawHedgehog(sx, sy, |
489 |
sign, |
|
490 |
1, |
|
491 |
4, |
|
492 |
0); |
|
493 |
defaultPos:= false |
|
494 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
495 |
gtPickHammer: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
496 |
begin |
4388 | 497 |
defaultPos:= false; |
498 |
dec(sy,20); |
|
499 |
end; |
|
500 |
gtTeleport: defaultPos:= false; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
501 |
gtWhip: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
502 |
begin |
6999 | 503 |
DrawSpriteRotatedF(sprWhip, |
4388 | 504 |
sx, |
505 |
sy, |
|
506 |
1, |
|
507 |
sign, |
|
508 |
0); |
|
509 |
defaultPos:= false |
|
510 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
511 |
gtHammer: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
512 |
begin |
6999 | 513 |
DrawSpriteRotatedF(sprHammer, |
4388 | 514 |
sx, |
515 |
sy, |
|
516 |
1, |
|
517 |
sign, |
|
518 |
0); |
|
519 |
defaultPos:= false |
|
520 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
521 |
gtResurrector: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
522 |
begin |
6999 | 523 |
DrawSpriteRotated(sprHandResurrector, sx, sy, 0, 0); |
4388 | 524 |
defaultPos:= false |
525 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
526 |
gtKamikaze: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
527 |
begin |
4388 | 528 |
if CurAmmoGear^.Pos = 0 then |
529 |
DrawHedgehog(sx, sy, |
|
530 |
sign, |
|
531 |
1, |
|
532 |
6, |
|
533 |
0) |
|
534 |
else |
|
6999 | 535 |
DrawSpriteRotatedF(sprKamikaze, |
4388 | 536 |
ox, oy, |
537 |
CurAmmoGear^.Pos - 1, |
|
538 |
sign, |
|
539 |
aangle); |
|
540 |
defaultPos:= false |
|
541 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
542 |
gtSeduction: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
543 |
begin |
4388 | 544 |
if CurAmmoGear^.Pos >= 6 then |
545 |
DrawHedgehog(sx, sy, |
|
546 |
sign, |
|
547 |
2, |
|
548 |
2, |
|
549 |
0) |
|
550 |
else |
|
551 |
begin |
|
6999 | 552 |
DrawSpriteRotatedF(sprDress, |
4388 | 553 |
ox, oy, |
554 |
CurAmmoGear^.Pos, |
|
555 |
sign, |
|
556 |
0); |
|
557 |
DrawSprite(sprCensored, ox - 32, oy - 20, 0) |
|
558 |
end; |
|
559 |
defaultPos:= false |
|
560 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
561 |
gtFlamethrower: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
562 |
begin |
6999 | 563 |
DrawSpriteRotatedF(sprHandFlamethrower, hx, hy, (RealTicks div 125) mod 4, sign, aangle); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
564 |
if CurAmmoGear^.Tex <> nil then |
6999 | 565 |
DrawTextureCentered(sx, sy - 40, CurAmmoGear^.Tex) |
4388 | 566 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
567 |
gtLandGun: |
6999 | 568 |
begin DrawSpriteRotated(sprHandBallgun, hx, hy, sign, aangle); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
569 |
if CurAmmoGear^.Tex <> nil then |
6999 | 570 |
DrawTextureCentered(sx, sy - 40, CurAmmoGear^.Tex) |
5025
ac1691d35cf2
Land sprayer tweaks, make land spray and mudball not end turn
nemo
parents:
5024
diff
changeset
|
571 |
end; |
7093 | 572 |
gtIceGun: |
8554 | 573 |
begin DrawSpriteRotated(sprIceGun, hx, hy, sign, aangle); |
7093 | 574 |
if CurAmmoGear^.Tex <> nil then |
575 |
DrawTextureCentered(sx, sy - 40, CurAmmoGear^.Tex) |
|
576 |
end; |
|
4388 | 577 |
end; |
578 |
||
579 |
case CurAmmoGear^.Kind of |
|
580 |
gtShotgunShot, |
|
581 |
gtDEagleShot, |
|
582 |
gtSniperRifleShot, |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
583 |
gtShover: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
584 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
585 |
DrawHedgehog(sx, sy, sign, 0, 4, 0); |
4388 | 586 |
defaultPos:= false; |
587 |
HatVisible:= true |
|
588 |
end |
|
589 |
end |
|
590 |
end else |
|
591 |
||
592 |
if ((Gear^.State and gstHHJumping) <> 0) then |
|
593 |
begin |
|
594 |
DrawHedgehog(sx, sy, |
|
595 |
sign*m, |
|
596 |
1, |
|
597 |
1, |
|
598 |
0); |
|
599 |
HatVisible:= true; |
|
600 |
defaultPos:= false |
|
601 |
end else |
|
602 |
||
603 |
if (Gear^.Message and (gmLeft or gmRight) <> 0) and (not isCursorVisible) then |
|
604 |
begin |
|
605 |
DrawHedgehog(sx, sy, |
|
606 |
sign, |
|
607 |
0, |
|
608 |
HH^.visStepPos div 2, |
|
609 |
0); |
|
610 |
defaultPos:= false; |
|
611 |
HatVisible:= true |
|
612 |
end |
|
613 |
else |
|
614 |
||
615 |
if ((Gear^.State and gstAnimation) <> 0) then |
|
616 |
begin |
|
617 |
if (TWave(Gear^.Tag) < Low(TWave)) or (TWave(Gear^.Tag) > High(TWave)) then |
|
618 |
begin |
|
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6328
diff
changeset
|
619 |
Gear^.State:= Gear^.State and (not gstAnimation); |
4388 | 620 |
end |
621 |
else |
|
622 |
begin |
|
6999 | 623 |
DrawSpriteRotatedF(Wavez[TWave(Gear^.Tag)].Sprite, |
4388 | 624 |
sx, |
625 |
sy, |
|
626 |
Gear^.Pos, |
|
627 |
sign, |
|
628 |
0.0); |
|
629 |
defaultPos:= false |
|
630 |
end |
|
631 |
end |
|
632 |
else |
|
633 |
if ((Gear^.State and gstAttacked) = 0) then |
|
634 |
begin |
|
635 |
if HH^.Timer > 0 then |
|
636 |
begin |
|
637 |
// There must be a tidier way to do this. Anyone? |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
638 |
if aangle <= 90 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
639 |
aangle:= aangle+360; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
640 |
if Gear^.dX > _0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
641 |
aangle:= aangle-((aangle-240)*HH^.Timer/10) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
642 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
643 |
aangle:= aangle+((240-aangle)*HH^.Timer/10); |
4388 | 644 |
dec(HH^.Timer) |
645 |
end; |
|
646 |
amt:= CurrentHedgehog^.CurAmmoType; |
|
6924 | 647 |
CurWeapon:= GetCurAmmoEntry(HH^); |
4388 | 648 |
case amt of |
6999 | 649 |
amBazooka: DrawSpriteRotated(sprHandBazooka, hx, hy, sign, aangle); |
650 |
amSnowball: DrawSpriteRotated(sprHandSnowball, hx, hy, sign, aangle); |
|
651 |
amMortar: DrawSpriteRotated(sprHandMortar, hx, hy, sign, aangle); |
|
652 |
amMolotov: DrawSpriteRotated(sprHandMolotov, hx, hy, sign, aangle); |
|
653 |
amBallgun: DrawSpriteRotated(sprHandBallgun, hx, hy, sign, aangle); |
|
654 |
amDrill: DrawSpriteRotated(sprHandDrill, hx, hy, sign, aangle); |
|
655 |
amRope: DrawSpriteRotated(sprHandRope, hx, hy, sign, aangle); |
|
656 |
amShotgun: DrawSpriteRotated(sprHandShotgun, hx, hy, sign, aangle); |
|
657 |
amDEagle: DrawSpriteRotated(sprHandDEagle, hx, hy, sign, aangle); |
|
658 |
amSineGun: DrawSpriteRotatedF(sprHandSinegun, hx, hy, 73 + (sign * LongInt(RealTicks div 73)) mod 8, sign, aangle); |
|
8689 | 659 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
660 |
amPortalGun: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
661 |
if (CurWeapon^.Timer and 2) <> 0 then // Add a new Hedgehog value instead of abusing timer? |
6999 | 662 |
DrawSpriteRotatedF(sprPortalGun, hx, hy, 0, sign, aangle) |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
663 |
else |
6999 | 664 |
DrawSpriteRotatedF(sprPortalGun, hx, hy, 1+CurWeapon^.Pos, sign, aangle); |
8689 | 665 |
|
6999 | 666 |
amSniperRifle: DrawSpriteRotatedF(sprSniperRifle, hx, hy, 0, sign, aangle); |
667 |
amBlowTorch: DrawSpriteRotated(sprHandBlowTorch, hx, hy, sign, aangle); |
|
668 |
amCake: DrawSpriteRotated(sprHandCake, hx, hy, sign, aangle); |
|
669 |
amGrenade: DrawSpriteRotated(sprHandGrenade, hx, hy, sign, aangle); |
|
670 |
amWatermelon: DrawSpriteRotated(sprHandMelon, hx, hy, sign, aangle); |
|
671 |
amSkip: DrawSpriteRotated(sprHandSkip, hx, hy, sign, aangle); |
|
672 |
amClusterBomb: DrawSpriteRotated(sprHandCluster, hx, hy, sign, aangle); |
|
673 |
amDynamite: DrawSpriteRotated(sprHandDynamite, hx, hy, sign, aangle); |
|
674 |
amHellishBomb: DrawSpriteRotated(sprHandHellish, hx, hy, sign, aangle); |
|
675 |
amGasBomb: DrawSpriteRotated(sprHandCheese, hx, hy, sign, aangle); |
|
676 |
amMine: DrawSpriteRotated(sprHandMine, hx, hy, sign, aangle); |
|
677 |
amSMine: DrawSpriteRotated(sprHandSMine, hx, hy, sign, aangle); |
|
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7721
diff
changeset
|
678 |
amKnife: DrawSpriteRotatedF(sprHandKnife, hx, hy, 0, sign, aangle); |
5525 | 679 |
amSeduction: begin |
6999 | 680 |
DrawSpriteRotated(sprHandSeduction, hx, hy, sign, aangle); |
8689 | 681 |
DrawCircle(ox, oy, 248, 4, $FF, $00, $00, $AA); |
5561
dfbe55237c64
Shrink number of circle points to 60, reenable seduction circle (no longer crashes)
nemo
parents:
5560
diff
changeset
|
682 |
//Tint($FF, $0, $0, $AA); |
dfbe55237c64
Shrink number of circle points to 60, reenable seduction circle (no longer crashes)
nemo
parents:
5560
diff
changeset
|
683 |
//DrawTexture(ox - 240, oy - 240, SpritesData[sprVampiric].Texture, 10); |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
684 |
//untint; |
5525 | 685 |
end; |
6999 | 686 |
amVampiric: DrawSpriteRotatedF(sprHandVamp, hx, hy, (RealTicks div 125) mod 4, sign, aangle); |
4388 | 687 |
amRCPlane: begin |
6999 | 688 |
DrawSpriteRotated(sprHandPlane, hx, hy, sign, 0); |
4388 | 689 |
defaultPos:= false |
690 |
end; |
|
9768
08799c901a42
Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents:
9685
diff
changeset
|
691 |
amRubber, |
4388 | 692 |
amGirder: begin |
6999 | 693 |
DrawSpriteRotated(sprHandConstruction, hx, hy, sign, aangle); |
9505
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
694 |
if WorldEdge = weWrap then |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
695 |
begin |
9809 | 696 |
if hwRound(Gear^.X) < LongInt(leftX) + 256 then |
9505
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
697 |
DrawSpriteClipped(sprGirder, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
698 |
rightX+(ox-leftX)-256, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
699 |
oy-256, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
700 |
LongInt(topY)+WorldDy, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
701 |
LongInt(rightX)+WorldDx, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
702 |
cWaterLine+WorldDy, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
703 |
LongInt(leftX)+WorldDx); |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
704 |
if hwRound(Gear^.X) > rightX-256 then |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
705 |
DrawSpriteClipped(sprGirder, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
706 |
leftX-(rightX-ox)-256, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
707 |
oy-256, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
708 |
LongInt(topY)+WorldDy, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
709 |
LongInt(rightX)+WorldDx, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
710 |
cWaterLine+WorldDy, |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
711 |
LongInt(leftX)+WorldDx) |
56e0cca99e20
Allow girder construction to wrap. Makes wrapping w/ large bodies of water a bit more interesting.
nemo
parents:
9285
diff
changeset
|
712 |
end; |
4388 | 713 |
DrawSpriteClipped(sprGirder, |
714 |
ox-256, |
|
715 |
oy-256, |
|
716 |
LongInt(topY)+WorldDy, |
|
717 |
LongInt(rightX)+WorldDx, |
|
718 |
cWaterLine+WorldDy, |
|
719 |
LongInt(leftX)+WorldDx) |
|
720 |
end; |
|
6999 | 721 |
amBee: DrawSpriteRotatedF(sprHandBee, hx, hy, (RealTicks div 125) mod 4, sign, aangle); |
722 |
amFlamethrower: DrawSpriteRotatedF(sprHandFlamethrower, hx, hy, (RealTicks div 125) mod 4, sign, aangle); |
|
723 |
amLandGun: DrawSpriteRotated(sprHandBallgun, hx, hy, sign, aangle); |
|
8554 | 724 |
amIceGun: DrawSpriteRotated(sprIceGun, hx, hy, sign, aangle); |
4388 | 725 |
amResurrector: DrawCircle(ox, oy, 98, 4, $F5, $DB, $35, $AA); // I'd rather not like to hardcode 100 here |
726 |
end; |
|
727 |
||
728 |
case amt of |
|
729 |
amAirAttack, |
|
730 |
amMineStrike, |
|
6999 | 731 |
amDrillStrike: DrawSpriteRotated(sprHandAirAttack, sx, oy, sign, 0); |
4388 | 732 |
amPickHammer: DrawHedgehog(sx, sy, |
733 |
sign, |
|
734 |
1, |
|
735 |
2, |
|
736 |
0); |
|
6999 | 737 |
amTeleport: DrawSpriteRotatedF(sprTeleport, sx, sy, 0, sign, 0); |
4388 | 738 |
amKamikaze: DrawHedgehog(sx, sy, |
739 |
sign, |
|
740 |
1, |
|
741 |
5, |
|
742 |
0); |
|
6999 | 743 |
amWhip: DrawSpriteRotatedF(sprWhip, |
4388 | 744 |
sx, |
745 |
sy, |
|
746 |
0, |
|
747 |
sign, |
|
748 |
0); |
|
6999 | 749 |
amHammer: DrawSpriteRotatedF(sprHammer, |
4388 | 750 |
sx, |
751 |
sy, |
|
752 |
0, |
|
753 |
sign, |
|
754 |
0); |
|
755 |
else |
|
756 |
DrawHedgehog(sx, sy, |
|
757 |
sign, |
|
758 |
0, |
|
759 |
4, |
|
760 |
0); |
|
761 |
||
762 |
HatVisible:= true; |
|
763 |
(* with HH^ do |
|
764 |
if (HatTex <> nil) |
|
765 |
and (HatVisibility > 0) then |
|
766 |
DrawTextureF(HatTex, |
|
767 |
HatVisibility, |
|
768 |
sx, |
|
769 |
sy - 5, |
|
770 |
0, |
|
771 |
sign, |
|
772 |
32, |
|
773 |
32); *) |
|
774 |
end; |
|
775 |
||
776 |
case amt of |
|
6999 | 777 |
amBaseballBat: DrawSpriteRotated(sprHandBaseball, |
4388 | 778 |
sx - 4 * sign, |
779 |
sy + 9, sign, aangle); |
|
780 |
end; |
|
781 |
||
782 |
defaultPos:= false |
|
783 |
end; |
|
784 |
||
785 |
end else // not gstHHDriven |
|
786 |
begin |
|
8681
d0fc1dca739c
yeah. this was a bad idea. the minor difference in thaw speed vs last hog of team never unthawing.
nemo
parents:
8656
diff
changeset
|
787 |
if (Gear^.Damage > 0) and (HH^.Effects[heFrozen] = 0) |
4388 | 788 |
and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then |
789 |
begin |
|
790 |
DrawHedgehog(sx, sy, |
|
791 |
sign, |
|
792 |
2, |
|
793 |
1, |
|
794 |
Gear^.DirAngle); |
|
795 |
defaultPos:= false |
|
796 |
end else |
|
797 |
||
798 |
if ((Gear^.State and gstHHJumping) <> 0) then |
|
799 |
begin |
|
800 |
DrawHedgehog(sx, sy, |
|
801 |
sign*m, |
|
802 |
1, |
|
803 |
1, |
|
804 |
0); |
|
805 |
defaultPos:= false |
|
806 |
end; |
|
807 |
end; |
|
808 |
||
809 |
with HH^ do |
|
810 |
begin |
|
811 |
if defaultPos then |
|
812 |
begin |
|
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
813 |
if HH^.Team^.hasGone then |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
814 |
Tint($FFFFFF80) |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
815 |
else if HH^.Effects[hePoisoned] <> 0 then |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
816 |
Tint($B7FFBCFF) |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
817 |
else Tint(HH^.Gear^.Tint); |
6999 | 818 |
DrawSpriteRotatedF(sprHHIdle, |
4388 | 819 |
sx, |
820 |
sy, |
|
821 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
822 |
sign, |
|
823 |
0); |
|
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
824 |
untint; |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
825 |
DrawSpriteRotatedF(sprHHIdle, |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
826 |
sx, |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
827 |
sy, |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
828 |
(RealTicks div 128 + Gear^.Pos) mod 19 + 32, |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
829 |
sign, |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
830 |
0); |
4388 | 831 |
HatVisible:= true; |
832 |
end; |
|
833 |
||
834 |
if HatVisible then |
|
835 |
if HatVisibility < 1.0 then |
|
836 |
HatVisibility:= HatVisibility + 0.2 |
|
837 |
else |
|
838 |
else |
|
839 |
if HatVisibility > 0.0 then |
|
840 |
HatVisibility:= HatVisibility - 0.2; |
|
841 |
||
842 |
if (HatTex <> nil) |
|
843 |
and (HatVisibility > 0) then |
|
844 |
if DefaultPos then |
|
845 |
begin |
|
846 |
DrawTextureF(HatTex, |
|
847 |
HatVisibility, |
|
848 |
sx, |
|
849 |
sy - 5, |
|
850 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
851 |
sign, |
|
852 |
32, |
|
853 |
32); |
|
854 |
if HatTex^.w > 64 then |
|
855 |
begin |
|
4810 | 856 |
Tint(HH^.Team^.Clan^.Color shl 8 or $FF); |
4388 | 857 |
DrawTextureF(HatTex, |
858 |
HatVisibility, |
|
859 |
sx, |
|
860 |
sy - 5, |
|
861 |
(RealTicks div 128 + Gear^.Pos) mod 19 + 32, |
|
862 |
sign, |
|
863 |
32, |
|
864 |
32); |
|
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
865 |
untint |
7978 | 866 |
end; |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
867 |
if HH^.Team^.hasGone then untint |
4388 | 868 |
end |
869 |
else |
|
870 |
begin |
|
871 |
DrawTextureF(HatTex, |
|
872 |
HatVisibility, |
|
873 |
sx, |
|
874 |
sy - 5, |
|
875 |
0, |
|
876 |
sign*m, |
|
877 |
32, |
|
878 |
32); |
|
879 |
if HatTex^.w > 64 then |
|
880 |
begin |
|
4810 | 881 |
Tint(HH^.Team^.Clan^.Color shl 8 or $FF); |
4388 | 882 |
DrawTextureF(HatTex, |
883 |
HatVisibility, |
|
884 |
sx, |
|
885 |
sy - 5, |
|
886 |
32, |
|
887 |
sign*m, |
|
888 |
32, |
|
889 |
32); |
|
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
890 |
untint |
4388 | 891 |
end |
892 |
end |
|
893 |
end; |
|
894 |
if (Gear^.State and gstHHDriven) <> 0 then |
|
895 |
begin |
|
896 |
(* if (CurAmmoGear = nil) then |
|
897 |
begin |
|
898 |
amt:= CurrentHedgehog^.CurAmmoType; |
|
899 |
case amt of |
|
900 |
amJetpack: DrawSprite(sprJetpack, sx-32, sy-32, 0); |
|
901 |
end |
|
902 |
end; *) |
|
903 |
if CurAmmoGear <> nil then |
|
904 |
begin |
|
905 |
case CurAmmoGear^.Kind of |
|
906 |
gtJetpack: begin |
|
907 |
DrawSprite(sprJetpack, sx-32, sy-32, 0); |
|
908 |
if cWaterLine > hwRound(Gear^.Y) + Gear^.Radius then |
|
909 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
910 |
if (CurAmmoGear^.MsgParam and gmUp) <> 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
911 |
DrawSprite(sprJetpack, sx-32, sy-28, 1); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
912 |
if (CurAmmoGear^.MsgParam and gmLeft) <> 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
913 |
DrawSprite(sprJetpack, sx-28, sy-28, 2); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
914 |
if (CurAmmoGear^.MsgParam and gmRight) <> 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
915 |
DrawSprite(sprJetpack, sx-36, sy-28, 3) |
4388 | 916 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
917 |
if CurAmmoGear^.Tex <> nil then |
6999 | 918 |
DrawTextureCentered(sx, sy - 40, CurAmmoGear^.Tex); |
4388 | 919 |
DrawAltWeapon(Gear, sx, sy) |
920 |
end; |
|
921 |
end; |
|
922 |
end |
|
923 |
end; |
|
924 |
||
925 |
with HH^ do |
|
926 |
begin |
|
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6328
diff
changeset
|
927 |
if ((Gear^.State and (not gstWinner)) = 0) |
4388 | 928 |
or ((Gear^.State = gstWait) and (Gear^.dY.QWordValue = 0)) |
929 |
or (bShowFinger and ((Gear^.State and gstHHDriven) <> 0)) then |
|
930 |
begin |
|
931 |
t:= sy - cHHRadius - 9; |
|
932 |
if (cTagsMask and htTransparent) <> 0 then |
|
933 |
Tint($FF, $FF, $FF, $80); |
|
934 |
if ((cTagsMask and htHealth) <> 0) then |
|
935 |
begin |
|
936 |
dec(t, HealthTagTex^.h + 2); |
|
6999 | 937 |
DrawTextureCentered(ox, t, HealthTagTex) |
4388 | 938 |
end; |
939 |
if (cTagsMask and htName) <> 0 then |
|
940 |
begin |
|
941 |
dec(t, NameTagTex^.h + 2); |
|
6999 | 942 |
DrawTextureCentered(ox, t, NameTagTex) |
4388 | 943 |
end; |
944 |
if (cTagsMask and htTeamName) <> 0 then |
|
945 |
begin |
|
946 |
dec(t, Team^.NameTagTex^.h + 2); |
|
6999 | 947 |
DrawTextureCentered(ox, t, Team^.NameTagTex) |
4388 | 948 |
end; |
949 |
if (cTagsMask and htTransparent) <> 0 then |
|
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
950 |
untint |
4388 | 951 |
end; |
952 |
if (Gear^.State and gstHHDriven) <> 0 then // Current hedgehog |
|
953 |
begin |
|
4394 | 954 |
if (CurAmmoGear <> nil) and (CurAmmoGear^.Kind = gtResurrector) then |
6999 | 955 |
DrawTextureCentered(ox, sy - cHHRadius - 7 - HealthTagTex^.h, HealthTagTex); |
4394 | 956 |
|
4388 | 957 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
10000
d657b6656c19
position "finger"/pointer over current hog above tags
sheepluva
parents:
9998
diff
changeset
|
958 |
begin |
10001
ec523563826e
disallow currenthh arrow to go offscreen, always point in direction of the hog - this should make the life of new players easier
sheepluva
parents:
10000
diff
changeset
|
959 |
ty := oy - 32; |
10000
d657b6656c19
position "finger"/pointer over current hog above tags
sheepluva
parents:
9998
diff
changeset
|
960 |
// move finger higher up if tags are above hog |
d657b6656c19
position "finger"/pointer over current hog above tags
sheepluva
parents:
9998
diff
changeset
|
961 |
if (cTagsMask and htTeamName) <> 0 then |
d657b6656c19
position "finger"/pointer over current hog above tags
sheepluva
parents:
9998
diff
changeset
|
962 |
ty := ty - Team^.NameTagTex^.h - 2; |
d657b6656c19
position "finger"/pointer over current hog above tags
sheepluva
parents:
9998
diff
changeset
|
963 |
if (cTagsMask and htName) <> 0 then |
d657b6656c19
position "finger"/pointer over current hog above tags
sheepluva
parents:
9998
diff
changeset
|
964 |
ty := ty - NameTagTex^.h - 2; |
d657b6656c19
position "finger"/pointer over current hog above tags
sheepluva
parents:
9998
diff
changeset
|
965 |
if (cTagsMask and htHealth) <> 0 then |
d657b6656c19
position "finger"/pointer over current hog above tags
sheepluva
parents:
9998
diff
changeset
|
966 |
ty := ty - HealthTagTex^.h - 2; |
10001
ec523563826e
disallow currenthh arrow to go offscreen, always point in direction of the hog - this should make the life of new players easier
sheepluva
parents:
10000
diff
changeset
|
967 |
tx := ox; |
10312 | 968 |
|
969 |
// don't go offscreen |
|
970 |
//tx := round(max(((-cScreenWidth + 16) / cScaleFactor) + SpritesData[sprFinger].Width div 2, min(((cScreenWidth - 16) / cScaleFactor) - SpritesData[sprFinger].Width div 2, tx))); |
|
971 |
//ty := round(max(cScreenHeight div 2 - ((cScreenHeight - 16) / cScaleFactor) + SpritesData[sprFinger].Height div 2, min(cScreenHeight div 2 - ((-cScreenHeight + SpritesData[sprFinger].Height) / (cScaleFactor)) - SpritesData[sprFinger].Width div 2 - 96, ty))); |
|
972 |
t:= 32;//trunc((SpritesData[sprFinger].Width + t) / cScaleFactor); |
|
973 |
tx := min(max(tx, ViewLeftX + t), ViewRightX - t); |
|
974 |
t:= 32;//trunc((SpritesData[sprFinger].Height + t) / cScaleFactor); |
|
975 |
ty := min(ty, ViewBottomY - 96); |
|
976 |
// don't overlap with HH or HH tags |
|
10313 | 977 |
if ty < ViewTopY + t then |
978 |
begin |
|
979 |
if abs(tx - ox) < abs(ty - oy) then |
|
980 |
ty:= max(ViewTopY + t, oy + t) |
|
981 |
else |
|
982 |
ty:= max(ViewTopY + t, ty); |
|
983 |
end; |
|
10080 | 984 |
|
10082 | 985 |
dAngle := DxDy2Angle(int2hwfloat(ty - oy), int2hwfloat(tx - ox)) + 90; |
10080 | 986 |
|
10312 | 987 |
DrawSpriteRotatedF(sprFinger, tx, ty, RealTicks div 32 mod 16, 1, dAngle); |
10000
d657b6656c19
position "finger"/pointer over current hog above tags
sheepluva
parents:
9998
diff
changeset
|
988 |
end; |
4388 | 989 |
|
10001
ec523563826e
disallow currenthh arrow to go offscreen, always point in direction of the hog - this should make the life of new players easier
sheepluva
parents:
10000
diff
changeset
|
990 |
|
4388 | 991 |
if (Gear^.State and gstDrowning) = 0 then |
992 |
if (Gear^.State and gstHHThinking) <> 0 then |
|
993 |
DrawSprite(sprQuestion, ox - 10, oy - cHHRadius - 34, (RealTicks shr 9) mod 8) |
|
994 |
end |
|
995 |
end; |
|
996 |
||
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6999
diff
changeset
|
997 |
if HH^.Effects[hePoisoned] <> 0 then |
4388 | 998 |
begin |
999 |
Tint($00, $FF, $40, $80); |
|
10142 | 1000 |
DrawTextureRotatedF(SpritesData[sprSmokeWhite].texture, 1.5, 0, 0, sx, sy, 0, 1, 22, 22, 360 - (RealTicks shr 5) mod 360); |
4388 | 1001 |
end; |
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6999
diff
changeset
|
1002 |
if HH^.Effects[heResurrected] <> 0 then |
4388 | 1003 |
begin |
1004 |
Tint($f5, $db, $35, $20); |
|
1005 |
DrawSprite(sprVampiric, sx - 24, sy - 24, 0); |
|
1006 |
end; |
|
1007 |
||
9685
7d925e82e572
Tweak trophyrace to work better w/ skip (probably, needs testing), drop Invulnerable in favour of effects - heInvulnerable is already in effects,
nemo
parents:
9667
diff
changeset
|
1008 |
if (Gear^.Hedgehog^.Effects[heInvulnerable] <> 0) then |
4388 | 1009 |
begin |
1010 |
Tint($FF, $FF, $FF, max($40, round($FF * abs(1 - ((RealTicks div 2 + Gear^.uid * 491) mod 1500) / 750)))); |
|
1011 |
DrawSprite(sprInvulnerable, sx - 24, sy - 24, 0); |
|
1012 |
end; |
|
8557 | 1013 |
|
8656
a8282143a8df
use opacity to indicate thawing. not totally happy w/ effect, but argument was made to indicate some progress towards thaw. drop "exit" since it really wasn't helpful, and not rendering tags, was more annoying than fun.
nemo
parents:
8628
diff
changeset
|
1014 |
if HH^.Effects[heFrozen] < 150000 then |
8557 | 1015 |
begin |
8656
a8282143a8df
use opacity to indicate thawing. not totally happy w/ effect, but argument was made to indicate some progress towards thaw. drop "exit" since it really wasn't helpful, and not rendering tags, was more annoying than fun.
nemo
parents:
8628
diff
changeset
|
1016 |
if HH^.Effects[heFrozen] < 150000 then |
8681
d0fc1dca739c
yeah. this was a bad idea. the minor difference in thaw speed vs last hog of team never unthawing.
nemo
parents:
8656
diff
changeset
|
1017 |
Tint($FF, $FF, $FF, min(255,127+HH^.Effects[heFrozen] div 800)); |
8656
a8282143a8df
use opacity to indicate thawing. not totally happy w/ effect, but argument was made to indicate some progress towards thaw. drop "exit" since it really wasn't helpful, and not rendering tags, was more annoying than fun.
nemo
parents:
8628
diff
changeset
|
1018 |
|
8684 | 1019 |
iceOffset:= min(32, HH^.Effects[heFrozen] div 8); |
8560 | 1020 |
r.x := 128; |
8684 | 1021 |
r.y := 96 - iceOffset; |
1022 |
r.w := 32; |
|
8689 | 1023 |
r.h := iceOffset; |
10324
5d90d8ca9657
tweak code of DrawTextureFromRectDir a bit, removing issue with different x offset depending on dir. also removing the workaround wrt that issue in the frozen hog code
sheepluva
parents:
10313
diff
changeset
|
1024 |
DrawTextureFromRectDir(sx - 16 + sign*2, sy + 16 - iceoffset, r.w, r.h, @r, HHTexture, sign); |
8684 | 1025 |
|
8557 | 1026 |
|
8656
a8282143a8df
use opacity to indicate thawing. not totally happy w/ effect, but argument was made to indicate some progress towards thaw. drop "exit" since it really wasn't helpful, and not rendering tags, was more annoying than fun.
nemo
parents:
8628
diff
changeset
|
1027 |
if HH^.Effects[heFrozen] < 150000 then |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1028 |
untint; |
8557 | 1029 |
end; |
1030 |
||
1031 |
||
4388 | 1032 |
if cVampiric and |
1033 |
(CurrentHedgehog^.Gear <> nil) and |
|
1034 |
(CurrentHedgehog^.Gear = Gear) then |
|
1035 |
begin |
|
1036 |
Tint($FF, 0, 0, max($40, round($FF * abs(1 - (RealTicks mod 1500) / 750)))); |
|
1037 |
DrawSprite(sprVampiric, sx - 24, sy - 24, 0); |
|
1038 |
end; |
|
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1039 |
untint |
4388 | 1040 |
end; |
1041 |
||
1042 |
||
1043 |
procedure RenderGear(Gear: PGear; x, y: LongInt); |
|
1044 |
var |
|
1045 |
HHGear: PGear; |
|
7093 | 1046 |
vg: PVisualGear; |
4388 | 1047 |
i: Longword; |
6788
88036f0e0a92
I think this is a little more efficient than dxdy, and easier to read. We call DxDy2 a lot, can any of those use Angle/DirAngle?
nemo
parents:
6700
diff
changeset
|
1048 |
aAngle: real; |
4388 | 1049 |
startX, endX, startY, endY: LongInt; |
1050 |
begin |
|
9041
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1051 |
if Gear^.State and gstFrozen <> 0 then Tint($A0, $A0, $FF, $FF); |
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1052 |
//if Gear^.State and gstFrozen <> 0 then Tint(IceColor or $FF); |
5612
2638dec1b323
This really should have been a TPoint for consistency
nemo
parents:
5561
diff
changeset
|
1053 |
if Gear^.Target.X <> NoPointX then |
5507
1040c0946ef8
This should make bee/airstrikes play nicer with infinite attack mode
nemo
parents:
5472
diff
changeset
|
1054 |
if Gear^.AmmoType = amBee then |
6999 | 1055 |
DrawSpriteRotatedF(sprTargetBee, Gear^.Target.X + WorldDx, Gear^.Target.Y + WorldDy, 0, 0, (RealTicks shr 3) mod 360) |
8689 | 1056 |
else if Gear^.AmmoType = amIceGun then |
1057 |
//DrawSprite(sprSnowDust, Gear^.Target.X + WorldDx, Gear^.Target.Y + WorldDy, (RealTicks shr 2) mod 8) |
|
7093 | 1058 |
//DrawTextureRotatedF(SpritesData[sprSnowDust].Texture, 1, 0, 0, Gear^.Target.X + WorldDx, Gear^.Target.Y + WorldDy, (RealTicks shr 2) mod 8, 1, 22, 22, (RealTicks shr 3) mod 360) |
1059 |
DrawTextureRotatedF(SpritesData[sprSnowDust].Texture, 1/(1+(RealTicks shr 8) mod 5), 0, 0, Gear^.Target.X + WorldDx, Gear^.Target.Y + WorldDy, (RealTicks shr 2) mod 8, 1, 22, 22, (RealTicks shr 3) mod 360) |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6999
diff
changeset
|
1060 |
else |
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6999
diff
changeset
|
1061 |
DrawSpriteRotatedF(sprTargetP, Gear^.Target.X + WorldDx, Gear^.Target.Y + WorldDy, 0, 0, (RealTicks shr 3) mod 360); |
5507
1040c0946ef8
This should make bee/airstrikes play nicer with infinite attack mode
nemo
parents:
5472
diff
changeset
|
1062 |
|
4388 | 1063 |
case Gear^.Kind of |
6999 | 1064 |
gtGrenade: DrawSpriteRotated(sprBomb, x, y, 0, Gear^.DirAngle); |
1065 |
gtSnowball: DrawSpriteRotated(sprSnowball, x, y, 0, Gear^.DirAngle); |
|
1066 |
gtGasBomb: DrawSpriteRotated(sprCheese, x, y, 0, Gear^.DirAngle); |
|
8689 | 1067 |
|
5871
09daa06191d7
Since we are tweaking molotov. make the flame flickery and add a drowning frame
nemo
parents:
5787
diff
changeset
|
1068 |
gtMolotov: if (Gear^.State and gstDrowning) = 0 then |
6999 | 1069 |
DrawSpriteRotatedF(sprMolotov, x, y, (RealTicks div 125) mod 8, hwSign(Gear^.dX), Gear^.DirAngle * hwSign(Gear^.dX)) |
5871
09daa06191d7
Since we are tweaking molotov. make the flame flickery and add a drowning frame
nemo
parents:
5787
diff
changeset
|
1070 |
else DrawSprite(sprMolotov, x, y, 8); |
4388 | 1071 |
|
1072 |
gtRCPlane: begin |
|
6788
88036f0e0a92
I think this is a little more efficient than dxdy, and easier to read. We call DxDy2 a lot, can any of those use Angle/DirAngle?
nemo
parents:
6700
diff
changeset
|
1073 |
aangle:= Gear^.Angle * 360 / 4096; |
88036f0e0a92
I think this is a little more efficient than dxdy, and easier to read. We call DxDy2 a lot, can any of those use Angle/DirAngle?
nemo
parents:
6700
diff
changeset
|
1074 |
if Gear^.Tag < 0 then aangle:= 360-aangle; |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
1075 |
Tint(Gear^.Tint); |
6999 | 1076 |
DrawSpriteRotatedF(sprPlane, x, y, 0, Gear^.Tag, aangle - 90); |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1077 |
untint; |
6999 | 1078 |
DrawSpriteRotatedF(sprPlane, x, y, 1, Gear^.Tag, aangle - 90) |
4388 | 1079 |
end; |
6999 | 1080 |
gtBall: DrawSpriteRotatedF(sprBalls, x, y, Gear^.Tag,0, Gear^.DirAngle); |
4388 | 1081 |
|
1082 |
gtPortal: if ((Gear^.Tag and 1) = 0) // still moving? |
|
7272
71df899c4163
Second part of the change. Make collision check use the new mask bit.
nemo
parents:
7168
diff
changeset
|
1083 |
or (Gear^.LinkedGear = nil) or (Gear^.LinkedGear^.LinkedGear <> Gear) // not linked&backlinked? |
71df899c4163
Second part of the change. Make collision check use the new mask bit.
nemo
parents:
7168
diff
changeset
|
1084 |
or ((Gear^.LinkedGear^.Tag and 1) = 0) then // linked portal still moving? |
6999 | 1085 |
DrawSpriteRotatedF(sprPortal, x, y, Gear^.Tag, hwSign(Gear^.dX), Gear^.DirAngle) |
1086 |
else DrawSpriteRotatedF(sprPortal, x, y, 4 + Gear^.Tag div 2, hwSign(Gear^.dX), Gear^.DirAngle); |
|
4388 | 1087 |
|
1088 |
gtDrill: if (Gear^.State and gsttmpFlag) <> 0 then |
|
6999 | 1089 |
DrawSpriteRotated(sprAirDrill, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)) |
4388 | 1090 |
else |
6999 | 1091 |
DrawSpriteRotated(sprDrill, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 1092 |
|
1093 |
gtHedgehog: DrawHH(Gear, x, y); |
|
1094 |
||
6999 | 1095 |
gtShell: DrawSpriteRotated(sprBazookaShell, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 1096 |
|
1097 |
gtGrave: begin |
|
1098 |
DrawTextureF(Gear^.Hedgehog^.Team^.GraveTex, 1, x, y, (GameTicks shr 7+Gear^.uid) and 7, 1, 32, 32); |
|
1099 |
if Gear^.Health > 0 then |
|
1100 |
begin |
|
1101 |
//Tint($33, $33, $FF, max($40, round($FF * abs(1 - (GameTicks mod (6000 div Gear^.Health)) / 750)))); |
|
1102 |
Tint($f5, $db, $35, max($40, round($FF * abs(1 - (GameTicks mod 1500) / (750 + Gear^.Health))))); |
|
1103 |
//Tint($FF, $FF, $FF, max($40, round($FF * abs(1 - (RealTicks mod 1500) / 750)))); |
|
1104 |
DrawSprite(sprVampiric, x - 24, y - 24, 0); |
|
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1105 |
untint |
4388 | 1106 |
end |
1107 |
end; |
|
6999 | 1108 |
gtBee: DrawSpriteRotatedF(sprBee, x, y, (GameTicks shr 5) mod 2, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 1109 |
gtPickHammer: DrawSprite(sprPHammer, x - 16, y - 50 + LongInt(((GameTicks shr 5) and 1) * 2), 0); |
1110 |
gtRope: DrawRope(Gear); |
|
8689 | 1111 |
|
9041
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1112 |
gtMine: begin |
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1113 |
if (((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420)) and (Gear^.Health <> 0) then |
6999 | 1114 |
DrawSpriteRotated(sprMineOff, x, y, 0, Gear^.DirAngle) |
9041
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1115 |
else if Gear^.Health <> 0 then |
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1116 |
DrawSpriteRotated(sprMineOn, x, y, 0, Gear^.DirAngle) |
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1117 |
else DrawSpriteRotated(sprMineDead, x, y, 0, Gear^.DirAngle); |
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1118 |
end; |
8689 | 1119 |
|
4388 | 1120 |
gtSMine: if (((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420)) and (Gear^.Health <> 0) then |
6999 | 1121 |
DrawSpriteRotated(sprSMineOff, x, y, 0, Gear^.DirAngle) |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1122 |
else if Gear^.Health <> 0 then |
6999 | 1123 |
DrawSpriteRotated(sprSMineOn, x, y, 0, Gear^.DirAngle) |
1124 |
else DrawSpriteRotated(sprMineDead, x, y, 0, Gear^.DirAngle); |
|
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7721
diff
changeset
|
1125 |
gtKnife: DrawSpriteRotatedF(sprKnife, x, y, 0, hwSign(Gear^.dX), Gear^.DirAngle); |
8689 | 1126 |
|
7168
8defaabce92e
warp sound when AI survival hog respawns. attempt at a bit of a crate spawn animation (moar sparkles and a quick fadein)
nemo
parents:
7165
diff
changeset
|
1127 |
gtCase: begin |
7276 | 1128 |
if Gear^.Timer > 1000 then |
5313
5e18eaef65d0
now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents:
5197
diff
changeset
|
1129 |
begin |
7276 | 1130 |
if ((Gear^.Pos and posCaseAmmo) <> 0) then |
1131 |
begin |
|
9041
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1132 |
if Gear^.State and gstFrozen <> 0 then |
9044
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1133 |
DrawSprite(sprCase, x - 24, y - 28, 0) |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1134 |
else |
9041
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1135 |
begin |
9044
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1136 |
i:= (GameTicks shr 6) mod 64; |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1137 |
if i > 18 then i:= 0; |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1138 |
DrawSprite(sprCase, x - 24, y - 24, i) |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1139 |
end |
7276 | 1140 |
end |
1141 |
else if ((Gear^.Pos and posCaseHealth) <> 0) then |
|
1142 |
begin |
|
9041
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1143 |
if Gear^.State and gstFrozen <> 0 then |
9044
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1144 |
DrawSprite(sprFAid, x - 24, y - 28, 0) |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1145 |
else |
9041
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1146 |
begin |
9044
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1147 |
i:= ((GameTicks shr 6) + 38) mod 64; |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1148 |
if i > 13 then i:= 0; |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1149 |
DrawSprite(sprFAid, x - 24, y - 24, i) |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1150 |
end |
7276 | 1151 |
end |
1152 |
else if ((Gear^.Pos and posCaseUtility) <> 0) then |
|
1153 |
begin |
|
9041
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1154 |
if Gear^.State and gstFrozen <> 0 then |
9044
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1155 |
DrawSprite(sprUtility, x - 24, y - 28, 0) |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1156 |
else |
9041
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1157 |
begin |
9044
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1158 |
i:= (GameTicks shr 6) mod 70; |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1159 |
if i > 23 then i:= 0; |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1160 |
i:= i mod 12; |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1161 |
DrawSprite(sprUtility, x - 24, y - 24, i) |
8a829987d514
as long as a generic placeholder tint is in place. can't just exit
nemo
parents:
9041
diff
changeset
|
1162 |
end |
9041
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1163 |
end |
7276 | 1164 |
end; |
7337
c224cd2d32f3
Allow script to set number of ammo in a crate. untested.
nemo
parents:
7276
diff
changeset
|
1165 |
if Gear^.Timer < 1833 then |
5313
5e18eaef65d0
now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents:
5197
diff
changeset
|
1166 |
begin |
7276 | 1167 |
DrawTextureRotatedF(SpritesData[sprPortal].texture, min(abs(1.25 - (Gear^.Timer mod 1333) / 400), 1.25), 0, 0, |
7721 | 1168 |
x, LongInt(Gear^.Angle) + WorldDy - 16, 4 + Gear^.Tag, 1, 32, 32, 270); |
7276 | 1169 |
end |
7168
8defaabce92e
warp sound when AI survival hog respawns. attempt at a bit of a crate spawn animation (moar sparkles and a quick fadein)
nemo
parents:
7165
diff
changeset
|
1170 |
end; |
4388 | 1171 |
gtExplosives: begin |
1172 |
if ((Gear^.State and gstDrowning) <> 0) then |
|
1173 |
DrawSprite(sprExplosivesRoll, x - 24, y - 24, 0) |
|
1174 |
else if Gear^.State and gstAnimation = 0 then |
|
1175 |
begin |
|
1176 |
i:= (GameTicks shr 6 + Gear^.uid*3) mod 64; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1177 |
if i > 18 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1178 |
i:= 0; |
4388 | 1179 |
DrawSprite(sprExplosives, x - 24, y - 24, i) |
1180 |
end |
|
1181 |
else if Gear^.State and gsttmpFlag = 0 then |
|
6999 | 1182 |
DrawSpriteRotatedF(sprExplosivesRoll, x, y + 4, 0, 0, Gear^.DirAngle) |
4388 | 1183 |
else |
9041
aefe46d64dd9
Make frozen crates uncollectable, add some tinting to frozen items. Suggestions needed for what should happen to explosives
nemo
parents:
8854
diff
changeset
|
1184 |
DrawSpriteRotatedF(sprExplosivesRoll, x, y + 4, 1, 0, Gear^.DirAngle) |
4388 | 1185 |
end; |
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6982
diff
changeset
|
1186 |
gtDynamite: DrawSprite(sprDynamite, x - 16, y - 25, Gear^.Tag and 1, Gear^.Tag shr 1); |
6999 | 1187 |
gtClusterBomb: DrawSpriteRotated(sprClusterBomb, x, y, 0, Gear^.DirAngle); |
4388 | 1188 |
gtCluster: DrawSprite(sprClusterParticle, x - 8, y - 8, 0); |
6324 | 1189 |
gtFlame: if Gear^.Tag and 1 = 0 then |
1190 |
DrawTextureF(SpritesData[sprFlame].Texture, 2 / (Gear^.Tag mod 3 + 2), x, y, (GameTicks shr 7 + LongWord(Gear^.Tag)) mod 8, 1, 16, 16) |
|
1191 |
else DrawTextureF(SpritesData[sprFlame].Texture, 2 / (Gear^.Tag mod 3 + 2), x, y, (GameTicks shr 7 + LongWord(Gear^.Tag)) mod 8, -1, 16, 16); |
|
4388 | 1192 |
gtParachute: begin |
1193 |
DrawSprite(sprParachute, x - 24, y - 48, 0); |
|
1194 |
DrawAltWeapon(Gear, x + 1, y - 3) |
|
1195 |
end; |
|
6308 | 1196 |
gtAirAttack: begin |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
1197 |
Tint(Gear^.Tint); |
6999 | 1198 |
DrawSpriteRotatedF(sprAirplane, x, y, 0, Gear^.Tag, 0); |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1199 |
untint; |
6999 | 1200 |
DrawSpriteRotatedF(sprAirplane, x, y, 1, Gear^.Tag, 0); |
6308 | 1201 |
end; |
6999 | 1202 |
gtAirBomb: DrawSpriteRotated(sprAirBomb, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 1203 |
gtTeleport: begin |
1204 |
HHGear:= Gear^.Hedgehog^.Gear; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1205 |
if not Gear^.Hedgehog^.Unplaced then |
6999 | 1206 |
DrawSpriteRotatedF(sprTeleport, x + 1, y - 3, Gear^.Pos, hwSign(Gear^.dX), 0); |
1207 |
DrawSpriteRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
4388 | 1208 |
end; |
1209 |
gtSwitcher: DrawSprite(sprSwitch, x - 16, y - 56, (GameTicks shr 6) mod 12); |
|
1210 |
gtTarget: begin |
|
1211 |
Tint($FF, $FF, $FF, round($FF * Gear^.Timer / 1000)); |
|
1212 |
DrawSprite(sprTarget, x - 16, y - 16, 0); |
|
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1213 |
untint; |
4388 | 1214 |
end; |
6999 | 1215 |
gtMortar: DrawSpriteRotated(sprMortar, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 1216 |
gtCake: if Gear^.Pos = 6 then |
6999 | 1217 |
DrawSpriteRotatedF(sprCakeWalk, x, y, (GameTicks div 40) mod 6, hwSign(Gear^.dX), Gear^.DirAngle * hwSign(Gear^.dX) + 90) |
4388 | 1218 |
else |
6999 | 1219 |
DrawSpriteRotatedF(sprCakeDown, x, y, 5 - Gear^.Pos, hwSign(Gear^.dX), Gear^.DirAngle * hwSign(Gear^.dX) + 90); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1220 |
gtSeduction: if Gear^.Pos >= 14 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1221 |
DrawSprite(sprSeduction, x - 16, y - 16, 0); |
8689 | 1222 |
|
6999 | 1223 |
gtWatermelon: DrawSpriteRotatedF(sprWatermelon, x, y, 0, 0, Gear^.DirAngle); |
1224 |
gtMelonPiece: DrawSpriteRotatedF(sprWatermelon, x, y, 1, 0, Gear^.DirAngle); |
|
1225 |
gtHellishBomb: DrawSpriteRotated(sprHellishBomb, x, y, 0, Gear^.DirAngle); |
|
4388 | 1226 |
gtBirdy: begin |
1227 |
if Gear^.State and gstAnimation = gstAnimation then |
|
1228 |
begin |
|
1229 |
if Gear^.State and gstTmpFlag = 0 then // Appearing |
|
1230 |
begin |
|
1231 |
endX:= x - WorldDx; |
|
1232 |
endY:= y - WorldDy; |
|
1233 |
if Gear^.Tag < 0 then |
|
7829
c1dc7839d7b9
Set minimums on a few values to avoid camera zooming out past them. partly Issue #430. Might be worth defining a new constant for this.
nemo
parents:
7730
diff
changeset
|
1234 |
startX:= max(max(LAND_WIDTH,4096) + 1024, endX + 2048) |
4388 | 1235 |
else |
7829
c1dc7839d7b9
Set minimums on a few values to avoid camera zooming out past them. partly Issue #430. Might be worth defining a new constant for this.
nemo
parents:
7730
diff
changeset
|
1236 |
startX:= max(-max(LAND_WIDTH,4096) - 1024, endX - 2048); |
8414
c1ac0b64315e
Start piano higher (piano on maps that matched land_height was really weird before). Experiment w/ trying to make birdy shrink into distance to avoid odd birdy vanishes if tracking it.
nemo
parents:
8370
diff
changeset
|
1237 |
startY:= endY - 1024; |
c1ac0b64315e
Start piano higher (piano on maps that matched land_height was really weird before). Experiment w/ trying to make birdy shrink into distance to avoid odd birdy vanishes if tracking it.
nemo
parents:
8370
diff
changeset
|
1238 |
DrawTextureF(SpritesData[sprBirdy].Texture, min(Gear^.Timer/750,1), startX + WorldDx + LongInt(round((endX - startX) * (-power(2, -10 * LongInt(Gear^.Timer)/2000) + 1))), startY + WorldDy + LongInt(round((endY - startY) * sqrt(1 - power((LongInt(Gear^.Timer)/2000)-1, 2)))), ((Gear^.Pos shr 6) or (RealTicks shr 8)) mod 2, Gear^.Tag, 75, 75); |
4388 | 1239 |
end |
1240 |
else // Disappearing |
|
1241 |
begin |
|
1242 |
startX:= x - WorldDx; |
|
1243 |
startY:= y - WorldDy; |
|
1244 |
if Gear^.Tag > 0 then |
|
7829
c1dc7839d7b9
Set minimums on a few values to avoid camera zooming out past them. partly Issue #430. Might be worth defining a new constant for this.
nemo
parents:
7730
diff
changeset
|
1245 |
endX:= max(max(LAND_WIDTH,4096) + 1024, startX + 2048) |
4388 | 1246 |
else |
7829
c1dc7839d7b9
Set minimums on a few values to avoid camera zooming out past them. partly Issue #430. Might be worth defining a new constant for this.
nemo
parents:
7730
diff
changeset
|
1247 |
endX:= max(-max(LAND_WIDTH,4096) - 1024, startX - 2048); |
8414
c1ac0b64315e
Start piano higher (piano on maps that matched land_height was really weird before). Experiment w/ trying to make birdy shrink into distance to avoid odd birdy vanishes if tracking it.
nemo
parents:
8370
diff
changeset
|
1248 |
endY:= startY + 1024; |
c1ac0b64315e
Start piano higher (piano on maps that matched land_height was really weird before). Experiment w/ trying to make birdy shrink into distance to avoid odd birdy vanishes if tracking it.
nemo
parents:
8370
diff
changeset
|
1249 |
DrawTextureF(SpritesData[sprBirdy].Texture, min((2000-Gear^.Timer)/750,1), startX + WorldDx + LongInt(round((endX - startX) * power(2, 10 * (LongInt(Gear^.Timer)/2000 - 1)))) + hwRound(Gear^.dX * Gear^.Timer), startY + WorldDy + LongInt(round((endY - startY) * cos(LongInt(Gear^.Timer)/2000 * (Pi/2)) - (endY - startY))) + hwRound(Gear^.dY * Gear^.Timer), ((Gear^.Pos shr 6) or (RealTicks shr 8)) mod 2, Gear^.Tag, 75, 75); |
4388 | 1250 |
end; |
1251 |
end |
|
1252 |
else |
|
5528
c539e5c81870
slight visual tweak. birdy's wings beat faster if he's just about tired out
nemo
parents:
5526
diff
changeset
|
1253 |
begin |
c539e5c81870
slight visual tweak. birdy's wings beat faster if he's just about tired out
nemo
parents:
5526
diff
changeset
|
1254 |
if Gear^.Health < 250 then |
c539e5c81870
slight visual tweak. birdy's wings beat faster if he's just about tired out
nemo
parents:
5526
diff
changeset
|
1255 |
DrawTextureF(SpritesData[sprBirdy].Texture, 1, x, y, ((Gear^.Pos shr 6) or (RealTicks shr 7)) mod 2, Gear^.Tag, 75, 75) |
c539e5c81870
slight visual tweak. birdy's wings beat faster if he's just about tired out
nemo
parents:
5526
diff
changeset
|
1256 |
else |
c539e5c81870
slight visual tweak. birdy's wings beat faster if he's just about tired out
nemo
parents:
5526
diff
changeset
|
1257 |
DrawTextureF(SpritesData[sprBirdy].Texture, 1, x, y, ((Gear^.Pos shr 6) or (RealTicks shr 8)) mod 2, Gear^.Tag, 75, 75); |
c539e5c81870
slight visual tweak. birdy's wings beat faster if he's just about tired out
nemo
parents:
5526
diff
changeset
|
1258 |
end; |
4388 | 1259 |
end; |
6999 | 1260 |
gtEgg: DrawTextureRotatedF(SpritesData[sprEgg].Texture, 1, 0, 0, x, y, 0, 1, 16, 16, Gear^.DirAngle); |
4388 | 1261 |
gtPiano: begin |
1262 |
if (Gear^.State and gstDrowning) = 0 then |
|
1263 |
begin |
|
1264 |
Tint($FF, $FF, $FF, $10); |
|
1265 |
for i:= 8 downto 1 do |
|
6322
b310f0bc8dde
If I'm going to be arbitrary about it, might as well go for the more minimal arbitrariness
nemo
parents:
6318
diff
changeset
|
1266 |
DrawTextureF(SpritesData[sprPiano].Texture, 1, x, y - hwRound(Gear^.dY * 4 * i), 0, 1, 128, 128); |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1267 |
untint |
4388 | 1268 |
end; |
6322
b310f0bc8dde
If I'm going to be arbitrary about it, might as well go for the more minimal arbitrariness
nemo
parents:
6318
diff
changeset
|
1269 |
DrawTextureF(SpritesData[sprPiano].Texture, 1, x, y, 0, 1, 128, 128); |
4388 | 1270 |
end; |
1271 |
gtPoisonCloud: begin |
|
1272 |
if Gear^.Timer < 1020 then |
|
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
1273 |
Tint(Gear^.Tint and $FFFFFF00 or Gear^.Timer div 8) |
4388 | 1274 |
else if Gear^.Timer > 3980 then |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
1275 |
Tint(Gear^.Tint and $FFFFFF00 or (5000 - Gear^.Timer) div 8) |
4388 | 1276 |
else |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
1277 |
Tint(Gear^.Tint); |
10142 | 1278 |
DrawTextureRotatedF(SpritesData[sprSmokeWhite].texture, 3, 0, 0, x, y, 0, 1, 22, 22, (RealTicks shr 4 + Gear^.UID * 100) mod 360); |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1279 |
untint |
4388 | 1280 |
end; |
1281 |
gtResurrector: begin |
|
6999 | 1282 |
DrawSpriteRotated(sprCross, x, y, 0, 0); |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
1283 |
Tint(Gear^.Tint and $FFFFFF00 or max($00, round($C0 * abs(1 - (GameTicks mod 6000) / 3000)))); |
4388 | 1284 |
DrawTexture(x - 108, y - 108, SpritesData[sprVampiric].Texture, 4.5); |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1285 |
untint; |
4388 | 1286 |
end; |
6999 | 1287 |
gtNapalmBomb: DrawSpriteRotated(sprNapalmBomb, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
5519 | 1288 |
gtFlake: if Gear^.State and (gstDrowning or gstTmpFlag) <> 0 then |
5024 | 1289 |
begin |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
10001
diff
changeset
|
1290 |
Tint(Gear^.Tint); |
5025
ac1691d35cf2
Land sprayer tweaks, make land spray and mudball not end turn
nemo
parents:
5024
diff
changeset
|
1291 |
// Needs a nicer white texture to tint |
6999 | 1292 |
DrawTextureRotatedF(SpritesData[sprSnowDust].Texture, 1, 0, 0, x, y, 0, 1, 8, 8, Gear^.DirAngle); |
1293 |
//DrawSpriteRotated(sprSnowDust, x, y, 0, Gear^.DirAngle); |
|
5472 | 1294 |
//DrawTexture(x, y, SpritesData[sprVampiric].Texture, 0.1); |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1295 |
untint; |
5024 | 1296 |
end |
5787 | 1297 |
else //if not isInLag then |
5024 | 1298 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1299 |
if isInLag and (Gear^.FlightTime < 256) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1300 |
inc(Gear^.FlightTime, 8) |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7978
diff
changeset
|
1301 |
else if (not isInLag) and (Gear^.FlightTime > 0) then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1302 |
dec(Gear^.FlightTime, 8); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1303 |
if Gear^.FlightTime > 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1304 |
Tint($FF, $FF, $FF, $FF-min(255,Gear^.FlightTime)); |
4617 | 1305 |
if vobVelocity = 0 then |
5024 | 1306 |
DrawSprite(sprFlake, x, y, Gear^.Timer) |
1307 |
else |
|
6999 | 1308 |
DrawSpriteRotatedF(sprFlake, x, y, Gear^.Timer, 1, Gear^.DirAngle); |
5024 | 1309 |
//DrawSprite(sprFlake, x-SpritesData[sprFlake].Width div 2, y-SpritesData[sprFlake].Height div 2, Gear^.Timer) |
6999 | 1310 |
//DrawSpriteRotatedF(sprFlake, x-SpritesData[sprFlake].Width div 2, y-SpritesData[sprFlake].Height div 2, Gear^.Timer, 1, Gear^.DirAngle); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1311 |
if Gear^.FlightTime > 0 then |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1312 |
untint; |
5024 | 1313 |
end; |
8161 | 1314 |
//gtStructure: DrawSprite(sprTarget, x - 16, y - 16, 0); |
5706 | 1315 |
gtTardis: if Gear^.Pos <> 4 then |
1316 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1317 |
if Gear^.Pos = 2 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1318 |
Tint(Gear^.Hedgehog^.Team^.Clan^.Color shl 8 or $FF) |
8689 | 1319 |
else |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1320 |
Tint(Gear^.Hedgehog^.Team^.Clan^.Color shl 8 or max($00, round(Gear^.Power * (1-abs(0.5 - (GameTicks mod 2000) / 2000))))); |
5706 | 1321 |
DrawSprite(sprTardis, x-24, y-63,0); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1322 |
if Gear^.Pos = 2 then |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1323 |
untint |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1324 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1325 |
Tint($FF,$FF,$FF,max($00, round(Gear^.Power * (1-abs(0.5 - (GameTicks mod 2000) / 2000))))); |
5740 | 1326 |
DrawSprite(sprTardis, x-24, y-63,1); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1327 |
if Gear^.Pos <> 2 then |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1328 |
untint |
5740 | 1329 |
(* |
5728 | 1330 |
Tint(Gear^.Hedgehog^.Team^.Clan^.Color shl 8 or max($00, round(Gear^.Power * abs(1 - (RealTicks mod 500) / 250)))); |
1331 |
DrawTexture(x-6, y-70, SpritesData[sprVampiric].Texture, 0.25); |
|
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1332 |
untint |
5740 | 1333 |
*) |
5706 | 1334 |
end; |
7093 | 1335 |
gtIceGun: begin |
1336 |
HHGear := Gear^.Hedgehog^.Gear; |
|
1337 |
if HHGear <> nil then |
|
1338 |
begin |
|
7721 | 1339 |
i:= hwRound(hwSqr(Gear^.X - HHGear^.X) + hwSqr(Gear^.Y - HHGear^.Y)); |
1340 |
if RealTicks mod max(1,50 - (round(sqrt(i)) div 4)) = 0 then // experiment in "intensifying" might not get used |
|
7093 | 1341 |
begin |
1342 |
vg:= AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtDust, 1); |
|
1343 |
if vg <> nil then |
|
1344 |
begin |
|
7721 | 1345 |
i:= random(100) + 155; |
1346 |
vg^.Tint:= i shl 24 or i shl 16 or $FF shl 8 or Longword(random(200) + 55); |
|
7093 | 1347 |
vg^.Angle:= random(360); |
7721 | 1348 |
vg^.dx:= 0.001 * random(80); |
1349 |
vg^.dy:= 0.001 * random(80) |
|
7093 | 1350 |
end |
1351 |
end; |
|
1352 |
if RealTicks mod 2 = 0 then |
|
1353 |
begin |
|
1354 |
i:= random(100)+100; |
|
1355 |
if Gear^.Target.X <> NoPointX then |
|
8628 | 1356 |
begin |
1357 |
DrawLine(Gear^.Target.X, Gear^.Target.Y, hwRound(HHGear^.X), hwRound(HHGear^.Y), 4.0, i, i, $FF, $40); |
|
1358 |
end |
|
1359 |
else |
|
1360 |
begin |
|
8689 | 1361 |
DrawLine(hwRound(HHGear^.X), hwRound(HHGear^.Y), hwRound(Gear^.X), hwRound(Gear^.Y), 4.0, i, i, $FF, $40); |
8628 | 1362 |
end; |
7093 | 1363 |
end |
1364 |
end |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7339
diff
changeset
|
1365 |
end; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7339
diff
changeset
|
1366 |
gtGenericFaller: DrawCircle(x, y, 3, 3, $FF, $00, $00, $FF); // debug |
4388 | 1367 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1368 |
if Gear^.RenderTimer and (Gear^.Tex <> nil) then |
6999 | 1369 |
DrawTextureCentered(x + 8, y + 8, Gear^.Tex); |
9666
8dcb25112d96
- Bring back white dot in the center of crosshair. Crosshair is blurred now!
unc0rr
parents:
9655
diff
changeset
|
1370 |
if Gear^.State and gstFrozen <> 0 then untint |
4388 | 1371 |
end; |
1372 |
||
1373 |
end. |