/***************************************************************************************** * * * OpenSpace * * * * Copyright (c) 2014-2023 * * * * 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 #include #include #include #include #include #include #include #include #include #include "spacemodule_lua.inl" namespace { constexpr openspace::properties::Property::PropertyInfo SpiceExceptionInfo = { "ShowExceptions", "Show Exceptions", "If enabled, errors from SPICE will be thrown and show up in the log. If " "disabled, the errors will be ignored silently", openspace::properties::Property::Visibility::Developer }; } // namespace namespace openspace { ghoul::opengl::ProgramObjectManager SpaceModule::ProgramObjectManager; SpaceModule::SpaceModule() : OpenSpaceModule(Name) , _showSpiceExceptions(SpiceExceptionInfo, true) { _showSpiceExceptions.onChange([&t = _showSpiceExceptions](){ SpiceManager::ref().setExceptionHandling(SpiceManager::UseException(t)); }); addProperty(_showSpiceExceptions); } void SpaceModule::internalInitialize(const ghoul::Dictionary& dictionary) { ghoul::TemplateFactory* fRenderable = FactoryManager::ref().factory(); ghoul_assert(fRenderable, "Renderable factory was not created"); fRenderable->registerClass( "RenderableConstellationBounds" ); fRenderable->registerClass( "RenderableConstellationLines" ); fRenderable->registerClass("RenderableFluxNodes"); fRenderable->registerClass("RenderableHabitableZone"); fRenderable->registerClass("RenderableRings"); fRenderable->registerClass("RenderableOrbitalKepler"); fRenderable->registerClass("RenderableStars"); fRenderable->registerClass("RenderableTravelSpeed"); ghoul::TemplateFactory* fTranslation = FactoryManager::ref().factory(); ghoul_assert(fTranslation, "Ephemeris factory was not created"); fTranslation->registerClass("KeplerTranslation"); fTranslation->registerClass("SpiceTranslation"); fTranslation->registerClass("GPTranslation"); fTranslation->registerClass("HorizonsTranslation"); ghoul::TemplateFactory* fRotation = FactoryManager::ref().factory(); ghoul_assert(fRotation, "Rotation factory was not created"); fRotation->registerClass("SpiceRotation"); if (dictionary.hasValue(SpiceExceptionInfo.identifier)) { _showSpiceExceptions = dictionary.value(SpiceExceptionInfo.identifier); } } void SpaceModule::internalDeinitializeGL() { ProgramObjectManager.releaseAll(ghoul::opengl::ProgramObjectManager::Warnings::Yes); } std::vector SpaceModule::documentations() const { return { HorizonsTranslation::Documentation(), KeplerTranslation::Documentation(), RenderableConstellationBounds::Documentation(), RenderableConstellationLines::Documentation(), RenderableFluxNodes::Documentation(), RenderableHabitableZone::Documentation(), RenderableRings::Documentation(), RenderableOrbitalKepler::Documentation(), RenderableStars::Documentation(), RenderableTravelSpeed::Documentation(), SpiceRotation::Documentation(), SpiceTranslation::Documentation(), LabelsComponent::Documentation(), GPTranslation::Documentation() }; } scripting::LuaLibrary SpaceModule::luaLibrary() const { return { "space", { codegen::lua::ConvertFromRaDec, codegen::lua::ConvertToRaDec, codegen::lua::ReadKeplerFile } }; } } // namespace openspace