Noah Petherbridge
38614ee280
* Tightens up the surface area of API methods available to the JavaScript VMs for doodads. Variables and functions are carefully passed in one-by-one so the doodad script can only access intended functions and not snoop on undocumented APIs. * Wrote tons of user documentation for Doodad Scripts: documented the full surface area of the exposed JavaScript API now that the surface area is known and limited. * Early WIP code for the Campaign JSON
57 lines
1.1 KiB
JavaScript
57 lines
1.1 KiB
JavaScript
// State Block Control Button
|
|
|
|
// Button is "OFF" by default.
|
|
var state = false;
|
|
|
|
function main() {
|
|
console.log("%s ID '%s' initialized!", Self.Title, Self.ID());
|
|
Self.SetHitbox(0, 0, 33, 33);
|
|
|
|
// When the button is activated, don't keep toggling state until we're not
|
|
// being touched again.
|
|
var colliding = false;
|
|
|
|
// If we receive a state change event from a DIFFERENT on/off button, update
|
|
// ourself to match the state received.
|
|
Message.Subscribe("broadcast:state-change", function(value) {
|
|
state = value;
|
|
showSprite();
|
|
});
|
|
|
|
Events.OnCollide(function(e) {
|
|
if (colliding) {
|
|
return false;
|
|
}
|
|
|
|
// Only trigger for mobile characters.
|
|
if (e.Actor.IsMobile()) {
|
|
// Only activate if touched from the bottom or sides.
|
|
if (e.Overlap.Y === 0) {
|
|
return false;
|
|
}
|
|
|
|
colliding = true;
|
|
state = !state;
|
|
Message.Broadcast("broadcast:state-change", state);
|
|
|
|
showSprite();
|
|
}
|
|
|
|
// Always a solid button.
|
|
return false;
|
|
});
|
|
|
|
Events.OnLeave(function(e) {
|
|
colliding = false;
|
|
})
|
|
}
|
|
|
|
// Update the active layer based on the current button state.
|
|
function showSprite() {
|
|
if (state) {
|
|
Self.ShowLayer(1);
|
|
} else {
|
|
Self.ShowLayer(0);
|
|
}
|
|
}
|