mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-13 23:40:27 -06:00
245 lines
9.7 KiB
C++
245 lines
9.7 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2022 *
|
|
* *
|
|
* 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/globebrowsing/src/dashboarditemglobelocation.h>
|
|
|
|
#include <modules/globebrowsing/globebrowsingmodule.h>
|
|
#include <modules/globebrowsing/src/basictypes.h>
|
|
#include <modules/globebrowsing/src/renderableglobe.h>
|
|
#include <openspace/documentation/documentation.h>
|
|
#include <openspace/documentation/verifier.h>
|
|
#include <openspace/engine/globals.h>
|
|
#include <openspace/engine/moduleengine.h>
|
|
#include <openspace/navigation/navigationhandler.h>
|
|
#include <openspace/navigation/orbitalnavigator.h>
|
|
#include <openspace/scene/scenegraphnode.h>
|
|
#include <openspace/util/distanceconversion.h>
|
|
#include <openspace/util/updatestructures.h>
|
|
#include <ghoul/font/font.h>
|
|
#include <ghoul/font/fontmanager.h>
|
|
#include <ghoul/font/fontrenderer.h>
|
|
#include <ghoul/misc/profiling.h>
|
|
|
|
namespace {
|
|
constexpr const char* KeyFontMono = "Mono";
|
|
constexpr const float DefaultFontSize = 10.f;
|
|
|
|
constexpr openspace::properties::Property::PropertyInfo FontNameInfo = {
|
|
"FontName",
|
|
"Font Name",
|
|
"This value is the name of the font that is used. It can either refer to an "
|
|
"internal name registered previously, or it can refer to a path that is used."
|
|
};
|
|
|
|
constexpr openspace::properties::Property::PropertyInfo FontSizeInfo = {
|
|
"FontSize",
|
|
"Font Size",
|
|
"This value determines the size of the font that is used to render the date."
|
|
};
|
|
|
|
constexpr openspace::properties::Property::PropertyInfo DisplayFormatInfo = {
|
|
"DisplayFormat",
|
|
"Display Format",
|
|
"Choosing the format in which the camera location is displayed"
|
|
};
|
|
|
|
constexpr openspace::properties::Property::PropertyInfo SignificantDigitsInfo = {
|
|
"SignificantDigits",
|
|
"Significant Digits",
|
|
"Determines the number of significant digits that are shown in the location text."
|
|
};
|
|
|
|
struct [[codegen::Dictionary(DashboardItemGlobeLocation)]] Parameters {
|
|
// [[codegen::verbatim(FontNameInfo.description)]]
|
|
std::optional<std::string> fontName;
|
|
|
|
// [[codegen::verbatim(FontSizeInfo.description)]]
|
|
std::optional<float> fontSize;
|
|
|
|
enum class DisplayFormat {
|
|
DecimalDegrees,
|
|
DegreeMinuteSeconds
|
|
};
|
|
|
|
// [[codegen::verbatim(DisplayFormatInfo.description)]]
|
|
std::optional<DisplayFormat> displayFormat;
|
|
|
|
// [[codegen::verbatim(SignificantDigitsInfo.description)]]
|
|
std::optional<int> significantDigits;
|
|
};
|
|
#include "dashboarditemglobelocation_codegen.cpp"
|
|
} // namespace
|
|
|
|
namespace openspace {
|
|
|
|
documentation::Documentation DashboardItemGlobeLocation::Documentation() {
|
|
return codegen::doc<Parameters>("globebrowsing_dashboarditem_globelocation");
|
|
}
|
|
|
|
DashboardItemGlobeLocation::DashboardItemGlobeLocation(
|
|
const ghoul::Dictionary& dictionary)
|
|
: DashboardItem(dictionary)
|
|
, _fontName(FontNameInfo, KeyFontMono)
|
|
, _fontSize(FontSizeInfo, DefaultFontSize, 10.f, 144.f, 1.f)
|
|
, _displayFormat(DisplayFormatInfo)
|
|
, _significantDigits(SignificantDigitsInfo, 4, 1, 12)
|
|
, _font(global::fontManager->font(KeyFontMono, 10))
|
|
{
|
|
const Parameters p = codegen::bake<Parameters>(dictionary);
|
|
|
|
_fontName = p.fontName.value_or(_fontName);
|
|
_fontName.onChange([this]() {
|
|
_font = global::fontManager->font(_fontName, _fontSize);
|
|
});
|
|
addProperty(_fontName);
|
|
|
|
_fontSize = p.fontSize.value_or(_fontSize);
|
|
_fontSize.onChange([this]() {
|
|
_font = global::fontManager->font(_fontName, _fontSize);
|
|
});
|
|
addProperty(_fontSize);
|
|
|
|
auto updateFormatString = [this]() {
|
|
switch (_displayFormat.value()) {
|
|
case static_cast<int>(DisplayFormat::DecimalDegrees):
|
|
_formatString = fmt::format(
|
|
"Position: {{:03.{0}f}}, {{:03.{0}f}} "
|
|
"Altitude: {{:03.{0}f}} {{}}",
|
|
_significantDigits.value()
|
|
);
|
|
break;
|
|
case static_cast<int>(DisplayFormat::DegreeMinuteSeconds):
|
|
_formatString = fmt::format(
|
|
"Position: {{}}d {{}}' {{:03.{0}f}}\" {{}}, "
|
|
"{{}}d {{}}' {{:03.{0}f}}\" {{}} "
|
|
"Altitude: {{:03.{0}f}} {{}}",
|
|
_significantDigits.value()
|
|
);
|
|
break;
|
|
}
|
|
};
|
|
|
|
_displayFormat.addOptions({
|
|
{ static_cast<int>(DisplayFormat::DecimalDegrees), "Decimal Degrees" },
|
|
{ static_cast<int>(DisplayFormat::DegreeMinuteSeconds), "Degree Minute Seconds" }
|
|
});
|
|
_displayFormat.onChange(updateFormatString);
|
|
addProperty(_displayFormat);
|
|
|
|
if (p.displayFormat.has_value()) {
|
|
switch (*p.displayFormat) {
|
|
case Parameters::DisplayFormat::DecimalDegrees:
|
|
_displayFormat = static_cast<int>(DisplayFormat::DecimalDegrees);
|
|
break;
|
|
case Parameters::DisplayFormat::DegreeMinuteSeconds:
|
|
_displayFormat = static_cast<int>(DisplayFormat::DegreeMinuteSeconds);
|
|
break;
|
|
}
|
|
}
|
|
else {
|
|
_displayFormat = static_cast<int>(DisplayFormat::DecimalDegrees);
|
|
}
|
|
|
|
|
|
_significantDigits = p.significantDigits.value_or(_significantDigits);
|
|
_significantDigits.onChange(updateFormatString);
|
|
addProperty(_significantDigits);
|
|
|
|
_font = global::fontManager->font(_fontName, _fontSize);
|
|
_buffer.resize(128);
|
|
updateFormatString();
|
|
}
|
|
|
|
void DashboardItemGlobeLocation::render(glm::vec2& penPosition) {
|
|
ZoneScoped
|
|
|
|
GlobeBrowsingModule* module = global::moduleEngine->module<GlobeBrowsingModule>();
|
|
|
|
glm::dvec3 position = module->geoPosition();
|
|
double lat = position.x;
|
|
double lon = position.y;
|
|
double altitude = position.z;
|
|
|
|
std::pair<double, std::string> dist = simplifyDistance(altitude);
|
|
|
|
std::fill(_buffer.begin(), _buffer.end(), char(0));
|
|
char* end = nullptr;
|
|
switch (_displayFormat.value()) {
|
|
case static_cast<int>(DisplayFormat::DecimalDegrees):
|
|
{
|
|
end = fmt::format_to(
|
|
_buffer.data(),
|
|
fmt::runtime(_formatString), lat, lon, dist.first, dist.second
|
|
);
|
|
break;
|
|
}
|
|
case static_cast<int>(DisplayFormat::DegreeMinuteSeconds):
|
|
{
|
|
const bool isNorth = lat > 0.0;
|
|
lat = std::abs(lat);
|
|
|
|
const bool isEast = lon > 0.0;
|
|
lon = std::abs(lon);
|
|
|
|
const double latDeg = std::trunc(lat);
|
|
const double latDegRemainder = lat - latDeg;
|
|
const double latMin = std::trunc(latDegRemainder * 60.f);
|
|
const double latMinRemainder = latDegRemainder * 60.f - latMin;
|
|
const double latSec = latMinRemainder * 60.f;
|
|
|
|
const double lonDeg = std::trunc(lon);
|
|
const double lonDegRemainder = lon - lonDeg;
|
|
const double lonMin = std::trunc(lonDegRemainder * 60.f);
|
|
const double lonMinRemainder = lonDegRemainder * 60.f - lonMin;
|
|
const double lonSec = lonMinRemainder * 60.f;
|
|
|
|
|
|
end = fmt::format_to(
|
|
_buffer.data(),
|
|
fmt::runtime(_formatString),
|
|
latDeg, latMin, latSec, isNorth ? "N" : "S",
|
|
lonDeg, lonMin, lonSec, isEast ? "E" : "W",
|
|
dist.first, dist.second
|
|
);
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
std::string_view text = std::string_view(_buffer.data(), end - _buffer.data());
|
|
|
|
RenderFont(*_font, penPosition, text);
|
|
penPosition.y -= _font->height();
|
|
}
|
|
|
|
glm::vec2 DashboardItemGlobeLocation::size() const {
|
|
ZoneScoped
|
|
|
|
return _font->boundingBox(
|
|
fmt::format("Position: {}, {} Altitude: {}", 1.f, 1.f, 1.f)
|
|
);
|
|
}
|
|
|
|
} // namespace openspace
|