content/hifi-public/ryan/demo/apt_sounds.js
Dale Glass 0d14e5a379 Initial data.
Needs a lot of cleanup. Data has been de-duplicated, and where identical copies existed, one of them
has been replaced with a symlink.

Some files have been excluded, such as binaries, installers and debug dumps. Some of that may still
be present.
2022-02-13 18:59:11 +01:00

56 lines
No EOL
1.4 KiB
JavaScript

//
// ambiance.js
// examples
//
// Created by Clément Brisset on 11/18/14.
// Updated by Ryan Huffman on 12/19/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 SOUND_URL = "http://hifi-public.s3.amazonaws.com/ryan/demo/Apartment-Sounds.wav";
var SOUND_POSITION = { x: 999, y: 100, z: 1018 };
var MINUTE = 60 * 1000;
var PLAY_SOUND_INTERVAL = 3 * MINUTE;
var audioOptions = {
position: SOUND_POSITION,
volume: .01,
loop: false,
};
var sound = SoundCache.getSound(SOUND_URL);
var injector = null;
function playSound() {
print("Playing sound");
if (injector) {
// try/catch in case the injector QObject has been deleted already
try {
injector.stop();
} catch (e) {
}
}
injector = Audio.playSound(sound, audioOptions);
}
function checkDownloaded() {
if (sound.downloaded) {
print("Sound downloaded.");
Script.clearInterval(checkDownloadedTimer);
Script.setInterval(playSound, PLAY_SOUND_INTERVAL);
playSound();
}
}
// Check once a second to see if the audio file has been downloaded
var checkDownloadedTimer = Script.setInterval(checkDownloaded, 1000);
Script.scriptEnding.connect(function() {
if (injector) {
injector.stop();
}
});