2021-03-31 06:33:25 +00:00
|
|
|
var animating = false;
|
|
|
|
var opened = false;
|
|
|
|
var powerState = false;
|
|
|
|
|
|
|
|
// Function to handle the door opening or closing.
|
|
|
|
function setPoweredState(powered) {
|
|
|
|
powerState = powered;
|
|
|
|
|
|
|
|
console.log("setPoweredState: %+v", powered)
|
|
|
|
if (powered) {
|
|
|
|
if (animating || opened) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
animating = true;
|
|
|
|
Sound.Play("electric-door.wav")
|
|
|
|
Self.PlayAnimation("open", function() {
|
|
|
|
opened = true;
|
|
|
|
animating = false;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
animating = true;
|
|
|
|
Sound.Play("electric-door.wav")
|
|
|
|
Self.PlayAnimation("close", function() {
|
|
|
|
opened = false;
|
|
|
|
animating = false;
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-19 01:15:05 +00:00
|
|
|
function main() {
|
2019-05-07 05:57:32 +00:00
|
|
|
Self.AddAnimation("open", 100, [0, 1, 2, 3]);
|
|
|
|
Self.AddAnimation("close", 100, [3, 2, 1, 0]);
|
2021-03-31 06:33:25 +00:00
|
|
|
|
2019-04-19 01:15:05 +00:00
|
|
|
|
2020-12-30 01:24:42 +00:00
|
|
|
Self.SetHitbox(0, 0, 34, 76);
|
2019-06-24 00:30:12 +00:00
|
|
|
|
2021-03-31 06:33:25 +00:00
|
|
|
// A linked Switch that activates the door will send the Toggle signal
|
|
|
|
// immediately before the Power signal. The door can just invert its
|
|
|
|
// state on this signal, and ignore the very next Power signal. Ordinary
|
|
|
|
// power sources like Buttons will work as normal, as they emit only a power
|
|
|
|
// signal.
|
|
|
|
var ignoreNextPower = false;
|
|
|
|
Message.Subscribe("switch:toggle", function(powered) {
|
|
|
|
console.log("A switch powered %+v, setPoweredState(%+v) to opposite", powered, powerState);
|
|
|
|
ignoreNextPower = true;
|
|
|
|
setPoweredState(!powerState);
|
|
|
|
})
|
2019-04-19 01:15:05 +00:00
|
|
|
|
2021-03-31 06:33:25 +00:00
|
|
|
Message.Subscribe("power", function(powered) {
|
|
|
|
if (ignoreNextPower) {
|
|
|
|
ignoreNextPower = false;
|
|
|
|
return;
|
2019-06-24 00:30:12 +00:00
|
|
|
}
|
2021-03-31 06:33:25 +00:00
|
|
|
|
|
|
|
setPoweredState(powered);
|
2019-06-24 00:30:12 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
Events.OnCollide(function(e) {
|
|
|
|
if (e.InHitbox) {
|
|
|
|
if (!opened) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-05-07 05:57:32 +00:00
|
|
|
}
|
2019-06-24 00:30:12 +00:00
|
|
|
});
|
2019-04-19 01:15:05 +00:00
|
|
|
}
|