/***************************************************************************************** * * * OpenSpace * * * * Copyright (c) 2014-2021 * * * * 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 "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." }; } // 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) { FactoryManager::ref().addFactory( std::make_unique>(), "PlanetGeometry" ); auto fRenderable = FactoryManager::ref().factory(); ghoul_assert(fRenderable, "Renderable factory was not created"); fRenderable->registerClass( "RenderableConstellationBounds" ); fRenderable->registerClass("RenderableFluxNodes"); fRenderable->registerClass("RenderableHabitableZone"); fRenderable->registerClass("RenderableRings"); fRenderable->registerClass("RenderableSatellites"); fRenderable->registerClass("RenderableSmallBody"); fRenderable->registerClass("RenderableStars"); fRenderable->registerClass("RenderableTravelSpeed"); auto fTranslation = FactoryManager::ref().factory(); ghoul_assert(fTranslation, "Ephemeris factory was not created"); fTranslation->registerClass("KeplerTranslation"); fTranslation->registerClass("SpiceTranslation"); fTranslation->registerClass("TLETranslation"); fTranslation->registerClass("HorizonsTranslation"); /*auto fTasks = FactoryManager::ref().factory(); ghoul_assert(fTasks, "No task factory existed"); fTasks->registerClass("GenerateDebrisVolumeTask");*/ auto fRotation = FactoryManager::ref().factory(); ghoul_assert(fRotation, "Rotation factory was not created"); fRotation->registerClass("SpiceRotation"); auto fGeometry = FactoryManager::ref().factory(); ghoul_assert(fGeometry, "Planet geometry factory was not created"); fGeometry->registerClass("SimpleSphere"); 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 { RenderableConstellationBounds::Documentation(), RenderableFluxNodes::Documentation(), RenderableHabitableZone::Documentation(), RenderableRings::Documentation(), RenderableSatellites::Documentation(), RenderableSmallBody::Documentation(), RenderableStars::Documentation(), RenderableTravelSpeed::Documentation(), SpiceRotation::Documentation(), SpiceTranslation::Documentation(), KeplerTranslation::Documentation(), TLETranslation::Documentation(), HorizonsTranslation::Documentation(), planetgeometry::PlanetGeometry::Documentation(), planetgeometry::SimpleSphereGeometry::Documentation() }; } scripting::LuaLibrary SpaceModule::luaLibrary() const { scripting::LuaLibrary res; res.name = "space"; res.functions = { { "convertFromRaDec", &space::luascriptfunctions::convertFromRaDec, "string/double, string/double, double", "Returns the cartesian world position of a ra dec coordinate with distance. " "If the coordinate is given as strings the format should be ra 'XhYmZs' and " "dec 'XdYmZs'. If the coordinate is given as numbers the values should be " "in degrees." }, { "convertToRaDec", &space::luascriptfunctions::convertToRaDec, "double, double, double", "Returns the formatted ra, dec strings and distance for a given cartesian " "world coordinate." } }; return res; } } // namespace openspace