author | unc0rr |
Fri, 23 Nov 2012 16:17:06 +0400 | |
changeset 8112 | d85dc8a8f41c |
parent 7978 | 2ce76d1f594b |
child 8026 | 4a4f21070479 |
child 8145 | 6408c0ba4ba1 |
permissions | -rw-r--r-- |
4976 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
6700 | 3 |
* Copyright (c) 2004-2012 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 |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
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 |
|
26 |
procedure RenderGear(Gear: PGear; x, y: LongInt); |
|
27 |
||
28 |
var RopePoints: record |
|
29 |
Count: Longword; |
|
30 |
HookAngle: GLfloat; |
|
31 |
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
|
32 |
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
|
33 |
dLen: hwFloat; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
34 |
b: boolean; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
35 |
end; |
4388 | 36 |
rounded: array[0..MAXROPEPOINTS + 2] of TVertex2f; |
37 |
end; |
|
38 |
||
39 |
implementation |
|
7093 | 40 |
uses uRender, uUtils, uVariables, uAmmos, Math, uVisualGears; |
4388 | 41 |
|
42 |
procedure DrawRopeLinesRQ(Gear: PGear); |
|
43 |
begin |
|
44 |
with RopePoints do |
|
45 |
begin |
|
46 |
rounded[Count].X:= hwRound(Gear^.X); |
|
47 |
rounded[Count].Y:= hwRound(Gear^.Y); |
|
48 |
rounded[Count + 1].X:= hwRound(Gear^.Hedgehog^.Gear^.X); |
|
49 |
rounded[Count + 1].Y:= hwRound(Gear^.Hedgehog^.Gear^.Y); |
|
50 |
end; |
|
51 |
||
52 |
if (RopePoints.Count > 0) or (Gear^.Elasticity.QWordValue > 0) then |
|
53 |
begin |
|
54 |
glDisable(GL_TEXTURE_2D); |
|
55 |
//glEnable(GL_LINE_SMOOTH); |
|
56 |
||
57 |
glPushMatrix; |
|
58 |
||
59 |
glTranslatef(WorldDx, WorldDy, 0); |
|
60 |
||
61 |
glLineWidth(4.0); |
|
62 |
||
63 |
Tint($C0, $C0, $C0, $FF); |
|
64 |
||
65 |
glVertexPointer(2, GL_FLOAT, 0, @RopePoints.rounded[0]); |
|
66 |
glDrawArrays(GL_LINE_STRIP, 0, RopePoints.Count + 2); |
|
67 |
Tint($FF, $FF, $FF, $FF); |
|
68 |
||
69 |
glPopMatrix; |
|
70 |
||
71 |
glEnable(GL_TEXTURE_2D); |
|
72 |
//glDisable(GL_LINE_SMOOTH) |
|
73 |
end |
|
74 |
end; |
|
75 |
||
76 |
||
6508
bf5db4517148
Fix regression from 6480 too. Extra assignments might make this slightly less efficient.
nemo
parents:
6490
diff
changeset
|
77 |
function DrawRopeLine(X1, Y1, X2, Y2, roplen: LongInt): LongInt; |
6490 | 78 |
var eX, eY, dX, dY: LongInt; |
79 |
i, sX, sY, x, y, d: LongInt; |
|
80 |
b: boolean; |
|
81 |
begin |
|
4388 | 82 |
if (X1 = X2) and (Y1 = Y2) then |
6490 | 83 |
begin |
84 |
//OutError('WARNING: zero length rope line!', false); |
|
85 |
exit |
|
86 |
end; |
|
4388 | 87 |
eX:= 0; |
88 |
eY:= 0; |
|
89 |
dX:= X2 - X1; |
|
90 |
dY:= Y2 - Y1; |
|
91 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
92 |
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
|
93 |
sX:= 1 |
4388 | 94 |
else |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
95 |
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
|
96 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
97 |
sX:= -1; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
98 |
dX:= -dX |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
99 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
100 |
else sX:= dX; |
4388 | 101 |
|
6490 | 102 |
if (dY > 0) then |
103 |
sY:= 1 |
|
4388 | 104 |
else |
6490 | 105 |
if (dY < 0) then |
4388 | 106 |
begin |
6490 | 107 |
sY:= -1; |
108 |
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
|
109 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
110 |
else |
6490 | 111 |
sY:= dY; |
112 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
113 |
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
|
114 |
d:= dX |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
115 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
116 |
d:= dY; |
6490 | 117 |
|
118 |
x:= X1; |
|
119 |
y:= Y1; |
|
120 |
||
121 |
for i:= 0 to d do |
|
122 |
begin |
|
123 |
inc(eX, dX); |
|
124 |
inc(eY, dY); |
|
125 |
b:= false; |
|
126 |
if (eX > d) then |
|
127 |
begin |
|
128 |
dec(eX, d); |
|
129 |
inc(x, sX); |
|
130 |
b:= true |
|
131 |
end; |
|
132 |
if (eY > d) then |
|
133 |
begin |
|
134 |
dec(eY, d); |
|
135 |
inc(y, sY); |
|
136 |
b:= true |
|
137 |
end; |
|
138 |
if b then |
|
139 |
begin |
|
140 |
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
|
141 |
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
|
142 |
DrawSprite(sprRopeNode, x - 2, y - 2, 0) |
6490 | 143 |
end |
6508
bf5db4517148
Fix regression from 6480 too. Extra assignments might make this slightly less efficient.
nemo
parents:
6490
diff
changeset
|
144 |
end; |
bf5db4517148
Fix regression from 6480 too. Extra assignments might make this slightly less efficient.
nemo
parents:
6490
diff
changeset
|
145 |
DrawRopeLine:= roplen; |
6490 | 146 |
end; |
147 |
||
148 |
procedure DrawRope(Gear: PGear); |
|
149 |
var roplen: LongInt; |
|
150 |
i: Longword; |
|
4388 | 151 |
begin |
152 |
if (cReducedQuality and rqSimpleRope) <> 0 then |
|
153 |
DrawRopeLinesRQ(Gear) |
|
154 |
else |
|
155 |
begin |
|
156 |
roplen:= 0; |
|
157 |
if RopePoints.Count > 0 then |
|
158 |
begin |
|
159 |
i:= 0; |
|
160 |
while i < Pred(RopePoints.Count) do |
|
161 |
begin |
|
6508
bf5db4517148
Fix regression from 6480 too. Extra assignments might make this slightly less efficient.
nemo
parents:
6490
diff
changeset
|
162 |
roplen:= DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
6490 | 163 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy, roplen); |
4388 | 164 |
inc(i) |
165 |
end; |
|
6508
bf5db4517148
Fix regression from 6480 too. Extra assignments might make this slightly less efficient.
nemo
parents:
6490
diff
changeset
|
166 |
roplen:= DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
6490 | 167 |
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
|
168 |
roplen:= DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
6490 | 169 |
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
|
170 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
171 |
else |
4388 | 172 |
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
|
173 |
roplen:= DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
6490 | 174 |
hwRound(Gear^.Hedgehog^.Gear^.X) + WorldDx, hwRound(Gear^.Hedgehog^.Gear^.Y) + WorldDy, roplen); |
4388 | 175 |
end; |
176 |
||
177 |
||
178 |
if RopePoints.Count > 0 then |
|
6999 | 179 |
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
|
180 |
else |
4388 | 181 |
if Gear^.Elasticity.QWordValue > 0 then |
6999 | 182 |
DrawSpriteRotated(sprRopeHook, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 183 |
end; |
184 |
||
185 |
||
186 |
procedure DrawAltWeapon(Gear: PGear; sx, sy: LongInt); |
|
187 |
begin |
|
188 |
with Gear^.Hedgehog^ do |
|
189 |
begin |
|
190 |
if not (((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) <> 0) and ((Gear^.State and gstAttacked) = 0)) then |
|
191 |
exit; |
|
192 |
DrawTexture(sx + 16, sy + 16, ropeIconTex); |
|
193 |
DrawTextureF(SpritesData[sprAMAmmos].Texture, 0.75, sx + 30, sy + 30, ord(CurAmmoType) - 1, 1, 32, 32); |
|
194 |
end; |
|
195 |
end; |
|
196 |
||
197 |
||
198 |
procedure DrawHH(Gear: PGear; ox, oy: LongInt); |
|
199 |
var i, t: LongInt; |
|
200 |
amt: TAmmoType; |
|
5615
104f69e798bb
changed aiming to be triggered when touching the crosshair
Xeli
parents:
5561
diff
changeset
|
201 |
sign, hx, hy, tx, ty, sx, sy, m: LongInt; // hedgehog, crosshair, temp, sprite, direction |
4388 | 202 |
dx, dy, ax, ay, aAngle, dAngle, hAngle, lx, ly: real; // laser, change |
203 |
defaultPos, HatVisible: boolean; |
|
204 |
HH: PHedgehog; |
|
205 |
CurWeapon: PAmmo; |
|
206 |
begin |
|
207 |
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
|
208 |
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
|
209 |
exit; |
4388 | 210 |
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
|
211 |
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
|
212 |
m:= -1; |
4388 | 213 |
sx:= ox + 1; // this offset is very common |
214 |
sy:= oy - 3; |
|
215 |
sign:= hwSign(Gear^.dX); |
|
216 |
||
217 |
if (Gear^.State and gstHHDeath) <> 0 then |
|
218 |
begin |
|
219 |
DrawSprite(sprHHDeath, ox - 16, oy - 26, Gear^.Pos); |
|
4810 | 220 |
Tint(HH^.Team^.Clan^.Color shl 8 or $FF); |
4388 | 221 |
DrawSprite(sprHHDeath, ox - 16, oy - 26, Gear^.Pos + 8); |
222 |
Tint($FF, $FF, $FF, $FF); |
|
223 |
exit |
|
224 |
end |
|
225 |
else if (Gear^.State and gstHHGone) <> 0 then |
|
226 |
begin |
|
6999 | 227 |
DrawSpriteRotatedF(sprTeleport, sx, sy, Gear^.Pos, sign, 0); |
4388 | 228 |
exit |
229 |
end; |
|
230 |
||
231 |
defaultPos:= true; |
|
232 |
HatVisible:= false; |
|
233 |
||
234 |
||
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
|
235 |
if HH^.Effects[hePoisoned] <> 0 then |
4388 | 236 |
begin |
237 |
Tint($00, $FF, $40, $40); |
|
6999 | 238 |
DrawTextureRotatedF(SpritesData[sprSmokeWhite].texture, 2, 0, 0, sx, sy, 0, 1, 22, 22, (RealTicks shr 36) mod 360); |
4388 | 239 |
Tint($FF, $FF, $FF, $FF) |
240 |
end; |
|
241 |
||
242 |
if ((Gear^.State and gstWinner) <> 0) and |
|
243 |
((CurAmmoGear = nil) or (CurAmmoGear^.Kind <> gtPickHammer)) then |
|
244 |
begin |
|
245 |
DrawHedgehog(sx, sy, |
|
246 |
sign, |
|
247 |
2, |
|
248 |
0, |
|
249 |
0); |
|
250 |
defaultPos:= false |
|
251 |
end; |
|
252 |
if (Gear^.State and gstDrowning) <> 0 then |
|
253 |
begin |
|
254 |
DrawHedgehog(sx, sy, |
|
255 |
sign, |
|
256 |
1, |
|
257 |
7, |
|
258 |
0); |
|
259 |
defaultPos:= false |
|
260 |
end else |
|
261 |
if (Gear^.State and gstLoser) <> 0 then |
|
262 |
begin |
|
263 |
DrawHedgehog(sx, sy, |
|
264 |
sign, |
|
265 |
2, |
|
266 |
3, |
|
267 |
0); |
|
268 |
defaultPos:= false |
|
269 |
end else |
|
270 |
||
271 |
if (Gear^.State and gstHHDriven) <> 0 then |
|
272 |
begin |
|
5145
120f4271f197
adjust crosshair criteria again. this should take care of sniper rifle and crosshair after attacking
nemo
parents:
5137
diff
changeset
|
273 |
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
|
274 |
/// 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
|
275 |
(((CurAmmoGear <> nil) and //((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0) and |
5136
948da1e50205
Fix a few crosshair bugs. Disable ShowCrosshair and just decide when drawing.
nemo
parents:
5041
diff
changeset
|
276 |
((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
|
277 |
/// 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
|
278 |
((CurAmmoGear = nil) and ((Ammoz[HH^.CurAmmoType].Ammo.Propz and ammoprop_NoCrosshair) = 0) and ((Gear^.State and gstAttacked) = 0))) then |
4388 | 279 |
begin |
280 |
(* These calculations are a little complex for a few reasons: |
|
281 |
1: I need to draw the laser from weapon origin to nearest land |
|
282 |
2: I need to start the beam outside the hedgie for attractiveness. |
|
283 |
3: I need to extend the beam beyond land. |
|
284 |
This routine perhaps should be pushed into uStore or somesuch instead of continuuing the increase in size of this function. |
|
285 |
*) |
|
286 |
dx:= sign * m * Sin(Gear^.Angle * pi / cMaxAngle); |
|
287 |
dy:= -Cos(Gear^.Angle * pi / cMaxAngle); |
|
288 |
if cLaserSighting then |
|
289 |
begin |
|
290 |
lx:= GetLaunchX(HH^.CurAmmoType, sign * m, Gear^.Angle); |
|
291 |
ly:= GetLaunchY(HH^.CurAmmoType, Gear^.Angle); |
|
292 |
||
293 |
// ensure we start outside the hedgehog (he's solid after all) |
|
294 |
while abs(lx * lx + ly * ly) < (Gear^.radius * Gear^.radius) do |
|
295 |
begin |
|
296 |
lx:= lx + dx; |
|
297 |
ly:= ly + dy |
|
298 |
end; |
|
299 |
||
300 |
// add hog's position |
|
301 |
lx:= lx + ox - WorldDx; |
|
302 |
ly:= ly + oy - WorldDy; |
|
303 |
||
304 |
// decrease number of iterations required |
|
305 |
ax:= dx * 4; |
|
306 |
ay:= dy * 4; |
|
307 |
||
308 |
tx:= round(lx); |
|
309 |
ty:= round(ly); |
|
310 |
hx:= tx; |
|
311 |
hy:= ty; |
|
312 |
while ((ty and LAND_HEIGHT_MASK) = 0) and |
|
313 |
((tx and LAND_WIDTH_MASK) = 0) and |
|
314 |
(Land[ty, tx] = 0) do // TODO: check for constant variable instead |
|
315 |
begin |
|
316 |
lx:= lx + ax; |
|
317 |
ly:= ly + ay; |
|
318 |
tx:= round(lx); |
|
7856 | 319 |
ty:= round(ly); |
320 |
if (abs(tx-hx) > 1000) or (abs(hy-ty) > 1000) then |
|
321 |
begin |
|
322 |
DrawLine(hx, hy, tx, ty, 1.0, $FF, $00, $00, $C0); |
|
323 |
hx:= tx; |
|
324 |
hy:= ty |
|
325 |
end |
|
4388 | 326 |
end; |
327 |
// reached edge of land. assume infinite beam. Extend it way out past camera |
|
328 |
if ((ty and LAND_HEIGHT_MASK) <> 0) or ((tx and LAND_WIDTH_MASK) <> 0) then |
|
329 |
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
|
330 |
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
|
331 |
ty:= round(ly + ay * (max(LAND_WIDTH,4096) div 2)); |
4388 | 332 |
end; |
333 |
||
334 |
//if (abs(lx-tx)>8) or (abs(ly-ty)>8) then |
|
7856 | 335 |
if (tx <> hx) or (ty <> hy) then |
4388 | 336 |
begin |
337 |
DrawLine(hx, hy, tx, ty, 1.0, $FF, $00, $00, $C0); |
|
338 |
end; |
|
339 |
end; |
|
340 |
// draw crosshair |
|
5615
104f69e798bb
changed aiming to be triggered when touching the crosshair
Xeli
parents:
5561
diff
changeset
|
341 |
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
|
342 |
CrosshairY := Round(hwRound(Gear^.Y) + dy * 80 + GetLaunchY(HH^.CurAmmoType, Gear^.Angle)); |
104f69e798bb
changed aiming to be triggered when touching the crosshair
Xeli
parents:
5561
diff
changeset
|
343 |
|
104f69e798bb
changed aiming to be triggered when touching the crosshair
Xeli
parents:
5561
diff
changeset
|
344 |
|
6999 | 345 |
DrawTextureRotated(HH^.Team^.CrosshairTex, |
5615
104f69e798bb
changed aiming to be triggered when touching the crosshair
Xeli
parents:
5561
diff
changeset
|
346 |
12, 12, CrosshairX + WorldDx, CrosshairY + WorldDy, 0, |
4388 | 347 |
sign * (Gear^.Angle * 180.0) / cMaxAngle); |
348 |
end; |
|
349 |
hx:= ox + 8 * sign; |
|
350 |
hy:= oy - 2; |
|
351 |
aangle:= Gear^.Angle * 180 / cMaxAngle - 90; |
|
5935 | 352 |
if (CurAmmoGear <> nil) and (CurAmmoGear^.Kind <> gtTardis) then |
4388 | 353 |
begin |
354 |
case CurAmmoGear^.Kind of |
|
355 |
gtShotgunShot: begin |
|
356 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
|
6999 | 357 |
DrawSpriteRotated(sprShotgun, hx, hy, sign, aangle) |
4388 | 358 |
else |
6999 | 359 |
DrawSpriteRotated(sprHandShotgun, hx, hy, sign, aangle); |
4388 | 360 |
end; |
6999 | 361 |
gtDEagleShot: DrawSpriteRotated(sprDEagle, hx, hy, sign, aangle); |
4388 | 362 |
gtSniperRifleShot: begin |
363 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
|
6999 | 364 |
DrawSpriteRotatedF(sprSniperRifle, hx, hy, 1, sign, aangle) |
4388 | 365 |
else |
6999 | 366 |
DrawSpriteRotatedF(sprSniperRifle, hx, hy, 0, sign, aangle) |
4388 | 367 |
end; |
6999 | 368 |
gtBallgun: DrawSpriteRotated(sprHandBallgun, hx, hy, sign, aangle); |
4388 | 369 |
gtRCPlane: begin |
6999 | 370 |
DrawSpriteRotated(sprHandPlane, hx, hy, sign, 0); |
4388 | 371 |
defaultPos:= false |
372 |
end; |
|
373 |
gtRope: begin |
|
374 |
if Gear^.X < CurAmmoGear^.X then |
|
375 |
begin |
|
376 |
dAngle:= 0; |
|
377 |
hAngle:= 180; |
|
378 |
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
|
379 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
380 |
else |
4388 | 381 |
begin |
382 |
dAngle:= 180; |
|
383 |
hAngle:= 0; |
|
384 |
i:= -1 |
|
385 |
end; |
|
7547 | 386 |
if ((Gear^.State and gstWinner) = 0) then |
387 |
begin |
|
388 |
DrawHedgehog(ox, oy, |
|
389 |
i, |
|
390 |
1, |
|
391 |
0, |
|
392 |
DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + dAngle); |
|
393 |
with HH^ do |
|
394 |
if (HatTex <> nil) then |
|
4388 | 395 |
begin |
7547 | 396 |
DrawTextureRotatedF(HatTex, 1.0, -1.0, -6.0, ox, oy, 0, i, 32, 32, |
4388 | 397 |
i*DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + hAngle); |
7547 | 398 |
if HatTex^.w > 64 then |
399 |
begin |
|
400 |
Tint(HH^.Team^.Clan^.Color shl 8 or $FF); |
|
401 |
DrawTextureRotatedF(HatTex, 1.0, -1.0, -6.0, ox, oy, 32, i, 32, 32, |
|
402 |
i*DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + hAngle); |
|
403 |
Tint($FF, $FF, $FF, $FF) |
|
404 |
end |
|
4388 | 405 |
end |
406 |
end; |
|
407 |
DrawAltWeapon(Gear, ox, oy); |
|
408 |
defaultPos:= false |
|
409 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
410 |
gtBlowTorch: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
411 |
begin |
6999 | 412 |
DrawSpriteRotated(sprBlowTorch, hx, hy, sign, aangle); |
4388 | 413 |
DrawHedgehog(sx, sy, |
414 |
sign, |
|
415 |
3, |
|
416 |
HH^.visStepPos div 2, |
|
417 |
0); |
|
418 |
with HH^ do |
|
419 |
if (HatTex <> nil) then |
|
420 |
begin |
|
421 |
DrawTextureF(HatTex, |
|
422 |
1, |
|
423 |
sx, |
|
424 |
sy - 5, |
|
425 |
0, |
|
426 |
sign, |
|
427 |
32, |
|
428 |
32); |
|
429 |
if HatTex^.w > 64 then |
|
430 |
begin |
|
4810 | 431 |
Tint(HH^.Team^.Clan^.Color shl 8 or $FF); |
4388 | 432 |
DrawTextureF(HatTex, |
433 |
1, |
|
434 |
sx, |
|
435 |
sy - 5, |
|
436 |
32, |
|
437 |
sign, |
|
438 |
32, |
|
439 |
32); |
|
440 |
Tint($FF, $FF, $FF, $FF) |
|
441 |
end |
|
442 |
end; |
|
443 |
defaultPos:= false |
|
444 |
end; |
|
6999 | 445 |
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
|
446 |
gtFirePunch: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
447 |
begin |
4388 | 448 |
DrawHedgehog(sx, sy, |
449 |
sign, |
|
450 |
1, |
|
451 |
4, |
|
452 |
0); |
|
453 |
defaultPos:= false |
|
454 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
455 |
gtPickHammer: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
456 |
begin |
4388 | 457 |
defaultPos:= false; |
458 |
dec(sy,20); |
|
459 |
end; |
|
460 |
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
|
461 |
gtWhip: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
462 |
begin |
6999 | 463 |
DrawSpriteRotatedF(sprWhip, |
4388 | 464 |
sx, |
465 |
sy, |
|
466 |
1, |
|
467 |
sign, |
|
468 |
0); |
|
469 |
defaultPos:= false |
|
470 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
471 |
gtHammer: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
472 |
begin |
6999 | 473 |
DrawSpriteRotatedF(sprHammer, |
4388 | 474 |
sx, |
475 |
sy, |
|
476 |
1, |
|
477 |
sign, |
|
478 |
0); |
|
479 |
defaultPos:= false |
|
480 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
481 |
gtResurrector: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
482 |
begin |
6999 | 483 |
DrawSpriteRotated(sprHandResurrector, sx, sy, 0, 0); |
4388 | 484 |
defaultPos:= false |
485 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
486 |
gtKamikaze: |
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 |
if CurAmmoGear^.Pos = 0 then |
489 |
DrawHedgehog(sx, sy, |
|
490 |
sign, |
|
491 |
1, |
|
492 |
6, |
|
493 |
0) |
|
494 |
else |
|
6999 | 495 |
DrawSpriteRotatedF(sprKamikaze, |
4388 | 496 |
ox, oy, |
497 |
CurAmmoGear^.Pos - 1, |
|
498 |
sign, |
|
499 |
aangle); |
|
500 |
defaultPos:= false |
|
501 |
end; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
502 |
gtSeduction: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
503 |
begin |
4388 | 504 |
if CurAmmoGear^.Pos >= 6 then |
505 |
DrawHedgehog(sx, sy, |
|
506 |
sign, |
|
507 |
2, |
|
508 |
2, |
|
509 |
0) |
|
510 |
else |
|
511 |
begin |
|
6999 | 512 |
DrawSpriteRotatedF(sprDress, |
4388 | 513 |
ox, oy, |
514 |
CurAmmoGear^.Pos, |
|
515 |
sign, |
|
516 |
0); |
|
517 |
DrawSprite(sprCensored, ox - 32, oy - 20, 0) |
|
518 |
end; |
|
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 |
gtFlamethrower: |
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 |
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
|
524 |
if CurAmmoGear^.Tex <> nil then |
6999 | 525 |
DrawTextureCentered(sx, sy - 40, CurAmmoGear^.Tex) |
4388 | 526 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
527 |
gtLandGun: |
6999 | 528 |
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
|
529 |
if CurAmmoGear^.Tex <> nil then |
6999 | 530 |
DrawTextureCentered(sx, sy - 40, CurAmmoGear^.Tex) |
5025
ac1691d35cf2
Land sprayer tweaks, make land spray and mudball not end turn
nemo
parents:
5024
diff
changeset
|
531 |
end; |
7093 | 532 |
gtIceGun: |
533 |
begin DrawSpriteRotated(sprHandBallgun, hx, hy, sign, aangle); |
|
534 |
if CurAmmoGear^.Tex <> nil then |
|
535 |
DrawTextureCentered(sx, sy - 40, CurAmmoGear^.Tex) |
|
536 |
end; |
|
4388 | 537 |
end; |
538 |
||
539 |
case CurAmmoGear^.Kind of |
|
540 |
gtShotgunShot, |
|
541 |
gtDEagleShot, |
|
542 |
gtSniperRifleShot, |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
543 |
gtShover: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
544 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
545 |
DrawHedgehog(sx, sy, sign, 0, 4, 0); |
4388 | 546 |
defaultPos:= false; |
547 |
HatVisible:= true |
|
548 |
end |
|
549 |
end |
|
550 |
end else |
|
551 |
||
552 |
if ((Gear^.State and gstHHJumping) <> 0) then |
|
553 |
begin |
|
554 |
DrawHedgehog(sx, sy, |
|
555 |
sign*m, |
|
556 |
1, |
|
557 |
1, |
|
558 |
0); |
|
559 |
HatVisible:= true; |
|
560 |
defaultPos:= false |
|
561 |
end else |
|
562 |
||
563 |
if (Gear^.Message and (gmLeft or gmRight) <> 0) and (not isCursorVisible) then |
|
564 |
begin |
|
565 |
DrawHedgehog(sx, sy, |
|
566 |
sign, |
|
567 |
0, |
|
568 |
HH^.visStepPos div 2, |
|
569 |
0); |
|
570 |
defaultPos:= false; |
|
571 |
HatVisible:= true |
|
572 |
end |
|
573 |
else |
|
574 |
||
575 |
if ((Gear^.State and gstAnimation) <> 0) then |
|
576 |
begin |
|
577 |
if (TWave(Gear^.Tag) < Low(TWave)) or (TWave(Gear^.Tag) > High(TWave)) then |
|
578 |
begin |
|
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6328
diff
changeset
|
579 |
Gear^.State:= Gear^.State and (not gstAnimation); |
4388 | 580 |
end |
581 |
else |
|
582 |
begin |
|
6999 | 583 |
DrawSpriteRotatedF(Wavez[TWave(Gear^.Tag)].Sprite, |
4388 | 584 |
sx, |
585 |
sy, |
|
586 |
Gear^.Pos, |
|
587 |
sign, |
|
588 |
0.0); |
|
589 |
defaultPos:= false |
|
590 |
end |
|
591 |
end |
|
592 |
else |
|
593 |
if ((Gear^.State and gstAttacked) = 0) then |
|
594 |
begin |
|
595 |
if HH^.Timer > 0 then |
|
596 |
begin |
|
597 |
// 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
|
598 |
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
|
599 |
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
|
600 |
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
|
601 |
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
|
602 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
603 |
aangle:= aangle+((240-aangle)*HH^.Timer/10); |
4388 | 604 |
dec(HH^.Timer) |
605 |
end; |
|
606 |
amt:= CurrentHedgehog^.CurAmmoType; |
|
6924 | 607 |
CurWeapon:= GetCurAmmoEntry(HH^); |
4388 | 608 |
case amt of |
6999 | 609 |
amBazooka: DrawSpriteRotated(sprHandBazooka, hx, hy, sign, aangle); |
610 |
amSnowball: DrawSpriteRotated(sprHandSnowball, hx, hy, sign, aangle); |
|
611 |
amMortar: DrawSpriteRotated(sprHandMortar, hx, hy, sign, aangle); |
|
612 |
amMolotov: DrawSpriteRotated(sprHandMolotov, hx, hy, sign, aangle); |
|
613 |
amBallgun: DrawSpriteRotated(sprHandBallgun, hx, hy, sign, aangle); |
|
614 |
amDrill: DrawSpriteRotated(sprHandDrill, hx, hy, sign, aangle); |
|
615 |
amRope: DrawSpriteRotated(sprHandRope, hx, hy, sign, aangle); |
|
616 |
amShotgun: DrawSpriteRotated(sprHandShotgun, hx, hy, sign, aangle); |
|
617 |
amDEagle: DrawSpriteRotated(sprHandDEagle, hx, hy, sign, aangle); |
|
618 |
amSineGun: DrawSpriteRotatedF(sprHandSinegun, hx, hy, 73 + (sign * LongInt(RealTicks div 73)) mod 8, 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
|
619 |
|
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
620 |
amPortalGun: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
621 |
if (CurWeapon^.Timer and 2) <> 0 then // Add a new Hedgehog value instead of abusing timer? |
6999 | 622 |
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
|
623 |
else |
6999 | 624 |
DrawSpriteRotatedF(sprPortalGun, hx, hy, 1+CurWeapon^.Pos, 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
|
625 |
|
6999 | 626 |
amSniperRifle: DrawSpriteRotatedF(sprSniperRifle, hx, hy, 0, sign, aangle); |
627 |
amBlowTorch: DrawSpriteRotated(sprHandBlowTorch, hx, hy, sign, aangle); |
|
628 |
amCake: DrawSpriteRotated(sprHandCake, hx, hy, sign, aangle); |
|
629 |
amGrenade: DrawSpriteRotated(sprHandGrenade, hx, hy, sign, aangle); |
|
630 |
amWatermelon: DrawSpriteRotated(sprHandMelon, hx, hy, sign, aangle); |
|
631 |
amSkip: DrawSpriteRotated(sprHandSkip, hx, hy, sign, aangle); |
|
632 |
amClusterBomb: DrawSpriteRotated(sprHandCluster, hx, hy, sign, aangle); |
|
633 |
amDynamite: DrawSpriteRotated(sprHandDynamite, hx, hy, sign, aangle); |
|
634 |
amHellishBomb: DrawSpriteRotated(sprHandHellish, hx, hy, sign, aangle); |
|
635 |
amGasBomb: DrawSpriteRotated(sprHandCheese, hx, hy, sign, aangle); |
|
636 |
amMine: DrawSpriteRotated(sprHandMine, hx, hy, sign, aangle); |
|
637 |
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
|
638 |
amKnife: DrawSpriteRotatedF(sprHandKnife, hx, hy, 0, sign, aangle); |
5525 | 639 |
amSeduction: begin |
6999 | 640 |
DrawSpriteRotated(sprHandSeduction, hx, hy, sign, aangle); |
5561
dfbe55237c64
Shrink number of circle points to 60, reenable seduction circle (no longer crashes)
nemo
parents:
5560
diff
changeset
|
641 |
DrawCircle(ox, oy, 248, 4, $FF, $00, $00, $AA); |
dfbe55237c64
Shrink number of circle points to 60, reenable seduction circle (no longer crashes)
nemo
parents:
5560
diff
changeset
|
642 |
//Tint($FF, $0, $0, $AA); |
dfbe55237c64
Shrink number of circle points to 60, reenable seduction circle (no longer crashes)
nemo
parents:
5560
diff
changeset
|
643 |
//DrawTexture(ox - 240, oy - 240, SpritesData[sprVampiric].Texture, 10); |
dfbe55237c64
Shrink number of circle points to 60, reenable seduction circle (no longer crashes)
nemo
parents:
5560
diff
changeset
|
644 |
//Tint($FF, $FF, $FF, $FF); |
5525 | 645 |
end; |
6999 | 646 |
amVampiric: DrawSpriteRotatedF(sprHandVamp, hx, hy, (RealTicks div 125) mod 4, sign, aangle); |
4388 | 647 |
amRCPlane: begin |
6999 | 648 |
DrawSpriteRotated(sprHandPlane, hx, hy, sign, 0); |
4388 | 649 |
defaultPos:= false |
650 |
end; |
|
651 |
amGirder: begin |
|
6999 | 652 |
DrawSpriteRotated(sprHandConstruction, hx, hy, sign, aangle); |
4388 | 653 |
DrawSpriteClipped(sprGirder, |
654 |
ox-256, |
|
655 |
oy-256, |
|
656 |
LongInt(topY)+WorldDy, |
|
657 |
LongInt(rightX)+WorldDx, |
|
658 |
cWaterLine+WorldDy, |
|
659 |
LongInt(leftX)+WorldDx) |
|
660 |
end; |
|
6999 | 661 |
amBee: DrawSpriteRotatedF(sprHandBee, hx, hy, (RealTicks div 125) mod 4, sign, aangle); |
662 |
amFlamethrower: DrawSpriteRotatedF(sprHandFlamethrower, hx, hy, (RealTicks div 125) mod 4, sign, aangle); |
|
663 |
amLandGun: DrawSpriteRotated(sprHandBallgun, hx, hy, sign, aangle); |
|
7093 | 664 |
amIceGun: DrawSpriteRotated(sprHandBallgun, hx, hy, sign, aangle); |
4388 | 665 |
amResurrector: DrawCircle(ox, oy, 98, 4, $F5, $DB, $35, $AA); // I'd rather not like to hardcode 100 here |
666 |
end; |
|
667 |
||
668 |
case amt of |
|
669 |
amAirAttack, |
|
670 |
amMineStrike, |
|
6999 | 671 |
amDrillStrike: DrawSpriteRotated(sprHandAirAttack, sx, oy, sign, 0); |
4388 | 672 |
amPickHammer: DrawHedgehog(sx, sy, |
673 |
sign, |
|
674 |
1, |
|
675 |
2, |
|
676 |
0); |
|
6999 | 677 |
amTeleport: DrawSpriteRotatedF(sprTeleport, sx, sy, 0, sign, 0); |
4388 | 678 |
amKamikaze: DrawHedgehog(sx, sy, |
679 |
sign, |
|
680 |
1, |
|
681 |
5, |
|
682 |
0); |
|
6999 | 683 |
amWhip: DrawSpriteRotatedF(sprWhip, |
4388 | 684 |
sx, |
685 |
sy, |
|
686 |
0, |
|
687 |
sign, |
|
688 |
0); |
|
6999 | 689 |
amHammer: DrawSpriteRotatedF(sprHammer, |
4388 | 690 |
sx, |
691 |
sy, |
|
692 |
0, |
|
693 |
sign, |
|
694 |
0); |
|
695 |
else |
|
696 |
DrawHedgehog(sx, sy, |
|
697 |
sign, |
|
698 |
0, |
|
699 |
4, |
|
700 |
0); |
|
701 |
||
702 |
HatVisible:= true; |
|
703 |
(* with HH^ do |
|
704 |
if (HatTex <> nil) |
|
705 |
and (HatVisibility > 0) then |
|
706 |
DrawTextureF(HatTex, |
|
707 |
HatVisibility, |
|
708 |
sx, |
|
709 |
sy - 5, |
|
710 |
0, |
|
711 |
sign, |
|
712 |
32, |
|
713 |
32); *) |
|
714 |
end; |
|
715 |
||
716 |
case amt of |
|
6999 | 717 |
amBaseballBat: DrawSpriteRotated(sprHandBaseball, |
4388 | 718 |
sx - 4 * sign, |
719 |
sy + 9, sign, aangle); |
|
720 |
end; |
|
721 |
||
722 |
defaultPos:= false |
|
723 |
end; |
|
724 |
||
725 |
end else // not gstHHDriven |
|
726 |
begin |
|
727 |
if (Gear^.Damage > 0) |
|
728 |
and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then |
|
729 |
begin |
|
730 |
DrawHedgehog(sx, sy, |
|
731 |
sign, |
|
732 |
2, |
|
733 |
1, |
|
734 |
Gear^.DirAngle); |
|
735 |
defaultPos:= false |
|
736 |
end else |
|
737 |
||
738 |
if ((Gear^.State and gstHHJumping) <> 0) then |
|
739 |
begin |
|
740 |
DrawHedgehog(sx, sy, |
|
741 |
sign*m, |
|
742 |
1, |
|
743 |
1, |
|
744 |
0); |
|
745 |
defaultPos:= false |
|
746 |
end; |
|
747 |
end; |
|
748 |
||
749 |
with HH^ do |
|
750 |
begin |
|
751 |
if defaultPos then |
|
752 |
begin |
|
7978 | 753 |
if HH^.Team^.hasGone then Tint($FF, $FF, $FF, $80); |
6999 | 754 |
DrawSpriteRotatedF(sprHHIdle, |
4388 | 755 |
sx, |
756 |
sy, |
|
757 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
758 |
sign, |
|
759 |
0); |
|
760 |
HatVisible:= true; |
|
761 |
end; |
|
762 |
||
763 |
if HatVisible then |
|
764 |
if HatVisibility < 1.0 then |
|
765 |
HatVisibility:= HatVisibility + 0.2 |
|
766 |
else |
|
767 |
else |
|
768 |
if HatVisibility > 0.0 then |
|
769 |
HatVisibility:= HatVisibility - 0.2; |
|
770 |
||
771 |
if (HatTex <> nil) |
|
772 |
and (HatVisibility > 0) then |
|
773 |
if DefaultPos then |
|
774 |
begin |
|
775 |
DrawTextureF(HatTex, |
|
776 |
HatVisibility, |
|
777 |
sx, |
|
778 |
sy - 5, |
|
779 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
780 |
sign, |
|
781 |
32, |
|
782 |
32); |
|
783 |
if HatTex^.w > 64 then |
|
784 |
begin |
|
4810 | 785 |
Tint(HH^.Team^.Clan^.Color shl 8 or $FF); |
4388 | 786 |
DrawTextureF(HatTex, |
787 |
HatVisibility, |
|
788 |
sx, |
|
789 |
sy - 5, |
|
790 |
(RealTicks div 128 + Gear^.Pos) mod 19 + 32, |
|
791 |
sign, |
|
792 |
32, |
|
793 |
32); |
|
794 |
Tint($FF, $FF, $FF, $FF) |
|
7978 | 795 |
end; |
796 |
if HH^.Team^.hasGone then Tint($FF, $FF, $FF, $FF) |
|
4388 | 797 |
end |
798 |
else |
|
799 |
begin |
|
800 |
DrawTextureF(HatTex, |
|
801 |
HatVisibility, |
|
802 |
sx, |
|
803 |
sy - 5, |
|
804 |
0, |
|
805 |
sign*m, |
|
806 |
32, |
|
807 |
32); |
|
808 |
if HatTex^.w > 64 then |
|
809 |
begin |
|
4810 | 810 |
Tint(HH^.Team^.Clan^.Color shl 8 or $FF); |
4388 | 811 |
DrawTextureF(HatTex, |
812 |
HatVisibility, |
|
813 |
sx, |
|
814 |
sy - 5, |
|
815 |
32, |
|
816 |
sign*m, |
|
817 |
32, |
|
818 |
32); |
|
819 |
Tint($FF, $FF, $FF, $FF) |
|
820 |
end |
|
821 |
end |
|
822 |
end; |
|
823 |
if (Gear^.State and gstHHDriven) <> 0 then |
|
824 |
begin |
|
825 |
(* if (CurAmmoGear = nil) then |
|
826 |
begin |
|
827 |
amt:= CurrentHedgehog^.CurAmmoType; |
|
828 |
case amt of |
|
829 |
amJetpack: DrawSprite(sprJetpack, sx-32, sy-32, 0); |
|
830 |
end |
|
831 |
end; *) |
|
832 |
if CurAmmoGear <> nil then |
|
833 |
begin |
|
834 |
case CurAmmoGear^.Kind of |
|
835 |
gtJetpack: begin |
|
836 |
DrawSprite(sprJetpack, sx-32, sy-32, 0); |
|
837 |
if cWaterLine > hwRound(Gear^.Y) + Gear^.Radius then |
|
838 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
839 |
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
|
840 |
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
|
841 |
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
|
842 |
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
|
843 |
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
|
844 |
DrawSprite(sprJetpack, sx-36, sy-28, 3) |
4388 | 845 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
846 |
if CurAmmoGear^.Tex <> nil then |
6999 | 847 |
DrawTextureCentered(sx, sy - 40, CurAmmoGear^.Tex); |
4388 | 848 |
DrawAltWeapon(Gear, sx, sy) |
849 |
end; |
|
850 |
end; |
|
851 |
end |
|
852 |
end; |
|
853 |
||
854 |
with HH^ do |
|
855 |
begin |
|
6453
11c578d30bd3
Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents:
6328
diff
changeset
|
856 |
if ((Gear^.State and (not gstWinner)) = 0) |
4388 | 857 |
or ((Gear^.State = gstWait) and (Gear^.dY.QWordValue = 0)) |
858 |
or (bShowFinger and ((Gear^.State and gstHHDriven) <> 0)) then |
|
859 |
begin |
|
860 |
t:= sy - cHHRadius - 9; |
|
861 |
if (cTagsMask and htTransparent) <> 0 then |
|
862 |
Tint($FF, $FF, $FF, $80); |
|
863 |
if ((cTagsMask and htHealth) <> 0) then |
|
864 |
begin |
|
865 |
dec(t, HealthTagTex^.h + 2); |
|
6999 | 866 |
DrawTextureCentered(ox, t, HealthTagTex) |
4388 | 867 |
end; |
868 |
if (cTagsMask and htName) <> 0 then |
|
869 |
begin |
|
870 |
dec(t, NameTagTex^.h + 2); |
|
6999 | 871 |
DrawTextureCentered(ox, t, NameTagTex) |
4388 | 872 |
end; |
873 |
if (cTagsMask and htTeamName) <> 0 then |
|
874 |
begin |
|
875 |
dec(t, Team^.NameTagTex^.h + 2); |
|
6999 | 876 |
DrawTextureCentered(ox, t, Team^.NameTagTex) |
4388 | 877 |
end; |
878 |
if (cTagsMask and htTransparent) <> 0 then |
|
879 |
Tint($FF, $FF, $FF, $FF) |
|
880 |
end; |
|
881 |
if (Gear^.State and gstHHDriven) <> 0 then // Current hedgehog |
|
882 |
begin |
|
4394 | 883 |
if (CurAmmoGear <> nil) and (CurAmmoGear^.Kind = gtResurrector) then |
6999 | 884 |
DrawTextureCentered(ox, sy - cHHRadius - 7 - HealthTagTex^.h, HealthTagTex); |
4394 | 885 |
|
4388 | 886 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
887 |
DrawSprite(sprFinger, ox - 16, oy - 64, |
|
888 |
GameTicks div 32 mod 16); |
|
889 |
||
890 |
if (Gear^.State and gstDrowning) = 0 then |
|
891 |
if (Gear^.State and gstHHThinking) <> 0 then |
|
892 |
DrawSprite(sprQuestion, ox - 10, oy - cHHRadius - 34, (RealTicks shr 9) mod 8) |
|
893 |
end |
|
894 |
end; |
|
895 |
||
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
|
896 |
if HH^.Effects[hePoisoned] <> 0 then |
4388 | 897 |
begin |
898 |
Tint($00, $FF, $40, $80); |
|
6999 | 899 |
DrawTextureRotatedF(SpritesData[sprSmokeWhite].texture, 1.5, 0, 0, sx, sy, 0, 1, 22, 22, 360 - (RealTicks shr 37) mod 360); |
4388 | 900 |
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
|
901 |
if HH^.Effects[heResurrected] <> 0 then |
4388 | 902 |
begin |
903 |
Tint($f5, $db, $35, $20); |
|
904 |
DrawSprite(sprVampiric, sx - 24, sy - 24, 0); |
|
905 |
end; |
|
906 |
||
907 |
if Gear^.Invulnerable then |
|
908 |
begin |
|
909 |
Tint($FF, $FF, $FF, max($40, round($FF * abs(1 - ((RealTicks div 2 + Gear^.uid * 491) mod 1500) / 750)))); |
|
910 |
DrawSprite(sprInvulnerable, sx - 24, sy - 24, 0); |
|
911 |
end; |
|
912 |
if cVampiric and |
|
913 |
(CurrentHedgehog^.Gear <> nil) and |
|
914 |
(CurrentHedgehog^.Gear = Gear) then |
|
915 |
begin |
|
916 |
Tint($FF, 0, 0, max($40, round($FF * abs(1 - (RealTicks mod 1500) / 750)))); |
|
917 |
DrawSprite(sprVampiric, sx - 24, sy - 24, 0); |
|
918 |
end; |
|
919 |
Tint($FF, $FF, $FF, $FF) |
|
920 |
end; |
|
921 |
||
922 |
||
923 |
procedure RenderGear(Gear: PGear; x, y: LongInt); |
|
924 |
var |
|
925 |
HHGear: PGear; |
|
7093 | 926 |
vg: PVisualGear; |
4388 | 927 |
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
|
928 |
aAngle: real; |
4388 | 929 |
startX, endX, startY, endY: LongInt; |
930 |
begin |
|
5612
2638dec1b323
This really should have been a TPoint for consistency
nemo
parents:
5561
diff
changeset
|
931 |
if Gear^.Target.X <> NoPointX then |
5507
1040c0946ef8
This should make bee/airstrikes play nicer with infinite attack mode
nemo
parents:
5472
diff
changeset
|
932 |
if Gear^.AmmoType = amBee then |
6999 | 933 |
DrawSpriteRotatedF(sprTargetBee, Gear^.Target.X + WorldDx, Gear^.Target.Y + WorldDy, 0, 0, (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
|
934 |
else if Gear^.AmmoType = amIceGun then |
7093 | 935 |
//DrawSprite(sprSnowDust, Gear^.Target.X + WorldDx, Gear^.Target.Y + WorldDy, (RealTicks shr 2) mod 8) |
936 |
//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) |
|
937 |
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
|
938 |
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
|
939 |
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
|
940 |
|
4388 | 941 |
case Gear^.Kind of |
6999 | 942 |
gtGrenade: DrawSpriteRotated(sprBomb, x, y, 0, Gear^.DirAngle); |
943 |
gtSnowball: DrawSpriteRotated(sprSnowball, x, y, 0, Gear^.DirAngle); |
|
944 |
gtGasBomb: DrawSpriteRotated(sprCheese, x, y, 0, Gear^.DirAngle); |
|
5871
09daa06191d7
Since we are tweaking molotov. make the flame flickery and add a drowning frame
nemo
parents:
5787
diff
changeset
|
945 |
|
09daa06191d7
Since we are tweaking molotov. make the flame flickery and add a drowning frame
nemo
parents:
5787
diff
changeset
|
946 |
gtMolotov: if (Gear^.State and gstDrowning) = 0 then |
6999 | 947 |
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
|
948 |
else DrawSprite(sprMolotov, x, y, 8); |
4388 | 949 |
|
950 |
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
|
951 |
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
|
952 |
if Gear^.Tag < 0 then aangle:= 360-aangle; |
6138 | 953 |
Tint(Gear^.Hedgehog^.Team^.Clan^.Color shl 8 or $FF); |
6999 | 954 |
DrawSpriteRotatedF(sprPlane, x, y, 0, Gear^.Tag, aangle - 90); |
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
|
955 |
Tint($FF, $FF, $FF, $FF); |
6999 | 956 |
DrawSpriteRotatedF(sprPlane, x, y, 1, Gear^.Tag, aangle - 90) |
4388 | 957 |
end; |
6999 | 958 |
gtBall: DrawSpriteRotatedF(sprBalls, x, y, Gear^.Tag,0, Gear^.DirAngle); |
4388 | 959 |
|
960 |
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
|
961 |
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
|
962 |
or ((Gear^.LinkedGear^.Tag and 1) = 0) then // linked portal still moving? |
6999 | 963 |
DrawSpriteRotatedF(sprPortal, x, y, Gear^.Tag, hwSign(Gear^.dX), Gear^.DirAngle) |
964 |
else DrawSpriteRotatedF(sprPortal, x, y, 4 + Gear^.Tag div 2, hwSign(Gear^.dX), Gear^.DirAngle); |
|
4388 | 965 |
|
966 |
gtDrill: if (Gear^.State and gsttmpFlag) <> 0 then |
|
6999 | 967 |
DrawSpriteRotated(sprAirDrill, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)) |
4388 | 968 |
else |
6999 | 969 |
DrawSpriteRotated(sprDrill, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 970 |
|
971 |
gtHedgehog: DrawHH(Gear, x, y); |
|
972 |
||
6999 | 973 |
gtShell: DrawSpriteRotated(sprBazookaShell, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 974 |
|
975 |
gtGrave: begin |
|
976 |
DrawTextureF(Gear^.Hedgehog^.Team^.GraveTex, 1, x, y, (GameTicks shr 7+Gear^.uid) and 7, 1, 32, 32); |
|
977 |
if Gear^.Health > 0 then |
|
978 |
begin |
|
979 |
//Tint($33, $33, $FF, max($40, round($FF * abs(1 - (GameTicks mod (6000 div Gear^.Health)) / 750)))); |
|
980 |
Tint($f5, $db, $35, max($40, round($FF * abs(1 - (GameTicks mod 1500) / (750 + Gear^.Health))))); |
|
981 |
//Tint($FF, $FF, $FF, max($40, round($FF * abs(1 - (RealTicks mod 1500) / 750)))); |
|
982 |
DrawSprite(sprVampiric, x - 24, y - 24, 0); |
|
983 |
Tint($FF, $FF, $FF, $FF) |
|
984 |
end |
|
985 |
end; |
|
6999 | 986 |
gtBee: DrawSpriteRotatedF(sprBee, x, y, (GameTicks shr 5) mod 2, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 987 |
gtPickHammer: DrawSprite(sprPHammer, x - 16, y - 50 + LongInt(((GameTicks shr 5) and 1) * 2), 0); |
988 |
gtRope: DrawRope(Gear); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
989 |
|
4388 | 990 |
gtMine: if (((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420)) and (Gear^.Health <> 0) then |
6999 | 991 |
DrawSpriteRotated(sprMineOff, 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
|
992 |
else if Gear^.Health <> 0 then |
6999 | 993 |
DrawSpriteRotated(sprMineOn, x, y, 0, Gear^.DirAngle) |
994 |
else DrawSpriteRotated(sprMineDead, 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
|
995 |
|
4388 | 996 |
gtSMine: if (((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420)) and (Gear^.Health <> 0) then |
6999 | 997 |
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
|
998 |
else if Gear^.Health <> 0 then |
6999 | 999 |
DrawSpriteRotated(sprSMineOn, x, y, 0, Gear^.DirAngle) |
1000 |
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
|
1001 |
gtKnife: DrawSpriteRotatedF(sprKnife, x, y, 0, hwSign(Gear^.dX), 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
|
1002 |
|
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
|
1003 |
gtCase: begin |
7276 | 1004 |
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
|
1005 |
begin |
7276 | 1006 |
if ((Gear^.Pos and posCaseAmmo) <> 0) then |
1007 |
begin |
|
1008 |
i:= (GameTicks shr 6) mod 64; |
|
1009 |
if i > 18 then |
|
1010 |
i:= 0; |
|
1011 |
DrawSprite(sprCase, x - 24, y - 24, i); |
|
1012 |
end |
|
1013 |
else if ((Gear^.Pos and posCaseHealth) <> 0) then |
|
1014 |
begin |
|
1015 |
i:= ((GameTicks shr 6) + 38) mod 64; |
|
1016 |
if i > 13 then |
|
1017 |
i:= 0; |
|
1018 |
DrawSprite(sprFAid, x - 24, y - 24, i); |
|
1019 |
end |
|
1020 |
else if ((Gear^.Pos and posCaseUtility) <> 0) then |
|
1021 |
begin |
|
1022 |
i:= (GameTicks shr 6) mod 70; |
|
1023 |
if i > 23 then |
|
1024 |
i:= 0; |
|
1025 |
i:= i mod 12; |
|
1026 |
DrawSprite(sprUtility, x - 24, y - 24, i); |
|
1027 |
end; |
|
1028 |
end; |
|
7337
c224cd2d32f3
Allow script to set number of ammo in a crate. untested.
nemo
parents:
7276
diff
changeset
|
1029 |
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
|
1030 |
begin |
7276 | 1031 |
DrawTextureRotatedF(SpritesData[sprPortal].texture, min(abs(1.25 - (Gear^.Timer mod 1333) / 400), 1.25), 0, 0, |
7721 | 1032 |
x, LongInt(Gear^.Angle) + WorldDy - 16, 4 + Gear^.Tag, 1, 32, 32, 270); |
7276 | 1033 |
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
|
1034 |
end; |
4388 | 1035 |
gtExplosives: begin |
1036 |
if ((Gear^.State and gstDrowning) <> 0) then |
|
1037 |
DrawSprite(sprExplosivesRoll, x - 24, y - 24, 0) |
|
1038 |
else if Gear^.State and gstAnimation = 0 then |
|
1039 |
begin |
|
1040 |
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
|
1041 |
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
|
1042 |
i:= 0; |
4388 | 1043 |
DrawSprite(sprExplosives, x - 24, y - 24, i) |
1044 |
end |
|
1045 |
else if Gear^.State and gsttmpFlag = 0 then |
|
6999 | 1046 |
DrawSpriteRotatedF(sprExplosivesRoll, x, y + 4, 0, 0, Gear^.DirAngle) |
4388 | 1047 |
else |
6999 | 1048 |
DrawSpriteRotatedF(sprExplosivesRoll, x, y + 4, 1, 0, Gear^.DirAngle); |
4388 | 1049 |
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
|
1050 |
gtDynamite: DrawSprite(sprDynamite, x - 16, y - 25, Gear^.Tag and 1, Gear^.Tag shr 1); |
6999 | 1051 |
gtClusterBomb: DrawSpriteRotated(sprClusterBomb, x, y, 0, Gear^.DirAngle); |
4388 | 1052 |
gtCluster: DrawSprite(sprClusterParticle, x - 8, y - 8, 0); |
6324 | 1053 |
gtFlame: if Gear^.Tag and 1 = 0 then |
1054 |
DrawTextureF(SpritesData[sprFlame].Texture, 2 / (Gear^.Tag mod 3 + 2), x, y, (GameTicks shr 7 + LongWord(Gear^.Tag)) mod 8, 1, 16, 16) |
|
1055 |
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 | 1056 |
gtParachute: begin |
1057 |
DrawSprite(sprParachute, x - 24, y - 48, 0); |
|
1058 |
DrawAltWeapon(Gear, x + 1, y - 3) |
|
1059 |
end; |
|
6308 | 1060 |
gtAirAttack: begin |
1061 |
Tint(Gear^.Hedgehog^.Team^.Clan^.Color shl 8 or $FF); |
|
6999 | 1062 |
DrawSpriteRotatedF(sprAirplane, x, y, 0, Gear^.Tag, 0); |
6308 | 1063 |
Tint($FF, $FF, $FF, $FF); |
6999 | 1064 |
DrawSpriteRotatedF(sprAirplane, x, y, 1, Gear^.Tag, 0); |
6308 | 1065 |
end; |
6999 | 1066 |
gtAirBomb: DrawSpriteRotated(sprAirBomb, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 1067 |
gtTeleport: begin |
1068 |
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
|
1069 |
if not Gear^.Hedgehog^.Unplaced then |
6999 | 1070 |
DrawSpriteRotatedF(sprTeleport, x + 1, y - 3, Gear^.Pos, hwSign(Gear^.dX), 0); |
1071 |
DrawSpriteRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
4388 | 1072 |
end; |
1073 |
gtSwitcher: DrawSprite(sprSwitch, x - 16, y - 56, (GameTicks shr 6) mod 12); |
|
1074 |
gtTarget: begin |
|
1075 |
Tint($FF, $FF, $FF, round($FF * Gear^.Timer / 1000)); |
|
1076 |
DrawSprite(sprTarget, x - 16, y - 16, 0); |
|
1077 |
Tint($FF, $FF, $FF, $FF); |
|
1078 |
end; |
|
6999 | 1079 |
gtMortar: DrawSpriteRotated(sprMortar, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4388 | 1080 |
gtCake: if Gear^.Pos = 6 then |
6999 | 1081 |
DrawSpriteRotatedF(sprCakeWalk, x, y, (GameTicks div 40) mod 6, hwSign(Gear^.dX), Gear^.DirAngle * hwSign(Gear^.dX) + 90) |
4388 | 1082 |
else |
6999 | 1083 |
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
|
1084 |
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
|
1085 |
DrawSprite(sprSeduction, x - 16, y - 16, 0); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1086 |
|
6999 | 1087 |
gtWatermelon: DrawSpriteRotatedF(sprWatermelon, x, y, 0, 0, Gear^.DirAngle); |
1088 |
gtMelonPiece: DrawSpriteRotatedF(sprWatermelon, x, y, 1, 0, Gear^.DirAngle); |
|
1089 |
gtHellishBomb: DrawSpriteRotated(sprHellishBomb, x, y, 0, Gear^.DirAngle); |
|
4388 | 1090 |
gtBirdy: begin |
1091 |
if Gear^.State and gstAnimation = gstAnimation then |
|
1092 |
begin |
|
1093 |
if Gear^.State and gstTmpFlag = 0 then // Appearing |
|
1094 |
begin |
|
1095 |
endX:= x - WorldDx; |
|
1096 |
endY:= y - WorldDy; |
|
1097 |
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
|
1098 |
startX:= max(max(LAND_WIDTH,4096) + 1024, endX + 2048) |
4388 | 1099 |
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
|
1100 |
startX:= max(-max(LAND_WIDTH,4096) - 1024, endX - 2048); |
4388 | 1101 |
startY:= endY - 256; |
5179
8d64dcb566ea
Fix "Mixing signed expressions and longwords gives a 64bit result" warnings
unc0rr
parents:
5145
diff
changeset
|
1102 |
DrawTextureF(SpritesData[sprBirdy].Texture, 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 | 1103 |
end |
1104 |
else // Disappearing |
|
1105 |
begin |
|
1106 |
startX:= x - WorldDx; |
|
1107 |
startY:= y - WorldDy; |
|
1108 |
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
|
1109 |
endX:= max(max(LAND_WIDTH,4096) + 1024, startX + 2048) |
4388 | 1110 |
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
|
1111 |
endX:= max(-max(LAND_WIDTH,4096) - 1024, startX - 2048); |
4388 | 1112 |
endY:= startY + 256; |
5179
8d64dcb566ea
Fix "Mixing signed expressions and longwords gives a 64bit result" warnings
unc0rr
parents:
5145
diff
changeset
|
1113 |
DrawTextureF(SpritesData[sprBirdy].Texture, 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 | 1114 |
end; |
1115 |
end |
|
1116 |
else |
|
5528
c539e5c81870
slight visual tweak. birdy's wings beat faster if he's just about tired out
nemo
parents:
5526
diff
changeset
|
1117 |
begin |
c539e5c81870
slight visual tweak. birdy's wings beat faster if he's just about tired out
nemo
parents:
5526
diff
changeset
|
1118 |
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
|
1119 |
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
|
1120 |
else |
c539e5c81870
slight visual tweak. birdy's wings beat faster if he's just about tired out
nemo
parents:
5526
diff
changeset
|
1121 |
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
|
1122 |
end; |
4388 | 1123 |
end; |
6999 | 1124 |
gtEgg: DrawTextureRotatedF(SpritesData[sprEgg].Texture, 1, 0, 0, x, y, 0, 1, 16, 16, Gear^.DirAngle); |
4388 | 1125 |
gtPiano: begin |
1126 |
if (Gear^.State and gstDrowning) = 0 then |
|
1127 |
begin |
|
1128 |
Tint($FF, $FF, $FF, $10); |
|
1129 |
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
|
1130 |
DrawTextureF(SpritesData[sprPiano].Texture, 1, x, y - hwRound(Gear^.dY * 4 * i), 0, 1, 128, 128); |
4388 | 1131 |
Tint($FF, $FF, $FF, $FF) |
1132 |
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
|
1133 |
DrawTextureF(SpritesData[sprPiano].Texture, 1, x, y, 0, 1, 128, 128); |
4388 | 1134 |
end; |
1135 |
gtPoisonCloud: begin |
|
1136 |
if Gear^.Timer < 1020 then |
|
1137 |
Tint($C0, $C0, $00, Gear^.Timer div 8) |
|
1138 |
else if Gear^.Timer > 3980 then |
|
1139 |
Tint($C0, $C0, $00, (5000 - Gear^.Timer) div 8) |
|
1140 |
else |
|
1141 |
Tint($C0, $C0, $00, $C0); |
|
6999 | 1142 |
DrawTextureRotatedF(SpritesData[sprSmokeWhite].texture, 3, 0, 0, x, y, 0, 1, 22, 22, (RealTicks shr 36 + Gear^.UID * 100) mod 360); |
4388 | 1143 |
Tint($FF, $FF, $FF, $FF) |
1144 |
end; |
|
1145 |
gtResurrector: begin |
|
6999 | 1146 |
DrawSpriteRotated(sprCross, x, y, 0, 0); |
4388 | 1147 |
Tint($f5, $db, $35, max($00, round($C0 * abs(1 - (GameTicks mod 6000) / 3000)))); |
1148 |
DrawTexture(x - 108, y - 108, SpritesData[sprVampiric].Texture, 4.5); |
|
1149 |
Tint($FF, $FF, $FF, $FF); |
|
1150 |
end; |
|
6999 | 1151 |
gtNapalmBomb: DrawSpriteRotated(sprNapalmBomb, x, y, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
5519 | 1152 |
gtFlake: if Gear^.State and (gstDrowning or gstTmpFlag) <> 0 then |
5024 | 1153 |
begin |
6982 | 1154 |
Tint((ExplosionBorderColor shr RShift) and $FF, |
1155 |
(ExplosionBorderColor shr GShift) and $FF, |
|
1156 |
(ExplosionBorderColor shr BShift) and $FF, |
|
5461 | 1157 |
$FF); |
5025
ac1691d35cf2
Land sprayer tweaks, make land spray and mudball not end turn
nemo
parents:
5024
diff
changeset
|
1158 |
// Needs a nicer white texture to tint |
6999 | 1159 |
DrawTextureRotatedF(SpritesData[sprSnowDust].Texture, 1, 0, 0, x, y, 0, 1, 8, 8, Gear^.DirAngle); |
1160 |
//DrawSpriteRotated(sprSnowDust, x, y, 0, Gear^.DirAngle); |
|
5472 | 1161 |
//DrawTexture(x, y, SpritesData[sprVampiric].Texture, 0.1); |
5024 | 1162 |
Tint($FF, $FF, $FF, $FF); |
1163 |
end |
|
5787 | 1164 |
else //if not isInLag then |
5024 | 1165 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1166 |
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
|
1167 |
inc(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
|
1168 |
else if not isInLag and (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
|
1169 |
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
|
1170 |
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
|
1171 |
Tint($FF, $FF, $FF, $FF-min(255,Gear^.FlightTime)); |
4617 | 1172 |
if vobVelocity = 0 then |
5024 | 1173 |
DrawSprite(sprFlake, x, y, Gear^.Timer) |
1174 |
else |
|
6999 | 1175 |
DrawSpriteRotatedF(sprFlake, x, y, Gear^.Timer, 1, Gear^.DirAngle); |
5024 | 1176 |
//DrawSprite(sprFlake, x-SpritesData[sprFlake].Width div 2, y-SpritesData[sprFlake].Height div 2, Gear^.Timer) |
6999 | 1177 |
//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
|
1178 |
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
|
1179 |
Tint($FF, $FF, $FF, $FF); |
5024 | 1180 |
end; |
4883
7cddc9201a1d
added dummy for tardis and ugly icons for tardis and structure
Henek
parents:
4881
diff
changeset
|
1181 |
gtStructure: DrawSprite(sprTarget, x - 16, y - 16, 0); |
5706 | 1182 |
gtTardis: if Gear^.Pos <> 4 then |
1183 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1184 |
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
|
1185 |
Tint(Gear^.Hedgehog^.Team^.Clan^.Color shl 8 or $FF) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1186 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1187 |
Tint(Gear^.Hedgehog^.Team^.Clan^.Color shl 8 or max($00, round(Gear^.Power * (1-abs(0.5 - (GameTicks mod 2000) / 2000))))); |
5706 | 1188 |
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
|
1189 |
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
|
1190 |
Tint($FF, $FF, $FF, $FF) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1191 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1192 |
Tint($FF,$FF,$FF,max($00, round(Gear^.Power * (1-abs(0.5 - (GameTicks mod 2000) / 2000))))); |
5740 | 1193 |
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
|
1194 |
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
|
1195 |
Tint($FF, $FF, $FF, $FF) |
5740 | 1196 |
(* |
5728 | 1197 |
Tint(Gear^.Hedgehog^.Team^.Clan^.Color shl 8 or max($00, round(Gear^.Power * abs(1 - (RealTicks mod 500) / 250)))); |
1198 |
DrawTexture(x-6, y-70, SpritesData[sprVampiric].Texture, 0.25); |
|
1199 |
Tint($FF, $FF, $FF, $FF) |
|
5740 | 1200 |
*) |
5706 | 1201 |
end; |
7093 | 1202 |
gtIceGun: begin |
1203 |
HHGear := Gear^.Hedgehog^.Gear; |
|
1204 |
if HHGear <> nil then |
|
1205 |
begin |
|
7721 | 1206 |
i:= hwRound(hwSqr(Gear^.X - HHGear^.X) + hwSqr(Gear^.Y - HHGear^.Y)); |
1207 |
if RealTicks mod max(1,50 - (round(sqrt(i)) div 4)) = 0 then // experiment in "intensifying" might not get used |
|
7093 | 1208 |
begin |
1209 |
vg:= AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtDust, 1); |
|
1210 |
if vg <> nil then |
|
1211 |
begin |
|
7721 | 1212 |
i:= random(100) + 155; |
1213 |
vg^.Tint:= i shl 24 or i shl 16 or $FF shl 8 or Longword(random(200) + 55); |
|
7093 | 1214 |
vg^.Angle:= random(360); |
7721 | 1215 |
vg^.dx:= 0.001 * random(80); |
1216 |
vg^.dy:= 0.001 * random(80) |
|
7093 | 1217 |
end |
1218 |
end; |
|
1219 |
if RealTicks mod 2 = 0 then |
|
1220 |
begin |
|
1221 |
i:= random(100)+100; |
|
1222 |
if Gear^.Target.X <> NoPointX then |
|
7098
f8c453ade379
Minor tweaks to freezer, mostly to simplify current state to laptop
nemo
parents:
7093
diff
changeset
|
1223 |
DrawLine(Gear^.Target.X, Gear^.Target.Y, hwRound(HHGear^.X), hwRound(HHGear^.Y), 4.0, i, i, $FF, $40) |
f8c453ade379
Minor tweaks to freezer, mostly to simplify current state to laptop
nemo
parents:
7093
diff
changeset
|
1224 |
else DrawLine(hwRound(HHGear^.X), hwRound(HHGear^.Y), hwRound(Gear^.X), hwRound(Gear^.Y), 4.0, i, i, $FF, $40); |
7093 | 1225 |
end |
1226 |
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
|
1227 |
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
|
1228 |
gtGenericFaller: DrawCircle(x, y, 3, 3, $FF, $00, $00, $FF); // debug |
4388 | 1229 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6508
diff
changeset
|
1230 |
if Gear^.RenderTimer and (Gear^.Tex <> nil) then |
6999 | 1231 |
DrawTextureCentered(x + 8, y + 8, Gear^.Tex); |
4388 | 1232 |
end; |
1233 |
||
1234 |
end. |