diff --git a/src/Application.cpp b/src/Application.cpp index 51d1224..73dcfe8 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -79,8 +79,7 @@ bool Application::init_clcaster() { bool Application::init_events() { - // Start up the input handler and link the camera to some of the events - + // Link the camera to the input handler camera->subscribe_to_publisher(&input_handler, vr::Event::EventType::KeyHeld); camera->subscribe_to_publisher(&input_handler, vr::Event::EventType::KeyPressed); camera->subscribe_to_publisher(&input_handler, vr::Event::EventType::MouseMoved); diff --git a/src/Logger.cpp b/src/Logger.cpp index 4cf104e..82fd869 100644 --- a/src/Logger.cpp +++ b/src/Logger.cpp @@ -56,7 +56,6 @@ bool Logger::open_log_file() { } else { return true; } - } std::ostream& Logger::get_stream() { diff --git a/src/main.cpp b/src/main.cpp index 4699ec5..3a57ea4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,11 +19,14 @@ /** * TODO: * - Inconsistent lighting constants. GUI manipulation - * Ancillary settings buffer and memory controller + * + Ancillary settings buffer and memory controller * - Attachment lookup and aux buffer, contour lookup & masking * - Traversal algorithm + related stacks and data structures + * + Passing to GPU, Syncing? * - Octree, Map interface with the GPU * - Octree, Map refactoring + * - Separate Application stages into areas that make sense + * - */ #include "Application.h"