/***************************************************************************************** * * * OpenSpace * * * * Copyright (c) 2014-2018 * * * * Permission is hereby granted, free of charge, to any person obtaining a copy of this * * software and associated documentation files (the "Software"), to deal in the Software * * without restriction, including without limitation the rights to use, copy, modify, * * merge, publish, distribute, sublicense, and/or sell copies of the Software, and to * * permit persons to whom the Software is furnished to do so, subject to the following * * conditions: * * * * The above copyright notice and this permission notice shall be included in all copies * * or substantial portions of the Software. * * * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF * * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE * * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * ****************************************************************************************/ #include #include #include #include #include #include #include #include #include #include namespace openspace::gui { GuiParallelComponent::GuiParallelComponent() : GuiPropertyComponent("GuiParallelComponent") { setVisibility(properties::Property::Visibility::All); } void GuiParallelComponent::renderDisconnected() { ImGui::Text("Not connected"); const bool connect = ImGui::Button("Connect"); if (connect) { OsEng.parallelConnection().clientConnect(); } } void GuiParallelComponent::renderClientWithHost() { ParallelConnection& parallel = OsEng.parallelConnection(); std::string connectionInfo = "Session hosted by \"" + parallel.hostName() + "\"\n"; size_t nConnections = parallel.nConnections(); size_t nClients = nConnections - 1; if (nClients > 2) { std::string c = std::to_string(nClients - 1); connectionInfo += "You and " + c + " more clients are connected"; } else if (nClients == 2) { std::string c = std::to_string(nClients - 1); connectionInfo += "You and " + c + " more client are connected"; } else if (nClients == 1) { connectionInfo += "You are the only client"; } ImGui::Text("%s", connectionInfo.c_str()); renderClientCommon(); size_t nTimeKeyframes = OsEng.timeManager().nKeyframes(); size_t nCameraKeyframes = OsEng.navigationHandler().keyframeNavigator().nKeyframes(); std::string timeKeyframeInfo = "TimeKeyframes : " + std::to_string(nTimeKeyframes); std::string cameraKeyframeInfo = "CameraKeyframes : " + std::to_string(nCameraKeyframes); std::string latencyStandardDeviation = "Latency standard deviation: " + std::to_string(parallel.latencyStandardDeviation()) + " s"; const bool resetTimeOffset = ImGui::Button("Reset time offset"); if (resetTimeOffset) { parallel.resetTimeOffset(); } ImGui::Text("%s", timeKeyframeInfo.c_str()); ImGui::Text("%s", cameraKeyframeInfo.c_str()); ImGui::Text("%s", latencyStandardDeviation.c_str()); } void GuiParallelComponent::renderClientWithoutHost() { ParallelConnection& parallel = OsEng.parallelConnection(); std::string connectionInfo = "Connected to parallel session with no host\n"; size_t nConnections = parallel.nConnections(); if (nConnections > 2) { std::string c = std::to_string(nConnections - 1); connectionInfo += "You and " + c + " more users are connected"; } else if (nConnections == 2) { std::string c = std::to_string(nConnections - 1); connectionInfo += "You and " + c + " more users are connected"; } else if (nConnections == 1) { connectionInfo += "You are the only one here"; } ImGui::Text("%s", connectionInfo.c_str()); renderClientCommon(); } void GuiParallelComponent::renderClientCommon() { ParallelConnection& parallel = OsEng.parallelConnection(); bool requestHostship = ImGui::Button("Request hostship"); const bool disconnect = ImGui::Button("Disconnect"); if (requestHostship) { parallel.requestHostship(); } if (disconnect) { parallel.signalDisconnect(); } } void GuiParallelComponent::renderHost() { ParallelConnection& parallel = OsEng.parallelConnection(); size_t nConnections = parallel.nConnections(); std::string connectionInfo = ""; size_t nClients = nConnections - 1; if (nClients == 1) { connectionInfo = "Hosting session with 1 client"; } else { connectionInfo = "Hosting session with " + std::to_string(nClients) + " clients"; } ImGui::Text("%s", connectionInfo.c_str()); const bool resignHostship = ImGui::Button("Resign hostship"); if (resignHostship) { parallel.resignHostship(); } } void GuiParallelComponent::render() { ImGui::SetNextWindowCollapsed(_isCollapsed); bool v = _isEnabled; ImGui::Begin("Parallel Connection", &v); _isEnabled = v; _isCollapsed = ImGui::IsWindowCollapsed(); ParallelConnection::Status status = OsEng.parallelConnection().status(); switch (status) { case ParallelConnection::Status::Disconnected: renderDisconnected(); break; case ParallelConnection::Status::ClientWithHost: renderClientWithHost(); break; case ParallelConnection::Status::ClientWithoutHost: renderClientWithoutHost(); break; case ParallelConnection::Status::Host: renderHost(); break; } GuiPropertyComponent::renderPropertyOwner(&OsEng.parallelConnection()); ImGui::End(); } } // namespace openspace::gui