mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-26 22:15:20 +02:00
113 lines
3.6 KiB
JavaScript
113 lines
3.6 KiB
JavaScript
(function() {
|
|
Script.include("/~/system/libraries/utils.js");
|
|
|
|
var ROLE = "fly";
|
|
var ANIMATION_URL = "https://s3-us-west-1.amazonaws.com/hifi-content/clement/production/animations/sitting_idle.fbx";
|
|
var ANIMATION_FPS = 30;
|
|
var ANIMATION_FIRST_FRAME = 1;
|
|
var ANIMATION_LAST_FRAME = 10;
|
|
var RELEASE_KEYS = ['w', 'a', 's', 'd', 'UP', 'LEFT', 'DOWN', 'RIGHT'];
|
|
var RELEASE_TIME = 500; // ms
|
|
var RELEASE_DISTANCE = 0.2; // meters
|
|
var MAX_IK_ERROR = 15;
|
|
|
|
this.entityID = null;
|
|
this.timers = {};
|
|
this.animStateHandlerID = null;
|
|
|
|
this.preload = function(entityID) {
|
|
this.entityID = entityID;
|
|
}
|
|
|
|
this.update = function(dt) {
|
|
if (MyAvatar.getParentID() === this.entityID) {
|
|
var properties = Entities.getEntityProperties(this.entityID, ["position"]);
|
|
var avatarDistance = Vec3.distance(MyAvatar.position, properties.position);
|
|
var ikError = MyAvatar.getIKErrorOnLastSolve();
|
|
print("IK error: " + ikError);
|
|
if (avatarDistance > RELEASE_DISTANCE || ikError > MAX_IK_ERROR) {
|
|
this.sitUp(this.entityID);
|
|
}
|
|
}
|
|
}
|
|
this.keyPressed = function(event) {
|
|
if (isInEditMode()) {
|
|
return;
|
|
}
|
|
|
|
if (RELEASE_KEYS.indexOf(event.text) !== -1) {
|
|
var that = this;
|
|
this.timers[event.text] = Script.setTimeout(function() {
|
|
that.sitUp();
|
|
}, RELEASE_TIME);
|
|
}
|
|
}
|
|
this.keyReleased = function(event) {
|
|
if (RELEASE_KEYS.indexOf(event.text) !== -1) {
|
|
if (this.timers[event.text]) {
|
|
print("Clear timeout");
|
|
Script.clearTimeout(this.timers[event.text]);
|
|
delete this.timers[event.text];
|
|
}
|
|
}
|
|
}
|
|
|
|
this.sitDown = function() {
|
|
var avatarIdentifiers = AvatarList.getAvatarIdentifiers();
|
|
for (var i in avatarIdentifiers) {
|
|
var avatar = AvatarList.getAvatar(avatarIdentifiers[i]);
|
|
if (avatar && avatar.getParentID() === this.entityID) {
|
|
print("Someone is already sitting in that chair.");
|
|
return;
|
|
}
|
|
}
|
|
|
|
MyAvatar.overrideRoleAnimation(ROLE, ANIMATION_URL, ANIMATION_FPS, true, ANIMATION_FIRST_FRAME, ANIMATION_LAST_FRAME);
|
|
MyAvatar.setParentID(this.entityID);
|
|
MyAvatar.characterControllerEnabled = false;
|
|
MyAvatar.hmdLeanRecenterEnabled = false;
|
|
|
|
var properties = Entities.getEntityProperties(this.entityID, ["position", "rotation"]);
|
|
var index = MyAvatar.getJointIndex("Hips");
|
|
MyAvatar.pinJoint(index, properties.position, properties.rotation);
|
|
|
|
this.animStateHandlerID = MyAvatar.addAnimationStateHandler(function(props) {
|
|
return { headType: 0 };
|
|
}, ["headType"]);
|
|
|
|
Script.update.connect(this, this.update);
|
|
Controller.keyPressEvent.connect(this, this.keyPressed);
|
|
Controller.keyReleaseEvent.connect(this, this.keyReleased);
|
|
for (var i in RELEASE_KEYS) {
|
|
Controller.captureKeyEvents({ text: RELEASE_KEYS[i] });
|
|
}
|
|
}
|
|
|
|
this.sitUp = function() {
|
|
MyAvatar.restoreRoleAnimation(ROLE);
|
|
MyAvatar.setParentID("");
|
|
MyAvatar.characterControllerEnabled = true;
|
|
MyAvatar.hmdLeanRecenterEnabled = true;
|
|
|
|
var index = MyAvatar.getJointIndex("Hips");
|
|
MyAvatar.clearPinOnJoint(index);
|
|
|
|
MyAvatar.removeAnimationStateHandler(this.animStateHandlerID);
|
|
|
|
Script.update.disconnect(this, this.update);
|
|
Controller.keyPressEvent.disconnect(this, this.keyPressed);
|
|
Controller.keyReleaseEvent.disconnect(this, this.keyReleased);
|
|
for (var i in RELEASE_KEYS) {
|
|
Controller.releaseKeyEvents({ text: RELEASE_KEYS[i] });
|
|
}
|
|
}
|
|
|
|
this.clickDownOnEntity = function () {
|
|
if (MyAvatar.getParentID() !== this.entityID) {
|
|
this.sitDown();
|
|
}
|
|
}
|
|
this.sit = function () {
|
|
this.sitDown();
|
|
}
|
|
});
|