mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-02 01:30:34 -06:00
Enables globe-browsing data to be cached using caching mrf's as it is loaded from the original dataset. Subsequent reads of tiles that have been cached do not query the original dataset but picks it up from the mrf data.
Supports anything that can be used a dataset for a gdal raster but raw images such as JPGs are explicitly disallowed as they lack necessary geotransform data.
Activated on a global scale by setting the following keys in openspace.cfg (ModuleConfigurations/GlobeBrowsing)
MRFCacheEnabled = true,
MRFCacheLocation = "<somepath>",
Settings can be overriden on a per-layer basis by adding the following entries to the layer entity of an asset
CacheSettings = { Enabled = true, Compression = "LERC", BlockSize = 512, Quality=25 },
The following per-layer settings are available and override the global module settings:
Enabled : enable/disable caching for this layer.
Compression: The compression algorithm to use for tile cache storage. (JPEG, PNG, or LERC)
BlockSize: Size of tiles in cache, should be a multiple of 2 although this is not required.
Quality: The quality setting of the JPEG compression (when used)
Note that heightlayers must use LERC compresison and this is the default unless overridden by a layer.
660 lines
24 KiB
C++
660 lines
24 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2023 *
|
|
* *
|
|
* 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/globebrowsingmodule.h>
|
|
|
|
#include <modules/globebrowsing/src/basictypes.h>
|
|
#include <modules/globebrowsing/src/dashboarditemglobelocation.h>
|
|
#include <modules/globebrowsing/src/gdalwrapper.h>
|
|
#include <modules/globebrowsing/src/geodeticpatch.h>
|
|
#include <modules/globebrowsing/src/globelabelscomponent.h>
|
|
#include <modules/globebrowsing/src/globetranslation.h>
|
|
#include <modules/globebrowsing/src/globerotation.h>
|
|
#include <modules/globebrowsing/src/layer.h>
|
|
#include <modules/globebrowsing/src/layeradjustment.h>
|
|
#include <modules/globebrowsing/src/layergroup.h>
|
|
#include <modules/globebrowsing/src/layermanager.h>
|
|
#include <modules/globebrowsing/src/memoryawaretilecache.h>
|
|
#include <modules/globebrowsing/src/renderableglobe.h>
|
|
#include <modules/globebrowsing/src/tileprovider/defaulttileprovider.h>
|
|
#include <modules/globebrowsing/src/tileprovider/imagesequencetileprovider.h>
|
|
#include <modules/globebrowsing/src/tileprovider/singleimagetileprovider.h>
|
|
#include <modules/globebrowsing/src/tileprovider/sizereferencetileprovider.h>
|
|
#include <modules/globebrowsing/src/tileprovider/spoutimageprovider.h>
|
|
#include <modules/globebrowsing/src/tileprovider/temporaltileprovider.h>
|
|
#include <modules/globebrowsing/src/tileprovider/tileindextileprovider.h>
|
|
#include <modules/globebrowsing/src/tileprovider/tileprovider.h>
|
|
#include <modules/globebrowsing/src/tileprovider/tileproviderbyindex.h>
|
|
#include <modules/globebrowsing/src/tileprovider/tileproviderbylevel.h>
|
|
#include <openspace/camera/camera.h>
|
|
#include <openspace/documentation/verifier.h>
|
|
#include <openspace/engine/globals.h>
|
|
#include <openspace/engine/globalscallbacks.h>
|
|
#include <openspace/engine/moduleengine.h>
|
|
#include <openspace/navigation/navigationhandler.h>
|
|
#include <openspace/navigation/navigationstate.h>
|
|
#include <openspace/navigation/orbitalnavigator.h>
|
|
#include <openspace/query/query.h>
|
|
#include <openspace/rendering/renderable.h>
|
|
#include <openspace/rendering/renderengine.h>
|
|
#include <openspace/scene/scene.h>
|
|
#include <openspace/scene/scenegraphnode.h>
|
|
#include <openspace/scripting/lualibrary.h>
|
|
#include <openspace/util/factorymanager.h>
|
|
#include <openspace/util/updatestructures.h>
|
|
#include <ghoul/filesystem/filesystem.h>
|
|
#include <ghoul/logging/logmanager.h>
|
|
#include <ghoul/fmt.h>
|
|
#include <ghoul/misc/assert.h>
|
|
#include <ghoul/misc/templatefactory.h>
|
|
#include <ghoul/misc/profiling.h>
|
|
#include <ghoul/systemcapabilities/generalcapabilitiescomponent.h>
|
|
#include <vector>
|
|
|
|
#include <gdal.h>
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning (push)
|
|
// CPL throws warning about missing DLL interface
|
|
#pragma warning (disable : 4251)
|
|
#endif // _MSC_VER
|
|
|
|
#include <cpl_string.h>
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning (pop)
|
|
#endif // _MSC_VER
|
|
|
|
#include "globebrowsingmodule_lua.inl"
|
|
|
|
namespace {
|
|
constexpr std::string_view _loggerCat = "GlobeBrowsingModule";
|
|
|
|
constexpr openspace::properties::Property::PropertyInfo TileCacheSizeInfo = {
|
|
"TileCacheSize",
|
|
"Tile Cache Size",
|
|
"The maximum size of the MemoryAwareTileCache, on the CPU and GPU"
|
|
};
|
|
|
|
constexpr openspace::properties::Property::PropertyInfo MRFCacheEnabledInfo = {
|
|
"MRFCacheEnabled",
|
|
"MRF Cache Enabled",
|
|
"Determines whether automatic caching of globe browsing data is enabled."
|
|
};
|
|
|
|
constexpr openspace::properties::Property::PropertyInfo MRFCacheLocationInfo = {
|
|
"MRFCacheLocation",
|
|
"MRF Cache Location",
|
|
"The location of the root folder for the MRF cache of globe browsing data."
|
|
};
|
|
|
|
openspace::GlobeBrowsingModule::Capabilities
|
|
parseSubDatasets(char** subDatasets, int nSubdatasets)
|
|
{
|
|
// Idea: Iterate over the list of sublayers keeping a current layer and identify
|
|
// it by its number. If this number changes, we know that we have a new
|
|
// layer
|
|
|
|
using Layer = openspace::GlobeBrowsingModule::Layer;
|
|
std::vector<Layer> result;
|
|
|
|
int currentLayerNumber = -1;
|
|
Layer currentLayer;
|
|
for (int i = 0; i < nSubdatasets; ++i) {
|
|
int iDataset = -1;
|
|
std::array<char, 256> IdentifierBuffer;
|
|
std::fill(IdentifierBuffer.begin(), IdentifierBuffer.end(), '\0');
|
|
int ret = sscanf(
|
|
subDatasets[i],
|
|
"SUBDATASET_%i_%255[^=]",
|
|
&iDataset,
|
|
IdentifierBuffer.data()
|
|
);
|
|
if (ret != 2) {
|
|
LERROR("Error parsing dataset");
|
|
continue;
|
|
}
|
|
|
|
|
|
if (iDataset != currentLayerNumber) {
|
|
// We are done with the previous version
|
|
result.push_back(std::move(currentLayer));
|
|
currentLayer = Layer();
|
|
currentLayerNumber = iDataset;
|
|
}
|
|
|
|
const std::string identifier = std::string(IdentifierBuffer.data());
|
|
const std::string ds(subDatasets[i]);
|
|
const std::string value = ds.substr(ds.find_first_of('=') + 1);
|
|
|
|
// The DESC/NAME difference is not a typo
|
|
if (identifier == "DESC") {
|
|
currentLayer.name = value;
|
|
}
|
|
else if (identifier == "NAME") {
|
|
currentLayer.url = value;
|
|
}
|
|
else {
|
|
LINFOC(
|
|
"GlobeBrowsingGUI", "Unknown subdataset identifier: " + identifier
|
|
);
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
struct [[codegen::Dictionary(GlobeBrowsingModule)]] Parameters {
|
|
|
|
// [[codegen::verbatim(TileCacheSizeInfo.description)]]
|
|
std::optional<int> tileCacheSize;
|
|
|
|
// [[codegen::verbatim(MRFCacheEnabledInfo.description)]]
|
|
std::optional<bool> mrfCacheEnabled [[codegen::key("MRFCacheEnabled")]];
|
|
|
|
// [[codegen::verbatim(MRFCacheLocationInfo.description)]]
|
|
std::optional<std::string> mrfCacheLocation [[codegen::key("MRFCacheLocation")]];
|
|
};
|
|
#include "globebrowsingmodule_codegen.cpp"
|
|
} // namespace
|
|
|
|
namespace openspace {
|
|
|
|
GlobeBrowsingModule::GlobeBrowsingModule()
|
|
: OpenSpaceModule(Name)
|
|
, _tileCacheSizeMB(TileCacheSizeInfo, 1024)
|
|
, _mrfCacheEnabled(MRFCacheEnabledInfo, false)
|
|
, _mrfCacheLocation(MRFCacheLocationInfo, "${BASE}/cache_mrf")
|
|
{
|
|
addProperty(_tileCacheSizeMB);
|
|
addProperty(_mrfCacheEnabled);
|
|
addProperty(_mrfCacheLocation);
|
|
}
|
|
|
|
void GlobeBrowsingModule::internalInitialize(const ghoul::Dictionary& dict) {
|
|
using namespace globebrowsing;
|
|
|
|
const Parameters p = codegen::bake<Parameters>(dict);
|
|
_tileCacheSizeMB = p.tileCacheSize.value_or(_tileCacheSizeMB);
|
|
_mrfCacheEnabled = p.mrfCacheEnabled.value_or(_mrfCacheEnabled);
|
|
_mrfCacheLocation = p.mrfCacheLocation.value_or(_mrfCacheLocation);
|
|
|
|
// Initialize
|
|
global::callback::initializeGL->emplace_back([&]() {
|
|
ZoneScopedN("GlobeBrowsingModule");
|
|
|
|
_tileCache = std::make_unique<cache::MemoryAwareTileCache>(_tileCacheSizeMB);
|
|
addPropertySubOwner(_tileCache.get());
|
|
|
|
TileProvider::initializeDefaultTile();
|
|
|
|
// Convert from MB to Bytes
|
|
GdalWrapper::create(
|
|
512ULL * 1024ULL * 1024ULL, // 512 MB
|
|
static_cast<size_t>(CpuCap.installedMainMemory() * 0.25 * 1024 * 1024)
|
|
);
|
|
addPropertySubOwner(GdalWrapper::ref());
|
|
});
|
|
|
|
global::callback::deinitializeGL->emplace_back([]() {
|
|
ZoneScopedN("GlobeBrowsingModule");
|
|
|
|
TileProvider::deinitializeDefaultTile();
|
|
});
|
|
|
|
// Render
|
|
global::callback::render->emplace_back([&]() {
|
|
ZoneScopedN("GlobeBrowsingModule");
|
|
|
|
_tileCache->update();
|
|
});
|
|
|
|
// Deinitialize
|
|
global::callback::deinitialize->emplace_back([&]() {
|
|
ZoneScopedN("GlobeBrowsingModule");
|
|
|
|
GdalWrapper::destroy();
|
|
});
|
|
|
|
ghoul::TemplateFactory<Renderable>* fRenderable =
|
|
FactoryManager::ref().factory<Renderable>();
|
|
ghoul_assert(fRenderable, "Renderable factory was not created");
|
|
fRenderable->registerClass<globebrowsing::RenderableGlobe>("RenderableGlobe");
|
|
|
|
ghoul::TemplateFactory<Translation>* fTranslation =
|
|
FactoryManager::ref().factory<Translation>();
|
|
ghoul_assert(fTranslation, "Translation factory was not created");
|
|
fTranslation->registerClass<globebrowsing::GlobeTranslation>("GlobeTranslation");
|
|
|
|
ghoul::TemplateFactory<Rotation>* fRotation =
|
|
FactoryManager::ref().factory<Rotation>();
|
|
ghoul_assert(fRotation, "Rotation factory was not created");
|
|
fRotation->registerClass<globebrowsing::GlobeRotation>("GlobeRotation");
|
|
|
|
FactoryManager::ref().addFactory<TileProvider>("TileProvider");
|
|
|
|
ghoul::TemplateFactory<TileProvider>* fTileProvider =
|
|
FactoryManager::ref().factory<TileProvider>();
|
|
ghoul_assert(fTileProvider, "TileProvider factory was not created");
|
|
|
|
|
|
fTileProvider->registerClass<DefaultTileProvider>("DefaultTileLayer");
|
|
fTileProvider->registerClass<SingleImageProvider>("SingleImageTileLayer");
|
|
fTileProvider->registerClass<ImageSequenceTileProvider>("ImageSequenceTileLayer");
|
|
fTileProvider->registerClass<SpoutImageProvider>("SpoutImageTileLayer");
|
|
fTileProvider->registerClass<TemporalTileProvider>("TemporalTileLayer");
|
|
fTileProvider->registerClass<TileIndexTileProvider>("TileIndexTileLayer");
|
|
fTileProvider->registerClass<SizeReferenceTileProvider>("SizeReferenceTileLayer");
|
|
fTileProvider->registerClass<TileProviderByLevel>("ByLevelTileLayer");
|
|
fTileProvider->registerClass<TileProviderByIndex>("ByIndexTileLayer");
|
|
|
|
ghoul::TemplateFactory<DashboardItem>* fDashboard =
|
|
FactoryManager::ref().factory<DashboardItem>();
|
|
ghoul_assert(fDashboard, "Dashboard factory was not created");
|
|
|
|
fDashboard->registerClass<DashboardItemGlobeLocation>("DashboardItemGlobeLocation");
|
|
}
|
|
|
|
globebrowsing::cache::MemoryAwareTileCache* GlobeBrowsingModule::tileCache() {
|
|
return _tileCache.get();
|
|
}
|
|
|
|
std::vector<documentation::Documentation> GlobeBrowsingModule::documentations() const {
|
|
return {
|
|
globebrowsing::Layer::Documentation(),
|
|
globebrowsing::LayerAdjustment::Documentation(),
|
|
globebrowsing::LayerManager::Documentation(),
|
|
globebrowsing::GlobeTranslation::Documentation(),
|
|
globebrowsing::GlobeRotation::Documentation(),
|
|
globebrowsing::RenderableGlobe::Documentation(),
|
|
globebrowsing::DefaultTileProvider::Documentation(),
|
|
globebrowsing::ImageSequenceTileProvider::Documentation(),
|
|
globebrowsing::SingleImageProvider::Documentation(),
|
|
globebrowsing::SizeReferenceTileProvider::Documentation(),
|
|
globebrowsing::TemporalTileProvider::Documentation(),
|
|
globebrowsing::TileProviderByIndex::Documentation(),
|
|
globebrowsing::TileProviderByLevel::Documentation(),
|
|
GlobeLabelsComponent::Documentation(),
|
|
RingsComponent::Documentation(),
|
|
ShadowComponent::Documentation()
|
|
};
|
|
}
|
|
|
|
void GlobeBrowsingModule::goToChunk(const globebrowsing::RenderableGlobe& globe,
|
|
int x, int y, int level)
|
|
{
|
|
ghoul_assert(level < std::numeric_limits<uint8_t>::max(), "Level way too big");
|
|
goToChunk(
|
|
globe,
|
|
globebrowsing::TileIndex(x, y, static_cast<uint8_t>(level)),
|
|
glm::vec2(0.5f, 0.5f),
|
|
true
|
|
);
|
|
}
|
|
|
|
void GlobeBrowsingModule::goToGeo(const globebrowsing::RenderableGlobe& globe,
|
|
double latitude, double longitude)
|
|
{
|
|
using namespace globebrowsing;
|
|
goToGeodetic2(
|
|
globe,
|
|
Geodetic2{ glm::radians(latitude), glm::radians(longitude) },
|
|
true
|
|
);
|
|
}
|
|
|
|
void GlobeBrowsingModule::goToGeo(const globebrowsing::RenderableGlobe& globe,
|
|
double latitude, double longitude, double altitude)
|
|
{
|
|
using namespace globebrowsing;
|
|
goToGeodetic3(
|
|
globe,
|
|
{
|
|
Geodetic2{ glm::radians(latitude), glm::radians(longitude) },
|
|
altitude
|
|
},
|
|
true
|
|
);
|
|
}
|
|
|
|
glm::vec3 GlobeBrowsingModule::cartesianCoordinatesFromGeo(
|
|
const globebrowsing::RenderableGlobe& globe,
|
|
double latitude, double longitude, double altitude)
|
|
{
|
|
using namespace globebrowsing;
|
|
|
|
const Geodetic3 pos = {
|
|
{ .lat = glm::radians(latitude), .lon = glm::radians(longitude) },
|
|
altitude
|
|
};
|
|
|
|
return glm::vec3(globe.ellipsoid().cartesianPosition(pos));
|
|
}
|
|
|
|
glm::dvec3 GlobeBrowsingModule::geoPosition() const {
|
|
using namespace globebrowsing;
|
|
|
|
const SceneGraphNode* n = global::navigationHandler->orbitalNavigator().anchorNode();
|
|
if (!n) {
|
|
return glm::dvec3(0.0);
|
|
}
|
|
const RenderableGlobe* globe = dynamic_cast<const RenderableGlobe*>(n->renderable());
|
|
if (!globe) {
|
|
return glm::dvec3(0.0);
|
|
}
|
|
|
|
const glm::dvec3 cameraPosition = global::navigationHandler->camera()->positionVec3();
|
|
const glm::dmat4 inverseModelTransform = glm::inverse(n->modelTransform());
|
|
const glm::dvec3 cameraPositionModelSpace =
|
|
glm::dvec3(inverseModelTransform * glm::dvec4(cameraPosition, 1.0));
|
|
const SurfacePositionHandle posHandle = globe->calculateSurfacePositionHandle(
|
|
cameraPositionModelSpace
|
|
);
|
|
|
|
const Geodetic2 geo2 = globe->ellipsoid().cartesianToGeodetic2(
|
|
posHandle.centerToReferenceSurface
|
|
);
|
|
|
|
double lat = glm::degrees(geo2.lat);
|
|
double lon = glm::degrees(geo2.lon);
|
|
|
|
double altitude = glm::length(
|
|
cameraPositionModelSpace - posHandle.centerToReferenceSurface
|
|
);
|
|
|
|
if (glm::length(cameraPositionModelSpace) <
|
|
glm::length(posHandle.centerToReferenceSurface))
|
|
{
|
|
altitude = -altitude;
|
|
}
|
|
|
|
return glm::dvec3(lat, lon, altitude);
|
|
}
|
|
|
|
void GlobeBrowsingModule::goToChunk(const globebrowsing::RenderableGlobe& globe,
|
|
const globebrowsing::TileIndex& ti,
|
|
glm::vec2 uv, bool doResetCameraDirection)
|
|
{
|
|
using namespace globebrowsing;
|
|
|
|
const GeodeticPatch patch(ti);
|
|
const Geodetic2 corner = patch.corner(SOUTH_WEST);
|
|
Geodetic2 positionOnPatch = patch.size();
|
|
positionOnPatch.lat *= uv.y;
|
|
positionOnPatch.lon *= uv.x;
|
|
const Geodetic2 pointPosition = {
|
|
.lat = corner.lat + positionOnPatch.lat,
|
|
.lon = corner.lon + positionOnPatch.lon
|
|
};
|
|
|
|
// Compute altitude
|
|
const glm::dvec3 cameraPosition = global::navigationHandler->camera()->positionVec3();
|
|
SceneGraphNode* globeSceneGraphNode = dynamic_cast<SceneGraphNode*>(globe.owner());
|
|
if (!globeSceneGraphNode) {
|
|
LERROR("Cannot go to chunk. The renderable is not attached to scene graph node");
|
|
return;
|
|
}
|
|
const glm::dmat4 inverseModelTransform = glm::inverse(
|
|
globeSceneGraphNode->modelTransform()
|
|
);
|
|
const glm::dvec3 cameraPositionModelSpace =
|
|
glm::dvec3(inverseModelTransform * glm::dvec4(cameraPosition, 1.0));
|
|
const SurfacePositionHandle posHandle = globe.calculateSurfacePositionHandle(
|
|
cameraPositionModelSpace
|
|
);
|
|
|
|
const double altitude = glm::length(
|
|
cameraPositionModelSpace - posHandle.centerToReferenceSurface
|
|
);
|
|
|
|
goToGeodetic3(globe, { pointPosition, altitude }, doResetCameraDirection);
|
|
}
|
|
|
|
void GlobeBrowsingModule::goToGeodetic2(const globebrowsing::RenderableGlobe& globe,
|
|
globebrowsing::Geodetic2 geo2,
|
|
bool doResetCameraDirection)
|
|
{
|
|
using namespace globebrowsing;
|
|
|
|
const glm::dvec3 cameraPosition = global::navigationHandler->camera()->positionVec3();
|
|
SceneGraphNode* globeSceneGraphNode = dynamic_cast<SceneGraphNode*>(globe.owner());
|
|
if (!globeSceneGraphNode) {
|
|
LERROR("Error when going to Geodetic2");
|
|
}
|
|
|
|
const glm::dmat4 inverseModelTransform = glm::inverse(
|
|
globeSceneGraphNode->modelTransform()
|
|
);
|
|
|
|
const glm::dvec3 cameraPositionModelSpace =
|
|
glm::dvec3(inverseModelTransform * glm::dvec4(cameraPosition, 1.0));
|
|
const SurfacePositionHandle posHandle = globe.calculateSurfacePositionHandle(
|
|
cameraPositionModelSpace
|
|
);
|
|
|
|
const glm::dvec3 centerToActualSurface = posHandle.centerToReferenceSurface +
|
|
posHandle.referenceSurfaceOutDirection * posHandle.heightToSurface;
|
|
const double altitude = glm::length(cameraPositionModelSpace - centerToActualSurface);
|
|
|
|
goToGeodetic3(globe, { geo2, altitude }, doResetCameraDirection);
|
|
}
|
|
|
|
void GlobeBrowsingModule::goToGeodetic3(const globebrowsing::RenderableGlobe& globe,
|
|
globebrowsing::Geodetic3 geo3, bool)
|
|
{
|
|
using namespace globebrowsing;
|
|
const glm::dvec3 positionModelSpace = globe.ellipsoid().cartesianPosition(geo3);
|
|
|
|
|
|
const glm::dvec3 slightlyNorth = globe.ellipsoid().cartesianSurfacePosition(
|
|
Geodetic2{ geo3.geodetic2.lat + 0.001, geo3.geodetic2.lon }
|
|
);
|
|
|
|
interaction::NavigationState state;
|
|
state.anchor = globe.owner()->identifier();
|
|
state.referenceFrame = globe.owner()->identifier();
|
|
state.position = positionModelSpace;
|
|
state.up = slightlyNorth;
|
|
|
|
global::navigationHandler->setNavigationStateNextFrame(state);
|
|
}
|
|
|
|
glm::dquat GlobeBrowsingModule::lookDownCameraRotation(
|
|
const globebrowsing::RenderableGlobe& globe,
|
|
glm::dvec3 cameraModelSpace,
|
|
globebrowsing::Geodetic2 geo2)
|
|
{
|
|
using namespace globebrowsing;
|
|
|
|
// Lookup vector
|
|
const glm::dvec3 positionModelSpace = globe.ellipsoid().cartesianSurfacePosition(
|
|
geo2
|
|
);
|
|
const glm::dvec3 slightlyNorth = globe.ellipsoid().cartesianSurfacePosition(
|
|
Geodetic2{ geo2.lat + 0.001, geo2.lon }
|
|
);
|
|
const glm::dvec3 lookUpModelSpace = glm::normalize(
|
|
slightlyNorth - positionModelSpace
|
|
);
|
|
|
|
// Matrix
|
|
const glm::dmat4 lookAtMatrix =
|
|
glm::lookAt(cameraModelSpace, positionModelSpace, lookUpModelSpace);
|
|
|
|
// Set rotation
|
|
const glm::dquat rotation = glm::quat_cast(inverse(lookAtMatrix));
|
|
return rotation;
|
|
}
|
|
|
|
const globebrowsing::RenderableGlobe*
|
|
GlobeBrowsingModule::castFocusNodeRenderableToGlobe()
|
|
{
|
|
using namespace globebrowsing;
|
|
|
|
const Renderable* renderable =
|
|
global::navigationHandler->orbitalNavigator().anchorNode()->renderable();
|
|
|
|
if (!renderable) {
|
|
return nullptr;
|
|
}
|
|
using namespace globebrowsing;
|
|
if (const RenderableGlobe* globe = dynamic_cast<const RenderableGlobe*>(renderable)) {
|
|
return globe;
|
|
}
|
|
else {
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
void GlobeBrowsingModule::loadWMSCapabilities(std::string name, std::string globe,
|
|
std::string url)
|
|
{
|
|
auto downloadFunction = [](const std::string& downloadUrl) {
|
|
LDEBUG("Opening WMS capabilities: " + downloadUrl);
|
|
GDALDatasetH dataset = GDALOpen(
|
|
downloadUrl.c_str(),
|
|
GA_ReadOnly
|
|
);
|
|
|
|
if (!dataset) {
|
|
LWARNING("Could not open dataset: " + downloadUrl);
|
|
return Capabilities();
|
|
}
|
|
char** subDatasets = GDALGetMetadata(dataset, "SUBDATASETS");
|
|
const int nSubdatasets = CSLCount(subDatasets);
|
|
Capabilities cap = parseSubDatasets(subDatasets, nSubdatasets);
|
|
GDALClose(dataset);
|
|
LDEBUG("Finished WMS capabilities: " + downloadUrl);
|
|
return cap;
|
|
};
|
|
|
|
_inFlightCapabilitiesMap[name] = std::async(
|
|
std::launch::async,
|
|
downloadFunction,
|
|
url
|
|
);
|
|
|
|
//_capabilitiesMap[name] = downloadFunction(url);
|
|
|
|
_urlList.emplace(std::move(globe), UrlInfo{ std::move(name), std::move(url) });
|
|
}
|
|
|
|
GlobeBrowsingModule::Capabilities
|
|
GlobeBrowsingModule::capabilities(const std::string& name)
|
|
{
|
|
// First check the ones that have already finished
|
|
const auto it = _capabilitiesMap.find(name);
|
|
if (it != _capabilitiesMap.end()) {
|
|
return it->second;
|
|
}
|
|
else {
|
|
const auto inFlightIt = _inFlightCapabilitiesMap.find(name);
|
|
if (inFlightIt != _inFlightCapabilitiesMap.end()) {
|
|
// If the download and the parsing has not finished yet, this will block,
|
|
// otherwise it will just return
|
|
const Capabilities cap = inFlightIt->second.get();
|
|
_capabilitiesMap[name] = cap;
|
|
_inFlightCapabilitiesMap.erase(inFlightIt);
|
|
return cap;
|
|
}
|
|
else {
|
|
return {};
|
|
}
|
|
}
|
|
}
|
|
|
|
void GlobeBrowsingModule::removeWMSServer(const std::string& name) {
|
|
// First delete all the capabilities that are currently in flight
|
|
const auto inFlightIt = _inFlightCapabilitiesMap.find(name);
|
|
if (inFlightIt != _inFlightCapabilitiesMap.end()) {
|
|
_inFlightCapabilitiesMap.erase(inFlightIt);
|
|
}
|
|
|
|
// Then download the ones that are already finished
|
|
const auto capIt = _capabilitiesMap.find(name);
|
|
if (capIt != _capabilitiesMap.end()) {
|
|
_capabilitiesMap.erase(capIt);
|
|
}
|
|
|
|
// Then remove the calues from the globe server list
|
|
for (auto it = _urlList.begin(); it != _urlList.end();) {
|
|
// We have to increment first because the erase will invalidate the iterator
|
|
const auto eraseIt = it++;
|
|
|
|
if (eraseIt->second.name == name) {
|
|
_urlList.erase(eraseIt);
|
|
}
|
|
}
|
|
}
|
|
|
|
std::vector<GlobeBrowsingModule::UrlInfo>
|
|
GlobeBrowsingModule::urlInfo(const std::string& globe) const
|
|
{
|
|
const auto range = _urlList.equal_range(globe);
|
|
std::vector<UrlInfo> res;
|
|
for (auto i = range.first; i != range.second; ++i) {
|
|
res.emplace_back(i->second);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
bool GlobeBrowsingModule::hasUrlInfo(const std::string& globe) const {
|
|
return _urlList.find(globe) != _urlList.end();
|
|
}
|
|
|
|
bool GlobeBrowsingModule::isMRFCachingEnabled() const {
|
|
return _mrfCacheEnabled;
|
|
}
|
|
|
|
const std::string GlobeBrowsingModule::mrfCacheLocation() const {
|
|
return _mrfCacheLocation;
|
|
}
|
|
|
|
scripting::LuaLibrary GlobeBrowsingModule::luaLibrary() const {
|
|
return {
|
|
.name = "globebrowsing",
|
|
.functions = {
|
|
codegen::lua::AddLayer,
|
|
codegen::lua::DeleteLayer,
|
|
codegen::lua::GetLayers,
|
|
codegen::lua::MoveLayer,
|
|
codegen::lua::GoToChunk,
|
|
codegen::lua::GoToGeo,
|
|
// @TODO (2021-06-23, emmbr) Combine with the above function when the camera
|
|
// paths work really well close to surfaces
|
|
codegen::lua::FlyToGeo,
|
|
codegen::lua::GetLocalPositionFromGeo,
|
|
codegen::lua::GetGeoPositionForCamera,
|
|
codegen::lua::LoadWMSCapabilities,
|
|
codegen::lua::RemoveWMSServer,
|
|
codegen::lua::CapabilitiesWMS
|
|
},
|
|
.scripts = {
|
|
absPath("${MODULE_GLOBEBROWSING}/scripts/layer_support.lua")
|
|
}
|
|
};
|
|
}
|
|
|
|
} // namespace openspace
|