Merge pull request #10 from overte-org/fix/doppelganger

Fix doppelganger app to work with new scripting engine PR
This commit is contained in:
Julian Groß 2023-05-18 23:05:55 +02:00 committed by GitHub
commit 060ca36745
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 34 deletions

View file

@ -33,11 +33,11 @@ Script.scriptEnding.connect(function() {
var doppleganger = new DopplegangerClass({ var doppleganger = new DopplegangerClass({
avatar: MyAvatar, avatar: MyAvatar,
mirrored: false, mirrored: false,
autoUpdate: true autoUpdate: true,
}); });
// hide the doppleganger if this client script is unloaded // hide the doppleganger if this client script is unloaded
Script.scriptEnding.connect(doppleganger, 'stop'); Script.scriptEnding.connect(doppleganger, doppleganger.stop);
// hide the doppleganger if the user switches domains (which might place them arbitrarily far away in world space) // hide the doppleganger if the user switches domains (which might place them arbitrarily far away in world space)
function onDomainChanged() { function onDomainChanged() {
@ -53,7 +53,7 @@ Script.scriptEnding.connect(function() {
}); });
// toggle on/off via tablet button // toggle on/off via tablet button
button.clicked.connect(doppleganger, 'toggle'); button.clicked.connect(doppleganger, doppleganger.toggle);
// highlight tablet button based on current doppleganger state // highlight tablet button based on current doppleganger state
doppleganger.activeChanged.connect(function(active, reason) { doppleganger.activeChanged.connect(function(active, reason) {

View file

@ -9,6 +9,7 @@
// //
// Created by Timothy Dedischew on 04/21/2017. // Created by Timothy Dedischew on 04/21/2017.
// Copyright 2017 High Fidelity, Inc. // Copyright 2017 High Fidelity, Inc.
// Copyright 2022 Overte e.V.
// //
// Distributed under the Apache License, Version 2.0. // Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
@ -62,9 +63,10 @@ Doppleganger.getMirroredJointNames = function(jointNames) {
// @param {bool} [options.autoUpdate=true] - Automatically sync joint data. // @param {bool} [options.autoUpdate=true] - Automatically sync joint data.
function Doppleganger(options) { function Doppleganger(options) {
options = options || {}; options = options || {};
this.avatar = options.avatar || MyAvatar; this.avatar = MyAvatar;
this.mirrored = 'mirrored' in options ? options.mirrored : false; this.mirrored = 'mirrored' in options ? options.mirrored : false;
this.autoUpdate = 'autoUpdate' in options ? options.autoUpdate : true; this.autoUpdate = 'autoUpdate' in options ? options.autoUpdate : true;
this.testValue = options.testValue;
// @public // @public
this.active = false; // whether doppleganger is currently being displayed/updated this.active = false; // whether doppleganger is currently being displayed/updated
@ -159,8 +161,6 @@ Doppleganger.prototype = {
// @param {vec3} [options.position=(in front of avatar)] - starting position // @param {vec3} [options.position=(in front of avatar)] - starting position
// @param {quat} [options.orientation=avatar.orientation] - starting orientation // @param {quat} [options.orientation=avatar.orientation] - starting orientation
start: function(options) { start: function(options) {
options = options || {}; options = options || {};
if (this.entityID) { if (this.entityID) {
//log('start() called but entity model already exists', this.entityID); //log('start() called but entity model already exists', this.entityID);
@ -215,7 +215,7 @@ Doppleganger.prototype = {
this._createUpdateThread(); this._createUpdateThread();
} }
}; };
this.addingEntity.connect(this, 'onAddingEntity'); this.addingEntity.connect(this, this.onAddingEntity);
log('doppleganger created; entityID =', this.entityID); log('doppleganger created; entityID =', this.entityID);
@ -226,7 +226,7 @@ Doppleganger.prototype = {
this.stop('entity_deleted'); this.stop('entity_deleted');
} }
}; };
Entities.deletingEntity.connect(this, 'onDeletedEntity'); Entities.deletingEntity.connect(this, this.onDeletedEntity);
if ('onLoadComplete' in avatar) { if ('onLoadComplete' in avatar) {
// stop the current doppleganger if Avatar loads a different model URL // stop the current doppleganger if Avatar loads a different model URL
@ -235,7 +235,7 @@ Doppleganger.prototype = {
this.stop('avatar_changed_load'); this.stop('avatar_changed_load');
} }
}; };
avatar.onLoadComplete.connect(this, 'onLoadComplete'); avatar.onLoadComplete.connect(this, this.onLoadComplete);
} }
this.activeChanged(this.active = true, 'start'); this.activeChanged(this.active = true, 'start');
@ -247,7 +247,7 @@ Doppleganger.prototype = {
stop: function(reason) { stop: function(reason) {
reason = reason || 'stop'; reason = reason || 'stop';
if (this.onUpdate) { if (this.onUpdate) {
Script.update.disconnect(this, 'onUpdate'); Script.update.disconnect(this, this.onUpdate);
delete this.onUpdate; delete this.onUpdate;
} }
if (this._interval) { if (this._interval) {
@ -255,15 +255,15 @@ Doppleganger.prototype = {
this._interval = undefined; this._interval = undefined;
} }
if (this.onDeletedEntity) { if (this.onDeletedEntity) {
Entities.deletingEntity.disconnect(this, 'onDeletedEntity'); Entities.deletingEntity.disconnect(this, this.onDeletedEntity);
delete this.onDeletedEntity; delete this.onDeletedEntity;
} }
if (this.onLoadComplete) { if (this.onLoadComplete) {
this.avatar.onLoadComplete.disconnect(this, 'onLoadComplete'); this.avatar.onLoadComplete.disconnect(this, this.onLoadComplete);
delete this.onLoadComplete; delete this.onLoadComplete;
} }
if (this.onAddingEntity) { if (this.onAddingEntity) {
this.addingEntity.disconnect(this, 'onAddingEntity'); this.addingEntity.disconnect(this, this.onAddingEntity);
} }
if (this.entityID) { if (this.entityID) {
Entities.deleteEntity(this.entityID); Entities.deleteEntity(this.entityID);
@ -303,11 +303,11 @@ Doppleganger.prototype = {
if (Doppleganger.USE_SCRIPT_UPDATE) { if (Doppleganger.USE_SCRIPT_UPDATE) {
log('creating Script.update thread'); log('creating Script.update thread');
this.onUpdate = this.update; this.onUpdate = this.update;
Script.update.connect(this, 'onUpdate'); Script.update.connect(this, this.onUpdate);
} else { } else {
log('creating Script.setInterval thread @ ~', Doppleganger.TARGET_FPS +'fps'); log('creating Script.setInterval thread @ ~', Doppleganger.TARGET_FPS +'fps');
var timeout = 1000 / Doppleganger.TARGET_FPS; var timeout = 1000 / Doppleganger.TARGET_FPS;
this._interval = Script.setInterval(bind(this, 'update'), timeout); this._interval = Script.setInterval(bind(this, this.update), timeout);
} }
}, },
@ -321,7 +321,7 @@ Doppleganger.prototype = {
function waitForJointNames() { function waitForJointNames() {
var error = null, result = null; var error = null, result = null;
if (!watchdogTimer) { if (!watchdogTimer) {
error = 'joints_unavailable'; error = 'joints_unavailable_watchodog_fail';
} else if (resource.state === Resource.State.FAILED) { } else if (resource.state === Resource.State.FAILED) {
error = 'prefetch_failed'; error = 'prefetch_failed';
} else if (resource.state === Resource.State.FINISHED) { } else if (resource.state === Resource.State.FINISHED) {
@ -408,14 +408,14 @@ Doppleganger.addDebugControls = function(doppleganger) {
start: function() { start: function() {
if (!this.onMousePressEvent) { if (!this.onMousePressEvent) {
this.onMousePressEvent = this._onMousePressEvent; this.onMousePressEvent = this._onMousePressEvent;
Controller.mousePressEvent.connect(this, 'onMousePressEvent'); Controller.mousePressEvent.connect(this, this.onMousePressEvent);
} }
}, },
stop: function() { stop: function() {
this.removeIndicators(); this.removeIndicators();
if (this.onMousePressEvent) { if (this.onMousePressEvent) {
Controller.mousePressEvent.disconnect(this, 'onMousePressEvent'); Controller.mousePressEvent.disconnect(this, this.onMousePressEvent);
delete this.onMousePressEvent; delete this.onMousePressEvent;
} }
}, },
@ -502,11 +502,11 @@ Doppleganger.addDebugControls = function(doppleganger) {
doppleganger.activeChanged.connect(function(active) { doppleganger.activeChanged.connect(function(active) {
if (active) { if (active) {
debugControls.start(); debugControls.start();
doppleganger.jointsUpdated.connect(debugControls, 'onJointsUpdated'); doppleganger.jointsUpdated.connect(debugControls, this.onJointsUpdated);
Controller.mousePressEvent.connect(onMousePressEvent); Controller.mousePressEvent.connect(onMousePressEvent);
} else { } else {
Controller.mousePressEvent.disconnect(onMousePressEvent); Controller.mousePressEvent.disconnect(onMousePressEvent);
doppleganger.jointsUpdated.disconnect(debugControls, 'onJointsUpdated'); doppleganger.jointsUpdated.disconnect(debugControls, this.onJointsUpdated);
debugControls.stop(); debugControls.stop();
} }
}); });
@ -520,7 +520,7 @@ Doppleganger.addDebugControls = function(doppleganger) {
log('selected joint:', JSON.stringify(hit, 0, 2)); log('selected joint:', JSON.stringify(hit, 0, 2));
}); });
Script.scriptEnding.connect(debugControls, 'removeIndicators'); Script.scriptEnding.connect(debugControls, debugControls.removeIndicators);
return doppleganger; return doppleganger;
}; };

View file

@ -215,7 +215,7 @@ Doppleganger.prototype = {
this._createUpdateThread(); this._createUpdateThread();
} }
}; };
this.addingEntity.connect(this, 'onAddingEntity'); this.addingEntity.connect(this, this.onAddingEntity);
log('doppleganger created; entityID =', this.entityID); log('doppleganger created; entityID =', this.entityID);
@ -226,7 +226,7 @@ Doppleganger.prototype = {
this.stop('entity_deleted'); this.stop('entity_deleted');
} }
}; };
Entities.deletingEntity.connect(this, 'onDeletedEntity'); Entities.deletingEntity.connect(this, this.onDeletedEntity);
if ('onLoadComplete' in avatar) { if ('onLoadComplete' in avatar) {
// stop the current doppleganger if Avatar loads a different model URL // stop the current doppleganger if Avatar loads a different model URL
@ -235,7 +235,7 @@ Doppleganger.prototype = {
//this.stop('avatar_changed_load'); //this.stop('avatar_changed_load');
} }
}; };
avatar.onLoadComplete.connect(this, 'onLoadComplete'); avatar.onLoadComplete.connect(this, this.onLoadComplete);
} }
this.activeChanged(this.active = true, 'start'); this.activeChanged(this.active = true, 'start');
@ -247,7 +247,7 @@ Doppleganger.prototype = {
stop: function(reason) { stop: function(reason) {
reason = reason || 'stop'; reason = reason || 'stop';
if (this.onUpdate) { if (this.onUpdate) {
Script.update.disconnect(this, 'onUpdate'); Script.update.disconnect(this, this.onUpdate);
delete this.onUpdate; delete this.onUpdate;
} }
if (this._interval) { if (this._interval) {
@ -255,15 +255,15 @@ Doppleganger.prototype = {
this._interval = undefined; this._interval = undefined;
} }
if (this.onDeletedEntity) { if (this.onDeletedEntity) {
Entities.deletingEntity.disconnect(this, 'onDeletedEntity'); Entities.deletingEntity.disconnect(this, this.onDeletedEntity);
delete this.onDeletedEntity; delete this.onDeletedEntity;
} }
if (this.onLoadComplete) { if (this.onLoadComplete) {
this.avatar.onLoadComplete.disconnect(this, 'onLoadComplete'); this.avatar.onLoadComplete.disconnect(this, this.onLoadComplete);
delete this.onLoadComplete; delete this.onLoadComplete;
} }
if (this.onAddingEntity) { if (this.onAddingEntity) {
this.addingEntity.disconnect(this, 'onAddingEntity'); this.addingEntity.disconnect(this, this.onAddingEntity);
} }
if (this.entityID) { if (this.entityID) {
Entities.deleteEntity(this.entityID); Entities.deleteEntity(this.entityID);
@ -303,7 +303,7 @@ Doppleganger.prototype = {
if (Doppleganger.USE_SCRIPT_UPDATE) { if (Doppleganger.USE_SCRIPT_UPDATE) {
log('creating Script.update thread'); log('creating Script.update thread');
this.onUpdate = this.update; this.onUpdate = this.update;
Script.update.connect(this, 'onUpdate'); Script.update.connect(this, this.onUpdate);
} else { } else {
log('creating Script.setInterval thread @ ~', Doppleganger.TARGET_FPS +'fps'); log('creating Script.setInterval thread @ ~', Doppleganger.TARGET_FPS +'fps');
var timeout = 1000 / Doppleganger.TARGET_FPS; var timeout = 1000 / Doppleganger.TARGET_FPS;
@ -408,14 +408,14 @@ Doppleganger.addDebugControls = function(doppleganger) {
start: function() { start: function() {
if (!this.onMousePressEvent) { if (!this.onMousePressEvent) {
this.onMousePressEvent = this._onMousePressEvent; this.onMousePressEvent = this._onMousePressEvent;
Controller.mousePressEvent.connect(this, 'onMousePressEvent'); Controller.mousePressEvent.connect(this, this.onMousePressEvent);
} }
}, },
stop: function() { stop: function() {
this.removeIndicators(); this.removeIndicators();
if (this.onMousePressEvent) { if (this.onMousePressEvent) {
Controller.mousePressEvent.disconnect(this, 'onMousePressEvent'); Controller.mousePressEvent.disconnect(this, this.onMousePressEvent);
delete this.onMousePressEvent; delete this.onMousePressEvent;
} }
}, },
@ -502,11 +502,11 @@ Doppleganger.addDebugControls = function(doppleganger) {
doppleganger.activeChanged.connect(function(active) { doppleganger.activeChanged.connect(function(active) {
if (active) { if (active) {
debugControls.start(); debugControls.start();
doppleganger.jointsUpdated.connect(debugControls, 'onJointsUpdated'); doppleganger.jointsUpdated.connect(debugControls, debugControls.onJointsUpdated);
Controller.mousePressEvent.connect(onMousePressEvent); Controller.mousePressEvent.connect(onMousePressEvent);
} else { } else {
Controller.mousePressEvent.disconnect(onMousePressEvent); Controller.mousePressEvent.disconnect(onMousePressEvent);
doppleganger.jointsUpdated.disconnect(debugControls, 'onJointsUpdated'); doppleganger.jointsUpdated.disconnect(debugControls, debugControls.onJointsUpdated);
debugControls.stop(); debugControls.stop();
} }
}); });
@ -520,7 +520,7 @@ Doppleganger.addDebugControls = function(doppleganger) {
log('selected joint:', JSON.stringify(hit, 0, 2)); log('selected joint:', JSON.stringify(hit, 0, 2));
}); });
Script.scriptEnding.connect(debugControls, 'removeIndicators'); Script.scriptEnding.connect(debugControls, debugControls.removeIndicators);
return doppleganger; return doppleganger;
}; };