mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-15 00:17:48 -06:00
* Cleanup * CMake cleanups * Update current year * Update copyright header * Use script to return list of all modules * Update credits, license and ghoul
148 lines
5.5 KiB
C++
148 lines
5.5 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2019 *
|
|
* *
|
|
* 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 <openspace/util/openspacemodule.h>
|
|
|
|
#include <openspace/documentation/documentation.h>
|
|
#include <openspace/scripting/lualibrary.h>
|
|
#include <ghoul/fmt.h>
|
|
#include <ghoul/filesystem/filesystem.h>
|
|
#include <ghoul/logging/logmanager.h>
|
|
#include <ghoul/misc/dictionary.h>
|
|
#include <algorithm>
|
|
|
|
#include <openspace/modulepath.h>
|
|
|
|
|
|
namespace {
|
|
constexpr const char* _loggerCat = "OpenSpaceModule";
|
|
constexpr const char* ModuleBaseToken = "MODULE_";
|
|
} // namespace
|
|
|
|
namespace openspace {
|
|
|
|
OpenSpaceModule::OpenSpaceModule(std::string name)
|
|
: properties::PropertyOwner({ std::move(name) })
|
|
{}
|
|
|
|
void OpenSpaceModule::initialize(const ModuleEngine* moduleEngine,
|
|
const ghoul::Dictionary& configuration)
|
|
{
|
|
std::string upperIdentifier = identifier();
|
|
std::transform(
|
|
upperIdentifier.begin(),
|
|
upperIdentifier.end(),
|
|
upperIdentifier.begin(),
|
|
[](char v) { return static_cast<char>(toupper(v)); }
|
|
);
|
|
|
|
std::string moduleToken =
|
|
ghoul::filesystem::FileSystem::TokenOpeningBraces +
|
|
std::string(ModuleBaseToken) +
|
|
upperIdentifier +
|
|
ghoul::filesystem::FileSystem::TokenClosingBraces;
|
|
|
|
std::string path = modulePath();
|
|
LDEBUG(fmt::format("Registering module path {}: {}", moduleToken, path));
|
|
FileSys.registerPathToken(moduleToken, std::move(path));
|
|
|
|
_moduleEngine = moduleEngine;
|
|
internalInitialize(configuration);
|
|
}
|
|
|
|
void OpenSpaceModule::initializeGL() {
|
|
internalInitializeGL();
|
|
}
|
|
|
|
void OpenSpaceModule::deinitialize() {
|
|
internalDeinitialize();
|
|
}
|
|
|
|
void OpenSpaceModule::deinitializeGL() {
|
|
internalDeinitializeGL();
|
|
}
|
|
|
|
std::vector<documentation::Documentation> OpenSpaceModule::documentations() const {
|
|
return {};
|
|
}
|
|
|
|
scripting::LuaLibrary OpenSpaceModule::luaLibrary() const {
|
|
return {};
|
|
}
|
|
|
|
std::vector<scripting::LuaLibrary> OpenSpaceModule::luaLibraries() const {
|
|
return {};
|
|
}
|
|
|
|
ghoul::systemcapabilities::Version OpenSpaceModule::requiredOpenGLVersion() const {
|
|
return { 3, 3, 0 };
|
|
}
|
|
|
|
std::vector<std::string> OpenSpaceModule::requiredOpenGLExtensions() const {
|
|
return {};
|
|
}
|
|
|
|
std::string OpenSpaceModule::modulePath() const {
|
|
std::string moduleIdentifier = identifier();
|
|
std::transform(
|
|
moduleIdentifier.begin(),
|
|
moduleIdentifier.end(),
|
|
moduleIdentifier.begin(),
|
|
[](char v) { return static_cast<char>(tolower(v)); }
|
|
);
|
|
|
|
// First try the internal module directory
|
|
if (FileSys.directoryExists(absPath("${MODULES}/" + moduleIdentifier))) {
|
|
return absPath("${MODULES}/" + moduleIdentifier);
|
|
}
|
|
else { // Otherwise, it might be one of the external directories
|
|
for (const char* dir : ModulePaths) {
|
|
const std::string& path = std::string(dir) + '/' + moduleIdentifier;
|
|
if (FileSys.directoryExists(absPath(path))) {
|
|
return absPath(path);
|
|
}
|
|
}
|
|
}
|
|
|
|
// If we got this far, neither the internal module nor any of the external modules fit
|
|
throw ghoul::RuntimeError(
|
|
"Could not resolve path for module '" + identifier() + "'",
|
|
"OpenSpaceModule"
|
|
);
|
|
}
|
|
|
|
const ModuleEngine* OpenSpaceModule::moduleEngine() const {
|
|
return _moduleEngine;
|
|
}
|
|
|
|
void OpenSpaceModule::internalInitialize(const ghoul::Dictionary&) {}
|
|
|
|
void OpenSpaceModule::internalInitializeGL() {}
|
|
|
|
void OpenSpaceModule::internalDeinitialize() {}
|
|
|
|
void OpenSpaceModule::internalDeinitializeGL() {}
|
|
|
|
} // namespace openspace
|