author | Wuzzy |
Wed, 21 Jun 2023 12:34:58 +0000 | |
changeset 2240 | c387af3810c6 |
parent 2239 | fdf6721339eb |
child 2241 | 20ed85eb3d29 |
permissions | -rw-r--r-- |
1374 | 1 |
#summary Lua library documentation of Animate; for cinematics, cut-scenes and other nice animations |
1347 | 2 |
#labels !LuaLibrary |
2103 | 3 |
|
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
4 |
= Lua library: `Animate` = |
2239 | 5 |
<wiki:toc max_depth="3" /> |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
6 |
This library provides functions that aid cinematic/cut-scene creation and functions for handling events. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
7 |
|
2237 | 8 |
== Structure of an Animate script == |
9 |
||
10 |
The Animate library is somewhat complex, so this section explains how scripts using the Animate library are supposed to look like and how the functions interact. |
|
2236 | 11 |
|
2237 | 12 |
=== Initial code === |
13 |
||
14 |
For every script using this library, the following lines need to be at the beginning of `onGameTick`: |
|
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
15 |
|
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
16 |
<code language="lua">function onGameTick() |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
17 |
AnimUnWait() |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
18 |
if ShowAnimation() == false then |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
19 |
return |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
20 |
end |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
21 |
ExecuteAfterAnimations() |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
22 |
CheckEvents() |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
23 |
end</code> |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
24 |
|
2236 | 25 |
Also, `AnimInit()` needs to be called in `onGameInit()`: |
26 |
||
27 |
<code language="lua">function onGameInit() |
|
28 |
AnimInit() |
|
29 |
end</code> |
|
30 |
||
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
31 |
Each of these functions will be explained below. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
32 |
|
2238 | 33 |
Also, if your script calls `SetInputMask`, you *must* replace each call of it with `AnimSetInputMask` (see function description below). Failing to do so may lead to bugs. |
2237 | 34 |
|
2238 | 35 |
Also, you *must not* call `SetCinematicMode` ever in your script. |
2237 | 36 |
|
37 |
=== Steps === |
|
38 |
||
39 |
The step is the primary data structure of this library. A step is a single action in an animation specified in table form. A step table must have the following fields: |
|
40 |
||
2238 | 41 |
* `func` is the function to be executed. It can be any function that returns false when it needs to be called again in following game ticks (e.g. `AnimMove`). It could theoretically be any function, but usually you want to use one of the cinematic functions here. |
42 |
* `args` is a list containing the arguments that need to be passed to the function given, in the same order |
|
43 |
* `swh` is an optional boolean value that defaults to `true` and denotes whether the current hedgehog should be switched to the hog given as argument 1 in `args`. You *must* set this to `false` if argument 1 is not a hog or the argument list is empty. |
|
2237 | 44 |
|
45 |
Example 1: |
|
46 |
<code language="lua"> |
|
47 |
-- This calls `AnimSay(myHog, "Snails! SNAILS!", SAY_SAY, 3000)`, |
|
48 |
-- meaning the hedgehog gear `myHog` will say "Snails!" and set the animation delay to 3000 milliseconds |
|
49 |
-- Because `swh` is not set, it is true, so `myHog` also becomes the current hedgehog |
|
50 |
local step1 = {func = AnimSay, args = {myHog, "Snails!", SAY_SAY, 3000}} |
|
51 |
</code> |
|
52 |
||
53 |
Example 2: |
|
54 |
<code language="lua"> |
|
55 |
-- Moves myHog to the left |
|
56 |
local step2 = {func = AnimMove, args = {myHog, "Left", 2000, 0}} |
|
57 |
</code> |
|
58 |
||
59 |
Example 3: |
|
60 |
<code language="lua"> |
|
61 |
-- Shows the caption "Hello, world!". Because argument 1 is not a hedgehog, `swh` is false |
|
62 |
local step3 = {func = AddCaption, swh = false, args = {"Hello, world!"}} |
|
63 |
</code> |
|
64 |
||
65 |
=== How animation works === |
|
66 |
||
67 |
The Animation library has two states: *Animating* and *Not Animating*. By default, the game starts in the *Not Animating* state, meaning the game behaves normally. In *Animating* state, the library looks at the list of registered animations and executes them one by one, in that order. |
|
68 |
||
69 |
You are expected to add to the list of animatinons with `AddAnim`. If the script is animating, this animation will be played after all the others have been played. If the script is not animating, the animation will be played immediately. (Assuming you have correctly added the boilerplate code mentioned at the beginning of this page.) |
|
70 |
||
71 |
Animations are basically cut scenes. During animation, Cinematic Mode is enabled (see `SetCinematicMode` which is part of the main Lua API) and most player input is blocked. Animations can cause various things to happen, like move hedgehogs, show speech bubbles, explode the landscape or just call (almost) any function. During an animation, the player can only watch or optionally skip (details later). The player can still move the camera. |
|
72 |
||
73 |
There is also an internal wait time. It starts at 0 and a few cinematic functions as well as `AnimWait` can increase this time. The wait time counts down to 0, during which the script waits to execute the next animation step. Adding to the wait time is important to time your animation correctly. |
|
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
74 |
|
2239 | 75 |
== Function reference == |
76 |
=== Cinematic handling === |
|
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
77 |
|
2239 | 78 |
==== `AnimInit([startAnimating])` ==== |
1384 | 79 |
Initializes variables used by the other functions. Needs to be called in `onGameInit`. |
80 |
||
2077
514babfbad9e
Remove outdated legacy hints as clutter
Wuzzy <almikes@aol.com>
parents:
1985
diff
changeset
|
81 |
An optional convenience parameter `startAnimating` is available; if set to `true`, the game will start in “animation” mode which enables cinematic mode and disables all controls except precise for skipping. This is useful if you want to indicate that an animation will be played right at the start and the player must not be allowed to use any controls before the animation is over. If you set this parameter to `true`, you also *must* play at least one animation after this, otherwise the game will be stuck. |
1384 | 82 |
|
2239 | 83 |
==== `AnimInsertStepNext(step)` ==== |
1384 | 84 |
Inserts `step` after the current step (read: action) in the cinematic array. Useful when an action depends on variables (e.g. positions). It can be used mostly with `AnimCustomFunction`. Note: In case of multiple consecutive calls, steps need to be added in reverse order. |
85 |
||
86 |
Example: |
|
87 |
<code language="lua">function BlowHog(deadHog) |
|
88 |
AnimInsertStepNext({func = DeleteGear, args = {deadHog}, swh = false}) |
|
89 |
AnimInsertStepNext({func = AnimVisualGear, args = {deadHog, GetX(deadHog), GetY(deadHog), vgtBigExplosion, 0, true}, swh = false}) |
|
90 |
AnimInsertStepNext({func = AnimWait, args = {deadHog, 1200}}) |
|
91 |
AnimInsertStepNext({func = AnimVisualGear, args = {deadHog, GetX(deadHog) + 20, GetY(deadHog), vgtExplosion, 0, true}, swh = false}) |
|
92 |
AnimInsertStepNext({func = AnimWait, args = {deadHog, 100}}) |
|
93 |
AnimInsertStepNext({func = AnimVisualGear, args = {deadHog, GetX(deadHog) + 10, GetY(deadHog), vgtExplosion, 0, true}, swh = false}) |
|
94 |
AnimInsertStepNext({func = AnimWait, args = {deadHog, 100}}) |
|
95 |
AnimInsertStepNext({func = AnimVisualGear, args = {deadHog, GetX(deadHog) - 10, GetY(deadHog), vgtExplosion, 0, true}, swh = false}) |
|
96 |
AnimInsertStepNext({func = AnimWait, args = {deadHog, 100}}) |
|
97 |
AnimInsertStepNext({func = AnimVisualGear, args = {deadHog, GetX(deadHog) - 20, GetY(deadHog), vgtExplosion, 0, true}, swh = false}) |
|
98 |
end |
|
99 |
cinem = {{func = AnimCustomFunction, args = {liveHog, BlowHog, {deadHog}}}}</code> |
|
100 |
||
2239 | 101 |
==== `ShowAnimation()` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
102 |
Performs the current action in the cinematic and returns `true` if finished, otherwise `false`. It needs to be used in `onGameTick`. Cut-scenes need to be added with `AddAnim(steps)`. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
103 |
|
2239 | 104 |
==== `Animate(steps)` ==== |
1383 | 105 |
*THIS FUNCTION IS UNDOCUMENTED!* |
1382 | 106 |
|
2239 | 107 |
==== `AddAnim(steps)` ==== |
108 |
Adds `steps` to the array of animations, where `steps` is a table with numbers as keys and the values are animation steps. See the introduction above for the syntax of animation steps. |
|
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
109 |
|
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
110 |
Example: |
2239 | 111 |
<code language="lua"> |
112 |
-- Makes myHog say "Snails! SNAILS!, wait 3 seconds, move it to the left until its X coordinate equals 2000, then show the caption "But he found no more snails ..." |
|
113 |
cinem = { |
|
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
114 |
{func = AnimSay, args = {myHog, "Snails! SNAILS!", SAY_SAY, 3000}}, |
2239 | 115 |
{func = AnimMove, args = {myHog, "Left", 2000, 0}}, |
116 |
{func = AddCaption, swh = false, args = {"But he found no more snails ..."}} |
|
117 |
} |
|
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
118 |
AddAnim(cinem)</code> |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
119 |
|
2239 | 120 |
==== `RemoveAnim(steps)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
121 |
Removes `steps` from the animations array. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
122 |
|
2239 | 123 |
==== `AddSkipFunction(anim, func, args)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
124 |
Adds `func` to the array of functions used to skip animations, associating it with `anim`. When the animation is skipped (see below), the function is called with `args` as arguments. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
125 |
Example: |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
126 |
<code language="lua">AddSkipFunc(cinem, SkipCinem, {})</code> |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
127 |
|
2239 | 128 |
==== `RemoveSkipFunction(anim)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
129 |
Removes the skip function associated with `anim`. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
130 |
|
2239 | 131 |
==== `SetAnimSkip(bool)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
132 |
Sets the state of animation skipping to `bool`. It is useful in case the player is allowed to skip the animation. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
133 |
|
1866 | 134 |
By convention, a cut scene in a singleplayer mission should be skipped when the player presses the Precise key. In this case, use the `onPreciseLocal` callback for this. |
135 |
||
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
136 |
Example: |
1866 | 137 |
<code language="lua">function onPreciseLocal() |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
138 |
if AnimInProgress() then |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
139 |
SetAnimSkip(true) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
140 |
end |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
141 |
end</code> |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
142 |
|
2239 | 143 |
==== `AnimInProgress()` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
144 |
Returns `true` if a cinematic is currently taking place, `false` otherwise. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
145 |
|
2239 | 146 |
==== `ExecuteAfterAnimations()` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
147 |
Calls the functions (added with `AddFunction`) that need to be executed after the cinematic. The best location for this function call is in `onGameTick`. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
148 |
|
2239 | 149 |
==== `AddFunction(element)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
150 |
Adds `element` to the functions array that are to be called after the cinematic. `element` is a table with the keys: `func`, `args`. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
151 |
|
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
152 |
Example: |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
153 |
<code language="lua">AddFunction({func = AfterCinem, args = {2}})</code> |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
154 |
|
2239 | 155 |
==== `RemoveFunction()` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
156 |
Removes the first function from the aforementioned list. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
157 |
|
2239 | 158 |
==== `AnimUnWait()` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
159 |
Decreases the wait time used by cinematics. It is best called in `onGameTick`. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
160 |
|
2239 | 161 |
==== `AnimSetInputMask(inputMask)` ==== |
1384 | 162 |
Call this function instead of `SetInputMask` if you want to set the input mask in a way that does not conflict with the Animate library. |
163 |
||
2235 | 164 |
Internally, the input mask you provide is simply AND-ed with the input mask used by the Animate library. Otherwise, this function works like `SetInputMask`. |
1384 | 165 |
|
2235 | 166 |
If you call `SetInputMask` directly, note that it might get quickly overwritten by the Animate library! |
1384 | 167 |
|
2239 | 168 |
=== Cinematic functions === |
2237 | 169 |
These are the functions you can specify in animation steps. |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
170 |
|
2239 | 171 |
==== `AnimSwitchHog(gear)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
172 |
Switches to `gear` and follows it. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
173 |
|
2239 | 174 |
==== `AnimGiveState(gear, state)` ==== |
1909 | 175 |
Sets the [States gear state] of `gear` to `state` (full bitmask). |
1382 | 176 |
|
2239 | 177 |
==== `AnimRemoveState(gear, state)` ==== |
1385 | 178 |
Removes the [States gear state] `state` from `gear`. |
1382 | 179 |
|
2239 | 180 |
==== `AnimWait(gear, time)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
181 |
Increases the wait time by `time`. `gear` is just for compatibility with `ShowAnimation`. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
182 |
|
2239 | 183 |
==== `AnimSay(gear, text, manner, time)` ==== |
2235 | 184 |
Calls `HogSay` with the first three arguments and increases the wait time by `time`. |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
185 |
|
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
186 |
Example: |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
187 |
<code language="lua">cinem = { |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
188 |
{func = AnimSay, args = {gear1, "You're so defensive!", SAY_SAY, 2500}}, |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
189 |
{func = AnimSay, args = {gear2, "No, I'm not!", SAY_SAY, 2000}} |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
190 |
}</code> |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
191 |
|
2239 | 192 |
==== `AnimSound(gear, sound, time)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
193 |
Plays the sound `sound` and increases the wait time by `time`. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
194 |
|
2239 | 195 |
==== `AnimTurn(hog, dir)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
196 |
Makes `hog` face in direction `dir`, where `dir` equals either `"Right"` or `"Left"`. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
197 |
|
2239 | 198 |
==== `AnimMove(hog, dir, x, y)` ==== |
2240 | 199 |
Makes `hog` walk in direction `dir` (`"Right"` or `"Left"`) until either its horizontal coordinate equals `x` or its vertical coordinate equals `y`. |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
200 |
|
2239 | 201 |
==== `AnimJump(hog, jumpType)` ==== |
2240 | 202 |
Makes `hog` perform a jump of type `jumpType`, where `jumpType` is one of: |
203 |
||
204 |
* `"long"`: Long jump |
|
205 |
* `"high"`: High jump |
|
206 |
* `"back"`: Backjump |
|
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
207 |
|
2239 | 208 |
==== `AnimSetGearPosition(gear, x, y, fall)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
209 |
Sets the position of `gear` to (`x`, `y`). If the optional argument `fall` does not equal `false` then the gear is given a small falling velocity in order to get around exact positioning. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
210 |
|
2239 | 211 |
==== `AnimDisappear(gear, x, y)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
212 |
Teleports the gear to (`x`, `y`), adding some effects at the previous position and sounds. Doesn’t follow the gear. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
213 |
|
2239 | 214 |
==== `AnimOutOfNowhere(gear [, x, y])` ==== |
1985
39daa8abac0b
LuaLibraryAnimate: Optional args in AnimOutOfNowhere
Wuzzy
parents:
1909
diff
changeset
|
215 |
Teleports the gear to (`x`, `y`), adding effects and sounds at the final position. Follows gear. If `x` and `y` are not specified, gear will not teleport, only the animation is played. |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
216 |
|
2239 | 217 |
==== `AnimTeleportGear(gear, x, y)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
218 |
Teleports the gear to (`x`, `y`), adding effects and sounds both at the starting position and the final position. Follows gear. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
219 |
|
2239 | 220 |
==== `AnimVisualGear(gear, x, y, vgType, state, critical)` ==== |
1517 | 221 |
Calls `AddVisualGear` with arguments second to sixth. `gear` is for compatibility only. |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
222 |
|
2239 | 223 |
==== `AnimCaption(gear, text, time)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
224 |
Adds `text` as caption and increases wait time by `time`. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
225 |
|
2239 | 226 |
==== `AnimCustomFunction(gear, func, args)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
227 |
Calls the function `func` with `args` as arguments. This function is useful, for instance, when the cinematic uses the position of a gear at the moment of execution. If `func` needs to be called in following game ticks then it should return false. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
228 |
|
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
229 |
Example: |
2239 | 230 |
<code language="lua"> |
231 |
-- Make hog1 and hog2 look at each other |
|
232 |
function NeedToTurn(hog1, hog2) |
|
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
233 |
if GetX(hog1) < GetX(hog2) then |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
234 |
HogTurnLeft(hog1, false) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
235 |
HogTurnLeft(hog2, true) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
236 |
else |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
237 |
HogTurnLeft(hog2, false) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
238 |
HogTurnLeft(hog1, true) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
239 |
end |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
240 |
end |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
241 |
|
2237 | 242 |
cinem = {{func = AnimCustomFunction, args = {hog1, NeedToTurn, {hog1, hog2}}}}</code> |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
243 |
|
2239 | 244 |
=== Event handling === |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
245 |
|
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
246 |
Events are pairs of functions that are used to check for various conditions. One of them is for verification and, if it returns `true`, the second function is called. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
247 |
|
2239 | 248 |
==== `AddEvent(condFunc, condArgs, doFunc, doArgs, evType)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
249 |
Adds the functions `condFunc` and `doFunc` to the events list. They get called with the respective args (`condArgs` and `doArgs`). `condFunc` will get called in every game tick until it returns `true` or is removed. Once it returns `true`, `doFunc` is called and they are or are not removed from the list, depending on `evType` (`0` for removal, `1` for keeping). An `evType` of `1` is useful for repeating actions (e.g. every time a hog gets damaged, do something). |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
250 |
|
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
251 |
Example: |
2237 | 252 |
<code language="lua"> |
253 |
--[[ |
|
254 |
This code shows the mission text "Nice Work" if the hog `myHog` has an X coordinate above 1500, but only once. |
|
255 |
Also, it immediately gives `myHog` 5 grenades once it runs out of grenades. It does that every time this happens. |
|
256 |
]] |
|
257 |
function CheckPos() |
|
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
258 |
return GetX(myHog) > 1500 |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
259 |
end |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
260 |
function CheckAmmo() |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
261 |
return GetAmmoCount(myHog, amGrenade) == 0 |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
262 |
end |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
263 |
function DoPos() |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
264 |
ShowMission("Scooter", "Mover", "Nice Work", 0, 0) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
265 |
end |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
266 |
function DoAmmo() |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
267 |
AddAmmo(myHog, amGrenade, 5) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
268 |
end |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
269 |
AddEvent(CheckPos, {}, DoPos, {}, 0) -- Add event that gets removed on completion |
2237 | 270 |
AddEvent(CheckAmmo, {}, DoAmmo, {}, 1) -- Add repeating event |
271 |
</code> |
|
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
272 |
|
2239 | 273 |
==== `AddNewEvent(condFunc, condArgs, doFunc, doArgs, evType)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
274 |
Does the same as `AddEvent`, but first checks if the event is already in the list so that it isn’t added twice. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
275 |
|
2239 | 276 |
==== `RemoveEventFunc(cFunc, cArgs)` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
277 |
Removes the event or events that have `cFunc` as the condition checking function. If `cArgs` does not equal `nil` then only those events get removed that have `cArgs` as arguments for `cFunc`, too. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
278 |
|
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
279 |
Example: |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
280 |
<code language="lua">AddEvent(condFunc1, condArgs1, doFunc, doArgs) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
281 |
AddEvent(condFunc1, condArgs2, doFunc, doArgs) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
282 |
AddEvent(condFunc1, condArgs2, doFunc, doArgs) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
283 |
AddEvent(condFunc2, condArgs1, doFunc, doArgs) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
284 |
AddEvent(condFunc2, condArgs2, doFunc, doArgs) |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
285 |
RemoveEventFunc(condFunc1) --Removes all three events that have condFunc1 |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
286 |
RemoveEventFunc(condFunc2, condArgs1) --Removes a single event</code> |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
287 |
|
2239 | 288 |
==== `CheckEvents()` ==== |
1329
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
289 |
Verifies all the condition functions in the events list and calls the respective ‘action’ functions if the conditions are met. If the `evType` of a completed event equals `0` then it is removed from the list. This function is best placed in `onGameTick`. |
bd781e19a52d
Split Lua libraries into several sub-pages
Wuzzy <almikes@aol.com>
parents:
diff
changeset
|
290 |
|
2239 | 291 |
=== Misc. === |
1382 | 292 |
|
2239 | 293 |
==== `StoppedGear(gear)` ==== |
1382 | 294 |
Returns `true` if the gear is considered to be resting (not moving). (dX and dY are very small) or if the gear does not exist. |