From 8dc41ca8b9ed812a297fac86281c5f7ee595f85d Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 25 Apr 2017 15:28:26 -0700 Subject: [PATCH] add support for ignore radius from agent scripts --- assignment-client/src/Agent.cpp | 7 +++++++ .../acScripts/BetterClientSimulationBotFromRecording.js | 2 ++ script-archive/acScripts/PlayRecordingOnAC.js | 3 +++ 3 files changed, 12 insertions(+) diff --git a/assignment-client/src/Agent.cpp b/assignment-client/src/Agent.cpp index 46e826c596..4336870618 100644 --- a/assignment-client/src/Agent.cpp +++ b/assignment-client/src/Agent.cpp @@ -31,6 +31,7 @@ #include #include #include +#include #include #include @@ -75,6 +76,8 @@ Agent::Agent(ReceivedMessage& message) : DependencyManager::set(ScriptEngine::AGENT_SCRIPT); DependencyManager::set(); + DependencyManager::set(); + auto& packetReceiver = DependencyManager::get()->getPacketReceiver(); @@ -351,6 +354,10 @@ void Agent::executeScript() { // give this AvatarData object to the script engine _scriptEngine->registerGlobalObject("Avatar", scriptedAvatar.data()); + // give scripts access to the Users object + _scriptEngine->registerGlobalObject("Users", DependencyManager::get().data()); + + auto player = DependencyManager::get(); connect(player.data(), &recording::Deck::playbackStateChanged, [=] { if (player->isPlaying()) { diff --git a/script-archive/acScripts/BetterClientSimulationBotFromRecording.js b/script-archive/acScripts/BetterClientSimulationBotFromRecording.js index c276d302e1..1b555972b9 100644 --- a/script-archive/acScripts/BetterClientSimulationBotFromRecording.js +++ b/script-archive/acScripts/BetterClientSimulationBotFromRecording.js @@ -126,6 +126,8 @@ Vec3.print("RANDOM LOCATION SELECTED:", LOCATION); var playFromCurrentLocation = true; var loop = true; +// Disable the privacy bubble +Users.disableIgnoreRadius(); // Set position here if playFromCurrentLocation is true Avatar.position = LOCATION; diff --git a/script-archive/acScripts/PlayRecordingOnAC.js b/script-archive/acScripts/PlayRecordingOnAC.js index 5979913d23..00f3f71bd4 100644 --- a/script-archive/acScripts/PlayRecordingOnAC.js +++ b/script-archive/acScripts/PlayRecordingOnAC.js @@ -20,6 +20,9 @@ Avatar.orientation = Quat.fromPitchYawRollDegrees(0, 0, 0); Avatar.scale = 1.0; Agent.isAvatar = true; +// Disable the privacy bubble +Users.disableIgnoreRadius(); + Recording.loadRecording(recordingFile, function(success) { if (success) { Script.update.connect(update);