mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 07:56:32 +02:00
150 lines
No EOL
4.7 KiB
JavaScript
150 lines
No EOL
4.7 KiB
JavaScript
(function() {
|
|
var SEARCH_RADIUS = 10;
|
|
|
|
var EMISSIVE_TEXTURE_URL = "http://hifi-content.s3.amazonaws.com/highfidelitysign_white_emissive.png";
|
|
|
|
var DIFFUSE_TEXTURE_URL = "http://hifi-content.s3.amazonaws.com/highfidelity_diffusebaked.png";
|
|
|
|
var _this;
|
|
var utilitiesScript = Script.resolvePath('../../../../libraries/utils.js');
|
|
Script.include(utilitiesScript);
|
|
Switch = function() {
|
|
_this = this;
|
|
this.switchSound = SoundCache.getSound("https://hifi-public.s3.amazonaws.com/sounds/Switches%20and%20sliders/lamp_switch_2.wav");
|
|
};
|
|
|
|
Switch.prototype = {
|
|
prefix: 'hifi-home-lab-desk-lamp',
|
|
clickReleaseOnEntity: function(entityID, mouseEvent) {
|
|
if (!mouseEvent.isLeftButton) {
|
|
return;
|
|
}
|
|
this.toggleLights();
|
|
},
|
|
|
|
startNearTrigger: function() {
|
|
this.toggleLights();
|
|
},
|
|
|
|
modelEmitOn: function(discModel) {
|
|
Entities.editEntity(glowDisc, {
|
|
textures: 'emissive:' + EMISSIVE_TEXTURE_URL ',\ndiffuse:"' + DIFFUSE_TEXTURE_URL + '"'
|
|
})
|
|
},
|
|
|
|
modelEmitOff: function(discModel) {
|
|
Entities.editEntity(glowDisc, {
|
|
textures: 'emissive:"",\ndiffuse:"' + DIFFUSE_TEXTURE_URL + '"'
|
|
})
|
|
},
|
|
|
|
masterLightOn: function(masterLight) {
|
|
Entities.editEntity(masterLight, {
|
|
visible: true
|
|
});
|
|
},
|
|
|
|
masterLightOff: function() {
|
|
Entities.editEntity(masterLight, {
|
|
visible: false
|
|
});
|
|
},
|
|
|
|
|
|
findMasterLights: function() {
|
|
var found = [];
|
|
var results = Entities.findEntities(this.position, SEARCH_RADIUS);
|
|
results.forEach(function(result) {
|
|
var properties = Entities.getEntityProperties(result);
|
|
if (properties.name === _this.prefix + "spotlight") {
|
|
found.push(result);
|
|
}
|
|
});
|
|
return found;
|
|
},
|
|
|
|
findEmitModels: function() {
|
|
var found = [];
|
|
var results = Entities.findEntities(this.position, SEARCH_RADIUS);
|
|
results.forEach(function(result) {
|
|
var properties = Entities.getEntityProperties(result);
|
|
if (properties.name === _this.prefix + "model") {
|
|
found.push(result);
|
|
}
|
|
});
|
|
return found;
|
|
},
|
|
|
|
toggleLights: function() {
|
|
|
|
this.switch = getEntityCustomData('home-switch', this.entityID, {
|
|
state: 'off'
|
|
});
|
|
|
|
var masterLights = this.findMasterLights();
|
|
var emitModels = this.findEmitModels();
|
|
|
|
if (this.switch.state === 'off') {
|
|
|
|
masterLights.forEach(function(masterLight) {
|
|
_this.masterLightOn(masterLight);
|
|
});
|
|
emitModels.forEach(function(emitModel) {
|
|
_this.modelEmitOn(emitModel);
|
|
});
|
|
setEntityCustomData('home-switch', this.entityID, {
|
|
state: 'on'
|
|
});
|
|
|
|
} else {
|
|
|
|
masterLights.forEach(function(masterLight) {
|
|
_this.masterLightOff(masterLight);
|
|
});
|
|
emitModels.forEach(function(emitModel) {
|
|
_this.modelEmitOff(emitModel);
|
|
});
|
|
setEntityCustomData('home-switch', this.entityID, {
|
|
state: 'off'
|
|
});
|
|
}
|
|
|
|
this.flipSwitch();
|
|
Audio.playSound(this.switchSound, {
|
|
volume: 0.5,
|
|
position: this.position
|
|
});
|
|
|
|
},
|
|
|
|
flipSwitch: function() {
|
|
var rotation = Entities.getEntityProperties(this.entityID, "rotation").rotation;
|
|
var axis = {
|
|
x: 0,
|
|
y: 1,
|
|
z: 0
|
|
};
|
|
var dQ = Quat.angleAxis(180, axis);
|
|
rotation = Quat.multiply(rotation, dQ);
|
|
|
|
Entities.editEntity(this.entityID, {
|
|
rotation: rotation
|
|
});
|
|
},
|
|
|
|
preload: function(entityID) {
|
|
this.entityID = entityID;
|
|
setEntityCustomData('grabbableKey', this.entityID, {
|
|
wantsTrigger: true
|
|
});
|
|
|
|
var properties = Entities.getEntityProperties(this.entityID);
|
|
|
|
//The light switch is static, so just cache its position once
|
|
this.position = Entities.getEntityProperties(this.entityID, "position").position;
|
|
}
|
|
};
|
|
|
|
// entity scripts always need to return a newly constructed object of our type
|
|
return new Switch();
|
|
}); |