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