Noah Petherbridge
27896a9253
Adds support for sound effects in Doodle and configures some for various doodads to start out with: * Buttons and Switches: "Clicked down" and "clicked up" sounds. * Colored Doors: an "unlocked" sound and a "door opened" sound. * Electric Door: sci-fi sounds when opening and closing. * Keys: sound effect for collecting keys. JavaScript API for Doodads adds a global function `Sound.Play(filename)` to play sounds. All sounds in the `rtp/sfx/` folder are pre-loaded on startup for efficient use in the app. Otherwise sounds are lazy-loaded on first playback.
63 lines
1.5 KiB
JavaScript
63 lines
1.5 KiB
JavaScript
// Crumbly Floor.
|
|
function main() {
|
|
Self.SetHitbox(0, 0, 65, 7);
|
|
|
|
Self.AddAnimation("shake", 100, ["shake1", "shake2", "floor", "shake1", "shake2", "floor"]);
|
|
Self.AddAnimation("fall", 100, ["fall1", "fall2", "fall3", "fall4"]);
|
|
|
|
// Recover time for the floor to respawn.
|
|
var recover = 5000;
|
|
|
|
// States of the floor.
|
|
var stateSolid = 0;
|
|
var stateShaking = 1;
|
|
var stateFalling = 2;
|
|
var stateFallen = 3;
|
|
var state = stateSolid;
|
|
|
|
// Started the animation?
|
|
var startedAnimation = false;
|
|
|
|
Events.OnCollide(function(e) {
|
|
|
|
// If the floor is falling, the player passes right thru.
|
|
if (state === stateFalling || state === stateFallen) {
|
|
return;
|
|
}
|
|
|
|
// Floor is solid until it begins to fall.
|
|
if (e.InHitbox && (state === stateSolid || state === stateShaking)) {
|
|
// Only activate when touched from the top.
|
|
if (e.Overlap.Y > 0) {
|
|
return false;
|
|
}
|
|
|
|
// If movement is not settled, be solid.
|
|
if (!e.Settled) {
|
|
return false;
|
|
}
|
|
|
|
// Begin the animation sequence if we're in the solid state.
|
|
if (state === stateSolid) {
|
|
state = stateShaking;
|
|
Self.PlayAnimation("shake", function() {
|
|
state = stateFalling;
|
|
Self.PlayAnimation("fall", function() {
|
|
Sound.Play("crumbly-break.wav")
|
|
state = stateFallen;
|
|
Self.ShowLayerNamed("fallen");
|
|
|
|
// Recover after a while.
|
|
setTimeout(function() {
|
|
Self.ShowLayer(0);
|
|
state = stateSolid;
|
|
}, recover);
|
|
});
|
|
})
|
|
}
|
|
|
|
return false;
|
|
}
|
|
});
|
|
}
|