/***************************************************************************************** * * * 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 "exoplanetsmodule_lua.inl" namespace openspace { const char* _loggerCat = "exoplanets"; using namespace exoplanets; ExoplanetsModule::ExoplanetsModule() : OpenSpaceModule(Name) {} void ExoplanetsModule::setClosestExoplanet(Exoplanet closestExo) { _exo = closestExo; } Exoplanet ExoplanetsModule::getClosestExoplanet() { return _exo; } void ExoplanetsModule::setStarName(std::string starName) { _starName = starName; } std::string ExoplanetsModule::getStarName() { return _starName; } void ExoplanetsModule::setPlsy(std::vector plsy) { _plsy = plsy; } std::vector ExoplanetsModule::getPlsy() { return _plsy; } void ExoplanetsModule::setPlna(std::vector plna) { _plna = plna; } std::vector ExoplanetsModule::getPlna() { return _plna; } scripting::LuaLibrary ExoplanetsModule::luaLibrary() const { scripting::LuaLibrary res; res.name = "exoplanets"; res.functions = { { "addExoplanetSystem", &addExoplanetSystem, {}, "string", "Adds the nodes to the scene graph of the exoplanet system." }, { "removeExoplanetSystem", &removeExoplanetSystem, {}, "string", "Removes the nodes from the scene graph of the exoplanet system." } }; return res; } void ExoplanetsModule::internalInitialize(const ghoul::Dictionary&) { auto fTask = FactoryManager::ref().factory(); auto fRenderable = FactoryManager::ref().factory(); ghoul_assert(fTask, "No task factory existed"); fTask->registerClass("ExoplanetsCsvToBinTask"); fRenderable->registerClass("RenderableOrbitdisc"); OsEng.registerModuleCallback(OpenSpaceEngine::CallbackOption::Initialize, [&] { _discoveryMethods = std::make_unique(); addPropertySubOwner(*_discoveryMethods); }); } std::vector ExoplanetsModule::documentations() const { return { ExoplanetsCsvToBinTask::documentation() }; } } // namespace openspace