author | Wuzzy <Wuzzy2@mail.ru> |
Sun, 02 Jun 2019 22:16:38 +0200 | |
changeset 15106 | f772013867e7 |
parent 14662 | b390479f24c1 |
child 15243 | df5890e5a12a |
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 |
11827 | 78 |
uses uCollisions, uVariables, Math, uConsts, uVisualGearsList, uFloat, uSound, uRenderUtils, uWorld, uUtils; |
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; |
12317
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
82 |
moved, rising, outside: 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; |
12317
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
84 |
spawnMargin: LongInt; |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
85 |
const |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
86 |
randMargin = 50; |
3441 | 87 |
begin |
11744
eee922f69d1b
fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents:
11046
diff
changeset
|
88 |
if SuddenDeathDmg then |
eee922f69d1b
fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents:
11046
diff
changeset
|
89 |
begin |
eee922f69d1b
fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents:
11046
diff
changeset
|
90 |
if (vobSDCount = 0) then exit; |
eee922f69d1b
fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents:
11046
diff
changeset
|
91 |
end |
eee922f69d1b
fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents:
11046
diff
changeset
|
92 |
else |
eee922f69d1b
fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents:
11046
diff
changeset
|
93 |
if (vobCount = 0) then exit; |
3611 | 94 |
|
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
|
95 |
sign:= 1; |
3441 | 96 |
with Gear^ do |
97 |
begin |
|
10625
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
98 |
|
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
99 |
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
|
100 |
|
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
101 |
if SuddenDeathDmg then |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
102 |
begin |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
103 |
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
|
104 |
vfc:= vobSDFramesCount; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
105 |
vft:= vobSDFrameTicks; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
106 |
end |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
107 |
else |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
108 |
begin |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
109 |
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
|
110 |
vfc:= vobFramesCount; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
111 |
vft:= vobFrameTicks; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
112 |
end; |
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
113 |
|
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
114 |
if vft > 0 then |
3441 | 115 |
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
|
116 |
inc(FrameTicks, Steps); |
10625
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
117 |
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
|
118 |
begin |
10625
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
119 |
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
|
120 |
inc(Frame); |
10625
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
121 |
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
|
122 |
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
|
123 |
end; |
3441 | 124 |
end; |
10625
125e120165aa
flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents:
10624
diff
changeset
|
125 |
|
3441 | 126 |
Angle:= Angle + dAngle * Steps; |
4152
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
127 |
if Angle > 360 then |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
128 |
Angle:= Angle - 360 |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
129 |
else |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
130 |
if Angle < - 360 then |
07008cb354f9
Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents:
4034
diff
changeset
|
131 |
Angle:= Angle + 360; |
8330 | 132 |
|
133 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
134 |
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
|
135 |
and (round(X) <= cRightScreenBorder) |
10731
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
136 |
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
|
137 |
and (Timer > 0) and (Timer-Steps > 0) then |
3441 | 138 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
139 |
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
|
140 |
sign := 1 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
141 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
142 |
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
|
143 |
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
|
144 |
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
|
145 |
tdX:= 0; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
146 |
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
|
147 |
sign := 1 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
148 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
149 |
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
|
150 |
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
|
151 |
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
|
152 |
tdY:= 0; |
3441 | 153 |
dec(Timer, Steps) |
154 |
end |
|
155 |
else |
|
156 |
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
|
157 |
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
|
158 |
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
|
159 |
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
|
160 |
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
|
161 |
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
|
162 |
end |
10731
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
163 |
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
|
164 |
begin |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
165 |
X:= X - cScreenSpace; |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
166 |
moved:= true |
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
167 |
end; |
11873
60c8bb8bc1d7
rising flakes will no longer fly forever [reviewed, cleaned up and committed by sheepluva]
KoBeWi <kobewi4e@gmail.com>
parents:
11827
diff
changeset
|
168 |
|
12317
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
169 |
// it's possible for flakes to move upwards |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
170 |
if SuddenDeathDmg then |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
171 |
rising:= (cGravityf * vobSDFallSpeed) < 0 |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
172 |
else |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
173 |
rising:= (cGravityf * vobFallSpeed) < 0; |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
174 |
|
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
175 |
if gear^.layer = 2 then |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
176 |
spawnMargin:= 400 |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
177 |
else |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
178 |
spawnMargin:= 200; |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
179 |
|
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
180 |
// flake fell far below map? |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
181 |
outside:= (not rising) and (round(Y) - spawnMargin + randMargin > LAND_HEIGHT); |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
182 |
// if not, did it rise far above map? |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
183 |
outside:= outside or (rising and (round(Y) < LAND_HEIGHT - 1024 - spawnMargin - randMargin)); |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
184 |
|
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
185 |
// if flake left acceptable vertical area, respawn it opposite side |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
186 |
if outside 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
|
187 |
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
|
188 |
X:= cLeftScreenBorder + random(cScreenSpace); |
12317
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
189 |
if rising then |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
190 |
Y:= Y + (1024 + spawnMargin + random(50)) |
10731
bc359abe0484
tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents:
10625
diff
changeset
|
191 |
else |
12317
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
192 |
Y:= Y - (1024 + spawnMargin + random(50)); |
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
193 |
moved:= true; |
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
|
194 |
end; |
12317
83131d0e747b
clean up flake falling/rising code. this should fix issue #157
sheepluva
parents:
11873
diff
changeset
|
195 |
|
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
|
196 |
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
|
197 |
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
|
198 |
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
|
199 |
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
|
200 |
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
|
201 |
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
|
202 |
end; |
3441 | 203 |
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
|
204 |
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
|
205 |
tdY:= 0 |
3441 | 206 |
end; |
207 |
end; |
|
208 |
||
209 |
end; |
|
210 |
||
211 |
//////////////////////////////////////////////////////////////////////////////// |
|
212 |
procedure doStepBeeTrace(Gear: PVisualGear; Steps: Longword); |
|
213 |
begin |
|
214 |
if Gear^.FrameTicks > Steps then |
|
215 |
dec(Gear^.FrameTicks, Steps) |
|
216 |
else |
|
217 |
DeleteVisualGear(Gear); |
|
218 |
end; |
|
219 |
||
220 |
//////////////////////////////////////////////////////////////////////////////// |
|
221 |
procedure doStepCloud(Gear: PVisualGear; Steps: Longword); |
|
3592
0bcad5c38c9e
clouds: up-and-down-bouncing now without evil loop
sheepluva
parents:
3590
diff
changeset
|
222 |
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
|
223 |
t: real; |
3441 | 224 |
begin |
6553
91365db8b82c
Slow down flakes/clouds that are farther away. Also unbreak NTPX w/ SDL 1.2
nemo
parents:
6302
diff
changeset
|
225 |
Gear^.X:= Gear^.X + (cWindSpeedf * 750 * Gear^.dX * Gear^.Scale) * Steps; |
3441 | 226 |
|
3592
0bcad5c38c9e
clouds: up-and-down-bouncing now without evil loop
sheepluva
parents:
3590
diff
changeset
|
227 |
// 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
|
228 |
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
|
229 |
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
|
230 |
if (s < 2048) then t := -t; |
3441 | 231 |
|
4161 | 232 |
Gear^.Y := LAND_HEIGHT - 1184 + LongInt(Gear^.Timer mod 8) + t; |
3441 | 233 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
234 |
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
|
235 |
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
|
236 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
237 |
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
|
238 |
Gear^.X:= Gear^.X - cScreenSpace |
3441 | 239 |
end; |
240 |
||
241 |
//////////////////////////////////////////////////////////////////////////////// |
|
242 |
procedure doStepExpl(Gear: PVisualGear; Steps: Longword); |
|
7808 | 243 |
var s: LongInt; |
3441 | 244 |
begin |
7808 | 245 |
s:= min(Steps, cExplFrameTicks); |
3441 | 246 |
|
7808 | 247 |
Gear^.X:= Gear^.X + Gear^.dX * s; |
248 |
Gear^.Y:= Gear^.Y + Gear^.dY * s; |
|
3441 | 249 |
|
250 |
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
|
251 |
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
|
252 |
DeleteVisualGear(Gear) |
3441 | 253 |
else |
254 |
begin |
|
255 |
dec(Gear^.Frame); |
|
256 |
Gear^.FrameTicks:= cExplFrameTicks |
|
257 |
end |
|
258 |
else dec(Gear^.FrameTicks, Steps) |
|
259 |
end; |
|
260 |
||
261 |
//////////////////////////////////////////////////////////////////////////////// |
|
3704 | 262 |
procedure doStepNote(Gear: PVisualGear; Steps: Longword); |
263 |
begin |
|
264 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
265 |
||
266 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
3706 | 267 |
Gear^.dY:= Gear^.dY + cGravityf * Steps / 2; |
3704 | 268 |
|
3706 | 269 |
Gear^.Angle:= Gear^.Angle + (Gear^.Frame + 1) * Steps / 10; |
270 |
while Gear^.Angle > cMaxAngle do |
|
271 |
Gear^.Angle:= Gear^.Angle - cMaxAngle; |
|
3704 | 272 |
|
273 |
if Gear^.FrameTicks <= Steps then |
|
274 |
DeleteVisualGear(Gear) |
|
275 |
else |
|
276 |
dec(Gear^.FrameTicks, Steps) |
|
277 |
end; |
|
278 |
||
279 |
//////////////////////////////////////////////////////////////////////////////// |
|
4279 | 280 |
procedure doStepLineTrail(Gear: PVisualGear; Steps: Longword); |
281 |
begin |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
282 |
{$IFNDEF PAS2C} |
4279 | 283 |
Steps := Steps; |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
284 |
{$ENDIF} |
4279 | 285 |
if Gear^.Timer <= Steps then |
286 |
DeleteVisualGear(Gear) |
|
287 |
else |
|
288 |
dec(Gear^.Timer, Steps) |
|
289 |
end; |
|
290 |
||
291 |
//////////////////////////////////////////////////////////////////////////////// |
|
3441 | 292 |
procedure doStepEgg(Gear: PVisualGear; Steps: Longword); |
293 |
begin |
|
294 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
295 |
||
296 |
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
|
297 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 298 |
|
299 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
300 |
||
301 |
if Gear^.FrameTicks <= Steps then |
|
6128 | 302 |
begin |
303 |
DeleteVisualGear(Gear); |
|
304 |
exit |
|
305 |
end |
|
3441 | 306 |
else |
5874
5cd329cf2460
nemo's molotov burst effect; with a slight color modification added
sheepluva
parents:
5855
diff
changeset
|
307 |
dec(Gear^.FrameTicks, Steps); |
5cd329cf2460
nemo's molotov burst effect; with a slight color modification added
sheepluva
parents:
5855
diff
changeset
|
308 |
|
5cd329cf2460
nemo's molotov burst effect; with a slight color modification added
sheepluva
parents:
5855
diff
changeset
|
309 |
if Gear^.FrameTicks < $FF then |
5cd329cf2460
nemo's molotov burst effect; with a slight color modification added
sheepluva
parents:
5855
diff
changeset
|
310 |
Gear^.Tint:= (Gear^.Tint and $FFFFFF00) or Gear^.FrameTicks |
3441 | 311 |
end; |
312 |
||
313 |
//////////////////////////////////////////////////////////////////////////////// |
|
314 |
procedure doStepFire(Gear: PVisualGear; Steps: Longword); |
|
3751 | 315 |
var vgt: PVisualGear; |
3441 | 316 |
begin |
317 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
318 |
||
14577
34e810295d08
Remove a bunch of dead out-commented code
Wuzzy <Wuzzy2@mail.ru>
parents:
14548
diff
changeset
|
319 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
3751 | 320 |
if (Gear^.State and gstTmpFlag) = 0 then |
321 |
begin |
|
322 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
|
3764 | 323 |
if ((GameTicks mod 200) < Steps + 1) then |
3751 | 324 |
begin |
325 |
vgt:= AddVisualGear(round(Gear^.X), round(Gear^.Y), vgtFire); |
|
326 |
if vgt <> nil then |
|
327 |
begin |
|
328 |
vgt^.dx:= 0; |
|
329 |
vgt^.dy:= 0; |
|
330 |
vgt^.State:= gstTmpFlag; |
|
331 |
end; |
|
332 |
end |
|
333 |
end |
|
334 |
else |
|
335 |
inc(Steps, Steps); |
|
3441 | 336 |
|
337 |
if Gear^.FrameTicks <= Steps then |
|
338 |
DeleteVisualGear(Gear) |
|
339 |
else |
|
340 |
dec(Gear^.FrameTicks, Steps) |
|
341 |
end; |
|
342 |
||
343 |
//////////////////////////////////////////////////////////////////////////////// |
|
344 |
procedure doStepShell(Gear: PVisualGear; Steps: Longword); |
|
345 |
begin |
|
346 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
347 |
||
348 |
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
|
349 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 350 |
|
351 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
352 |
||
353 |
if Gear^.FrameTicks <= Steps then |
|
354 |
DeleteVisualGear(Gear) |
|
355 |
else |
|
356 |
dec(Gear^.FrameTicks, Steps) |
|
357 |
end; |
|
358 |
||
359 |
procedure doStepSmallDamage(Gear: PVisualGear; Steps: Longword); |
|
360 |
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
|
361 |
Gear^.Y:= Gear^.Y - 0.02 * Steps; |
3441 | 362 |
|
363 |
if Gear^.FrameTicks <= Steps then |
|
364 |
DeleteVisualGear(Gear) |
|
365 |
else |
|
366 |
dec(Gear^.FrameTicks, Steps) |
|
367 |
end; |
|
368 |
||
369 |
//////////////////////////////////////////////////////////////////////////////// |
|
370 |
procedure doStepBubble(Gear: PVisualGear; Steps: Longword); |
|
371 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
372 |
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
|
373 |
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
|
374 |
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
|
375 |
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
|
376 |
Gear^.dY := Gear^.dY / (1.001 * Steps); |
3441 | 377 |
|
10355 | 378 |
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
|
379 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
380 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
381 |
dec(Gear^.FrameTicks, Steps) |
3441 | 382 |
end; |
383 |
||
384 |
//////////////////////////////////////////////////////////////////////////////// |
|
385 |
procedure doStepSteam(Gear: PVisualGear; Steps: Longword); |
|
386 |
begin |
|
10354 | 387 |
if ((cWindSpeedf > 0) and ( leftX > Gear^.X)) |
388 |
or ((cWindSpeedf < 0) and (rightX < Gear^.X)) then |
|
389 |
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
|
390 |
Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps; |
3441 | 391 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
392 |
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
|
393 |
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
|
394 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
395 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
396 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
397 |
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
|
398 |
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
|
399 |
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
|
400 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
401 |
else dec(Gear^.FrameTicks, Steps) |
3441 | 402 |
end; |
403 |
||
404 |
//////////////////////////////////////////////////////////////////////////////// |
|
405 |
procedure doStepAmmo(Gear: PVisualGear; Steps: Longword); |
|
406 |
begin |
|
6580
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 * 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^.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
|
410 |
Gear^.alpha:= Gear^.alpha - 0.0015 * Steps; |
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^.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
|
413 |
DeleteVisualGear(Gear) |
3441 | 414 |
end; |
415 |
||
416 |
//////////////////////////////////////////////////////////////////////////////// |
|
417 |
procedure doStepSmoke(Gear: PVisualGear; Steps: Longword); |
|
418 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
419 |
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
|
420 |
Gear^.Y:= Gear^.Y - (cDrownSpeedf + Gear^.dY) * Steps; |
3441 | 421 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
422 |
Gear^.dX := Gear^.dX + (cWindSpeedf * 0.3 * Steps); |
3441 | 423 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
424 |
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
|
425 |
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
|
426 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
427 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
428 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
429 |
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
|
430 |
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
|
431 |
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
|
432 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
433 |
else dec(Gear^.FrameTicks, Steps) |
3441 | 434 |
end; |
435 |
||
436 |
//////////////////////////////////////////////////////////////////////////////// |
|
437 |
procedure doStepDust(Gear: PVisualGear; Steps: Longword); |
|
438 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
439 |
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
|
440 |
Gear^.Y:= Gear^.Y - (Gear^.dY) * Steps; |
3441 | 441 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
442 |
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
|
443 |
Gear^.dY := Gear^.dY - (cDrownSpeedf * 0.001 * Steps); |
3441 | 444 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
445 |
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
|
446 |
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
|
447 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
448 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
449 |
begin |
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^.Frame); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
451 |
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
|
452 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
453 |
else dec(Gear^.FrameTicks, Steps) |
3441 | 454 |
end; |
455 |
||
456 |
//////////////////////////////////////////////////////////////////////////////// |
|
457 |
procedure doStepSplash(Gear: PVisualGear; Steps: Longword); |
|
458 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
459 |
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
|
460 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
461 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
462 |
dec(Gear^.FrameTicks, Steps); |
3441 | 463 |
end; |
464 |
||
465 |
//////////////////////////////////////////////////////////////////////////////// |
|
466 |
procedure doStepDroplet(Gear: PVisualGear; Steps: Longword); |
|
467 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
468 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
3441 | 469 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
470 |
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
|
471 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 472 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
473 |
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
|
474 |
begin |
3441 | 475 |
DeleteVisualGear(Gear); |
476 |
PlaySound(TSound(ord(sndDroplet1) + Random(3))); |
|
477 |
end; |
|
478 |
end; |
|
479 |
||
480 |
//////////////////////////////////////////////////////////////////////////////// |
|
481 |
procedure doStepSmokeRing(Gear: PVisualGear; Steps: Longword); |
|
482 |
begin |
|
483 |
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
|
484 |
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
|
485 |
DeleteVisualGear(Gear) |
3441 | 486 |
else |
487 |
begin |
|
488 |
Gear^.scale := 1.25 * (-power(2, -10 * Int(Gear^.Timer)/Gear^.FrameTicks) + 1) + 0.4; |
|
489 |
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
|
490 |
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
|
491 |
Gear^.alpha:= 0; |
3441 | 492 |
end; |
493 |
end; |
|
494 |
||
495 |
//////////////////////////////////////////////////////////////////////////////// |
|
496 |
procedure doStepFeather(Gear: PVisualGear; Steps: Longword); |
|
497 |
begin |
|
498 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
499 |
||
500 |
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
|
501 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
3441 | 502 |
|
503 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
504 |
||
505 |
if Gear^.FrameTicks <= Steps then |
|
506 |
DeleteVisualGear(Gear) |
|
507 |
else |
|
508 |
dec(Gear^.FrameTicks, Steps) |
|
509 |
end; |
|
510 |
||
511 |
//////////////////////////////////////////////////////////////////////////////// |
|
512 |
const cSorterWorkTime = 640; |
|
513 |
var thexchar: array[0..cMaxTeams] of |
|
514 |
record |
|
515 |
dy, ny, dw: LongInt; |
|
516 |
team: PTeam; |
|
517 |
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
|
518 |
hdw: array[0..cMaxHHIndex] of LongInt; |
3441 | 519 |
end; |
520 |
currsorter: PVisualGear = nil; |
|
521 |
||
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
|
522 |
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
|
523 |
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
|
524 |
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
|
525 |
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
|
526 |
|
3441 | 527 |
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
|
528 |
var i, t, h: LongInt; |
3441 | 529 |
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
|
530 |
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
|
531 |
for t:= 1 to min(Steps, Gear^.Timer) do |
3441 | 532 |
begin |
533 |
dec(Gear^.Timer); |
|
534 |
if (Gear^.Timer and 15) = 0 then |
|
535 |
for i:= 0 to Pred(TeamsCount) do |
|
536 |
with thexchar[i] do |
|
537 |
begin |
|
538 |
{$WARNINGS OFF} |
|
7644 | 539 |
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
|
540 |
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
|
541 |
|
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
|
542 |
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
|
543 |
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
|
544 |
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
|
545 |
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
|
546 |
team^.Hedgehogs[h].HealthBarHealth:= hdw[h] * LongInt(Gear^.Timer) div cSorterWorkTime; |
3441 | 547 |
{$WARNINGS ON} |
548 |
end; |
|
7644 | 549 |
end; |
3441 | 550 |
|
7644 | 551 |
if (Gear^.Timer = 0) or (currsorter <> Gear) then |
552 |
begin |
|
553 |
if currsorter = Gear then |
|
554 |
currsorter:= nil; |
|
555 |
DeleteVisualGear(Gear); |
|
556 |
exit |
|
3441 | 557 |
end |
558 |
end; |
|
559 |
||
560 |
procedure doStepTeamHealthSorter(Gear: PVisualGear; Steps: Longword); |
|
561 |
var i: Longword; |
|
13145
e330feceb662
Hide team bar if all hedgehogs in it are hidden or dead
Wuzzy <Wuzzy2@mail.ru>
parents:
12317
diff
changeset
|
562 |
b, noHogs: 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
|
563 |
t, h: LongInt; |
3441 | 564 |
begin |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
565 |
{$IFNDEF PAS2C} |
3441 | 566 |
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
|
567 |
{$ENDIF} |
7644 | 568 |
|
3441 | 569 |
for t:= 0 to Pred(TeamsCount) do |
570 |
with thexchar[t] do |
|
571 |
begin |
|
572 |
team:= TeamsArray[t]; |
|
7644 | 573 |
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
|
574 |
dw:= team^.TeamHealthBarHealth - team^.TeamHealth; |
7644 | 575 |
if team^.TeamHealth > 0 then |
576 |
begin |
|
577 |
SortFactor:= team^.Clan^.ClanHealth; |
|
578 |
SortFactor:= (SortFactor shl 3) + team^.Clan^.ClanIndex; |
|
579 |
SortFactor:= (SortFactor shl 30) + team^.TeamHealth; |
|
580 |
end |
|
581 |
else |
|
582 |
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
|
583 |
|
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
|
584 |
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
|
585 |
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
|
586 |
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
|
587 |
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
|
588 |
hdw[h]:= team^.Hedgehogs[h].HealthBarHealth; |
3441 | 589 |
end; |
590 |
||
591 |
if TeamsCount > 1 then |
|
592 |
repeat |
|
593 |
b:= true; |
|
594 |
for t:= 0 to TeamsCount - 2 do |
|
595 |
if (thexchar[t].SortFactor > thexchar[Succ(t)].SortFactor) then |
|
596 |
begin |
|
597 |
thexchar[cMaxTeams]:= thexchar[t]; |
|
598 |
thexchar[t]:= thexchar[Succ(t)]; |
|
599 |
thexchar[Succ(t)]:= thexchar[cMaxTeams]; |
|
600 |
b:= false |
|
601 |
end |
|
602 |
until b; |
|
603 |
||
604 |
t:= - 4; |
|
605 |
for i:= 0 to Pred(TeamsCount) do |
|
7644 | 606 |
with thexchar[i] do |
13145
e330feceb662
Hide team bar if all hedgehogs in it are hidden or dead
Wuzzy <Wuzzy2@mail.ru>
parents:
12317
diff
changeset
|
607 |
begin |
e330feceb662
Hide team bar if all hedgehogs in it are hidden or dead
Wuzzy <Wuzzy2@mail.ru>
parents:
12317
diff
changeset
|
608 |
noHogs:= true; |
e330feceb662
Hide team bar if all hedgehogs in it are hidden or dead
Wuzzy <Wuzzy2@mail.ru>
parents:
12317
diff
changeset
|
609 |
for h:= 0 to cMaxHHIndex do |
e330feceb662
Hide team bar if all hedgehogs in it are hidden or dead
Wuzzy <Wuzzy2@mail.ru>
parents:
12317
diff
changeset
|
610 |
// Check if all hogs are hidden |
e330feceb662
Hide team bar if all hedgehogs in it are hidden or dead
Wuzzy <Wuzzy2@mail.ru>
parents:
12317
diff
changeset
|
611 |
if team^.Hedgehogs[h].Gear <> nil then |
e330feceb662
Hide team bar if all hedgehogs in it are hidden or dead
Wuzzy <Wuzzy2@mail.ru>
parents:
12317
diff
changeset
|
612 |
noHogs:= false; |
e330feceb662
Hide team bar if all hedgehogs in it are hidden or dead
Wuzzy <Wuzzy2@mail.ru>
parents:
12317
diff
changeset
|
613 |
// Skip team bar if all hogs are dead or hidden |
e330feceb662
Hide team bar if all hedgehogs in it are hidden or dead
Wuzzy <Wuzzy2@mail.ru>
parents:
12317
diff
changeset
|
614 |
if (team^.TeamHealth > 0) and (noHogs = false) then |
7644 | 615 |
begin |
9656 | 616 |
dec(t, team^.Clan^.HealthTex^.h + 2); |
7644 | 617 |
ny:= t; |
618 |
dy:= dy - ny |
|
619 |
end; |
|
13145
e330feceb662
Hide team bar if all hedgehogs in it are hidden or dead
Wuzzy <Wuzzy2@mail.ru>
parents:
12317
diff
changeset
|
620 |
end; |
3441 | 621 |
|
622 |
Gear^.Timer:= cSorterWorkTime; |
|
623 |
Gear^.doStep:= @doStepTeamHealthSorterWork; |
|
624 |
currsorter:= Gear; |
|
625 |
end; |
|
626 |
||
627 |
//////////////////////////////////////////////////////////////////////////////// |
|
628 |
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
|
629 |
var realgear: PGear; |
3441 | 630 |
begin |
631 |
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
|
632 |
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
|
633 |
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
|
634 |
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
|
635 |
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
|
636 |
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
|
637 |
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
|
638 |
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
|
639 |
Gear^.Y:= hwFloat2Float(realgear^.Y) - (realgear^.Radius + Gear^.Tex^.h); |
13240
9f5023a5f9e1
Fix speech bubble briefly rendering at (0,0) after spawning
Wuzzy <Wuzzy2@mail.ru>
parents:
13145
diff
changeset
|
640 |
Gear^.Angle:= 1; // Mark speech bubble as ready for rendering |
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
|
641 |
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
|
642 |
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
|
643 |
else if Gear^.Hedgehog^.Gear <> nil then |
3441 | 644 |
begin |
9763 | 645 |
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
|
646 |
Gear^.Y:= hwFloat2Float(Gear^.Hedgehog^.Gear^.Y) - (cHHRadius + Gear^.Tex^.h); |
13240
9f5023a5f9e1
Fix speech bubble briefly rendering at (0,0) after spawning
Wuzzy <Wuzzy2@mail.ru>
parents:
13145
diff
changeset
|
647 |
Gear^.Angle:= 1; // Mark speech bubble as ready for rendering |
3441 | 648 |
end; |
649 |
||
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
|
650 |
if (Gear^.Timer = 0) or ((realgear = nil) and (Gear^.Frame <> 0)) then |
3441 | 651 |
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
|
652 |
if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.SpeechGear = Gear) then |
4365 | 653 |
Gear^.Hedgehog^.SpeechGear:= nil; |
3441 | 654 |
DeleteVisualGear(Gear) |
655 |
end; |
|
656 |
end; |
|
657 |
||
658 |
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
|
659 |
var realgear: PGear; |
3441 | 660 |
begin |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
661 |
|
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7808
diff
changeset
|
662 |
{$IFNDEF PAS2C} |
3441 | 663 |
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
|
664 |
{$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
|
665 |
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
|
666 |
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
|
667 |
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
|
668 |
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
|
669 |
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
|
670 |
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
|
671 |
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
|
672 |
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
|
673 |
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
|
674 |
end; |
3441 | 675 |
|
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
|
676 |
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
|
677 |
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
|
678 |
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
|
679 |
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
|
680 |
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
|
681 |
end; |
3441 | 682 |
|
5186 | 683 |
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
|
684 |
Gear^.Tex:= RenderSpeechBubbleTex(ansistring(Gear^.Text), Gear^.FrameTicks, fnt16); |
3441 | 685 |
|
686 |
Gear^.doStep:= @doStepSpeechBubbleWork; |
|
687 |
||
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
|
688 |
Gear^.Y:= Gear^.Y - Gear^.Tex^.h |
3441 | 689 |
end; |
690 |
||
691 |
//////////////////////////////////////////////////////////////////////////////// |
|
692 |
procedure doStepHealthTagWork(Gear: PVisualGear; Steps: Longword); |
|
693 |
begin |
|
694 |
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
|
695 |
DeleteVisualGear(Gear) |
3441 | 696 |
else |
697 |
begin |
|
698 |
dec(Gear^.Timer, Steps); |
|
699 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
5581 | 700 |
Gear^.X:= Gear^.X + Gear^.dX * Steps |
3441 | 701 |
end; |
702 |
end; |
|
703 |
||
704 |
procedure doStepHealthTagWorkUnderWater(Gear: PVisualGear; Steps: Longword); |
|
705 |
begin |
|
4161 | 706 |
if round(Gear^.Y) - 10 < cWaterLine then |
3441 | 707 |
DeleteVisualGear(Gear) |
708 |
else |
|
14662
b390479f24c1
vgtHealthTag now supports setting FrameTicks <> 0 to disable automatic water handling
Wuzzy <Wuzzy2@mail.ru>
parents:
14577
diff
changeset
|
709 |
begin |
b390479f24c1
vgtHealthTag now supports setting FrameTicks <> 0 to disable automatic water handling
Wuzzy <Wuzzy2@mail.ru>
parents:
14577
diff
changeset
|
710 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
b390479f24c1
vgtHealthTag now supports setting FrameTicks <> 0 to disable automatic water handling
Wuzzy <Wuzzy2@mail.ru>
parents:
14577
diff
changeset
|
711 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
b390479f24c1
vgtHealthTag now supports setting FrameTicks <> 0 to disable automatic water handling
Wuzzy <Wuzzy2@mail.ru>
parents:
14577
diff
changeset
|
712 |
end; |
3441 | 713 |
end; |
714 |
||
715 |
procedure doStepHealthTag(Gear: PVisualGear; Steps: Longword); |
|
716 |
var s: shortstring; |
|
717 |
begin |
|
11827 | 718 |
s:= IntToStr(Gear^.State); |
3441 | 719 |
|
3459
c552aa44108d
hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents:
3443
diff
changeset
|
720 |
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
|
721 |
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
|
722 |
else |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
723 |
Gear^.Tex:= RenderStringTex(ansistring(s), cWhiteColor, fnt16); |
3441 | 724 |
|
5578 | 725 |
Gear^.doStep:= @doStepHealthTagWork; |
5576 | 726 |
|
14662
b390479f24c1
vgtHealthTag now supports setting FrameTicks <> 0 to disable automatic water handling
Wuzzy <Wuzzy2@mail.ru>
parents:
14577
diff
changeset
|
727 |
if (round(Gear^.Y) > cWaterLine) and (Gear^.Frame = 0) and (Gear^.FrameTicks = 0) then |
3441 | 728 |
Gear^.doStep:= @doStepHealthTagWorkUnderWater; |
729 |
||
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
|
730 |
Gear^.Y:= Gear^.Y - Gear^.Tex^.h; |
3441 | 731 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
732 |
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
|
733 |
Gear^.doStep(Gear, Steps-1); |
3441 | 734 |
end; |
735 |
||
736 |
//////////////////////////////////////////////////////////////////////////////// |
|
737 |
procedure doStepSmokeTrace(Gear: PVisualGear; Steps: Longword); |
|
738 |
begin |
|
739 |
inc(Gear^.Timer, Steps ); |
|
740 |
if Gear^.Timer > 64 then |
|
741 |
begin |
|
3995
360332f8785f
SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents:
3994
diff
changeset
|
742 |
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
|
743 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
744 |
DeleteVisualGear(Gear); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
745 |
exit; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
746 |
end; |
3441 | 747 |
dec(Gear^.State, Gear^.Timer div 65); |
748 |
Gear^.Timer:= Gear^.Timer mod 65; |
|
749 |
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
|
750 |
Gear^.dX:= Gear^.dX + cWindSpeedf * Steps; |
3587 | 751 |
Gear^.X:= Gear^.X + Gear^.dX; |
3441 | 752 |
end; |
753 |
||
754 |
//////////////////////////////////////////////////////////////////////////////// |
|
755 |
procedure doStepExplosionWork(Gear: PVisualGear; Steps: Longword); |
|
756 |
begin |
|
757 |
inc(Gear^.Timer, Steps); |
|
758 |
if Gear^.Timer > 75 then |
|
759 |
begin |
|
760 |
inc(Gear^.State, Gear^.Timer div 76); |
|
761 |
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
|
762 |
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
|
763 |
DeleteVisualGear(Gear); |
3441 | 764 |
end; |
765 |
end; |
|
766 |
||
767 |
procedure doStepExplosion(Gear: PVisualGear; Steps: Longword); |
|
768 |
var i: LongWord; |
|
4473 | 769 |
gX,gY: LongInt; |
770 |
vg: PVisualGear; |
|
3441 | 771 |
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
|
772 |
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
|
773 |
gY:= round(Gear^.Y); |
8330 | 774 |
for i:= 0 to 31 do |
4473 | 775 |
begin |
776 |
vg:= AddVisualGear(gX, gY, vgtFire); |
|
8330 | 777 |
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
|
778 |
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
|
779 |
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
|
780 |
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
|
781 |
end |
4473 | 782 |
end; |
3590 | 783 |
for i:= 0 to 8 do AddVisualGear(gX, gY, vgtExplPart); |
784 |
for i:= 0 to 8 do AddVisualGear(gX, gY, vgtExplPart2); |
|
3441 | 785 |
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
|
786 |
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
|
787 |
Gear^.doStep(Gear, Steps-1); |
3441 | 788 |
end; |
789 |
||
790 |
||
791 |
//////////////////////////////////////////////////////////////////////////////// |
|
792 |
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
|
793 |
var maxMovement: LongInt; |
3441 | 794 |
begin |
795 |
||
796 |
inc(Gear^.Timer, Steps); |
|
797 |
if (Gear^.Timer and 5) = 0 then |
|
798 |
begin |
|
799 |
maxMovement := max(1, 13 - ((Gear^.Timer * 15) div 250)); |
|
800 |
ShakeCamera(maxMovement); |
|
801 |
end; |
|
5804
98192121dc69
Since shakes are still proving unsafe until camera is reworked, try a mild flash instead
nemo
parents:
5803
diff
changeset
|
802 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
803 |
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
|
804 |
DeleteVisualGear(Gear); |
3441 | 805 |
end; |
806 |
||
807 |
procedure doStepBigExplosion(Gear: PVisualGear; Steps: Longword); |
|
808 |
var i: LongWord; |
|
4473 | 809 |
gX,gY: LongInt; |
810 |
vg: PVisualGear; |
|
3441 | 811 |
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
|
812 |
//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
|
813 |
//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
|
814 |
//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
|
815 |
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
|
816 |
gY:= round(Gear^.Y); |
3441 | 817 |
AddVisualGear(gX, gY, vgtSmokeRing); |
8330 | 818 |
for i:= 0 to 46 do |
4473 | 819 |
begin |
820 |
vg:= AddVisualGear(gX, gY, vgtFire); |
|
8330 | 821 |
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
|
822 |
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
|
823 |
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
|
824 |
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
|
825 |
end |
4473 | 826 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
827 |
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
|
828 |
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
|
829 |
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
|
830 |
AddVisualGear(gX, gY, vgtExplPart2); |
3441 | 831 |
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
|
832 |
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
|
833 |
Gear^.doStep(Gear, Steps-1); |
8446
c18ba8726f5a
Fix sources so pas2c written in haskell could render them again
unc0rr
parents:
8330
diff
changeset
|
834 |
|
c18ba8726f5a
Fix sources so pas2c written in haskell could render them again
unc0rr
parents:
8330
diff
changeset
|
835 |
{$IFNDEF PAS2C} |
8204 | 836 |
with mobileRecord do |
837 |
if (performRumble <> nil) and (not fastUntilLag) then |
|
838 |
performRumble(kSystemSoundID_Vibrate); |
|
8446
c18ba8726f5a
Fix sources so pas2c written in haskell could render them again
unc0rr
parents:
8330
diff
changeset
|
839 |
{$ENDIF} |
3441 | 840 |
end; |
3689 | 841 |
|
842 |
procedure doStepChunk(Gear: PVisualGear; Steps: Longword); |
|
843 |
begin |
|
844 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
845 |
||
846 |
Gear^.Y:= Gear^.Y + Gear^.dY * Steps; |
|
847 |
Gear^.dY:= Gear^.dY + cGravityf * Steps; |
|
848 |
||
849 |
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle; |
|
850 |
||
5235
e30b06ffea3a
Skip droplets if plain splash is enabled, add a sanity check just in case.
nemo
parents:
5186
diff
changeset
|
851 |
if (round(Gear^.Y) > cWaterLine) and ((cReducedQuality and rqPlainSplash) = 0) then |
3689 | 852 |
begin |
3699 | 853 |
AddVisualGear(round(Gear^.X), round(Gear^.Y), vgtDroplet); |
3689 | 854 |
DeleteVisualGear(Gear); |
855 |
end |
|
856 |
end; |
|
4327 | 857 |
|
858 |
//////////////////////////////////////////////////////////////////////////////// |
|
859 |
procedure doStepBulletHit(Gear: PVisualGear; Steps: Longword); |
|
860 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
861 |
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
|
862 |
DeleteVisualGear(Gear) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
863 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
864 |
dec(Gear^.FrameTicks, Steps); |
4327 | 865 |
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
|
866 |
|
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
|
867 |
//////////////////////////////////////////////////////////////////////////////// |
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
|
868 |
procedure doStepCircle(Gear: PVisualGear; Steps: Longword); |
4452 | 869 |
var tmp: LongInt; |
4421 | 870 |
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
|
871 |
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
|
872 |
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
|
873 |
if Frame <> 0 then |
4421 | 874 |
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
|
875 |
begin |
4421 | 876 |
inc(FrameTicks); |
877 |
if (FrameTicks mod Frame) = 0 then |
|
878 |
begin |
|
879 |
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
|
880 |
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
|
881 |
inc(tmp) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
882 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
883 |
dec(tmp); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
884 |
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
|
885 |
tdY:= 1; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
886 |
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
|
887 |
tdY:= -1; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
888 |
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
|
889 |
tmp := 255; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6553
diff
changeset
|
890 |
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
|
891 |
tmp := 0; |
5179
8d64dcb566ea
Fix "Mixing signed expressions and longwords gives a 64bit result" warnings
unc0rr
parents:
5151
diff
changeset
|
892 |
Gear^.Tint:= (Gear^.Tint and $FFFFFF00) or Longword(tmp) |
4421 | 893 |
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
|
894 |
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
|
895 |
end; |
5357
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
896 |
|
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
897 |
//////////////////////////////////////////////////////////////////////////////// |
10859 | 898 |
var |
899 |
currwindbar: PVisualGear = nil; |
|
900 |
||
901 |
procedure doStepSmoothWindBarWork(Gear: PVisualGear; Steps: Longword); |
|
14548
78363dbfd5dc
Prevent wind bar from overflowing with high wind values
Wuzzy <Wuzzy2@mail.ru>
parents:
13240
diff
changeset
|
902 |
const maxWindBarWidth = 73; |
10859 | 903 |
begin |
904 |
if currwindbar = Gear then |
|
905 |
begin |
|
906 |
inc(Gear^.Timer, Steps); |
|
907 |
||
908 |
while Gear^.Timer >= 10 do |
|
909 |
begin |
|
910 |
dec(Gear^.Timer, 10); |
|
911 |
if WindBarWidth < Gear^.Tag then |
|
912 |
inc(WindBarWidth) |
|
913 |
else if WindBarWidth > Gear^.Tag then |
|
914 |
dec(WindBarWidth); |
|
14548
78363dbfd5dc
Prevent wind bar from overflowing with high wind values
Wuzzy <Wuzzy2@mail.ru>
parents:
13240
diff
changeset
|
915 |
// Prevent wind bar from overflowing |
78363dbfd5dc
Prevent wind bar from overflowing with high wind values
Wuzzy <Wuzzy2@mail.ru>
parents:
13240
diff
changeset
|
916 |
if WindBarWidth > maxWindBarWidth then |
78363dbfd5dc
Prevent wind bar from overflowing with high wind values
Wuzzy <Wuzzy2@mail.ru>
parents:
13240
diff
changeset
|
917 |
WindBarWidth:= maxWindBarWidth; |
78363dbfd5dc
Prevent wind bar from overflowing with high wind values
Wuzzy <Wuzzy2@mail.ru>
parents:
13240
diff
changeset
|
918 |
if WindBarWidth < - maxWindBarWidth then |
78363dbfd5dc
Prevent wind bar from overflowing with high wind values
Wuzzy <Wuzzy2@mail.ru>
parents:
13240
diff
changeset
|
919 |
WindBarWidth:= - maxWindBarWidth; |
10859 | 920 |
end; |
921 |
if cWindspeedf > Gear^.dAngle then |
|
922 |
begin |
|
923 |
cWindspeedf := cWindspeedf - Gear^.Angle*Steps; |
|
924 |
if cWindspeedf < Gear^.dAngle then cWindspeedf:= Gear^.dAngle; |
|
925 |
end |
|
926 |
else if cWindspeedf < Gear^.dAngle then |
|
927 |
begin |
|
928 |
cWindspeedf := cWindspeedf + Gear^.Angle*Steps; |
|
929 |
if cWindspeedf > Gear^.dAngle then cWindspeedf:= Gear^.dAngle; |
|
930 |
end; |
|
931 |
end; |
|
932 |
||
14548
78363dbfd5dc
Prevent wind bar from overflowing with high wind values
Wuzzy <Wuzzy2@mail.ru>
parents:
13240
diff
changeset
|
933 |
if (((WindBarWidth = Gear^.Tag) or (Abs(WindBarWidth) >= maxWindBarWidth)) and (cWindspeedf = Gear^.dAngle)) or (currwindbar <> Gear) then |
10859 | 934 |
begin |
935 |
if currwindbar = Gear then currwindbar:= nil; |
|
936 |
DeleteVisualGear(Gear) |
|
937 |
end |
|
938 |
end; |
|
939 |
||
5357
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
940 |
procedure doStepSmoothWindBar(Gear: PVisualGear; Steps: Longword); |
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
941 |
begin |
10859 | 942 |
currwindbar:= Gear; |
943 |
Gear^.doStep:= @doStepSmoothWindBarWork; |
|
944 |
doStepSmoothWindBarWork(Gear, Steps) |
|
5357
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5236
diff
changeset
|
945 |
end; |
5562 | 946 |
//////////////////////////////////////////////////////////////////////////////// |
947 |
procedure doStepStraightShot(Gear: PVisualGear; Steps: Longword); |
|
948 |
begin |
|
949 |
Gear^.X:= Gear^.X + Gear^.dX * Steps; |
|
950 |
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
|
951 |
|
10526
b43d175d1577
Avoid promoting violence to hedgehogs. At least once a year.
nemo
parents:
10355
diff
changeset
|
952 |
Gear^.dY:= Gear^.dY + Gear^.tdY * Steps; |
b43d175d1577
Avoid promoting violence to hedgehogs. At least once a year.
nemo
parents:
10355
diff
changeset
|
953 |
Gear^.dX:= Gear^.dX + Gear^.tdX * Steps; |
b43d175d1577
Avoid promoting violence to hedgehogs. At least once a year.
nemo
parents:
10355
diff
changeset
|
954 |
|
5562 | 955 |
if Gear^.FrameTicks <= Steps then |
956 |
DeleteVisualGear(Gear) |
|
957 |
else |
|
958 |
begin |
|
959 |
dec(Gear^.FrameTicks, Steps); |
|
8330 | 960 |
if (Gear^.FrameTicks < 501) and (Gear^.FrameTicks mod 5 = 0) then |
5562 | 961 |
Gear^.Tint:= (Gear^.Tint and $FFFFFF00) or (((Gear^.Tint and $000000FF) * Gear^.FrameTicks) div 500) |
962 |
end |
|
963 |
end; |
|
964 |
||
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
|
965 |
//////////////////////////////////////////////////////////////////////////////// |
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
|
966 |
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
|
967 |
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
|
968 |
|
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
|
969 |
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
|
970 |
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
|
971 |
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
|
972 |
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
|
973 |
// 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
|
974 |
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
|
975 |
// toggle between orange and red every few ticks |
10298
7d5d93f9a515
make using the teleporter a bit less challenging
sheepluva
parents:
10251
diff
changeset
|
976 |
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
|
977 |
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
|
978 |
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
|
979 |
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
|
980 |
// fade out alpha |
10299 | 981 |
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
|
982 |
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
|
983 |
end; |
9283
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
984 |
|
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
985 |
const handlers: array[TVisualGearType] of TVGearStepProcedure = |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
986 |
( |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
987 |
@doStepFlake, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
988 |
@doStepCloud, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
989 |
@doStepExpl, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
990 |
@doStepExpl, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
991 |
@doStepFire, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
992 |
@doStepSmallDamage, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
993 |
@doStepTeamHealthSorter, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
994 |
@doStepSpeechBubble, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
995 |
@doStepBubble, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
996 |
@doStepSteam, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
997 |
@doStepAmmo, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
998 |
@doStepSmoke, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
999 |
@doStepSmoke, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1000 |
@doStepShell, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1001 |
@doStepDust, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1002 |
@doStepSplash, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1003 |
@doStepDroplet, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1004 |
@doStepSmokeRing, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1005 |
@doStepBeeTrace, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1006 |
@doStepEgg, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1007 |
@doStepFeather, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1008 |
@doStepHealthTag, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1009 |
@doStepSmokeTrace, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1010 |
@doStepSmokeTrace, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1011 |
@doStepExplosion, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1012 |
@doStepBigExplosion, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1013 |
@doStepChunk, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1014 |
@doStepNote, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1015 |
@doStepLineTrail, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1016 |
@doStepBulletHit, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1017 |
@doStepCircle, |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1018 |
@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
|
1019 |
@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
|
1020 |
@doStepNoPlaceWarn |
9283
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1021 |
); |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1022 |
|
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1023 |
procedure initModule; |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1024 |
begin |
9960 | 1025 |
doStepVGHandlers:= handlers |
9283
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1026 |
end; |
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1027 |
|
76e68c136a11
Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents:
9080
diff
changeset
|
1028 |
end. |