author | sheepluva |
Sat, 24 Oct 2015 00:21:15 +0200 | |
changeset 11240 | 413714b915d2 |
parent 11046 | 47a8c19ecb60 |
child 11744 | eee922f69d1b |
permissions | -rw-r--r-- |
3441 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
3441 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10015
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
3441 | 17 |
*) |
5121
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
18 |
|
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
19 |
(* |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
20 |
* This file contains the step handlers for visual gears. |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
21 |
* |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
22 |
* Since the effects of visual gears do not affect the course of the game, |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
23 |
* no "synchronization" between players is required. |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
24 |
* => The usage of safe functions or data types (e.g. GetRandom() or hwFloat) |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
25 |
* is usually not necessary and therefore undesirable. |
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
26 |
*) |
10015 | 27 |
|
28 |
{$INCLUDE "options.inc"} |
|
29 |
||
9283
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
30 |
unit uVisualGearsHandlers; |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
31 |
|
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
32 |
interface |
10193
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
33 |
uses uTypes, uGears; |
9283
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
34 |
|
9960 | 35 |
var doStepVGHandlers: array[TVisualGearType] of TVGearStepProcedure; |
9283
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
36 |
|
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
37 |
procedure doStepFlake(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
38 |
procedure doStepBeeTrace(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
39 |
procedure doStepCloud(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
40 |
procedure doStepExpl(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
41 |
procedure doStepNote(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
42 |
procedure doStepLineTrail(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
43 |
procedure doStepEgg(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
44 |
procedure doStepFire(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
45 |
procedure doStepShell(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
46 |
procedure doStepSmallDamage(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
47 |
procedure doStepBubble(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
48 |
procedure doStepSteam(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
49 |
procedure doStepAmmo(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
50 |
procedure doStepSmoke(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
51 |
procedure doStepDust(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
52 |
procedure doStepSplash(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
53 |
procedure doStepDroplet(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
54 |
procedure doStepSmokeRing(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
55 |
procedure doStepFeather(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
56 |
procedure doStepTeamHealthSorterWork(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
57 |
procedure doStepTeamHealthSorter(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
58 |
procedure doStepSpeechBubbleWork(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
59 |
procedure doStepSpeechBubble(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
60 |
procedure doStepHealthTagWork(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
61 |
procedure doStepHealthTagWorkUnderWater(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
62 |
procedure doStepHealthTag(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
63 |
procedure doStepSmokeTrace(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
64 |
procedure doStepExplosionWork(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
65 |
procedure doStepExplosion(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
66 |
procedure doStepBigExplosionWork(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
67 |
procedure doStepBigExplosion(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
68 |
procedure doStepChunk(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
69 |
procedure doStepBulletHit(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
70 |
procedure doStepCircle(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
71 |
procedure doStepSmoothWindBar(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
72 |
procedure doStepStraightShot(Gear: PVisualGear; Steps: Longword); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
73 |
|
9720
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
74 |
function isSorterActive: boolean; inline; |
9283
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
75 |
procedure initModule; |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
76 |
|
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
77 |
implementation |
10354 | 78 |
uses uCollisions, uVariables, Math, uConsts, uVisualGearsList, uFloat, uSound, uRenderUtils, uWorld; |
5121
2d34ec60992c
added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents:
4976
diff
changeset
|
79 |
|
3441 | 80 |
procedure doStepFlake(Gear: PVisualGear; Steps: Longword); |
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4365
diff
changeset
|
81 |
var sign: real; |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
82 |
moved: boolean; |
10625
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
83 |
vfc, vft: LongWord; |
3441 | 84 |
begin |
3641 | 85 |
if vobCount = 0 then exit; |
3611 | 86 |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
87 |
sign:= 1; |
3441 | 88 |
with Gear^ do |
89 |
begin |
|
10625
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
90 |
|
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
91 |
X:= X + (cWindSpeedf * 400 + dX + tdX) * Steps * Gear^.Scale; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
92 |
|
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
93 |
if SuddenDeathDmg then |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
94 |
begin |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
95 |
Y:= Y + (dY + tdY + cGravityf * vobSDFallSpeed) * Steps * Gear^.Scale; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
96 |
vfc:= vobSDFramesCount; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
97 |
vft:= vobSDFrameTicks; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
98 |
end |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
99 |
else |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
100 |
begin |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
101 |
Y:= Y + (dY + tdY + cGravityf * vobFallSpeed) * Steps * Gear^.Scale; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
102 |
vfc:= vobFramesCount; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
103 |
vft:= vobFrameTicks; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
104 |
end; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
105 |
|
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
106 |
if vft > 0 then |
3441 | 107 |
begin |
10623
81f1cf934827
Skip frame increments if FrameTicks is over 1000 seconds per frame, probably indicating static at that point.
nemo
parents:
10526
diff
changeset
|
108 |
inc(FrameTicks, Steps); |
10625
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
109 |
if FrameTicks > vft then |
10623
81f1cf934827
Skip frame increments if FrameTicks is over 1000 seconds per frame, probably indicating static at that point.
nemo
parents:
10526
diff
changeset
|
110 |
begin |
10625
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
111 |
dec(FrameTicks, vft); |
10623
81f1cf934827
Skip frame increments if FrameTicks is over 1000 seconds per frame, probably indicating static at that point.
nemo
parents:
10526
diff
changeset
|
112 |
inc(Frame); |
10625
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
113 |
if Frame = vfc then |
10623
81f1cf934827
Skip frame increments if FrameTicks is over 1000 seconds per frame, probably indicating static at that point.
nemo
parents:
10526
diff
changeset
|
114 |
Frame:= 0 |
81f1cf934827
Skip frame increments if FrameTicks is over 1000 seconds per frame, probably indicating static at that point.
nemo
parents:
10526
diff
changeset
|
115 |
end; |
3441 | 116 |
end; |
10625
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
117 |
|
3441 | 118 |
Angle:= Angle + dAngle * Steps; |
4152
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
119 |
if Angle > 360 then |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
120 |
Angle:= Angle - 360 |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
121 |
else |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
122 |
if Angle < - 360 then |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
123 |
Angle:= Angle + 360; |
8330 | 124 |
|
125 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
126 |
if (round(X) >= cLeftScreenBorder) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
127 |
and (round(X) <= cRightScreenBorder) |
10731
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
128 |
and (round(Y) - 250 <= LAND_HEIGHT) |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
129 |
and (Timer > 0) and (Timer-Steps > 0) then |
3441 | 130 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
131 |
if tdX > 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
132 |
sign := 1 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
133 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
134 |
sign:= -1; |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
135 |
tdX:= tdX - 0.005*Steps*sign; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
136 |
if ((sign < 0) and (tdX > 0)) or ((sign > 0) and (tdX < 0)) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
137 |
tdX:= 0; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
138 |
if tdX > 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
139 |
sign := 1 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
140 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
141 |
sign:= -1; |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
142 |
tdY:= tdY - 0.005*Steps*sign; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
143 |
if ((sign < 0) and (tdY > 0)) or ((sign > 0) and (tdY < 0)) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
144 |
tdY:= 0; |
3441 | 145 |
dec(Timer, Steps) |
146 |
end |
|
147 |
else |
|
148 |
begin |
|
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
149 |
moved:= false; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
150 |
if round(X) < cLeftScreenBorder then |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
151 |
begin |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
152 |
X:= X + cScreenSpace; |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
153 |
moved:= true |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
154 |
end |
10731
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
155 |
else if round(X) > cRightScreenBorder then |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
156 |
begin |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
157 |
X:= X - cScreenSpace; |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
158 |
moved:= true |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
159 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
160 |
// if round(Y) < (LAND_HEIGHT - 1024 - 75) then Y:= Y + 25.0; // For if flag is set for flakes rising upwards? |
10731
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
161 |
if (Gear^.Layer = 2) and (round(Y) - 400 > LAND_HEIGHT) and (cGravityf >= 0) then |
7206
ce46b56ae9f5
Double sniper rifle damage (AI seems unaware of second shot, when playing). Spread out flakes along X when looping and add a little Y variation. This avoids noticeable patterns. Especially on the rarer close layer or dense flakes like rain (for Y)
nemo
parents:
6913
diff
changeset
|
162 |
begin |
ce46b56ae9f5
Double sniper rifle damage (AI seems unaware of second shot, when playing). Spread out flakes along X when looping and add a little Y variation. This avoids noticeable patterns. Especially on the rarer close layer or dense flakes like rain (for Y)
nemo
parents:
6913
diff
changeset
|
163 |
X:= cLeftScreenBorder + random(cScreenSpace); |
10731
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
164 |
Y:= Y-(1024 + 400 + random(50)); // TODO - configure in theme (jellies for example could use limited range) |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
165 |
moved:= true |
7206
ce46b56ae9f5
Double sniper rifle damage (AI seems unaware of second shot, when playing). Spread out flakes along X when looping and add a little Y variation. This avoids noticeable patterns. Especially on the rarer close layer or dense flakes like rain (for Y)
nemo
parents:
6913
diff
changeset
|
166 |
end |
10731
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
167 |
else if (Gear^.Layer <> 2) and (round(Y) - 150 > LAND_HEIGHT) and (cGravityf >= 0) then |
7206
ce46b56ae9f5
Double sniper rifle damage (AI seems unaware of second shot, when playing). Spread out flakes along X when looping and add a little Y variation. This avoids noticeable patterns. Especially on the rarer close layer or dense flakes like rain (for Y)
nemo
parents:
6913
diff
changeset
|
168 |
begin |
ce46b56ae9f5
Double sniper rifle damage (AI seems unaware of second shot, when playing). Spread out flakes along X when looping and add a little Y variation. This avoids noticeable patterns. Especially on the rarer close layer or dense flakes like rain (for Y)
nemo
parents:
6913
diff
changeset
|
169 |
X:= cLeftScreenBorder + random(cScreenSpace); |
10731
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
170 |
Y:= Y-(1024 + 200 + random(50)); |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
171 |
moved:= true |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
172 |
end |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
173 |
else if (round(Y) < LAND_HEIGHT-1200) and (cGravityf < 0) then // gravity can make flakes move upwards |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
174 |
begin |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
175 |
X:= cLeftScreenBorder + random(cScreenSpace); |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
176 |
if Gear^.Layer = 2 then |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
177 |
Y:= Y+(1024 + 150 + random(100)) |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
178 |
else |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
179 |
Y:= Y+(1024 + random(50)); |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
180 |
moved:= true |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
181 |
end; |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
182 |
if moved then |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
183 |
begin |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
184 |
Angle:= random(360); |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
185 |
dx:= 0.0000038654705 * random(10000); |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
186 |
dy:= 0.000003506096 * random(7000); |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7206
diff
changeset
|
187 |
if random(2) = 0 then dx := -dx |
7206
ce46b56ae9f5
Double sniper rifle damage (AI seems unaware of second shot, when playing). Spread out flakes along X when looping and add a little Y variation. This avoids noticeable patterns. Especially on the rarer close layer or dense flakes like rain (for Y)
nemo
parents:
6913
diff
changeset
|
188 |
end; |
3441 | 189 |
Timer:= 0; |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
190 |
tdX:= 0; |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
191 |
tdY:= 0 |
3441 | 192 |
end; |
193 |
end; |
|
194 |
||
195 |
end; |
|
196 |
||
197 |
//////////////////////////////////////////////////////////////////////////////// |
|
198 |
procedure doStepBeeTrace(Gear: PVisualGear; Steps: Longword); |
|
199 |
begin |
|
200 |
if Gear^.FrameTicks > Steps then |
|
201 |
dec(Gear^.FrameTicks, Steps) |
|
202 |
else |
|
203 |
DeleteVisualGear(Gear); |
|
204 |
end; |
|
205 |
||
206 |
//////////////////////////////////////////////////////////////////////////////// |
|
207 |
procedure doStepCloud(Gear: PVisualGear; Steps: Longword); |
|
3592
0bcad5c38c9e
clouds: up-and-down-bouncing now without evil loop
sheepluva
parents:
3590
diff
changeset
|
208 |
var s: Longword; |
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4365
diff
changeset
|
209 |
t: real; |
3441 | 210 |
begin |
6553
91365db8b82c
Slow down flakes/clouds that are farther away. Also unbreak NTPX w/ SDL 1.2
nemo
parents:
6302
diff
changeset
|
211 |
Gear^.X:= Gear^.X + (cWindSpeedf * 750 * Gear^.dX * Gear^.Scale) * Steps; |
3441 | 212 |
|
3592
0bcad5c38c9e
clouds: up-and-down-bouncing now without evil loop
sheepluva
parents:
3590
diff
changeset
|
213 |
// up-and-down-bounce magic |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
214 |
s := (GameTicks + Gear^.Timer) mod 4096; |
6553
91365db8b82c
Slow down flakes/clouds that are farther away. Also unbreak NTPX w/ SDL 1.2
nemo
parents:
6302
diff
changeset
|
215 |
t := 8 * Gear^.Scale * hwFloat2Float(AngleSin(s mod 2048)); |
3597
978c30ef50fc
visual gears: fixing nemo's c-style assignment/multiplications
sheepluva
parents:
3593
diff
changeset
|
216 |
if (s < 2048) then t := -t; |
3441 | 217 |
|
4161 | 218 |
Gear^.Y := LAND_HEIGHT - 1184 + LongInt(Gear^.Timer mod 8) + t; |
3441 | 219 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
220 |
if round(Gear^.X) < cLeftScreenBorder then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
221 |
Gear^.X:= Gear^.X + cScreenSpace |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
222 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
223 |
if round(Gear^.X) > cRightScreenBorder then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
224 |
Gear^.X:= Gear^.X - cScreenSpace |
3441 | 225 |
end; |
226 |
||
227 |
//////////////////////////////////////////////////////////////////////////////// |
|
228 |
procedure doStepExpl(Gear: PVisualGear; Steps: Longword); |
|
7808 | 229 |
var s: LongInt; |
3441 | 230 |
begin |
7808 | 231 |
s:= min(Steps, cExplFrameTicks); |
3441 | 232 |
|
7808 | 233 |
Gear^.X:= Gear^.X + Gear^.dX * s; |
234 |
Gear^.Y:= Gear^.Y + Gear^.dY * s; |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
235 |
//Gear^.dY:= Gear^.dY + cGravityf; |
3441 | 236 |
|
237 |
if Gear^.FrameTicks <= Steps then |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
238 |
if Gear^.Frame = 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
239 |
DeleteVisualGear(Gear) |
3441 | 240 |
else |
241 |
begin |
|
242 |
dec(Gear^.Frame); |
|
243 |
Gear^.FrameTicks:= cExplFrameTicks |
|
244 |
end |
|
245 |
else dec(Gear^.FrameTicks, Steps) |
|
246 |
end; |
|
247 |
||
248 |
//////////////////////////////////////////////////////////////////////////////// |
|
3704 | 249 |
procedure doStepNote(Gear: PVisualGear; Steps: Longword); |
250 |
begin |
|
251 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
252 |
||
253 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
3706 | 254 |
Gear^.dY:= Gear^.dY + cGravityf * Steps / 2; |
3704 | 255 |
|
3706 | 256 |
Gear^.Angle:= Gear^.Angle + (Gear^.Frame + 1) * Steps / 10; |
257 |
while Gear^.Angle > cMaxAngle do |
|
258 |
Gear^.Angle:= Gear^.Angle - cMaxAngle; |
|
3704 | 259 |
|
260 |
if Gear^.FrameTicks <= Steps then |
|
261 |
DeleteVisualGear(Gear) |
|
262 |
else |
|
263 |
dec(Gear^.FrameTicks, Steps) |
|
264 |
end; |
|
265 |
||
266 |
//////////////////////////////////////////////////////////////////////////////// |
|
4279 | 267 |
procedure doStepLineTrail(Gear: PVisualGear; Steps: Longword); |
268 |
begin |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
269 |
{$IFNDEF PAS2C} |
4279 | 270 |
Steps := Steps; |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
271 |
{$ENDIF} |
4279 | 272 |
if Gear^.Timer <= Steps then |
273 |
DeleteVisualGear(Gear) |
|
274 |
else |
|
275 |
dec(Gear^.Timer, Steps) |
|
276 |
end; |
|
277 |
||
278 |
//////////////////////////////////////////////////////////////////////////////// |
|
3441 | 279 |
procedure doStepEgg(Gear: PVisualGear; Steps: Longword); |
280 |
begin |
|
281 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
282 |
||
283 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
284 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 285 |
|
286 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
287 |
||
288 |
if Gear^.FrameTicks <= Steps then |
|
6128 | 289 |
begin |
290 |
DeleteVisualGear(Gear); |
|
291 |
exit |
|
292 |
end |
|
3441 | 293 |
else |
5874
5cd329cf2460
nemo's molotov burst effect; with a slight color modification added
sheepluva
parents:
5855
diff
changeset
|
294 |
dec(Gear^.FrameTicks, Steps); |
5cd329cf2460
nemo's molotov burst effect; with a slight color modification added
sheepluva
parents:
5855
diff
changeset
|
295 |
|
5cd329cf2460
nemo's molotov burst effect; with a slight color modification added
sheepluva
parents:
5855
diff
changeset
|
296 |
if Gear^.FrameTicks < $FF then |
5cd329cf2460
nemo's molotov burst effect; with a slight color modification added
sheepluva
parents:
5855
diff
changeset
|
297 |
Gear^.Tint:= (Gear^.Tint and $FFFFFF00) or Gear^.FrameTicks |
3441 | 298 |
end; |
299 |
||
300 |
//////////////////////////////////////////////////////////////////////////////// |
|
301 |
procedure doStepFire(Gear: PVisualGear; Steps: Longword); |
|
3751 | 302 |
var vgt: PVisualGear; |
3441 | 303 |
begin |
304 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
305 |
||
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
306 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;// + cGravityf * (Steps * Steps); |
3751 | 307 |
if (Gear^.State and gstTmpFlag) = 0 then |
308 |
begin |
|
309 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
|
3764 | 310 |
if ((GameTicks mod 200) < Steps + 1) then |
3751 | 311 |
begin |
312 |
vgt:= AddVisualGear(round(Gear^.X), round(Gear^.Y), vgtFire); |
|
313 |
if vgt <> nil then |
|
314 |
begin |
|
315 |
vgt^.dx:= 0; |
|
316 |
vgt^.dy:= 0; |
|
317 |
vgt^.State:= gstTmpFlag; |
|
318 |
end; |
|
319 |
end |
|
320 |
end |
|
321 |
else |
|
322 |
inc(Steps, Steps); |
|
3441 | 323 |
|
324 |
if Gear^.FrameTicks <= Steps then |
|
325 |
DeleteVisualGear(Gear) |
|
326 |
else |
|
327 |
dec(Gear^.FrameTicks, Steps) |
|
328 |
end; |
|
329 |
||
330 |
//////////////////////////////////////////////////////////////////////////////// |
|
331 |
procedure doStepShell(Gear: PVisualGear; Steps: Longword); |
|
332 |
begin |
|
333 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
334 |
||
335 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
336 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 337 |
|
338 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
339 |
||
340 |
if Gear^.FrameTicks <= Steps then |
|
341 |
DeleteVisualGear(Gear) |
|
342 |
else |
|
343 |
dec(Gear^.FrameTicks, Steps) |
|
344 |
end; |
|
345 |
||
346 |
procedure doStepSmallDamage(Gear: PVisualGear; Steps: Longword); |
|
347 |
begin |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
348 |
Gear^.Y:= Gear^.Y - 0.02 * Steps; |
3441 | 349 |
|
350 |
if Gear^.FrameTicks <= Steps then |
|
351 |
DeleteVisualGear(Gear) |
|
352 |
else |
|
353 |
dec(Gear^.FrameTicks, Steps) |
|
354 |
end; |
|
355 |
||
356 |
//////////////////////////////////////////////////////////////////////////////// |
|
357 |
procedure doStepBubble(Gear: PVisualGear; Steps: Longword); |
|
358 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
359 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
360 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
361 |
Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
362 |
Gear^.dX := Gear^.dX / (1.001 * Steps); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
363 |
Gear^.dY := Gear^.dY / (1.001 * Steps); |
3441 | 364 |
|
10355 | 365 |
if (Gear^.FrameTicks <= Steps) or (not CheckCoordInWater(round(Gear^.X), round(Gear^.Y))) then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
366 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
367 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
368 |
dec(Gear^.FrameTicks, Steps) |
3441 | 369 |
end; |
370 |
||
371 |
//////////////////////////////////////////////////////////////////////////////// |
|
372 |
procedure doStepSteam(Gear: PVisualGear; Steps: Longword); |
|
373 |
begin |
|
10354 | 374 |
if ((cWindSpeedf > 0) and ( leftX > Gear^.X)) |
375 |
or ((cWindSpeedf < 0) and (rightX < Gear^.X)) then |
|
376 |
Gear^.X:= Gear^.X + (cWindSpeedf * 100 + Gear^.dX) * Steps; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
377 |
Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps; |
3441 | 378 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
379 |
if Gear^.FrameTicks <= Steps then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
380 |
if Gear^.Frame = 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
381 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
382 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
383 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
384 |
if Random(2) = 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
385 |
dec(Gear^.Frame); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
386 |
Gear^.FrameTicks:= cExplFrameTicks |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
387 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
388 |
else dec(Gear^.FrameTicks, Steps) |
3441 | 389 |
end; |
390 |
||
391 |
//////////////////////////////////////////////////////////////////////////////// |
|
392 |
procedure doStepAmmo(Gear: PVisualGear; Steps: Longword); |
|
393 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
394 |
Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps; |
3441 | 395 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
396 |
Gear^.scale:= Gear^.scale + 0.0025 * Steps; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
397 |
Gear^.alpha:= Gear^.alpha - 0.0015 * Steps; |
3441 | 398 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
399 |
if Gear^.alpha < 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
400 |
DeleteVisualGear(Gear) |
3441 | 401 |
end; |
402 |
||
403 |
//////////////////////////////////////////////////////////////////////////////// |
|
404 |
procedure doStepSmoke(Gear: PVisualGear; Steps: Longword); |
|
405 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
406 |
Gear^.X:= Gear^.X + (cWindSpeedf + Gear^.dX) * Steps; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
407 |
Gear^.Y:= Gear^.Y - (cDrownSpeedf + Gear^.dY) * Steps; |
3441 | 408 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
409 |
Gear^.dX := Gear^.dX + (cWindSpeedf * 0.3 * Steps); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
410 |
//Gear^.dY := Gear^.dY - (cDrownSpeedf * 0.995); |
3441 | 411 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
412 |
if Gear^.FrameTicks <= Steps then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
413 |
if Gear^.Frame = 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
414 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
415 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
416 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
417 |
if Random(2) = 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
418 |
dec(Gear^.Frame); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
419 |
Gear^.FrameTicks:= cExplFrameTicks |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
420 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
421 |
else dec(Gear^.FrameTicks, Steps) |
3441 | 422 |
end; |
423 |
||
424 |
//////////////////////////////////////////////////////////////////////////////// |
|
425 |
procedure doStepDust(Gear: PVisualGear; Steps: Longword); |
|
426 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
427 |
Gear^.X:= Gear^.X + (cWindSpeedf + (cWindSpeedf * 0.03 * Steps) + Gear^.dX) * Steps; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
428 |
Gear^.Y:= Gear^.Y - (Gear^.dY) * Steps; |
3441 | 429 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
430 |
Gear^.dX := Gear^.dX - (Gear^.dX * 0.005 * Steps); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
431 |
Gear^.dY := Gear^.dY - (cDrownSpeedf * 0.001 * Steps); |
3441 | 432 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
433 |
if Gear^.FrameTicks <= Steps then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
434 |
if Gear^.Frame = 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
435 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
436 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
437 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
438 |
dec(Gear^.Frame); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
439 |
Gear^.FrameTicks:= cExplFrameTicks |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
440 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
441 |
else dec(Gear^.FrameTicks, Steps) |
3441 | 442 |
end; |
443 |
||
444 |
//////////////////////////////////////////////////////////////////////////////// |
|
445 |
procedure doStepSplash(Gear: PVisualGear; Steps: Longword); |
|
446 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
447 |
if Gear^.FrameTicks <= Steps then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
448 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
449 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
450 |
dec(Gear^.FrameTicks, Steps); |
3441 | 451 |
end; |
452 |
||
453 |
//////////////////////////////////////////////////////////////////////////////// |
|
454 |
procedure doStepDroplet(Gear: PVisualGear; Steps: Longword); |
|
455 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
456 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
3441 | 457 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
458 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
459 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 460 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
461 |
if round(Gear^.Y) > cWaterLine then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
462 |
begin |
3441 | 463 |
DeleteVisualGear(Gear); |
464 |
PlaySound(TSound(ord(sndDroplet1) + Random(3))); |
|
465 |
end; |
|
466 |
end; |
|
467 |
||
468 |
//////////////////////////////////////////////////////////////////////////////// |
|
469 |
procedure doStepSmokeRing(Gear: PVisualGear; Steps: Longword); |
|
470 |
begin |
|
471 |
inc(Gear^.Timer, Steps); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
472 |
if Gear^.Timer >= Gear^.FrameTicks then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
473 |
DeleteVisualGear(Gear) |
3441 | 474 |
else |
475 |
begin |
|
476 |
Gear^.scale := 1.25 * (-power(2, -10 * Int(Gear^.Timer)/Gear^.FrameTicks) + 1) + 0.4; |
|
477 |
Gear^.alpha := 1 - power(Gear^.Timer / 350, 4); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
478 |
if Gear^.alpha < 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
479 |
Gear^.alpha:= 0; |
3441 | 480 |
end; |
481 |
end; |
|
482 |
||
483 |
//////////////////////////////////////////////////////////////////////////////// |
|
484 |
procedure doStepFeather(Gear: PVisualGear; Steps: Longword); |
|
485 |
begin |
|
486 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
487 |
||
488 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
489 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 490 |
|
491 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
492 |
||
493 |
if Gear^.FrameTicks <= Steps then |
|
494 |
DeleteVisualGear(Gear) |
|
495 |
else |
|
496 |
dec(Gear^.FrameTicks, Steps) |
|
497 |
end; |
|
498 |
||
499 |
//////////////////////////////////////////////////////////////////////////////// |
|
500 |
const cSorterWorkTime = 640; |
|
501 |
var thexchar: array[0..cMaxTeams] of |
|
502 |
record |
|
503 |
dy, ny, dw: LongInt; |
|
504 |
team: PTeam; |
|
505 |
SortFactor: QWord; |
|
9720
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
506 |
hdw: array[0..cMaxHHIndex] of LongInt; |
3441 | 507 |
end; |
508 |
currsorter: PVisualGear = nil; |
|
509 |
||
9720
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
510 |
function isSorterActive: boolean; inline; |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
511 |
begin |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
512 |
isSorterActive:= currsorter <> nil |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
513 |
end; |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
514 |
|
3441 | 515 |
procedure doStepTeamHealthSorterWork(Gear: PVisualGear; Steps: Longword); |
9720
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
516 |
var i, t, h: LongInt; |
3441 | 517 |
begin |
10858
bd281e854e02
Don't do anything if sorter was replaced, even for one tick only. Hopefully fixes issue #907, but not confirmed, though very highly plausible.
unc0rr
parents:
10731
diff
changeset
|
518 |
if currsorter = Gear then |
bd281e854e02
Don't do anything if sorter was replaced, even for one tick only. Hopefully fixes issue #907, but not confirmed, though very highly plausible.
unc0rr
parents:
10731
diff
changeset
|
519 |
for t:= 1 to min(Steps, Gear^.Timer) do |
3441 | 520 |
begin |
521 |
dec(Gear^.Timer); |
|
522 |
if (Gear^.Timer and 15) = 0 then |
|
523 |
for i:= 0 to Pred(TeamsCount) do |
|
524 |
with thexchar[i] do |
|
525 |
begin |
|
526 |
{$WARNINGS OFF} |
|
7644 | 527 |
team^.DrawHealthY:= ny + dy * LongInt(Gear^.Timer) div cSorterWorkTime; |
9720
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
528 |
team^.TeamHealthBarHealth:= team^.TeamHealth + dw * LongInt(Gear^.Timer) div cSorterWorkTime; |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
529 |
|
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
530 |
for h:= 0 to cMaxHHIndex do |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
531 |
if (team^.Hedgehogs[h].Gear <> nil) then |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
532 |
team^.Hedgehogs[h].HealthBarHealth:= team^.Hedgehogs[h].Gear^.Health + hdw[h] * LongInt(Gear^.Timer) div cSorterWorkTime |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
533 |
else |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
534 |
team^.Hedgehogs[h].HealthBarHealth:= hdw[h] * LongInt(Gear^.Timer) div cSorterWorkTime; |
3441 | 535 |
{$WARNINGS ON} |
536 |
end; |
|
7644 | 537 |
end; |
3441 | 538 |
|
7644 | 539 |
if (Gear^.Timer = 0) or (currsorter <> Gear) then |
540 |
begin |
|
541 |
if currsorter = Gear then |
|
542 |
currsorter:= nil; |
|
543 |
DeleteVisualGear(Gear); |
|
544 |
exit |
|
3441 | 545 |
end |
546 |
end; |
|
547 |
||
548 |
procedure doStepTeamHealthSorter(Gear: PVisualGear; Steps: Longword); |
|
549 |
var i: Longword; |
|
550 |
b: boolean; |
|
9720
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
551 |
t, h: LongInt; |
3441 | 552 |
begin |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
553 |
{$IFNDEF PAS2C} |
3441 | 554 |
Steps:= Steps; // avoid compiler hint |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
555 |
{$ENDIF} |
7644 | 556 |
|
3441 | 557 |
for t:= 0 to Pred(TeamsCount) do |
558 |
with thexchar[t] do |
|
559 |
begin |
|
560 |
team:= TeamsArray[t]; |
|
7644 | 561 |
dy:= team^.DrawHealthY; |
9720
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
562 |
dw:= team^.TeamHealthBarHealth - team^.TeamHealth; |
7644 | 563 |
if team^.TeamHealth > 0 then |
564 |
begin |
|
565 |
SortFactor:= team^.Clan^.ClanHealth; |
|
566 |
SortFactor:= (SortFactor shl 3) + team^.Clan^.ClanIndex; |
|
567 |
SortFactor:= (SortFactor shl 30) + team^.TeamHealth; |
|
568 |
end |
|
569 |
else |
|
570 |
SortFactor:= 0; |
|
9720
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
571 |
|
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
572 |
for h:= 0 to cMaxHHIndex do |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
573 |
if (team^.Hedgehogs[h].Gear <> nil) then |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
574 |
hdw[h]:= team^.Hedgehogs[h].HealthBarHealth - team^.Hedgehogs[h].Gear^.Health |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
575 |
else |
453a1c29b7e4
Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents:
9656
diff
changeset
|
576 |
hdw[h]:= team^.Hedgehogs[h].HealthBarHealth; |
3441 | 577 |
end; |
578 |
||
579 |
if TeamsCount > 1 then |
|
580 |
repeat |
|
581 |
b:= true; |
|
582 |
for t:= 0 to TeamsCount - 2 do |
|
583 |
if (thexchar[t].SortFactor > thexchar[Succ(t)].SortFactor) then |
|
584 |
begin |
|
585 |
thexchar[cMaxTeams]:= thexchar[t]; |
|
586 |
thexchar[t]:= thexchar[Succ(t)]; |
|
587 |
thexchar[Succ(t)]:= thexchar[cMaxTeams]; |
|
588 |
b:= false |
|
589 |
end |
|
590 |
until b; |
|
591 |
||
592 |
t:= - 4; |
|
593 |
for i:= 0 to Pred(TeamsCount) do |
|
7644 | 594 |
with thexchar[i] do |
595 |
if team^.TeamHealth > 0 then |
|
596 |
begin |
|
9656 | 597 |
dec(t, team^.Clan^.HealthTex^.h + 2); |
7644 | 598 |
ny:= t; |
599 |
dy:= dy - ny |
|
600 |
end; |
|
3441 | 601 |
|
602 |
Gear^.Timer:= cSorterWorkTime; |
|
603 |
Gear^.doStep:= @doStepTeamHealthSorterWork; |
|
604 |
currsorter:= Gear; |
|
605 |
//doStepTeamHealthSorterWork(Gear, Steps) |
|
606 |
end; |
|
607 |
||
608 |
//////////////////////////////////////////////////////////////////////////////// |
|
609 |
procedure doStepSpeechBubbleWork(Gear: PVisualGear; Steps: Longword); |
|
10193
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
610 |
var realgear: PGear; |
3441 | 611 |
begin |
612 |
if Gear^.Timer > Steps then dec(Gear^.Timer, Steps) else Gear^.Timer:= 0; |
|
10193
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
613 |
realgear:= nil; |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
614 |
if Gear^.Frame <> 0 then // use a non-hedgehog gear - a lua trick that hopefully won't be overused |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
615 |
begin |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
616 |
realgear:= GearByUID(Gear^.Frame); |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
617 |
if realgear <> nil then |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
618 |
begin |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
619 |
Gear^.X:= hwFloat2Float(realgear^.X) + (Gear^.Tex^.w div 2 - Gear^.Tag); |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
620 |
Gear^.Y:= hwFloat2Float(realgear^.Y) - (realgear^.Radius + Gear^.Tex^.h); |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
621 |
end |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
622 |
end |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
623 |
else if Gear^.Hedgehog^.Gear <> nil then |
3441 | 624 |
begin |
9763 | 625 |
Gear^.X:= hwFloat2Float(Gear^.Hedgehog^.Gear^.X) + (Gear^.Tex^.w div 2 - Gear^.Tag); |
10193
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
626 |
Gear^.Y:= hwFloat2Float(Gear^.Hedgehog^.Gear^.Y) - (cHHRadius + Gear^.Tex^.h); |
3441 | 627 |
end; |
628 |
||
10193
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
629 |
if (Gear^.Timer = 0) or ((realgear = nil) and (Gear^.Frame <> 0)) then |
3441 | 630 |
begin |
10193
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
631 |
if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.SpeechGear = Gear) then |
4365 | 632 |
Gear^.Hedgehog^.SpeechGear:= nil; |
3441 | 633 |
DeleteVisualGear(Gear) |
634 |
end; |
|
635 |
end; |
|
636 |
||
637 |
procedure doStepSpeechBubble(Gear: PVisualGear; Steps: Longword); |
|
10193
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
638 |
var realgear: PGear; |
3441 | 639 |
begin |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
640 |
|
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
641 |
{$IFNDEF PAS2C} |
3441 | 642 |
Steps:= Steps; // avoid compiler hint |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
643 |
{$ENDIF} |
10193
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
644 |
if Gear^.Frame <> 0 then |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
645 |
realgear:= GearByUID(Gear^.FrameTicks) |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
646 |
else |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
647 |
begin |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
648 |
with Gear^.Hedgehog^ do |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
649 |
if SpeechGear <> nil then |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
650 |
SpeechGear^.Timer:= 0; |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
651 |
realgear:= Gear^.Hedgehog^.Gear; |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
652 |
Gear^.Hedgehog^.SpeechGear:= Gear; |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
653 |
end; |
3441 | 654 |
|
10193
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
655 |
if realgear <> nil then |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
656 |
case Gear^.FrameTicks of |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
657 |
1: Gear^.Tag:= SpritesData[sprSpeechTail].Width-37+realgear^.Radius; |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
658 |
2: Gear^.Tag:= SpritesData[sprThoughtTail].Width-29+realgear^.Radius; |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
659 |
3: Gear^.Tag:= SpritesData[sprShoutTail].Width-19+realgear^.Radius; |
d7cd5b43588f
By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents:
10124
diff
changeset
|
660 |
end; |
3441 | 661 |
|
5186 | 662 |
Gear^.Timer:= max(LongInt(Length(Gear^.Text)) * 150, 3000); |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
663 |
Gear^.Tex:= RenderSpeechBubbleTex(ansistring(Gear^.Text), Gear^.FrameTicks, fnt16); |
3441 | 664 |
|
665 |
Gear^.doStep:= @doStepSpeechBubbleWork; |
|
666 |
||
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4365
diff
changeset
|
667 |
Gear^.Y:= Gear^.Y - Gear^.Tex^.h |
3441 | 668 |
end; |
669 |
||
670 |
//////////////////////////////////////////////////////////////////////////////// |
|
671 |
procedure doStepHealthTagWork(Gear: PVisualGear; Steps: Longword); |
|
672 |
begin |
|
673 |
if Steps > Gear^.Timer then |
|
3459
c552aa44108d
hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents:
3443
diff
changeset
|
674 |
DeleteVisualGear(Gear) |
3441 | 675 |
else |
676 |
begin |
|
677 |
dec(Gear^.Timer, Steps); |
|
678 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
5581 | 679 |
Gear^.X:= Gear^.X + Gear^.dX * Steps |
3441 | 680 |
end; |
681 |
end; |
|
682 |
||
683 |
procedure doStepHealthTagWorkUnderWater(Gear: PVisualGear; Steps: Longword); |
|
684 |
begin |
|
4161 | 685 |
if round(Gear^.Y) - 10 < cWaterLine then |
3441 | 686 |
DeleteVisualGear(Gear) |
687 |
else |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
688 |
Gear^.Y:= Gear^.Y - 0.08 * Steps; |
3441 | 689 |
|
690 |
end; |
|
691 |
||
692 |
procedure doStepHealthTag(Gear: PVisualGear; Steps: Longword); |
|
693 |
var s: shortstring; |
|
694 |
begin |
|
695 |
s:= ''; |
|
696 |
||
697 |
str(Gear^.State, s); |
|
3459
c552aa44108d
hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents:
3443
diff
changeset
|
698 |
if Gear^.Hedgehog <> nil then |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
699 |
Gear^.Tex:= RenderStringTex(ansistring(s), Gear^.Hedgehog^.Team^.Clan^.Color, fnt16) |
3459
c552aa44108d
hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents:
3443
diff
changeset
|
700 |
else |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
701 |
Gear^.Tex:= RenderStringTex(ansistring(s), cWhiteColor, fnt16); |
3441 | 702 |
|
5578 | 703 |
Gear^.doStep:= @doStepHealthTagWork; |
5576 | 704 |
|
5596 | 705 |
if (round(Gear^.Y) > cWaterLine) and (Gear^.Frame = 0) then |
3441 | 706 |
Gear^.doStep:= @doStepHealthTagWorkUnderWater; |
707 |
||
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4365
diff
changeset
|
708 |
Gear^.Y:= Gear^.Y - Gear^.Tex^.h; |
3441 | 709 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
710 |
if Steps > 1 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
711 |
Gear^.doStep(Gear, Steps-1); |
3441 | 712 |
end; |
713 |
||
714 |
//////////////////////////////////////////////////////////////////////////////// |
|
715 |
procedure doStepSmokeTrace(Gear: PVisualGear; Steps: Longword); |
|
716 |
begin |
|
717 |
inc(Gear^.Timer, Steps ); |
|
718 |
if Gear^.Timer > 64 then |
|
719 |
begin |
|
3995
360332f8785f
SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents:
3994
diff
changeset
|
720 |
if Gear^.State = 0 then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
721 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
722 |
DeleteVisualGear(Gear); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
723 |
exit; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
724 |
end; |
3441 | 725 |
dec(Gear^.State, Gear^.Timer div 65); |
726 |
Gear^.Timer:= Gear^.Timer mod 65; |
|
727 |
end; |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
728 |
Gear^.dX:= Gear^.dX + cWindSpeedf * Steps; |
3587 | 729 |
Gear^.X:= Gear^.X + Gear^.dX; |
3441 | 730 |
end; |
731 |
||
732 |
//////////////////////////////////////////////////////////////////////////////// |
|
733 |
procedure doStepExplosionWork(Gear: PVisualGear; Steps: Longword); |
|
734 |
begin |
|
735 |
inc(Gear^.Timer, Steps); |
|
736 |
if Gear^.Timer > 75 then |
|
737 |
begin |
|
738 |
inc(Gear^.State, Gear^.Timer div 76); |
|
739 |
Gear^.Timer:= Gear^.Timer mod 76; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
740 |
if Gear^.State > 5 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
741 |
DeleteVisualGear(Gear); |
3441 | 742 |
end; |
743 |
end; |
|
744 |
||
745 |
procedure doStepExplosion(Gear: PVisualGear; Steps: Longword); |
|
746 |
var i: LongWord; |
|
4473 | 747 |
gX,gY: LongInt; |
748 |
vg: PVisualGear; |
|
3441 | 749 |
begin |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
750 |
gX:= round(Gear^.X); |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
751 |
gY:= round(Gear^.Y); |
8330 | 752 |
for i:= 0 to 31 do |
4473 | 753 |
begin |
754 |
vg:= AddVisualGear(gX, gY, vgtFire); |
|
8330 | 755 |
if vg <> nil then |
4475
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
756 |
begin |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
757 |
vg^.State:= gstTmpFlag; |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
758 |
inc(vg^.FrameTicks, vg^.FrameTicks) |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
759 |
end |
4473 | 760 |
end; |
3590 | 761 |
for i:= 0 to 8 do AddVisualGear(gX, gY, vgtExplPart); |
762 |
for i:= 0 to 8 do AddVisualGear(gX, gY, vgtExplPart2); |
|
3441 | 763 |
Gear^.doStep:= @doStepExplosionWork; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
764 |
if Steps > 1 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
765 |
Gear^.doStep(Gear, Steps-1); |
3441 | 766 |
end; |
767 |
||
768 |
||
769 |
//////////////////////////////////////////////////////////////////////////////// |
|
770 |
procedure doStepBigExplosionWork(Gear: PVisualGear; Steps: Longword); |
|
5855
74c621e12baa
I do believe the only thing that was *ever* wrong with camera shake was someone decided to use getRandom on something that had always been a visual effect anyway. Pretty sure WorldDx is in fact safe to modify.
nemo
parents:
5840
diff
changeset
|
771 |
var maxMovement: LongInt; |
3441 | 772 |
begin |
773 |
||
774 |
inc(Gear^.Timer, Steps); |
|
775 |
if (Gear^.Timer and 5) = 0 then |
|
776 |
begin |
|
777 |
maxMovement := max(1, 13 - ((Gear^.Timer * 15) div 250)); |
|
778 |
ShakeCamera(maxMovement); |
|
779 |
end; |
|
5804
98192121dc69
Since shakes are still proving unsafe until camera is reworked, try a mild flash instead
nemo
parents:
5803
diff
changeset
|
780 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
781 |
if Gear^.Timer > 250 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
782 |
DeleteVisualGear(Gear); |
3441 | 783 |
end; |
784 |
||
785 |
procedure doStepBigExplosion(Gear: PVisualGear; Steps: Longword); |
|
786 |
var i: LongWord; |
|
4473 | 787 |
gX,gY: LongInt; |
788 |
vg: PVisualGear; |
|
3441 | 789 |
begin |
5855
74c621e12baa
I do believe the only thing that was *ever* wrong with camera shake was someone decided to use getRandom on something that had always been a visual effect anyway. Pretty sure WorldDx is in fact safe to modify.
nemo
parents:
5840
diff
changeset
|
790 |
//ScreenFade:= sfFromWhite; |
74c621e12baa
I do believe the only thing that was *ever* wrong with camera shake was someone decided to use getRandom on something that had always been a visual effect anyway. Pretty sure WorldDx is in fact safe to modify.
nemo
parents:
5840
diff
changeset
|
791 |
//ScreenFadeValue:= round(60 * zoom * zoom); |
74c621e12baa
I do believe the only thing that was *ever* wrong with camera shake was someone decided to use getRandom on something that had always been a visual effect anyway. Pretty sure WorldDx is in fact safe to modify.
nemo
parents:
5840
diff
changeset
|
792 |
//ScreenFadeSpeed:= 5; |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
793 |
gX:= round(Gear^.X); |
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3592
diff
changeset
|
794 |
gY:= round(Gear^.Y); |
3441 | 795 |
AddVisualGear(gX, gY, vgtSmokeRing); |
8330 | 796 |
for i:= 0 to 46 do |
4473 | 797 |
begin |
798 |
vg:= AddVisualGear(gX, gY, vgtFire); |
|
8330 | 799 |
if vg <> nil then |
4475
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
800 |
begin |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
801 |
vg^.State:= gstTmpFlag; |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
802 |
inc(vg^.FrameTicks, vg^.FrameTicks) |
54e78c40970b
rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents:
4473
diff
changeset
|
803 |
end |
4473 | 804 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
805 |
for i:= 0 to 15 do |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
806 |
AddVisualGear(gX, gY, vgtExplPart); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
807 |
for i:= 0 to 15 do |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
808 |
AddVisualGear(gX, gY, vgtExplPart2); |
3441 | 809 |
Gear^.doStep:= @doStepBigExplosionWork; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
810 |
if Steps > 1 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
811 |
Gear^.doStep(Gear, Steps-1); |
8446
c18ba8726f5a
Fix sources so pas2c written in haskell could render them again
unc0rr
parents:
8330
diff
changeset
|
812 |
|
c18ba8726f5a
Fix sources so pas2c written in haskell could render them again
unc0rr
parents:
8330
diff
changeset
|
813 |
{$IFNDEF PAS2C} |
8204 | 814 |
with mobileRecord do |
815 |
if (performRumble <> nil) and (not fastUntilLag) then |
|
816 |
performRumble(kSystemSoundID_Vibrate); |
|
8446
c18ba8726f5a
Fix sources so pas2c written in haskell could render them again
unc0rr
parents:
8330
diff
changeset
|
817 |
{$ENDIF} |
3441 | 818 |
end; |
3689 | 819 |
|
820 |
procedure doStepChunk(Gear: PVisualGear; Steps: Longword); |
|
821 |
begin |
|
822 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
823 |
||
824 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
825 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
|
826 |
||
827 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
828 |
||
5235
e30b06ffea3a
Skip droplets if plain splash is enabled, add a sanity check just in case.
nemo
parents:
5186
diff
changeset
|
829 |
if (round(Gear^.Y) > cWaterLine) and ((cReducedQuality and rqPlainSplash) = 0) then |
3689 | 830 |
begin |
3699 | 831 |
AddVisualGear(round(Gear^.X), round(Gear^.Y), vgtDroplet); |
3689 | 832 |
DeleteVisualGear(Gear); |
833 |
end |
|
834 |
end; |
|
4327 | 835 |
|
836 |
//////////////////////////////////////////////////////////////////////////////// |
|
837 |
procedure doStepBulletHit(Gear: PVisualGear; Steps: Longword); |
|
838 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
839 |
if Gear^.FrameTicks <= Steps then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
840 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
841 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
842 |
dec(Gear^.FrameTicks, Steps); |
4327 | 843 |
end; |
4420
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
844 |
|
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
845 |
//////////////////////////////////////////////////////////////////////////////// |
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
846 |
procedure doStepCircle(Gear: PVisualGear; Steps: Longword); |
4452 | 847 |
var tmp: LongInt; |
4421 | 848 |
i: LongWord; |
4420
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
849 |
begin |
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
850 |
with Gear^ do |
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
851 |
if Frame <> 0 then |
4421 | 852 |
for i:= 1 to Steps do |
4420
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
853 |
begin |
4421 | 854 |
inc(FrameTicks); |
855 |
if (FrameTicks mod Frame) = 0 then |
|
856 |
begin |
|
857 |
tmp:= Gear^.Tint and $FF; |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
858 |
if tdY >= 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
859 |
inc(tmp) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
860 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
861 |
dec(tmp); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
862 |
if tmp < round(dX) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
863 |
tdY:= 1; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
864 |
if tmp > round(dY) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
865 |
tdY:= -1; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
866 |
if tmp > 255 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
867 |
tmp := 255; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
868 |
if tmp < 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
869 |
tmp := 0; |
5179
8d64dcb566ea
Fix "Mixing signed expressions and longwords gives a 64bit result" warnings
unc0rr
parents:
5151
diff
changeset
|
870 |
Gear^.Tint:= (Gear^.Tint and $FFFFFF00) or Longword(tmp) |
4421 | 871 |
end |
4420
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
872 |
end |
6be946bcd17a
Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents:
4379
diff
changeset
|
873 |
end; |
5357
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
874 |
|
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
875 |
//////////////////////////////////////////////////////////////////////////////// |
10859 | 876 |
var |
877 |
currwindbar: PVisualGear = nil; |
|
878 |
||
879 |
procedure doStepSmoothWindBarWork(Gear: PVisualGear; Steps: Longword); |
|
880 |
begin |
|
881 |
if currwindbar = Gear then |
|
882 |
begin |
|
883 |
inc(Gear^.Timer, Steps); |
|
884 |
||
885 |
while Gear^.Timer >= 10 do |
|
886 |
begin |
|
887 |
dec(Gear^.Timer, 10); |
|
888 |
if WindBarWidth < Gear^.Tag then |
|
889 |
inc(WindBarWidth) |
|
890 |
else if WindBarWidth > Gear^.Tag then |
|
891 |
dec(WindBarWidth); |
|
892 |
end; |
|
893 |
if cWindspeedf > Gear^.dAngle then |
|
894 |
begin |
|
895 |
cWindspeedf := cWindspeedf - Gear^.Angle*Steps; |
|
896 |
if cWindspeedf < Gear^.dAngle then cWindspeedf:= Gear^.dAngle; |
|
897 |
end |
|
898 |
else if cWindspeedf < Gear^.dAngle then |
|
899 |
begin |
|
900 |
cWindspeedf := cWindspeedf + Gear^.Angle*Steps; |
|
901 |
if cWindspeedf > Gear^.dAngle then cWindspeedf:= Gear^.dAngle; |
|
902 |
end; |
|
903 |
end; |
|
904 |
||
905 |
if ((WindBarWidth = Gear^.Tag) and (cWindspeedf = Gear^.dAngle)) or (currwindbar <> Gear) then |
|
906 |
begin |
|
907 |
if currwindbar = Gear then currwindbar:= nil; |
|
908 |
DeleteVisualGear(Gear) |
|
909 |
end |
|
910 |
end; |
|
911 |
||
5357
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
912 |
procedure doStepSmoothWindBar(Gear: PVisualGear; Steps: Longword); |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
913 |
begin |
10859 | 914 |
currwindbar:= Gear; |
915 |
Gear^.doStep:= @doStepSmoothWindBarWork; |
|
916 |
doStepSmoothWindBarWork(Gear, Steps) |
|
5357
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
917 |
end; |
5562 | 918 |
//////////////////////////////////////////////////////////////////////////////// |
919 |
procedure doStepStraightShot(Gear: PVisualGear; Steps: Longword); |
|
920 |
begin |
|
921 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
922 |
Gear^.Y:= Gear^.Y - Gear^.dY * Steps; |
|
5357
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
923 |
|
10526
b43d175d1577
Avoid promoting violence to hedgehogs. At least once a year.
nemo
parents:
10355
diff
changeset
|
924 |
Gear^.dY:= Gear^.dY + Gear^.tdY * Steps; |
b43d175d1577
Avoid promoting violence to hedgehogs. At least once a year.
nemo
parents:
10355
diff
changeset
|
925 |
Gear^.dX:= Gear^.dX + Gear^.tdX * Steps; |
b43d175d1577
Avoid promoting violence to hedgehogs. At least once a year.
nemo
parents:
10355
diff
changeset
|
926 |
|
5562 | 927 |
if Gear^.FrameTicks <= Steps then |
928 |
DeleteVisualGear(Gear) |
|
929 |
else |
|
930 |
begin |
|
931 |
dec(Gear^.FrameTicks, Steps); |
|
8330 | 932 |
if (Gear^.FrameTicks < 501) and (Gear^.FrameTicks mod 5 = 0) then |
5562 | 933 |
Gear^.Tint:= (Gear^.Tint and $FFFFFF00) or (((Gear^.Tint and $000000FF) * Gear^.FrameTicks) div 500) |
934 |
end |
|
935 |
end; |
|
936 |
||
10251
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
937 |
//////////////////////////////////////////////////////////////////////////////// |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
938 |
procedure doStepNoPlaceWarn(Gear: PVisualGear; Steps: Longword); |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
939 |
begin |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
940 |
|
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
941 |
if Gear^.FrameTicks <= Steps then |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
942 |
DeleteVisualGear(Gear) |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
943 |
else |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
944 |
begin |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
945 |
// age |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
946 |
dec(Gear^.FrameTicks, Steps); |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
947 |
// toggle between orange and red every few ticks |
10298
7d5d93f9a515
make using the teleporter a bit less challenging
sheepluva
parents:
10251
diff
changeset
|
948 |
if (Gear^.FrameTicks div 256) mod 2 = 0 then |
10251
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
949 |
Gear^.Tint:= $FF400000 |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
950 |
else |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
951 |
Gear^.Tint:= $FF000000; |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
952 |
// fade out alpha |
10299 | 953 |
Gear^.Tint:= (Gear^.Tint and (not $FF)) or (255 * Gear^.FrameTicks div 3000); |
10251
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
954 |
end |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
955 |
end; |
9283
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
956 |
|
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
957 |
const handlers: array[TVisualGearType] of TVGearStepProcedure = |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
958 |
( |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
959 |
@doStepFlake, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
960 |
@doStepCloud, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
961 |
@doStepExpl, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
962 |
@doStepExpl, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
963 |
@doStepFire, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
964 |
@doStepSmallDamage, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
965 |
@doStepTeamHealthSorter, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
966 |
@doStepSpeechBubble, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
967 |
@doStepBubble, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
968 |
@doStepSteam, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
969 |
@doStepAmmo, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
970 |
@doStepSmoke, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
971 |
@doStepSmoke, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
972 |
@doStepShell, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
973 |
@doStepDust, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
974 |
@doStepSplash, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
975 |
@doStepDroplet, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
976 |
@doStepSmokeRing, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
977 |
@doStepBeeTrace, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
978 |
@doStepEgg, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
979 |
@doStepFeather, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
980 |
@doStepHealthTag, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
981 |
@doStepSmokeTrace, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
982 |
@doStepSmokeTrace, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
983 |
@doStepExplosion, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
984 |
@doStepBigExplosion, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
985 |
@doStepChunk, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
986 |
@doStepNote, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
987 |
@doStepLineTrail, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
988 |
@doStepBulletHit, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
989 |
@doStepCircle, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
990 |
@doStepSmoothWindBar, |
10251
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
991 |
@doStepStraightShot, |
a3b42e81803c
collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents:
10193
diff
changeset
|
992 |
@doStepNoPlaceWarn |
9283
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
993 |
); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
994 |
|
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
995 |
procedure initModule; |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
996 |
begin |
9960 | 997 |
doStepVGHandlers:= handlers |
9283
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
998 |
end; |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
999 |
|
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1000 |
end. |