Noah Petherbridge
258b2eb285
* CLI: fix the `doodad convert` command to share the same Palette when converting each frame (layer) of a doodad so subsequent layers find the correct color swatches for serialization. * Scripting: add timers and intervals to Doodad scripts to allow them to animate themselves or add delayed callbacks. The timers have the same API as a web browser: setTimeout(), setInterval(), clearTimeout(), clearInterval(). * Add support for uix.Actor to change its currently rendered layer in the level. For example a Button Doodad can set its image to Layer 1 (pressed) when touched by the player, and Trapdoors can cycle through their layers to animate opening and closing. * Usage from a Doodad script: Self.ShowLayer(1) * Default Doodads: added scripts for all Buttons, Doors, Keys and the Trapdoor to run their various animations when touched (in the case of Keys, destroy themselves when touched, because there is no player inventory yet)
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
function main() {
|
|
console.log("%s initialized!", Self.Doodad.Title);
|
|
|
|
var timer = 0;
|
|
|
|
// Animation frames.
|
|
var frame = 0;
|
|
var frames = Self.LayerCount();
|
|
var animationDirection = 1; // forward or backward
|
|
var animationSpeed = 100; // interval between frames when animating
|
|
var animationDelay = 8; // delay ticks at the end before reversing, in
|
|
// multiples of animationSpeed
|
|
var delayCountdown = 0;
|
|
var animating = false; // true if animation is actively happening
|
|
|
|
console.warn("Trapdoor has %d frames", frames);
|
|
|
|
// Animation interval function.
|
|
setInterval(function() {
|
|
if (!animating) {
|
|
return;
|
|
}
|
|
|
|
// At the end of the animation (door is open), delay before resuming
|
|
// the close animation.
|
|
if (delayCountdown > 0) {
|
|
delayCountdown--;
|
|
return;
|
|
}
|
|
|
|
// Advance the frame forwards or backwards.
|
|
frame += animationDirection;
|
|
if (frame >= frames) {
|
|
// Reached the last frame, start the pause and reverse direction.
|
|
delayCountdown = animationDelay;
|
|
animationDirection = -1;
|
|
|
|
// also bounds check it
|
|
frame = frames - 1;
|
|
}
|
|
|
|
if (frame < 0) {
|
|
// reached the start again
|
|
frame = 0;
|
|
animationDirection = 1;
|
|
animating = false;
|
|
}
|
|
|
|
Self.ShowLayer(frame);
|
|
}, animationSpeed);
|
|
|
|
Events.OnCollide( function() {
|
|
animating = true; // start the animation
|
|
})
|
|
}
|