2019-05-06 02:04:02 +00:00
|
|
|
function main() {
|
2020-04-22 06:50:45 +00:00
|
|
|
console.log("Azulian '%s' initialized!", Self.Title);
|
2019-05-06 02:04:02 +00:00
|
|
|
|
|
|
|
var playerSpeed = 4;
|
|
|
|
var gravity = 4;
|
|
|
|
var Vx = Vy = 0;
|
|
|
|
|
|
|
|
var direction = "right";
|
|
|
|
|
2019-12-31 02:13:28 +00:00
|
|
|
Self.SetMobile(true);
|
2019-05-06 02:04:02 +00:00
|
|
|
Self.SetGravity(true);
|
|
|
|
Self.AddAnimation("walk-left", 100, ["red-wl1", "red-wl2", "red-wl3", "red-wl4"]);
|
|
|
|
Self.AddAnimation("walk-right", 100, ["red-wr1", "red-wr2", "red-wr3", "red-wr4"]);
|
|
|
|
|
|
|
|
// Sample our X position every few frames and detect if we've hit a solid wall.
|
|
|
|
var sampleTick = 0;
|
|
|
|
var sampleRate = 5;
|
|
|
|
var lastSampledX = 0;
|
|
|
|
|
|
|
|
setInterval(function() {
|
|
|
|
if (sampleTick % sampleRate === 0) {
|
|
|
|
var curX = Self.Position().X;
|
|
|
|
var delta = Math.abs(curX - lastSampledX);
|
|
|
|
if (delta < 5) {
|
|
|
|
direction = direction === "right" ? "left" : "right";
|
|
|
|
}
|
|
|
|
lastSampledX = curX;
|
|
|
|
}
|
|
|
|
sampleTick++;
|
|
|
|
|
2020-04-05 04:00:32 +00:00
|
|
|
// TODO: Vector() requires floats, pain in the butt for JS,
|
|
|
|
// the JS API should be friendlier and custom...
|
|
|
|
var Vx = parseFloat(playerSpeed * (direction === "left" ? -1 : 1));
|
|
|
|
Self.SetVelocity(Vector(Vx, 0.0));
|
2019-05-06 02:04:02 +00:00
|
|
|
|
|
|
|
if (!Self.IsAnimating()) {
|
|
|
|
Self.PlayAnimation("walk-"+direction, null);
|
|
|
|
}
|
|
|
|
}, 100);
|
|
|
|
}
|