mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-01 01:01:37 -06:00
245 lines
9.1 KiB
C++
245 lines
9.1 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2024 *
|
|
* *
|
|
* 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 <modules/space/rendering/renderableconstellationsbase.h>
|
|
|
|
#include <openspace/documentation/documentation.h>
|
|
#include <openspace/engine/globals.h>
|
|
#include <openspace/engine/windowdelegate.h>
|
|
#include <openspace/rendering/renderengine.h>
|
|
#include <openspace/util/updatestructures.h>
|
|
#include <ghoul/filesystem/filesystem.h>
|
|
#include <ghoul/glm.h>
|
|
#include <ghoul/misc/stringhelper.h>
|
|
#include <ghoul/opengl/programobject.h>
|
|
#include <fstream>
|
|
#include <optional>
|
|
|
|
namespace {
|
|
constexpr std::string_view _loggerCat = "RenderableConstellationsBase";
|
|
|
|
constexpr openspace::properties::Property::PropertyInfo NamesFileInfo = {
|
|
"NamesFile",
|
|
"Constellation Names File Path",
|
|
"Specifies the file that contains the mapping between constellation "
|
|
"abbreviations and full names of the constellations. If this value is empty, the "
|
|
"abbreviations are used as the full names",
|
|
openspace::properties::Property::Visibility::AdvancedUser
|
|
};
|
|
|
|
constexpr openspace::properties::Property::PropertyInfo LineWidthInfo = {
|
|
"LineWidth",
|
|
"Line Width",
|
|
"The line width of the constellation",
|
|
// @VISIBILITY(1.67)
|
|
openspace::properties::Property::Visibility::NoviceUser
|
|
};
|
|
|
|
constexpr openspace::properties::Property::PropertyInfo SelectionInfo = {
|
|
"ConstellationSelection",
|
|
"Constellation Selection",
|
|
"The constellations that are selected are displayed on the celestial sphere",
|
|
// @VISIBILITY(1.33)
|
|
openspace::properties::Property::Visibility::NoviceUser
|
|
};
|
|
|
|
const openspace::properties::PropertyOwner::PropertyOwnerInfo LabelsInfo = {
|
|
"Labels",
|
|
"Labels",
|
|
"The labels for the constellations"
|
|
};
|
|
|
|
struct [[codegen::Dictionary(RenderableConstellationsBase)]] Parameters {
|
|
// [[codegen::verbatim(NamesFileInfo.description)]]
|
|
std::optional<std::filesystem::path> namesFile;
|
|
|
|
// [[codegen::verbatim(LineWidthInfo.description)]]
|
|
std::optional<float> lineWidth;
|
|
|
|
// [[codegen::verbatim(SelectionInfo.description)]]
|
|
std::optional<std::vector<std::string>> selection;
|
|
|
|
// [[codegen::verbatim(LabelsInfo.description)]]
|
|
std::optional<ghoul::Dictionary> labels
|
|
[[codegen::reference("labelscomponent")]];
|
|
};
|
|
#include "renderableconstellationsbase_codegen.cpp"
|
|
} // namespace
|
|
|
|
namespace openspace {
|
|
|
|
documentation::Documentation RenderableConstellationsBase::Documentation() {
|
|
return codegen::doc<Parameters>("space_renderable_constellationsbase");
|
|
}
|
|
|
|
RenderableConstellationsBase::RenderableConstellationsBase(
|
|
const ghoul::Dictionary& dictionary)
|
|
: Renderable(dictionary)
|
|
, _lineWidth(LineWidthInfo, 2.f, 1.f, 16.f)
|
|
, _selection(SelectionInfo)
|
|
, _namesFilename(NamesFileInfo)
|
|
{
|
|
const Parameters p = codegen::bake<Parameters>(dictionary);
|
|
|
|
addProperty(Fadeable::_opacity);
|
|
|
|
// Avoid reading files here, instead do it in multithreaded initialize()
|
|
if (p.namesFile.has_value()) {
|
|
_namesFilename = absPath(p.namesFile.value().string()).string();
|
|
}
|
|
_namesFilename.onChange([this]() { loadConstellationFile(); });
|
|
addProperty(_namesFilename);
|
|
|
|
_lineWidth = p.lineWidth.value_or(_lineWidth);
|
|
addProperty(_lineWidth);
|
|
|
|
if (p.labels.has_value()) {
|
|
_labels = std::make_unique<LabelsComponent>(*p.labels);
|
|
_hasLabels = true;
|
|
addPropertySubOwner(_labels.get());
|
|
// Fading of the labels should also depend on the fading of the renderable
|
|
_labels->setParentFadeable(this);
|
|
}
|
|
|
|
_selection.onChange([this]() { selectionPropertyHasChanged(); });
|
|
addProperty(_selection);
|
|
|
|
_assetSelection = p.selection.value_or(_assetSelection);
|
|
}
|
|
|
|
std::string RenderableConstellationsBase::constellationFullName(
|
|
const std::string& identifier) const
|
|
{
|
|
if (_namesTranslation.empty() || identifier.empty()) {
|
|
LWARNING("List of constellations or the given identifier was empty");
|
|
return "";
|
|
}
|
|
|
|
if (_namesTranslation.contains(identifier)) {
|
|
return _namesTranslation.at(identifier);
|
|
}
|
|
|
|
throw ghoul::RuntimeError(std::format(
|
|
"Identifier '{}' could not be found in list of constellations", identifier
|
|
));
|
|
}
|
|
|
|
void RenderableConstellationsBase::loadConstellationFile() {
|
|
if (_namesFilename.value().empty()) {
|
|
return;
|
|
}
|
|
|
|
// Reset
|
|
_selection.clearOptions();
|
|
_namesTranslation.clear();
|
|
|
|
// Load the constellation names file
|
|
std::ifstream file;
|
|
file.exceptions(std::ifstream::goodbit);
|
|
file.open(absPath(_namesFilename));
|
|
|
|
std::string line;
|
|
while (file.good()) {
|
|
std::getline(file, line);
|
|
if (line.empty()) {
|
|
continue;
|
|
}
|
|
|
|
std::string abbreviation;
|
|
std::stringstream s(line);
|
|
s >> abbreviation;
|
|
|
|
std::string fullName;
|
|
std::getline(s, fullName);
|
|
ghoul::trimWhitespace(fullName);
|
|
_namesTranslation[abbreviation] = fullName;
|
|
}
|
|
|
|
fillSelectionProperty();
|
|
}
|
|
|
|
void RenderableConstellationsBase::fillSelectionProperty() {
|
|
for (const std::pair<const std::string, std::string>& pair : _namesTranslation) {
|
|
_selection.addOption(pair.second);
|
|
}
|
|
}
|
|
|
|
void RenderableConstellationsBase::initialize() {
|
|
loadConstellationFile();
|
|
|
|
if (!_hasLabels) {
|
|
return;
|
|
}
|
|
|
|
_labels->initialize();
|
|
|
|
for (dataloader::Labelset::Entry& entry : _labels->labelSet().entries) {
|
|
if (!entry.identifier.empty()) {
|
|
std::string fullName = constellationFullName(entry.identifier);
|
|
if (!fullName.empty()) {
|
|
entry.text = std::move(fullName);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
bool RenderableConstellationsBase::isReady() const {
|
|
return _hasLabels ? _labels->isReady() : true;
|
|
}
|
|
|
|
void RenderableConstellationsBase::render(const RenderData& data, RendererTasks&) {
|
|
if (!_hasLabels || !_labels->enabled()) {
|
|
return;
|
|
}
|
|
|
|
const glm::dmat4 modelTransform = calcModelTransform(data);
|
|
const glm::dmat4 modelViewProjectionTransform =
|
|
calcModelViewProjectionTransform(data, modelTransform);
|
|
|
|
const glm::vec3 lookup = data.camera.lookUpVectorWorldSpace();
|
|
const glm::vec3 viewDirection = data.camera.viewDirectionWorldSpace();
|
|
glm::vec3 right = glm::cross(viewDirection, lookup);
|
|
const glm::vec3 up = glm::cross(right, viewDirection);
|
|
|
|
const glm::dmat4 worldToModelTransform = glm::inverse(modelTransform);
|
|
glm::vec3 orthoRight = glm::normalize(
|
|
glm::vec3(worldToModelTransform * glm::vec4(right, 0.f))
|
|
);
|
|
|
|
if (orthoRight == glm::vec3(0.f)) {
|
|
const glm::vec3 otherVector = glm::vec3(lookup.y, lookup.x, lookup.z);
|
|
right = glm::cross(viewDirection, otherVector);
|
|
orthoRight = glm::normalize(
|
|
glm::vec3(worldToModelTransform * glm::vec4(right, 0.f))
|
|
);
|
|
}
|
|
|
|
const glm::vec3 orthoUp = glm::normalize(
|
|
glm::vec3(worldToModelTransform * glm::dvec4(up, 0.f))
|
|
);
|
|
_labels->render(data, modelViewProjectionTransform, orthoRight, orthoUp);
|
|
}
|
|
|
|
} // namespace openspace
|