summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorBastiaanOlij <mux213@gmail.com>2017-10-08 00:51:17 +1100
committerBastiaanOlij <mux213@gmail.com>2017-10-14 09:10:18 +1100
commitcc37d43f861b2fd4c3c5d5fbaf7186bf5c30d35f (patch)
tree98fefbcb57a800a0a7b84ae28ab06cdba38a34c6 /main
parent4585239a4bcb5350fadc1fbe5a6db1c2e67ab06a (diff)
Redoing the ARVR GDNative interface as module and tighter implementation
Diffstat (limited to 'main')
-rw-r--r--main/main.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp
index 6fbd906679..68e518ae3d 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -45,6 +45,7 @@
#include "input_map.h"
#include "io/resource_loader.h"
#include "scene/main/scene_tree.h"
+#include "servers/arvr_server.h"
#include "servers/audio_server.h"
#include "io/resource_loader.h"
@@ -82,6 +83,7 @@ static InputMap *input_map = NULL;
static bool _start_success = false;
static ScriptDebugger *script_debugger = NULL;
AudioServer *audio_server = NULL;
+ARVRServer *arvr_server = NULL;
static MessageQueue *message_queue = NULL;
static Performance *performance = NULL;
@@ -939,11 +941,14 @@ Error Main::setup2(Thread::ID p_main_tid_override) {
OS::get_singleton()->set_window_position(init_custom_pos);
}
- //right moment to create and initialize the audio server
+ // right moment to create and initialize the audio server
audio_server = memnew(AudioServer);
audio_server->init();
+ // also init our arvr_server from here
+ arvr_server = memnew(ARVRServer);
+
OS::get_singleton()->set_use_vsync(use_vsync);
register_core_singletons();
@@ -1775,6 +1780,11 @@ void Main::cleanup() {
memdelete(audio_server);
}
+ if (arvr_server) {
+ // cleanup now before we pull the rug from underneath...
+ memdelete(arvr_server);
+ }
+
unregister_driver_types();
unregister_module_types();
unregister_scene_types();