mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 08:03:11 +02:00
84 lines
2.8 KiB
JavaScript
84 lines
2.8 KiB
JavaScript
//
|
|
// Radio.js
|
|
// examples
|
|
//
|
|
// Created by Clément Brisset on 8/20/14.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
|
|
var VIRCADIA_PUBLIC_CDN = networkingConstants.PUBLIC_BUCKET_CDN_URL;
|
|
|
|
var modelURL = VIRCADIA_PUBLIC_CDN + "models/entities/radio/Speakers.fbx";
|
|
var soundURL = VIRCADIA_PUBLIC_CDN + "sounds/family.stereo.raw";
|
|
|
|
var AudioRotationOffset = Quat.fromPitchYawRollDegrees(0, -90, 0);
|
|
var audioOptions = {
|
|
volume: 0.5,
|
|
loop: true
|
|
}
|
|
|
|
var injector = null;
|
|
|
|
var sound = SoundCache.getSound(soundURL, audioOptions.isStereo);
|
|
|
|
var entity = null;
|
|
var properties = null;
|
|
|
|
function update() {
|
|
if (entity === null) {
|
|
if (sound.downloaded) {
|
|
print("Sound file downloaded");
|
|
var position = Vec3.sum(MyAvatar.position,
|
|
Vec3.multiplyQbyV(MyAvatar.orientation,
|
|
{ x: 0, y: -0.3, z: -2 }));
|
|
var rotation = Quat.multiply(MyAvatar.orientation,
|
|
Quat.fromPitchYawRollDegrees(0, -90, 0));
|
|
entity = Entities.addEntity({
|
|
type: "Model",
|
|
position: position,
|
|
rotation: rotation,
|
|
dimensions: { x: 0.391,
|
|
y: 1.000,
|
|
z: 1.701 },
|
|
modelURL: modelURL
|
|
});
|
|
properties = Entities.getEntityProperties(entity);
|
|
|
|
audioOptions.position = position;
|
|
audioOptions.orientation = rotation;
|
|
injector = Audio.playSound(sound, audioOptions);
|
|
}
|
|
} else {
|
|
var newProperties = Entities.getEntityProperties(entity);
|
|
if (newProperties.type === "Model") {
|
|
if (newProperties.position != properties.position) {
|
|
audioOptions.position = newProperties.position;
|
|
}
|
|
if (newProperties.orientation != properties.orientation) {
|
|
audioOptions.orientation = newProperties.orientation;
|
|
}
|
|
|
|
properties = newProperties;
|
|
} else {
|
|
entity = null;
|
|
Script.update.disconnect(update);
|
|
Script.scriptEnding.connect(scriptEnding);
|
|
scriptEnding();
|
|
Script.stop();
|
|
}
|
|
}
|
|
}
|
|
|
|
function scriptEnding() {
|
|
if (entity != null) {
|
|
Entities.deleteEntity(entity);
|
|
}
|
|
}
|
|
|
|
Script.update.connect(update);
|
|
Script.scriptEnding.connect(scriptEnding);
|
|
|