sound entities

This commit is contained in:
HifiExperiments 2024-03-24 13:31:16 -07:00
parent 325a694f38
commit 878774b5d3
33 changed files with 1249 additions and 10 deletions

View file

@ -816,6 +816,7 @@ void AudioMixer::parseSettingsObject(const QJsonObject& settingsObject) {
void AudioMixer::setupEntityQuery() {
_entityViewer.init();
EntityTreePointer entityTree = _entityViewer.getTree();
entityTree->setIsServer(true);
DependencyManager::registerInheritance<SpatialParentFinder, AssignmentParentFinder>();
DependencyManager::set<AssignmentParentFinder>(entityTree);

View file

@ -1081,6 +1081,7 @@ void AvatarMixer::parseDomainServerSettings(const QJsonObject& domainSettings) {
void AvatarMixer::setupEntityQuery() {
_entityViewer.init();
EntityTreePointer entityTree = _entityViewer.getTree();
entityTree->setIsServer(true);
DependencyManager::registerInheritance<SpatialParentFinder, AssignmentParentFinder>();
DependencyManager::set<AssignmentParentFinder>(entityTree);

View file

@ -16,9 +16,11 @@
#include <QJsonArray>
#include <QJsonDocument>
#include <AudioInjectorManager.h>
#include <EntityTree.h>
#include <ResourceCache.h>
#include <ScriptCache.h>
#include <SoundCache.h>
#include <plugins/PluginManager.h>
#include <EntityEditFilters.h>
#include <NetworkingConstants.h>
@ -49,6 +51,9 @@ EntityServer::EntityServer(ReceivedMessage& message) :
DependencyManager::set<ModelFormatRegistry>(); // ModelFormatRegistry must be defined before ModelCache. See the ModelCache ctor
DependencyManager::set<ModelCache>();
DependencyManager::set<SoundCache>();
DependencyManager::set<AudioInjectorManager>();
auto& packetReceiver = DependencyManager::get<NodeList>()->getPacketReceiver();
packetReceiver.registerListenerForTypes({ PacketType::EntityAdd,
PacketType::EntityClone,
@ -71,6 +76,8 @@ EntityServer::~EntityServer() {
void EntityServer::aboutToFinish() {
DependencyManager::get<ResourceManager>()->cleanup();
DependencyManager::destroy<AudioInjectorManager>();
DependencyManager::destroy<SoundCache>();
DependencyManager::destroy<AssignmentDynamicFactory>();
OctreeServer::aboutToFinish();
@ -90,6 +97,7 @@ OctreePointer EntityServer::createTree() {
EntityTreePointer tree = std::make_shared<EntityTree>(true);
tree->createRootElement();
tree->addNewlyCreatedHook(this);
tree->setIsEntityServer(true);
if (!_entitySimulation) {
SimpleEntitySimulationPointer simpleSimulation { new SimpleEntitySimulation() };
simpleSimulation->setEntityTree(tree);

View file

@ -313,6 +313,7 @@ void EntityScriptServer::run() {
entityScriptingInterface->setEntityTree(_entityViewer.getTree());
auto treePtr = _entityViewer.getTree();
treePtr->setIsServer(true);
DependencyManager::set<AssignmentParentFinder>(treePtr);
if (!_entitySimulation) {

View file

@ -132,9 +132,11 @@ void AudioInjector::restart() {
bool AudioInjector::inject(bool(AudioInjectorManager::*injection)(const AudioInjectorPointer&)) {
AudioInjectorOptions options;
uint32_t numBytes;
withWriteLock([&] {
_state = AudioInjectorState::NotFinished;
options = _options;
numBytes = _audioData->getNumBytes();
});
int byteOffset = 0;
@ -142,6 +144,7 @@ bool AudioInjector::inject(bool(AudioInjectorManager::*injection)(const AudioInj
int numChannels = options.ambisonic ? 4 : (options.stereo ? 2 : 1);
byteOffset = (int)(AudioConstants::SAMPLE_RATE * options.secondOffset * numChannels);
byteOffset *= AudioConstants::SAMPLE_SIZE;
byteOffset = byteOffset % numBytes;
}
_currentSendOffset = byteOffset;

View file

@ -12,7 +12,7 @@ include_hifi_library_headers(image)
include_hifi_library_headers(ktx)
include_hifi_library_headers(material-networking)
include_hifi_library_headers(procedural)
link_hifi_libraries(shared shaders networking octree avatars graphics model-networking script-engine)
link_hifi_libraries(audio shared shaders networking octree avatars graphics model-networking script-engine)
if (WIN32)
add_compile_definitions(_USE_MATH_DEFINES)

View file

@ -690,6 +690,16 @@ EntityPropertyFlags EntityItemProperties::getChangedProperties() const {
CHECK_PROPERTY_CHANGE(PROP_GIZMO_TYPE, gizmoType);
changedProperties += _ring.getChangedProperties();
// Sound
CHECK_PROPERTY_CHANGE(PROP_SOUND_URL, soundURL);
CHECK_PROPERTY_CHANGE(PROP_SOUND_VOLUME, volume);
CHECK_PROPERTY_CHANGE(PROP_SOUND_TIME_OFFSET, timeOffset);
CHECK_PROPERTY_CHANGE(PROP_SOUND_PITCH, pitch);
CHECK_PROPERTY_CHANGE(PROP_SOUND_PLAYING, playing);
CHECK_PROPERTY_CHANGE(PROP_SOUND_LOOP, loop);
CHECK_PROPERTY_CHANGE(PROP_SOUND_POSITIONAL, positional);
CHECK_PROPERTY_CHANGE(PROP_SOUND_LOCAL_ONLY, localOnly);
return changedProperties;
}
@ -883,6 +893,7 @@ EntityPropertyFlags EntityItemProperties::getChangedProperties() const {
* @see {@link Entities.EntityProperties-PolyLine|EntityProperties-PolyLine}
* @see {@link Entities.EntityProperties-PolyVox|EntityProperties-PolyVox}
* @see {@link Entities.EntityProperties-Shape|EntityProperties-Shape}
* @see {@link Entities.EntityProperties-Sound|EntityProperties-Sound}
* @see {@link Entities.EntityProperties-Sphere|EntityProperties-Sphere}
* @see {@link Entities.EntityProperties-Text|EntityProperties-Text}
* @see {@link Entities.EntityProperties-Web|EntityProperties-Web}
@ -1340,6 +1351,34 @@ EntityPropertyFlags EntityItemProperties::getChangedProperties() const {
* });
*/
/*@jsdoc
* The <code>"Sound"</code> {@link Entities.EntityType|EntityType} plays a sound from a URL. It has properties in addition to
* the common {@link Entities.EntityProperties|EntityProperties}.
*
* @typedef {object} Entities.EntityProperties-Sound
* @property {string} soundURL="" - The URL of the sound to play, as a wav, mp3, or raw file. Supports stereo and ambisonic.
* @property {boolean} playing=true - Whether or not the sound should play.
* @property {number} volume=1.0 - The volume of the sound, from <code>0</code> to <code>1</code>.
* @property {number} pitch=1.0 - The relative sample rate at which to resample the sound, within +/- 2 octaves.
* @property {number} timeOffset=0.0 - The time (in seconds) at which to start playback within the sound file. If looping,
* this only affects the first loop.
* @property {boolean} loop=true - Whether or not to loop the sound.
* @property {boolean} positional=true - Whether or not the volume of the sound should decay with distance.
* @property {boolean} localOnly=false - Whether or not the sound should play locally for everyone (unsynced), or synchronously
* for everyone via the Entity Mixer.
* @example <caption>Create a Sound entity.</caption>
* var entity = Entities.addEntity({
* type: "Sound",
* soundURL: "https://themushroomkingdom.net/sounds/wav/lm/lm_gold_mouse.wav",
* positional: true,
* volume: 0.75,
* localOnly: true,
* position: Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0.75, z: -4 })),
* rotation: MyAvatar.orientation,
* lifetime: 300 // Delete after 5 minutes.
* });
*/
/*@jsdoc
* The <code>"Sphere"</code> {@link Entities.EntityType|EntityType} is the same as the <code>"Shape"</code>
* {@link Entities.EntityType|EntityType} except that its <code>shape</code> value is always set to <code>"Sphere"</code>
@ -1961,6 +2000,18 @@ ScriptValue EntityItemProperties::copyToScriptValue(ScriptEngine* engine, bool s
_ring.copyToScriptValue(_desiredProperties, properties, engine, skipDefaults, defaultEntityProperties);
}
// Sound only
if (_type == EntityTypes::Sound) {
COPY_PROPERTY_TO_QSCRIPTVALUE(PROP_SOUND_URL, soundURL);
COPY_PROPERTY_TO_QSCRIPTVALUE(PROP_SOUND_VOLUME, volume);
COPY_PROPERTY_TO_QSCRIPTVALUE(PROP_SOUND_TIME_OFFSET, timeOffset);
COPY_PROPERTY_TO_QSCRIPTVALUE(PROP_SOUND_PITCH, pitch);
COPY_PROPERTY_TO_QSCRIPTVALUE(PROP_SOUND_PLAYING, playing);
COPY_PROPERTY_TO_QSCRIPTVALUE(PROP_SOUND_LOOP, loop);
COPY_PROPERTY_TO_QSCRIPTVALUE(PROP_SOUND_POSITIONAL, positional);
COPY_PROPERTY_TO_QSCRIPTVALUE(PROP_SOUND_LOCAL_ONLY, localOnly);
}
/*@jsdoc
* The axis-aligned bounding box of an entity.
* @typedef {object} Entities.BoundingBox
@ -2292,6 +2343,16 @@ void EntityItemProperties::copyFromScriptValue(const ScriptValue& object, bool h
COPY_PROPERTY_FROM_QSCRIPTVALUE_ENUM(gizmoType, GizmoType);
_ring.copyFromScriptValue(object, namesSet, _defaultSettings);
// Sound
COPY_PROPERTY_FROM_QSCRIPTVALUE(soundURL, QString, setSoundURL);
COPY_PROPERTY_FROM_QSCRIPTVALUE(volume, float, setVolume);
COPY_PROPERTY_FROM_QSCRIPTVALUE(timeOffset, float, setTimeOffset);
COPY_PROPERTY_FROM_QSCRIPTVALUE(pitch, float, setPitch);
COPY_PROPERTY_FROM_QSCRIPTVALUE(playing, bool, setPlaying);
COPY_PROPERTY_FROM_QSCRIPTVALUE(loop, bool, setLoop);
COPY_PROPERTY_FROM_QSCRIPTVALUE(positional, bool, setPositional);
COPY_PROPERTY_FROM_QSCRIPTVALUE(localOnly, bool, setLocalOnly);
// Handle conversions from old 'textures' property to "imageURL"
if (namesSet.contains("textures")) {
ScriptValue V = object.property("textures");
@ -2578,6 +2639,16 @@ void EntityItemProperties::merge(const EntityItemProperties& other) {
COPY_PROPERTY_IF_CHANGED(gizmoType);
_ring.merge(other._ring);
// Sound
COPY_PROPERTY_IF_CHANGED(soundURL);
COPY_PROPERTY_IF_CHANGED(volume);
COPY_PROPERTY_IF_CHANGED(timeOffset);
COPY_PROPERTY_IF_CHANGED(pitch);
COPY_PROPERTY_IF_CHANGED(playing);
COPY_PROPERTY_IF_CHANGED(loop);
COPY_PROPERTY_IF_CHANGED(positional);
COPY_PROPERTY_IF_CHANGED(localOnly);
_lastEdited = usecTimestampNow();
}
@ -3002,6 +3073,16 @@ bool EntityItemProperties::getPropertyInfo(const QString& propertyName, EntityPr
ADD_GROUP_PROPERTY_TO_MAP(PROP_MAJOR_TICK_MARKS_COLOR, Ring, ring, MajorTickMarksColor, majorTickMarksColor);
ADD_GROUP_PROPERTY_TO_MAP(PROP_MINOR_TICK_MARKS_COLOR, Ring, ring, MinorTickMarksColor, minorTickMarksColor);
}
// Sound
ADD_PROPERTY_TO_MAP(PROP_SOUND_URL, SoundURL, soundURL, QString);
ADD_PROPERTY_TO_MAP_WITH_RANGE(PROP_SOUND_VOLUME, Volume, volume, float, 0.0f, 1.0f);
ADD_PROPERTY_TO_MAP(PROP_SOUND_TIME_OFFSET, TimeOffset, timeOffset, float);
ADD_PROPERTY_TO_MAP_WITH_RANGE(PROP_SOUND_PITCH, Pitch, pitch, float, 1.0f / 16.0f, 16.0f);
ADD_PROPERTY_TO_MAP(PROP_SOUND_PLAYING, Playing, playing, bool);
ADD_PROPERTY_TO_MAP(PROP_SOUND_LOOP, Loop, loop, bool);
ADD_PROPERTY_TO_MAP(PROP_SOUND_POSITIONAL, Positional, positional, bool);
ADD_PROPERTY_TO_MAP(PROP_SOUND_LOCAL_ONLY, LocalOnly, localOnly, bool);
});
auto iter = _propertyInfos.find(propertyName);
@ -3449,6 +3530,17 @@ OctreeElement::AppendState EntityItemProperties::encodeEntityEditPacket(PacketTy
_staticRing.appendToEditPacket(packetData, requestedProperties, propertyFlags,
propertiesDidntFit, propertyCount, appendState);
}
if (properties.getType() == EntityTypes::Sound) {
APPEND_ENTITY_PROPERTY(PROP_SOUND_URL, properties.getSoundURL());
APPEND_ENTITY_PROPERTY(PROP_SOUND_VOLUME, properties.getVolume());
APPEND_ENTITY_PROPERTY(PROP_SOUND_TIME_OFFSET, properties.getTimeOffset());
APPEND_ENTITY_PROPERTY(PROP_SOUND_PITCH, properties.getPitch());
APPEND_ENTITY_PROPERTY(PROP_SOUND_PLAYING, properties.getPlaying());
APPEND_ENTITY_PROPERTY(PROP_SOUND_LOOP, properties.getLoop());
APPEND_ENTITY_PROPERTY(PROP_SOUND_POSITIONAL, properties.getPositional());
APPEND_ENTITY_PROPERTY(PROP_SOUND_LOCAL_ONLY, properties.getLocalOnly());
}
}
if (propertyCount > 0) {
@ -3911,6 +4003,17 @@ bool EntityItemProperties::decodeEntityEditPacket(const unsigned char* data, int
properties.getRing().decodeFromEditPacket(propertyFlags, dataAt, processedBytes);
}
if (properties.getType() == EntityTypes::Sound) {
READ_ENTITY_PROPERTY_TO_PROPERTIES(PROP_SOUND_URL, QString, setSoundURL);
READ_ENTITY_PROPERTY_TO_PROPERTIES(PROP_SOUND_VOLUME, float, setVolume);
READ_ENTITY_PROPERTY_TO_PROPERTIES(PROP_SOUND_TIME_OFFSET, float, setTimeOffset);
READ_ENTITY_PROPERTY_TO_PROPERTIES(PROP_SOUND_PITCH, float, setPitch);
READ_ENTITY_PROPERTY_TO_PROPERTIES(PROP_SOUND_PLAYING, bool, setPlaying);
READ_ENTITY_PROPERTY_TO_PROPERTIES(PROP_SOUND_LOOP, bool, setLoop);
READ_ENTITY_PROPERTY_TO_PROPERTIES(PROP_SOUND_POSITIONAL, bool, setPositional);
READ_ENTITY_PROPERTY_TO_PROPERTIES(PROP_SOUND_LOCAL_ONLY, bool, setLocalOnly);
}
return valid;
}
@ -4240,6 +4343,16 @@ void EntityItemProperties::markAllChanged() {
// Gizmo
_gizmoTypeChanged = true;
_ring.markAllChanged();
// Sound
_soundURLChanged = true;
_volumeChanged = true;
_timeOffsetChanged = true;
_pitchChanged = true;
_playingChanged = true;
_loopChanged = true;
_positionalChanged = true;
_localOnlyChanged = true;
}
// The minimum bounding box for the entity.
@ -4945,6 +5058,32 @@ QList<QString> EntityItemProperties::listChangedProperties() {
}
getRing().listChangedProperties(out);
// Sound
if (soundURLChanged()) {
out += "soundURL";
}
if (volumeChanged()) {
out += "volume";
}
if (timeOffsetChanged()) {
out += "timeOffset";
}
if (pitchChanged()) {
out += "pitch";
}
if (playingChanged()) {
out += "playing";
}
if (loopChanged()) {
out += "loop";
}
if (positionalChanged()) {
out += "positional";
}
if (localOnlyChanged()) {
out += "localOnly";
}
return out;
}

View file

@ -52,6 +52,7 @@
#include "PolyVoxEntityItem.h"
#include "GridEntityItem.h"
#include "GizmoEntityItem.h"
#include "SoundEntityItem.h"
#include "LightEntityItem.h"
#include "ZoneEntityItem.h"
@ -124,6 +125,8 @@ class EntityItemProperties {
friend class LightEntityItem;
friend class ZoneEntityItem;
friend class MaterialEntityItem;
friend class SoundEntityItem;
public:
static bool blobToProperties(ScriptEngine& scriptEngine, const QByteArray& blob, EntityItemProperties& properties);
static void propertiesToBlob(ScriptEngine& scriptEngine, const QUuid& myAvatarID, const EntityItemProperties& properties,
@ -407,6 +410,16 @@ public:
DEFINE_PROPERTY_REF_ENUM(PROP_GIZMO_TYPE, GizmoType, gizmoType, GizmoType, GizmoType::RING);
DEFINE_PROPERTY_GROUP(Ring, ring, RingGizmoPropertyGroup);
// Sound
DEFINE_PROPERTY_REF(PROP_SOUND_URL, SoundURL, soundURL, QString, "");
DEFINE_PROPERTY(PROP_SOUND_VOLUME, Volume, volume, float, 1.0f);
DEFINE_PROPERTY(PROP_SOUND_TIME_OFFSET, TimeOffset, timeOffset, float, 0.0f);
DEFINE_PROPERTY(PROP_SOUND_PITCH, Pitch, pitch, float, 1.0f);
DEFINE_PROPERTY(PROP_SOUND_PLAYING, Playing, playing, bool, true);
DEFINE_PROPERTY(PROP_SOUND_LOOP, Loop, loop, bool, true);
DEFINE_PROPERTY(PROP_SOUND_POSITIONAL, Positional, positional, bool, true);
DEFINE_PROPERTY(PROP_SOUND_LOCAL_ONLY, LocalOnly, localOnly, bool, false);
static QString getComponentModeAsString(uint32_t mode);
public:

View file

@ -394,6 +394,16 @@ enum EntityPropertyList {
PROP_MAJOR_TICK_MARKS_COLOR = PROP_DERIVED_17,
PROP_MINOR_TICK_MARKS_COLOR = PROP_DERIVED_18,
// Sound
PROP_SOUND_URL = PROP_DERIVED_0,
PROP_SOUND_VOLUME = PROP_DERIVED_1,
PROP_SOUND_TIME_OFFSET = PROP_DERIVED_2,
PROP_SOUND_PITCH = PROP_DERIVED_3,
PROP_SOUND_PLAYING = PROP_DERIVED_4,
PROP_SOUND_POSITIONAL = PROP_DERIVED_5,
PROP_SOUND_LOOP = PROP_DERIVED_6,
PROP_SOUND_LOCAL_ONLY = PROP_DERIVED_7,
// WARNING!!! DO NOT ADD PROPS_xxx here unless you really really meant to.... Add them UP above
};

View file

@ -1871,6 +1871,7 @@ bool EntityScriptingInterface::setAllPoints(const QUuid& entityID, const QVector
EntityItemPointer entity = static_cast<EntityItemPointer>(_entityTree->findEntityByEntityItemID(entityID));
if (!entity) {
qCDebug(entities) << "EntityScriptingInterface::setPoints no entity with ID" << entityID;
return false;
}
EntityTypes::EntityType entityType = entity->getType();
@ -1907,6 +1908,31 @@ bool EntityScriptingInterface::appendPoint(const QUuid& entityID, const glm::vec
return false;
}
bool EntityScriptingInterface::restartSound(const QUuid& entityID) {
PROFILE_RANGE(script_entities, __FUNCTION__);
EntityItemPointer entity = static_cast<EntityItemPointer>(_entityTree->findEntityByEntityItemID(entityID));
if (!entity) {
qCDebug(entities) << "EntityScriptingInterface::restartSound no entity with ID" << entityID;
// There is no entity
return false;
}
EntityTypes::EntityType entityType = entity->getType();
if (entityType == EntityTypes::Sound) {
auto soundEntity = std::dynamic_pointer_cast<SoundEntityItem>(entity);
bool isPlaying = soundEntity->getPlaying();
if (isPlaying) {
soundEntity->withWriteLock([&] {
soundEntity->restartSound();
});
}
return isPlaying;
}
return false;
}
bool EntityScriptingInterface::actionWorker(const QUuid& entityID,
std::function<bool(EntitySimulationPointer, EntityItemPointer)> actor) {

View file

@ -1237,6 +1237,27 @@ public slots:
*/
Q_INVOKABLE bool appendPoint(const QUuid& entityID, const glm::vec3& point);
/*@jsdoc
* Restart a {@link Entities.EntityProperties-Sound|Sound} entity, locally only. It must also be <code>localOnly</code>.
* @function Entities.restartSound
* @param {Uuid} entityID - The ID of the {@link Entities.EntityProperties-Sound|Sound} entity.
* @example <caption>Play a sound once and repeat it every 3 seconds.</caption>
* var position = Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0.5, z: -8 }));
* var sound = Entities.addEntity({
* type: "Sound",
* position: position,
* soundURL: "https://themushroomkingdom.net/sounds/wav/lm/lm_gold_mouse.wav",
* positional: false,
* localOnly: true,
* loop: false,
* lifetime: 300 // Delete after 5 minutes.
* });
* Script.setInterval(() => {
* Entities.restartSound(sound);
* }, 3000);
*/
Q_INVOKABLE bool restartSound(const QUuid& entityID);
/*@jsdoc
* Dumps debug information about all entities in Interface's local in-memory tree of entities it knows about to the program
* log.

View file

@ -257,6 +257,9 @@ public:
void setIsServerlessMode(bool value) { _serverlessDomain = value; }
bool isServerlessMode() const { return _serverlessDomain; }
void setIsEntityServer(bool value) { _entityServer = value; }
bool isEntityServer() const { return _entityServer; }
static void setGetEntityObjectOperator(std::function<QObject*(const QUuid&)> getEntityObjectOperator) { _getEntityObjectOperator = getEntityObjectOperator; }
static QObject* getEntityObject(const QUuid& id);
@ -380,6 +383,7 @@ private:
std::vector<int32_t> _staleProxies;
bool _serverlessDomain { false };
bool _entityServer { false };
std::map<QString, QString> _namedPaths;

View file

@ -257,8 +257,8 @@ EntityItemID EntityTreeElement::evalDetailedRayIntersection(const glm::vec3& ori
}
} else {
// if the entity type doesn't support a detailed intersection, then just return the non-AABox results
// Never intersect with particle entities
if (localDistance < distance && entity->getType() != EntityTypes::ParticleEffect) {
// Never intersect with particle or sound entities
if (localDistance < distance && (entity->getType() != EntityTypes::ParticleEffect && entity->getType() != EntityTypes::Sound)) {
distance = localDistance;
face = localFace;
surfaceNormal = glm::vec3(rotation * glm::vec4(localSurfaceNormal, 0.0f));
@ -409,8 +409,8 @@ EntityItemID EntityTreeElement::evalDetailedParabolaIntersection(const glm::vec3
}
} else {
// if the entity type doesn't support a detailed intersection, then just return the non-AABox results
// Never intersect with particle entities
if (localDistance < parabolicDistance && entity->getType() != EntityTypes::ParticleEffect) {
// Never intersect with particle or sound entities
if (localDistance < parabolicDistance && (entity->getType() != EntityTypes::ParticleEffect && entity->getType() != EntityTypes::Sound)) {
parabolicDistance = localDistance;
face = localFace;
surfaceNormal = glm::vec3(rotation * glm::vec4(localSurfaceNormal, 0.0f));

View file

@ -34,6 +34,7 @@
#include "LightEntityItem.h"
#include "ZoneEntityItem.h"
#include "MaterialEntityItem.h"
#include "SoundEntityItem.h"
QMap<EntityTypes::EntityType, QString> EntityTypes::_typeToNameMap;
QMap<QString, EntityTypes::EntityType> EntityTypes::_nameToTypeMap;
@ -59,6 +60,7 @@ REGISTER_ENTITY_TYPE(Gizmo)
REGISTER_ENTITY_TYPE(Light)
REGISTER_ENTITY_TYPE(Zone)
REGISTER_ENTITY_TYPE(Material)
REGISTER_ENTITY_TYPE(Sound)
bool EntityTypes::typeIsValid(EntityType type) {
return type > EntityType::Unknown && type <= EntityType::NUM_TYPES;

View file

@ -86,6 +86,8 @@ public:
* <td>{@link Entities.EntityProperties-Zone|EntityProperties-Zone}</td></tr>
* <tr><td><code>"Material"</code></td><td>Modifies the existing materials on entities and avatars.</td>
* <td>{@link Entities.EntityProperties-Material|EntityProperties-Material}</td></tr>
* <tr><td><code>"Sound"</code></td><td>Plays a sound.</td>
* <td>{@link Entities.EntityProperties-Material|EntityProperties-Sound}</td></tr>
* </tbody>
* </table>
* @typedef {string} Entities.EntityType
@ -108,6 +110,7 @@ public:
Light,
Zone,
Material,
Sound,
NUM_TYPES
} EntityType;

View file

@ -0,0 +1,371 @@
//
// Created by HifiExperiments on 12/30/2023
// Copyright 2023 Overte e.V.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#include "SoundEntityItem.h"
#include <QtCore/QDebug>
#include "EntitiesLogging.h"
#include "EntityItemProperties.h"
#include "EntityTree.h"
#include "EntityTreeElement.h"
EntityItemPointer SoundEntityItem::factory(const EntityItemID& entityID, const EntityItemProperties& properties) {
std::shared_ptr<SoundEntityItem> entity(new SoundEntityItem(entityID), [](SoundEntityItem* ptr) { ptr->deleteLater(); });
entity->setProperties(properties);
return entity;
}
// our non-pure virtual subclass for now...
SoundEntityItem::SoundEntityItem(const EntityItemID& entityItemID) : EntityItem(entityItemID) {
_type = EntityTypes::Sound;
}
SoundEntityItem::~SoundEntityItem() {
auto manager = DependencyManager::get<AudioInjectorManager>();
if (manager && _injector) {
manager->stop(_injector);
}
}
EntityItemProperties SoundEntityItem::getProperties(const EntityPropertyFlags& desiredProperties, bool allowEmptyDesiredProperties) const {
EntityItemProperties properties = EntityItem::getProperties(desiredProperties, allowEmptyDesiredProperties); // get the properties from our base class
COPY_ENTITY_PROPERTY_TO_PROPERTIES(soundURL, getURL);
COPY_ENTITY_PROPERTY_TO_PROPERTIES(volume, getVolume);
COPY_ENTITY_PROPERTY_TO_PROPERTIES(timeOffset, getTimeOffset);
COPY_ENTITY_PROPERTY_TO_PROPERTIES(pitch, getPitch);
COPY_ENTITY_PROPERTY_TO_PROPERTIES(playing, getPlaying);
COPY_ENTITY_PROPERTY_TO_PROPERTIES(loop, getLoop);
COPY_ENTITY_PROPERTY_TO_PROPERTIES(positional, getPositional);
COPY_ENTITY_PROPERTY_TO_PROPERTIES(localOnly, getLocalOnly);
return properties;
}
bool SoundEntityItem::setSubClassProperties(const EntityItemProperties& properties) {
bool somethingChanged = false;
SET_ENTITY_PROPERTY_FROM_PROPERTIES(soundURL, setURL);
SET_ENTITY_PROPERTY_FROM_PROPERTIES(volume, setVolume);
SET_ENTITY_PROPERTY_FROM_PROPERTIES(timeOffset, setTimeOffset);
SET_ENTITY_PROPERTY_FROM_PROPERTIES(pitch, setPitch);
SET_ENTITY_PROPERTY_FROM_PROPERTIES(playing, setPlaying);
SET_ENTITY_PROPERTY_FROM_PROPERTIES(loop, setLoop);
SET_ENTITY_PROPERTY_FROM_PROPERTIES(positional, setPositional);
SET_ENTITY_PROPERTY_FROM_PROPERTIES(localOnly, setLocalOnly);
return somethingChanged;
}
int SoundEntityItem::readEntitySubclassDataFromBuffer(const unsigned char* data, int bytesLeftToRead,
ReadBitstreamToTreeParams& args,
EntityPropertyFlags& propertyFlags, bool overwriteLocalData,
bool& somethingChanged) {
int bytesRead = 0;
const unsigned char* dataAt = data;
READ_ENTITY_PROPERTY(PROP_SOUND_URL, QString, setURL);
READ_ENTITY_PROPERTY(PROP_SOUND_VOLUME, float, setVolume);
READ_ENTITY_PROPERTY(PROP_SOUND_TIME_OFFSET, float, setTimeOffset);
READ_ENTITY_PROPERTY(PROP_SOUND_PITCH, float, setPitch);
READ_ENTITY_PROPERTY(PROP_SOUND_PLAYING, bool, setPlaying);
READ_ENTITY_PROPERTY(PROP_SOUND_LOOP, bool, setLoop);
READ_ENTITY_PROPERTY(PROP_SOUND_POSITIONAL, bool, setPositional);
READ_ENTITY_PROPERTY(PROP_SOUND_LOCAL_ONLY, bool, setLocalOnly);
return bytesRead;
}
EntityPropertyFlags SoundEntityItem::getEntityProperties(EncodeBitstreamParams& params) const {
EntityPropertyFlags requestedProperties = EntityItem::getEntityProperties(params);
requestedProperties += PROP_SOUND_URL;
requestedProperties += PROP_SOUND_VOLUME;
requestedProperties += PROP_SOUND_TIME_OFFSET;
requestedProperties += PROP_SOUND_PITCH;
requestedProperties += PROP_SOUND_PLAYING;
requestedProperties += PROP_SOUND_LOOP;
requestedProperties += PROP_SOUND_POSITIONAL;
requestedProperties += PROP_SOUND_LOCAL_ONLY;
return requestedProperties;
}
void SoundEntityItem::appendSubclassData(OctreePacketData* packetData, EncodeBitstreamParams& params,
EntityTreeElementExtraEncodeDataPointer entityTreeElementExtraEncodeData,
EntityPropertyFlags& requestedProperties,
EntityPropertyFlags& propertyFlags,
EntityPropertyFlags& propertiesDidntFit,
int& propertyCount,
OctreeElement::AppendState& appendState) const {
bool successPropertyFits = true;
APPEND_ENTITY_PROPERTY(PROP_SOUND_URL, getURL());
APPEND_ENTITY_PROPERTY(PROP_SOUND_VOLUME, getVolume());
APPEND_ENTITY_PROPERTY(PROP_SOUND_TIME_OFFSET, getTimeOffset());
APPEND_ENTITY_PROPERTY(PROP_SOUND_PITCH, getPitch());
APPEND_ENTITY_PROPERTY(PROP_SOUND_PLAYING, getPlaying());
APPEND_ENTITY_PROPERTY(PROP_SOUND_LOOP, getLoop());
APPEND_ENTITY_PROPERTY(PROP_SOUND_POSITIONAL, getPositional());
APPEND_ENTITY_PROPERTY(PROP_SOUND_LOCAL_ONLY, getLocalOnly());
}
void SoundEntityItem::debugDump() const {
quint64 now = usecTimestampNow();
qCDebug(entities) << "SOUND EntityItem id:" << getEntityItemID() << "---------------------------------------------";
qCDebug(entities) << " name:" << _name;
qCDebug(entities) << " url:" << _url;
qCDebug(entities) << " position:" << debugTreeVector(getWorldPosition());
qCDebug(entities) << " dimensions:" << debugTreeVector(getScaledDimensions());
qCDebug(entities) << " getLastEdited:" << debugTime(getLastEdited(), now);
qCDebug(entities) << "SOUND EntityItem Ptr:" << this;
}
void SoundEntityItem::update(const quint64& now) {
withWriteLock([&] {
const auto tree = getTree();
if (tree) {
_updateNeeded = false;
if ((_localOnly && tree->getIsClient()) || (!_localOnly && (tree->isEntityServer() || tree->isServerlessMode()))) {
_sound = DependencyManager::get<SoundCache>()->getSound(_url);
}
if (_sound) {
if (_sound->isLoaded()) {
updateSound(true);
} else {
connect(_sound.data(), &Resource::finished, this, [&] { updateSound(true); });
}
}
}
});
}
void SoundEntityItem::setLocalPosition(const glm::vec3& value, bool tellPhysics) {
EntityItem::setLocalPosition(value, tellPhysics);
withWriteLock([&] {
updateSound();
});
}
void SoundEntityItem::setLocalOrientation(const glm::quat& value) {
EntityItem::setLocalOrientation(value);
withWriteLock([&] {
updateSound();
});
}
void SoundEntityItem::setURL(const QString& value) {
withWriteLock([&] {
if (value != _url) {
_url = value;
const auto tree = getTree();
if (!tree) {
_updateNeeded = true;
return;
}
if ((_localOnly && tree->getIsClient()) || (!_localOnly && (tree->isEntityServer() || tree->isServerlessMode()))) {
_sound = DependencyManager::get<SoundCache>()->getSound(_url);
}
if (_sound) {
if (_sound->isLoaded()) {
updateSound(true);
} else {
connect(_sound.data(), &Resource::finished, this, [&] { updateSound(true); });
}
}
}
});
}
QString SoundEntityItem::getURL() const {
return resultWithReadLock<QString>([&] {
return _url;
});
}
void SoundEntityItem::setVolume(float value) {
withWriteLock([&] {
if (value != _volume) {
_volume = value;
updateSound();
}
});
}
float SoundEntityItem::getVolume() const {
return resultWithReadLock<float>([&] {
return _volume;
});
}
void SoundEntityItem::setTimeOffset(float value) {
withWriteLock([&] {
if (value != _timeOffset) {
_timeOffset = value;
updateSound(true);
}
});
}
float SoundEntityItem::getTimeOffset() const {
return resultWithReadLock<float>([&] {
return _timeOffset;
});
}
void SoundEntityItem::setPitch(float value) {
withWriteLock([&] {
if (value != _pitch) {
_pitch = value;
updateSound(true);
}
});
}
float SoundEntityItem::getPitch() const {
return resultWithReadLock<float>([&] {
return _pitch;
});
}
void SoundEntityItem::setPlaying(bool value) {
withWriteLock([&] {
if (value != _playing) {
_playing = value;
updateSound();
}
});
}
bool SoundEntityItem::getPlaying() const {
return resultWithReadLock<float>([&] {
return _playing;
});
}
void SoundEntityItem::setLoop(bool value) {
withWriteLock([&] {
if (value != _loop) {
_loop = value;
updateSound(true);
}
});
}
bool SoundEntityItem::getLoop() const {
return resultWithReadLock<float>([&] {
return _loop;
});
}
void SoundEntityItem::setPositional(bool value) {
withWriteLock([&] {
if (value != _positional) {
_positional = value;
updateSound();
}
});
}
bool SoundEntityItem::getPositional() const {
return resultWithReadLock<float>([&] {
return _positional;
});
}
void SoundEntityItem::setLocalOnly(bool value) {
withWriteLock([&] {
if (value != _localOnly) {
_localOnly = value;
const auto tree = getTree();
if (!tree) {
_updateNeeded = true;
return;
}
if ((_localOnly && tree->getIsClient()) || (!_localOnly && (tree->isEntityServer() || tree->isServerlessMode()))) {
_sound = DependencyManager::get<SoundCache>()->getSound(_url);
} else {
_sound = nullptr;
if (_injector) {
DependencyManager::get<AudioInjectorManager>()->stop(_injector);
}
_injector = nullptr;
}
if (_sound) {
if (_sound->isLoaded()) {
updateSound(true);
} else {
connect(_sound.data(), &Resource::finished, this, [&] { updateSound(true); });
}
}
}
});
}
bool SoundEntityItem::getLocalOnly() const {
return resultWithReadLock<float>([&] {
return _localOnly;
});
}
bool SoundEntityItem::restartSound() {
if (!_sound) {
return false;
}
AudioInjectorOptions options;
options.position = getWorldPosition();
options.positionSet = _positional;
options.volume = _volume;
options.loop = _loop;
options.orientation = getWorldOrientation();
options.localOnly = _localOnly;
options.secondOffset = _timeOffset;
options.pitch = _pitch;
if (_injector) {
DependencyManager::get<AudioInjectorManager>()->setOptionsAndRestart(_injector, options);
} else {
_injector = DependencyManager::get<AudioInjectorManager>()->playSound(_sound, options);
}
return true;
}
void SoundEntityItem::updateSound(bool restart) {
if (!_sound) {
return;
}
if (restart) {
if (_injector) {
DependencyManager::get<AudioInjectorManager>()->stop(_injector);
}
_injector = nullptr;
}
if (_playing) {
restartSound();
} else {
if (_injector) {
DependencyManager::get<AudioInjectorManager>()->stop(_injector);
}
}
}

View file

@ -0,0 +1,100 @@
//
// Created by HifiExperiments on 12/30/2023
// Copyright 2023 Overte e.V.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#ifndef hifi_SoundEntityItem_h
#define hifi_SoundEntityItem_h
#include "EntityItem.h"
#include <SoundCache.h>
#include <AudioInjectorManager.h>
class SoundEntityItem : public EntityItem {
public:
static EntityItemPointer factory(const EntityItemID& entityID, const EntityItemProperties& properties);
SoundEntityItem(const EntityItemID& entityItemID);
~SoundEntityItem();
ALLOW_INSTANTIATION // This class can be instantiated
// methods for getting/setting all properties of an entity
EntityItemProperties getProperties(const EntityPropertyFlags& desiredProperties, bool allowEmptyDesiredProperties) const override;
bool setSubClassProperties(const EntityItemProperties& properties) override;
EntityPropertyFlags getEntityProperties(EncodeBitstreamParams& params) const override;
void appendSubclassData(OctreePacketData* packetData, EncodeBitstreamParams& params,
EntityTreeElementExtraEncodeDataPointer entityTreeElementExtraEncodeData,
EntityPropertyFlags& requestedProperties,
EntityPropertyFlags& propertyFlags,
EntityPropertyFlags& propertiesDidntFit,
int& propertyCount,
OctreeElement::AppendState& appendState) const override;
int readEntitySubclassDataFromBuffer(const unsigned char* data, int bytesLeftToRead,
ReadBitstreamToTreeParams& args,
EntityPropertyFlags& propertyFlags, bool overwriteLocalData,
bool& somethingChanged) override;
bool shouldBePhysical() const override { return false; }
virtual void debugDump() const override;
virtual bool supportsDetailedIntersection() const override { return false; }
virtual void update(const quint64& now) override;
bool needsToCallUpdate() const override { return _updateNeeded; }
void setLocalPosition(const glm::vec3& value, bool tellPhysics = true) override;
void setLocalOrientation(const glm::quat& value) override;
void setURL(const QString& value);
QString getURL() const;
void setVolume(float value);
float getVolume() const;
void setTimeOffset(float value);
float getTimeOffset() const;
void setPitch(float value);
float getPitch() const;
void setPlaying(bool value);
bool getPlaying() const;
void setLoop(bool value);
bool getLoop() const;
void setPositional(bool value);
bool getPositional() const;
void setLocalOnly(bool value);
bool getLocalOnly() const;
bool restartSound();
protected:
void updateSound(bool restart = false);
QString _url { "" };
float _volume { 1.0f };
float _timeOffset { 0.0f };
float _pitch { 1.0f };
bool _playing { true };
bool _loop { true };
bool _positional { true };
bool _localOnly { false };
SharedSoundPointer _sound;
AudioInjectorPointer _injector;
bool _updateNeeded { false };
};
#endif // hifi_SoundEntityItem_h

View file

@ -294,6 +294,7 @@ enum class EntityVersion : PacketVersion {
EntityTags,
WantsKeyboardFocus,
AudioZones,
SoundEntities,
// Add new versions above here
NUM_PACKET_TYPE,

View file

@ -5,6 +5,7 @@
set(TARGET_NAME physics)
setup_hifi_library()
link_hifi_libraries(shared workload entities shaders)
include_hifi_library_headers(audio)
include_hifi_library_headers(networking)
include_hifi_library_headers(gpu)
include_hifi_library_headers(avatars)

View file

@ -0,0 +1,258 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 50 150"
style="enable-background:new 0 0 50 150;"
xml:space="preserve"
sodipodi:docname="sound.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs75"><pattern
patternUnits="userSpaceOnUse"
width="30.420844"
height="6.5893951"
patternTransform="translate(9.076365,85.62981)"
id="pattern181821"><text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.76147px;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#eaeaea;fill-opacity:1;stroke:none;stroke-width:0.219039"
x="-0.31657657"
y="6.3785896"
id="text177288"
transform="scale(0.98488846,1.0153434)"><tspan
sodipodi:role="line"
id="tspan177286"
x="-0.31657657"
y="6.3785896"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:'Arial Bold';fill:#eaeaea;stroke-width:0.219039">SOUND</tspan></text></pattern><pattern
patternUnits="userSpaceOnUse"
width="30.420844"
height="6.5893951"
patternTransform="translate(9.0763649,35.629775)"
id="pattern185125"><text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.76147px;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.219039"
x="-0.31657654"
y="6.3785896"
id="text128632"
transform="scale(0.98488846,1.0153434)"><tspan
sodipodi:role="line"
id="tspan128630"
x="-0.31657654"
y="6.3785896"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:'Arial Bold';fill:#000000;stroke-width:0.219039">SOUND</tspan></text></pattern><pattern
patternUnits="userSpaceOnUse"
width="30.420844"
height="6.5893951"
patternTransform="translate(9.076365,135.62983)"
id="pattern185150"><text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.76147px;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';opacity:0.47;fill:#eaeaea;fill-opacity:1;stroke:none;stroke-width:0.219039"
x="-0.31657657"
y="6.3785896"
id="text177292"
transform="scale(0.98488846,1.0153434)"><tspan
sodipodi:role="line"
id="tspan177290"
x="-0.31657657"
y="6.3785896"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:'Arial Bold';fill:#eaeaea;stroke-width:0.219039">SOUND</tspan></text></pattern></defs><sodipodi:namedview
id="namedview73"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="4"
inkscape:cx="191.875"
inkscape:cy="118.625"
inkscape:window-width="5040"
inkscape:window-height="979"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<style
type="text/css"
id="style2">
.st0{opacity:0.9;}
.st1{fill:#FFFFFF;}
.st2{fill:#1E1E1E;}
.st3{fill:#EAEAEA;}
.st4{opacity:0.47;}
</style>
<g
id="g8">
<g
class="st0"
id="g6">
<path
class="st1"
d="M50,46.3c0,2.2-1.8,4-4,4H4c-2.2,0-4-1.8-4-4v-42c0-2.2,1.8-4,4-4h42c2.2,0,4,1.8,4,4V46.3z"
id="path4" />
</g>
</g>
<g
class="st0"
id="g12">
<path
class="st2"
d="M50,96.3c0,2.2-1.8,4-4,4H4c-2.2,0-4-1.8-4-4v-42c0-2.2,1.8-4,4-4h42c2.2,0,4,1.8,4,4V96.3z"
id="path10" />
</g>
<rect
style="stroke:none;fill:none"
width="30.420844"
height="6.5893951"
x="9.0763649"
y="35.629775"
id="rect185129" />
<rect
style="stroke:none;fill:none"
width="30.420844"
height="6.5893951"
x="9.076365"
y="85.62981"
id="rect181825" />
<g
class="st4"
id="g52">
<path
class="st2"
d="M50,146.3c0,2.2-1.8,4-4,4H4c-2.2,0-4-1.8-4-4v-42c0-2.2,1.8-4,4-4h42c2.2,0,4,1.8,4,4V146.3z"
id="path50" />
</g>
<rect
style="stroke:none;fill:none"
width="30.420844"
height="6.5893951"
x="9.076365"
y="135.62983"
id="rect185154" />
<g
id="g826"
transform="matrix(0.0396779,0,0,0.0396779,9.9752519,4.2669074)"
style="fill:#000000"><path
d="m 0,0 c 13.827391,10.512174 20.597576,25.087167 23.011719,42.019531 0.092,2.555446 0.13969,5.082998 0.134221,7.637738 l 0.0071,2.281383 c 0.0067,2.525082 0.0062,5.050113 0.0058,7.575203 0.0033,1.827887 0.007,3.655773 0.01114,5.483658 0.01001,5.025394 0.01373,10.050777 0.01639,15.07618 0.0039,5.419517 0.01348,10.839025 0.02221,16.258537 0.01976,13.09077 0.02983,26.18153 0.03873,39.27231 0.0044,6.16812 0.0098,12.33624 0.01499,18.50435 0.01701,20.51107 0.03151,41.02213 0.03875,61.5332 0.0019,5.32194 0.0038,10.64388 0.0058,15.96582 l 7.27e-4,2.0035 c 0.0081,22.08256 0.03335,44.16506 0.06685,66.24759 0.0331,21.9971 0.05109,43.99417 0.05428,65.9913 0.0022,12.3458 0.01087,24.69152 0.03646,37.0373 0.02175,10.51721 0.02974,21.03431 0.02003,31.55154 -0.0045,5.36121 -0.0027,10.72221 0.01676,16.08338 0.01772,4.91925 0.01656,9.83813 0.0011,14.75738 -0.0024,1.76864 0.0019,3.53731 0.01383,5.30591 0.125724,19.85325 -2.709399,39.30431 -17.0403675,54.18372 -8.3454088,7.618 -17.7819935,11.15977 -28.4648435,14.25 l -1.973145,0.59863 c -17.150657,5.19924 -32.361378,4.00814 -48.326172,-4.36035 -15.138528,-8.289 -26.891988,-20.43111 -38.102049,-33.39453 -2.15675,-2.48745 -4.37538,-4.91572 -6.59863,-7.34375 -4.96347,-5.44789 -9.84694,-10.95022 -14.60547,-16.57812 -5.99986,-7.07897 -12.15416,-13.96475 -18.51807,-20.719 -3.54755,-3.76661 -6.99861,-7.5918 -10.37255,-11.51538 -2.14552,-2.40744 -4.4475,-4.64229 -6.75,-6.89844 -1.86484,-1.90221 -3.58897,-3.88668 -5.31641,-5.91406 -6.32304,-7.26238 -12.25876,-13.79009 -22.02691,-15.0505 l -7.22359,-0.6152 c -5.81299,0.20929 -14.93041,0.48418 -24.04986,0.73028 -2.01512,0.057 -4.03,0.12239 -6.04486,0.18835 -13.91246,0.43355 -26.19483,0.60604 -39.09228,-5.12793 l -2.60938,-1.12891 c -6.35051,-3.14241 -11.37831,-7.93784 -16.39062,-12.87109 l -2.35156,-2.3125 c -15.53838,-16.23253 -18.11876,-33.32369 -18.02076,-54.89502 -0.002,-1.8939 -0.006,-3.7878 -0.0111,-5.6817 -0.009,-5.10319 -4e-5,-10.20618 0.0133,-15.30936 0.0114,-5.36218 0.007,-10.72435 0.005,-16.08654 -8.8e-4,-8.99923 0.0101,-17.99839 0.0286,-26.99759 0.0212,-10.3804 0.0247,-20.76069 0.0184,-31.1411 -0.006,-10.01985 -4e-5,-20.03965 0.0112,-30.05949 0.005,-4.24929 0.006,-8.49855 0.003,-12.74784 -0.002,-5.00865 0.006,-10.01718 0.0221,-15.02579 0.004,-1.83006 0.005,-3.66013 0.002,-5.49019 -0.0285,-21.95225 3.71639,-37.88244 18.36863,-54.6435 14.61244,-14.24783 34.5115,-17.73471 54.02344,-17.75 2.80276,-0.0161 5.60547,-0.0379 8.4082,-0.0586 4.39744,-0.0303 8.79459,-0.0531 13.19214,-0.0513 3.5746,8e-4 7.14834,-0.0228 10.72271,-0.0619 2.00158,-0.0154 4.0033,-0.005 6.00491,0.006 9.31056,-0.12346 16.20132,-1.82773 23.25798,-8.08783 l 1.98828,-2.41797 2.23828,-2.652343 2.07422,-2.535156 c 1.11952,-1.296419 2.2442,-2.58841 3.375,-3.875 l 1.69531,-1.945312 c 3.77047,-4.258956 7.63759,-8.430729 11.49024,-12.615235 2.31687,-2.51807 4.62792,-5.041473 6.93945,-7.564453 0.91795,-1.001322 1.83591,-2.002624 2.75391,-3.003906 1.82093,-1.986413 3.64119,-3.973438 5.46093,-5.960938 10.1791,-11.115607 20.40503,-22.186149 30.69922,-33.195312 2.41728,-2.585792 4.82817,-5.177336 7.23438,-7.773438 2.915852,-3.144847 5.845981,-6.275773 8.786614,-9.3974604 C -90.139631,8.18094 -88.740775,6.6596201 -87.34375,5.1367187 -62.778713,-20.817295 -28.205909,-18.693328 0,0 Z m -48.244141,66.221924 -1.58789,1.692138 -1.763672,1.878907 -1.892578,2.039062 -1.939453,2.082031 c -4.247651,4.594835 -8.242647,9.327988 -12.146485,14.21875 -4.188864,5.009015 -8.7178,9.703144 -13.195312,14.453128 -2.882159,3.06065 -5.664738,6.19141 -8.410156,9.375 -3.385406,3.85336 -6.886651,7.60175 -10.376465,11.36035 -2.186548,2.35516 -4.370308,4.71285 -6.551998,7.07251 -8.21016,8.85958 -16.55506,17.57623 -25.05884,26.15454 -1.39336,1.41011 -2.78131,2.82559 -4.16406,4.24609 -2.04543,2.10046 -4.10708,4.18374 -6.17286,6.26416 l -1.8316,1.9003 c -24.02936,23.91421 -66.00557,10.69802 -94.65277,11.06064 v 168 l 58,1 c 30.35546,3.79443 30.35546,3.79443 43.37891,17.01563 l 1.98899,1.98748 c 1.37569,1.37802 2.74774,2.75968 4.11623,4.14484 2.06819,2.09176 4.14935,4.1699 6.23267,6.24658 6.87552,6.89041 13.43025,13.80534 19.2832,21.60547 5.573935,6.98354 11.3661,13.67388 17.437499,20.22266 2.661163,2.88428 5.24949,5.82071 7.820312,8.78515 2.821044,3.22586 5.703196,6.39642 8.578125,9.57422 1.798374,2.00938 3.547726,4.04712 5.289063,6.10547 3.727868,4.28705 7.742389,8.28942 11.75,12.3125 l 2.059082,2.073 1.933105,1.927 1.753418,1.75 c 1.192644,1.36192 1.192644,1.36192 2.379395,1.25 V 65.019531 c -1.169391,-0.11526 -1.169391,-0.11526 -2.25586,1.202393 z"
fill="#000000"
transform="translate(370.98828,94.980469)"
id="path836"
sodipodi:nodetypes="ccccccccccsssccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
style="fill:#000000" /><path
d="m 0,0 c 12.687715,8.3646425 16.54757,23.578013 21.25,37.25 0.420028,1.211683 0.420028,1.211683 0.848541,2.447845 C 24.093738,45.455849 26.057576,51.223992 28,57 c 0.358289,1.064594 0.358289,1.064594 0.723816,2.150696 9.196303,27.421957 18.34758,56.379674 22.213684,85.099304 0.165,1.21301 0.33,2.42602 0.5,3.67578 0.133418,0.98348 0.133418,0.98348 0.269531,1.98682 0.307725,2.19254 0.641643,4.37993 0.980469,6.56787 C 65.117247,237.74117 51.79423,319.60536 24,408 c -0.37689,1.17031 -0.753779,2.34062 -1.14209,3.54639 C 17.545759,427.78218 11.971055,440.11885 -3.1601563,449.3125 -10.974406,453.17271 -20.495807,453.32002 -29,452 c -6.447118,-2.21023 -11.581457,-5.80171 -16,-11 -0.659355,-0.72703 -0.659355,-0.72703 -1.332031,-1.46875 C -53.332437,431.62301 -53,422.82358 -53,412.69922 c 0.741111,-10.03973 4.593387,-18.57148 8.476563,-27.75293 C -4.1662297,289.1502 -7.3944601,181.67277 -47.370117,59.287109 -52.165555,46.157988 -56.413045,31.232358 -51.4375,17.4375 -46.91216,8.1345364 -38.697322,0.74480411 -29.140625,-3.171875 -19.460116,-5.7244469 -8.7875393,-4.8407102 0,0 Z"
fill="#000000"
transform="translate(634,136)"
id="path838"
style="fill:#000000" /><path
d="m 0,0 c 17.968337,10.39053 22.143536,33.207156 27.238281,51.816406 9.06097,33.99317 13.985108,69.235084 14.882813,104.410154 0.02191,0.81179 0.04383,1.62358 0.06641,2.45996 1.024973,44.84255 -6.637484,88.87597 -20.066406,131.54004 -0.326455,1.04898 -0.65291,2.09795 -0.989258,3.17871 -1.007854,3.21683 -2.036103,6.4263 -3.073242,9.63379 -0.304138,0.96027 -0.608277,1.92054 -0.921631,2.90991 -3.75203,11.33325 -8.7198824,22.01013 -19.3283693,28.21509 -8.8558147,2.55168 -16.4996667,1.12221 -24.6874997,-2.9375 -8.148586,-4.91088 -14.567027,-10.35992 -18.375,-19.1875 -1.817982,-11.08969 -0.01228,-20.87108 3,-31.5625 0.556674,-2.04436 1.107614,-4.09021 1.658188,-6.13623 0.370535,-1.37582 0.742896,-2.75115 1.117096,-4.12597 1.752041,-6.46008 3.279791,-12.96668 4.787216,-19.4878 1.519228,-6.51781 3.16177,-12.83043 5.4375,-19.125 3.245102,-9.10722 4.514672,-18.63286 5.973633,-28.16113 0.401367,-2.21387 0.401367,-2.21387 1.401367,-5.21387 0.06725,-2.09304 -0.0012,-4.16495 -0.0625,-6.25781 0.05358,-2.35085 0.2595,-4.56839 0.542969,-6.89844 5.335996,-46.10945 -6.821894,-100.284491 -23.167969,-143.246091 -2.853907,-7.822763 -3.915598,-16.44719 -0.75,-24.347657 C -40.982968,8.9763575 -32.960334,3.2365619 -24.558594,-0.921875 -17.345835,-3.2139762 -7.0522415,-2.8528916 0,0 Z"
fill="#000000"
transform="translate(503.87891,195.77344)"
id="path840"
style="fill:#000000" /></g><g
id="g915"
transform="matrix(0.0396779,0,0,0.0396779,9.9752519,54.266907)"
style="fill:#eaeaea"><path
d="m 0,0 c 13.827391,10.512174 20.597576,25.087167 23.011719,42.019531 0.092,2.555446 0.13969,5.082998 0.134221,7.637738 l 0.0071,2.281383 c 0.0067,2.525082 0.0062,5.050113 0.0058,7.575203 0.0033,1.827887 0.007,3.655773 0.01114,5.483658 0.01001,5.025394 0.01373,10.050777 0.01639,15.07618 0.0039,5.419517 0.01348,10.839025 0.02221,16.258537 0.01976,13.09077 0.02983,26.18153 0.03873,39.27231 0.0044,6.16812 0.0098,12.33624 0.01499,18.50435 0.01701,20.51107 0.03151,41.02213 0.03875,61.5332 0.0019,5.32194 0.0038,10.64388 0.0058,15.96582 l 7.27e-4,2.0035 c 0.0081,22.08256 0.03335,44.16506 0.06685,66.24759 0.0331,21.9971 0.05109,43.99417 0.05428,65.9913 0.0022,12.3458 0.01087,24.69152 0.03646,37.0373 0.02175,10.51721 0.02974,21.03431 0.02003,31.55154 -0.0045,5.36121 -0.0027,10.72221 0.01676,16.08338 0.01772,4.91925 0.01656,9.83813 0.0011,14.75738 -0.0024,1.76864 0.0019,3.53731 0.01383,5.30591 0.125724,19.85325 -2.709399,39.30431 -17.0403675,54.18372 -8.3454088,7.618 -17.7819935,11.15977 -28.4648435,14.25 l -1.973145,0.59863 c -17.150657,5.19924 -32.361378,4.00814 -48.326172,-4.36035 -15.138528,-8.289 -26.891988,-20.43111 -38.102049,-33.39453 -2.15675,-2.48745 -4.37538,-4.91572 -6.59863,-7.34375 -4.96347,-5.44789 -9.84694,-10.95022 -14.60547,-16.57812 -5.99986,-7.07897 -12.15416,-13.96475 -18.51807,-20.719 -3.54755,-3.76661 -6.99861,-7.5918 -10.37255,-11.51538 -2.14552,-2.40744 -4.4475,-4.64229 -6.75,-6.89844 -1.86484,-1.90221 -3.58897,-3.88668 -5.31641,-5.91406 -6.32304,-7.26238 -12.25876,-13.79009 -22.02691,-15.0505 l -7.22359,-0.6152 c -5.81299,0.20929 -14.93041,0.48418 -24.04986,0.73028 -2.01512,0.057 -4.03,0.12239 -6.04486,0.18835 -13.91246,0.43355 -26.19483,0.60604 -39.09228,-5.12793 l -2.60938,-1.12891 c -6.35051,-3.14241 -11.37831,-7.93784 -16.39062,-12.87109 l -2.35156,-2.3125 c -15.53838,-16.23253 -18.11876,-33.32369 -18.02076,-54.89502 -0.002,-1.8939 -0.006,-3.7878 -0.0111,-5.6817 -0.009,-5.10319 -4e-5,-10.20618 0.0133,-15.30936 0.0114,-5.36218 0.007,-10.72435 0.005,-16.08654 -8.8e-4,-8.99923 0.0101,-17.99839 0.0286,-26.99759 0.0212,-10.3804 0.0247,-20.76069 0.0184,-31.1411 -0.006,-10.01985 -4e-5,-20.03965 0.0112,-30.05949 0.005,-4.24929 0.006,-8.49855 0.003,-12.74784 -0.002,-5.00865 0.006,-10.01718 0.0221,-15.02579 0.004,-1.83006 0.005,-3.66013 0.002,-5.49019 -0.0285,-21.95225 3.71639,-37.88244 18.36863,-54.6435 14.61244,-14.24783 34.5115,-17.73471 54.02344,-17.75 2.80276,-0.0161 5.60547,-0.0379 8.4082,-0.0586 4.39744,-0.0303 8.79459,-0.0531 13.19214,-0.0513 3.5746,8e-4 7.14834,-0.0228 10.72271,-0.0619 2.00158,-0.0154 4.0033,-0.005 6.00491,0.006 9.31056,-0.12346 16.20132,-1.82773 23.25798,-8.08783 l 1.98828,-2.41797 2.23828,-2.652343 2.07422,-2.535156 c 1.11952,-1.296419 2.2442,-2.58841 3.375,-3.875 l 1.69531,-1.945312 c 3.77047,-4.258956 7.63759,-8.430729 11.49024,-12.615235 2.31687,-2.51807 4.62792,-5.041473 6.93945,-7.564453 0.91795,-1.001322 1.83591,-2.002624 2.75391,-3.003906 1.82093,-1.986413 3.64119,-3.973438 5.46093,-5.960938 10.1791,-11.115607 20.40503,-22.186149 30.69922,-33.195312 2.41728,-2.585792 4.82817,-5.177336 7.23438,-7.773438 2.915852,-3.144847 5.845981,-6.275773 8.786614,-9.3974604 C -90.139631,8.18094 -88.740775,6.6596201 -87.34375,5.1367187 -62.778713,-20.817295 -28.205909,-18.693328 0,0 Z m -48.244141,66.221924 -1.58789,1.692138 -1.763672,1.878907 -1.892578,2.039062 -1.939453,2.082031 c -4.247651,4.594835 -8.242647,9.327988 -12.146485,14.21875 -4.188864,5.009015 -8.7178,9.703144 -13.195312,14.453128 -2.882159,3.06065 -5.664738,6.19141 -8.410156,9.375 -3.385406,3.85336 -6.886651,7.60175 -10.376465,11.36035 -2.186548,2.35516 -4.370308,4.71285 -6.551998,7.07251 -8.21016,8.85958 -16.55506,17.57623 -25.05884,26.15454 -1.39336,1.41011 -2.78131,2.82559 -4.16406,4.24609 -2.04543,2.10046 -4.10708,4.18374 -6.17286,6.26416 l -1.8316,1.9003 c -24.02936,23.91421 -66.00557,10.69802 -94.65277,11.06064 v 168 l 58,1 c 30.35546,3.79443 30.35546,3.79443 43.37891,17.01563 l 1.98899,1.98748 c 1.37569,1.37802 2.74774,2.75968 4.11623,4.14484 2.06819,2.09176 4.14935,4.1699 6.23267,6.24658 6.87552,6.89041 13.43025,13.80534 19.2832,21.60547 5.573935,6.98354 11.3661,13.67388 17.437499,20.22266 2.661163,2.88428 5.24949,5.82071 7.820312,8.78515 2.821044,3.22586 5.703196,6.39642 8.578125,9.57422 1.798374,2.00938 3.547726,4.04712 5.289063,6.10547 3.727868,4.28705 7.742389,8.28942 11.75,12.3125 l 2.059082,2.073 1.933105,1.927 1.753418,1.75 c 1.192644,1.36192 1.192644,1.36192 2.379395,1.25 V 65.019531 c -1.169391,-0.11526 -1.169391,-0.11526 -2.25586,1.202393 z"
fill="#000000"
transform="translate(370.98828,94.980469)"
id="path909"
sodipodi:nodetypes="ccccccccccsssccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
style="fill:#eaeaea" /><path
d="m 0,0 c 12.687715,8.3646425 16.54757,23.578013 21.25,37.25 0.420028,1.211683 0.420028,1.211683 0.848541,2.447845 C 24.093738,45.455849 26.057576,51.223992 28,57 c 0.358289,1.064594 0.358289,1.064594 0.723816,2.150696 9.196303,27.421957 18.34758,56.379674 22.213684,85.099304 0.165,1.21301 0.33,2.42602 0.5,3.67578 0.133418,0.98348 0.133418,0.98348 0.269531,1.98682 0.307725,2.19254 0.641643,4.37993 0.980469,6.56787 C 65.117247,237.74117 51.79423,319.60536 24,408 c -0.37689,1.17031 -0.753779,2.34062 -1.14209,3.54639 C 17.545759,427.78218 11.971055,440.11885 -3.1601563,449.3125 -10.974406,453.17271 -20.495807,453.32002 -29,452 c -6.447118,-2.21023 -11.581457,-5.80171 -16,-11 -0.659355,-0.72703 -0.659355,-0.72703 -1.332031,-1.46875 C -53.332437,431.62301 -53,422.82358 -53,412.69922 c 0.741111,-10.03973 4.593387,-18.57148 8.476563,-27.75293 C -4.1662297,289.1502 -7.3944601,181.67277 -47.370117,59.287109 -52.165555,46.157988 -56.413045,31.232358 -51.4375,17.4375 -46.91216,8.1345364 -38.697322,0.74480411 -29.140625,-3.171875 -19.460116,-5.7244469 -8.7875393,-4.8407102 0,0 Z"
fill="#000000"
transform="translate(634,136)"
id="path911"
style="fill:#eaeaea" /><path
d="m 0,0 c 17.968337,10.39053 22.143536,33.207156 27.238281,51.816406 9.06097,33.99317 13.985108,69.235084 14.882813,104.410154 0.02191,0.81179 0.04383,1.62358 0.06641,2.45996 1.024973,44.84255 -6.637484,88.87597 -20.066406,131.54004 -0.326455,1.04898 -0.65291,2.09795 -0.989258,3.17871 -1.007854,3.21683 -2.036103,6.4263 -3.073242,9.63379 -0.304138,0.96027 -0.608277,1.92054 -0.921631,2.90991 -3.75203,11.33325 -8.7198824,22.01013 -19.3283693,28.21509 -8.8558147,2.55168 -16.4996667,1.12221 -24.6874997,-2.9375 -8.148586,-4.91088 -14.567027,-10.35992 -18.375,-19.1875 -1.817982,-11.08969 -0.01228,-20.87108 3,-31.5625 0.556674,-2.04436 1.107614,-4.09021 1.658188,-6.13623 0.370535,-1.37582 0.742896,-2.75115 1.117096,-4.12597 1.752041,-6.46008 3.279791,-12.96668 4.787216,-19.4878 1.519228,-6.51781 3.16177,-12.83043 5.4375,-19.125 3.245102,-9.10722 4.514672,-18.63286 5.973633,-28.16113 0.401367,-2.21387 0.401367,-2.21387 1.401367,-5.21387 0.06725,-2.09304 -0.0012,-4.16495 -0.0625,-6.25781 0.05358,-2.35085 0.2595,-4.56839 0.542969,-6.89844 5.335996,-46.10945 -6.821894,-100.284491 -23.167969,-143.246091 -2.853907,-7.822763 -3.915598,-16.44719 -0.75,-24.347657 C -40.982968,8.9763575 -32.960334,3.2365619 -24.558594,-0.921875 -17.345835,-3.2139762 -7.0522415,-2.8528916 0,0 Z"
fill="#000000"
transform="translate(503.87891,195.77344)"
id="path913"
style="fill:#eaeaea" /></g><g
id="g923"
transform="matrix(0.0396779,0,0,0.0396779,9.9752519,104.26691)"
style="fill:#eaeaea;fill-opacity:0.72156864;opacity:0.47"><path
d="m 0,0 c 13.827391,10.512174 20.597576,25.087167 23.011719,42.019531 0.092,2.555446 0.13969,5.082998 0.134221,7.637738 l 0.0071,2.281383 c 0.0067,2.525082 0.0062,5.050113 0.0058,7.575203 0.0033,1.827887 0.007,3.655773 0.01114,5.483658 0.01001,5.025394 0.01373,10.050777 0.01639,15.07618 0.0039,5.419517 0.01348,10.839025 0.02221,16.258537 0.01976,13.09077 0.02983,26.18153 0.03873,39.27231 0.0044,6.16812 0.0098,12.33624 0.01499,18.50435 0.01701,20.51107 0.03151,41.02213 0.03875,61.5332 0.0019,5.32194 0.0038,10.64388 0.0058,15.96582 l 7.27e-4,2.0035 c 0.0081,22.08256 0.03335,44.16506 0.06685,66.24759 0.0331,21.9971 0.05109,43.99417 0.05428,65.9913 0.0022,12.3458 0.01087,24.69152 0.03646,37.0373 0.02175,10.51721 0.02974,21.03431 0.02003,31.55154 -0.0045,5.36121 -0.0027,10.72221 0.01676,16.08338 0.01772,4.91925 0.01656,9.83813 0.0011,14.75738 -0.0024,1.76864 0.0019,3.53731 0.01383,5.30591 0.125724,19.85325 -2.709399,39.30431 -17.0403675,54.18372 -8.3454088,7.618 -17.7819935,11.15977 -28.4648435,14.25 l -1.973145,0.59863 c -17.150657,5.19924 -32.361378,4.00814 -48.326172,-4.36035 -15.138528,-8.289 -26.891988,-20.43111 -38.102049,-33.39453 -2.15675,-2.48745 -4.37538,-4.91572 -6.59863,-7.34375 -4.96347,-5.44789 -9.84694,-10.95022 -14.60547,-16.57812 -5.99986,-7.07897 -12.15416,-13.96475 -18.51807,-20.719 -3.54755,-3.76661 -6.99861,-7.5918 -10.37255,-11.51538 -2.14552,-2.40744 -4.4475,-4.64229 -6.75,-6.89844 -1.86484,-1.90221 -3.58897,-3.88668 -5.31641,-5.91406 -6.32304,-7.26238 -12.25876,-13.79009 -22.02691,-15.0505 l -7.22359,-0.6152 c -5.81299,0.20929 -14.93041,0.48418 -24.04986,0.73028 -2.01512,0.057 -4.03,0.12239 -6.04486,0.18835 -13.91246,0.43355 -26.19483,0.60604 -39.09228,-5.12793 l -2.60938,-1.12891 c -6.35051,-3.14241 -11.37831,-7.93784 -16.39062,-12.87109 l -2.35156,-2.3125 c -15.53838,-16.23253 -18.11876,-33.32369 -18.02076,-54.89502 -0.002,-1.8939 -0.006,-3.7878 -0.0111,-5.6817 -0.009,-5.10319 -4e-5,-10.20618 0.0133,-15.30936 0.0114,-5.36218 0.007,-10.72435 0.005,-16.08654 -8.8e-4,-8.99923 0.0101,-17.99839 0.0286,-26.99759 0.0212,-10.3804 0.0247,-20.76069 0.0184,-31.1411 -0.006,-10.01985 -4e-5,-20.03965 0.0112,-30.05949 0.005,-4.24929 0.006,-8.49855 0.003,-12.74784 -0.002,-5.00865 0.006,-10.01718 0.0221,-15.02579 0.004,-1.83006 0.005,-3.66013 0.002,-5.49019 -0.0285,-21.95225 3.71639,-37.88244 18.36863,-54.6435 14.61244,-14.24783 34.5115,-17.73471 54.02344,-17.75 2.80276,-0.0161 5.60547,-0.0379 8.4082,-0.0586 4.39744,-0.0303 8.79459,-0.0531 13.19214,-0.0513 3.5746,8e-4 7.14834,-0.0228 10.72271,-0.0619 2.00158,-0.0154 4.0033,-0.005 6.00491,0.006 9.31056,-0.12346 16.20132,-1.82773 23.25798,-8.08783 l 1.98828,-2.41797 2.23828,-2.652343 2.07422,-2.535156 c 1.11952,-1.296419 2.2442,-2.58841 3.375,-3.875 l 1.69531,-1.945312 c 3.77047,-4.258956 7.63759,-8.430729 11.49024,-12.615235 2.31687,-2.51807 4.62792,-5.041473 6.93945,-7.564453 0.91795,-1.001322 1.83591,-2.002624 2.75391,-3.003906 1.82093,-1.986413 3.64119,-3.973438 5.46093,-5.960938 10.1791,-11.115607 20.40503,-22.186149 30.69922,-33.195312 2.41728,-2.585792 4.82817,-5.177336 7.23438,-7.773438 2.915852,-3.144847 5.845981,-6.275773 8.786614,-9.3974604 C -90.139631,8.18094 -88.740775,6.6596201 -87.34375,5.1367187 -62.778713,-20.817295 -28.205909,-18.693328 0,0 Z m -48.244141,66.221924 -1.58789,1.692138 -1.763672,1.878907 -1.892578,2.039062 -1.939453,2.082031 c -4.247651,4.594835 -8.242647,9.327988 -12.146485,14.21875 -4.188864,5.009015 -8.7178,9.703144 -13.195312,14.453128 -2.882159,3.06065 -5.664738,6.19141 -8.410156,9.375 -3.385406,3.85336 -6.886651,7.60175 -10.376465,11.36035 -2.186548,2.35516 -4.370308,4.71285 -6.551998,7.07251 -8.21016,8.85958 -16.55506,17.57623 -25.05884,26.15454 -1.39336,1.41011 -2.78131,2.82559 -4.16406,4.24609 -2.04543,2.10046 -4.10708,4.18374 -6.17286,6.26416 l -1.8316,1.9003 c -24.02936,23.91421 -66.00557,10.69802 -94.65277,11.06064 v 168 l 58,1 c 30.35546,3.79443 30.35546,3.79443 43.37891,17.01563 l 1.98899,1.98748 c 1.37569,1.37802 2.74774,2.75968 4.11623,4.14484 2.06819,2.09176 4.14935,4.1699 6.23267,6.24658 6.87552,6.89041 13.43025,13.80534 19.2832,21.60547 5.573935,6.98354 11.3661,13.67388 17.437499,20.22266 2.661163,2.88428 5.24949,5.82071 7.820312,8.78515 2.821044,3.22586 5.703196,6.39642 8.578125,9.57422 1.798374,2.00938 3.547726,4.04712 5.289063,6.10547 3.727868,4.28705 7.742389,8.28942 11.75,12.3125 l 2.059082,2.073 1.933105,1.927 1.753418,1.75 c 1.192644,1.36192 1.192644,1.36192 2.379395,1.25 V 65.019531 c -1.169391,-0.11526 -1.169391,-0.11526 -2.25586,1.202393 z"
fill="#000000"
transform="translate(370.98828,94.980469)"
id="path917"
sodipodi:nodetypes="ccccccccccsssccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
style="fill:#eaeaea;fill-opacity:0.72156864" /><path
d="m 0,0 c 12.687715,8.3646425 16.54757,23.578013 21.25,37.25 0.420028,1.211683 0.420028,1.211683 0.848541,2.447845 C 24.093738,45.455849 26.057576,51.223992 28,57 c 0.358289,1.064594 0.358289,1.064594 0.723816,2.150696 9.196303,27.421957 18.34758,56.379674 22.213684,85.099304 0.165,1.21301 0.33,2.42602 0.5,3.67578 0.133418,0.98348 0.133418,0.98348 0.269531,1.98682 0.307725,2.19254 0.641643,4.37993 0.980469,6.56787 C 65.117247,237.74117 51.79423,319.60536 24,408 c -0.37689,1.17031 -0.753779,2.34062 -1.14209,3.54639 C 17.545759,427.78218 11.971055,440.11885 -3.1601563,449.3125 -10.974406,453.17271 -20.495807,453.32002 -29,452 c -6.447118,-2.21023 -11.581457,-5.80171 -16,-11 -0.659355,-0.72703 -0.659355,-0.72703 -1.332031,-1.46875 C -53.332437,431.62301 -53,422.82358 -53,412.69922 c 0.741111,-10.03973 4.593387,-18.57148 8.476563,-27.75293 C -4.1662297,289.1502 -7.3944601,181.67277 -47.370117,59.287109 -52.165555,46.157988 -56.413045,31.232358 -51.4375,17.4375 -46.91216,8.1345364 -38.697322,0.74480411 -29.140625,-3.171875 -19.460116,-5.7244469 -8.7875393,-4.8407102 0,0 Z"
fill="#000000"
transform="translate(634,136)"
id="path919"
style="fill:#eaeaea;fill-opacity:0.72156864" /><path
d="m 0,0 c 17.968337,10.39053 22.143536,33.207156 27.238281,51.816406 9.06097,33.99317 13.985108,69.235084 14.882813,104.410154 0.02191,0.81179 0.04383,1.62358 0.06641,2.45996 1.024973,44.84255 -6.637484,88.87597 -20.066406,131.54004 -0.326455,1.04898 -0.65291,2.09795 -0.989258,3.17871 -1.007854,3.21683 -2.036103,6.4263 -3.073242,9.63379 -0.304138,0.96027 -0.608277,1.92054 -0.921631,2.90991 -3.75203,11.33325 -8.7198824,22.01013 -19.3283693,28.21509 -8.8558147,2.55168 -16.4996667,1.12221 -24.6874997,-2.9375 -8.148586,-4.91088 -14.567027,-10.35992 -18.375,-19.1875 -1.817982,-11.08969 -0.01228,-20.87108 3,-31.5625 0.556674,-2.04436 1.107614,-4.09021 1.658188,-6.13623 0.370535,-1.37582 0.742896,-2.75115 1.117096,-4.12597 1.752041,-6.46008 3.279791,-12.96668 4.787216,-19.4878 1.519228,-6.51781 3.16177,-12.83043 5.4375,-19.125 3.245102,-9.10722 4.514672,-18.63286 5.973633,-28.16113 0.401367,-2.21387 0.401367,-2.21387 1.401367,-5.21387 0.06725,-2.09304 -0.0012,-4.16495 -0.0625,-6.25781 0.05358,-2.35085 0.2595,-4.56839 0.542969,-6.89844 5.335996,-46.10945 -6.821894,-100.284491 -23.167969,-143.246091 -2.853907,-7.822763 -3.915598,-16.44719 -0.75,-24.347657 C -40.982968,8.9763575 -32.960334,3.2365619 -24.558594,-0.921875 -17.345835,-3.2139762 -7.0522415,-2.8528916 0,0 Z"
fill="#000000"
transform="translate(503.87891,195.77344)"
id="path921"
style="fill:#eaeaea;fill-opacity:0.72156864" /></g><g
aria-label="SOUND"
transform="scale(0.98488846,1.0153434)"
id="text1834"
style="font-weight:bold;font-size:8.76147px;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';stroke-width:0.219039"><path
d="m 9.2156273,39.429309 1.2320817,-0.119786 q 0.11123,0.620319 0.449196,0.911227 0.342245,0.290908 0.919784,0.290908 0.611762,0 0.919783,-0.256683 0.312298,-0.260962 0.312298,-0.607485 0,-0.222459 -0.13262,-0.37647 -0.128341,-0.158288 -0.453474,-0.273796 -0.222459,-0.077 -1.013901,-0.273795 -1.018178,-0.252406 -1.428872,-0.620319 -0.5775385,-0.517646 -0.5775385,-1.262028 0,-0.479143 0.2695179,-0.894115 0.2737959,-0.41925 0.7828856,-0.637431 0.513367,-0.218182 1.236359,-0.218182 1.180745,0 1.775396,0.517646 0.598928,0.517645 0.628875,1.381814 l -1.266306,0.05561 q -0.08128,-0.48342 -0.350801,-0.693045 -0.26524,-0.213904 -0.799998,-0.213904 -0.55187,0 -0.864168,0.226738 -0.201069,0.145454 -0.201069,0.389303 0,0.222459 0.188235,0.380748 0.239571,0.201069 1.163632,0.41925 0.924062,0.218181 1.364702,0.453474 0.444918,0.231016 0.693046,0.637431 0.252406,0.402138 0.252406,0.996789 0,0.539036 -0.299465,1.009622 -0.299464,0.470587 -0.847056,0.701602 -0.547592,0.226738 -1.364702,0.226738 -1.189301,0 -1.8267318,-0.547592 -0.6374312,-0.55187 -0.7614949,-1.604273 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path4316" /><path
d="m 15.12363,38.372628 q 0,-0.958286 0.28663,-1.608552 0.213903,-0.479142 0.581817,-0.85989 0.372191,-0.380747 0.812831,-0.564704 0.586095,-0.248128 1.351868,-0.248128 1.386092,0 2.216036,0.859891 0.834222,0.85989 0.834222,2.391436 0,1.518712 -0.825666,2.378602 -0.825666,0.855613 -2.20748,0.855613 -1.398926,0 -2.224592,-0.851335 -0.825666,-0.855612 -0.825666,-2.352933 z m 1.304809,-0.04278 q 0,1.065237 0.491977,1.617107 0.491977,0.547592 1.249194,0.547592 0.757217,0 1.240638,-0.543314 0.487699,-0.547592 0.487699,-1.638497 0,-1.078072 -0.474865,-1.608551 -0.470587,-0.53048 -1.253472,-0.53048 -0.782885,0 -1.262028,0.539036 -0.479143,0.534757 -0.479143,1.617107 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path4318" /><path
d="m 22.18671,35.198306 h 1.266306 v 3.396781 q 0,0.808553 0.04706,1.048125 0.08128,0.385025 0.385025,0.620319 0.30802,0.231015 0.8385,0.231015 0.539036,0 0.812832,-0.218181 0.273796,-0.222459 0.329411,-0.543314 0.05561,-0.320855 0.05561,-1.065237 v -3.469508 h 1.266306 v 3.294107 q 0,1.129408 -0.102673,1.595717 -0.102673,0.466309 -0.380747,0.787163 -0.273796,0.320855 -0.735827,0.513368 -0.462031,0.188235 -1.206413,0.188235 -0.898393,0 -1.364702,-0.205347 Q 22.93537,41.161924 22.665853,40.832513 22.396335,40.498824 22.310773,40.135189 22.18671,39.596153 22.18671,38.54375 Z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path4320" /><path
d="m 28.535352,41.469944 v -6.271638 h 1.232082 l 2.566837,4.188222 v -4.188222 h 1.176467 v 6.271638 h -1.270584 l -2.528335,-4.089827 v 4.089827 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path4322" /><path
d="m 34.845493,35.198306 h 2.314432 q 0.782885,0 1.193579,0.119786 0.55187,0.162566 0.945451,0.577538 0.393582,0.414972 0.598929,1.018179 0.205347,0.598928 0.205347,1.480209 0,0.774329 -0.192513,1.334755 -0.235293,0.68449 -0.671655,1.108018 -0.329411,0.320855 -0.889837,0.500533 -0.41925,0.13262 -1.120852,0.13262 h -2.382881 z m 1.266307,1.060959 v 4.153998 h 0.945451 q 0.53048,0 0.765773,-0.05989 0.308021,-0.077 0.50909,-0.260962 0.205346,-0.183956 0.333688,-0.603206 0.128342,-0.423529 0.128342,-1.150799 0,-0.72727 -0.128342,-1.116574 -0.128342,-0.389304 -0.359357,-0.607485 -0.231015,-0.218181 -0.586094,-0.295186 -0.26524,-0.05989 -1.039569,-0.05989 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path4324" /></g><g
aria-label="SOUND"
transform="scale(0.98488846,1.0153434)"
id="text4644"
style="font-weight:bold;font-size:8.76147px;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#eaeaea;stroke-width:0.219039"><path
d="M 9.2156273,88.673766 10.447709,88.55398 q 0.11123,0.620319 0.449196,0.911227 0.342245,0.290908 0.919784,0.290908 0.611762,0 0.919783,-0.256683 0.312298,-0.260962 0.312298,-0.607485 0,-0.222459 -0.13262,-0.376469 -0.128341,-0.158289 -0.453474,-0.273796 -0.222459,-0.077 -1.013901,-0.273796 -1.018178,-0.252406 -1.428872,-0.620319 -0.5775385,-0.517646 -0.5775385,-1.262028 0,-0.479143 0.2695179,-0.894115 0.2737959,-0.41925 0.7828856,-0.637431 0.513367,-0.218181 1.236359,-0.218181 1.180745,0 1.775396,0.517645 0.598928,0.517645 0.628875,1.381814 l -1.266306,0.05562 q -0.08128,-0.483421 -0.350801,-0.693046 -0.26524,-0.213903 -0.799998,-0.213903 -0.55187,0 -0.864168,0.226737 -0.201069,0.145454 -0.201069,0.389304 0,0.222459 0.188235,0.380747 0.239571,0.201069 1.163632,0.41925 0.924062,0.218181 1.364702,0.453475 0.444918,0.231015 0.693046,0.637431 0.252406,0.402137 0.252406,0.996788 0,0.539036 -0.299465,1.009623 -0.299464,0.470586 -0.847056,0.701602 -0.547592,0.226737 -1.364702,0.226737 -1.189301,0 -1.8267318,-0.547592 -0.6374312,-0.55187 -0.7614949,-1.604273 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path4646" /><path
d="m 15.12363,87.617085 q 0,-0.958286 0.28663,-1.608551 0.213903,-0.479143 0.581817,-0.859891 0.372191,-0.380747 0.812831,-0.564704 0.586095,-0.248127 1.351868,-0.248127 1.386092,0 2.216036,0.85989 0.834222,0.85989 0.834222,2.391436 0,1.518712 -0.825666,2.378602 -0.825666,0.855613 -2.20748,0.855613 -1.398926,0 -2.224592,-0.851334 -0.825666,-0.855613 -0.825666,-2.352934 z m 1.304809,-0.04278 q 0,1.065237 0.491977,1.617107 0.491977,0.547592 1.249194,0.547592 0.757217,0 1.240638,-0.543314 0.487699,-0.547591 0.487699,-1.638497 0,-1.078072 -0.474865,-1.608551 -0.470587,-0.53048 -1.253472,-0.53048 -0.782885,0 -1.262028,0.539036 -0.479143,0.534758 -0.479143,1.617107 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path4648" /><path
d="m 22.18671,84.442763 h 1.266306 v 3.396781 q 0,0.808554 0.04706,1.048125 0.08128,0.385026 0.385025,0.620319 0.30802,0.231015 0.8385,0.231015 0.539036,0 0.812832,-0.218181 0.273796,-0.222459 0.329411,-0.543314 0.05561,-0.320854 0.05561,-1.065237 v -3.469508 h 1.266306 v 3.294107 q 0,1.129409 -0.102673,1.595717 -0.102673,0.466309 -0.380747,0.787164 -0.273796,0.320854 -0.735827,0.513367 -0.462031,0.188235 -1.206413,0.188235 -0.898393,0 -1.364702,-0.205347 Q 22.93537,90.406381 22.665853,90.07697 22.396335,89.743281 22.310773,89.379646 22.18671,88.84061 22.18671,87.788207 Z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path4650" /><path
d="m 28.535352,90.714401 v -6.271638 h 1.232082 l 2.566837,4.188222 v -4.188222 h 1.176467 v 6.271638 h -1.270584 l -2.528335,-4.089826 v 4.089826 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path4652" /><path
d="m 34.845493,84.442763 h 2.314432 q 0.782885,0 1.193579,0.119786 0.55187,0.162566 0.945451,0.577538 0.393582,0.414972 0.598929,1.018179 0.205347,0.598928 0.205347,1.480209 0,0.774329 -0.192513,1.334755 -0.235293,0.68449 -0.671655,1.108018 -0.329411,0.320855 -0.889837,0.500533 -0.41925,0.13262 -1.120852,0.13262 h -2.382881 z m 1.266307,1.060959 v 4.153998 h 0.945451 q 0.53048,0 0.765773,-0.05989 0.308021,-0.077 0.50909,-0.260962 0.205346,-0.183956 0.333688,-0.603206 0.128342,-0.423528 0.128342,-1.150799 0,-0.72727 -0.128342,-1.116574 -0.128342,-0.389303 -0.359357,-0.607484 -0.231015,-0.218182 -0.586094,-0.295187 -0.26524,-0.05989 -1.039569,-0.05989 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path4654" /></g><g
aria-label="SOUND"
transform="scale(0.98488846,1.0153434)"
id="text4974"
style="font-weight:bold;font-size:8.76147px;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';opacity:0.47;fill:#eaeaea;stroke-width:0.219039"><path
d="m 9.2156273,137.91821 1.2320817,-0.11978 q 0.11123,0.62031 0.449196,0.91122 0.342245,0.29091 0.919784,0.29091 0.611762,0 0.919783,-0.25668 0.312298,-0.26096 0.312298,-0.60749 0,-0.22246 -0.13262,-0.37647 -0.128341,-0.15828 -0.453474,-0.27379 -0.222459,-0.077 -1.013901,-0.2738 -1.018178,-0.2524 -1.428872,-0.62032 -0.5775385,-0.51764 -0.5775385,-1.26203 0,-0.47914 0.2695179,-0.89411 0.2737959,-0.41925 0.7828856,-0.63743 0.513367,-0.21818 1.236359,-0.21818 1.180745,0 1.775396,0.51764 0.598928,0.51765 0.628875,1.38182 l -1.266306,0.0556 q -0.08128,-0.48342 -0.350801,-0.69304 -0.26524,-0.21391 -0.799998,-0.21391 -0.55187,0 -0.864168,0.22674 -0.201069,0.14545 -0.201069,0.3893 0,0.22246 0.188235,0.38075 0.239571,0.20107 1.163632,0.41925 0.924062,0.21818 1.364702,0.45348 0.444918,0.23101 0.693046,0.63743 0.252406,0.40213 0.252406,0.99678 0,0.53904 -0.299465,1.00963 -0.299464,0.47058 -0.847056,0.7016 -0.547592,0.22674 -1.364702,0.22674 -1.189301,0 -1.8267318,-0.5476 -0.6374312,-0.55187 -0.7614949,-1.60427 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path5056" /><path
d="m 15.12363,136.86153 q 0,-0.95829 0.28663,-1.60855 0.213903,-0.47914 0.581817,-0.85989 0.372191,-0.38075 0.812831,-0.56471 0.586095,-0.24812 1.351868,-0.24812 1.386092,0 2.216036,0.85989 0.834222,0.85989 0.834222,2.39143 0,1.51872 -0.825666,2.37861 -0.825666,0.85561 -2.20748,0.85561 -1.398926,0 -2.224592,-0.85134 -0.825666,-0.85561 -0.825666,-2.35293 z m 1.304809,-0.0428 q 0,1.06524 0.491977,1.61711 0.491977,0.54759 1.249194,0.54759 0.757217,0 1.240638,-0.54331 0.487699,-0.5476 0.487699,-1.6385 0,-1.07807 -0.474865,-1.60855 -0.470587,-0.53048 -1.253472,-0.53048 -0.782885,0 -1.262028,0.53903 -0.479143,0.53476 -0.479143,1.61711 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path5058" /><path
d="m 22.18671,133.68721 h 1.266306 v 3.39678 q 0,0.80855 0.04706,1.04812 0.08128,0.38503 0.385025,0.62032 0.30802,0.23102 0.8385,0.23102 0.539036,0 0.812832,-0.21818 0.273796,-0.22246 0.329411,-0.54332 0.05561,-0.32085 0.05561,-1.06523 v -3.46951 h 1.266306 v 3.29411 q 0,1.1294 -0.102673,1.59571 -0.102673,0.46631 -0.380747,0.78717 -0.273796,0.32085 -0.735827,0.51336 -0.462031,0.18824 -1.206413,0.18824 -0.898393,0 -1.364702,-0.20535 -0.462031,-0.20962 -0.731548,-0.53903 -0.269518,-0.33369 -0.35508,-0.69733 -0.124063,-0.53903 -0.124063,-1.59144 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path5060" /><path
d="m 28.535352,139.95885 v -6.27164 h 1.232082 l 2.566837,4.18822 v -4.18822 h 1.176467 v 6.27164 h -1.270584 l -2.528335,-4.08983 v 4.08983 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path5062" /><path
d="m 34.845493,133.68721 h 2.314432 q 0.782885,0 1.193579,0.11978 0.55187,0.16257 0.945451,0.57754 0.393582,0.41497 0.598929,1.01818 0.205347,0.59893 0.205347,1.48021 0,0.77433 -0.192513,1.33476 -0.235293,0.68449 -0.671655,1.10801 -0.329411,0.32086 -0.889837,0.50054 -0.41925,0.13262 -1.120852,0.13262 h -2.382881 z m 1.266307,1.06096 v 4.154 h 0.945451 q 0.53048,0 0.765773,-0.0599 0.308021,-0.077 0.50909,-0.26096 0.205346,-0.18396 0.333688,-0.60321 0.128342,-0.42352 0.128342,-1.15079 0,-0.72727 -0.128342,-1.11658 -0.128342,-0.3893 -0.359357,-0.60748 -0.231015,-0.21818 -0.586094,-0.29519 -0.26524,-0.0599 -1.039569,-0.0599 z"
style="font-family:Arial;-inkscape-font-specification:'Arial Bold'"
id="path5064" /></g></svg>

After

Width:  |  Height:  |  Size: 38 KiB

View file

@ -706,5 +706,29 @@
},
"zTextureURL": {
"tooltip": "The URL of the texture to map to surfaces perpendicular to the entity's local z-axis. JPG or PNG format."
},
"soundURL": {
"tooltip": "The URL of the sound, as a wav, mp3, or raw file."
},
"playing": {
"tooltip": "Whether or not the sound should play."
},
"volume": {
"tooltip": "The volume of the sound."
},
"pitch": {
"tooltip": "Alter the pitch of the sound, within +/- 2 octaves. The value is the relative sample rate at which to resample the sound."
},
"timeOffset": {
"tooltip": "Starts playback from a specified time (seconds) within the sound file."
},
"loop": {
"tooltip": "Whether or not the sound is played repeatedly."
},
"positional": {
"tooltip": "Whether or not the sound volume drops off with distance."
},
"localOnly": {
"tooltip": "Whether the sound should play locally for everyone separately, or globally via the audio mixer."
}
}

View file

@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
style="enable-background:new 0 0 512 512;"
xml:space="preserve"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
sodipodi:docname="icon-sound.svg"
width="512"
height="512"
id="svg43"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><path
d="m 355.34986,175.4077 c 11.3402,35.12172 13.21764,60.54899 13.96962,84.2159 0.0185,0.54619 0.0366,1.09241 0.0556,1.65515 0.85863,30.17151 -6.91623,62.84542 -12.64806,79.48246 -5.37828,17.78609 -5.88608,19.15003 -8.27799,25.02071 -4.24807,5.95906 -6.3021,8.15146 -12.9789,11.35411 -8.34639,1.45167 -15.67758,0.71082 -22.05025,-3.52324 -8.15172,-6.3978 -8.84375,-9.04763 -10.92875,-14.05903 -0.90418,-3.7934 -1.07115,-11.52366 1.18721,-19.68948 0.46632,-1.3755 2.43042,-8.67403 4.30468,-15.84048 1.96264,-7.69678 0.60592,0.34 7.74308,-36.57707 3.88716,-38.91707 -2.86528,-64.22135 -13.80806,-100.3773 -2.39066,-5.26342 -2.92645,-16.01596 -0.27471,-21.33166 3.63003,-5.71921 8.33266,-10.24533 15.37064,-13.04327 6.04199,-1.54219 17.99394,-3.87722 25.03914,3.2229 5.1707,4.72562 9.02898,6.96941 13.29675,19.4903 z"
fill="#000000"
id="path840"
style="fill:#ffffff;stroke-width:0.750744"
sodipodi:nodetypes="cccccccccccccccc" /><path
d="m 421.02222,112.77065 c 9.70029,5.57712 11.50234,12.47065 14.45085,20.20168 2.94851,7.73103 4.83293,13.32692 10.45277,28.6113 5.87516,17.65937 8.02051,22.84194 12.25292,46.36576 0.12615,0.80878 0.2523,1.61755 0.38227,2.45083 0.10203,0.65574 0.10203,0.65574 0.20607,1.32471 0.23526,1.46188 0.49055,2.92032 0.74962,4.37913 8.99239,56.55562 -2.63794,116.26296 -15.73012,155.57643 -11.68789,36.31347 -14.14458,35.01445 -25.71301,41.14432 -5.9743,2.57381 -12.70311,2.25781 -19.20491,1.37769 -4.9291,-1.47367 -7.59602,-3.17895 -11.99548,-6.89491 -2.67801,-2.60429 -4.58932,-5.48475 -5.10361,-5.97929 -2.41586,-4.02283 -3.43831,-8.88986 -3.43831,-15.64027 0.5666,-6.694 1.00614,-13.25387 3.97498,-19.3756 29.57811,-63.74709 27.06244,-132.91138 0.58461,-210.63708 -3.66631,-8.75385 -5.25408,-22.08052 -1.45006,-31.27825 3.45981,-6.20275 8.84676,-11.00486 16.15324,-13.6163 7.40115,-1.70194 16.70974,-1.2377 23.42817,1.98985 z"
fill="#000000"
id="path838"
style="fill:#ffffff;stroke-width:0.713973"
sodipodi:nodetypes="cccccccccccccccccc" /><path
d="m 336.29005,157.3505 c 11.50891,6.65525 14.18316,21.26954 17.4464,33.18895 5.80365,21.77299 8.95761,44.34581 9.53259,66.8758 0.0141,0.51996 0.028,1.03993 0.0425,1.57564 0.65652,28.72212 -4.25137,56.92599 -12.85273,84.25278 -0.20911,0.67188 -0.4182,1.34376 -0.63364,2.03599 -0.64553,2.06042 -1.30414,4.11612 -1.96844,6.17055 -0.1948,0.61507 -0.38961,1.23013 -0.59031,1.86383 -2.40322,7.25906 -5.58519,14.09771 -12.38003,18.07206 -5.67224,1.63437 -10.56821,0.71879 -15.81261,-1.8815 -5.21925,-3.14547 -9.33032,-6.63564 -11.76937,-12.28979 -1.16444,-7.10307 -0.008,-13.36815 1.92152,-20.21612 0.35656,-1.30943 0.70944,-2.61982 1.0621,-3.93032 0.23733,-0.88123 0.47582,-1.76214 0.71551,-2.64273 1.1222,-4.13775 2.10073,-8.3053 3.06626,-12.48214 0.97308,-4.17472 2.02514,-8.21802 3.48278,-12.24977 2.07851,-5.83326 2.89169,-11.93453 3.82617,-18.0375 0.25708,-1.418 0.25708,-1.68317 0.49984,-3.91406 0.17578,-1.3848 0.26453,-1.78381 0.35775,-3.43366 0.0343,-1.50575 0.16621,-2.92611 0.34777,-4.41853 3.41776,-29.53358 -4.36949,-64.23327 -14.83932,-91.75062 -1.82796,-5.01057 -2.50798,-10.5346 -0.48039,-15.59494 2.77561,-5.44447 7.91419,-9.12086 13.2956,-11.78439 4.61985,-1.46811 11.213,-1.23683 15.73004,0.59047 z"
fill="#000000"
id="path1737"
style="fill:#000000;stroke-width:0.64051"
sodipodi:nodetypes="sccccccccccccccccccccccss" /><path
d="m 272.51296,111.27461 c 0.0625,1.73086 0.0951,3.44283 0.0913,5.17321 l 0.004,1.54522 c 0.004,1.71028 0.004,3.42054 0.004,5.13082 0.002,1.23807 0.004,2.47612 0.007,3.71419 0.006,3.40381 0.008,6.80758 0.0111,10.21138 0.002,3.67076 0.008,7.34148 0.0151,11.01223 0.0134,8.86663 0.0203,17.73324 0.0265,26.5999 0.002,4.17778 0.006,8.35557 0.009,12.53334 0.0115,13.89254 0.0215,27.78509 0.0265,41.67763 9.9e-4,3.60465 0.002,7.2093 0.004,10.81395 l 5.1e-4,1.35701 c 0.005,14.95695 0.0227,29.91384 0.0455,44.87077 0.0225,14.89906 0.0348,29.7981 0.0369,44.69717 9.9e-4,8.36206 0.007,16.72405 0.0249,25.08608 0.0147,7.12351 0.0202,14.24695 0.0136,21.37048 -0.003,3.63124 -0.002,7.26236 0.0113,10.89358 0.0119,3.3319 0.0111,6.66355 6.7e-4,9.99546 -9.9e-4,1.19792 9.8e-4,2.39589 0.008,3.59378 0.0855,13.447 -7.14775,27.68224 -14.42895,33.16415 -5.68126,5.15983 -12.10539,7.55874 -19.37792,9.65179 l -1.34327,0.40548 c -11.67562,3.52154 -23.44477,2.71479 -34.31308,-2.95335 -11.54324,-6.67497 -13.35743,-9.41898 -22.57986,-17.84579 -1.46825,-1.68479 -2.97861,-3.32951 -4.49215,-4.97406 -3.37894,-3.68996 -6.70345,-7.41681 -9.9429,-11.22868 -4.08451,-4.79472 -8.27417,-9.45859 -12.6065,-14.03338 -2.41506,-2.5512 -4.76442,-5.14206 -7.06128,-7.79958 -1.46061,-1.63062 -3.02771,-3.14433 -4.59519,-4.67247 -1.26952,-1.28839 -2.44327,-2.63252 -3.61923,-4.00569 -4.30454,-4.91895 -8.1686,-10.0474 -14.81841,-10.90111 l -4.91759,-0.41668 c -3.95729,0.14175 -10.16417,0.32794 -16.37236,0.49463 -1.37182,0.0386 -2.743497,0.0829 -4.115171,0.12758 -9.471106,0.29365 -17.125453,-0.11987 -25.905578,-4.00358 l -1.776394,-0.76464 c -4.323212,-2.1284 -7.745973,-5.37645 -11.158184,-8.71782 l -1.600891,-1.56632 C 47.251179,340.51668 45.49453,328.94052 45.561242,314.32985 c 0,-1.28279 -0.0067,-2.56555 -0.0074,-3.84833 -0.0067,-3.4565 0,-6.91284 0.0088,-10.36933 0.0074,-3.63191 0.0067,-7.26381 0.0067,-10.89572 -5.43e-4,-6.09535 0.0067,-12.19065 0.01973,-18.28599 0.01429,-7.03085 0.01702,-14.06162 0.01226,-21.09248 -0.0067,-6.78663 0,-13.57322 0.0074,-20.35985 0.0067,-2.87814 0.0067,-5.75625 0,-8.63437 0,-3.39245 0.0067,-6.78483 0.01497,-10.17724 v -3.71863 c -0.01905,-14.86868 2.530003,-25.6585 12.504809,-37.0111 9.947641,-9.65032 21.372975,-12.89593 34.656035,-12.90628 1.908048,-0.0111 3.816026,-0.0257 5.724014,-0.0396 2.9936,-0.0205 5.98708,-0.036 8.98075,-0.0348 2.43347,5.5e-4 4.8664,-0.0154 7.29973,-0.042 1.36256,-0.009 2.72531,-0.003 4.08792,0.004 6.33829,-0.0837 12.26677,-1.41474 17.07067,-5.65482 l 1.35363,-1.63779 1.52374,-1.79648 1.41207,-1.71712 c 0.76213,-0.87809 1.52777,-1.75317 2.29759,-2.62461 l 1.1541,-1.31759 c 2.56681,-2.88467 5.19943,-5.7103 7.82218,-8.54454 1.57726,-1.70554 3.15052,-3.4147 4.72416,-5.12355 0.62489,-0.67822 1.24982,-1.35642 1.87475,-2.0346 1.23964,-1.34546 2.4788,-2.69129 3.71764,-4.03746 6.92959,-7.52882 13.89106,-15.02711 20.89901,-22.48384 1.64561,-1.751395 3.28686,-3.506701 4.92492,-5.265088 1.98503,-2.130064 3.97976,-4.250696 5.98164,-6.365076 0.96307,-1.021271 1.91535,-2.051699 2.86641,-3.083185 12.48043,-10.508085 36.90033,-11.544359 53.5075,-1.918727 7.59155,5.206215 15.91278,9.067733 22.50599,27.960956 z"
fill="#000000"
id="path836"
sodipodi:nodetypes="cccccccccsssccsccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
style="fill:#ffffff;stroke-width:0.67904" /><path
d="m 251.1722,92.79154 c 8.85658,6.73316 13.19296,16.0686 14.73924,26.91395 0.0589,1.63679 0.0895,3.25572 0.086,4.89206 l 0.004,1.46125 c 0.004,1.61733 0.004,3.23465 0.004,4.85199 0.002,1.17078 0.004,2.34156 0.007,3.51234 0.006,3.21883 0.008,6.43763 0.0105,9.65645 0.002,3.47127 0.008,6.94251 0.0142,10.41377 0.0127,8.38478 0.0191,16.76954 0.0248,25.15433 0.002,3.95074 0.006,7.90149 0.009,11.85222 0.0109,13.13756 0.0202,26.27512 0.0249,39.41267 10e-4,3.40876 0.002,6.81752 0.004,10.22628 l 4.7e-4,1.28326 c 0.005,14.14411 0.0213,28.28818 0.0427,42.43228 0.0212,14.08938 0.0328,28.17873 0.0347,42.26812 0.001,7.90762 0.007,15.81518 0.0234,23.72278 0.0139,6.73639 0.019,13.4727 0.0128,20.2091 -0.003,3.43391 -0.002,6.86769 0.0107,10.30157 0.0113,3.15083 0.0106,6.30142 6.4e-4,9.45226 -0.001,1.13283 10e-4,2.26569 0.008,3.39849 0.0805,12.71622 -1.73539,25.17483 -10.91454,34.70524 -5.34531,4.87942 -11.38955,7.14796 -18.23203,9.12727 l -1.26383,0.38344 c -10.98518,3.33016 -20.72781,2.56725 -30.95342,-2.79285 -9.69638,-5.3092 -17.2246,-13.08635 -24.40476,-21.38956 -1.38142,-1.59323 -2.80247,-3.14856 -4.2265,-4.70374 -3.17914,-3.48943 -6.30706,-7.01374 -9.35495,-10.61846 -3.84297,-4.53415 -7.78487,-8.94457 -11.86102,-13.27074 -2.27225,-2.41255 -4.48268,-4.86262 -6.64373,-7.37572 -1.37423,-1.54199 -2.84866,-2.97344 -4.32345,-4.41853 -1.19444,-1.21838 -2.29877,-2.48946 -3.40521,-3.78801 -4.04998,-4.65163 -7.85187,-8.8327 -14.10844,-9.64001 l -4.62679,-0.39403 c -3.72328,0.13404 -9.56314,0.31011 -15.40421,0.46775 -1.29069,0.0365 -2.58126,0.0783 -3.87182,0.12064 -8.91104,0.27769 -16.778047,0.38816 -25.038967,-3.2845 l -1.671348,-0.72308 c -4.067562,-2.01274 -7.287921,-5.08427 -10.498353,-8.24406 l -1.506224,-1.48119 C 53.971149,336.48946 52.318376,325.5424 52.381146,311.72574 c 0,-1.21307 -0.0064,-2.42613 -0.007,-3.63919 -0.0064,-3.26866 0,-6.53717 0.0083,-9.80581 0.007,-3.43454 0.0064,-6.86907 0.0064,-10.3036 -5.13e-4,-5.7641 0.0064,-11.52816 0.01857,-17.29224 0.01345,-6.64876 0.01601,-13.29744 0.01153,-19.94621 -0.0064,-6.41782 0,-12.8356 0.007,-19.25341 0.0064,-2.72172 0.0064,-5.44342 0,-8.16513 0,-3.20809 0.0064,-6.41611 0.01409,-9.62417 0,-1.17218 0,-2.34436 0,-3.51653 -0.01793,-14.06065 2.380394,-24.26411 11.765347,-34.99974 9.359395,-9.12588 22.104979,-11.35927 34.602557,-11.36906 1.79522,-0.0105 3.59037,-0.0243 5.38553,-0.0375 2.81658,-0.0194 5.63304,-0.034 8.44968,-0.0329 2.28957,5.2e-4 4.57863,-0.0146 6.86807,-0.0397 1.28198,-0.009 2.56416,-0.003 3.8462,0.004 5.96347,-0.0791 10.37711,-1.17068 14.89693,-5.18033 l 1.27358,-1.54879 1.43364,-1.69885 1.32856,-1.6238 c 0.71706,-0.83037 1.43743,-1.6579 2.16173,-2.48198 l 1.08585,-1.24599 c 2.41503,-2.7279 4.89197,-5.39997 7.35963,-8.08019 1.48398,-1.61285 2.96423,-3.22912 4.44479,-4.84511 0.58795,-0.64135 1.17592,-1.2827 1.7639,-1.92403 1.16633,-1.27233 2.33222,-2.54503 3.49779,-3.81804 6.51982,-7.11967 13.06963,-14.21046 19.66317,-21.26196 1.54829,-1.65622 3.09249,-3.31613 4.6337,-4.97896 1.86763,-2.01431 3.74441,-4.0197 5.62791,-6.01917 0.90612,-0.96577 1.80209,-1.9402 2.69691,-2.91563 15.73416,-16.623818 37.8784,-15.263399 55.94459,-3.29012 z m -30.90088,42.41584 -1.01707,1.08383 -1.12965,1.20347 -1.21222,1.30604 -1.24224,1.33355 c -2.72065,2.94304 -5.2795,5.97468 -7.77995,9.10727 -2.683,3.20833 -5.58384,6.21496 -8.45173,9.25738 -1.84605,1.96037 -3.62833,3.96566 -5.3868,6.00479 -2.16838,2.46811 -4.41097,4.86899 -6.64623,7.27641 -1.40051,1.50851 -2.79923,3.01864 -4.19662,4.53003 -5.2587,5.67465 -10.6037,11.25775 -16.05046,16.75226 -0.89246,0.90318 -1.78146,1.80982 -2.66712,2.71966 -1.31012,1.34536 -2.63063,2.67973 -3.95379,4.01225 l -1.17315,1.21717 c -15.39106,15.31731 -42.27727,6.85219 -60.626095,7.08446 v 107.60577 l 37.149605,0.6405 c 19.44299,2.43037 19.44299,2.43037 27.78465,10.89869 l 1.27397,1.27301 c 0.88114,0.88263 1.75995,1.76761 2.63648,2.65481 1.3247,1.3398 2.65771,2.67087 3.9921,4.001 4.40384,4.41339 8.60221,8.84247 12.35109,13.83853 3.57016,4.47303 7.28011,8.75827 11.16891,12.95283 1.7045,1.84742 3.36234,3.72823 5.00899,5.62699 1.8069,2.06619 3.65295,4.09696 5.49438,6.13238 1.15187,1.28703 2.27235,2.59222 3.38769,3.91062 2.38774,2.7459 4.95909,5.30946 7.52601,7.88628 l 1.31886,1.32779 1.23817,1.23426 1.12309,1.12089 c 0.7639,0.87233 0.7639,0.87233 1.52403,0.80064 V 134.43723 c -0.74901,-0.0738 -0.74901,-0.0738 -1.4449,0.77015 z"
fill="#000000"
id="path1813"
sodipodi:nodetypes="ccccccccccsssccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
style="stroke-width:0.64051;fill:#000000" /><path
d="m 419.63397,119.06499 c 8.12662,5.35763 10.5989,15.10196 13.61085,23.85901 0.26904,0.77609 0.26904,0.77609 0.5435,1.56788 1.27795,3.68806 2.5358,7.3826 3.77995,11.0822 0.22948,0.68188 0.22948,0.68188 0.46361,1.37755 5.89033,17.56405 11.75182,36.11177 14.2281,54.50699 0.10568,0.77695 0.21136,1.55389 0.32025,2.35438 0.0855,0.62993 0.0855,0.62993 0.17264,1.27258 0.1971,1.40434 0.41097,2.80539 0.62801,4.20679 7.96138,52.04834 -0.57216,104.48321 -18.37465,161.10092 -0.24141,0.74959 -0.48281,1.49918 -0.73152,2.27149 -3.40249,10.39919 -6.97316,18.30096 -16.66486,24.18959 -5.0051,2.47251 -11.10366,2.56686 -16.55068,1.72138 -4.12946,-1.41568 -7.41805,-3.71606 -10.24817,-7.04562 -0.42233,-0.46567 -0.42233,-0.46567 -0.85318,-0.94075 -4.48384,-5.06531 -4.2709,-10.70145 -4.2709,-17.1862 0.47468,-6.43055 2.94211,-11.89523 5.42932,-17.77604 25.84921,-61.35841 23.7815,-130.19883 -1.82333,-208.58814 -3.07153,-8.40934 -5.7921,-17.96937 -2.6052,-26.80512 2.89853,-5.95864 8.16023,-10.69185 14.28138,-13.20051 6.20047,-1.63496 13.03637,-1.06891 18.66488,2.03162 z"
fill="#000000"
id="path1775"
style="stroke-width:0.64051;fill:#000000" /><rect
id="backgroundrect"
width="511"
height="510.51233"
x="3.313553e-07"
y="0.48767093"
fill="none"
stroke="none"
style="stroke-width:3.81627" /><metadata
id="metadata4211"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs4209" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="5040"
inkscape:window-height="979"
id="namedview4207"
showgrid="false"
inkscape:zoom="1.4142136"
inkscape:cx="6.7175144"
inkscape:cy="206.12163"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg43"
inkscape:pagecheckerboard="0" /><style
type="text/css"
id="style4189">
.st0{fill:none;stroke:#000000;stroke-width:18;stroke-miterlimit:10;}
.st1{fill:none;stroke:#000000;stroke-width:18;stroke-linecap:round;stroke-miterlimit:10;}
.st2{fill:none;stroke:#000000;stroke-width:19;stroke-linecap:round;stroke-miterlimit:10;}
</style></svg>

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -51,6 +51,7 @@
var DEFAULT_IMAGE = Script.getExternalPath(Script.ExternalPaths.Assets, "Bazaar/Assets/Textures/Defaults/Interface/default_image.jpg");
var DEFAULT_PARTICLE = Script.getExternalPath(Script.ExternalPaths.Assets, "Bazaar/Assets/Textures/Defaults/Interface/default_particle.png");
var DEFAULT_SOUND = "TODO";
var createToolsWindow = new CreateWindow(
Script.resolvePath("qml/EditTools.qml"),
@ -94,8 +95,9 @@
var SPOT_LIGHT_URL = Script.resolvePath("assets/images/icon-spot-light.svg");
var ZONE_URL = Script.resolvePath("assets/images/icon-zone.svg");
var MATERIAL_URL = Script.resolvePath("assets/images/icon-material.svg");
var SOUND_URL = Script.resolvePath("assets/images/icon-sound.svg");
var entityIconOverlayManager = new EntityIconOverlayManager(["Light", "ParticleEffect", "Zone", "Material"], function(entityID) {
var entityIconOverlayManager = new EntityIconOverlayManager(["Light", "ParticleEffect", "Zone", "Material", "Sound"], function(entityID) {
var properties = Entities.getEntityProperties(entityID, ["type", "isSpotlight", "parentID", "name"]);
if (properties.type === "Light") {
return {
@ -109,6 +111,8 @@
} else {
return { imageURL: "" };
}
} else if (properties.type === "Sound") {
return { imageURL: SOUND_URL, rotation: Quat.fromPitchYawRollDegrees(0, 0, 0) };
} else {
return { imageURL: PARTICLE_SYSTEM_URL };
}
@ -492,6 +496,9 @@
exponent: 1.0,
cutoff: 75.0,
},
Sound: {
soundURL: DEFAULT_SOUND
},
};
var toolBar = (function () {
@ -570,7 +577,7 @@
if (!properties.grab) {
properties.grab = {};
if (Menu.isOptionChecked(MENU_CREATE_ENTITIES_GRABBABLE) &&
!(properties.type === "Zone" || properties.type === "Light"
!(properties.type === "Zone" || properties.type === "Light" || properties.type === "Sound"
|| properties.type === "ParticleEffect" || properties.type === "Web")) {
properties.grab.grabbable = true;
} else {
@ -1056,6 +1063,12 @@
addButton("newPolyVoxButton", createNewEntityDialogButtonCallback("PolyVox"));
addButton("newSoundButton", function () {
createNewEntity({
type: "Sound",
});
});
var deactivateCreateIfDesktopWindowsHidden = function() {
if (!shouldUseEditTabletApp() && !entityListTool.isVisible() && !createToolsWindow.isVisible()) {
that.setActive(false);
@ -2041,7 +2054,7 @@
var entityParentIDs = [];
var propType = Entities.getEntityProperties(pastedEntityIDs[0], ["type"]).type;
var NO_ADJUST_ENTITY_TYPES = ["Zone", "Light", "ParticleEffect"];
var NO_ADJUST_ENTITY_TYPES = ["Zone", "Light", "Sound", "ParticleEffect"];
if (NO_ADJUST_ENTITY_TYPES.indexOf(propType) === -1) {
var targetDirection;
if (Camera.mode === "entity" || Camera.mode === "independent") {

View file

@ -211,7 +211,7 @@ var EntityListTool = function(shouldUseEditTabletApp, selectionManager) {
PROFILE("getMultipleProperties", function () {
var multipleProperties = Entities.getMultipleEntityProperties(ids, ['position', 'name', 'type', 'locked',
'visible', 'renderInfo', 'modelURL', 'materialURL', 'imageURL', 'script', 'serverScripts',
'skybox.url', 'ambientLight.url', 'created', 'lastEdited']);
'skybox.url', 'ambientLight.url', 'soundURL', 'created', 'lastEdited']);
for (var i = 0; i < multipleProperties.length; i++) {
var properties = multipleProperties[i];
@ -223,6 +223,8 @@ var EntityListTool = function(shouldUseEditTabletApp, selectionManager) {
url = properties.materialURL;
} else if (properties.type === "Image") {
url = properties.imageURL;
} else if (properties.type === "Sound") {
url = properties.soundURL;
}
//print("Global object before getParentState call: " + JSON.stringify(globalThis));
var parentStatus = that.createApp.getParentState(ids[i]);

View file

@ -178,6 +178,7 @@ const FILTER_TYPES = [
"PolyVox",
"Text",
"Grid",
"Sound",
];
const DOUBLE_CLICK_TIMEOUT = 300; // ms

View file

@ -1432,6 +1432,62 @@ const GROUPS = [
},
]
},
{
id: "sound",
label: "SOUND",
properties: [
{
label: "Sound",
type: "string",
propertyID: "soundURL",
placeholder: "URL",
},
{
label: "Playing",
type: "bool",
propertyID: "playing",
},
{
label: "Loop",
type: "bool",
propertyID: "loop",
},
{
label: "Volume",
type: "number-draggable",
min: 0,
max: 1,
step: 0.01,
decimals: 2,
propertyID: "volume",
},
{
label: "Positional",
type: "bool",
propertyID: "positional",
},
{
label: "Pitch",
type: "number-draggable",
min: 0.0625,
max: 16,
step: 0.1,
decimals: 2,
propertyID: "pitch",
},
{
label: "Time Offset",
type: "number-draggable",
step: 0.1,
propertyID: "timeOffset",
},
{
label: "Local Only",
type: "bool",
propertyID: "localOnly",
}
]
},
{
id: "spatial",
label: "SPATIAL",
@ -1811,6 +1867,7 @@ const GROUPS_PER_TYPE = {
PolyLine: [ 'base', 'spatial', 'behavior', 'scripts', 'collision', 'physics' ],
PolyVox: [ 'base', 'polyvox', 'spatial', 'behavior', 'scripts', 'collision', 'physics' ],
Grid: [ 'base', 'grid', 'spatial', 'behavior', 'scripts', 'physics' ],
Sound: [ 'base', 'sound', 'spatial', 'behavior', 'scripts', 'physics' ],
Multiple: [ 'base', 'spatial', 'behavior', 'scripts', 'collision', 'physics' ],
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 684 B

View file

@ -2241,7 +2241,7 @@ SelectionDisplay = (function() {
Entities.editEntity(selectionBox, selectionBoxGeometry);
// UPDATE ICON TRANSLATE HANDLE
if (SelectionManager.entityType === "ParticleEffect" || SelectionManager.entityType === "Light") {
if (SelectionManager.entityType === "ParticleEffect" || SelectionManager.entityType === "Light" || SelectionManager.entityType === "Sound") {
var iconSelectionBoxGeometry = {
position: position,
rotation: rotation

View file

@ -352,6 +352,17 @@ function brokenURLReport(entityIDs) {
};
brokenURLReportUrlList.push(brokenURLReportUrlEntry);
}
if (properties.type === "Sound" && properties.soundURL.toLowerCase().startsWith("http")) {
brokenURLReportUrlEntry = {
id: entityIDs[i],
name: properties.name,
type: properties.type,
urlType: "soundURL",
url: soundURL,
validity: "NOT_TESTED"
};
brokenURLReportUrlList.push(brokenURLReportUrlEntry);
}
}
if (brokenURLReportUrlList.length === 0) {
audioFeedback.confirmation();

View file

@ -190,6 +190,18 @@ TabBar {
editTabView.currentIndex = 2
}
}
NewEntityButton {
icon: "icons/sound.svg"
text: "SOUND"
onClicked: {
editRoot.sendToScript({
method: "newEntityButtonClicked",
params: { buttonName: "newSoundButton" }
});
editTabView.currentIndex = 2
}
}
}
HifiControls.Button {

View file

@ -196,6 +196,18 @@ TabBar {
editTabView.currentIndex = tabIndex.properties
}
}
NewEntityButton {
icon: "icons/sound.svg"
text: "SOUND"
onClicked: {
editRoot.sendToScript({
method: "newEntityButtonClicked",
params: { buttonName: "newSoundButton" }
});
editTabView.currentIndex = tabIndex.properties
}
}
}
HifiControls.Button {

View file

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 512 512"
style="enable-background:new 0 0 512 512;"
xml:space="preserve"
sodipodi:docname="sound.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs29" /><sodipodi:namedview
id="namedview27"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="0.77539063"
inkscape:cx="-56.100756"
inkscape:cy="169.59194"
inkscape:window-width="5040"
inkscape:window-height="979"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<style
type="text/css"
id="style2">
.st0{fill:none;stroke:#000000;stroke-width:18;stroke-miterlimit:10;}
.st1{fill:none;stroke:#000000;stroke-width:18;stroke-linecap:round;stroke-miterlimit:10;}
.st2{fill:none;stroke:#000000;stroke-width:19;stroke-linecap:round;stroke-miterlimit:10;}
</style>
<g
id="g826"
transform="matrix(0.55495039,0,0,0.55495039,49.689478,51.969306)"><path
d="m 0,0 c 13.827391,10.512174 20.597576,25.087167 23.011719,42.019531 0.092,2.555446 0.13969,5.082998 0.134221,7.637738 l 0.0071,2.281383 c 0.0067,2.525082 0.0062,5.050113 0.0058,7.575203 0.0033,1.827887 0.007,3.655773 0.01114,5.483658 0.01001,5.025394 0.01373,10.050777 0.01639,15.07618 0.0039,5.419517 0.01348,10.839025 0.02221,16.258537 0.01976,13.09077 0.02983,26.18153 0.03873,39.27231 0.0044,6.16812 0.0098,12.33624 0.01499,18.50435 0.01701,20.51107 0.03151,41.02213 0.03875,61.5332 0.0019,5.32194 0.0038,10.64388 0.0058,15.96582 l 7.27e-4,2.0035 c 0.0081,22.08256 0.03335,44.16506 0.06685,66.24759 0.0331,21.9971 0.05109,43.99417 0.05428,65.9913 0.0022,12.3458 0.01087,24.69152 0.03646,37.0373 0.02175,10.51721 0.02974,21.03431 0.02003,31.55154 -0.0045,5.36121 -0.0027,10.72221 0.01676,16.08338 0.01772,4.91925 0.01656,9.83813 0.0011,14.75738 -0.0024,1.76864 0.0019,3.53731 0.01383,5.30591 0.125724,19.85325 -2.709399,39.30431 -17.0403675,54.18372 -8.3454088,7.618 -17.7819935,11.15977 -28.4648435,14.25 l -1.973145,0.59863 c -17.150657,5.19924 -32.361378,4.00814 -48.326172,-4.36035 -15.138528,-8.289 -26.891988,-20.43111 -38.102049,-33.39453 -2.15675,-2.48745 -4.37538,-4.91572 -6.59863,-7.34375 -4.96347,-5.44789 -9.84694,-10.95022 -14.60547,-16.57812 -5.99986,-7.07897 -12.15416,-13.96475 -18.51807,-20.719 -3.54755,-3.76661 -6.99861,-7.5918 -10.37255,-11.51538 -2.14552,-2.40744 -4.4475,-4.64229 -6.75,-6.89844 -1.86484,-1.90221 -3.58897,-3.88668 -5.31641,-5.91406 -6.32304,-7.26238 -12.25876,-13.79009 -22.02691,-15.0505 l -7.22359,-0.6152 c -5.81299,0.20929 -14.93041,0.48418 -24.04986,0.73028 -2.01512,0.057 -4.03,0.12239 -6.04486,0.18835 -13.91246,0.43355 -26.19483,0.60604 -39.09228,-5.12793 l -2.60938,-1.12891 c -6.35051,-3.14241 -11.37831,-7.93784 -16.39062,-12.87109 l -2.35156,-2.3125 c -15.53838,-16.23253 -18.11876,-33.32369 -18.02076,-54.89502 -0.002,-1.8939 -0.006,-3.7878 -0.0111,-5.6817 -0.009,-5.10319 -4e-5,-10.20618 0.0133,-15.30936 0.0114,-5.36218 0.007,-10.72435 0.005,-16.08654 -8.8e-4,-8.99923 0.0101,-17.99839 0.0286,-26.99759 0.0212,-10.3804 0.0247,-20.76069 0.0184,-31.1411 -0.006,-10.01985 -4e-5,-20.03965 0.0112,-30.05949 0.005,-4.24929 0.006,-8.49855 0.003,-12.74784 -0.002,-5.00865 0.006,-10.01718 0.0221,-15.02579 0.004,-1.83006 0.005,-3.66013 0.002,-5.49019 -0.0285,-21.95225 3.71639,-37.88244 18.36863,-54.6435 14.61244,-14.24783 34.5115,-17.73471 54.02344,-17.75 2.80276,-0.0161 5.60547,-0.0379 8.4082,-0.0586 4.39744,-0.0303 8.79459,-0.0531 13.19214,-0.0513 3.5746,8e-4 7.14834,-0.0228 10.72271,-0.0619 2.00158,-0.0154 4.0033,-0.005 6.00491,0.006 9.31056,-0.12346 16.20132,-1.82773 23.25798,-8.08783 l 1.98828,-2.41797 2.23828,-2.652343 2.07422,-2.535156 c 1.11952,-1.296419 2.2442,-2.58841 3.375,-3.875 l 1.69531,-1.945312 c 3.77047,-4.258956 7.63759,-8.430729 11.49024,-12.615235 2.31687,-2.51807 4.62792,-5.041473 6.93945,-7.564453 0.91795,-1.001322 1.83591,-2.002624 2.75391,-3.003906 1.82093,-1.986413 3.64119,-3.973438 5.46093,-5.960938 10.1791,-11.115607 20.40503,-22.186149 30.69922,-33.195312 2.41728,-2.585792 4.82817,-5.177336 7.23438,-7.773438 2.915852,-3.144847 5.845981,-6.275773 8.786614,-9.3974604 C -90.139631,8.18094 -88.740775,6.6596201 -87.34375,5.1367187 -62.778713,-20.817295 -28.205909,-18.693328 0,0 Z m -48.244141,66.221924 -1.58789,1.692138 -1.763672,1.878907 -1.892578,2.039062 -1.939453,2.082031 c -4.247651,4.594835 -8.242647,9.327988 -12.146485,14.21875 -4.188864,5.009015 -8.7178,9.703144 -13.195312,14.453128 -2.882159,3.06065 -5.664738,6.19141 -8.410156,9.375 -3.385406,3.85336 -6.886651,7.60175 -10.376465,11.36035 -2.186548,2.35516 -4.370308,4.71285 -6.551998,7.07251 -8.21016,8.85958 -16.55506,17.57623 -25.05884,26.15454 -1.39336,1.41011 -2.78131,2.82559 -4.16406,4.24609 -2.04543,2.10046 -4.10708,4.18374 -6.17286,6.26416 l -1.8316,1.9003 c -24.02936,23.91421 -66.00557,10.69802 -94.65277,11.06064 v 168 l 58,1 c 30.35546,3.79443 30.35546,3.79443 43.37891,17.01563 l 1.98899,1.98748 c 1.37569,1.37802 2.74774,2.75968 4.11623,4.14484 2.06819,2.09176 4.14935,4.1699 6.23267,6.24658 6.87552,6.89041 13.43025,13.80534 19.2832,21.60547 5.573935,6.98354 11.3661,13.67388 17.437499,20.22266 2.661163,2.88428 5.24949,5.82071 7.820312,8.78515 2.821044,3.22586 5.703196,6.39642 8.578125,9.57422 1.798374,2.00938 3.547726,4.04712 5.289063,6.10547 3.727868,4.28705 7.742389,8.28942 11.75,12.3125 l 2.059082,2.073 1.933105,1.927 1.753418,1.75 c 1.192644,1.36192 1.192644,1.36192 2.379395,1.25 V 65.019531 c -1.169391,-0.11526 -1.169391,-0.11526 -2.25586,1.202393 z"
fill="#000000"
transform="translate(370.98828,94.980469)"
id="path836"
sodipodi:nodetypes="ccccccccccsssccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /><path
d="m 0,0 c 12.687715,8.3646425 16.54757,23.578013 21.25,37.25 0.420028,1.211683 0.420028,1.211683 0.848541,2.447845 C 24.093738,45.455849 26.057576,51.223992 28,57 c 0.358289,1.064594 0.358289,1.064594 0.723816,2.150696 9.196303,27.421957 18.34758,56.379674 22.213684,85.099304 0.165,1.21301 0.33,2.42602 0.5,3.67578 0.133418,0.98348 0.133418,0.98348 0.269531,1.98682 0.307725,2.19254 0.641643,4.37993 0.980469,6.56787 C 65.117247,237.74117 51.79423,319.60536 24,408 c -0.37689,1.17031 -0.753779,2.34062 -1.14209,3.54639 C 17.545759,427.78218 11.971055,440.11885 -3.1601563,449.3125 -10.974406,453.17271 -20.495807,453.32002 -29,452 c -6.447118,-2.21023 -11.581457,-5.80171 -16,-11 -0.659355,-0.72703 -0.659355,-0.72703 -1.332031,-1.46875 C -53.332437,431.62301 -53,422.82358 -53,412.69922 c 0.741111,-10.03973 4.593387,-18.57148 8.476563,-27.75293 C -4.1662297,289.1502 -7.3944601,181.67277 -47.370117,59.287109 -52.165555,46.157988 -56.413045,31.232358 -51.4375,17.4375 -46.91216,8.1345364 -38.697322,0.74480411 -29.140625,-3.171875 -19.460116,-5.7244469 -8.7875393,-4.8407102 0,0 Z"
fill="#000000"
transform="translate(634,136)"
id="path838" /><path
d="m 0,0 c 17.968337,10.39053 22.143536,33.207156 27.238281,51.816406 9.06097,33.99317 13.985108,69.235084 14.882813,104.410154 0.02191,0.81179 0.04383,1.62358 0.06641,2.45996 1.024973,44.84255 -6.637484,88.87597 -20.066406,131.54004 -0.326455,1.04898 -0.65291,2.09795 -0.989258,3.17871 -1.007854,3.21683 -2.036103,6.4263 -3.073242,9.63379 -0.304138,0.96027 -0.608277,1.92054 -0.921631,2.90991 -3.75203,11.33325 -8.7198824,22.01013 -19.3283693,28.21509 -8.8558147,2.55168 -16.4996667,1.12221 -24.6874997,-2.9375 -8.148586,-4.91088 -14.567027,-10.35992 -18.375,-19.1875 -1.817982,-11.08969 -0.01228,-20.87108 3,-31.5625 0.556674,-2.04436 1.107614,-4.09021 1.658188,-6.13623 0.370535,-1.37582 0.742896,-2.75115 1.117096,-4.12597 1.752041,-6.46008 3.279791,-12.96668 4.787216,-19.4878 1.519228,-6.51781 3.16177,-12.83043 5.4375,-19.125 3.245102,-9.10722 4.514672,-18.63286 5.973633,-28.16113 0.401367,-2.21387 0.401367,-2.21387 1.401367,-5.21387 0.06725,-2.09304 -0.0012,-4.16495 -0.0625,-6.25781 0.05358,-2.35085 0.2595,-4.56839 0.542969,-6.89844 5.335996,-46.10945 -6.821894,-100.284491 -23.167969,-143.246091 -2.853907,-7.822763 -3.915598,-16.44719 -0.75,-24.347657 C -40.982968,8.9763575 -32.960334,3.2365619 -24.558594,-0.921875 -17.345835,-3.2139762 -7.0522415,-2.8528916 0,0 Z"
fill="#000000"
transform="translate(503.87891,195.77344)"
id="path840" /></g></svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

View file

@ -20,6 +20,7 @@ const ENTITY_TYPE_ICON = {
PolyLine: "&#xe01b;",
Shape: "n",
Sphere: "n",
Sound: "G",
Text: "l",
Web: "q",
Zone: "o",