/***************************************************************************************** * * * OpenSpace * * * * Copyright (c) 2014-2020 * * * * 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 #include #include #include #include #include namespace { constexpr const char* _loggerCat = "IswaCygnet"; constexpr openspace::properties::Property::PropertyInfo DeleteInfo = { "Delete", "Delete", "" // @TODO Missing documentation }; constexpr openspace::properties::Property::PropertyInfo AlphaInfo = { "Alpha", "Alpha", "" // @TODO Missing documentation }; } // namespace namespace openspace { IswaCygnet::IswaCygnet(const ghoul::Dictionary& dictionary) : Renderable(dictionary) , _alpha(AlphaInfo, 0.9f, 0.f, 1.f) , _delete(DeleteInfo) { // This changed from setIdentifier to setGuiName, 2018-03-14 ---abock std::string name; dictionary.getValue("Name", name); setGuiName(name); float renderableId; dictionary.getValue("Id", renderableId); float updateTime; dictionary.getValue("UpdateTime", updateTime); glm::vec4 spatialScale = glm::vec4(0.f); dictionary.getValue("SpatialScale", spatialScale); glm::vec3 min = glm::vec3(0.f); dictionary.getValue("GridMin", min); glm::vec3 max = glm::vec3(0.f); dictionary.getValue("GridMax", max); dictionary.getValue("Frame",_data.frame); dictionary.getValue("CoordinateType", _data.coordinateType); float xOffset = 0.f; dictionary.getValue("XOffset", xOffset); dictionary.getValue("Group", _data.groupName); _data.id = static_cast(renderableId); _data.updateTime = static_cast(updateTime); _data.spatialScale = spatialScale; _data.gridMin = min; _data.gridMax = max; glm::vec3 scale = glm::vec3((max.x - min.x), (max.y - min.y), (max.z - min.z)); _data.scale = scale; glm::vec3 offset = glm::vec3( (min.x + (std::abs(min.x) + std::abs(max.x)) / 2.f) + xOffset, (min.y + (std::abs(min.y) + std::abs(max.y)) / 2.f), (min.z + (std::abs(min.z) + std::abs(max.z)) / 2.f) ); _data.offset = offset; addProperty(_alpha); addProperty(_delete); } IswaCygnet::~IswaCygnet() {} void IswaCygnet::initializeGL() { _textures.push_back(nullptr); if (!_data.groupName.empty()) { initializeGroup(); } else { _delete.onChange([this]() { deinitialize(); global::scriptEngine.queueScript( "openspace.removeSceneGraphNode('" + identifier() + "')", scripting::ScriptEngine::RemoteScripting::Yes ); }); } initializeTime(); createGeometry(); downloadTextureResource(global::timeManager.time().j2000Seconds()); } void IswaCygnet::deinitializeGL() { if (!_data.groupName.empty()) { _group->groupEvent().unsubscribe(identifier()); } unregisterProperties(); destroyGeometry(); if (_shader) { global::renderEngine.removeRenderProgram(_shader.get()); _shader = nullptr; } } bool IswaCygnet::isReady() const { return !_shader; } void IswaCygnet::render(const RenderData& data, RendererTasks&) { if (!readyToRender()) { return; } glm::mat4 transform = glm::mat4(1.f); for (int i = 0; i < 3; i++){ for (int j = 0; j < 3; j++){ transform[i][j] = static_cast(_stateMatrix[i][j]); } } transform = transform * _rotation; glm::vec4 pposition = static_cast(glm::dvec4(data.modelTransform.translation, 0.0)) + transform * glm::vec4( _data.spatialScale.x * _data.offset, _data.spatialScale.w ); glm::vec3 position = glm::vec3(pposition) * pow(10.f, pposition.w); // Activate shader _shader->activate(); glEnable(GL_ALPHA_TEST); glDisable(GL_CULL_FACE); _shader->setUniform("ViewProjection", data.camera.viewProjectionMatrix()); _shader->setUniform("ModelTransform", transform); _shader->setUniform("campos", glm::vec4(data.camera.positionVec3(), 1.f)); _shader->setUniform("objpos", glm::vec4(position, 0.f)); _shader->setUniform("camrot", glm::mat4(data.camera.viewRotationMatrix())); _shader->setUniform("scaling", glm::vec2(1.f, 0.f)); setUniforms(); renderGeometry(); glEnable(GL_CULL_FACE); _shader->deactivate(); } void IswaCygnet::update(const UpdateData&) { if (!_enabled) { return; } // the texture resource is downloaded ahead of time, so we need to // now if we are going backwards or forwards _openSpaceTime = global::timeManager.time().j2000Seconds(); _realTime = std::chrono::duration_cast( std::chrono::system_clock::now().time_since_epoch() ); _stateMatrix = TransformationManager::ref().frameTransformationMatrix( _data.frame, "GALACTIC", _openSpaceTime ); const bool timeToUpdate = (fabs(_openSpaceTime - _lastUpdateOpenSpaceTime) >= _data.updateTime && (_realTime.count() - _lastUpdateRealTime.count()) > _minRealTimeUpdateInterval); if (_futureObject.valid() && DownloadManager::futureReady(_futureObject)) { const bool success = updateTextureResource(); if (success) { _textureDirty = true; } } if (_textureDirty && _data.updateTime != 0 && timeToUpdate) { updateTexture(); _textureDirty = false; double clockwiseSign = (global::timeManager.deltaTime() > 0) ? 1.0 : -1.0; downloadTextureResource(_openSpaceTime + clockwiseSign * _data.updateTime); _lastUpdateRealTime = _realTime; _lastUpdateOpenSpaceTime = _openSpaceTime; } if (!_transferFunctions.empty()) { for (TransferFunction& tf : _transferFunctions) { tf.update(); } } } void IswaCygnet::enabled(bool enabled) { _enabled = enabled; } void IswaCygnet::registerProperties() {} void IswaCygnet::unregisterProperties() {} void IswaCygnet::initializeTime() { _openSpaceTime = global::timeManager.time().j2000Seconds(); _lastUpdateOpenSpaceTime = 0.0; _realTime = std::chrono::duration_cast( std::chrono::system_clock::now().time_since_epoch() ); _lastUpdateRealTime = _realTime; _minRealTimeUpdateInterval = 100; } void IswaCygnet::initializeGroup() { _group = IswaManager::ref().iswaGroup(_data.groupName); //Subscribe to enable and delete property ghoul::Event& groupEvent = _group->groupEvent(); groupEvent.subscribe( identifier(), "enabledChanged", [&](const ghoul::Dictionary& dict) { LDEBUG(identifier() + " Event enabledChanged"); _enabled = dict.value("enabled"); } ); groupEvent.subscribe( identifier(), "alphaChanged", [&](const ghoul::Dictionary& dict) { LDEBUG(identifier() + " Event alphaChanged"); _alpha = dict.value("alpha"); } ); groupEvent.subscribe(identifier(), "clearGroup", [&](ghoul::Dictionary) { LDEBUG(identifier() + " Event clearGroup"); global::scriptEngine.queueScript( "openspace.removeSceneGraphNode('" + identifier() + "')", scripting::ScriptEngine::RemoteScripting::Yes ); }); } } //namespace openspace