From 5fb21a3c44067713a11e357c3f3b7bd93760ef0f Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Mon, 10 Jul 2023 17:14:17 +1000 Subject: [PATCH 01/37] Basic support for allowing the CesiumGeoreference to have a transform. --- .../CesiumRuntime/Private/Cesium3DTileset.cpp | 20 ++++++++++++++----- .../Private/CesiumBoundingVolumeComponent.cpp | 5 ----- .../Private/CesiumGeoreference.cpp | 3 +++ .../Private/CesiumGlobeAnchorComponent.cpp | 10 +++++----- .../Private/CesiumGltfComponent.cpp | 1 - .../Private/CesiumGltfPrimitiveComponent.cpp | 6 +----- .../CesiumRuntime/Public/CesiumGeoreference.h | 3 +++ 7 files changed, 27 insertions(+), 21 deletions(-) diff --git a/Source/CesiumRuntime/Private/Cesium3DTileset.cpp b/Source/CesiumRuntime/Private/Cesium3DTileset.cpp index dd2077153..7d645dd8a 100644 --- a/Source/CesiumRuntime/Private/Cesium3DTileset.cpp +++ b/Source/CesiumRuntime/Private/Cesium3DTileset.cpp @@ -995,7 +995,6 @@ void ACesium3DTileset::LoadTileset() { GetCesiumTilesetToUnrealRelativeWorldTransform(); this->BoundingVolumePoolComponent = NewObject(this); - this->BoundingVolumePoolComponent->SetUsingAbsoluteLocation(true); this->BoundingVolumePoolComponent->SetFlags( RF_Transient | RF_DuplicateTransient | RF_TextExportTransient); this->BoundingVolumePoolComponent->RegisterComponent(); @@ -1552,6 +1551,8 @@ std::vector ACesium3DTileset::GetEditorCameras() const { return {}; } + const FTransform& tilesetToWorld = this->GetActorTransform(); + const TArray& viewportClients = GEditor->GetAllViewportClients(); @@ -1578,7 +1579,16 @@ std::vector ACesium3DTileset::GetEditorCameras() const { rotation = pEditorViewportClient->GetViewRotation(); } - const FVector& location = pEditorViewportClient->GetViewLocation(); + const FVector& worldLocation = pEditorViewportClient->GetViewLocation(); + + // The camera location/rotation is in world coordinates. Transform it to + // tileset coordinates. + FVector tilesetLocation = + tilesetToWorld.InverseTransformPosition(worldLocation); + FRotator tilesetRotation = + tilesetToWorld.InverseTransformRotation(rotation.Quaternion()) + .Rotator(); + double fov = pEditorViewportClient->ViewFOV; FIntPoint offset; FIntPoint size; @@ -1597,12 +1607,12 @@ std::vector ACesium3DTileset::GetEditorCameras() const { if (pEditorViewportClient->IsAspectRatioConstrained()) { cameras.emplace_back( size, - location, - rotation, + tilesetLocation, + tilesetRotation, fov, pEditorViewportClient->AspectRatio); } else { - cameras.emplace_back(size, location, rotation, fov); + cameras.emplace_back(size, tilesetLocation, tilesetRotation, fov); } } diff --git a/Source/CesiumRuntime/Private/CesiumBoundingVolumeComponent.cpp b/Source/CesiumRuntime/Private/CesiumBoundingVolumeComponent.cpp index 74e3829d0..4c8249736 100644 --- a/Source/CesiumRuntime/Private/CesiumBoundingVolumeComponent.cpp +++ b/Source/CesiumRuntime/Private/CesiumBoundingVolumeComponent.cpp @@ -25,7 +25,6 @@ TileOcclusionRendererProxy* UCesiumBoundingVolumePoolComponent::createProxy() { NewObject(this); pBoundingVolume->SetVisibility(false); pBoundingVolume->bUseAsOccluder = false; - pBoundingVolume->SetUsingAbsoluteLocation(true); pBoundingVolume->SetMobility(EComponentMobility::Movable); pBoundingVolume->SetFlags( @@ -114,10 +113,6 @@ void UCesiumBoundingVolumeComponent::UpdateOcclusion( } void UCesiumBoundingVolumeComponent::_updateTransform() { - this->SetUsingAbsoluteLocation(true); - this->SetUsingAbsoluteRotation(true); - this->SetUsingAbsoluteScale(true); - const FTransform transform = FTransform( VecMath::createMatrix(this->_cesiumToUnreal * this->_tileTransform)); diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index f77236642..a0bf5a949 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -130,6 +130,9 @@ ACesiumGeoreference::ACesiumGeoreference() _geoTransforms() { PrimaryActorTick.bCanEverTick = true; + this->Root = CreateDefaultSubobject(TEXT("Root")); + this->RootComponent = this->Root; + #if WITH_EDITOR this->SetIsSpatiallyLoaded(false); #endif diff --git a/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp b/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp index 55ba3477e..7987b5584 100644 --- a/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp +++ b/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp @@ -441,7 +441,7 @@ void UCesiumGlobeAnchorComponent::_onActorTransformChanged( // Adjust the new rotation by the surface normal rotation const glm::dquat rotation = VecMath::createQuaternion( - InRootComponent->GetComponentRotation().Quaternion()); + InRootComponent->GetRelativeRotation().Quaternion()); const glm::dquat adjustedRotation = ellipsoidNormalRotation * rotation; #if WITH_EDITOR @@ -451,7 +451,7 @@ void UCesiumGlobeAnchorComponent::_onActorTransformChanged( // Set the new Actor transform, taking care not to do this recursively. this->_updatingActorTransform = true; - InRootComponent->SetWorldRotation( + InRootComponent->SetRelativeRotation( VecMath::createQuaternion(adjustedRotation), false, nullptr, @@ -507,7 +507,7 @@ UCesiumGlobeAnchorComponent::_updateGlobeTransformFromActorTransform() { // Get the relative world transform. glm::dmat4 actorTransform = VecMath::createMatrix4D( - pOwnerRoot->GetComponentTransform().ToMatrixWithScale()); + pOwnerRoot->GetRelativeTransform().ToMatrixWithScale()); // Convert to an absolute world transform actorTransform[3] += CesiumActors::getWorldOrigin4D(pOwner); @@ -562,7 +562,7 @@ FTransform UCesiumGlobeAnchorComponent::_updateActorTransformFromGlobeTransform( TEXT( "UCesiumGlobeAnchorComponent %s cannot update Actor transform from Globe transform because the Globe transform is not known."), *this->GetName()); - return pOwnerRoot->GetComponentTransform(); + return pOwnerRoot->GetRelativeTransform(); } const GeoTransforms& geoTransforms = @@ -587,7 +587,7 @@ FTransform UCesiumGlobeAnchorComponent::_updateActorTransformFromGlobeTransform( // Set the Actor transform this->_updatingActorTransform = true; - pOwnerRoot->SetWorldTransform( + pOwnerRoot->SetRelativeTransform( actorTransform, false, nullptr, diff --git a/Source/CesiumRuntime/Private/CesiumGltfComponent.cpp b/Source/CesiumRuntime/Private/CesiumGltfComponent.cpp index a71aabee6..f5e606119 100644 --- a/Source/CesiumRuntime/Private/CesiumGltfComponent.cpp +++ b/Source/CesiumRuntime/Private/CesiumGltfComponent.cpp @@ -2206,7 +2206,6 @@ UCesiumGltfComponent::CreateOffGameThread( // } UCesiumGltfComponent* Gltf = NewObject(pTilesetActor); - Gltf->SetUsingAbsoluteLocation(true); Gltf->SetMobility(pTilesetActor->GetRootComponent()->Mobility); Gltf->SetFlags(RF_Transient | RF_DuplicateTransient | RF_TextExportTransient); diff --git a/Source/CesiumRuntime/Private/CesiumGltfPrimitiveComponent.cpp b/Source/CesiumRuntime/Private/CesiumGltfPrimitiveComponent.cpp index 4afc2200a..cfd201be9 100644 --- a/Source/CesiumRuntime/Private/CesiumGltfPrimitiveComponent.cpp +++ b/Source/CesiumRuntime/Private/CesiumGltfPrimitiveComponent.cpp @@ -23,10 +23,6 @@ UCesiumGltfPrimitiveComponent::~UCesiumGltfPrimitiveComponent() {} void UCesiumGltfPrimitiveComponent::UpdateTransformFromCesium( const glm::dmat4& CesiumToUnrealTransform) { - this->SetUsingAbsoluteLocation(true); - this->SetUsingAbsoluteRotation(true); - this->SetUsingAbsoluteScale(true); - const FTransform transform = FTransform(VecMath::createMatrix( CesiumToUnrealTransform * this->HighPrecisionNodeTransform)); @@ -47,7 +43,7 @@ void UCesiumGltfPrimitiveComponent::UpdateTransformFromCesium( // too, so in a relative sense the object isn't actually moving. This isn't // a perfect assumption, of course. this->SetRelativeTransform_Direct(transform); - this->SetComponentToWorld(transform); + this->ConditionalUpdateComponentToWorld(); this->MarkRenderTransformDirty(); this->SendPhysicsTransform(ETeleportType::ResetPhysics); } diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index 724be0459..d9fa6e146 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -55,6 +55,9 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { ACesiumGeoreference(); + UPROPERTY(VisibleAnywhere) + USceneComponent* Root; + /* * Whether to visualize the level loading radii in the editor. Helpful for * initially positioning the level and choosing a load radius. From 33c9b65f4ae8d81168774d657f9004c808405d26 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Mon, 10 Jul 2023 18:16:51 +1000 Subject: [PATCH 02/37] World -> Relative in Cesium3DTilesetRoot. --- Source/CesiumRuntime/Private/Cesium3DTilesetRoot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/CesiumRuntime/Private/Cesium3DTilesetRoot.cpp b/Source/CesiumRuntime/Private/Cesium3DTilesetRoot.cpp index ca40c201d..ffa53c84e 100644 --- a/Source/CesiumRuntime/Private/Cesium3DTilesetRoot.cpp +++ b/Source/CesiumRuntime/Private/Cesium3DTilesetRoot.cpp @@ -91,7 +91,7 @@ void UCesium3DTilesetRoot::_updateTilesetToUnrealRelativeWorldTransform() { this->_absoluteLocation - this->_worldOriginLocation; FMatrix tilesetActorToUeLocal = - this->GetComponentToWorld().ToMatrixWithScale(); + this->GetRelativeTransform().ToMatrixWithScale(); glm::dmat4 ueAbsoluteToUeLocal = VecMath::createMatrix4D(tilesetActorToUeLocal, relativeLocation); From bc2dff79cc9531bcfa8ac5f2b68e4f746e792292 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Mon, 10 Jul 2023 18:23:33 +1000 Subject: [PATCH 03/37] Fix transformation for all cameras, not just Editor views. --- .../CesiumRuntime/Private/Cesium3DTileset.cpp | 31 ++++++++----------- 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/Source/CesiumRuntime/Private/Cesium3DTileset.cpp b/Source/CesiumRuntime/Private/Cesium3DTileset.cpp index 7d645dd8a..46eedcfcd 100644 --- a/Source/CesiumRuntime/Private/Cesium3DTileset.cpp +++ b/Source/CesiumRuntime/Private/Cesium3DTileset.cpp @@ -56,6 +56,7 @@ #include "PixelFormat.h" #include "SceneTypes.h" #include "StereoRendering.h" +#include "VecMath.h" #include #include #include @@ -1551,8 +1552,6 @@ std::vector ACesium3DTileset::GetEditorCameras() const { return {}; } - const FTransform& tilesetToWorld = this->GetActorTransform(); - const TArray& viewportClients = GEditor->GetAllViewportClients(); @@ -1579,16 +1578,7 @@ std::vector ACesium3DTileset::GetEditorCameras() const { rotation = pEditorViewportClient->GetViewRotation(); } - const FVector& worldLocation = pEditorViewportClient->GetViewLocation(); - - // The camera location/rotation is in world coordinates. Transform it to - // tileset coordinates. - FVector tilesetLocation = - tilesetToWorld.InverseTransformPosition(worldLocation); - FRotator tilesetRotation = - tilesetToWorld.InverseTransformRotation(rotation.Quaternion()) - .Rotator(); - + const FVector& location = pEditorViewportClient->GetViewLocation(); double fov = pEditorViewportClient->ViewFOV; FIntPoint offset; FIntPoint size; @@ -1607,12 +1597,12 @@ std::vector ACesium3DTileset::GetEditorCameras() const { if (pEditorViewportClient->IsAspectRatioConstrained()) { cameras.emplace_back( size, - tilesetLocation, - tilesetRotation, + location, + rotation, fov, pEditorViewportClient->AspectRatio); } else { - cameras.emplace_back(size, tilesetLocation, tilesetRotation, fov); + cameras.emplace_back(size, location, rotation, fov); } } @@ -2027,13 +2017,18 @@ void ACesium3DTileset::Tick(float DeltaTime) { return; } - glm::dmat4 unrealWorldToTileset = glm::affineInverse( - this->GetCesiumTilesetToUnrealRelativeWorldTransform()); + glm::dmat4 ueTilesetToUeWorld = + VecMath::createMatrix4D(this->GetActorTransform().ToMatrixWithScale()); + + const glm::dmat4& cesiumTilesetToUeTileset = + this->GetCesiumTilesetToUnrealRelativeWorldTransform(); + glm::dmat4 unrealWorldToCesiumTileset = + glm::affineInverse(ueTilesetToUeWorld * cesiumTilesetToUeTileset); std::vector frustums; for (const FCesiumCamera& camera : cameras) { frustums.push_back( - CreateViewStateFromViewParameters(camera, unrealWorldToTileset)); + CreateViewStateFromViewParameters(camera, unrealWorldToCesiumTileset)); } const Cesium3DTilesSelection::ViewUpdateResult& result = From 1887f65c4b0649a9e0327fd109b2b32c890c4b6d Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Mon, 10 Jul 2023 20:12:51 +1000 Subject: [PATCH 04/37] Add missing category. --- Source/CesiumRuntime/Public/CesiumGeoreference.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index d9fa6e146..7b1087054 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -55,7 +55,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { ACesiumGeoreference(); - UPROPERTY(VisibleAnywhere) + UPROPERTY(VisibleAnywhere, Category = "Cesium") USceneComponent* Root; /* From 2a2ddb663227dbf87b649d108170507f07fa61ff Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 12 Jul 2023 10:00:44 +1000 Subject: [PATCH 05/37] Fix SunSky scaling. --- Source/CesiumRuntime/Private/CesiumSunSky.cpp | 44 ++++++++++++------- Source/CesiumRuntime/Public/CesiumSunSky.h | 11 +++++ 2 files changed, 39 insertions(+), 16 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumSunSky.cpp b/Source/CesiumRuntime/Private/CesiumSunSky.cpp index cf4ea34e9..d75a0c141 100644 --- a/Source/CesiumRuntime/Private/CesiumSunSky.cpp +++ b/Source/CesiumRuntime/Private/CesiumSunSky.cpp @@ -37,7 +37,7 @@ // guaranteed to be below it. Rather than actually calculate sea level, a WGS84 // height of -100meters will be close enough. // * When far from the surface, we can see a lot of the Earth, and it's -// essential that no bits of the surface extend into the atmosphere, because +// essential that no bits of the surface extend outside the atmosphere, because // that creates a very distracting artifact. So we want to choose a globe // radius that is guaranteed to encapsulate all visible parts of the globe. // * In between these two extremes, we need to blend smoothly. @@ -72,11 +72,7 @@ ACesiumSunSky::ACesiumSunSky() : AActor() { DirectionalLight->bUsedAsAtmosphereSunLight = true; #endif - // The location of the DirectionalLight should never matter, but by making it - // absolute we do less math when the Actor moves as a result of the - // GlobeAnchorComponent. - DirectionalLight->SetUsingAbsoluteLocation(true); - DirectionalLight->SetWorldLocation(FVector(0, 0, 0)); + DirectionalLight->SetRelativeLocation(FVector(0, 0, 0)); if (!SkySphereClass) { static ConstructorHelpers::FClassFinder skySphereFinder( @@ -103,8 +99,7 @@ ACesiumSunSky::ACesiumSunSky() : AActor() { // The Sky Light is fixed at the Georeference origin. // TODO: should it follow the player? - SkyLight->SetUsingAbsoluteLocation(true); - SkyLight->SetWorldLocation(FVector(0, 0, 0)); + SkyLight->SetRelativeLocation(FVector(0, 0, 0)); // The Sky Atmosphere should be positioned relative to the // Scene/RootComponent, which is kept at the center of the Earth by the @@ -184,6 +179,12 @@ void ACesiumSunSky::_spawnSkySphere() { _setSkySphereDirectionalLight(); } +double ACesiumSunSky::_computeScale() const { + // The SkyAtmosphere is not affected by Actor scaling, so we do it manually. + FVector actorScale = this->GetActorScale(); + return actorScale.GetMax() * (this->GetGeoreference()->GetScale() / 100.0); +} + void ACesiumSunSky::UpdateSkySphere() { if (!UseMobileRendering || !SkySphereActor) { return; @@ -212,6 +213,9 @@ void ACesiumSunSky::BeginPlay() { if (this->UpdateAtmosphereAtRuntime) { this->UpdateAtmosphereRadius(); } + + if (this->SkyAtmosphere->AtmosphereHeight != this->AtmosphereHeight) { + } } void ACesiumSunSky::EndPlay(const EEndPlayReason::Type EndPlayReason) { @@ -254,6 +258,14 @@ void ACesiumSunSky::Tick(float DeltaSeconds) { if (this->UpdateAtmosphereAtRuntime) { this->UpdateAtmosphereRadius(); } + + if (IsValid(this->SkyAtmosphere)) { + float atmosphereHeight = + float(this->_computeScale() * this->AtmosphereHeight); + if (atmosphereHeight != this->SkyAtmosphere->AtmosphereHeight) { + this->SkyAtmosphere->SetAtmosphereHeight(atmosphereHeight); + } + } } void ACesiumSunSky::PostLoad() { @@ -401,10 +413,10 @@ void ACesiumSunSky::UpdateSun_Implementation() { // Orient sun / directional light if (this->UseLevelDirectionalLight && IsValid(this->LevelDirectionalLight) && IsValid(this->LevelDirectionalLight->GetRootComponent())) { - this->LevelDirectionalLight->GetRootComponent()->SetWorldRotation( + this->LevelDirectionalLight->GetRootComponent()->SetRelativeRotation( newRotation); } else { - this->DirectionalLight->SetWorldRotation(newRotation); + this->DirectionalLight->SetRelativeRotation(newRotation); } // Mobile only @@ -442,20 +454,20 @@ FVector getViewLocation(UWorld* pWorld) { } // namespace void ACesiumSunSky::UpdateAtmosphereRadius() { - FVector location = getViewLocation(this->GetWorld()); + const FTransform& transform = this->GetActorTransform().Inverse(); + FVector location = + transform.TransformPosition(getViewLocation(this->GetWorld())); glm::dvec3 llh = this->GetGeoreference()->TransformUnrealToLongitudeLatitudeHeight( VecMath::createVector3D(location)); - double scale = this->GetGeoreference()->GetScale() / 100.0; - // An atmosphere of this radius should circumscribe all Earth terrain. double maxRadius = 6387000.0; if (llh.z / 1000.0 > this->CircumscribedGroundThreshold) { this->SetSkyAtmosphereGroundRadius( this->SkyAtmosphere, - maxRadius * scale / 1000.0); + maxRadius * this->_computeScale() / 1000.0); } else { // Find the ellipsoid radius 100m below the surface at this location. See // the comment at the top of this file. @@ -468,7 +480,7 @@ void ACesiumSunSky::UpdateAtmosphereRadius() { if (llh.z / 1000.0 < this->InscribedGroundThreshold) { this->SetSkyAtmosphereGroundRadius( this->SkyAtmosphere, - minRadius * scale / 1000.0); + minRadius * this->_computeScale() / 1000.0); } else { double t = ((llh.z / 1000.0) - this->InscribedGroundThreshold) / @@ -476,7 +488,7 @@ void ACesiumSunSky::UpdateAtmosphereRadius() { double radius = glm::mix(minRadius, maxRadius, t); this->SetSkyAtmosphereGroundRadius( this->SkyAtmosphere, - radius * scale / 1000.0); + radius * this->_computeScale() / 1000.0); } } } diff --git a/Source/CesiumRuntime/Public/CesiumSunSky.h b/Source/CesiumRuntime/Public/CesiumSunSky.h index 64ad27395..c78be2901 100644 --- a/Source/CesiumRuntime/Public/CesiumSunSky.h +++ b/Source/CesiumRuntime/Public/CesiumSunSky.h @@ -289,6 +289,16 @@ class CESIUMRUNTIME_API ACesiumSunSky : public AActor { Category = "Cesium|Atmosphere") double CircumscribedGroundThreshold = 100.0; + /** + * The height of the atmosphere layer above the ground, in kilometers. This + * value is automatically scaled according to the CesiumGeoreference Scale and + * the Actor scale. However, Unreal Engine's SkyAtmosphere has a hard-coded + * minimum effective value of 0.1, so the atmosphere will look too thick when the globe + * is scaled down drastically. + */ + UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cesium|Atmosphere") + double AtmosphereHeight = 60.0; + /** * False: Use Directional Light component inside CesiumSunSky. * True: Use the assigned Directional Light in the level. @@ -429,6 +439,7 @@ class CESIUMRUNTIME_API ACesiumSunSky : public AActor { private: void _spawnSkySphere(); + double _computeScale() const; // Sets Directional Light Component in Sky Sphere actor void _setSkySphereDirectionalLight(); From ec63acaadeaa7e492ecfa1d5f572ae347547878d Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 12 Jul 2023 12:06:45 +1000 Subject: [PATCH 06/37] Apply correct Actor transform to CesiumSunSky. --- Source/CesiumRuntime/Private/CesiumSunSky.cpp | 13 ++++++++++++- Source/CesiumRuntime/Public/CesiumSunSky.h | 4 ++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumSunSky.cpp b/Source/CesiumRuntime/Private/CesiumSunSky.cpp index d75a0c141..8c56ad3a8 100644 --- a/Source/CesiumRuntime/Private/CesiumSunSky.cpp +++ b/Source/CesiumRuntime/Private/CesiumSunSky.cpp @@ -454,7 +454,18 @@ FVector getViewLocation(UWorld* pWorld) { } // namespace void ACesiumSunSky::UpdateAtmosphereRadius() { - const FTransform& transform = this->GetActorTransform().Inverse(); + // This Actor is located at the center of the Earth (the CesiumGlobeAnchor + // keeps it there), so we ignore this Actor's transform and use only its + // parent transform. + FTransform transform{}; + USceneComponent* pRootComponent = this->GetRootComponent(); + if (IsValid(pRootComponent)) { + USceneComponent* pParent = pRootComponent->GetAttachParent(); + if (IsValid(pParent)) { + transform = pParent->GetComponentToWorld().Inverse(); + } + } + FVector location = transform.TransformPosition(getViewLocation(this->GetWorld())); glm::dvec3 llh = diff --git a/Source/CesiumRuntime/Public/CesiumSunSky.h b/Source/CesiumRuntime/Public/CesiumSunSky.h index c78be2901..10c5a9810 100644 --- a/Source/CesiumRuntime/Public/CesiumSunSky.h +++ b/Source/CesiumRuntime/Public/CesiumSunSky.h @@ -293,8 +293,8 @@ class CESIUMRUNTIME_API ACesiumSunSky : public AActor { * The height of the atmosphere layer above the ground, in kilometers. This * value is automatically scaled according to the CesiumGeoreference Scale and * the Actor scale. However, Unreal Engine's SkyAtmosphere has a hard-coded - * minimum effective value of 0.1, so the atmosphere will look too thick when the globe - * is scaled down drastically. + * minimum effective value of 0.1, so the atmosphere will look too thick when + * the globe is scaled down drastically. */ UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cesium|Atmosphere") double AtmosphereHeight = 60.0; From a86607836f644ef0df4f6720f3c6c7077c41ccd3 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 12 Jul 2023 17:31:14 +1000 Subject: [PATCH 07/37] Transformability for GlobeAwareDefaultPawn, doc for Georef. --- .../Private/GlobeAwareDefaultPawn.cpp | 36 +++++- .../CesiumRuntime/Public/CesiumGeoreference.h | 108 ++++++++++++------ .../Public/GlobeAwareDefaultPawn.h | 9 ++ 3 files changed, 118 insertions(+), 35 deletions(-) diff --git a/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp b/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp index 349b1a19e..889543858 100644 --- a/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp +++ b/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp @@ -53,7 +53,18 @@ void AGlobeAwareDefaultPawn::MoveUp_World(float Val) { .GetEllipsoidCenteredToAbsoluteUnrealWorldTransform() * upEcef; - this->_moveAlongVector(FVector(up.x, up.y, up.z), Val); + FTransform transform{}; + USceneComponent* pRootComponent = this->GetRootComponent(); + if (IsValid(pRootComponent)) { + USceneComponent* pParent = pRootComponent->GetAttachParent(); + if (IsValid(pParent)) { + transform = pParent->GetComponentToWorld(); + } + } + + this->_moveAlongVector( + transform.TransformVector(FVector(up.x, up.y, up.z)), + Val); } FRotator AGlobeAwareDefaultPawn::GetViewRotation() const { @@ -71,10 +82,21 @@ FRotator AGlobeAwareDefaultPawn::GetViewRotation() const { // the right (clockwise). FRotator localRotation = Controller->GetControlRotation(); + FTransform transform{}; + USceneComponent* pRootComponent = this->GetRootComponent(); + if (IsValid(pRootComponent)) { + USceneComponent* pParent = pRootComponent->GetAttachParent(); + if (IsValid(pParent)) { + transform = pParent->GetComponentToWorld(); + } + } + // Transform the rotation in the ESU frame to the Unreal world frame. + FVector globePosition = + transform.InverseTransformPosition(this->GetPawnViewLocation()); FMatrix esuAdjustmentMatrix = - this->GetGeoreference()->ComputeEastSouthUpToUnreal( - this->GetPawnViewLocation()); + this->GetGeoreference()->ComputeEastSouthUpToUnreal(globePosition) * + transform.ToMatrixNoScale(); return FRotator(esuAdjustmentMatrix.ToQuat() * localRotation.Quaternion()); } @@ -116,6 +138,14 @@ void AGlobeAwareDefaultPawn::_interpolateFlightPosition( } } +const FTransform& AGlobeAwareDefaultPawn::GetGlobeToUnrealWorldTransform() const { + AActor* pParent = this->GetAttachParentActor(); + if (IsValid(pParent)) { + return pParent->GetActorTransform(); + } + return FTransform::Identity; +} + void AGlobeAwareDefaultPawn::FlyToLocationECEF( const glm::dvec3& ECEFDestination, double YawAtDestination, diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index 7b1087054..d0e9ec0b8 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -283,74 +283,106 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { /** * Transforms the given longitude in degrees (x), latitude in - * degrees (y), and height above the ellipsoid in meters (z) into Unreal world - * coordinates (relative to the floating origin). + * degrees (y), and height above the ellipsoid in meters (z) into Unreal + * coordinates. The resulting position should generally not be interpreted as + * an Unreal _world_ position, but rather a position expressed in some parent + * Actor's reference frame as defined by its Transform. This way, the chain of + * Unreal transforms places and orients the "globe" in the Unreal world. */ glm::dvec3 TransformLongitudeLatitudeHeightToUnreal( const glm::dvec3& longitudeLatitudeHeight) const; /** * Transforms the given longitude in degrees (x), latitude in - * degrees (y), and height above the ellipsoid in meters (z) into Unreal world - * coordinates (relative to the floating origin). + * degrees (y), and height above the ellipsoid in meters (z) into Unreal + * coordinates. The resulting position should generally not be interpreted as + * an Unreal _world_ position, but rather a position expressed in some parent + * Actor's reference frame as defined by its Transform. This way, the chain of + * Unreal transforms places and orients the "globe" in the Unreal world. */ UFUNCTION(BlueprintCallable, Category = "Cesium") FVector TransformLongitudeLatitudeHeightToUnreal( const FVector& LongitudeLatitudeHeight) const; /** - * Transforms Unreal world coordinates (relative to the floating origin) into - * longitude in degrees (x), latitude in degrees (y), and height above the - * ellipsoid in meters (z). + * Transforms Unreal coordinates into longitude in degrees (x), latitude in + * degrees (y), and height above the ellipsoid in meters (z). The position + * should generally not be an Unreal _world_ position, but rather a position + * expressed in some parent Actor's reference frame as defined by its + * Transform. This way, the chain of Unreal transforms places and orients the + * "globe" in the Unreal world. */ glm::dvec3 TransformUnrealToLongitudeLatitudeHeight(const glm::dvec3& unreal) const; /** - * Transforms Unreal world coordinates (relative to the floating origin) into - * longitude in degrees (x), latitude in degrees (y), and height above the - * ellipsoid in meters (z). + * Transforms Unreal coordinates into longitude in degrees (x), latitude in + * degrees (y), and height above the ellipsoid in meters (z). The position + * should generally not be an Unreal _world_ position, but rather a position + * expressed in some parent Actor's reference frame as defined by its + * Transform. This way, the chain of Unreal transforms places and orients the + * "globe" in the Unreal world. */ UFUNCTION(BlueprintCallable, Category = "Cesium") FVector TransformUnrealToLongitudeLatitudeHeight(const FVector& Unreal) const; /** * Transforms the given point from Earth-Centered, Earth-Fixed (ECEF) into - * Unreal relative world (relative to the floating origin). + * Unreal coordinates. The resulting position should generally not be + * interpreted as an Unreal _world_ position, but rather a position expressed + * in some parent Actor's reference frame as defined by its Transform. This + * way, the chain of Unreal transforms places and orients the "globe" in the + * Unreal world. */ glm::dvec3 TransformEcefToUnreal(const glm::dvec3& ecef) const; /** * Transforms the given point from Earth-Centered, Earth-Fixed (ECEF) into - * Unreal relative world (relative to the floating origin). + * Unreal coordinates. The resulting position should generally not be + * interpreted as an Unreal _world_ position, but rather a position expressed + * in some parent Actor's reference frame as defined by its Transform. This + * way, the chain of Unreal transforms places and orients the "globe" in the + * Unreal world. */ UFUNCTION(BlueprintCallable, Category = "Cesium") FVector TransformEcefToUnreal(const FVector& Ecef) const; /** - * Transforms the given point from Unreal relative world (relative to the - * floating origin) to Earth-Centered, Earth-Fixed (ECEF). + * Transforms the given point from Unreal coordinates to Earth-Centered, + * Earth-Fixed (ECEF). The position should generally not be an Unreal _world_ + * position, but rather a position expressed in some parent Actor's reference + * frame as defined by its Transform. This way, the chain of Unreal transforms + * places and orients the "globe" in the Unreal world. */ glm::dvec3 TransformUnrealToEcef(const glm::dvec3& unreal) const; /** - * Transforms the given point from Unreal relative world (relative to the - * floating origin) to Earth-Centered, Earth-Fixed (ECEF). + * Transforms the given point from Unreal coordinates to Earth-Centered, + * Earth-Fixed (ECEF). The position should generally not be an Unreal _world_ + * position, but rather a position expressed in some parent Actor's reference + * frame as defined by its Transform. This way, the chain of Unreal transforms + * places and orients the "globe" in the Unreal world. */ UFUNCTION(BlueprintCallable, Category = "Cesium") FVector TransformUnrealToEcef(const FVector& Unreal) const; /** - * Transforms a rotator from Unreal world to East-South-Up at the given - * Unreal world location (relative to the floating origin). + * Transforms a rotator from Unreal to East-South-Up at the given + * Unreal location. The rotator and location should generally not be relative + * to the Unreal _world_, but rather be expressed in some parent + * Actor's reference frame as defined by its Transform. This way, the chain of + * Unreal transforms places and orients the "globe" in the Unreal world. */ glm::dquat TransformRotatorUnrealToEastSouthUp( const glm::dquat& UnrealRotator, const glm::dvec3& UnrealLocation) const; /** - * Transforms a rotator from Unreal world to East-South-Up at the given - * Unreal world location (relative to the floating origin). + * Transforms a rotator from Unreal to East-South-Up at the given + * Unreal location. The rotator and location should generally not be relative + * to the Unreal _world_, but rather be expressed in some parent + * Actor's reference frame as defined by its Transform. This way, the chain of + * Unreal transforms places and orients the "globe" in the Unreal world. */ UFUNCTION(BlueprintCallable, Category = "Cesium") FRotator TransformRotatorUnrealToEastSouthUp( @@ -358,16 +390,22 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { const FVector& UnrealLocation) const; /** - * Transforms a rotator from East-South-Up to Unreal world at the given - * Unreal world location (relative to the floating origin). + * Transforms a rotator from East-South-Up to Unreal at the given + * Unreal location. The location and resulting rotator should generally not be + * relative to the Unreal _world_, but rather be expressed in some parent + * Actor's reference frame as defined by its Transform. This way, the chain of + * Unreal transforms places and orients the "globe" in the Unreal world. */ glm::dquat TransformRotatorEastSouthUpToUnreal( const glm::dquat& EsuRotator, const glm::dvec3& UnrealLocation) const; /** - * Transforms a rotator from East-South-Up to Unreal world at the given - * Unreal world location (relative to the floating origin). + * Transforms a rotator from East-South-Up to Unreal at the given + * Unreal location. The location and resulting rotator should generally not be + * relative to the Unreal _world_, but rather be expressed in some parent + * Actor's reference frame as defined by its Transform. This way, the chain of + * Unreal transforms places and orients the "globe" in the Unreal world. */ UFUNCTION(BlueprintCallable, Category = "Cesium") FRotator TransformRotatorEastSouthUpToUnreal( @@ -376,17 +414,23 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { /** * Computes the rotation matrix from the local East-South-Up to Unreal at the - * specified Unreal world location (relative to the floating - * origin). The returned transformation works in Unreal's left-handed - * coordinate system. + * specified Unreal location. The returned transformation works in Unreal's + * left-handed coordinate system. The location and resulting rotation should + * generally not be relative to the Unreal _world_, but rather be expressed in + * some parent Actor's reference frame as defined by its Transform. This way, + * the chain of Unreal transforms places and orients the "globe" in the Unreal + * world. */ glm::dmat3 ComputeEastSouthUpToUnreal(const glm::dvec3& unreal) const; /** * Computes the rotation matrix from the local East-South-Up to Unreal at the - * specified Unreal world location (relative to the floating - * origin). The returned transformation works in Unreal's left-handed - * coordinate system. + * specified Unreal location. The returned transformation works in Unreal's + * left-handed coordinate system. The location and resulting rotation should + * generally not be relative to the Unreal _world_, but rather be expressed in + * some parent Actor's reference frame as defined by its Transform. This way, + * the chain of Unreal transforms places and orients the "globe" in the Unreal + * world. */ UFUNCTION(BlueprintCallable, Category = "Cesium") FMatrix ComputeEastSouthUpToUnreal(const FVector& Unreal) const; @@ -406,9 +450,9 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { /** * @brief Computes the normal of the plane tangent to the surface of the - * ellipsoid that is used by this instance, at the provided position. + * ellipsoid that is used by this instance, at the provided position ECEF. * - * @param position The cartesian position for which to to determine the + * @param position The ECEF position for which to to determine the * surface normal. * @return The normal. */ diff --git a/Source/CesiumRuntime/Public/GlobeAwareDefaultPawn.h b/Source/CesiumRuntime/Public/GlobeAwareDefaultPawn.h index 4c9dfbe97..e2ae80b4d 100644 --- a/Source/CesiumRuntime/Public/GlobeAwareDefaultPawn.h +++ b/Source/CesiumRuntime/Public/GlobeAwareDefaultPawn.h @@ -133,6 +133,15 @@ class CESIUMRUNTIME_API AGlobeAwareDefaultPawn : public ADefaultPawn { UPROPERTY(BlueprintAssignable, Category = "Cesium"); FInterruptedFlight OnFlightInterrupt; + /** + * Gets the transformation from globe's reference frame to the Unreal world + * (relative to the floating origin). This is equivalent to calling + * GetActorTransform on this pawn's attach parent, if it has one. If this pawn + * does not have an attach parent, an identity transformation is returned. + */ + UFUNCTION(BlueprintPure, Category = "Cesium") + const FTransform& GetGlobeToUnrealWorldTransform() const; + /** * Begin a smooth camera flight to the given Earth-Centered, Earth-Fixed * (ECEF) destination such that the camera ends at the specified yaw and From 0c5cb5e970efbb6b7a47fbcf219c1ae5f7d5c34f Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 12 Jul 2023 17:31:50 +1000 Subject: [PATCH 08/37] Formatting. --- Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp b/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp index 889543858..d47f4403f 100644 --- a/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp +++ b/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp @@ -138,7 +138,8 @@ void AGlobeAwareDefaultPawn::_interpolateFlightPosition( } } -const FTransform& AGlobeAwareDefaultPawn::GetGlobeToUnrealWorldTransform() const { +const FTransform& +AGlobeAwareDefaultPawn::GetGlobeToUnrealWorldTransform() const { AActor* pParent = this->GetAttachParentActor(); if (IsValid(pParent)) { return pParent->GetActorTransform(); From 97a337bf9186a6db7c626c9e4edc8acbab54c142 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Fri, 14 Jul 2023 18:14:06 +1000 Subject: [PATCH 09/37] Use standard Mobility property instead of our weird custom one. --- .../CesiumRuntime/Private/Cesium3DTileset.cpp | 12 ++++--- Source/CesiumRuntime/Public/Cesium3DTileset.h | 33 ++++++++----------- .../Public/CesiumCustomVersion.h | 4 +++ 3 files changed, 24 insertions(+), 25 deletions(-) diff --git a/Source/CesiumRuntime/Private/Cesium3DTileset.cpp b/Source/CesiumRuntime/Private/Cesium3DTileset.cpp index 46eedcfcd..a422e777c 100644 --- a/Source/CesiumRuntime/Private/Cesium3DTileset.cpp +++ b/Source/CesiumRuntime/Private/Cesium3DTileset.cpp @@ -109,6 +109,7 @@ ACesium3DTileset::ACesium3DTileset() this->RootComponent = CreateDefaultSubobject(TEXT("Tileset")); + this->Root = this->RootComponent; PlatformName = UGameplayStatics::GetPlatformName(); } @@ -120,8 +121,8 @@ TSoftObjectPtr ACesium3DTileset::GetGeoreference() const { } void ACesium3DTileset::SetMobility(EComponentMobility::Type NewMobility) { - if (NewMobility != this->Mobility) { - this->Mobility = NewMobility; + if (NewMobility != this->RootComponent->Mobility) { + this->RootComponent->SetMobility(NewMobility); DestroyTileset(); } } @@ -928,8 +929,6 @@ getCesiumViewExtension() { void ACesium3DTileset::LoadTileset() { TRACE_CPUPROFILER_EVENT_SCOPE(Cesium::LoadTileset) - this->RootComponent->SetMobility(Mobility); - if (this->_pTileset) { // Tileset already loaded, do nothing. return; @@ -2099,6 +2098,10 @@ void ACesium3DTileset::Serialize(FArchive& Ar) { this->TilesetSource = ETilesetSource::FromCesiumIon; } } + + if (CesiumVersion < FCesiumCustomVersion::TilesetMobilityRemoved) { + this->RootComponent->SetMobility(this->Mobility_DEPRECATED); + } } #if WITH_EDITOR @@ -2139,7 +2142,6 @@ void ACesium3DTileset::PostEditChangeProperty( GET_MEMBER_NAME_CHECKED(ACesium3DTileset, EnableOcclusionCulling) || PropName == GET_MEMBER_NAME_CHECKED(ACesium3DTileset, UseLodTransitions) || - PropName == GET_MEMBER_NAME_CHECKED(ACesium3DTileset, Mobility) || PropName == GET_MEMBER_NAME_CHECKED(ACesium3DTileset, ShowCreditsOnScreen) || // For properties nested in structs, GET_MEMBER_NAME_CHECKED will prefix diff --git a/Source/CesiumRuntime/Public/Cesium3DTileset.h b/Source/CesiumRuntime/Public/Cesium3DTileset.h index 861e95a8b..b6a00b1e3 100644 --- a/Source/CesiumRuntime/Public/Cesium3DTileset.h +++ b/Source/CesiumRuntime/Public/Cesium3DTileset.h @@ -81,31 +81,24 @@ class CESIUMRUNTIME_API ACesium3DTileset : public AActor { virtual ~ACesium3DTileset(); private: - /** - * The component mobility to use for the tileset. - */ + UPROPERTY(VisibleAnywhere) + USceneComponent* Root; + UPROPERTY( - EditAnywhere, - BlueprintReadWrite, - BlueprintGetter = "GetMobility", - BlueprintSetter = "SetMobility", - Category = "Cesium", - Meta = (AllowPrivateAccess)) - TEnumAsByte Mobility = EComponentMobility::Static; + Meta = + (AllowPrivateAccess, + DeprecatedProperty, + DeprecationMessage = + "Use the Mobility property on the RootComponent instead.")) + TEnumAsByte Mobility_DEPRECATED = + EComponentMobility::Static; public: - /** - * Set a component mobility to use for this tileset. - */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintCallable, meta = (DeprecatedFunction)) EComponentMobility::Type GetMobility() const { - return (EComponentMobility::Type)Mobility; + return this->RootComponent->Mobility; } - - /** - * Set a component mobility to use for this tileset. - */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintCallable, meta = (DeprecatedFunction)) void SetMobility(EComponentMobility::Type NewMobility); private: diff --git a/Source/CesiumRuntime/Public/CesiumCustomVersion.h b/Source/CesiumRuntime/Public/CesiumCustomVersion.h index 9e6986556..6b062bcc7 100644 --- a/Source/CesiumRuntime/Public/CesiumCustomVersion.h +++ b/Source/CesiumRuntime/Public/CesiumCustomVersion.h @@ -17,6 +17,10 @@ struct CESIUMRUNTIME_API FCesiumCustomVersion { // The Georeferencing system was refactored. GeoreferenceRefactoring = 2, + // The explicit Mobility property on Cesium3DTileset was removed, in favor + // of the normal Mobility property on the RootComponent. + TilesetMobilityRemoved = 3, + VersionPlusOne, LatestVersion = VersionPlusOne - 1 }; From 262b2565c38e7d3481b35778fbc0bc44ffb541ab Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Fri, 14 Jul 2023 18:14:34 +1000 Subject: [PATCH 10/37] Put the SkyLight back at the georeference origin. --- Source/CesiumRuntime/Private/CesiumSunSky.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumSunSky.cpp b/Source/CesiumRuntime/Private/CesiumSunSky.cpp index 8c56ad3a8..39c3d1048 100644 --- a/Source/CesiumRuntime/Private/CesiumSunSky.cpp +++ b/Source/CesiumRuntime/Private/CesiumSunSky.cpp @@ -97,9 +97,10 @@ ACesiumSunSky::ACesiumSunSky() : AActor() { SkyLight->bCastRaytracedShadow = true; #endif - // The Sky Light is fixed at the Georeference origin. - // TODO: should it follow the player? - SkyLight->SetRelativeLocation(FVector(0, 0, 0)); + // Initially put the SkyLight at the world origin. + // This is updated in UpdateSun. + SkyLight->SetUsingAbsoluteLocation(true); + SkyLight->SetWorldLocation(FVector(0, 0, 0)); // The Sky Atmosphere should be positioned relative to the // Scene/RootComponent, which is kept at the center of the Earth by the @@ -376,6 +377,11 @@ ACesiumGeoreference* ACesiumSunSky::GetGeoreference() const { } void ACesiumSunSky::UpdateSun_Implementation() { + // Put the Sky Light at the Georeference origin. + // TODO: should it follow the player? + this->SkyLight->SetUsingAbsoluteLocation(true); + this->SkyLight->SetWorldLocation(FVector(0, 0, 0)); + bool isDST = this->IsDST( this->UseDaylightSavingTime, this->DSTStartMonth, From 2fa4fa1e66a6cae434517b2a7f4ffeb22228d37a Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Fri, 14 Jul 2023 18:15:37 +1000 Subject: [PATCH 11/37] Make Cartographic Polygons honor transformations. --- .../Private/CesiumCartographicPolygon.cpp | 16 ++++++++++++---- .../Private/CesiumPolygonRasterOverlay.cpp | 10 +++++++++- .../Public/CesiumCartographicPolygon.h | 7 ++++++- 3 files changed, 27 insertions(+), 6 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp b/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp index 7c8fa465e..34ccc45e4 100644 --- a/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp +++ b/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp @@ -42,7 +42,8 @@ void ACesiumCartographicPolygon::BeginPlay() { } CesiumGeospatial::CartographicPolygon -ACesiumCartographicPolygon::CreateCartographicPolygon() const { +ACesiumCartographicPolygon::CreateCartographicPolygon( + const FTransform& worldToTileset) const { int32 splinePointsCount = this->Polygon->GetNumberOfSplinePoints(); if (splinePointsCount < 3) { @@ -51,10 +52,17 @@ ACesiumCartographicPolygon::CreateCartographicPolygon() const { std::vector polygon(splinePointsCount); + // The spline points should be located in the tileset _exactly where they + // appear to be_. The way we do that is by getting their world position, and + // then transforming that world position to a Cesium3DTileset local position. + // That way if the tileset is transformed relative to the globe, the polygon + // will still affect the tileset where the user thinks it should. + for (size_t i = 0; i < splinePointsCount; ++i) { - const FVector& unrealPosition = this->Polygon->GetLocationAtSplinePoint( - i, - ESplineCoordinateSpace::World); + const FVector& unrealPosition = worldToTileset.TransformPosition( + this->Polygon->GetLocationAtSplinePoint( + i, + ESplineCoordinateSpace::World)); glm::dvec3 cartographic = this->GlobeAnchor->ResolveGeoreference() ->TransformUnrealToLongitudeLatitudeHeight(glm::dvec3( diff --git a/Source/CesiumRuntime/Private/CesiumPolygonRasterOverlay.cpp b/Source/CesiumRuntime/Private/CesiumPolygonRasterOverlay.cpp index 289071a10..3011ff32d 100644 --- a/Source/CesiumRuntime/Private/CesiumPolygonRasterOverlay.cpp +++ b/Source/CesiumRuntime/Private/CesiumPolygonRasterOverlay.cpp @@ -4,6 +4,7 @@ #include "Cesium3DTilesSelection/RasterizedPolygonsOverlay.h" #include "Cesium3DTilesSelection/RasterizedPolygonsTileExcluder.h" #include "Cesium3DTilesSelection/Tileset.h" +#include "Cesium3DTileset.h" #include "CesiumBingMapsRasterOverlay.h" #include "CesiumCartographicPolygon.h" @@ -18,6 +19,12 @@ UCesiumPolygonRasterOverlay::UCesiumPolygonRasterOverlay() std::unique_ptr UCesiumPolygonRasterOverlay::CreateOverlay( const Cesium3DTilesSelection::RasterOverlayOptions& options) { + ACesium3DTileset* pTileset = this->GetOwner(); + if (pTileset == nullptr) + return nullptr; + + FTransform worldToTileset = pTileset->GetActorTransform().Inverse(); + std::vector polygons; polygons.reserve(this->Polygons.Num()); @@ -26,7 +33,8 @@ UCesiumPolygonRasterOverlay::CreateOverlay( continue; } - CartographicPolygon polygon = pPolygon->CreateCartographicPolygon(); + CartographicPolygon polygon = + pPolygon->CreateCartographicPolygon(worldToTileset); polygons.emplace_back(std::move(polygon)); } diff --git a/Source/CesiumRuntime/Public/CesiumCartographicPolygon.h b/Source/CesiumRuntime/Public/CesiumCartographicPolygon.h index 4121cf60f..6a8d0acc8 100644 --- a/Source/CesiumRuntime/Public/CesiumCartographicPolygon.h +++ b/Source/CesiumRuntime/Public/CesiumCartographicPolygon.h @@ -43,8 +43,13 @@ class CESIUMRUNTIME_API ACesiumCartographicPolygon : public AActor { /** * Creates and returns a CartographicPolygon object * created from the current spline selection. + * + * @param worldToTileset The transformation from Unreal world coordinates to + * the coordinates of the Cesium3DTileset Actor for which the cartographic + * polygon is being created. */ - CesiumGeospatial::CartographicPolygon CreateCartographicPolygon() const; + CesiumGeospatial::CartographicPolygon + CreateCartographicPolygon(const FTransform& worldToTileset) const; protected: virtual void BeginPlay() override; From 8534dd46c599f7ac4e1345fed654c502f112af58 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Fri, 14 Jul 2023 18:28:18 +1000 Subject: [PATCH 12/37] Transform coordinates for DynamicPawn LineTraces. --- Content/DynamicPawn.uasset | Bin 544175 -> 488741 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/Content/DynamicPawn.uasset b/Content/DynamicPawn.uasset index 2d6fc58233c9484298547cb3b29a763777d66773..377dc4b482ac12688353080c02a010d3be3cbdf4 100644 GIT binary patch literal 488741 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�u!h~ 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⁡Y7GQm-xwFpz^8+=fDt8E;G?UaMD<2;$P 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 literal 544175 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%0A@YfZC!Doh+Y8#Pc3ryuI+*X@r^&xQvm!FHTPT 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Ð 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%0Dpa)Re+9at%xZ_g>$8uJg>ZIy^g( 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 Iirx|b15V5hBLDyZ From db18c0ed78d2a369159dffa331f6f90f244f34cd Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Fri, 14 Jul 2023 22:23:06 +1000 Subject: [PATCH 13/37] Add a category to the new Root property. --- Source/CesiumRuntime/Public/Cesium3DTileset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/CesiumRuntime/Public/Cesium3DTileset.h b/Source/CesiumRuntime/Public/Cesium3DTileset.h index b6a00b1e3..e4bbe3ac0 100644 --- a/Source/CesiumRuntime/Public/Cesium3DTileset.h +++ b/Source/CesiumRuntime/Public/Cesium3DTileset.h @@ -81,7 +81,7 @@ class CESIUMRUNTIME_API ACesium3DTileset : public AActor { virtual ~ACesium3DTileset(); private: - UPROPERTY(VisibleAnywhere) + UPROPERTY(VisibleAnywhere, Category = "Cesium") USceneComponent* Root; UPROPERTY( From 67cd9c64be56a94a132e05301cf367176e8ee17b Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Tue, 18 Jul 2023 16:20:36 +1000 Subject: [PATCH 14/37] See TransmittanceMinLightElevationAngle to 90 degrees. --- CHANGES.md | 1 + Source/CesiumRuntime/Private/CesiumSunSky.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index cfdcec0de..5fb01db4d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,6 +5,7 @@ ##### Breaking Changes :mega: - The old sub-level system, based on Unreal's old (and now deprecated) World Composition system, has been removed. Instead, create Level Instance Actors and attach the "Cesium Sub Level Component" to them to achieve similar functionality. Old levels will automatically be converted to the new system when they are loaded in the Editor. +- `CesiumSunSky` now uses a default `TransmittanceMinLightElevationAngle` value on its `SkyAtmosphere` component of 90.0 degrees instead of -90.0 degrees. This will generally improve lighting when far from the CesiumGeoreference origin, but it is a breaking change because it may change the lighting conditions in existing levels. ##### Additions :tada: diff --git a/Source/CesiumRuntime/Private/CesiumSunSky.cpp b/Source/CesiumRuntime/Private/CesiumSunSky.cpp index 39c3d1048..7454bb03a 100644 --- a/Source/CesiumRuntime/Private/CesiumSunSky.cpp +++ b/Source/CesiumRuntime/Private/CesiumSunSky.cpp @@ -110,6 +110,7 @@ ACesiumSunSky::ACesiumSunSky() : AActor() { SkyAtmosphere->SetupAttachment(Scene); SkyAtmosphere->TransformMode = ESkyAtmosphereTransformMode::PlanetCenterAtComponentTransform; + SkyAtmosphere->TransmittanceMinLightElevationAngle = 90.0f; this->GlobeAnchor = CreateDefaultSubobject(TEXT("GlobeAnchor")); From 65a424547c1a90cf08acc077ad9b9301350ebfe7 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Tue, 18 Jul 2023 22:19:45 +1000 Subject: [PATCH 15/37] Scale more SkyAtmosphere parameters with the globe. --- Source/CesiumRuntime/Private/CesiumSunSky.cpp | 36 +++++++++-- Source/CesiumRuntime/Public/CesiumSunSky.h | 61 ++++++++++++++++++- 2 files changed, 90 insertions(+), 7 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumSunSky.cpp b/Source/CesiumRuntime/Private/CesiumSunSky.cpp index 7454bb03a..d24f14380 100644 --- a/Source/CesiumRuntime/Private/CesiumSunSky.cpp +++ b/Source/CesiumRuntime/Private/CesiumSunSky.cpp @@ -184,7 +184,7 @@ void ACesiumSunSky::_spawnSkySphere() { double ACesiumSunSky::_computeScale() const { // The SkyAtmosphere is not affected by Actor scaling, so we do it manually. FVector actorScale = this->GetActorScale(); - return actorScale.GetMax() * (this->GetGeoreference()->GetScale() / 100.0); + return actorScale.GetMax(); } void ACesiumSunSky::UpdateSkySphere() { @@ -262,11 +262,36 @@ void ACesiumSunSky::Tick(float DeltaSeconds) { } if (IsValid(this->SkyAtmosphere)) { - float atmosphereHeight = - float(this->_computeScale() * this->AtmosphereHeight); + double scale = this->_computeScale(); + + float atmosphereHeight = float(scale * this->AtmosphereHeight); if (atmosphereHeight != this->SkyAtmosphere->AtmosphereHeight) { this->SkyAtmosphere->SetAtmosphereHeight(atmosphereHeight); } + + float aerialPerspectiveViewDistanceScale = + float(this->AerialPerspectiveViewDistanceScale / scale); + if (aerialPerspectiveViewDistanceScale != + this->SkyAtmosphere->AerialPespectiveViewDistanceScale) { + this->SkyAtmosphere->SetAerialPespectiveViewDistanceScale( + aerialPerspectiveViewDistanceScale); + } + + float rayleighExponentialDistribution = + float(scale * this->RayleighExponentialDistribution); + if (rayleighExponentialDistribution != + this->SkyAtmosphere->RayleighExponentialDistribution) { + this->SkyAtmosphere->SetRayleighExponentialDistribution( + rayleighExponentialDistribution); + } + + float mieExponentialDistribution = + float(scale * this->MieExponentialDistribution); + if (mieExponentialDistribution != + this->SkyAtmosphere->MieExponentialDistribution) { + this->SkyAtmosphere->SetMieExponentialDistribution( + mieExponentialDistribution); + } } } @@ -553,8 +578,9 @@ void ACesiumSunSky::SetSkyAtmosphereGroundRadius( USkyAtmosphereComponent* Sky, double Radius) { // Only update if there's a significant change to be made - if (Sky && FMath::Abs(Sky->BottomRadius - Radius) > 0.1) { - Sky->BottomRadius = Radius; + float radiusFloat = float(Radius); + if (Sky && !FMath::IsNearlyEqualByULP(radiusFloat, Sky->BottomRadius)) { + Sky->BottomRadius = radiusFloat; Sky->MarkRenderStateDirty(); UE_LOG(LogCesium, Verbose, TEXT("GroundRadius now %f"), Sky->BottomRadius); } diff --git a/Source/CesiumRuntime/Public/CesiumSunSky.h b/Source/CesiumRuntime/Public/CesiumSunSky.h index 10c5a9810..54b54da27 100644 --- a/Source/CesiumRuntime/Public/CesiumSunSky.h +++ b/Source/CesiumRuntime/Public/CesiumSunSky.h @@ -257,6 +257,9 @@ class CESIUMRUNTIME_API ACesiumSunSky : public AActor { * At player pawn heights in between InscribedGroundThreshold and * CircumscribedGroundThreshold, this Actor uses a linear interpolation * between the two ground radii. + * + * This value is automatically scaled according to the CesiumGeoreference + * Scale and the Actor scale. */ UPROPERTY( EditAnywhere, @@ -281,6 +284,9 @@ class CESIUMRUNTIME_API ACesiumSunSky : public AActor { * At heights in between InscribedGroundThreshold and * CircumscribedGroundThreshold, this Actor uses a linear interpolation * between the two ground radii. + * + * This value is automatically scaled according to the CesiumGeoreference + * Scale and the Actor scale. */ UPROPERTY( EditAnywhere, @@ -296,8 +302,59 @@ class CESIUMRUNTIME_API ACesiumSunSky : public AActor { * minimum effective value of 0.1, so the atmosphere will look too thick when * the globe is scaled down drastically. */ - UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Cesium|Atmosphere") - double AtmosphereHeight = 60.0; + UPROPERTY( + EditAnywhere, + BlueprintReadOnly, + interp, + Category = "Cesium|Atmosphere", + meta = (UIMin = 1.0, UIMax = 200.0, ClampMin = 0.1, SliderExponent = 2.0)) + float AtmosphereHeight = 60.0f; + + /** + * Makes the aerial perspective look thicker by scaling distances from view + * to surfaces (opaque and translucent). This value is automatically scaled + * according to the CesiumGeoreference Scale and the Actor scale. + */ + UPROPERTY( + EditAnywhere, + BlueprintReadOnly, + interp, + Category = "Cesium|Atmosphere", + meta = + (DisplayName = "Aerial Perspective View Distance Scale", + UIMin = 0.0, + UIMax = 3.0, + ClampMin = 0.0, + SliderExponent = 2.0)) + float AerialPerspectiveViewDistanceScale = 1.0f; + + /** + * The altitude in kilometers at which Rayleigh scattering effect is reduced to + * 40%. This value is automatically scaled according to the CesiumGeoreference + * Scale and the Actor scale. + */ + UPROPERTY( + EditAnywhere, + BlueprintReadOnly, + interp, + Category = "Cesium|Atmosphere", + meta = + (UIMin = 0.01, UIMax = 20.0, ClampMin = 0.001, SliderExponent = 5.0)) + float RayleighExponentialDistribution = 8.0f; + + /** + * The altitude in kilometers at which Mie effects are reduced to 40%. This + * value is automatically scaled according to the CesiumGeoreference Scale and + * the Actor scale. + */ + UPROPERTY( + EditAnywhere, + BlueprintReadOnly, + interp, + Category = "Cesium|Atmosphere", + meta = + (UIMin = 0.01, UIMax = 10.0, ClampMin = 0.001, SliderExponent = 5.0)) + float MieExponentialDistribution = 1.2f; /** * False: Use Directional Light component inside CesiumSunSky. From edbce56c89ac3a2f97fd4f10e72acc00d5d5fab6 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 19 Jul 2023 16:27:12 +1000 Subject: [PATCH 16/37] Fix sub-level switching with georeference transforms. --- Source/CesiumRuntime/Private/CesiumGeoreference.cpp | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index a0bf5a949..31eb707af 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -630,10 +630,15 @@ bool ACesiumGeoreference::_updateSublevelState() { glm::dvec4 cameraAbsolute = VecMath::add4D(cameraLocation, originLocation); - glm::dvec3 cameraECEF = glm::dvec3( - this->_geoTransforms - .GetAbsoluteUnrealWorldToEllipsoidCenteredTransform() * - cameraAbsolute); + glm::dmat4 ueGeoreferenceToUeWorld = + VecMath::createMatrix4D(this->GetActorTransform().ToMatrixWithScale()); + + const glm::dmat4& cesiumGeoreferenceToUeGeoreference = + this->_geoTransforms.GetEllipsoidCenteredToAbsoluteUnrealWorldTransform(); + glm::dmat4 unrealWorldToCesiumGeoreference = glm::affineInverse( + ueGeoreferenceToUeWorld * cesiumGeoreferenceToUeGeoreference); + glm::dvec3 cameraECEF = + glm::dvec3(unrealWorldToCesiumGeoreference * cameraAbsolute); ALevelInstance* pClosestActiveLevel = nullptr; double closestLevelDistance = std::numeric_limits::max(); From 89a5ab78a737f60bc12b208ebffdbb4c1f41565e Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 19 Jul 2023 16:27:29 +1000 Subject: [PATCH 17/37] Make sure ComponentToWorld is updated when updating relative transform. --- Source/CesiumRuntime/Private/CesiumGltfPrimitiveComponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/CesiumRuntime/Private/CesiumGltfPrimitiveComponent.cpp b/Source/CesiumRuntime/Private/CesiumGltfPrimitiveComponent.cpp index cfd201be9..6d51002e2 100644 --- a/Source/CesiumRuntime/Private/CesiumGltfPrimitiveComponent.cpp +++ b/Source/CesiumRuntime/Private/CesiumGltfPrimitiveComponent.cpp @@ -43,7 +43,7 @@ void UCesiumGltfPrimitiveComponent::UpdateTransformFromCesium( // too, so in a relative sense the object isn't actually moving. This isn't // a perfect assumption, of course. this->SetRelativeTransform_Direct(transform); - this->ConditionalUpdateComponentToWorld(); + this->UpdateComponentToWorld(); this->MarkRenderTransformDirty(); this->SendPhysicsTransform(ETeleportType::ResetPhysics); } From 3ba394b507d68d4b3bcbfafed2057234b6ce9318 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 19 Jul 2023 16:28:11 +1000 Subject: [PATCH 18/37] Formatting. --- Source/CesiumRuntime/Public/CesiumSunSky.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/CesiumRuntime/Public/CesiumSunSky.h b/Source/CesiumRuntime/Public/CesiumSunSky.h index 54b54da27..b0984272f 100644 --- a/Source/CesiumRuntime/Public/CesiumSunSky.h +++ b/Source/CesiumRuntime/Public/CesiumSunSky.h @@ -329,9 +329,9 @@ class CESIUMRUNTIME_API ACesiumSunSky : public AActor { float AerialPerspectiveViewDistanceScale = 1.0f; /** - * The altitude in kilometers at which Rayleigh scattering effect is reduced to - * 40%. This value is automatically scaled according to the CesiumGeoreference - * Scale and the Actor scale. + * The altitude in kilometers at which Rayleigh scattering effect is reduced + * to 40%. This value is automatically scaled according to the + * CesiumGeoreference Scale and the Actor scale. */ UPROPERTY( EditAnywhere, From f1620294053e2d48b90851cc90f8740476e557bc Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 19 Jul 2023 17:19:33 +1000 Subject: [PATCH 19/37] Account for parent orientation in setting directional light rotation. --- Source/CesiumRuntime/Private/CesiumSunSky.cpp | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumSunSky.cpp b/Source/CesiumRuntime/Private/CesiumSunSky.cpp index d24f14380..ed8517ac2 100644 --- a/Source/CesiumRuntime/Private/CesiumSunSky.cpp +++ b/Source/CesiumRuntime/Private/CesiumSunSky.cpp @@ -442,13 +442,24 @@ void ACesiumSunSky::UpdateSun_Implementation() { 180.0f + (this->Azimuth + this->NorthOffset), 0.0f); + FTransform transform{}; + USceneComponent* pRootComponent = this->GetRootComponent(); + if (IsValid(pRootComponent)) { + USceneComponent* pParent = pRootComponent->GetAttachParent(); + if (IsValid(pParent)) { + transform = pParent->GetComponentToWorld(); + } + } + + FQuat worldRotation = transform.TransformRotation(newRotation.Quaternion()); + // Orient sun / directional light if (this->UseLevelDirectionalLight && IsValid(this->LevelDirectionalLight) && IsValid(this->LevelDirectionalLight->GetRootComponent())) { - this->LevelDirectionalLight->GetRootComponent()->SetRelativeRotation( - newRotation); + this->LevelDirectionalLight->GetRootComponent()->SetWorldRotation( + worldRotation); } else { - this->DirectionalLight->SetRelativeRotation(newRotation); + this->DirectionalLight->SetWorldRotation(worldRotation); } // Mobile only From 18569758571444e7d2a5d5bb14c9e7240e903333 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 19 Jul 2023 18:49:34 +1000 Subject: [PATCH 20/37] Update CHANGES.md. --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 5fb01db4d..6ac10c4eb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,7 +5,7 @@ ##### Breaking Changes :mega: - The old sub-level system, based on Unreal's old (and now deprecated) World Composition system, has been removed. Instead, create Level Instance Actors and attach the "Cesium Sub Level Component" to them to achieve similar functionality. Old levels will automatically be converted to the new system when they are loaded in the Editor. -- `CesiumSunSky` now uses a default `TransmittanceMinLightElevationAngle` value on its `SkyAtmosphere` component of 90.0 degrees instead of -90.0 degrees. This will generally improve lighting when far from the CesiumGeoreference origin, but it is a breaking change because it may change the lighting conditions in existing levels. +- `CesiumSunSky` now uses a default `TransmittanceMinLightElevationAngle` value on its `SkyAtmosphere` component of 90.0 degrees instead of -90.0 degrees. This will generally improve lighting when far from the CesiumGeoreference origin, but it is a breaking change because it may change the lighting conditions in existing levels, particularly at sunrise and sunset. ##### Additions :tada: From 13a7389e9d540dade45b1c82c74724fa99dd12ae Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 19 Jul 2023 19:49:07 +1000 Subject: [PATCH 21/37] Update CHANGES.md. --- CHANGES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 6ac10c4eb..00568fe4d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,7 @@ - The old sub-level system, based on Unreal's old (and now deprecated) World Composition system, has been removed. Instead, create Level Instance Actors and attach the "Cesium Sub Level Component" to them to achieve similar functionality. Old levels will automatically be converted to the new system when they are loaded in the Editor. - `CesiumSunSky` now uses a default `TransmittanceMinLightElevationAngle` value on its `SkyAtmosphere` component of 90.0 degrees instead of -90.0 degrees. This will generally improve lighting when far from the CesiumGeoreference origin, but it is a breaking change because it may change the lighting conditions in existing levels, particularly at sunrise and sunset. +- The `Mobility` property on `ACesium3DTileset` is now obsolete. Instead, use the normal mechanism of setting the root component's mobility. ##### Additions :tada: @@ -14,12 +15,15 @@ - The `CesiumCameraManager` instance to use with a `Cesium3DTileset` can now be specified with a property on the tileset. In addition to offering more flexibility, this avoids the work of finding the camera manager in the level every frame. - Cesium Actors created with the Quick Add or Cesium ion panels are now created inside the active sub-level, if there is one. - Cesium objects in sub-levels can now explicitly reference `ACesiumGeoreference`, `ACesiumCreditSystem`, and `ACesiumCameraManager` instances in the Persistent Level. +- `ACesiumGeoreference` can now act as a parent Actor. By adjusting the georeference's transformation, the entire globe can be located, rotated, and scaled within the Unreal Engine world. +- Added `AtmosphereHeight`, `AerialPerspectiveViewDistanceScale`, `RayleighExponentialDistribution`, and `MieExponentialDistribution` properties to `ACesiumSunSky`. These have the same function as the properties of the same name on Unreal's built-in SkyAtmosphere component, except that they automatically respond to the scale of the globe. ##### Fixes :wrench: - Fixed a bug in `ACesiumSunSky` that could cause an error when it was created inside a sub-level. - `ACesiumGeoreference`, `ACesiumCameraManager`, and `ACesiumCreditSystem` are now created in the Persistent Level, even if the object that triggered their automatic creation (such as `ACesium3DTileset`) exists in a sub-level. It is very rarely useful to have instances of these objects within a sub-level. - An instance of `ACesiumCreditSystem` in a sub-level will no longer cause overlapping and broken-looking credits. However, we still recommend deleting credit system instances from sub-levels. +- `ACesiumCartographicPolygon` now operates on the parts of the tileset that are shown in the Editor viewport, even if it is used with a Cesium3DTileset with a non-identity transformation. ### v1.28.0 - 2023-07-03 From 1110285a71cd20c43279c01ee6295dc852def5e9 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Wed, 19 Jul 2023 20:19:56 +1000 Subject: [PATCH 22/37] Fix visualization of sub-level load radius. --- .../CesiumRuntime/Private/CesiumGeoreference.cpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index 31eb707af..d35eedbe5 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -528,15 +528,16 @@ void ACesiumGeoreference::_showSubLevelLoadRadii() const { pComponent->GetOriginLatitude(), pComponent->GetOriginHeight())); - glm::dvec4 levelAbs = - this->_geoTransforms - .GetEllipsoidCenteredToAbsoluteUnrealWorldTransform() * - glm::dvec4(levelECEF, 1.0); - FVector levelRelative = VecMath::createVector(levelAbs - originLocation); + FVector center = this->TransformLongitudeLatitudeHeightToUnreal(FVector( + pComponent->GetOriginLongitude(), + pComponent->GetOriginLatitude(), + pComponent->GetOriginHeight())); + center = GetActorTransform().TransformPosition(center); + DrawDebugSphere( world, - levelRelative, - 100.0 * pComponent->GetLoadRadius(), + center, + 100.0 * pComponent->GetLoadRadius() * GetActorScale3D().GetMax(), 100, FColor::Blue); } From 52897b27f5eafda1cee1262d3c294b382030dbe3 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Thu, 20 Jul 2023 21:15:01 +1000 Subject: [PATCH 23/37] Lots of CesiumGeoreference cleanup. --- .../Private/CesiumCartographicPolygon.cpp | 10 +- .../Private/CesiumGeoreference.cpp | 335 ++++------- .../Private/CesiumGlobeAnchorComponent.cpp | 10 +- .../Private/CesiumSubLevelComponent.cpp | 16 +- Source/CesiumRuntime/Private/CesiumSunSky.cpp | 16 +- .../Private/CesiumWgs84Ellipsoid.cpp | 63 +++ .../Private/GlobeAwareDefaultPawn.cpp | 7 +- .../Private/Tests/SubLevels.spec.cpp | 18 +- .../CesiumRuntime/Public/CesiumGeoreference.h | 518 +++++++----------- .../Public/CesiumWgs84Ellipsoid.h | 74 +++ 10 files changed, 474 insertions(+), 593 deletions(-) create mode 100644 Source/CesiumRuntime/Private/CesiumWgs84Ellipsoid.cpp create mode 100644 Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h diff --git a/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp b/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp index 34ccc45e4..d81260681 100644 --- a/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp +++ b/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp @@ -63,14 +63,12 @@ ACesiumCartographicPolygon::CreateCartographicPolygon( this->Polygon->GetLocationAtSplinePoint( i, ESplineCoordinateSpace::World)); - glm::dvec3 cartographic = + FVector cartographic = this->GlobeAnchor->ResolveGeoreference() - ->TransformUnrealToLongitudeLatitudeHeight(glm::dvec3( - unrealPosition.X, - unrealPosition.Y, - unrealPosition.Z)); + ->TransformUnrealToLongitudeLatitudeHeight( + FVector(unrealPosition.X, unrealPosition.Y, unrealPosition.Z)); polygon[i] = - glm::dvec2(glm::radians(cartographic.x), glm::radians(cartographic.y)); + glm::dvec2(glm::radians(cartographic.X), glm::radians(cartographic.Y)); } return CartographicPolygon(polygon); diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index d35eedbe5..b6f293909 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -121,13 +121,7 @@ ACesiumGeoreference::GetDefaultGeoreference(const UObject* WorldContextObject) { return pGeoreference; } -ACesiumGeoreference::ACesiumGeoreference() - : AActor(), - _ellipsoidRadii{ - CesiumGeospatial::Ellipsoid::WGS84.getRadii().x, - CesiumGeospatial::Ellipsoid::WGS84.getRadii().y, - CesiumGeospatial::Ellipsoid::WGS84.getRadii().z}, - _geoTransforms() { +ACesiumGeoreference::ACesiumGeoreference() : AActor(), _geoTransforms() { PrimaryActorTick.bCanEverTick = true; this->Root = CreateDefaultSubobject(TEXT("Root")); @@ -232,7 +226,7 @@ FString longPackageNameToCesiumName(UWorld* pWorld, const TStringish& name) { } // namespace #if WITH_EDITOR -void ACesiumGeoreference::_updateCesiumSubLevels() { +void ACesiumGeoreference::_createSubLevelsFromWorldComposition() { UWorld* pWorld = this->GetWorld(); if (!IsValid(pWorld)) { // This happens for the georeference that is shown in the @@ -339,57 +333,86 @@ void ACesiumGeoreference::_updateCesiumSubLevels() { } #endif -void ACesiumGeoreference::SetScale(double NewScale) { - if (NewScale < 1e-6) { - this->Scale = 1e-6; - } else { - this->Scale = NewScale; - } - this->UpdateGeoreference(); -} - -double ACesiumGeoreference::GetScale() const { return Scale; } - FVector ACesiumGeoreference::GetGeoreferenceOriginLongitudeLatitudeHeight() const { return FVector(OriginLongitude, OriginLatitude, OriginHeight); } void ACesiumGeoreference::SetGeoreferenceOriginLongitudeLatitudeHeight( - const glm::dvec3& targetLongitudeLatitudeHeight) { + const FVector& targetLongitudeLatitudeHeight) { this->_setGeoreferenceOrigin( - targetLongitudeLatitudeHeight.x, - targetLongitudeLatitudeHeight.y, - targetLongitudeLatitudeHeight.z); + targetLongitudeLatitudeHeight.X, + targetLongitudeLatitudeHeight.Y, + targetLongitudeLatitudeHeight.Z); } -void ACesiumGeoreference::SetGeoreferenceOrigin( - const glm::dvec3& TargetLongitudeLatitudeHeight) { - UE_LOG( - LogCesium, - Warning, - TEXT( - "SetGeoreferenceOrigin was renamed to SetGeoreferenceOriginLongitudeLatitudeHeight.")); - SetGeoreferenceOriginLongitudeLatitudeHeight(TargetLongitudeLatitudeHeight); +void ACesiumGeoreference::SetGeoreferenceOriginEcef(const FVector& TargetEcef) { + this->SetGeoreferenceOriginLongitudeLatitudeHeight(VecMath::createVector( + _geoTransforms.TransformEcefToLongitudeLatitudeHeight( + VecMath::createVector3D(TargetEcef)))); } -void ACesiumGeoreference::SetGeoreferenceOriginEcef( - const glm::dvec3& TargetEcef) { - SetGeoreferenceOriginLongitudeLatitudeHeight( - _geoTransforms.TransformEcefToLongitudeLatitudeHeight(TargetEcef)); +EOriginPlacement ACesiumGeoreference::GetOriginPlacement() const { + return this->OriginPlacement; } -void ACesiumGeoreference::SetGeoreferenceOriginLongitudeLatitudeHeight( - const FVector& targetLongitudeLatitudeHeight) { - this->SetGeoreferenceOriginLongitudeLatitudeHeight(glm::dvec3( - targetLongitudeLatitudeHeight.X, - targetLongitudeLatitudeHeight.Y, - targetLongitudeLatitudeHeight.Z)); +void ACesiumGeoreference::SetOriginPlacement(EOriginPlacement NewValue) { + this->OriginPlacement = NewValue; + this->UpdateGeoreference(); } -void ACesiumGeoreference::SetGeoreferenceOriginEcef(const FVector& TargetEcef) { - this->SetGeoreferenceOriginEcef( - glm::dvec3(TargetEcef.X, TargetEcef.Y, TargetEcef.Z)); +double ACesiumGeoreference::GetOriginLatitude() const { + return this->OriginLatitude; +} + +void ACesiumGeoreference::SetOriginLatitude(double NewValue) { + this->OriginLatitude = NewValue; + this->UpdateGeoreference(); +} + +double ACesiumGeoreference::GetOriginLongitude() const { + return this->OriginLongitude; +} + +void ACesiumGeoreference::SetOriginLongitude(double NewValue) { + this->OriginLongitude = NewValue; + this->UpdateGeoreference(); +} + +double ACesiumGeoreference::GetOriginHeight() const { + return this->OriginHeight; +} + +void ACesiumGeoreference::SetOriginHeight(double NewValue) { + this->OriginHeight = NewValue; + this->UpdateGeoreference(); +} + +double ACesiumGeoreference::GetScale() const { return this->Scale; } + +void ACesiumGeoreference::SetScale(double NewValue) { + if (NewValue < 1e-6) { + this->Scale = 1e-6; + } else { + this->Scale = NewValue; + } + this->UpdateGeoreference(); +} + +APlayerCameraManager* ACesiumGeoreference::GetSubLevelCamera() const { + return this->SubLevelCamera; +} + +void ACesiumGeoreference::SetSubLevelCamera(APlayerCameraManager* NewValue) { + this->SubLevelCamera = NewValue; +} + +bool ACesiumGeoreference::GetShowLoadRadii() const { + return this->ShowLoadRadii; +} + +void ACesiumGeoreference::SetShowLoadRadii(bool NewValue) { + this->ShowLoadRadii = NewValue; } // Called when the game starts or when spawned @@ -426,13 +449,11 @@ void ACesiumGeoreference::BeginPlay() { UpdateGeoreference(); } -void ACesiumGeoreference::EndPlay(const EEndPlayReason::Type EndPlayReason) { - Super::EndPlay(EndPlayReason); -} - /** In case the CesiumGeoreference gets spawned at run time, instead of design * time, ensure that frames are updated */ void ACesiumGeoreference::OnConstruction(const FTransform& Transform) { + Super::OnConstruction(Transform); + UE_LOG( LogCesium, Verbose, @@ -444,6 +465,18 @@ void ACesiumGeoreference::OnConstruction(const FTransform& Transform) { void ACesiumGeoreference::BeginDestroy() { Super::BeginDestroy(); } +void ACesiumGeoreference::PostLoad() { + Super::PostLoad(); + +#if WITH_EDITOR + if (GEditor && IsValid(this->GetWorld()) && + IsValid(this->GetWorld()->WorldComposition) && + !this->GetWorld()->IsGameWorld()) { + this->_createSubLevelsFromWorldComposition(); + } +#endif +} + void ACesiumGeoreference::UpdateGeoreference() { this->_updateGeoTransforms(); @@ -544,51 +577,6 @@ void ACesiumGeoreference::_showSubLevelLoadRadii() const { } #endif // WITH_EDITOR -#if WITH_EDITOR -void ACesiumGeoreference::_handleViewportOriginEditing() { - if (!this->EditOriginInViewport) { - return; - } - FHitResult mouseRayResults; - bool mouseRaySuccess; - - this->_lineTraceViewportMouse(false, mouseRaySuccess, mouseRayResults); - - if (!mouseRaySuccess) { - return; - } - const FIntVector& originLocation = this->GetWorld()->OriginLocation; - - FVector grabbedLocation = mouseRayResults.Location; - // convert from UE to ECEF to LongitudeLatitudeHeight - glm::dvec4 grabbedLocationAbs = - VecMath::add4D(grabbedLocation, originLocation); - - glm::dvec3 grabbedLocationECEF = glm::dvec3( - this->_geoTransforms - .GetAbsoluteUnrealWorldToEllipsoidCenteredTransform() * - grabbedLocationAbs); - - glm::dvec3 cartographic = - _geoTransforms.TransformEcefToLongitudeLatitudeHeight( - grabbedLocationECEF); - - UE_LOG( - LogActor, - Warning, - TEXT("Mouse Location: (Longitude: %f, Latitude: %f, Height: %f)"), - cartographic.x, - cartographic.y, - cartographic.z); - - // TODO: find editor viewport mouse click event - // if (mouseDown) { - // this->_setGeoreferenceOrigin() - // this->EditOriginInViewport = false; - //} -} -#endif // WITH_EDITOR - namespace { /** * @brief Clamping addition. @@ -686,10 +674,7 @@ void ACesiumGeoreference::_updateGeoTransforms() { } this->_geoTransforms = GeoTransforms( - CesiumGeospatial::Ellipsoid( - this->_ellipsoidRadii[0], - this->_ellipsoidRadii[1], - this->_ellipsoidRadii[2]), + CesiumGeospatial::Ellipsoid::WGS84, center, this->Scale / 100.0); } @@ -698,16 +683,7 @@ void ACesiumGeoreference::Tick(float DeltaTime) { Super::Tick(DeltaTime); #if WITH_EDITOR - // There doesn't appear to be a good way to be notified about the wide variety - // of level manipulations we care about, so in the Editor we'll poll. - if (GEditor && IsValid(this->GetWorld()) && - IsValid(this->GetWorld()->WorldComposition) && - !this->GetWorld()->IsGameWorld()) { - this->_updateCesiumSubLevels(); - } - _showSubLevelLoadRadii(); - _handleViewportOriginEditing(); #endif if (this->_shouldManageSubLevels()) { @@ -728,12 +704,6 @@ void ACesiumGeoreference::Serialize(FArchive& Ar) { * Useful Conversion Functions */ -glm::dvec3 ACesiumGeoreference::TransformLongitudeLatitudeHeightToEcef( - const glm::dvec3& longitudeLatitudeHeight) const { - return _geoTransforms.TransformLongitudeLatitudeHeightToEcef( - longitudeLatitudeHeight); -} - FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightToEcef( const FVector& longitudeLatitudeHeight) const { glm::dvec3 ecef = this->_geoTransforms.TransformLongitudeLatitudeHeightToEcef( @@ -741,11 +711,6 @@ FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightToEcef( return FVector(ecef.x, ecef.y, ecef.z); } -glm::dvec3 ACesiumGeoreference::TransformEcefToLongitudeLatitudeHeight( - const glm::dvec3& ecef) const { - return _geoTransforms.TransformEcefToLongitudeLatitudeHeight(ecef); -} - FVector ACesiumGeoreference::TransformEcefToLongitudeLatitudeHeight( const FVector& ecef) const { glm::dvec3 llh = this->_geoTransforms.TransformEcefToLongitudeLatitudeHeight( @@ -753,13 +718,6 @@ FVector ACesiumGeoreference::TransformEcefToLongitudeLatitudeHeight( return FVector(llh.x, llh.y, llh.z); } -glm::dvec3 ACesiumGeoreference::TransformLongitudeLatitudeHeightToUnreal( - const glm::dvec3& longitudeLatitudeHeight) const { - return this->_geoTransforms.TransformLongitudeLatitudeHeightToUnreal( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - longitudeLatitudeHeight); -} - FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightToUnreal( const FVector& longitudeLatitudeHeight) const { glm::dvec3 ue = this->_geoTransforms.TransformLongitudeLatitudeHeightToUnreal( @@ -768,13 +726,6 @@ FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightToUnreal( return FVector(ue.x, ue.y, ue.z); } -glm::dvec3 ACesiumGeoreference::TransformUnrealToLongitudeLatitudeHeight( - const glm::dvec3& ue) const { - return this->_geoTransforms.TransformUnrealToLongitudeLatitudeHeight( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - ue); -} - FVector ACesiumGeoreference::TransformUnrealToLongitudeLatitudeHeight( const FVector& ue) const { glm::dvec3 llh = @@ -784,13 +735,6 @@ FVector ACesiumGeoreference::TransformUnrealToLongitudeLatitudeHeight( return FVector(llh.x, llh.y, llh.z); } -glm::dvec3 -ACesiumGeoreference::TransformEcefToUnreal(const glm::dvec3& ecef) const { - return this->_geoTransforms.TransformEcefToUnreal( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - ecef); -} - FVector ACesiumGeoreference::TransformEcefToUnreal(const FVector& ecef) const { glm::dvec3 ue = this->_geoTransforms.TransformEcefToUnreal( glm::dvec3(CesiumActors::getWorldOrigin4D(this)), @@ -798,13 +742,6 @@ FVector ACesiumGeoreference::TransformEcefToUnreal(const FVector& ecef) const { return FVector(ue.x, ue.y, ue.z); } -glm::dvec3 -ACesiumGeoreference::TransformUnrealToEcef(const glm::dvec3& ue) const { - return this->_geoTransforms.TransformUnrealToEcef( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - ue); -} - FVector ACesiumGeoreference::TransformUnrealToEcef(const FVector& ue) const { glm::dvec3 ecef = this->_geoTransforms.TransformUnrealToEcef( glm::dvec3(CesiumActors::getWorldOrigin4D(this)), @@ -812,47 +749,24 @@ FVector ACesiumGeoreference::TransformUnrealToEcef(const FVector& ue) const { return FVector(ecef.x, ecef.y, ecef.z); } -glm::dquat ACesiumGeoreference::TransformRotatorUnrealToEastSouthUp( - const glm::dquat& UeRotator, - const glm::dvec3& UeLocation) const { - return this->_geoTransforms.TransformRotatorUnrealToEastSouthUp( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - UeRotator, - UeLocation); -} - FRotator ACesiumGeoreference::TransformRotatorUnrealToEastSouthUp( const FRotator& UERotator, const FVector& ueLocation) const { - glm::dquat q = TransformRotatorUnrealToEastSouthUp( - VecMath::createQuaternion(UERotator.Quaternion()), - VecMath::createVector3D(ueLocation)); - return VecMath::createRotator(q); -} - -glm::dquat ACesiumGeoreference::TransformRotatorEastSouthUpToUnreal( - const glm::dquat& EsuRotator, - const glm::dvec3& UeLocation) const { - return this->_geoTransforms.TransformRotatorEastSouthUpToUnreal( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - EsuRotator, - UeLocation); + return VecMath::createRotator( + this->_geoTransforms.TransformRotatorUnrealToEastSouthUp( + glm::dvec3(CesiumActors::getWorldOrigin4D(this)), + VecMath::createQuaternion(UERotator.Quaternion()), + VecMath::createVector3D(ueLocation))); } FRotator ACesiumGeoreference::TransformRotatorEastSouthUpToUnreal( const FRotator& EsuRotator, const FVector& ueLocation) const { - glm::dquat q = TransformRotatorEastSouthUpToUnreal( - VecMath::createQuaternion(EsuRotator.Quaternion()), - VecMath::createVector3D(ueLocation)); - return VecMath::createRotator(q); -} - -glm::dmat3 -ACesiumGeoreference::ComputeEastSouthUpToUnreal(const glm::dvec3& ue) const { - return _geoTransforms.ComputeEastSouthUpToUnreal( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - ue); + return VecMath::createRotator( + this->_geoTransforms.TransformRotatorEastSouthUpToUnreal( + glm::dvec3(CesiumActors::getWorldOrigin4D(this)), + VecMath::createQuaternion(EsuRotator.Quaternion()), + VecMath::createVector3D(ueLocation))); } FMatrix @@ -863,11 +777,6 @@ ACesiumGeoreference::ComputeEastSouthUpToUnreal(const FVector& ue) const { return VecMath::createMatrix(esuToUe); } -glm::dmat3 -ACesiumGeoreference::ComputeEastNorthUpToEcef(const glm::dvec3& ecef) const { - return _geoTransforms.ComputeEastNorthUpToEcef(ecef); -} - FMatrix ACesiumGeoreference::ComputeEastNorthUpToEcef(const FVector& ecef) const { glm::dmat3 enuToEcef = this->_geoTransforms.ComputeEastNorthUpToEcef( @@ -890,66 +799,6 @@ void ACesiumGeoreference::_setGeoreferenceOrigin( this->UpdateGeoreference(); } -// TODO: should consider raycasting the WGS84 ellipsoid instead. The Unreal -// raycast seems to be inaccurate at glancing angles, perhaps due to the large -// single-precision distances. -#if WITH_EDITOR -void ACesiumGeoreference::_lineTraceViewportMouse( - const bool ShowTrace, - bool& Success, - FHitResult& HitResult) const { - HitResult = FHitResult(); - Success = false; - - UWorld* world = this->GetWorld(); - - FViewport* pViewport = GEditor->GetActiveViewport(); - FViewportClient* pViewportClient = pViewport->GetClient(); - FEditorViewportClient* pEditorViewportClient = - static_cast(pViewportClient); - - if (!world || !pEditorViewportClient || - !pEditorViewportClient->Viewport->HasFocus()) { - return; - } - - FViewportCursorLocation cursor = - pEditorViewportClient->GetCursorWorldLocationFromMousePos(); - - const FVector& viewLoc = cursor.GetOrigin(); - const FVector& viewDir = cursor.GetDirection(); - - // TODO (low prio, because this whole function is preliminary) : - // This radius should probably be taken from the ellipsoid - const double earthRadiusCm = 637100000.0; - FVector lineEnd = viewLoc + viewDir * earthRadiusCm; - - static const FName LineTraceSingleName(TEXT("LevelEditorLineTrace")); - if (ShowTrace) { - world->DebugDrawTraceTag = LineTraceSingleName; - } else { - world->DebugDrawTraceTag = NAME_None; - } - - FCollisionQueryParams CollisionParams(LineTraceSingleName); - - FCollisionObjectQueryParams ObjectParams = - FCollisionObjectQueryParams(ECC_WorldStatic); - ObjectParams.AddObjectTypesToQuery(ECC_WorldDynamic); - ObjectParams.AddObjectTypesToQuery(ECC_Pawn); - ObjectParams.AddObjectTypesToQuery(ECC_Visibility); - - if (world->LineTraceSingleByObjectType( - HitResult, - viewLoc, - lineEnd, - ObjectParams, - CollisionParams)) { - Success = true; - } -} -#endif - bool ACesiumGeoreference::_shouldManageSubLevels() const { // Only a Georeference in the PersistentLevel should manage sub-levels. return this->GetLevel()->IsPersistentLevel(); diff --git a/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp b/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp index 7987b5584..96e70627f 100644 --- a/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp +++ b/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp @@ -6,6 +6,7 @@ #include "CesiumGeoreference.h" #include "CesiumRuntime.h" #include "CesiumTransforms.h" +#include "CesiumWgs84Ellipsoid.h" #include "Components/SceneComponent.h" #include "Engine/World.h" #include "GameFramework/Actor.h" @@ -103,9 +104,8 @@ void UCesiumGlobeAnchorComponent::SnapLocalUpToEllipsoidNormal() { const glm::dvec3 actorUp = glm::normalize(currentRotation[2]); // Compute the surface normal of the ellipsoid - const glm::dvec3 ellipsoidNormal = - this->ResolvedGeoreference->ComputeGeodeticSurfaceNormal( - VecMath::createVector3D(this->GetECEF())); + glm::dvec3 ellipsoidNormal = VecMath::createVector3D( + UCesiumWgs84Ellipsoid::GeodeticSurfaceNormal(this->GetECEF())); // Find the shortest rotation to align local up with the ellipsoid normal const glm::dquat R = glm::rotation(actorUp, ellipsoidNormal); @@ -231,8 +231,8 @@ void UCesiumGlobeAnchorComponent::MoveToLongitudeLatitudeHeight( } this->MoveToECEF( - this->ResolvedGeoreference->TransformLongitudeLatitudeHeightToEcef( - TargetLongitudeLatitudeHeight)); + UCesiumWgs84Ellipsoid::LongitudeLatitudeHeightToEarthCenteredEarthFixed( + VecMath::createVector(TargetLongitudeLatitudeHeight))); } void UCesiumGlobeAnchorComponent::MoveToLongitudeLatitudeHeight( diff --git a/Source/CesiumRuntime/Private/CesiumSubLevelComponent.cpp b/Source/CesiumRuntime/Private/CesiumSubLevelComponent.cpp index 106357bfc..1a62c3536 100644 --- a/Source/CesiumRuntime/Private/CesiumSubLevelComponent.cpp +++ b/Source/CesiumRuntime/Private/CesiumSubLevelComponent.cpp @@ -254,11 +254,13 @@ void UCesiumSubLevelComponent::UpdateGeoreferenceIfSubLevelIsActive() { // target level and there is no current level. if (pCurrent == pOwner || (pCurrent == nullptr && pTarget == pOwner)) { // Apply the sub-level's origin to the georeference, if it's different. - if (this->OriginLongitude != this->ResolvedGeoreference->OriginLongitude || - this->OriginLatitude != this->ResolvedGeoreference->OriginLatitude || - this->OriginHeight != this->ResolvedGeoreference->OriginHeight) { + if (this->OriginLongitude != + this->ResolvedGeoreference->GetOriginLongitude() || + this->OriginLatitude != + this->ResolvedGeoreference->GetOriginLatitude() || + this->OriginHeight != this->ResolvedGeoreference->GetOriginHeight()) { this->ResolvedGeoreference->SetGeoreferenceOriginLongitudeLatitudeHeight( - glm::dvec3( + FVector( this->OriginLongitude, this->OriginLatitude, this->OriginHeight)); @@ -278,9 +280,9 @@ void UCesiumSubLevelComponent::OnComponentCreated() { UCesiumSubLevelSwitcherComponent* pSwitcher = this->_getSwitcher(); if (pSwitcher && this->ResolvedGeoreference) { - this->OriginLongitude = this->ResolvedGeoreference->OriginLongitude; - this->OriginLatitude = this->ResolvedGeoreference->OriginLatitude; - this->OriginHeight = this->ResolvedGeoreference->OriginHeight; + this->OriginLongitude = this->ResolvedGeoreference->GetOriginLongitude(); + this->OriginLatitude = this->ResolvedGeoreference->GetOriginLatitude(); + this->OriginHeight = this->ResolvedGeoreference->GetOriginHeight(); // In Editor worlds, make the newly-created sub-level the active one. Unless // it's already hidden. diff --git a/Source/CesiumRuntime/Private/CesiumSunSky.cpp b/Source/CesiumRuntime/Private/CesiumSunSky.cpp index ed8517ac2..56796ed3b 100644 --- a/Source/CesiumRuntime/Private/CesiumSunSky.cpp +++ b/Source/CesiumRuntime/Private/CesiumSunSky.cpp @@ -421,8 +421,8 @@ void ACesiumSunSky::UpdateSun_Implementation() { FSunPositionData sunPosition; USunPositionFunctionLibrary::GetSunPosition( - this->GetGeoreference()->OriginLatitude, - this->GetGeoreference()->OriginLongitude, + this->GetGeoreference()->GetOriginLatitude(), + this->GetGeoreference()->GetOriginLongitude(), this->TimeZone, isDST, this->Year, @@ -511,14 +511,14 @@ void ACesiumSunSky::UpdateAtmosphereRadius() { FVector location = transform.TransformPosition(getViewLocation(this->GetWorld())); - glm::dvec3 llh = + FVector llh = this->GetGeoreference()->TransformUnrealToLongitudeLatitudeHeight( - VecMath::createVector3D(location)); + location); // An atmosphere of this radius should circumscribe all Earth terrain. double maxRadius = 6387000.0; - if (llh.z / 1000.0 > this->CircumscribedGroundThreshold) { + if (llh.Z / 1000.0 > this->CircumscribedGroundThreshold) { this->SetSkyAtmosphereGroundRadius( this->SkyAtmosphere, maxRadius * this->_computeScale() / 1000.0); @@ -528,16 +528,16 @@ void ACesiumSunSky::UpdateAtmosphereRadius() { glm::dvec3 ecef = this->GetGeoreference() ->GetGeoTransforms() .TransformLongitudeLatitudeHeightToEcef( - glm::dvec3(llh.x, llh.y, -100.0)); + glm::dvec3(llh.X, llh.Y, -100.0)); double minRadius = glm::length(ecef); - if (llh.z / 1000.0 < this->InscribedGroundThreshold) { + if (llh.Z / 1000.0 < this->InscribedGroundThreshold) { this->SetSkyAtmosphereGroundRadius( this->SkyAtmosphere, minRadius * this->_computeScale() / 1000.0); } else { double t = - ((llh.z / 1000.0) - this->InscribedGroundThreshold) / + ((llh.Z / 1000.0) - this->InscribedGroundThreshold) / (this->CircumscribedGroundThreshold - this->InscribedGroundThreshold); double radius = glm::mix(minRadius, maxRadius, t); this->SetSkyAtmosphereGroundRadius( diff --git a/Source/CesiumRuntime/Private/CesiumWgs84Ellipsoid.cpp b/Source/CesiumRuntime/Private/CesiumWgs84Ellipsoid.cpp new file mode 100644 index 000000000..498e4583b --- /dev/null +++ b/Source/CesiumRuntime/Private/CesiumWgs84Ellipsoid.cpp @@ -0,0 +1,63 @@ +// Copyright 2020-2023 CesiumGS, Inc. and Contributors + +#include "CesiumWgs84Ellipsoid.h" +#include "VecMath.h" +#include +#include + +using namespace CesiumGeospatial; +using namespace CesiumUtility; + +FVector UCesiumWgs84Ellipsoid::GetRadii() { + const glm::dvec3& radii = Ellipsoid::WGS84.getRadii(); + return VecMath::createVector(radii); +} + +double UCesiumWgs84Ellipsoid::GetMaximumRadius() { + return Ellipsoid::WGS84.getRadii().x; +} + +double UCesiumWgs84Ellipsoid::GetMinimumRadius() { + return Ellipsoid::WGS84.getRadii().z; +} + +FVector UCesiumWgs84Ellipsoid::ScaleToGeodeticSurface( + const FVector& earthCenteredEarthFixed) { + std::optional result = Ellipsoid::WGS84.scaleToGeodeticSurface( + VecMath::createVector3D(earthCenteredEarthFixed)); + if (result) { + return VecMath::createVector(*result); + } else { + return FVector(0.0, 0.0, 0.0); + } +} + +FVector UCesiumWgs84Ellipsoid::GeodeticSurfaceNormal( + const FVector& earthCenteredEarthFixed) { + return VecMath::createVector(Ellipsoid::WGS84.geodeticSurfaceNormal( + VecMath::createVector3D(earthCenteredEarthFixed))); +} + +FVector UCesiumWgs84Ellipsoid::LongitudeLatitudeHeightToEarthCenteredEarthFixed( + const FVector& longitudeLatitudeHeight) { + glm::dvec3 cartesian = + Ellipsoid::WGS84.cartographicToCartesian(Cartographic::fromDegrees( + longitudeLatitudeHeight.X, + longitudeLatitudeHeight.Y, + longitudeLatitudeHeight.Z)); + return VecMath::createVector(cartesian); +} + +FVector UCesiumWgs84Ellipsoid::EarthCenteredEarthFixedToLongitudeLatitudeHeight( + const FVector& earthCenteredEarthFixed) { + std::optional result = Ellipsoid::WGS84.cartesianToCartographic( + VecMath::createVector3D(earthCenteredEarthFixed)); + if (result) { + return FVector( + Math::radiansToDegrees(result->longitude), + Math::radiansToDegrees(result->latitude), + result->height); + } else { + return FVector(0.0, 0.0, 0.0); + } +} diff --git a/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp b/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp index d47f4403f..7d8687fb9 100644 --- a/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp +++ b/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp @@ -9,6 +9,7 @@ #include "CesiumRuntime.h" #include "CesiumTransforms.h" #include "CesiumUtility/Math.h" +#include "CesiumWgs84Ellipsoid.h" #include "Curves/CurveFloat.h" #include "DrawDebugHelpers.h" #include "Engine/World.h" @@ -267,9 +268,9 @@ void AGlobeAwareDefaultPawn::FlyToLocationLongitudeLatitudeHeight( TEXT("GlobeAwareDefaultPawn %s does not have a valid Georeference"), *this->GetName()); } - const glm::dvec3& ecef = - this->GetGeoreference()->TransformLongitudeLatitudeHeightToEcef( - LongitudeLatitudeHeightDestination); + FVector ecef = + UCesiumWgs84Ellipsoid::LongitudeLatitudeHeightToEarthCenteredEarthFixed( + VecMath::createVector(LongitudeLatitudeHeightDestination)); this->FlyToLocationECEF( ecef, YawAtDestination, diff --git a/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp b/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp index 87d3ed90b..074500c80 100644 --- a/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp +++ b/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp @@ -137,9 +137,9 @@ void FSubLevelsSpec::Define() { pLevelComponent1->SetOriginLongitudeLatitudeHeight( FVector(4.0, 5.0, 6.0)); - TestEqual("Longitude", pGeoreference->OriginLongitude, 4.0); - TestEqual("Latitude", pGeoreference->OriginLatitude, 5.0); - TestEqual("Height", pGeoreference->OriginHeight, 6.0); + TestEqual("Longitude", pGeoreference->GetOriginLongitude(), 4.0); + TestEqual("Latitude", pGeoreference->GetOriginLatitude(), 5.0); + TestEqual("Height", pGeoreference->GetOriginHeight(), 6.0); }); }); @@ -157,9 +157,9 @@ void FSubLevelsSpec::Define() { It("", EAsyncExecution::TaskGraphMainThread, [this]() { // Verify that the previously-active sub-level isn't affected by // georeference origin changes. - double expectedLongitude = pGeoreference->OriginLongitude; - double expectedLatitude = pGeoreference->OriginLatitude; - double expectedHeight = pGeoreference->OriginHeight; + double expectedLongitude = pGeoreference->GetOriginLongitude(); + double expectedLatitude = pGeoreference->GetOriginLatitude(); + double expectedHeight = pGeoreference->GetOriginHeight(); TestNotEqual("Longitude", expectedLongitude, 7.0); TestNotEqual("Latitude", expectedLatitude, 8.0); @@ -169,13 +169,13 @@ void FSubLevelsSpec::Define() { FVector(7.0, 8.0, 9.0)); TestEqual( "Longitude", - pGeoreference->OriginLongitude, + pGeoreference->GetOriginLongitude(), expectedLongitude); TestEqual( "Latitude", - pGeoreference->OriginLatitude, + pGeoreference->GetOriginLatitude(), expectedLatitude); - TestEqual("Height", pGeoreference->OriginHeight, expectedHeight); + TestEqual("Height", pGeoreference->GetOriginHeight(), expectedHeight); }); }); diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index d0e9ec0b8..2fbc7af78 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -38,7 +38,6 @@ DECLARE_DYNAMIC_MULTICAST_DELEGATE(FGeoreferenceUpdated); UCLASS() class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { GENERATED_BODY() - public: /* * Finds and returns the actor labeled `CesiumGeoreferenceDefault` in the @@ -53,35 +52,16 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { static ACesiumGeoreference* GetDefaultGeoreference(const UObject* WorldContextObject); - ACesiumGeoreference(); - - UPROPERTY(VisibleAnywhere, Category = "Cesium") - USceneComponent* Root; - - /* - * Whether to visualize the level loading radii in the editor. Helpful for - * initially positioning the level and choosing a load radius. + /** + * A delegate that will be called whenever the Georeference is + * modified in a way that affects its computations. */ - UPROPERTY(EditAnywhere, Category = "Cesium|Cesium Sublevels") - bool ShowLoadRadii = true; + UPROPERTY(BlueprintAssignable, Category = "Cesium") + FGeoreferenceUpdated OnGeoreferenceUpdated; - /* - * The list of georeferenced sub-levels. Each of these has a corresponding - * world location that can be jumped to. Only one level can be worked on in - * the editor at a time. - * - * New levels added in the Editor should appear in this list automatically. If - * any are missing, check that "World Composition" is enabled in World - * Settings and that the level is in a Layer with Distance Based Streaming - * DISABLED. - */ - UPROPERTY( - Meta = - (DeprecatedProperty, - DeprecationMessage = - "Create sub-levels by adding a UCesiumSubLevelComponent to an ALevelInstance Actor.")) - TArray CesiumSubLevels_DEPRECATED; +#pragma region Properties +private: /** * The placement of this Actor's origin (coordinate 0,0,0) within the tileset. * @@ -93,7 +73,13 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * this property will preserve vertex precision (and thus avoid jittering) * much better than setting the Actor's Transform property. */ - UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Cesium") + UPROPERTY( + Category = "Cesium", + EditAnywhere, + BlueprintReadWrite, + BlueprintGetter = GetOriginPlacement, + BlueprintSetter = SetOriginPlacement, + meta = (AllowPrivateAccess)) EOriginPlacement OriginPlacement = EOriginPlacement::CartographicOrigin; /** @@ -101,10 +87,15 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * 90] */ UPROPERTY( - EditAnywhere, Category = "Cesium", + EditAnywhere, + BlueprintReadWrite, + BlueprintGetter = GetOriginLatitude, + BlueprintSetter = SetOriginLatitude, + Interp, meta = - (EditCondition = + (AllowPrivateAccess, + EditCondition = "OriginPlacement==EOriginPlacement::CartographicOrigin", ClampMin = -90.0, ClampMax = 90.0)) @@ -115,10 +106,15 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * [-180, 180] */ UPROPERTY( - EditAnywhere, Category = "Cesium", + EditAnywhere, + BlueprintReadWrite, + BlueprintGetter = GetOriginLongitude, + BlueprintSetter = SetOriginLongitude, + Interp, meta = - (EditCondition = + (AllowPrivateAccess, + EditCondition = "OriginPlacement==EOriginPlacement::CartographicOrigin", ClampMin = -180.0, ClampMax = 180.0)) @@ -129,101 +125,80 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * ellipsoid. */ UPROPERTY( - EditAnywhere, Category = "Cesium", + EditAnywhere, + BlueprintReadWrite, + BlueprintGetter = GetOriginHeight, + BlueprintSetter = SetOriginHeight, + Interp, meta = - (EditCondition = + (AllowPrivateAccess, + EditCondition = "OriginPlacement==EOriginPlacement::CartographicOrigin")) double OriginHeight = 2250.0; /** - * TODO: Once point-and-click georeference placement is in place, restore this - * as a UPROPERTY - */ - // UPROPERTY(EditAnywhere, Category = "Cesium", AdvancedDisplay) - bool EditOriginInViewport = false; - -#if WITH_EDITOR - /** - * Places the georeference origin at the camera's current location. Rotates - * the globe so the current longitude/latitude/height of the camera is at the - * Unreal origin. The camera is also teleported to the Unreal origin. - * - * Warning: Before clicking, ensure that all non-Cesium objects in the - * persistent level are georeferenced with the "CesiumGeoreferenceComponent" - * or attached to an actor with that component. Ensure that static actors only - * exist in georeferenced sub-levels. + * The percentage scale of the globe in the Unreal world. If this value is 50, + * for example, one meter on the globe occupies half a meter in the Unreal + * world. */ - UFUNCTION(CallInEditor, Category = "Cesium") - void PlaceGeoreferenceOriginHere(); -#endif + UPROPERTY( + Category = "Cesium", + EditAnywhere, + BlueprintReadWrite, + BlueprintSetter = SetScale, + BlueprintGetter = GetScale, + Interp, + Meta = (AllowPrivateAccess, UIMin = 0.000001, UIMax = 100.0)) + double Scale = 100.0; /** * The camera to use to determine which sub-level is closest, so that one can * be activated and all others deactivated. */ - UPROPERTY(EditAnywhere, Category = "Cesium|Cesium Sublevels") + UPROPERTY( + Category = "Cesium|Cesium Sublevels", + EditAnywhere, + BlueprintReadWrite, + BlueprintGetter = GetSubLevelCamera, + BlueprintSetter = SetSublevelCamera, + meta = (AllowPrivateAccess)) APlayerCameraManager* SubLevelCamera = nullptr; - /** - * This sets the percentage scale of the globe. For instance, if the value is - * 50, the globe will shrink by half. +#if WITH_EDITORONLY_DATA + /* + * Whether to visualize the level loading radii in the editor. Helpful for + * initially positioning the level and choosing a load radius. */ - UFUNCTION(BlueprintCallable, Category = "Cesium") - void SetScale(double NewScale); + UPROPERTY( + Category = "Cesium|Cesium Sublevels", + EditAnywhere, + BlueprintReadWrite, + BlueprintGetter = GetShowLoadRadii, + BlueprintSetter = SetShowLoadRadii, + meta = (AllowPrivateAccess)) + bool ShowLoadRadii = true; +#endif - UFUNCTION(BlueprintCallable, Category = "Cesium") - double GetScale() const; +#pragma endregion - // TODO: Allow user to select/configure the ellipsoid. - // Yeah, we're working on that... +#pragma region PropertyAccessors +public: /** * Returns the georeference origin position as an FVector where `X` is * longitude (degrees), `Y` is latitude (degrees), and `Z` is height above the * ellipsoid (meters). Only valid if the placement type is Cartographic Origin * (i.e. Longitude / Latitude / Height). */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintPure, Category = "Cesium") FVector GetGeoreferenceOriginLongitudeLatitudeHeight() const; - /** - * This aligns the specified longitude in degrees (x), latitude in - * degrees (y), and height above the ellipsoid in meters (z) to Unreal's world - * origin. I.e. it moves the globe so that these coordinates exactly fall on - * the origin. - * - * When the SubLevelCamera of this instance is currently contained in - * the bounds of a sub-level, calling this method will update the sub-level's - * origin as well. - */ - void SetGeoreferenceOriginLongitudeLatitudeHeight( - const glm::dvec3& TargetLongitudeLatitudeHeight); - - /** - * This function is here for backwards compatibility. The function - * SetGeoreferenceOriginLongitudeLatitudeHeight should be used instead. - */ - void SetGeoreferenceOrigin(const glm::dvec3& TargetLongitudeLatitudeHeight); - - /** - * This aligns the specified Earth-Centered, Earth-Fixed (ECEF) coordinates to - * Unreal's world origin. I.e. it moves the globe so that these coordinates - * exactly fall on the origin. - * - * When the SubLevelCamera of this instance is currently contained in - * the bounds of a sub-level, then this call has no effect. - */ - void SetGeoreferenceOriginEcef(const glm::dvec3& TargetEcef); - /** * This aligns the specified longitude in degrees (X), latitude in * degrees (Y), and height above the ellipsoid in meters (Z) to Unreal's world - * origin. I.e. it moves the globe so that these coordinates exactly fall on - * the origin. - * - * When the SubLevelCamera of this instance is currently contained in - * the bounds of a sub-level, then this call has no effect. + * origin. That is, it moves the globe so that these coordinates exactly fall + * on the origin. */ UFUNCTION(BlueprintCallable, Category = "Cesium") void SetGeoreferenceOriginLongitudeLatitudeHeight( @@ -233,25 +208,67 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * This aligns the specified Earth-Centered, Earth-Fixed (ECEF) coordinates to * Unreal's world origin. I.e. it moves the globe so that these coordinates * exactly fall on the origin. - * - * When the SubLevelCamera of this instance is currently contained in - * the bounds of a sub-level, then this call has no effect. */ UFUNCTION(BlueprintCallable, Category = "Cesium") void SetGeoreferenceOriginEcef(const FVector& TargetEcef); - /* - * USEFUL CONVERSION FUNCTIONS + UFUNCTION(BlueprintGetter) + EOriginPlacement GetOriginPlacement() const; + + UFUNCTION(BlueprintSetter) + void SetOriginPlacement(EOriginPlacement NewValue); + + UFUNCTION(BlueprintGetter) + double GetOriginLatitude() const; + + UFUNCTION(BlueprintSetter) + void SetOriginLatitude(double NewValue); + + UFUNCTION(BlueprintGetter) + double GetOriginLongitude() const; + + UFUNCTION(BlueprintSetter) + void SetOriginLongitude(double NewValue); + + UFUNCTION(BlueprintGetter) + double GetOriginHeight() const; + + UFUNCTION(BlueprintSetter) + void SetOriginHeight(double NewValue); + + /** + * The percentage scale of the globe in the Unreal world. If this value is 50, + * for example, one meter on the globe occupies half a meter in the Unreal + * world. */ + UFUNCTION(BlueprintGetter) + double GetScale() const; /** - * Transforms the given longitude in degrees (x), latitude in - * degrees (y), and height in meters (z) into Earth-Centered, Earth-Fixed - * (ECEF) coordinates. + * The percentage scale of the globe in the Unreal world. If this value is 50, + * for example, one meter on the globe occupies half a meter in the Unreal + * world. */ - glm::dvec3 TransformLongitudeLatitudeHeightToEcef( - const glm::dvec3& LongitudeLatitudeHeight) const; + UFUNCTION(BlueprintSetter) + void SetScale(double NewValue); + + UFUNCTION(BlueprintGetter) + APlayerCameraManager* GetSubLevelCamera() const; + + UFUNCTION(BlueprintSetter) + void SetSubLevelCamera(APlayerCameraManager* NewValue); + + UFUNCTION(BlueprintGetter) + bool GetShowLoadRadii() const; + + UFUNCTION(BlueprintSetter) + void SetShowLoadRadii(bool NewValue); +#pragma endregion + +#pragma region Transformation Functions + +public: /** * Transforms the given longitude in degrees (x), latitude in * degrees (y), and height above the ellipsoid in meters (z) into @@ -261,7 +278,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * the C++ API, corresponding double-precision function * TransformLongitudeLatitudeHeightToEcef can be used. */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintPure, Category = "Cesium") FVector TransformLongitudeLatitudeHeightToEcef( const FVector& LongitudeLatitudeHeight) const; @@ -270,15 +287,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * WGS84 longitude in degrees (x), latitude in degrees (y), and height above * the ellipsoid in meters (z). */ - glm::dvec3 - TransformEcefToLongitudeLatitudeHeight(const glm::dvec3& Ecef) const; - - /** - * Transforms the given Earth-Centered, Earth-Fixed (ECEF) coordinates into - * WGS84 longitude in degrees (x), latitude in degrees (y), and height above - * the ellipsoid in meters (z). - */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintPure, Category = "Cesium") FVector TransformEcefToLongitudeLatitudeHeight(const FVector& Ecef) const; /** @@ -289,18 +298,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * Actor's reference frame as defined by its Transform. This way, the chain of * Unreal transforms places and orients the "globe" in the Unreal world. */ - glm::dvec3 TransformLongitudeLatitudeHeightToUnreal( - const glm::dvec3& longitudeLatitudeHeight) const; - - /** - * Transforms the given longitude in degrees (x), latitude in - * degrees (y), and height above the ellipsoid in meters (z) into Unreal - * coordinates. The resulting position should generally not be interpreted as - * an Unreal _world_ position, but rather a position expressed in some parent - * Actor's reference frame as defined by its Transform. This way, the chain of - * Unreal transforms places and orients the "globe" in the Unreal world. - */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintPure, Category = "Cesium") FVector TransformLongitudeLatitudeHeightToUnreal( const FVector& LongitudeLatitudeHeight) const; @@ -312,18 +310,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * Transform. This way, the chain of Unreal transforms places and orients the * "globe" in the Unreal world. */ - glm::dvec3 - TransformUnrealToLongitudeLatitudeHeight(const glm::dvec3& unreal) const; - - /** - * Transforms Unreal coordinates into longitude in degrees (x), latitude in - * degrees (y), and height above the ellipsoid in meters (z). The position - * should generally not be an Unreal _world_ position, but rather a position - * expressed in some parent Actor's reference frame as defined by its - * Transform. This way, the chain of Unreal transforms places and orients the - * "globe" in the Unreal world. - */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintPure, Category = "Cesium") FVector TransformUnrealToLongitudeLatitudeHeight(const FVector& Unreal) const; /** @@ -334,17 +321,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * way, the chain of Unreal transforms places and orients the "globe" in the * Unreal world. */ - glm::dvec3 TransformEcefToUnreal(const glm::dvec3& ecef) const; - - /** - * Transforms the given point from Earth-Centered, Earth-Fixed (ECEF) into - * Unreal coordinates. The resulting position should generally not be - * interpreted as an Unreal _world_ position, but rather a position expressed - * in some parent Actor's reference frame as defined by its Transform. This - * way, the chain of Unreal transforms places and orients the "globe" in the - * Unreal world. - */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintPure, Category = "Cesium") FVector TransformEcefToUnreal(const FVector& Ecef) const; /** @@ -354,16 +331,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * frame as defined by its Transform. This way, the chain of Unreal transforms * places and orients the "globe" in the Unreal world. */ - glm::dvec3 TransformUnrealToEcef(const glm::dvec3& unreal) const; - - /** - * Transforms the given point from Unreal coordinates to Earth-Centered, - * Earth-Fixed (ECEF). The position should generally not be an Unreal _world_ - * position, but rather a position expressed in some parent Actor's reference - * frame as defined by its Transform. This way, the chain of Unreal transforms - * places and orients the "globe" in the Unreal world. - */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintPure, Category = "Cesium") FVector TransformUnrealToEcef(const FVector& Unreal) const; /** @@ -373,18 +341,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * Actor's reference frame as defined by its Transform. This way, the chain of * Unreal transforms places and orients the "globe" in the Unreal world. */ - glm::dquat TransformRotatorUnrealToEastSouthUp( - const glm::dquat& UnrealRotator, - const glm::dvec3& UnrealLocation) const; - - /** - * Transforms a rotator from Unreal to East-South-Up at the given - * Unreal location. The rotator and location should generally not be relative - * to the Unreal _world_, but rather be expressed in some parent - * Actor's reference frame as defined by its Transform. This way, the chain of - * Unreal transforms places and orients the "globe" in the Unreal world. - */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintPure, Category = "Cesium") FRotator TransformRotatorUnrealToEastSouthUp( const FRotator& UnrealRotator, const FVector& UnrealLocation) const; @@ -396,18 +353,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * Actor's reference frame as defined by its Transform. This way, the chain of * Unreal transforms places and orients the "globe" in the Unreal world. */ - glm::dquat TransformRotatorEastSouthUpToUnreal( - const glm::dquat& EsuRotator, - const glm::dvec3& UnrealLocation) const; - - /** - * Transforms a rotator from East-South-Up to Unreal at the given - * Unreal location. The location and resulting rotator should generally not be - * relative to the Unreal _world_, but rather be expressed in some parent - * Actor's reference frame as defined by its Transform. This way, the chain of - * Unreal transforms places and orients the "globe" in the Unreal world. - */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintPure, Category = "Cesium") FRotator TransformRotatorEastSouthUpToUnreal( const FRotator& EsuRotator, const FVector& UnrealLocation) const; @@ -421,182 +367,129 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * the chain of Unreal transforms places and orients the "globe" in the Unreal * world. */ - glm::dmat3 ComputeEastSouthUpToUnreal(const glm::dvec3& unreal) const; - - /** - * Computes the rotation matrix from the local East-South-Up to Unreal at the - * specified Unreal location. The returned transformation works in Unreal's - * left-handed coordinate system. The location and resulting rotation should - * generally not be relative to the Unreal _world_, but rather be expressed in - * some parent Actor's reference frame as defined by its Transform. This way, - * the chain of Unreal transforms places and orients the "globe" in the Unreal - * world. - */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintPure, Category = "Cesium") FMatrix ComputeEastSouthUpToUnreal(const FVector& Unreal) const; /** * Computes the rotation matrix from the local East-North-Up to * Earth-Centered, Earth-Fixed (ECEF) at the specified ECEF location. */ - glm::dmat3 ComputeEastNorthUpToEcef(const glm::dvec3& ecef) const; - - /** - * Computes the rotation matrix from the local East-North-Up to - * Earth-Centered, Earth-Fixed (ECEF) at the specified ECEF location. - */ - UFUNCTION(BlueprintCallable, Category = "Cesium") + UFUNCTION(BlueprintPure, Category = "Cesium") FMatrix ComputeEastNorthUpToEcef(const FVector& Ecef) const; - /** - * @brief Computes the normal of the plane tangent to the surface of the - * ellipsoid that is used by this instance, at the provided position ECEF. - * - * @param position The ECEF position for which to to determine the - * surface normal. - * @return The normal. - */ - glm::dvec3 ComputeGeodeticSurfaceNormal(const glm::dvec3& position) const { - return _geoTransforms.ComputeGeodeticSurfaceNormal(position); - } - /** - * A delegate that will be called whenever the Georeference is - * modified in a way that affects its computations. - */ - UPROPERTY(BlueprintAssignable, Category = "Cesium") - FGeoreferenceUpdated OnGeoreferenceUpdated; +#pragma endregion - /** - * Recomputes all world georeference transforms. Usually there is no need to - * explicitly call this from external code. - */ - void UpdateGeoreference(); +#pragma region Editor Support +public: +#if WITH_EDITOR /** - * @brief Returns whether `Tick` should be called in viewports-only mode. + * Places the georeference origin at the camera's current location. Rotates + * the globe so the current longitude/latitude/height of the camera is at the + * Unreal origin. The camera is also teleported to the Unreal origin. * - * "If `true`, actor is ticked even if TickType==LEVELTICK_ViewportsOnly." - * (The TickType is determined by the unreal engine internally). + * Warning: Before clicking, ensure that all non-Cesium objects in the + * persistent level are georeferenced with the "CesiumGeoreferenceComponent" + * or attached to an actor with that component. Ensure that static actors only + * exist in georeferenced sub-levels. */ - virtual bool ShouldTickIfViewportsOnly() const override; + UFUNCTION(CallInEditor, Category = "Cesium") + void PlaceGeoreferenceOriginHere(); +#endif - /** - * @brief Function called every frame on this Actor. - * - * @param DeltaTime Game time elapsed during last frame modified by the time - * dilation - */ - virtual void Tick(float DeltaTime) override; +private: + // This property mirrors RootComponent, and exists only so that the root + // component's transform is editable in the Editor. + UPROPERTY(VisibleAnywhere, Category = "Cesium") + USceneComponent* Root; +#if WITH_EDITOR /** - * Handles reading, writing, and reference collecting using FArchive. - * This implementation handles all FProperty serialization, but can be - * overridden for native variables. + * @brief Show the load radius of each sub-level as a sphere. * - * This class overrides this method to ensure internal variables are - * immediately synchronized with newly-loaded values. + * If this is not called "in-game", and `ShowLoadRadii` is `true`, + * then it will show a sphere indicating the load radius of each + * sub-level. */ - virtual void Serialize(FArchive& Ar) override; + void _showSubLevelLoadRadii() const; +#endif - /** - * Returns the GeoTransforms that offers the same conversion - * functions as this class, but performs the computations - * in double precision. - */ - const GeoTransforms& GetGeoTransforms() const noexcept { - return _geoTransforms; - } +#pragma endregion + +#pragma region Unreal Lifecycle protected: - // Called when the game starts or when spawned + virtual bool ShouldTickIfViewportsOnly() const override; + virtual void Tick(float DeltaTime) override; + virtual void Serialize(FArchive& Ar) override; virtual void BeginPlay() override; - virtual void EndPlay(const EEndPlayReason::Type EndPlayReason) override; virtual void OnConstruction(const FTransform& Transform) override; virtual void BeginDestroy() override; + virtual void PostLoad() override; #if WITH_EDITOR virtual void PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent) override; #endif +#pragma endregion + +#pragma region Obsolete + private: + PRAGMA_DISABLE_DEPRECATION_WARNINGS + UPROPERTY( + Meta = + (DeprecatedProperty, + DeprecationMessage = + "Create sub-levels by adding a UCesiumSubLevelComponent to an ALevelInstance Actor.")) + TArray CesiumSubLevels_DEPRECATED; + PRAGMA_ENABLE_DEPRECATION_WARNINGS + +#if WITH_EDITOR + void _createSubLevelsFromWorldComposition(); +#endif + +#pragma endregion + +#pragma region Implementation Details + +public: + ACesiumGeoreference(); + /** - * A tag that is assigned to Georeferences when they are created - * as the "default" Georeference for a certain world. + * Recomputes all world georeference transforms. Usually there is no need to + * explicitly call this from external code. */ - static FName DEFAULT_GEOREFERENCE_TAG; + void UpdateGeoreference(); /** - * The percentage scale of the globe in the Unreal world. If this value is 50, - * for example, one meter on the globe occupies half a meter in the Unreal - * world. + * Returns the GeoTransforms that offers the same conversion + * functions as this class, but performs the computations + * in double precision. */ - UPROPERTY( - EditAnywhere, - Meta = (AllowPrivateAccess), - BlueprintReadWrite, - BlueprintSetter = "SetScale", - BlueprintGetter = "GetScale", - Category = "Cesium", - Meta = (UIMin = 0.000001, UIMax = 100.0)) - double Scale = 100.0; + const GeoTransforms& GetGeoTransforms() const noexcept { + return _geoTransforms; + } +private: /** - * The radii, in x-, y-, and z-direction, of the ellipsoid that - * should be used in this instance. + * A tag that is assigned to Georeferences when they are created + * as the "default" Georeference for a certain world. */ - UPROPERTY() - double _ellipsoidRadii[3]; + static FName DEFAULT_GEOREFERENCE_TAG; GeoTransforms _geoTransforms; UPROPERTY() UCesiumSubLevelSwitcherComponent* SubLevelSwitcher; -#if WITH_EDITOR - FDelegateHandle _newCurrentLevelSubscription; -#endif - // TODO: add option to set georeference directly from ECEF void _setGeoreferenceOrigin( double targetLongitude, double targetLatitude, double targetHeight); -#if WITH_EDITOR - /** - * Will make sure that the `CesiumSubLevels` array contains all - * of the current streaming levels of the world. - */ - void _updateCesiumSubLevels(); -#endif - -#if WITH_EDITOR - void _lineTraceViewportMouse( - const bool ShowTrace, - bool& Success, - FHitResult& HitResult) const; - - /** - * @brief Show the load radius of each sub-level as a sphere. - * - * If this is not called "in-game", and `ShowLoadRadii` is `true`, - * then it will show a sphere indicating the load radius of each - * sub-level. - */ - void _showSubLevelLoadRadii() const; - - /** - * @brief Allow editing the origin with the mouse. - * - * If `EditOriginInViewport` is true, this will trace the mouse - * position, and update the origin based on the point that was - * hit. - */ - void _handleViewportOriginEditing(); - -#endif - /** * @brief Updates the load state of sub-levels. * @@ -630,4 +523,5 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * PersistentLevel. */ bool _shouldManageSubLevels() const; +#pragma endregion }; diff --git a/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h b/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h new file mode 100644 index 000000000..577d8b8dc --- /dev/null +++ b/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h @@ -0,0 +1,74 @@ +// Copyright 2020-2023 CesiumGS, Inc. and Contributors + +#pragma once + +#include "CesiumRuntime.h" +#include "Kismet/BlueprintFunctionLibrary.h" +#include "Misc/Optional.h" +#include "CesiumWgs84Ellipsoid.generated.h" + +UCLASS() +class CESIUMRUNTIME_API UCesiumWgs84Ellipsoid + : public UBlueprintFunctionLibrary { + GENERATED_BODY() + +public: + /** + * Gets the radii of the WGS84 ellipsoid in its x-, y-, and z-directions in + * meters. + */ + UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") + static FVector GetRadii(); + + /** + * Gets the maximum radius of the WGS84 ellipsoid in any dimension, in meters. + */ + UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") + static double GetMaximumRadius(); + + /** + * Gets the minimum radius of the WGS854 ellipsoid in any dimension, in + * meters. + */ + UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") + static double GetMinimumRadius(); + + /** + * Scale the given Earth-Centered, Earth-Fixed position along the geodetic + * surface normal so that it is on the surface of the ellipsoid. If the + * position is near the center of the ellipsoid, the result will have the + * value (0,0,0) because the surface position is undefined. + */ + UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") + static FVector ScaleToGeodeticSurface(const FVector& earthCenteredEarthFixed); + + /** + * Computes the normal of the plane tangent to the surface of the ellipsoid + * at the provided Earth-Centered, Earth-Fixed position. + * + * The ECEF position in meters. + * The normal at the ECEF position + */ + UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") + static FVector GeodeticSurfaceNormal(const FVector& earthCenteredEarthFixed); + + /** + * Convert longitude in degrees (X), latitude in degrees (Y), and height above + * the WGS84 ellipsoid in meters (Z) to Earth-Centered, Earth-Fixed (ECEF) + * coordinates. + */ + UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") + static FVector LongitudeLatitudeHeightToEarthCenteredEarthFixed( + const FVector& longitudeLatitudeHeight); + + /** + * Convert Earth-Centered, Earth-Fixed (ECEF) coordinates to longitude in + * degrees (X), latitude in degrees (Y), and height above the WGS84 ellipsoid + * in meters (Z). If the position is near the center of the Earth, the result + * will have the value (0,0,0) because the longitude, latitude, and height are + * undefined. + */ + UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") + static FVector EarthCenteredEarthFixedToLongitudeLatitudeHeight( + const FVector& earthCenteredEarthFixed); +}; From 15ca845cf3a4f413c3f4b04745b7ec3aa2e95365 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Thu, 20 Jul 2023 22:06:01 +1000 Subject: [PATCH 24/37] Doc and category tweaks. --- CHANGES.md | 2 ++ Source/CesiumRuntime/Public/CesiumGeoreference.h | 10 +++++----- Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h | 3 --- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 00568fe4d..edd363a41 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,7 @@ - The old sub-level system, based on Unreal's old (and now deprecated) World Composition system, has been removed. Instead, create Level Instance Actors and attach the "Cesium Sub Level Component" to them to achieve similar functionality. Old levels will automatically be converted to the new system when they are loaded in the Editor. - `CesiumSunSky` now uses a default `TransmittanceMinLightElevationAngle` value on its `SkyAtmosphere` component of 90.0 degrees instead of -90.0 degrees. This will generally improve lighting when far from the CesiumGeoreference origin, but it is a breaking change because it may change the lighting conditions in existing levels, particularly at sunrise and sunset. - The `Mobility` property on `ACesium3DTileset` is now obsolete. Instead, use the normal mechanism of setting the root component's mobility. +- Removed many methods that from the C++ interface of `ACesiumGeoreference` that used `glm` vector types. Use the versions that work with Unreal types instead. ##### Additions :tada: @@ -17,6 +18,7 @@ - Cesium objects in sub-levels can now explicitly reference `ACesiumGeoreference`, `ACesiumCreditSystem`, and `ACesiumCameraManager` instances in the Persistent Level. - `ACesiumGeoreference` can now act as a parent Actor. By adjusting the georeference's transformation, the entire globe can be located, rotated, and scaled within the Unreal Engine world. - Added `AtmosphereHeight`, `AerialPerspectiveViewDistanceScale`, `RayleighExponentialDistribution`, and `MieExponentialDistribution` properties to `ACesiumSunSky`. These have the same function as the properties of the same name on Unreal's built-in SkyAtmosphere component, except that they automatically respond to the scale of the globe. +- Added `UCesiumWgs84Ellipsoid` Blueprint function library class. ##### Fixes :wrench: diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index 2fbc7af78..e249eb683 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -39,7 +39,7 @@ UCLASS() class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { GENERATED_BODY() public: - /* + /** * Finds and returns the actor labeled `CesiumGeoreferenceDefault` in the * persistent level of the calling object's world. If not found, it creates a * new default Georeference. @@ -47,7 +47,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { */ UFUNCTION( BlueprintCallable, - Category = "CesiumGeoreference", + Category = "Cesium", meta = (WorldContext = "WorldContextObject")) static ACesiumGeoreference* GetDefaultGeoreference(const UObject* WorldContextObject); @@ -157,7 +157,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * be activated and all others deactivated. */ UPROPERTY( - Category = "Cesium|Cesium Sublevels", + Category = "Cesium|Sub-levels", EditAnywhere, BlueprintReadWrite, BlueprintGetter = GetSubLevelCamera, @@ -171,7 +171,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * initially positioning the level and choosing a load radius. */ UPROPERTY( - Category = "Cesium|Cesium Sublevels", + Category = "Cesium|Sub-levels", EditAnywhere, BlueprintReadWrite, BlueprintGetter = GetShowLoadRadii, @@ -393,7 +393,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * or attached to an actor with that component. Ensure that static actors only * exist in georeferenced sub-levels. */ - UFUNCTION(CallInEditor, Category = "Cesium") + UFUNCTION(CallInEditor, Category = "Actions") void PlaceGeoreferenceOriginHere(); #endif diff --git a/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h b/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h index 577d8b8dc..678c4bb8f 100644 --- a/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h +++ b/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h @@ -45,9 +45,6 @@ class CESIUMRUNTIME_API UCesiumWgs84Ellipsoid /** * Computes the normal of the plane tangent to the surface of the ellipsoid * at the provided Earth-Centered, Earth-Fixed position. - * - * The ECEF position in meters. - * The normal at the ECEF position */ UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") static FVector GeodeticSurfaceNormal(const FVector& earthCenteredEarthFixed); From 98bc3791197fbd5eff8c73920bddecb3da74d4c9 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Mon, 24 Jul 2023 21:39:38 +1000 Subject: [PATCH 25/37] Georeference transform cleanup. --- Config/Engine.ini | 8 + .../Private/CesiumCartographicPolygon.cpp | 3 +- .../Private/CesiumGeoreference.cpp | 66 +++++-- .../Private/CesiumGlobeAnchorComponent.cpp | 4 +- Source/CesiumRuntime/Private/CesiumSunSky.cpp | 2 +- .../CesiumRuntime/Private/GeoTransforms.cpp | 13 +- .../Private/Tests/SubLevels.spec.cpp | 35 ++-- .../CesiumRuntime/Public/CesiumGeoreference.h | 175 +++++++++++++----- .../Public/CesiumWgs84Ellipsoid.h | 8 +- Source/CesiumRuntime/Public/GeoTransforms.h | 9 + 10 files changed, 233 insertions(+), 90 deletions(-) diff --git a/Config/Engine.ini b/Config/Engine.ini index 2652f1c9c..81f3247b9 100644 --- a/Config/Engine.ini +++ b/Config/Engine.ini @@ -53,3 +53,11 @@ +FunctionRedirects=(OldName="GlobeAwareDefaultPawn.InaccurateFlyToLocationLongitudeLatitudeHeight",NewName="FlyToLocationLongitudeLatitudeHeight") +PropertyRedirects=(OldName="CesiumPolygonRasterOverlay.ExcludeTilesInside",NewName="ExcludeSelectedTiles") + ++FunctionRedirects=(OldName="CesiumGeoreference.TransformUnrealToLongitudeLatitudeHeight",NewName="TransformUnrealPositionToLongitudeLatitudeHeight") ++PropertyRedirects=(OldName="CesiumGeoreference.TransformUnrealPositionToLongitudeLatitudeHeight.Unreal", NewName="UnrealPosition") ++FunctionRedirects=(OldName="CesiumGeoreference.TransformEcefToUnreal",NewName="TransformEarthCenteredEarthFixedPositionToUnreal") ++PropertyRedirects=(OldName="CesiumGeoreference.TransformEarthCenteredEarthFixedPositionToUnreal.Ecef", NewName="EarthCenteredEarthFixedPosition") ++FunctionRedirects=(OldName="CesiumGeoreference.TransformUnrealToEcef",NewName="TransformUnrealPositionToEarthCenteredEarthFixed") ++PropertyRedirects=(OldName="CesiumGeoreference.TransformUnrealPositionToEarthCenteredEarthFixed.Unreal", NewName="UnrealPosition") ++FunctionRedirects=(OldName="CesiumGeoreference.TransformLongitudeLatitudeHeightToUnreal",NewName="TransformLongitudeLatitudeHeightPositionToUnreal") diff --git a/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp b/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp index d81260681..925090845 100644 --- a/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp +++ b/Source/CesiumRuntime/Private/CesiumCartographicPolygon.cpp @@ -65,8 +65,7 @@ ACesiumCartographicPolygon::CreateCartographicPolygon( ESplineCoordinateSpace::World)); FVector cartographic = this->GlobeAnchor->ResolveGeoreference() - ->TransformUnrealToLongitudeLatitudeHeight( - FVector(unrealPosition.X, unrealPosition.Y, unrealPosition.Z)); + ->TransformUnrealPositionToLongitudeLatitudeHeight(unrealPosition); polygon[i] = glm::dvec2(glm::radians(cartographic.X), glm::radians(cartographic.Y)); } diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index b6f293909..eea7644ef 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -9,6 +9,7 @@ #include "CesiumSubLevelSwitcherComponent.h" #include "CesiumTransforms.h" #include "CesiumUtility/Math.h" +#include "CesiumWgs84Ellipsoid.h" #include "Engine/LevelStreaming.h" #include "Engine/World.h" #include "Engine/WorldComposition.h" @@ -226,6 +227,7 @@ FString longPackageNameToCesiumName(UWorld* pWorld, const TStringish& name) { } // namespace #if WITH_EDITOR +PRAGMA_DISABLE_DEPRECATION_WARNINGS void ACesiumGeoreference::_createSubLevelsFromWorldComposition() { UWorld* pWorld = this->GetWorld(); if (!IsValid(pWorld)) { @@ -331,6 +333,7 @@ void ACesiumGeoreference::_createSubLevelsFromWorldComposition() { TEXT( "Cesium sub-levels based on World Composition have been converted to Level Instances. Save the level to keep these changes. We recommend disabling World Composition in the World Settings, as it is now obsolete.")); } +PRAGMA_ENABLE_DEPRECATION_WARNINGS #endif FVector @@ -415,6 +418,16 @@ void ACesiumGeoreference::SetShowLoadRadii(bool NewValue) { this->ShowLoadRadii = NewValue; } +const FMatrix& +ACesiumGeoreference::GetUnrealToEarthCenteredEarthFixedTransformation() const { + return this->_geoTransforms.GetAbsoluteUnrealWorldToEllipsoidCenteredMatrix(); +} + +const FMatrix& +ACesiumGeoreference::GetEarthCenteredEarthFixedToUnrealTransformation() const { + return this->_geoTransforms.GetEllipsoidCenteredToAbsoluteUnrealWorldMatrix(); +} + // Called when the game starts or when spawned void ACesiumGeoreference::BeginPlay() { Super::BeginPlay(); @@ -561,10 +574,11 @@ void ACesiumGeoreference::_showSubLevelLoadRadii() const { pComponent->GetOriginLatitude(), pComponent->GetOriginHeight())); - FVector center = this->TransformLongitudeLatitudeHeightToUnreal(FVector( - pComponent->GetOriginLongitude(), - pComponent->GetOriginLatitude(), - pComponent->GetOriginHeight())); + FVector center = + this->TransformLongitudeLatitudeHeightPositionToUnreal(FVector( + pComponent->GetOriginLongitude(), + pComponent->GetOriginLatitude(), + pComponent->GetOriginHeight())); center = GetActorTransform().TransformPosition(center); DrawDebugSphere( @@ -706,49 +720,61 @@ void ACesiumGeoreference::Serialize(FArchive& Ar) { FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightToEcef( const FVector& longitudeLatitudeHeight) const { - glm::dvec3 ecef = this->_geoTransforms.TransformLongitudeLatitudeHeightToEcef( - VecMath::createVector3D(longitudeLatitudeHeight)); - return FVector(ecef.x, ecef.y, ecef.z); + return UCesiumWgs84Ellipsoid:: + LongitudeLatitudeHeightToEarthCenteredEarthFixed(longitudeLatitudeHeight); } FVector ACesiumGeoreference::TransformEcefToLongitudeLatitudeHeight( const FVector& ecef) const { - glm::dvec3 llh = this->_geoTransforms.TransformEcefToLongitudeLatitudeHeight( - glm::dvec3(ecef.X, ecef.Y, ecef.Z)); - return FVector(llh.x, llh.y, llh.z); + return UCesiumWgs84Ellipsoid:: + EarthCenteredEarthFixedToLongitudeLatitudeHeight(ecef); } -FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightToUnreal( - const FVector& longitudeLatitudeHeight) const { +FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightPositionToUnreal( + const FVector& LongitudeLatitudeHeight) const { glm::dvec3 ue = this->_geoTransforms.TransformLongitudeLatitudeHeightToUnreal( glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - VecMath::createVector3D(longitudeLatitudeHeight)); + VecMath::createVector3D(LongitudeLatitudeHeight)); return FVector(ue.x, ue.y, ue.z); } -FVector ACesiumGeoreference::TransformUnrealToLongitudeLatitudeHeight( - const FVector& ue) const { +FVector ACesiumGeoreference::TransformUnrealPositionToLongitudeLatitudeHeight( + const FVector& UnrealPosition) const { glm::dvec3 llh = this->_geoTransforms.TransformUnrealToLongitudeLatitudeHeight( glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - VecMath::createVector3D(ue)); + VecMath::createVector3D(UnrealPosition)); return FVector(llh.x, llh.y, llh.z); } -FVector ACesiumGeoreference::TransformEcefToUnreal(const FVector& ecef) const { +FVector ACesiumGeoreference::TransformEarthCenteredEarthFixedPositionToUnreal( + const FVector& EarthCenteredEarthFixedPosition) const { glm::dvec3 ue = this->_geoTransforms.TransformEcefToUnreal( glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - VecMath::createVector3D(ecef)); + VecMath::createVector3D(EarthCenteredEarthFixedPosition)); return FVector(ue.x, ue.y, ue.z); } -FVector ACesiumGeoreference::TransformUnrealToEcef(const FVector& ue) const { +FVector ACesiumGeoreference::TransformUnrealPositionToEarthCenteredEarthFixed( + const FVector& UnrealPosition) const { glm::dvec3 ecef = this->_geoTransforms.TransformUnrealToEcef( glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - glm::dvec3(ue.X, ue.Y, ue.Z)); + glm::dvec3(UnrealPosition.X, UnrealPosition.Y, UnrealPosition.Z)); return FVector(ecef.x, ecef.y, ecef.z); } +FVector ACesiumGeoreference::TransformEarthCenteredEarthFixedDirectionToUnreal( + const FVector& EarthCenteredEarthFixedDirection) const { + return this->_geoTransforms.GetEllipsoidCenteredToAbsoluteUnrealWorldMatrix() + .TransformVector(EarthCenteredEarthFixedDirection); +} + +FVector ACesiumGeoreference::TransformUnrealDirectionToEarthCenteredEarthFixed( + const FVector& UnrealDirection) const { + return this->_geoTransforms.GetAbsoluteUnrealWorldToEllipsoidCenteredMatrix() + .TransformVector(UnrealDirection); +} + FRotator ACesiumGeoreference::TransformRotatorUnrealToEastSouthUp( const FRotator& UERotator, const FVector& ueLocation) const { diff --git a/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp b/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp index 96e70627f..0aae8fcbf 100644 --- a/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp +++ b/Source/CesiumRuntime/Private/CesiumGlobeAnchorComponent.cpp @@ -214,8 +214,8 @@ FVector UCesiumGlobeAnchorComponent::GetLongitudeLatitudeHeight() const { return FVector(0.0); } - return this->ResolvedGeoreference->TransformEcefToLongitudeLatitudeHeight( - this->GetECEF()); + return UCesiumWgs84Ellipsoid:: + EarthCenteredEarthFixedToLongitudeLatitudeHeight(this->GetECEF()); } void UCesiumGlobeAnchorComponent::MoveToLongitudeLatitudeHeight( diff --git a/Source/CesiumRuntime/Private/CesiumSunSky.cpp b/Source/CesiumRuntime/Private/CesiumSunSky.cpp index 56796ed3b..991d30999 100644 --- a/Source/CesiumRuntime/Private/CesiumSunSky.cpp +++ b/Source/CesiumRuntime/Private/CesiumSunSky.cpp @@ -512,7 +512,7 @@ void ACesiumSunSky::UpdateAtmosphereRadius() { FVector location = transform.TransformPosition(getViewLocation(this->GetWorld())); FVector llh = - this->GetGeoreference()->TransformUnrealToLongitudeLatitudeHeight( + this->GetGeoreference()->TransformUnrealPositionToLongitudeLatitudeHeight( location); // An atmosphere of this radius should circumscribe all Earth terrain. diff --git a/Source/CesiumRuntime/Private/GeoTransforms.cpp b/Source/CesiumRuntime/Private/GeoTransforms.cpp index bd20d6fde..419afbe4c 100644 --- a/Source/CesiumRuntime/Private/GeoTransforms.cpp +++ b/Source/CesiumRuntime/Private/GeoTransforms.cpp @@ -5,6 +5,7 @@ #include "CesiumGeospatial/GlobeTransforms.h" #include "CesiumRuntime.h" #include "CesiumTransforms.h" +#include "VecMath.h" #include #include @@ -36,7 +37,9 @@ GeoTransforms::GeoTransforms() 1.0), _ellipsoid(CesiumGeospatial::Ellipsoid::WGS84), _center(0.0), - _scale(1.0) { + _scale(1.0), + _ecefToUnreal(), + _unrealToEcef() { // Coordinate system is initialized with the default values. This function // overrides them with proper values. this->updateTransforms(); @@ -54,7 +57,9 @@ GeoTransforms::GeoTransforms( 1.0), _ellipsoid(ellipsoid), _center(center), - _scale(scale) { + _scale(scale), + _ecefToUnreal(), + _unrealToEcef() { // Coordinate system is initialized with the default values. This function // overrides them with proper values. this->updateTransforms(); @@ -100,6 +105,10 @@ glm::dquat GeoTransforms::ComputeSurfaceNormalRotationUnreal( void GeoTransforms::updateTransforms() noexcept { this->_coordinateSystem = createCoordinateSystem(this->_ellipsoid, this->_center, this->_scale); + this->_ecefToUnreal = VecMath::createMatrix( + this->_coordinateSystem.getEcefToLocalTransformation()); + this->_unrealToEcef = VecMath::createMatrix( + this->_coordinateSystem.getLocalToEcefTransformation()); UE_LOG( LogCesium, diff --git a/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp b/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp index 074500c80..9773443e0 100644 --- a/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp +++ b/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp @@ -233,11 +233,12 @@ void FSubLevelsSpec::Define() { // Move the player within range of the first sub-level UCesiumSubLevelComponent* pPlayLevelComponent1 = findInPlay(pLevelComponent1); - FVector origin1 = findInPlay(pGeoreference) - ->TransformLongitudeLatitudeHeightToUnreal(FVector( - pPlayLevelComponent1->GetOriginLongitude(), - pPlayLevelComponent1->GetOriginLatitude(), - pPlayLevelComponent1->GetOriginHeight())); + FVector origin1 = + findInPlay(pGeoreference) + ->TransformLongitudeLatitudeHeightPositionToUnreal(FVector( + pPlayLevelComponent1->GetOriginLongitude(), + pPlayLevelComponent1->GetOriginLatitude(), + pPlayLevelComponent1->GetOriginHeight())); findInPlay(pPawn)->SetActorLocation(origin1); }); LatentBeforeEach( @@ -284,11 +285,12 @@ void FSubLevelsSpec::Define() { // Move the player within range of the first sub-level UCesiumSubLevelComponent* pPlayLevelComponent1 = findInPlay(pLevelComponent1); - FVector origin1 = findInPlay(pGeoreference) - ->TransformLongitudeLatitudeHeightToUnreal(FVector( - pPlayLevelComponent1->GetOriginLongitude(), - pPlayLevelComponent1->GetOriginLatitude(), - pPlayLevelComponent1->GetOriginHeight())); + FVector origin1 = + findInPlay(pGeoreference) + ->TransformLongitudeLatitudeHeightPositionToUnreal(FVector( + pPlayLevelComponent1->GetOriginLongitude(), + pPlayLevelComponent1->GetOriginLatitude(), + pPlayLevelComponent1->GetOriginHeight())); findInPlay(pPawn)->SetActorLocation(origin1); }); LatentBeforeEach( @@ -305,7 +307,7 @@ void FSubLevelsSpec::Define() { findInPlay(pLevelComponent1); FVector origin1 = findInPlay(pGeoreference) - ->TransformLongitudeLatitudeHeightToUnreal(FVector( + ->TransformLongitudeLatitudeHeightPositionToUnreal(FVector( pPlayLevelComponent1->GetOriginLongitude(), pPlayLevelComponent1->GetOriginLatitude(), pPlayLevelComponent1->GetOriginHeight() + 100000.0)); @@ -316,11 +318,12 @@ void FSubLevelsSpec::Define() { // inside it. UCesiumSubLevelComponent* pPlayLevelComponent1 = findInPlay(pLevelComponent1); - FVector origin1 = findInPlay(pGeoreference) - ->TransformLongitudeLatitudeHeightToUnreal(FVector( - pPlayLevelComponent1->GetOriginLongitude(), - pPlayLevelComponent1->GetOriginLatitude(), - pPlayLevelComponent1->GetOriginHeight())); + FVector origin1 = + findInPlay(pGeoreference) + ->TransformLongitudeLatitudeHeightPositionToUnreal(FVector( + pPlayLevelComponent1->GetOriginLongitude(), + pPlayLevelComponent1->GetOriginLatitude(), + pPlayLevelComponent1->GetOriginHeight())); findInPlay(pPawn)->SetActorLocation(origin1); }); LatentBeforeEach( diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index e249eb683..8d6551472 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -180,6 +180,36 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { bool ShowLoadRadii = true; #endif + /** + * The transformation matrix from the Unreal coordinate system to the + * Earth-Centered, Earth-Fixed (ECEF) coordinate system. The Unreal + * coordinates should generally not be interpreted as Unreal _world_ + * coordinates, but rather a coordinate system based on some parent Actor's + * reference frame as defined by its transform. This way, the chain of Unreal + * transforms places and orients the "globe" in the Unreal world. + */ + UPROPERTY( + BlueprintReadOnly, + BlueprintGetter = GetUnrealToEarthCenteredEarthFixedTransformation, + Category = "Cesium", + meta = (AllowPrivateAccess)) + FMatrix UnrealToEarthCenteredEarthFixedTransformation; + + /** + * The transformation matrix from the Earth-Centered, Earth-Fixed (ECEF) + * coordinate system to the Unreal coordinate system. The Unreal coordinates + * should generally not be interpreted as Unreal _world_ coordinates, but + * rather a coordinate system based on some parent Actor's reference frame as + * defined by its transform. This way, the chain of Unreal transforms places + * and orients the "globe" in the Unreal world. + */ + UPROPERTY( + BlueprintReadOnly, + BlueprintGetter = GetEarthCenteredEarthFixedToUnrealTransformation, + Category = "Cesium", + meta = (AllowPrivateAccess)) + FMatrix EarthCenteredEarthFixedToUnrealTransformation; + #pragma endregion #pragma region PropertyAccessors @@ -264,75 +294,105 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { UFUNCTION(BlueprintSetter) void SetShowLoadRadii(bool NewValue); + UFUNCTION(BlueprintGetter) + const FMatrix& GetUnrealToEarthCenteredEarthFixedTransformation() const; + + UFUNCTION(BlueprintGetter) + const FMatrix& GetEarthCenteredEarthFixedToUnrealTransformation() const; + #pragma endregion #pragma region Transformation Functions public: - /** - * Transforms the given longitude in degrees (x), latitude in - * degrees (y), and height above the ellipsoid in meters (z) into - * Earth-Centered, Earth-Fixed (ECEF) coordinates. - * - * This function peforms the computation in single-precision. When using - * the C++ API, corresponding double-precision function - * TransformLongitudeLatitudeHeightToEcef can be used. - */ - UFUNCTION(BlueprintPure, Category = "Cesium") - FVector TransformLongitudeLatitudeHeightToEcef( - const FVector& LongitudeLatitudeHeight) const; - - /** - * Transforms the given Earth-Centered, Earth-Fixed (ECEF) coordinates into - * WGS84 longitude in degrees (x), latitude in degrees (y), and height above - * the ellipsoid in meters (z). - */ - UFUNCTION(BlueprintPure, Category = "Cesium") - FVector TransformEcefToLongitudeLatitudeHeight(const FVector& Ecef) const; - /** * Transforms the given longitude in degrees (x), latitude in * degrees (y), and height above the ellipsoid in meters (z) into Unreal * coordinates. The resulting position should generally not be interpreted as * an Unreal _world_ position, but rather a position expressed in some parent - * Actor's reference frame as defined by its Transform. This way, the chain of + * Actor's reference frame as defined by its transform. This way, the chain of * Unreal transforms places and orients the "globe" in the Unreal world. */ - UFUNCTION(BlueprintPure, Category = "Cesium") - FVector TransformLongitudeLatitudeHeightToUnreal( + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "UnrealPosition")) + FVector TransformLongitudeLatitudeHeightPositionToUnreal( const FVector& LongitudeLatitudeHeight) const; /** - * Transforms Unreal coordinates into longitude in degrees (x), latitude in - * degrees (y), and height above the ellipsoid in meters (z). The position - * should generally not be an Unreal _world_ position, but rather a position - * expressed in some parent Actor's reference frame as defined by its - * Transform. This way, the chain of Unreal transforms places and orients the + * Transforms a position in Unreal coordinates into longitude in degrees (x), + * latitude in degrees (y), and height above the ellipsoid in meters (z). The + * position should generally not be an Unreal _world_ position, but rather a + * position expressed in some parent Actor's reference frame as defined by its + * transform. This way, the chain of Unreal transforms places and orients the * "globe" in the Unreal world. */ - UFUNCTION(BlueprintPure, Category = "Cesium") - FVector TransformUnrealToLongitudeLatitudeHeight(const FVector& Unreal) const; + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "LongitudeLatitudeHeight")) + FVector TransformUnrealPositionToLongitudeLatitudeHeight( + const FVector& UnrealPosition) const; /** - * Transforms the given point from Earth-Centered, Earth-Fixed (ECEF) into - * Unreal coordinates. The resulting position should generally not be + * Transforms a position in Earth-Centered, Earth-Fixed (ECEF) coordinates + * into Unreal coordinates. The resulting position should generally not be * interpreted as an Unreal _world_ position, but rather a position expressed - * in some parent Actor's reference frame as defined by its Transform. This + * in some parent Actor's reference frame as defined by its transform. This * way, the chain of Unreal transforms places and orients the "globe" in the * Unreal world. */ - UFUNCTION(BlueprintPure, Category = "Cesium") - FVector TransformEcefToUnreal(const FVector& Ecef) const; + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "UnrealPosition")) + FVector TransformEarthCenteredEarthFixedPositionToUnreal( + const FVector& EarthCenteredEarthFixedPosition) const; /** - * Transforms the given point from Unreal coordinates to Earth-Centered, + * Transforms the given position from Unreal coordinates to Earth-Centered, * Earth-Fixed (ECEF). The position should generally not be an Unreal _world_ * position, but rather a position expressed in some parent Actor's reference - * frame as defined by its Transform. This way, the chain of Unreal transforms + * frame as defined by its transform. This way, the chain of Unreal transforms * places and orients the "globe" in the Unreal world. */ - UFUNCTION(BlueprintPure, Category = "Cesium") - FVector TransformUnrealToEcef(const FVector& Unreal) const; + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "EarthCenteredEarthFixedPosition")) + FVector TransformUnrealPositionToEarthCenteredEarthFixed( + const FVector& UnrealPosition) const; + + /** + * Transforms a direction vector in Earth-Centered, Earth-Fixed (ECEF) + * coordinates into Unreal coordinates. The resulting direction vector should + * generally not be interpreted as an Unreal _world_ vector, but rather a + * vector expressed in some parent Actor's reference frame as defined by its + * transform. This way, the chain of Unreal transforms places and orients the + * "globe" in the Unreal world. + */ + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "UnrealDirection")) + FVector TransformEarthCenteredEarthFixedDirectionToUnreal( + const FVector& EarthCenteredEarthFixedDirection) const; + + /** + * Transforms the given direction vector from Unreal coordinates to + * Earth-Centered, Earth-Fixed (ECEF) coordinates. The direction vector should + * generally not be an Unreal _world_ vector, but rather a vector expressed in + * some parent Actor's reference frame as defined by its transform. This way, + * the chain of Unreal transforms places and orients the "globe" in the Unreal + * world. + */ + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "EarthCenteredEarthFixedPosition")) + FVector TransformUnrealDirectionToEarthCenteredEarthFixed( + const FVector& UnrealDirection) const; /** * Transforms a rotator from Unreal to East-South-Up at the given @@ -381,19 +441,19 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { #pragma region Editor Support -public: #if WITH_EDITOR +public: /** * Places the georeference origin at the camera's current location. Rotates * the globe so the current longitude/latitude/height of the camera is at the * Unreal origin. The camera is also teleported to the Unreal origin. * * Warning: Before clicking, ensure that all non-Cesium objects in the - * persistent level are georeferenced with the "CesiumGeoreferenceComponent" + * persistent level are georeferenced with the "CesiumGlobeAnchorComponent" * or attached to an actor with that component. Ensure that static actors only * exist in georeferenced sub-levels. */ - UFUNCTION(CallInEditor, Category = "Actions") + UFUNCTION(CallInEditor, Category = "Cesium") void PlaceGeoreferenceOriginHere(); #endif @@ -450,6 +510,35 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { void _createSubLevelsFromWorldComposition(); #endif + /** + * Transforms the given longitude in degrees (x), latitude in + * degrees (y), and height above the ellipsoid in meters (z) into + * Earth-Centered, Earth-Fixed (ECEF) coordinates. + */ + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = + (DeprecatedFunction, + DeprecationMessage = + "Use LongitudeLatitudeHeightToEarthCenteredEarthFixed on CesiumWgs84Ellipsoid instead.")) + FVector TransformLongitudeLatitudeHeightToEcef( + const FVector& LongitudeLatitudeHeight) const; + + /** + * Transforms the given Earth-Centered, Earth-Fixed (ECEF) coordinates into + * WGS84 longitude in degrees (x), latitude in degrees (y), and height above + * the ellipsoid in meters (z). + */ + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = + (DeprecatedFunction, + DeprecationMessage = + "Use EarthCenteredEarthFixedToLongitudeLatitudeHeight on CesiumWgs84Ellipsoid instead.")) + FVector TransformEcefToLongitudeLatitudeHeight(const FVector& Ecef) const; + #pragma endregion #pragma region Implementation Details diff --git a/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h b/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h index 678c4bb8f..f83785c36 100644 --- a/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h +++ b/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h @@ -40,14 +40,14 @@ class CESIUMRUNTIME_API UCesiumWgs84Ellipsoid * value (0,0,0) because the surface position is undefined. */ UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") - static FVector ScaleToGeodeticSurface(const FVector& earthCenteredEarthFixed); + static FVector ScaleToGeodeticSurface(const FVector& EarthCenteredEarthFixed); /** * Computes the normal of the plane tangent to the surface of the ellipsoid * at the provided Earth-Centered, Earth-Fixed position. */ UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") - static FVector GeodeticSurfaceNormal(const FVector& earthCenteredEarthFixed); + static FVector GeodeticSurfaceNormal(const FVector& EarthCenteredEarthFixed); /** * Convert longitude in degrees (X), latitude in degrees (Y), and height above @@ -56,7 +56,7 @@ class CESIUMRUNTIME_API UCesiumWgs84Ellipsoid */ UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") static FVector LongitudeLatitudeHeightToEarthCenteredEarthFixed( - const FVector& longitudeLatitudeHeight); + const FVector& LongitudeLatitudeHeight); /** * Convert Earth-Centered, Earth-Fixed (ECEF) coordinates to longitude in @@ -67,5 +67,5 @@ class CESIUMRUNTIME_API UCesiumWgs84Ellipsoid */ UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") static FVector EarthCenteredEarthFixedToLongitudeLatitudeHeight( - const FVector& earthCenteredEarthFixed); + const FVector& EarthCenteredEarthFixed); }; diff --git a/Source/CesiumRuntime/Public/GeoTransforms.h b/Source/CesiumRuntime/Public/GeoTransforms.h index 801a824bd..ed4159380 100644 --- a/Source/CesiumRuntime/Public/GeoTransforms.h +++ b/Source/CesiumRuntime/Public/GeoTransforms.h @@ -215,6 +215,13 @@ class CESIUMRUNTIME_API GeoTransforms { const glm::dvec3& oldPosition, const glm::dvec3& newPosition) const; + const FMatrix& GetEllipsoidCenteredToAbsoluteUnrealWorldMatrix() const { + return this->_ecefToUnreal; + } + const FMatrix& GetAbsoluteUnrealWorldToEllipsoidCenteredMatrix() const { + return this->_unrealToEcef; + } + private: /** * Update the derived state (i.e. the local horizontal coordinate system) when @@ -228,4 +235,6 @@ class CESIUMRUNTIME_API GeoTransforms { CesiumGeospatial::Ellipsoid _ellipsoid; glm::dvec3 _center; double _scale; + FMatrix _ecefToUnreal; + FMatrix _unrealToEcef; }; From 722c9e68393ad106e8cc993447f82d32a3197d78 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Tue, 25 Jul 2023 15:00:36 +1000 Subject: [PATCH 26/37] Clean rotator and matrix transformations. --- CHANGES.md | 1 + Config/Engine.ini | 5 + .../Private/CesiumGeoreference.cpp | 20 ++-- .../Private/CesiumWgs84Ellipsoid.cpp | 29 ++++-- .../CesiumRuntime/Private/GeoTransforms.cpp | 11 ++- .../Private/GlobeAwareDefaultPawn.cpp | 3 +- .../CesiumRuntime/Public/CesiumGeoreference.h | 95 ++++++++++++++----- .../Public/CesiumWgs84Ellipsoid.h | 35 +++++-- Source/CesiumRuntime/Public/GeoTransforms.h | 2 +- 9 files changed, 141 insertions(+), 60 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index edd363a41..136ecf1c5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,7 @@ - `CesiumSunSky` now uses a default `TransmittanceMinLightElevationAngle` value on its `SkyAtmosphere` component of 90.0 degrees instead of -90.0 degrees. This will generally improve lighting when far from the CesiumGeoreference origin, but it is a breaking change because it may change the lighting conditions in existing levels, particularly at sunrise and sunset. - The `Mobility` property on `ACesium3DTileset` is now obsolete. Instead, use the normal mechanism of setting the root component's mobility. - Removed many methods that from the C++ interface of `ACesiumGeoreference` that used `glm` vector types. Use the versions that work with Unreal types instead. +- The `ComputeEastSouthUpToUnreal` function on `ACesiumGeoreference` now returns a matrix that includes the translation component of the transformation. Previously it only included the rotation component. ##### Additions :tada: diff --git a/Config/Engine.ini b/Config/Engine.ini index 81f3247b9..5f8dd3969 100644 --- a/Config/Engine.ini +++ b/Config/Engine.ini @@ -61,3 +61,8 @@ +FunctionRedirects=(OldName="CesiumGeoreference.TransformUnrealToEcef",NewName="TransformUnrealPositionToEarthCenteredEarthFixed") +PropertyRedirects=(OldName="CesiumGeoreference.TransformUnrealPositionToEarthCenteredEarthFixed.Unreal", NewName="UnrealPosition") +FunctionRedirects=(OldName="CesiumGeoreference.TransformLongitudeLatitudeHeightToUnreal",NewName="TransformLongitudeLatitudeHeightPositionToUnreal") ++FunctionRedirects=(OldName="CesiumGeoreference.TransformRotatorUnrealToEastSouthUp",NewName="TransformUnrealRotatorToEastSouthUp") ++FunctionRedirects=(OldName="CesiumGeoreference.TransformRotatorEastSouthUpToUnreal",NewName="TransformEastSouthUpRotatorToUnreal") ++PropertyRedirects=(OldName="CesiumGeoreference.TransformEastSouthUpRotatorToUnreal.EsuRotator", NewName="EastSouthUpRotator") ++FunctionRedirects=(OldName="CesiumGeoreference.ComputeEastSouthUpToUnreal",NewName="ComputeEastSouthUpToUnrealTransformation") ++PropertyRedirects=(OldName="CesiumGeoreference.ComputeEastSouthUpToUnrealTransformation.Unreal", NewName="UnrealLocation") diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index eea7644ef..e3941dde3 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -775,7 +775,7 @@ FVector ACesiumGeoreference::TransformUnrealDirectionToEarthCenteredEarthFixed( .TransformVector(UnrealDirection); } -FRotator ACesiumGeoreference::TransformRotatorUnrealToEastSouthUp( +FRotator ACesiumGeoreference::TransformUnrealRotatorToEastSouthUp( const FRotator& UERotator, const FVector& ueLocation) const { return VecMath::createRotator( @@ -785,21 +785,21 @@ FRotator ACesiumGeoreference::TransformRotatorUnrealToEastSouthUp( VecMath::createVector3D(ueLocation))); } -FRotator ACesiumGeoreference::TransformRotatorEastSouthUpToUnreal( - const FRotator& EsuRotator, - const FVector& ueLocation) const { +FRotator ACesiumGeoreference::TransformEastSouthUpRotatorToUnreal( + const FRotator& EastSouthUpRotator, + const FVector& UnrealLocation) const { return VecMath::createRotator( this->_geoTransforms.TransformRotatorEastSouthUpToUnreal( glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - VecMath::createQuaternion(EsuRotator.Quaternion()), - VecMath::createVector3D(ueLocation))); + VecMath::createQuaternion(EastSouthUpRotator.Quaternion()), + VecMath::createVector3D(UnrealLocation))); } -FMatrix -ACesiumGeoreference::ComputeEastSouthUpToUnreal(const FVector& ue) const { - glm::dmat3 esuToUe = this->_geoTransforms.ComputeEastSouthUpToUnreal( +FMatrix ACesiumGeoreference::ComputeEastSouthUpToUnrealTransformation( + const FVector& UnrealLocation) const { + glm::dmat4 esuToUe = this->_geoTransforms.ComputeEastSouthUpToUnreal( glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - glm::dvec3(ue.X, ue.Y, ue.Z)); + glm::dvec3(UnrealLocation.X, UnrealLocation.Y, UnrealLocation.Z)); return VecMath::createMatrix(esuToUe); } diff --git a/Source/CesiumRuntime/Private/CesiumWgs84Ellipsoid.cpp b/Source/CesiumRuntime/Private/CesiumWgs84Ellipsoid.cpp index 498e4583b..6f6c7239f 100644 --- a/Source/CesiumRuntime/Private/CesiumWgs84Ellipsoid.cpp +++ b/Source/CesiumRuntime/Private/CesiumWgs84Ellipsoid.cpp @@ -3,6 +3,7 @@ #include "CesiumWgs84Ellipsoid.h" #include "VecMath.h" #include +#include #include using namespace CesiumGeospatial; @@ -22,9 +23,9 @@ double UCesiumWgs84Ellipsoid::GetMinimumRadius() { } FVector UCesiumWgs84Ellipsoid::ScaleToGeodeticSurface( - const FVector& earthCenteredEarthFixed) { + const FVector& EarthCenteredEarthFixedPosition) { std::optional result = Ellipsoid::WGS84.scaleToGeodeticSurface( - VecMath::createVector3D(earthCenteredEarthFixed)); + VecMath::createVector3D(EarthCenteredEarthFixedPosition)); if (result) { return VecMath::createVector(*result); } else { @@ -33,25 +34,25 @@ FVector UCesiumWgs84Ellipsoid::ScaleToGeodeticSurface( } FVector UCesiumWgs84Ellipsoid::GeodeticSurfaceNormal( - const FVector& earthCenteredEarthFixed) { + const FVector& EarthCenteredEarthFixedPosition) { return VecMath::createVector(Ellipsoid::WGS84.geodeticSurfaceNormal( - VecMath::createVector3D(earthCenteredEarthFixed))); + VecMath::createVector3D(EarthCenteredEarthFixedPosition))); } FVector UCesiumWgs84Ellipsoid::LongitudeLatitudeHeightToEarthCenteredEarthFixed( - const FVector& longitudeLatitudeHeight) { + const FVector& LongitudeLatitudeHeight) { glm::dvec3 cartesian = Ellipsoid::WGS84.cartographicToCartesian(Cartographic::fromDegrees( - longitudeLatitudeHeight.X, - longitudeLatitudeHeight.Y, - longitudeLatitudeHeight.Z)); + LongitudeLatitudeHeight.X, + LongitudeLatitudeHeight.Y, + LongitudeLatitudeHeight.Z)); return VecMath::createVector(cartesian); } FVector UCesiumWgs84Ellipsoid::EarthCenteredEarthFixedToLongitudeLatitudeHeight( - const FVector& earthCenteredEarthFixed) { + const FVector& EarthCenteredEarthFixedPosition) { std::optional result = Ellipsoid::WGS84.cartesianToCartographic( - VecMath::createVector3D(earthCenteredEarthFixed)); + VecMath::createVector3D(EarthCenteredEarthFixedPosition)); if (result) { return FVector( Math::radiansToDegrees(result->longitude), @@ -61,3 +62,11 @@ FVector UCesiumWgs84Ellipsoid::EarthCenteredEarthFixedToLongitudeLatitudeHeight( return FVector(0.0, 0.0, 0.0); } } + +FMatrix UCesiumWgs84Ellipsoid::EastNorthUpToEarthCenteredEarthFixed( + const FVector& EarthCenteredEarthFixedPosition) { + return VecMath::createMatrix( + CesiumGeospatial::GlobeTransforms::eastNorthUpToFixedFrame( + VecMath::createVector3D(EarthCenteredEarthFixedPosition), + CesiumGeospatial::Ellipsoid::WGS84)); +} diff --git a/Source/CesiumRuntime/Private/GeoTransforms.cpp b/Source/CesiumRuntime/Private/GeoTransforms.cpp index 419afbe4c..5f017feb0 100644 --- a/Source/CesiumRuntime/Private/GeoTransforms.cpp +++ b/Source/CesiumRuntime/Private/GeoTransforms.cpp @@ -179,7 +179,8 @@ glm::dquat GeoTransforms::TransformRotatorUnrealToEastSouthUp( const glm::dvec3& origin, const glm::dquat& UERotator, const glm::dvec3& ueLocation) const noexcept { - glm::dmat3 esuToUe = this->ComputeEastSouthUpToUnreal(origin, ueLocation); + glm::dmat3 esuToUe = + glm::dmat3(this->ComputeEastSouthUpToUnreal(origin, ueLocation)); glm::dmat3 ueToEsu = glm::affineInverse(esuToUe); glm::dquat ueToEsuQuat = glm::quat_cast(ueToEsu); return ueToEsuQuat * UERotator; @@ -190,19 +191,19 @@ glm::dquat GeoTransforms::TransformRotatorEastSouthUpToUnreal( const glm::dquat& ESURotator, const glm::dvec3& ueLocation) const noexcept { - glm::dmat3 esuToUe = this->ComputeEastSouthUpToUnreal(origin, ueLocation); + glm::dmat3 esuToUe = + glm::dmat3(this->ComputeEastSouthUpToUnreal(origin, ueLocation)); glm::dquat esuToUeQuat = glm::quat_cast(esuToUe); return esuToUeQuat * ESURotator; } -glm::dmat3 GeoTransforms::ComputeEastSouthUpToUnreal( +glm::dmat4 GeoTransforms::ComputeEastSouthUpToUnreal( const glm::dvec3& origin, const glm::dvec3& ue) const noexcept { glm::dvec3 ecef = this->TransformUnrealToEcef(origin, ue); LocalHorizontalCoordinateSystem newLocal = createCoordinateSystem(this->_ellipsoid, ecef, this->_scale); - return glm::dmat3( - newLocal.computeTransformationToAnotherLocal(this->_coordinateSystem)); + return newLocal.computeTransformationToAnotherLocal(this->_coordinateSystem); } glm::dmat3 diff --git a/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp b/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp index 7d8687fb9..8d8920ce3 100644 --- a/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp +++ b/Source/CesiumRuntime/Private/GlobeAwareDefaultPawn.cpp @@ -96,7 +96,8 @@ FRotator AGlobeAwareDefaultPawn::GetViewRotation() const { FVector globePosition = transform.InverseTransformPosition(this->GetPawnViewLocation()); FMatrix esuAdjustmentMatrix = - this->GetGeoreference()->ComputeEastSouthUpToUnreal(globePosition) * + this->GetGeoreference()->ComputeEastSouthUpToUnrealTransformation( + globePosition) * transform.ToMatrixNoScale(); return FRotator(esuAdjustmentMatrix.ToQuat() * localRotation.Quaternion()); diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index 8d6551472..d1d0cd2e4 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -395,47 +395,77 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { const FVector& UnrealDirection) const; /** - * Transforms a rotator from Unreal to East-South-Up at the given - * Unreal location. The rotator and location should generally not be relative - * to the Unreal _world_, but rather be expressed in some parent + * Given a Rotator that transforms an object into the Unreal coordinate + * system, returns a new Rotator that transforms that object into an + * East-South-Up frame centered at a given location. + * + * In an East-South-Up frame, +X points East, +Y points South, and +Z points + * Up. However, the directions of "East", "South", and "Up" in Unreal or ECEF + * coordinates vary depending on where on the globe we are talking about. + * That is why this function takes a location, expressed in Unreal + * coordinates, that defines the origin of the East-South-Up frame of + * interest. + * + * The Unreal location and the resulting Rotator should generally not be + * relative to the Unreal _world_, but rather be expressed in some parent * Actor's reference frame as defined by its Transform. This way, the chain of * Unreal transforms places and orients the "globe" in the Unreal world. */ - UFUNCTION(BlueprintPure, Category = "Cesium") - FRotator TransformRotatorUnrealToEastSouthUp( + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "EastSouthUpRotator")) + FRotator TransformUnrealRotatorToEastSouthUp( const FRotator& UnrealRotator, const FVector& UnrealLocation) const; /** - * Transforms a rotator from East-South-Up to Unreal at the given - * Unreal location. The location and resulting rotator should generally not be + * Given a Rotator that transforms an object into the East-South-Up frame + * centered at a given location, returns a new Rotator that transforms that + * object into Unreal coordinates. + * + * In an East-South-Up frame, +X points East, +Y points South, and +Z points + * Up. However, the directions of "East", "South", and "Up" in Unreal or ECEF + * coordinates vary depending on where on the globe we are talking about. + * That is why this function takes a location, expressed in Unreal + * coordinates, that defines the origin of the East-South-Up frame of + * interest. + * + * The Unreal location and the resulting Rotator should generally not be * relative to the Unreal _world_, but rather be expressed in some parent * Actor's reference frame as defined by its Transform. This way, the chain of * Unreal transforms places and orients the "globe" in the Unreal world. */ - UFUNCTION(BlueprintPure, Category = "Cesium") - FRotator TransformRotatorEastSouthUpToUnreal( - const FRotator& EsuRotator, + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "UnrealRotator")) + FRotator TransformEastSouthUpRotatorToUnreal( + const FRotator& EastSouthUpRotator, const FVector& UnrealLocation) const; /** - * Computes the rotation matrix from the local East-South-Up to Unreal at the - * specified Unreal location. The returned transformation works in Unreal's - * left-handed coordinate system. The location and resulting rotation should - * generally not be relative to the Unreal _world_, but rather be expressed in - * some parent Actor's reference frame as defined by its Transform. This way, - * the chain of Unreal transforms places and orients the "globe" in the Unreal - * world. - */ - UFUNCTION(BlueprintPure, Category = "Cesium") - FMatrix ComputeEastSouthUpToUnreal(const FVector& Unreal) const; - - /** - * Computes the rotation matrix from the local East-North-Up to - * Earth-Centered, Earth-Fixed (ECEF) at the specified ECEF location. + * Computes the matrix that transforms from an East-South-Up frame centered at + * a given location to the Unreal frame. + * + * In an East-South-Up frame, +X points East, +Y points South, and +Z points + * Up. However, the directions of "East", "South", and "Up" in Unreal or ECEF + * coordinates vary depending on where on the globe we are talking about. + * That is why this function takes a location, expressed in Unreal + * coordinates, that defines the origin of the East-South-Up frame of + * interest. + * + * The Unreal location and the resulting matrix should generally not be + * relative to the Unreal _world_, but rather be expressed in some parent + * Actor's reference frame as defined by its Transform. This way, the chain of + * Unreal transforms places and orients the "globe" in the Unreal world. */ - UFUNCTION(BlueprintPure, Category = "Cesium") - FMatrix ComputeEastNorthUpToEcef(const FVector& Ecef) const; + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "EastSouthUpToUnrealMatrix")) + FMatrix + ComputeEastSouthUpToUnrealTransformation(const FVector& UnrealLocation) const; #pragma endregion @@ -539,6 +569,19 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { "Use EarthCenteredEarthFixedToLongitudeLatitudeHeight on CesiumWgs84Ellipsoid instead.")) FVector TransformEcefToLongitudeLatitudeHeight(const FVector& Ecef) const; + /** + * Computes the rotation matrix from the local East-North-Up to + * Earth-Centered, Earth-Fixed (ECEF) at the specified ECEF location. + */ + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = + (DeprecatedFunction, + DeprecationMessage = + "Use EastNorthUpToEarthCenteredEarthFixed on CesiumWgs84Ellipsoid instead.")) + FMatrix ComputeEastNorthUpToEcef(const FVector& Ecef) const; + #pragma endregion #pragma region Implementation Details diff --git a/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h b/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h index f83785c36..a6621cf25 100644 --- a/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h +++ b/Source/CesiumRuntime/Public/CesiumWgs84Ellipsoid.h @@ -39,22 +39,33 @@ class CESIUMRUNTIME_API UCesiumWgs84Ellipsoid * position is near the center of the ellipsoid, the result will have the * value (0,0,0) because the surface position is undefined. */ - UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") - static FVector ScaleToGeodeticSurface(const FVector& EarthCenteredEarthFixed); + UFUNCTION( + BlueprintPure, + Category = "Cesium|WGS84 Ellipsoid", + meta = (ReturnDisplayName = "SurfacePosition")) + static FVector + ScaleToGeodeticSurface(const FVector& EarthCenteredEarthFixedPosition); /** * Computes the normal of the plane tangent to the surface of the ellipsoid * at the provided Earth-Centered, Earth-Fixed position. */ - UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") - static FVector GeodeticSurfaceNormal(const FVector& EarthCenteredEarthFixed); + UFUNCTION( + BlueprintPure, + Category = "Cesium|WGS84 Ellipsoid", + meta = (ReturnDisplayName = "SurfaceNormalVector")) + static FVector + GeodeticSurfaceNormal(const FVector& EarthCenteredEarthFixedPosition); /** * Convert longitude in degrees (X), latitude in degrees (Y), and height above * the WGS84 ellipsoid in meters (Z) to Earth-Centered, Earth-Fixed (ECEF) * coordinates. */ - UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") + UFUNCTION( + BlueprintPure, + Category = "Cesium|WGS84 Ellipsoid", + meta = (ReturnDisplayName = "EarthCenteredEarthFixedPosition")) static FVector LongitudeLatitudeHeightToEarthCenteredEarthFixed( const FVector& LongitudeLatitudeHeight); @@ -65,7 +76,17 @@ class CESIUMRUNTIME_API UCesiumWgs84Ellipsoid * will have the value (0,0,0) because the longitude, latitude, and height are * undefined. */ - UFUNCTION(BlueprintPure, Category = "Cesium|WGS84 Ellipsoid") + UFUNCTION( + BlueprintPure, + Category = "Cesium|WGS84 Ellipsoid", + meta = (ReturnDisplayName = "LongitudeLatitudeHeight")) static FVector EarthCenteredEarthFixedToLongitudeLatitudeHeight( - const FVector& EarthCenteredEarthFixed); + const FVector& EarthCenteredEarthFixedPosition); + + /** + * Computes the transformation matrix from the local East-North-Up (ENU) frame + * to Earth-Centered, Earth-Fixed (ECEF) at the specified ECEF location. + */ + static FMatrix EastNorthUpToEarthCenteredEarthFixed( + const FVector& EarthCenteredEarthFixedPosition); }; diff --git a/Source/CesiumRuntime/Public/GeoTransforms.h b/Source/CesiumRuntime/Public/GeoTransforms.h index ed4159380..cff920bd1 100644 --- a/Source/CesiumRuntime/Public/GeoTransforms.h +++ b/Source/CesiumRuntime/Public/GeoTransforms.h @@ -131,7 +131,7 @@ class CESIUMRUNTIME_API GeoTransforms { * origin). The returned transformation works in Unreal's left-handed * coordinate system. */ - glm::dmat3 ComputeEastSouthUpToUnreal( + glm::dmat4 ComputeEastSouthUpToUnreal( const glm::dvec3& origin, const glm::dvec3& Ue) const noexcept; From 7794b44fc426d6c638e7446167207e8e19e74234 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Tue, 25 Jul 2023 22:13:36 +1000 Subject: [PATCH 27/37] Georeference transform tests, more cleanup. --- Config/Engine.ini | 4 + .../Private/CesiumGeoreference.cpp | 36 ++-- .../Private/CesiumSubLevelComponent.cpp | 9 +- .../Private/Tests/CesiumGeoreference.spec.cpp | 189 ++++++++++++++++++ .../Private/Tests/SubLevels.spec.cpp | 2 +- .../CesiumRuntime/Public/CesiumGeoreference.h | 17 +- 6 files changed, 226 insertions(+), 31 deletions(-) create mode 100644 Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp diff --git a/Config/Engine.ini b/Config/Engine.ini index 5f8dd3969..ba4ab8878 100644 --- a/Config/Engine.ini +++ b/Config/Engine.ini @@ -66,3 +66,7 @@ +PropertyRedirects=(OldName="CesiumGeoreference.TransformEastSouthUpRotatorToUnreal.EsuRotator", NewName="EastSouthUpRotator") +FunctionRedirects=(OldName="CesiumGeoreference.ComputeEastSouthUpToUnreal",NewName="ComputeEastSouthUpToUnrealTransformation") +PropertyRedirects=(OldName="CesiumGeoreference.ComputeEastSouthUpToUnrealTransformation.Unreal", NewName="UnrealLocation") ++FunctionRedirects=(OldName="CesiumGeoreference.SetGeoreferenceOriginLongitudeLatitudeHeight",NewName="SetOriginLongitudeLatitudeHeight") ++FunctionRedirects=(OldName="CesiumGeoreference.GetGeoreferenceOriginLongitudeLatitudeHeight",NewName="GetOriginLongitudeLatitudeHeight") ++FunctionRedirects=(OldName="CesiumGeoreference.SetGeoreferenceOriginEcef",NewName="SetOriginEarthCenteredEarthFixed") ++PropertyRedirects=(OldName="CesiumGeoreference.SetOriginEarthCenteredEarthFixed.TargetEcef", NewName="TargetEarthCenteredEarthFixed") diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index e3941dde3..0c8ac02b8 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -336,12 +336,11 @@ void ACesiumGeoreference::_createSubLevelsFromWorldComposition() { PRAGMA_ENABLE_DEPRECATION_WARNINGS #endif -FVector -ACesiumGeoreference::GetGeoreferenceOriginLongitudeLatitudeHeight() const { +FVector ACesiumGeoreference::GetOriginLongitudeLatitudeHeight() const { return FVector(OriginLongitude, OriginLatitude, OriginHeight); } -void ACesiumGeoreference::SetGeoreferenceOriginLongitudeLatitudeHeight( +void ACesiumGeoreference::SetOriginLongitudeLatitudeHeight( const FVector& targetLongitudeLatitudeHeight) { this->_setGeoreferenceOrigin( targetLongitudeLatitudeHeight.X, @@ -349,10 +348,11 @@ void ACesiumGeoreference::SetGeoreferenceOriginLongitudeLatitudeHeight( targetLongitudeLatitudeHeight.Z); } -void ACesiumGeoreference::SetGeoreferenceOriginEcef(const FVector& TargetEcef) { - this->SetGeoreferenceOriginLongitudeLatitudeHeight(VecMath::createVector( +void ACesiumGeoreference::SetOriginEarthCenteredEarthFixed( + const FVector& TargetEarthCenteredEarthFixed) { + this->SetOriginLongitudeLatitudeHeight(VecMath::createVector( _geoTransforms.TransformEcefToLongitudeLatitudeHeight( - VecMath::createVector3D(TargetEcef)))); + VecMath::createVector3D(TargetEarthCenteredEarthFixed)))); } EOriginPlacement ACesiumGeoreference::GetOriginPlacement() const { @@ -776,23 +776,23 @@ FVector ACesiumGeoreference::TransformUnrealDirectionToEarthCenteredEarthFixed( } FRotator ACesiumGeoreference::TransformUnrealRotatorToEastSouthUp( - const FRotator& UERotator, - const FVector& ueLocation) const { - return VecMath::createRotator( - this->_geoTransforms.TransformRotatorUnrealToEastSouthUp( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - VecMath::createQuaternion(UERotator.Quaternion()), - VecMath::createVector3D(ueLocation))); + const FRotator& UnrealRotator, + const FVector& UnrealLocation) const { + FMatrix unrealToEsu = + this->ComputeEastSouthUpToUnrealTransformation(UnrealLocation).Inverse(); + FMatrix unreal = FRotationMatrix::Make(UnrealRotator); + FMatrix esu = unrealToEsu * unreal; + return esu.Rotator(); } FRotator ACesiumGeoreference::TransformEastSouthUpRotatorToUnreal( const FRotator& EastSouthUpRotator, const FVector& UnrealLocation) const { - return VecMath::createRotator( - this->_geoTransforms.TransformRotatorEastSouthUpToUnreal( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - VecMath::createQuaternion(EastSouthUpRotator.Quaternion()), - VecMath::createVector3D(UnrealLocation))); + FMatrix esuToUnreal = + this->ComputeEastSouthUpToUnrealTransformation(UnrealLocation); + FMatrix esu = FRotationMatrix::Make(EastSouthUpRotator); + FMatrix unreal = esuToUnreal * esu; + return unreal.Rotator(); } FMatrix ACesiumGeoreference::ComputeEastSouthUpToUnrealTransformation( diff --git a/Source/CesiumRuntime/Private/CesiumSubLevelComponent.cpp b/Source/CesiumRuntime/Private/CesiumSubLevelComponent.cpp index 1a62c3536..827a12efc 100644 --- a/Source/CesiumRuntime/Private/CesiumSubLevelComponent.cpp +++ b/Source/CesiumRuntime/Private/CesiumSubLevelComponent.cpp @@ -259,11 +259,10 @@ void UCesiumSubLevelComponent::UpdateGeoreferenceIfSubLevelIsActive() { this->OriginLatitude != this->ResolvedGeoreference->GetOriginLatitude() || this->OriginHeight != this->ResolvedGeoreference->GetOriginHeight()) { - this->ResolvedGeoreference->SetGeoreferenceOriginLongitudeLatitudeHeight( - FVector( - this->OriginLongitude, - this->OriginLatitude, - this->OriginHeight)); + this->ResolvedGeoreference->SetOriginLongitudeLatitudeHeight(FVector( + this->OriginLongitude, + this->OriginLatitude, + this->OriginHeight)); } } } diff --git a/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp b/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp new file mode 100644 index 000000000..7fdc3c7eb --- /dev/null +++ b/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp @@ -0,0 +1,189 @@ +// Copyright 2020-2023 CesiumGS, Inc. and Contributors + +#include "CesiumGeoreference.h" +#include "CesiumGeospatial/Ellipsoid.h" +#include "CesiumTestHelpers.h" +#include "CesiumUtility/Math.h" +#include "GeoTransforms.h" +#include "Misc/AutomationTest.h" + +using namespace CesiumGeospatial; +using namespace CesiumUtility; + +BEGIN_DEFINE_SPEC( + FCesiumGeoreferenceSpec, + "Cesium.Georeference", + EAutomationTestFlags::ApplicationContextMask | + EAutomationTestFlags::ProductFilter) + +TObjectPtr pGeoreferenceNullIsland; +TObjectPtr pGeoreference90Longitude; + +END_DEFINE_SPEC(FCesiumGeoreferenceSpec) + +void FCesiumGeoreferenceSpec::Define() { + BeforeEach([this]() { + UWorld* pWorld = CesiumTestHelpers::getGlobalWorldContext(); + pGeoreferenceNullIsland = pWorld->SpawnActor(); + pGeoreferenceNullIsland->SetOriginLongitudeLatitudeHeight( + FVector(0.0, 0.0, 0.0)); + pGeoreference90Longitude = pWorld->SpawnActor(); + pGeoreference90Longitude->SetOriginLongitudeLatitudeHeight( + FVector(90.0, 0.0, 0.0)); + }); + + Describe("Position Transformation", [this]() { + It("transforms longitude-latitude-height positions to Unreal", [this]() { + FVector nullIslandUnreal = + pGeoreferenceNullIsland + ->TransformLongitudeLatitudeHeightPositionToUnreal( + FVector(0.0, 0.0, 0.0)); + TestEqual("nullIslandUnreal", nullIslandUnreal, FVector(0.0, 0.0, 0.0)); + + FVector antiMeridianUnreal = + pGeoreferenceNullIsland + ->TransformLongitudeLatitudeHeightPositionToUnreal( + FVector(180.0, 0.0, 0.0)); + TestEqual( + "antiMeridianUnreal", + antiMeridianUnreal, + FVector( + 0.0, + 0.0, + -2.0 * Ellipsoid::WGS84.getMaximumRadius() * 100.0)); + }); + + It("transforms Earth-Centered, Earth-Fixed positions to Unreal", [this]() { + FVector nullIslandUnreal = + pGeoreferenceNullIsland + ->TransformEarthCenteredEarthFixedPositionToUnreal( + FVector(Ellipsoid::WGS84.getMaximumRadius(), 0.0, 0.0)); + TestEqual("nullIslandUnreal", nullIslandUnreal, FVector(0.0, 0.0, 0.0)); + + FVector antiMeridianUnreal = + pGeoreferenceNullIsland + ->TransformEarthCenteredEarthFixedPositionToUnreal( + FVector(-Ellipsoid::WGS84.getMaximumRadius(), 0.0, 0.0)); + TestEqual( + "antiMeridianUnreal", + antiMeridianUnreal, + FVector( + 0.0, + 0.0, + -2.0 * Ellipsoid::WGS84.getMaximumRadius() * 100.0)); + }); + + It("transforms Unreal positions to longitude-latitude-height", [this]() { + FVector nullIslandLLH = + pGeoreferenceNullIsland + ->TransformUnrealPositionToLongitudeLatitudeHeight( + FVector(0.0, 0.0, 0.0)); + TestEqual("nullIslandLLH", nullIslandLLH, FVector(0.0, 0.0, 0.0)); + + FVector antiMeridianLLH = + pGeoreferenceNullIsland + ->TransformUnrealPositionToLongitudeLatitudeHeight(FVector( + 0.0, + 0.0, + -2.0 * Ellipsoid::WGS84.getMaximumRadius() * 100.0)); + TestEqual("antiMeridianLLH", antiMeridianLLH, FVector(180.0, 0.0, 0.0)); + }); + + It("transforms Unreal positions to Earth-Centered, Earth-Fixed", [this]() { + FVector nullIslandEcef = + pGeoreferenceNullIsland + ->TransformUnrealPositionToEarthCenteredEarthFixed( + FVector(0.0, 0.0, 0.0)); + TestEqual( + "nullIslandEcef", + nullIslandEcef, + FVector(Ellipsoid::WGS84.getMaximumRadius(), 0.0, 0.0)); + + FVector antiMeridianEcef = + pGeoreferenceNullIsland + ->TransformUnrealPositionToEarthCenteredEarthFixed(FVector( + 0.0, + 0.0, + -2.0 * Ellipsoid::WGS84.getMaximumRadius() * 100.0)); + TestEqual( + "antiMeridianEcef", + antiMeridianEcef, + FVector(-Ellipsoid::WGS84.getMaximumRadius(), 0.0, 0.0)); + }); + }); + + Describe("Direction Transformation", [this]() { + It("transforms Earth-Centered, Earth-Fixed directions to Unreal", [this]() { + FVector northAtNullIslandUnreal = + pGeoreferenceNullIsland + ->TransformEarthCenteredEarthFixedDirectionToUnreal( + FVector(0.0, 0.0, 1.0)); + TestEqual( + "northAtNullIslandUnreal", + northAtNullIslandUnreal, + FVector(0.0, -100.0, 0.0)); // meters -> centimeters + + FVector westAtAntiMeridianUnreal = + pGeoreferenceNullIsland + ->TransformEarthCenteredEarthFixedDirectionToUnreal( + FVector(0.0, 1.0, 0.0)); + TestEqual( + "westAtAntiMeridianUnreal", + westAtAntiMeridianUnreal, + FVector( + 100.0, // West at anti-merdian is East at null island + 0.0, + 0.0)); + }); + + It("transforms Unreal directions to Earth-Centered, Earth-Fixed", [this]() { + FVector northAtNullIslandEcef = + pGeoreferenceNullIsland + ->TransformUnrealDirectionToEarthCenteredEarthFixed( + FVector(0.0, -1.0, 0.0)); + TestEqual( + "northAtNullIslandEcef", + northAtNullIslandEcef, + FVector(0.0, 0.0, 1.0 / 100.0)); // centimeters -> meters + + // West at anti-merdian is East at null island + FVector westAtAntiMeridianEcef = + pGeoreferenceNullIsland + ->TransformUnrealDirectionToEarthCenteredEarthFixed( + FVector(1.0, 0.0, 0.0)); + TestEqual( + "westAtAntiMeridianEcef", + westAtAntiMeridianEcef, + FVector(0.0, 1.0 / 100.0, 0.0)); + }); + }); + + Describe("Rotator Transformation", [this]() { + It("treats Unreal and East-South-Up as identical at the georeference origin", + [this]() { + FRotator atOrigin1 = + pGeoreferenceNullIsland->TransformEastSouthUpRotatorToUnreal( + FRotator(1.0, 2.0, 3.0), + FVector(0.0, 0.0, 0.0)); + TestEqual("atOrigin1", atOrigin1, FRotator(1.0, 2.0, 3.0)); + + FRotator atOrigin2 = + pGeoreferenceNullIsland->TransformUnrealRotatorToEastSouthUp( + FRotator(1.0, 2.0, 3.0), + FVector(0.0, 0.0, 0.0)); + TestEqual("atOrigin2", atOrigin2, FRotator(1.0, 2.0, 3.0)); + }); + }); + + It("transforms Unreal Rotators to East-South-Up", [this]() { + FRotator atNullIsland = + pGeoreferenceNullIsland->TransformEastSouthUpRotatorToUnreal( + FRotator(1.0, 2.0, 3.0), // pitch (+X), yaw (-Z), roll (+Y) + // at the anti-meridian / equator + FVector( + 0.0, + 0.0, + -2.0 * Ellipsoid::WGS84.getMaximumRadius() * 100.0)); + TestEqual("atNullIsland", atNullIsland, FRotator(-1.0, -2.0, 177.0)); + }); +} diff --git a/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp b/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp index 9773443e0..20f8587a1 100644 --- a/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp +++ b/Source/CesiumRuntime/Private/Tests/SubLevels.spec.cpp @@ -116,7 +116,7 @@ void FSubLevelsSpec::Define() { "pSubLevel1 is hidden", pSubLevel1->IsTemporarilyHiddenInEditor(true)); - pGeoreference->SetGeoreferenceOriginLongitudeLatitudeHeight( + pGeoreference->SetOriginLongitudeLatitudeHeight( FVector(1.0, 2.0, 3.0)); TestEqual("Longitude", pLevelComponent1->GetOriginLongitude(), 1.0); TestEqual("Latitude", pLevelComponent1->GetOriginLatitude(), 2.0); diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index d1d0cd2e4..7b71e3a79 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -222,25 +222,28 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { * (i.e. Longitude / Latitude / Height). */ UFUNCTION(BlueprintPure, Category = "Cesium") - FVector GetGeoreferenceOriginLongitudeLatitudeHeight() const; + FVector GetOriginLongitudeLatitudeHeight() const; /** * This aligns the specified longitude in degrees (X), latitude in - * degrees (Y), and height above the ellipsoid in meters (Z) to Unreal's world + * degrees (Y), and height above the ellipsoid in meters (Z) to the Unreal * origin. That is, it moves the globe so that these coordinates exactly fall - * on the origin. + * on the origin. Only valid if the placement type is Cartographic Origin + * (i.e. Longitude / Latitude / Height). */ UFUNCTION(BlueprintCallable, Category = "Cesium") - void SetGeoreferenceOriginLongitudeLatitudeHeight( + void SetOriginLongitudeLatitudeHeight( const FVector& TargetLongitudeLatitudeHeight); /** * This aligns the specified Earth-Centered, Earth-Fixed (ECEF) coordinates to - * Unreal's world origin. I.e. it moves the globe so that these coordinates - * exactly fall on the origin. + * the Unreal origin. That is, it moves the globe so that these coordinates + * exactly fall on the origin. Only valid if the placement type is + * Cartographic Origin (i.e. Longitude / Latitude / Height). */ UFUNCTION(BlueprintCallable, Category = "Cesium") - void SetGeoreferenceOriginEcef(const FVector& TargetEcef); + void SetOriginEarthCenteredEarthFixed( + const FVector& TargetEarthCenteredEarthFixed); UFUNCTION(BlueprintGetter) EOriginPlacement GetOriginPlacement() const; From b8edabd10e5ced0e52eeb76c0a81118172448119 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Thu, 27 Jul 2023 18:54:13 +1000 Subject: [PATCH 28/37] More efficient TransformEastSouthUpRotatorToUnreal. And a passing test. --- .../Private/CesiumGeoreference.cpp | 8 +-- .../Private/Tests/CesiumGeoreference.spec.cpp | 56 +++++++++++++++---- 2 files changed, 47 insertions(+), 17 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index 0c8ac02b8..d3dc6bb42 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -780,9 +780,7 @@ FRotator ACesiumGeoreference::TransformUnrealRotatorToEastSouthUp( const FVector& UnrealLocation) const { FMatrix unrealToEsu = this->ComputeEastSouthUpToUnrealTransformation(UnrealLocation).Inverse(); - FMatrix unreal = FRotationMatrix::Make(UnrealRotator); - FMatrix esu = unrealToEsu * unreal; - return esu.Rotator(); + return FRotator(unrealToEsu.ToQuat() * EastSouthUpRotator.Quaternion()); } FRotator ACesiumGeoreference::TransformEastSouthUpRotatorToUnreal( @@ -790,9 +788,7 @@ FRotator ACesiumGeoreference::TransformEastSouthUpRotatorToUnreal( const FVector& UnrealLocation) const { FMatrix esuToUnreal = this->ComputeEastSouthUpToUnrealTransformation(UnrealLocation); - FMatrix esu = FRotationMatrix::Make(EastSouthUpRotator); - FMatrix unreal = esuToUnreal * esu; - return unreal.Rotator(); + return FRotator(esuToUnreal.ToQuat() * EastSouthUpRotator.Quaternion()); } FMatrix ACesiumGeoreference::ComputeEastSouthUpToUnrealTransformation( diff --git a/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp b/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp index 7fdc3c7eb..0331e4fbb 100644 --- a/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp +++ b/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp @@ -173,17 +173,51 @@ void FCesiumGeoreferenceSpec::Define() { FVector(0.0, 0.0, 0.0)); TestEqual("atOrigin2", atOrigin2, FRotator(1.0, 2.0, 3.0)); }); - }); - It("transforms Unreal Rotators to East-South-Up", [this]() { - FRotator atNullIsland = - pGeoreferenceNullIsland->TransformEastSouthUpRotatorToUnreal( - FRotator(1.0, 2.0, 3.0), // pitch (+X), yaw (-Z), roll (+Y) - // at the anti-meridian / equator - FVector( - 0.0, - 0.0, - -2.0 * Ellipsoid::WGS84.getMaximumRadius() * 100.0)); - TestEqual("atNullIsland", atNullIsland, FRotator(-1.0, -2.0, 177.0)); + It("transforms Unreal Rotators to East-South-Up", [this]() { + FRotator rotationAt90DegreesLongitude = FRotator(1.0, 2.0, 3.0); + FVector originOf90DegreesLongitudeInNullIslandCoordinates = + pGeoreferenceNullIsland + ->TransformLongitudeLatitudeHeightPositionToUnreal( + FVector(90.0, 0.0, 0.0)); + FRotator rotationAtNullIsland = + pGeoreferenceNullIsland->TransformEastSouthUpRotatorToUnreal( + rotationAt90DegreesLongitude, + originOf90DegreesLongitudeInNullIslandCoordinates); + + // Verify the rotation by checking the directions of the three axes. + FVector xEcefExpected = + pGeoreference90Longitude + ->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotationAt90DegreesLongitude.RotateVector( + FVector::XAxisVector)); + FVector yEcefExpected = + pGeoreference90Longitude + ->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotationAt90DegreesLongitude.RotateVector( + FVector::YAxisVector)); + FVector zEcefExpected = + pGeoreference90Longitude + ->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotationAt90DegreesLongitude.RotateVector( + FVector::ZAxisVector)); + + FVector xEcefActual = + pGeoreferenceNullIsland + ->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotationAtNullIsland.RotateVector(FVector::XAxisVector)); + FVector yEcefActual = + pGeoreferenceNullIsland + ->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotationAtNullIsland.RotateVector(FVector::YAxisVector)); + FVector zEcefActual = + pGeoreferenceNullIsland + ->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotationAtNullIsland.RotateVector(FVector::ZAxisVector)); + + TestEqual("xEcefActual", xEcefActual, xEcefExpected); + TestEqual("yEcefActual", yEcefActual, yEcefExpected); + TestEqual("zEcefActual", zEcefActual, zEcefExpected); + }); }); } From bdf36af47db7adfcf18c405a2dc492686b0f4f26 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Thu, 27 Jul 2023 19:44:39 +1000 Subject: [PATCH 29/37] Factor out rotator comparisons to a helper. --- .../Private/CesiumGeoreference.cpp | 2 +- .../Private/Tests/CesiumGeoreference.spec.cpp | 40 ++++--------------- .../Private/Tests/CesiumTestHelpers.cpp | 32 +++++++++++++++ .../Private/Tests/CesiumTestHelpers.h | 17 +++++++- 4 files changed, 56 insertions(+), 35 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index d3dc6bb42..2da7e5d45 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -780,7 +780,7 @@ FRotator ACesiumGeoreference::TransformUnrealRotatorToEastSouthUp( const FVector& UnrealLocation) const { FMatrix unrealToEsu = this->ComputeEastSouthUpToUnrealTransformation(UnrealLocation).Inverse(); - return FRotator(unrealToEsu.ToQuat() * EastSouthUpRotator.Quaternion()); + return FRotator(unrealToEsu.ToQuat() * UnrealRotator.Quaternion()); } FRotator ACesiumGeoreference::TransformEastSouthUpRotatorToUnreal( diff --git a/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp b/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp index 0331e4fbb..4042d7da3 100644 --- a/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp +++ b/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp @@ -180,44 +180,18 @@ void FCesiumGeoreferenceSpec::Define() { pGeoreferenceNullIsland ->TransformLongitudeLatitudeHeightPositionToUnreal( FVector(90.0, 0.0, 0.0)); + FRotator rotationAtNullIsland = pGeoreferenceNullIsland->TransformEastSouthUpRotatorToUnreal( rotationAt90DegreesLongitude, originOf90DegreesLongitudeInNullIslandCoordinates); - // Verify the rotation by checking the directions of the three axes. - FVector xEcefExpected = - pGeoreference90Longitude - ->TransformUnrealDirectionToEarthCenteredEarthFixed( - rotationAt90DegreesLongitude.RotateVector( - FVector::XAxisVector)); - FVector yEcefExpected = - pGeoreference90Longitude - ->TransformUnrealDirectionToEarthCenteredEarthFixed( - rotationAt90DegreesLongitude.RotateVector( - FVector::YAxisVector)); - FVector zEcefExpected = - pGeoreference90Longitude - ->TransformUnrealDirectionToEarthCenteredEarthFixed( - rotationAt90DegreesLongitude.RotateVector( - FVector::ZAxisVector)); - - FVector xEcefActual = - pGeoreferenceNullIsland - ->TransformUnrealDirectionToEarthCenteredEarthFixed( - rotationAtNullIsland.RotateVector(FVector::XAxisVector)); - FVector yEcefActual = - pGeoreferenceNullIsland - ->TransformUnrealDirectionToEarthCenteredEarthFixed( - rotationAtNullIsland.RotateVector(FVector::YAxisVector)); - FVector zEcefActual = - pGeoreferenceNullIsland - ->TransformUnrealDirectionToEarthCenteredEarthFixed( - rotationAtNullIsland.RotateVector(FVector::ZAxisVector)); - - TestEqual("xEcefActual", xEcefActual, xEcefExpected); - TestEqual("yEcefActual", yEcefActual, yEcefExpected); - TestEqual("zEcefActual", zEcefActual, zEcefExpected); + CesiumTestHelpers::TestRotatorsAreEquivalent( + this, + pGeoreference90Longitude, + rotationAt90DegreesLongitude, + pGeoreferenceNullIsland, + rotationAtNullIsland); }); }); } diff --git a/Source/CesiumRuntime/Private/Tests/CesiumTestHelpers.cpp b/Source/CesiumRuntime/Private/Tests/CesiumTestHelpers.cpp index 59bfc64f5..100f4bd1c 100644 --- a/Source/CesiumRuntime/Private/Tests/CesiumTestHelpers.cpp +++ b/Source/CesiumRuntime/Private/Tests/CesiumTestHelpers.cpp @@ -1,6 +1,7 @@ // Copyright 2020-2023 CesiumGS, Inc. and Contributors #include "CesiumTestHelpers.h" +#include "CesiumGeoreference.h" #include "Engine/Engine.h" namespace CesiumTestHelpers { @@ -12,6 +13,37 @@ UWorld* getGlobalWorldContext() { return firstWorldContext.World(); } +void TestRotatorsAreEquivalent( + FAutomationTestBase* pSpec, + ACesiumGeoreference* pGeoreferenceExpected, + const FRotator& rotatorExpected, + ACesiumGeoreference* pGeoreferenceActual, + const FRotator& rotatorActual) { + FVector xEcefExpected = + pGeoreferenceExpected->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotatorExpected.RotateVector(FVector::XAxisVector)); + FVector yEcefExpected = + pGeoreferenceExpected->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotatorExpected.RotateVector(FVector::YAxisVector)); + FVector zEcefExpected = + pGeoreferenceExpected->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotatorExpected.RotateVector(FVector::ZAxisVector)); + + FVector xEcefActual = + pGeoreferenceActual->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotatorActual.RotateVector(FVector::XAxisVector)); + FVector yEcefActual = + pGeoreferenceActual->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotatorActual.RotateVector(FVector::YAxisVector)); + FVector zEcefActual = + pGeoreferenceActual->TransformUnrealDirectionToEarthCenteredEarthFixed( + rotatorActual.RotateVector(FVector::ZAxisVector)); + + pSpec->TestEqual("xEcefActual", xEcefActual, xEcefExpected); + pSpec->TestEqual("yEcefActual", yEcefActual, yEcefExpected); + pSpec->TestEqual("zEcefActual", zEcefActual, zEcefExpected); +} + FName getUniqueTag(AActor* pActor) { return FName(FString::Printf(TEXT("%lld"), pActor)); } diff --git a/Source/CesiumRuntime/Private/Tests/CesiumTestHelpers.h b/Source/CesiumRuntime/Private/Tests/CesiumTestHelpers.h index ebbc79b0b..988d55182 100644 --- a/Source/CesiumRuntime/Private/Tests/CesiumTestHelpers.h +++ b/Source/CesiumRuntime/Private/Tests/CesiumTestHelpers.h @@ -4,6 +4,7 @@ #include "EngineUtils.h" #include "Kismet/GameplayStatics.h" +#include "Math/MathFwd.h" #include "Misc/AutomationTest.h" #include "TimerManager.h" @@ -12,10 +13,24 @@ #endif class UWorld; +class ACesiumGeoreference; namespace CesiumTestHelpers { -static UWorld* getGlobalWorldContext(); +UWorld* getGlobalWorldContext(); + +/// +/// Verify that two rotations (expressed relative to two different +/// georeferences) are equivalent by using them to rotate the principal axis +/// vectors and then transforming those vectors to ECEF. The ECEF vectors should +/// be the same in both cases. +/// +void TestRotatorsAreEquivalent( + FAutomationTestBase* pSpec, + ACesiumGeoreference* pGeoreferenceExpected, + const FRotator& rotatorExpected, + ACesiumGeoreference* pGeoreferenceActual, + const FRotator& rotatorActual); template void waitForImpl( From 4a16c77f3250effdfbf63c1b5846e760479d8fcb Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Thu, 27 Jul 2023 21:21:29 +1000 Subject: [PATCH 30/37] Add a test for opposite rotator transformation direction. --- .../Private/Tests/CesiumGeoreference.spec.cpp | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp b/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp index 4042d7da3..571a69fb0 100644 --- a/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp +++ b/Source/CesiumRuntime/Private/Tests/CesiumGeoreference.spec.cpp @@ -174,7 +174,7 @@ void FCesiumGeoreferenceSpec::Define() { TestEqual("atOrigin2", atOrigin2, FRotator(1.0, 2.0, 3.0)); }); - It("transforms Unreal Rotators to East-South-Up", [this]() { + It("transforms East-South-Up Rotators to Unreal", [this]() { FRotator rotationAt90DegreesLongitude = FRotator(1.0, 2.0, 3.0); FVector originOf90DegreesLongitudeInNullIslandCoordinates = pGeoreferenceNullIsland @@ -193,5 +193,25 @@ void FCesiumGeoreferenceSpec::Define() { pGeoreferenceNullIsland, rotationAtNullIsland); }); + + It("transforms Unreal Rotators to East-South-Up", [this]() { + FRotator rotationAtNullIsland = FRotator(1.0, 2.0, 3.0); + FVector originOf90DegreesLongitudeInNullIslandCoordinates = + pGeoreferenceNullIsland + ->TransformLongitudeLatitudeHeightPositionToUnreal( + FVector(90.0, 0.0, 0.0)); + + FRotator rotationAt90DegreesLongitude = + pGeoreferenceNullIsland->TransformUnrealRotatorToEastSouthUp( + rotationAtNullIsland, + originOf90DegreesLongitudeInNullIslandCoordinates); + + CesiumTestHelpers::TestRotatorsAreEquivalent( + this, + pGeoreferenceNullIsland, + rotationAtNullIsland, + pGeoreference90Longitude, + rotationAt90DegreesLongitude); + }); }); } From 5d7e0365794bd3bc32b95aba96352b3c3963e84e Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Fri, 28 Jul 2023 14:52:15 +1000 Subject: [PATCH 31/37] Make CesiumGeoreference cpp order order match header order. --- CHANGES.md | 2 +- Source/CesiumRuntime/Private/CesiumActors.h | 7 + .../Private/CesiumGeoreference.cpp | 791 +++++++++--------- .../CesiumRuntime/Public/CesiumGeoreference.h | 113 +-- 4 files changed, 448 insertions(+), 465 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 761c48369..d399376fb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,7 +8,7 @@ - `CesiumSunSky` now uses a default `TransmittanceMinLightElevationAngle` value on its `SkyAtmosphere` component of 90.0 degrees instead of -90.0 degrees. This will generally improve lighting when far from the CesiumGeoreference origin, but it is a breaking change because it may change the lighting conditions in existing levels, particularly at sunrise and sunset. - The `Mobility` property on `ACesium3DTileset` is now obsolete. Instead, use the normal mechanism of setting the root component's mobility. - Removed many methods that from the C++ interface of `ACesiumGeoreference` that used `glm` vector types. Use the versions that work with Unreal types instead. -- The `ComputeEastSouthUpToUnreal` function on `ACesiumGeoreference` now returns a matrix that includes the translation component of the transformation. Previously it only included the rotation component. +- The `ComputeEastSouthUpToUnreal` function on `ACesiumGeoreference` has been renamed to `ComputeEastSouthUpToUnrealTransformation` and now returns a matrix that includes the translation component of the transformation. Previously it only included the rotation component. ##### Additions :tada: diff --git a/Source/CesiumRuntime/Private/CesiumActors.h b/Source/CesiumRuntime/Private/CesiumActors.h index c9fa2fb63..23ff60f45 100644 --- a/Source/CesiumRuntime/Private/CesiumActors.h +++ b/Source/CesiumRuntime/Private/CesiumActors.h @@ -5,6 +5,13 @@ #include "GameFramework/Actor.h" #include +#define CESIUM_POST_EDIT_CHANGE(changedPropertyName, ClassName, PropertyName) \ + if (changedPropertyName == \ + GET_MEMBER_NAME_CHECKED(ClassName, PropertyName)) { \ + this->Set##PropertyName(this->PropertyName); \ + return; \ + } + /** * @brief Utility functions related to Unreal actors */ diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index 2da7e5d45..a986d00cb 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -36,17 +36,8 @@ #include "Editor.h" #include "EditorViewportClient.h" #include "Slate/SceneViewport.h" -#include "WorldBrowserModule.h" - -// These are in the Private directory, yet they are exported, so we're able to -// use them. And there's no other way (AFAIK) to get details of unloaded levels. -#include "../Private/LevelCollectionModel.h" -#include "../Private/LevelModel.h" #endif -FName ACesiumGeoreference::DEFAULT_GEOREFERENCE_TAG = - FName("DEFAULT_GEOREFERENCE"); - /*static*/ ACesiumGeoreference* ACesiumGeoreference::GetDefaultGeoreference(const UObject* WorldContextObject) { UWorld* world = WorldContextObject->GetWorld(); @@ -122,22 +113,182 @@ ACesiumGeoreference::GetDefaultGeoreference(const UObject* WorldContextObject) { return pGeoreference; } -ACesiumGeoreference::ACesiumGeoreference() : AActor(), _geoTransforms() { - PrimaryActorTick.bCanEverTick = true; +FVector ACesiumGeoreference::GetOriginLongitudeLatitudeHeight() const { + return FVector(OriginLongitude, OriginLatitude, OriginHeight); +} - this->Root = CreateDefaultSubobject(TEXT("Root")); - this->RootComponent = this->Root; +void ACesiumGeoreference::SetOriginLongitudeLatitudeHeight( + const FVector& targetLongitudeLatitudeHeight) { + this->_setGeoreferenceOrigin( + targetLongitudeLatitudeHeight.X, + targetLongitudeLatitudeHeight.Y, + targetLongitudeLatitudeHeight.Z); +} -#if WITH_EDITOR - this->SetIsSpatiallyLoaded(false); -#endif - this->SubLevelSwitcher = - CreateDefaultSubobject( - "SubLevelSwitcher"); +FVector ACesiumGeoreference::GetOriginEarthCenteredEarthFixed() const { + return UCesiumWgs84Ellipsoid:: + LongitudeLatitudeHeightToEarthCenteredEarthFixed( + this->GetOriginLongitudeLatitudeHeight()); } -#if WITH_EDITOR +void ACesiumGeoreference::SetOriginEarthCenteredEarthFixed( + const FVector& TargetEarthCenteredEarthFixed) { + this->SetOriginLongitudeLatitudeHeight( + UCesiumWgs84Ellipsoid::EarthCenteredEarthFixedToLongitudeLatitudeHeight( + TargetEarthCenteredEarthFixed)); +} + +EOriginPlacement ACesiumGeoreference::GetOriginPlacement() const { + return this->OriginPlacement; +} + +void ACesiumGeoreference::SetOriginPlacement(EOriginPlacement NewValue) { + this->OriginPlacement = NewValue; + this->UpdateGeoreference(); +} + +double ACesiumGeoreference::GetOriginLatitude() const { + return this->OriginLatitude; +} + +void ACesiumGeoreference::SetOriginLatitude(double NewValue) { + this->OriginLatitude = NewValue; + this->UpdateGeoreference(); +} + +double ACesiumGeoreference::GetOriginLongitude() const { + return this->OriginLongitude; +} + +void ACesiumGeoreference::SetOriginLongitude(double NewValue) { + this->OriginLongitude = NewValue; + this->UpdateGeoreference(); +} + +double ACesiumGeoreference::GetOriginHeight() const { + return this->OriginHeight; +} + +void ACesiumGeoreference::SetOriginHeight(double NewValue) { + this->OriginHeight = NewValue; + this->UpdateGeoreference(); +} + +double ACesiumGeoreference::GetScale() const { return this->Scale; } + +void ACesiumGeoreference::SetScale(double NewValue) { + if (NewValue < 1e-6) { + this->Scale = 1e-6; + } else { + this->Scale = NewValue; + } + this->UpdateGeoreference(); +} + +APlayerCameraManager* ACesiumGeoreference::GetSubLevelCamera() const { + return this->SubLevelCamera; +} + +void ACesiumGeoreference::SetSubLevelCamera(APlayerCameraManager* NewValue) { + this->SubLevelCamera = NewValue; +} + +bool ACesiumGeoreference::GetShowLoadRadii() const { + return this->ShowLoadRadii; +} + +void ACesiumGeoreference::SetShowLoadRadii(bool NewValue) { + this->ShowLoadRadii = NewValue; +} + +FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightPositionToUnreal( + const FVector& LongitudeLatitudeHeight) const { + glm::dvec3 ue = this->_geoTransforms.TransformLongitudeLatitudeHeightToUnreal( + glm::dvec3(CesiumActors::getWorldOrigin4D(this)), + VecMath::createVector3D(LongitudeLatitudeHeight)); + return FVector(ue.x, ue.y, ue.z); +} + +FVector ACesiumGeoreference::TransformUnrealPositionToLongitudeLatitudeHeight( + const FVector& UnrealPosition) const { + glm::dvec3 llh = + this->_geoTransforms.TransformUnrealToLongitudeLatitudeHeight( + glm::dvec3(CesiumActors::getWorldOrigin4D(this)), + VecMath::createVector3D(UnrealPosition)); + return FVector(llh.x, llh.y, llh.z); +} + +FVector ACesiumGeoreference::TransformEarthCenteredEarthFixedPositionToUnreal( + const FVector& EarthCenteredEarthFixedPosition) const { + glm::dvec3 ue = this->_geoTransforms.TransformEcefToUnreal( + glm::dvec3(CesiumActors::getWorldOrigin4D(this)), + VecMath::createVector3D(EarthCenteredEarthFixedPosition)); + return FVector(ue.x, ue.y, ue.z); +} + +FVector ACesiumGeoreference::TransformUnrealPositionToEarthCenteredEarthFixed( + const FVector& UnrealPosition) const { + glm::dvec3 ecef = this->_geoTransforms.TransformUnrealToEcef( + glm::dvec3(CesiumActors::getWorldOrigin4D(this)), + glm::dvec3(UnrealPosition.X, UnrealPosition.Y, UnrealPosition.Z)); + return FVector(ecef.x, ecef.y, ecef.z); +} + +FVector ACesiumGeoreference::TransformEarthCenteredEarthFixedDirectionToUnreal( + const FVector& EarthCenteredEarthFixedDirection) const { + return this->_geoTransforms.GetEllipsoidCenteredToAbsoluteUnrealWorldMatrix() + .TransformVector(EarthCenteredEarthFixedDirection); +} + +FVector ACesiumGeoreference::TransformUnrealDirectionToEarthCenteredEarthFixed( + const FVector& UnrealDirection) const { + return this->_geoTransforms.GetAbsoluteUnrealWorldToEllipsoidCenteredMatrix() + .TransformVector(UnrealDirection); +} + +FRotator ACesiumGeoreference::TransformUnrealRotatorToEastSouthUp( + const FRotator& UnrealRotator, + const FVector& UnrealLocation) const { + FMatrix unrealToEsu = + this->ComputeEastSouthUpToUnrealTransformation(UnrealLocation).Inverse(); + return FRotator(unrealToEsu.ToQuat() * UnrealRotator.Quaternion()); +} + +FRotator ACesiumGeoreference::TransformEastSouthUpRotatorToUnreal( + const FRotator& EastSouthUpRotator, + const FVector& UnrealLocation) const { + FMatrix esuToUnreal = + this->ComputeEastSouthUpToUnrealTransformation(UnrealLocation); + return FRotator(esuToUnreal.ToQuat() * EastSouthUpRotator.Quaternion()); +} + +const FMatrix& +ACesiumGeoreference::ComputeUnrealToEarthCenteredEarthFixedTransformation() + const { + return this->_geoTransforms.GetAbsoluteUnrealWorldToEllipsoidCenteredMatrix(); +} + +const FMatrix& +ACesiumGeoreference::ComputeEarthCenteredEarthFixedToUnrealTransformation() + const { + return this->_geoTransforms.GetEllipsoidCenteredToAbsoluteUnrealWorldMatrix(); +} + +FMatrix ACesiumGeoreference::ComputeEastSouthUpToUnrealTransformation( + const FVector& UnrealLocation) const { + glm::dmat4 esuToUe = this->_geoTransforms.ComputeEastSouthUpToUnreal( + glm::dvec3(CesiumActors::getWorldOrigin4D(this)), + glm::dvec3(UnrealLocation.X, UnrealLocation.Y, UnrealLocation.Z)); + return VecMath::createMatrix(esuToUe); +} + +FMatrix ACesiumGeoreference::ComputeUnrealToEastSouthUpTransformation( + const FVector& UnrealLocation) const { + return this->ComputeEastSouthUpToUnrealTransformation(UnrealLocation) + .Inverse(); +} +#if WITH_EDITOR void ACesiumGeoreference::PlaceGeoreferenceOriginHere() { // If this is PIE mode, ignore UWorld* pWorld = this->GetWorld(); @@ -213,52 +364,190 @@ void ACesiumGeoreference::PlaceGeoreferenceOriginHere() { FVector(-originLocation.X, -originLocation.Y, -originLocation.Z)); } -#endif +void ACesiumGeoreference::_showSubLevelLoadRadii() const { + UWorld* world = this->GetWorld(); + if (world->IsGameWorld()) { + return; + } + if (!this->ShowLoadRadii) { + return; + } + const glm::dvec4 originLocation = + glm::dvec4(VecMath::createVector3D(world->OriginLocation), 1.0); + for (const auto& pLevelWeak : + this->SubLevelSwitcher->GetRegisteredSubLevels()) { + ALevelInstance* pLevel = pLevelWeak.Get(); + if (!IsValid(pLevel)) + continue; -namespace { + UCesiumSubLevelComponent* pComponent = + pLevel->FindComponentByClass(); -template -FString longPackageNameToCesiumName(UWorld* pWorld, const TStringish& name) { - FString levelName = FPackageName::GetShortName(name); - levelName.RemoveFromStart(pWorld->StreamingLevelsPrefix); - return levelName; -} + glm::dvec3 levelECEF = + _geoTransforms.TransformLongitudeLatitudeHeightToEcef(glm::dvec3( + pComponent->GetOriginLongitude(), + pComponent->GetOriginLatitude(), + pComponent->GetOriginHeight())); -} // namespace + FVector center = + this->TransformLongitudeLatitudeHeightPositionToUnreal(FVector( + pComponent->GetOriginLongitude(), + pComponent->GetOriginLatitude(), + pComponent->GetOriginHeight())); + center = GetActorTransform().TransformPosition(center); -#if WITH_EDITOR -PRAGMA_DISABLE_DEPRECATION_WARNINGS -void ACesiumGeoreference::_createSubLevelsFromWorldComposition() { - UWorld* pWorld = this->GetWorld(); - if (!IsValid(pWorld)) { - // This happens for the georeference that is shown in the - // content browser. Might omit this message. - UE_LOG( - LogCesium, - Verbose, - TEXT( - "Georeference is not spawned in world: %s, skipping _updateCesiumSubLevels"), - *this->GetFullName()); - return; + DrawDebugSphere( + world, + center, + 100.0 * pComponent->GetLoadRadius() * GetActorScale3D().GetMax(), + 100, + FColor::Blue); } +} +#endif // WITH_EDITOR - if (this->CesiumSubLevels_DEPRECATED.IsEmpty() || - !this->_shouldManageSubLevels()) - return; +bool ACesiumGeoreference::ShouldTickIfViewportsOnly() const { return true; } - this->Modify(); +void ACesiumGeoreference::Tick(float DeltaTime) { + Super::Tick(DeltaTime); - // Convert old-style sub-levels (using World Composition) to new style - // sub-levels (level instances) - UWorldComposition::FTilesList& allLevels = - pWorld->WorldComposition->GetTilesList(); +#if WITH_EDITOR + _showSubLevelLoadRadii(); +#endif - ALevelInstance* pActiveSubLevel = nullptr; + if (this->_shouldManageSubLevels()) { + _updateSublevelState(); + } +} - for (const FWorldCompositionTile& level : allLevels) { - FString levelName = longPackageNameToCesiumName(pWorld, level.PackageName); +void ACesiumGeoreference::Serialize(FArchive& Ar) { + Super::Serialize(Ar); - // Check if the level is already known + // Recompute derived values on load. + if (Ar.IsLoading()) { + this->_updateGeoTransforms(); + } +} + +void ACesiumGeoreference::BeginPlay() { + Super::BeginPlay(); + + PrimaryActorTick.TickGroup = TG_PrePhysics; + + UWorld* pWorld = this->GetWorld(); + if (!pWorld) { + UE_LOG( + LogCesium, + Warning, + TEXT("CesiumGeoreference does not have a World in BeginPlay.")); + return; + } + + if (!this->SubLevelCamera) { + // Find the first player's camera manager + APlayerController* pPlayerController = pWorld->GetFirstPlayerController(); + if (pPlayerController) { + this->SubLevelCamera = pPlayerController->PlayerCameraManager; + } + + if (!this->SubLevelCamera) { + UE_LOG( + LogCesium, + Warning, + TEXT( + "CesiumGeoreference could not find a FirstPlayerController or a corresponding PlayerCameraManager.")); + } + } + + UpdateGeoreference(); +} + +/** In case the CesiumGeoreference gets spawned at run time, instead of design + * time, ensure that frames are updated */ +void ACesiumGeoreference::OnConstruction(const FTransform& Transform) { + Super::OnConstruction(Transform); + + UE_LOG( + LogCesium, + Verbose, + TEXT("Called OnConstruction on actor %s"), + *this->GetName()); + + this->UpdateGeoreference(); +} + +void ACesiumGeoreference::PostLoad() { + Super::PostLoad(); + +#if WITH_EDITOR + if (GEditor && IsValid(this->GetWorld()) && + IsValid(this->GetWorld()->WorldComposition) && + !this->GetWorld()->IsGameWorld()) { + this->_createSubLevelsFromWorldComposition(); + } +#endif // WITH_EDITOR +} + +#if WITH_EDITOR +void ACesiumGeoreference::PostEditChangeProperty(FPropertyChangedEvent& event) { + Super::PostEditChangeProperty(event); + + if (!event.Property) { + return; + } + + FName propertyName = event.Property->GetFName(); + + CESIUM_POST_EDIT_CHANGE(propertyName, ACesiumGeoreference, OriginPlacement); + CESIUM_POST_EDIT_CHANGE(propertyName, ACesiumGeoreference, OriginLongitude); + CESIUM_POST_EDIT_CHANGE(propertyName, ACesiumGeoreference, OriginLatitude); + CESIUM_POST_EDIT_CHANGE(propertyName, ACesiumGeoreference, OriginHeight); + CESIUM_POST_EDIT_CHANGE(propertyName, ACesiumGeoreference, Scale); +} + +namespace { + +template +FString longPackageNameToCesiumName(UWorld* pWorld, const TStringish& name) { + FString levelName = FPackageName::GetShortName(name); + levelName.RemoveFromStart(pWorld->StreamingLevelsPrefix); + return levelName; +} + +} // namespace + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void ACesiumGeoreference::_createSubLevelsFromWorldComposition() { + UWorld* pWorld = this->GetWorld(); + if (!IsValid(pWorld)) { + // This happens for the georeference that is shown in the + // content browser. Might omit this message. + UE_LOG( + LogCesium, + Verbose, + TEXT( + "Georeference is not spawned in world: %s, skipping _updateCesiumSubLevels"), + *this->GetFullName()); + return; + } + + if (this->CesiumSubLevels_DEPRECATED.IsEmpty() || + !this->_shouldManageSubLevels()) + return; + + this->Modify(); + + // Convert old-style sub-levels (using World Composition) to new style + // sub-levels (level instances) + UWorldComposition::FTilesList& allLevels = + pWorld->WorldComposition->GetTilesList(); + + ALevelInstance* pActiveSubLevel = nullptr; + + for (const FWorldCompositionTile& level : allLevels) { + FString levelName = longPackageNameToCesiumName(pWorld, level.PackageName); + + // Check if the level is already known FCesiumSubLevel* pFound = this->CesiumSubLevels_DEPRECATED.FindByPredicate( [&levelName](FCesiumSubLevel& subLevel) { return levelName.Equals(subLevel.LevelName); @@ -334,160 +623,39 @@ void ACesiumGeoreference::_createSubLevelsFromWorldComposition() { "Cesium sub-levels based on World Composition have been converted to Level Instances. Save the level to keep these changes. We recommend disabling World Composition in the World Settings, as it is now obsolete.")); } PRAGMA_ENABLE_DEPRECATION_WARNINGS -#endif - -FVector ACesiumGeoreference::GetOriginLongitudeLatitudeHeight() const { - return FVector(OriginLongitude, OriginLatitude, OriginHeight); -} - -void ACesiumGeoreference::SetOriginLongitudeLatitudeHeight( - const FVector& targetLongitudeLatitudeHeight) { - this->_setGeoreferenceOrigin( - targetLongitudeLatitudeHeight.X, - targetLongitudeLatitudeHeight.Y, - targetLongitudeLatitudeHeight.Z); -} - -void ACesiumGeoreference::SetOriginEarthCenteredEarthFixed( - const FVector& TargetEarthCenteredEarthFixed) { - this->SetOriginLongitudeLatitudeHeight(VecMath::createVector( - _geoTransforms.TransformEcefToLongitudeLatitudeHeight( - VecMath::createVector3D(TargetEarthCenteredEarthFixed)))); -} - -EOriginPlacement ACesiumGeoreference::GetOriginPlacement() const { - return this->OriginPlacement; -} - -void ACesiumGeoreference::SetOriginPlacement(EOriginPlacement NewValue) { - this->OriginPlacement = NewValue; - this->UpdateGeoreference(); -} - -double ACesiumGeoreference::GetOriginLatitude() const { - return this->OriginLatitude; -} - -void ACesiumGeoreference::SetOriginLatitude(double NewValue) { - this->OriginLatitude = NewValue; - this->UpdateGeoreference(); -} - -double ACesiumGeoreference::GetOriginLongitude() const { - return this->OriginLongitude; -} - -void ACesiumGeoreference::SetOriginLongitude(double NewValue) { - this->OriginLongitude = NewValue; - this->UpdateGeoreference(); -} - -double ACesiumGeoreference::GetOriginHeight() const { - return this->OriginHeight; -} - -void ACesiumGeoreference::SetOriginHeight(double NewValue) { - this->OriginHeight = NewValue; - this->UpdateGeoreference(); -} - -double ACesiumGeoreference::GetScale() const { return this->Scale; } - -void ACesiumGeoreference::SetScale(double NewValue) { - if (NewValue < 1e-6) { - this->Scale = 1e-6; - } else { - this->Scale = NewValue; - } - this->UpdateGeoreference(); -} - -APlayerCameraManager* ACesiumGeoreference::GetSubLevelCamera() const { - return this->SubLevelCamera; -} - -void ACesiumGeoreference::SetSubLevelCamera(APlayerCameraManager* NewValue) { - this->SubLevelCamera = NewValue; -} - -bool ACesiumGeoreference::GetShowLoadRadii() const { - return this->ShowLoadRadii; -} - -void ACesiumGeoreference::SetShowLoadRadii(bool NewValue) { - this->ShowLoadRadii = NewValue; -} - -const FMatrix& -ACesiumGeoreference::GetUnrealToEarthCenteredEarthFixedTransformation() const { - return this->_geoTransforms.GetAbsoluteUnrealWorldToEllipsoidCenteredMatrix(); -} +#endif // WITH_EDITOR -const FMatrix& -ACesiumGeoreference::GetEarthCenteredEarthFixedToUnrealTransformation() const { - return this->_geoTransforms.GetEllipsoidCenteredToAbsoluteUnrealWorldMatrix(); +FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightToEcef( + const FVector& longitudeLatitudeHeight) const { + return UCesiumWgs84Ellipsoid:: + LongitudeLatitudeHeightToEarthCenteredEarthFixed(longitudeLatitudeHeight); } -// Called when the game starts or when spawned -void ACesiumGeoreference::BeginPlay() { - Super::BeginPlay(); - - PrimaryActorTick.TickGroup = TG_PrePhysics; - - UWorld* pWorld = this->GetWorld(); - if (!pWorld) { - UE_LOG( - LogCesium, - Warning, - TEXT("CesiumGeoreference does not have a World in BeginPlay.")); - return; - } - - if (!this->SubLevelCamera) { - // Find the first player's camera manager - APlayerController* pPlayerController = pWorld->GetFirstPlayerController(); - if (pPlayerController) { - this->SubLevelCamera = pPlayerController->PlayerCameraManager; - } - - if (!this->SubLevelCamera) { - UE_LOG( - LogCesium, - Warning, - TEXT( - "CesiumGeoreference could not find a FirstPlayerController or a corresponding PlayerCameraManager.")); - } - } - - UpdateGeoreference(); +FVector ACesiumGeoreference::TransformEcefToLongitudeLatitudeHeight( + const FVector& ecef) const { + return UCesiumWgs84Ellipsoid:: + EarthCenteredEarthFixedToLongitudeLatitudeHeight(ecef); } -/** In case the CesiumGeoreference gets spawned at run time, instead of design - * time, ensure that frames are updated */ -void ACesiumGeoreference::OnConstruction(const FTransform& Transform) { - Super::OnConstruction(Transform); - - UE_LOG( - LogCesium, - Verbose, - TEXT("Called OnConstruction on actor %s"), - *this->GetName()); - - this->UpdateGeoreference(); +FMatrix +ACesiumGeoreference::ComputeEastNorthUpToEcef(const FVector& ecef) const { + glm::dmat3 enuToEcef = this->_geoTransforms.ComputeEastNorthUpToEcef( + glm::dvec3(ecef.X, ecef.Y, ecef.Z)); + return VecMath::createMatrix(enuToEcef); } -void ACesiumGeoreference::BeginDestroy() { Super::BeginDestroy(); } +ACesiumGeoreference::ACesiumGeoreference() : AActor(), _geoTransforms() { + PrimaryActorTick.bCanEverTick = true; -void ACesiumGeoreference::PostLoad() { - Super::PostLoad(); + this->Root = CreateDefaultSubobject(TEXT("Root")); + this->RootComponent = this->Root; #if WITH_EDITOR - if (GEditor && IsValid(this->GetWorld()) && - IsValid(this->GetWorld()->WorldComposition) && - !this->GetWorld()->IsGameWorld()) { - this->_createSubLevelsFromWorldComposition(); - } + this->SetIsSpatiallyLoaded(false); #endif + this->SubLevelSwitcher = + CreateDefaultSubobject( + "SubLevelSwitcher"); } void ACesiumGeoreference::UpdateGeoreference() { @@ -519,98 +687,19 @@ void ACesiumGeoreference::UpdateGeoreference() { OnGeoreferenceUpdated.Broadcast(); } -#if WITH_EDITOR -void ACesiumGeoreference::PostEditChangeProperty(FPropertyChangedEvent& event) { - Super::PostEditChangeProperty(event); - - if (!event.Property) { - return; - } - - FName propertyName = event.Property->GetFName(); - - if (propertyName == - GET_MEMBER_NAME_CHECKED(ACesiumGeoreference, OriginPlacement) || - propertyName == - GET_MEMBER_NAME_CHECKED(ACesiumGeoreference, OriginLongitude) || - propertyName == - GET_MEMBER_NAME_CHECKED(ACesiumGeoreference, OriginLatitude) || - propertyName == - GET_MEMBER_NAME_CHECKED(ACesiumGeoreference, OriginHeight)) { - this->UpdateGeoreference(); - return; - } else if ( - propertyName == GET_MEMBER_NAME_CHECKED(ACesiumGeoreference, Scale)) { - this->SetScale(Scale); - } -} -#endif - -bool ACesiumGeoreference::ShouldTickIfViewportsOnly() const { return true; } - -#if WITH_EDITOR -void ACesiumGeoreference::_showSubLevelLoadRadii() const { - UWorld* world = this->GetWorld(); - if (world->IsGameWorld()) { - return; - } - if (!this->ShowLoadRadii) { - return; - } - const glm::dvec4 originLocation = - glm::dvec4(VecMath::createVector3D(world->OriginLocation), 1.0); - for (const auto& pLevelWeak : - this->SubLevelSwitcher->GetRegisteredSubLevels()) { - ALevelInstance* pLevel = pLevelWeak.Get(); - if (!IsValid(pLevel)) - continue; - - UCesiumSubLevelComponent* pComponent = - pLevel->FindComponentByClass(); - - glm::dvec3 levelECEF = - _geoTransforms.TransformLongitudeLatitudeHeightToEcef(glm::dvec3( - pComponent->GetOriginLongitude(), - pComponent->GetOriginLatitude(), - pComponent->GetOriginHeight())); - - FVector center = - this->TransformLongitudeLatitudeHeightPositionToUnreal(FVector( - pComponent->GetOriginLongitude(), - pComponent->GetOriginLatitude(), - pComponent->GetOriginHeight())); - center = GetActorTransform().TransformPosition(center); +FName ACesiumGeoreference::DEFAULT_GEOREFERENCE_TAG = + FName("DEFAULT_GEOREFERENCE"); - DrawDebugSphere( - world, - center, - 100.0 * pComponent->GetLoadRadius() * GetActorScale3D().GetMax(), - 100, - FColor::Blue); - } -} -#endif // WITH_EDITOR +void ACesiumGeoreference::_setGeoreferenceOrigin( + double targetLongitude, + double targetLatitude, + double targetHeight) { + this->OriginLongitude = targetLongitude; + this->OriginLatitude = targetLatitude; + this->OriginHeight = targetHeight; -namespace { -/** - * @brief Clamping addition. - * - * Returns the sum of the given values, clamping the result to - * the minimum/maximum value that can be represented as a 32 bit - * signed integer. - * - * @param f The floating point value - * @param i The integer value - * @return The clamped result - */ -int32 clampedAdd(double f, int32 i) { - int64 sum = static_cast(f) + static_cast(i); - int64 min = static_cast(TNumericLimits::Min()); - int64 max = static_cast(TNumericLimits::Max()); - int64 clamped = FMath::Max(min, FMath::Min(max, sum)); - return static_cast(clamped); + this->UpdateGeoreference(); } -} // namespace bool ACesiumGeoreference::_updateSublevelState() { const TArray>& sublevels = @@ -693,134 +782,6 @@ void ACesiumGeoreference::_updateGeoTransforms() { this->Scale / 100.0); } -void ACesiumGeoreference::Tick(float DeltaTime) { - Super::Tick(DeltaTime); - -#if WITH_EDITOR - _showSubLevelLoadRadii(); -#endif - - if (this->_shouldManageSubLevels()) { - _updateSublevelState(); - } -} - -void ACesiumGeoreference::Serialize(FArchive& Ar) { - Super::Serialize(Ar); - - // Recompute derived values on load. - if (Ar.IsLoading()) { - this->_updateGeoTransforms(); - } -} - -/** - * Useful Conversion Functions - */ - -FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightToEcef( - const FVector& longitudeLatitudeHeight) const { - return UCesiumWgs84Ellipsoid:: - LongitudeLatitudeHeightToEarthCenteredEarthFixed(longitudeLatitudeHeight); -} - -FVector ACesiumGeoreference::TransformEcefToLongitudeLatitudeHeight( - const FVector& ecef) const { - return UCesiumWgs84Ellipsoid:: - EarthCenteredEarthFixedToLongitudeLatitudeHeight(ecef); -} - -FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightPositionToUnreal( - const FVector& LongitudeLatitudeHeight) const { - glm::dvec3 ue = this->_geoTransforms.TransformLongitudeLatitudeHeightToUnreal( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - VecMath::createVector3D(LongitudeLatitudeHeight)); - return FVector(ue.x, ue.y, ue.z); -} - -FVector ACesiumGeoreference::TransformUnrealPositionToLongitudeLatitudeHeight( - const FVector& UnrealPosition) const { - glm::dvec3 llh = - this->_geoTransforms.TransformUnrealToLongitudeLatitudeHeight( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - VecMath::createVector3D(UnrealPosition)); - return FVector(llh.x, llh.y, llh.z); -} - -FVector ACesiumGeoreference::TransformEarthCenteredEarthFixedPositionToUnreal( - const FVector& EarthCenteredEarthFixedPosition) const { - glm::dvec3 ue = this->_geoTransforms.TransformEcefToUnreal( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - VecMath::createVector3D(EarthCenteredEarthFixedPosition)); - return FVector(ue.x, ue.y, ue.z); -} - -FVector ACesiumGeoreference::TransformUnrealPositionToEarthCenteredEarthFixed( - const FVector& UnrealPosition) const { - glm::dvec3 ecef = this->_geoTransforms.TransformUnrealToEcef( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - glm::dvec3(UnrealPosition.X, UnrealPosition.Y, UnrealPosition.Z)); - return FVector(ecef.x, ecef.y, ecef.z); -} - -FVector ACesiumGeoreference::TransformEarthCenteredEarthFixedDirectionToUnreal( - const FVector& EarthCenteredEarthFixedDirection) const { - return this->_geoTransforms.GetEllipsoidCenteredToAbsoluteUnrealWorldMatrix() - .TransformVector(EarthCenteredEarthFixedDirection); -} - -FVector ACesiumGeoreference::TransformUnrealDirectionToEarthCenteredEarthFixed( - const FVector& UnrealDirection) const { - return this->_geoTransforms.GetAbsoluteUnrealWorldToEllipsoidCenteredMatrix() - .TransformVector(UnrealDirection); -} - -FRotator ACesiumGeoreference::TransformUnrealRotatorToEastSouthUp( - const FRotator& UnrealRotator, - const FVector& UnrealLocation) const { - FMatrix unrealToEsu = - this->ComputeEastSouthUpToUnrealTransformation(UnrealLocation).Inverse(); - return FRotator(unrealToEsu.ToQuat() * UnrealRotator.Quaternion()); -} - -FRotator ACesiumGeoreference::TransformEastSouthUpRotatorToUnreal( - const FRotator& EastSouthUpRotator, - const FVector& UnrealLocation) const { - FMatrix esuToUnreal = - this->ComputeEastSouthUpToUnrealTransformation(UnrealLocation); - return FRotator(esuToUnreal.ToQuat() * EastSouthUpRotator.Quaternion()); -} - -FMatrix ACesiumGeoreference::ComputeEastSouthUpToUnrealTransformation( - const FVector& UnrealLocation) const { - glm::dmat4 esuToUe = this->_geoTransforms.ComputeEastSouthUpToUnreal( - glm::dvec3(CesiumActors::getWorldOrigin4D(this)), - glm::dvec3(UnrealLocation.X, UnrealLocation.Y, UnrealLocation.Z)); - return VecMath::createMatrix(esuToUe); -} - -FMatrix -ACesiumGeoreference::ComputeEastNorthUpToEcef(const FVector& ecef) const { - glm::dmat3 enuToEcef = this->_geoTransforms.ComputeEastNorthUpToEcef( - glm::dvec3(ecef.X, ecef.Y, ecef.Z)); - return VecMath::createMatrix(enuToEcef); -} - -/** - * Private Helper Functions - */ - -void ACesiumGeoreference::_setGeoreferenceOrigin( - double targetLongitude, - double targetLatitude, - double targetHeight) { - this->OriginLongitude = targetLongitude; - this->OriginLatitude = targetLatitude; - this->OriginHeight = targetHeight; - - this->UpdateGeoreference(); -} - bool ACesiumGeoreference::_shouldManageSubLevels() const { // Only a Georeference in the PersistentLevel should manage sub-levels. return this->GetLevel()->IsPersistentLevel(); diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index 7b71e3a79..6c2a67035 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -3,14 +3,11 @@ #pragma once #include "CesiumSubLevel.h" -#include "Components/ActorComponent.h" #include "Containers/UnrealString.h" #include "CoreMinimal.h" #include "GameFramework/Actor.h" #include "GeoTransforms.h" #include "OriginPlacement.h" -#include "UObject/WeakInterfacePtr.h" -#include #include "CesiumGeoreference.generated.h" class APlayerCameraManager; @@ -180,36 +177,6 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { bool ShowLoadRadii = true; #endif - /** - * The transformation matrix from the Unreal coordinate system to the - * Earth-Centered, Earth-Fixed (ECEF) coordinate system. The Unreal - * coordinates should generally not be interpreted as Unreal _world_ - * coordinates, but rather a coordinate system based on some parent Actor's - * reference frame as defined by its transform. This way, the chain of Unreal - * transforms places and orients the "globe" in the Unreal world. - */ - UPROPERTY( - BlueprintReadOnly, - BlueprintGetter = GetUnrealToEarthCenteredEarthFixedTransformation, - Category = "Cesium", - meta = (AllowPrivateAccess)) - FMatrix UnrealToEarthCenteredEarthFixedTransformation; - - /** - * The transformation matrix from the Earth-Centered, Earth-Fixed (ECEF) - * coordinate system to the Unreal coordinate system. The Unreal coordinates - * should generally not be interpreted as Unreal _world_ coordinates, but - * rather a coordinate system based on some parent Actor's reference frame as - * defined by its transform. This way, the chain of Unreal transforms places - * and orients the "globe" in the Unreal world. - */ - UPROPERTY( - BlueprintReadOnly, - BlueprintGetter = GetEarthCenteredEarthFixedToUnrealTransformation, - Category = "Cesium", - meta = (AllowPrivateAccess)) - FMatrix EarthCenteredEarthFixedToUnrealTransformation; - #pragma endregion #pragma region PropertyAccessors @@ -235,11 +202,23 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { void SetOriginLongitudeLatitudeHeight( const FVector& TargetLongitudeLatitudeHeight); + /** + * Returns the georeference origin position as an FVector in Earth-Centerd, + * Earth-Fixed (ECEF) coordinates. Only valid if the placement type is + * Cartographic Origin (i.e. Longitude / Latitude / Height). + */ + UFUNCTION(BlueprintPure, Category = "Cesium") + FVector GetOriginEarthCenteredEarthFixed() const; + /** * This aligns the specified Earth-Centered, Earth-Fixed (ECEF) coordinates to * the Unreal origin. That is, it moves the globe so that these coordinates * exactly fall on the origin. Only valid if the placement type is - * Cartographic Origin (i.e. Longitude / Latitude / Height). + * Cartographic Origin (i.e. Longitude / Latitude / Height). Note that if the + * provided ECEF coordiantes are near the center of the Earth so that + * Longitude, Latitude, and Height are undefined, this function will instead + * place the origin at 0 degrees longitude, 0 degrees latitude, and 0 meters + * height about the ellipsoid. */ UFUNCTION(BlueprintCallable, Category = "Cesium") void SetOriginEarthCenteredEarthFixed( @@ -297,12 +276,6 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { UFUNCTION(BlueprintSetter) void SetShowLoadRadii(bool NewValue); - UFUNCTION(BlueprintGetter) - const FMatrix& GetUnrealToEarthCenteredEarthFixedTransformation() const; - - UFUNCTION(BlueprintGetter) - const FMatrix& GetEarthCenteredEarthFixedToUnrealTransformation() const; - #pragma endregion #pragma region Transformation Functions @@ -447,6 +420,34 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { const FRotator& EastSouthUpRotator, const FVector& UnrealLocation) const; + /** + * Computes the transformation matrix from the Unreal coordinate system to the + * Earth-Centered, Earth-Fixed (ECEF) coordinate system. The Unreal + * coordinates should generally not be interpreted as Unreal _world_ + * coordinates, but rather a coordinate system based on some parent Actor's + * reference frame as defined by its transform. This way, the chain of Unreal + * transforms places and orients the "globe" in the Unreal world. + */ + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "UnrealToEarthCenteredEarthFixedMatrix")) + const FMatrix& ComputeUnrealToEarthCenteredEarthFixedTransformation() const; + + /** + * Computes the transformation matrix from the Earth-Centered, Earth-Fixed + * (ECEF) coordinate system to the Unreal coordinate system. The Unreal + * coordinates should generally not be interpreted as Unreal _world_ + * coordinates, but rather a coordinate system based on some parent Actor's + * reference frame as defined by its transform. This way, the chain of Unreal + * transforms places and orients the "globe" in the Unreal world. + */ + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "EarthCenteredEarthFixedToUnrealMatrix")) + const FMatrix& ComputeEarthCenteredEarthFixedToUnrealTransformation() const; + /** * Computes the matrix that transforms from an East-South-Up frame centered at * a given location to the Unreal frame. @@ -470,6 +471,29 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { FMatrix ComputeEastSouthUpToUnrealTransformation(const FVector& UnrealLocation) const; + /** + * Computes the matrix that transforms from the Unreal frame to an + * East-South-Up frame centered at a given location. + * + * In an East-South-Up frame, +X points East, +Y points South, and +Z points + * Up. However, the directions of "East", "South", and "Up" in Unreal or ECEF + * coordinates vary depending on where on the globe we are talking about. + * That is why this function takes a location, expressed in Unreal + * coordinates, that defines the origin of the East-South-Up frame of + * interest. + * + * The Unreal location and the resulting matrix should generally not be + * relative to the Unreal _world_, but rather be expressed in some parent + * Actor's reference frame as defined by its Transform. This way, the chain of + * Unreal transforms places and orients the "globe" in the Unreal world. + */ + UFUNCTION( + BlueprintPure, + Category = "Cesium", + meta = (ReturnDisplayName = "UnrealToEastSouthUpMatrix")) + FMatrix + ComputeUnrealToEastSouthUpTransformation(const FVector& UnrealLocation) const; + #pragma endregion #pragma region Editor Support @@ -517,7 +541,6 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { virtual void Serialize(FArchive& Ar) override; virtual void BeginPlay() override; virtual void OnConstruction(const FTransform& Transform) override; - virtual void BeginDestroy() override; virtual void PostLoad() override; #if WITH_EDITOR @@ -642,14 +665,6 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { */ void _updateGeoTransforms(); - /** - * @brief Finds the ULevelStreaming with given name. - * - * @returns The ULevelStreaming, or nullptr if the provided name does not - * exist. - */ - ULevelStreaming* _findLevelStreamingByName(const FString& name); - /** * Determines if this Georeference should manage sub-level switching. * From 7d05b44cc775eb09277601b0faacc82c69e37e49 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Fri, 28 Jul 2023 16:01:22 +1000 Subject: [PATCH 32/37] Add basic reference doc generation with Doxygen. --- .gitignore | 1 + Documentation/Doxyfile | 2816 +++++++++++++++++ .../CesiumRuntime/Public/CesiumGeoreference.h | 78 +- package.json | 6 +- 4 files changed, 2891 insertions(+), 10 deletions(-) create mode 100644 Documentation/Doxyfile diff --git a/.gitignore b/.gitignore index 85cfe3bbe..f1911b37f 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ ThirdParty/build Source/ThirdParty node_modules extern/build-helper.sh +Documentation/Reference diff --git a/Documentation/Doxyfile b/Documentation/Doxyfile new file mode 100644 index 000000000..c8440009d --- /dev/null +++ b/Documentation/Doxyfile @@ -0,0 +1,2816 @@ +# Doxyfile 1.9.7 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). +# +# Note: +# +# Use doxygen to compare the used configuration file with the template +# configuration file: +# doxygen -x [configFile] +# Use doxygen to compare the used configuration file with the template +# configuration file without replacing the environment variables or CMake type +# replacement variables: +# doxygen -x_noenv [configFile] + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "Cesium for Unreal" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = "Unlock the 3D geospatial ecosystem in Unreal Engine with real-world 3D content and a high accuracy full-scale WGS84 globe." + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = ../Content/Cesium-128x128.png + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = ./Documentation/Reference + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096 +# sub-directories (in 2 levels) under the output directory of each output format +# and will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to +# control the number of sub-directories. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# Controls the number of sub-directories that will be created when +# CREATE_SUBDIRS tag is set to YES. Level 0 represents 16 directories, and every +# level increment doubles the number of directories, resulting in 4096 +# directories at level 8 which is the default and also the maximum value. The +# sub-directories are organized in 2 levels, the first level always has a fixed +# number of 16 directories. +# Minimum value: 0, maximum value: 8, default value: 8. +# This tag requires that the tag CREATE_SUBDIRS is set to YES. + +CREATE_SUBDIRS_LEVEL = 8 + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Bulgarian, +# Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, English +# (United States), Esperanto, Farsi (Persian), Finnish, French, German, Greek, +# Hindi, Hungarian, Indonesian, Italian, Japanese, Japanese-en (Japanese with +# English messages), Korean, Korean-en (Korean with English messages), Latvian, +# Lithuanian, Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, +# Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, +# Swedish, Turkish, Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = YES + +# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line +# such as +# /*************** +# as being the beginning of a Javadoc-style comment "banner". If set to NO, the +# Javadoc-style will behave just like regular comments and it will not be +# interpreted by doxygen. +# The default value is: NO. + +JAVADOC_BANNER = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# By default Python docstrings are displayed as preformatted text and doxygen's +# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the +# doxygen's special commands can be used and the contents of the docstring +# documentation blocks is shown as doxygen documentation. +# The default value is: YES. + +PYTHON_DOCSTRING = YES + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:^^" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". Note that you cannot put \n's in the value part of an alias +# to insert newlines (in the resulting output). You can put ^^ in the value part +# of an alias to insert a newline as if a physical newline was in the original +# file. When you need a literal { or } or , in the value part of an alias you +# have to escape them by means of a backslash (\), this can lead to conflicts +# with the commands \{ and \} for these it is advised to use the version @{ and +# @} or use a double escape (\\{ and \\}) + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice, +# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. When specifying no_extension you should add +# * to the FILE_PATTERNS. +# +# Note see also the list of default file extension mappings. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See https://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 5. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 5 + +# The MARKDOWN_ID_STYLE tag can be used to specify the algorithm used to +# generate identifiers for the Markdown headings. Note: Every identifier is +# unique. +# Possible values are: DOXYGEN Use a fixed 'autotoc_md' string followed by a +# sequence number starting at 0. and GITHUB Use the lower case version of title +# with any whitespace replaced by '-' and punctations characters removed.. +# The default value is: DOXYGEN. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +MARKDOWN_ID_STYLE = DOXYGEN + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +# The NUM_PROC_THREADS specifies the number of threads doxygen is allowed to use +# during processing. When set to 0 doxygen will based this on the number of +# cores available in the system. You can set it explicitly to a value larger +# than 0 to get more control over the balance between CPU load and processing +# speed. At this moment only the input processing can be done using multiple +# threads. Since this is still an experimental feature the default is set to 1, +# which effectively disables parallel processing. Please report any issues you +# encounter. Generating dot graphs in parallel is controlled by the +# DOT_NUM_THREADS setting. +# Minimum value: 0, maximum value: 32, default value: 1. + +NUM_PROC_THREADS = 1 + +# If the TIMESTAMP tag is set different from NO then each generated page will +# contain the date or date and time when the page was generated. Setting this to +# NO can help when comparing the output of multiple runs. +# Possible values are: YES, NO, DATETIME and DATE. +# The default value is: NO. + +TIMESTAMP = NO + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual +# methods of a class will be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIV_VIRTUAL = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If this flag is set to YES, the name of an unnamed parameter in a declaration +# will be determined by the corresponding definition. By default unnamed +# parameters remain unnamed in the output. +# The default value is: YES. + +RESOLVE_UNNAMED_PARAMS = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# will also hide undocumented C++ concepts if enabled. This option has no effect +# if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# declarations. If set to NO, these declarations will be included in the +# documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# With the correct setting of option CASE_SENSE_NAMES doxygen will better be +# able to match the capabilities of the underlying filesystem. In case the +# filesystem is case sensitive (i.e. it supports files in the same directory +# whose names only differ in casing), the option must be set to YES to properly +# deal with such files in case they appear in the input. For filesystems that +# are not case sensitive the option should be set to NO to properly deal with +# output files written for symbols that only differ in casing, such as for two +# classes, one named CLASS and the other named Class, and to also support +# references to files without having to specify the exact matching casing. On +# Windows (including Cygwin) and MacOS, users should typically set this option +# to NO, whereas on Linux or other Unix flavors it should typically be set to +# YES. +# Possible values are: SYSTEM, NO and YES. +# The default value is: SYSTEM. + +CASE_SENSE_NAMES = SYSTEM + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class +# will show which file needs to be included to use the class. +# The default value is: YES. + +SHOW_HEADERFILE = YES + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. See also section "Changing the +# layout of pages" for information. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as documenting some parameters in +# a documented function twice, or documenting parameters that don't exist or +# using markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# If WARN_IF_INCOMPLETE_DOC is set to YES, doxygen will warn about incomplete +# function parameter documentation. If set to NO, doxygen will accept that some +# parameters have no documentation without warning. +# The default value is: YES. + +WARN_IF_INCOMPLETE_DOC = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong parameter +# documentation, but not about the absence of documentation. If EXTRACT_ALL is +# set to YES then this flag will automatically be disabled. See also +# WARN_IF_INCOMPLETE_DOC +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If WARN_IF_UNDOC_ENUM_VAL option is set to YES, doxygen will warn about +# undocumented enumeration values. If set to NO, doxygen will accept +# undocumented enumeration values. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: NO. + +WARN_IF_UNDOC_ENUM_VAL = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS +# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but +# at the end of the doxygen process doxygen will return with a non-zero status. +# If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS_PRINT then doxygen behaves +# like FAIL_ON_WARNINGS but in case no WARN_LOGFILE is defined doxygen will not +# write the warning messages in between other messages but write them at the end +# of a run, in case a WARN_LOGFILE is defined the warning messages will be +# besides being in the defined file also be shown at the end of a run, unless +# the WARN_LOGFILE is defined as - i.e. standard output (stdout) in that case +# the behavior will remain as with the setting FAIL_ON_WARNINGS. +# Possible values are: NO, YES, FAIL_ON_WARNINGS and FAIL_ON_WARNINGS_PRINT. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# See also: WARN_LINE_FORMAT +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# In the $text part of the WARN_FORMAT command it is possible that a reference +# to a more specific place is given. To make it easier to jump to this place +# (outside of doxygen) the user can define a custom "cut" / "paste" string. +# Example: +# WARN_LINE_FORMAT = "'vi $file +$line'" +# See also: WARN_FORMAT +# The default value is: at line $line of file $file. + +WARN_LINE_FORMAT = "at line $line of file $file" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). In case the file specified cannot be opened for writing the +# warning and error messages are written to standard error. When as file - is +# specified the warning and error messages are written to standard output +# (stdout). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = ./Source/CesiumRuntime/Public + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: +# https://www.gnu.org/software/libiconv/) for the list of possible encodings. +# See also: INPUT_FILE_ENCODING +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses The INPUT_FILE_ENCODING tag can be used to specify +# character encoding on a per file pattern basis. Doxygen will compare the file +# name with each pattern and apply the encoding instead of the default +# INPUT_ENCODING) if there is a match. The character encodings are a list of the +# form: pattern=encoding (like *.php=ISO-8859-1). See cfg_input_encoding +# "INPUT_ENCODING" for further information on supported encodings. + +INPUT_FILE_ENCODING = + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# Note the list of default checked file patterns might differ from the list of +# default file extension mappings. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.l, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, +# *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C +# comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, +# *.vhdl, *.ucf, *.qsf and *.ice. + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cpp \ + *.c++ \ + *.java \ + *.ii \ + *.ixx \ + *.ipp \ + *.i++ \ + *.inl \ + *.idl \ + *.ddl \ + *.odl \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.l \ + *.cs \ + *.d \ + *.php \ + *.php4 \ + *.php5 \ + *.phtml \ + *.inc \ + *.m \ + *.markdown \ + *.md \ + *.mm \ + *.dox \ + *.py \ + *.pyw \ + *.f90 \ + *.f95 \ + *.f03 \ + *.f08 \ + *.f18 \ + *.f \ + *.for \ + *.vhd \ + *.vhdl \ + *.ucf \ + *.qsf \ + *.ice + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# ANamespace::AClass, ANamespace::*Test + +EXCLUDE_SYMBOLS = CesiumMetadataConversions<* + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that doxygen will use the data processed and written to standard output +# for further processing, therefore nothing else, like debug statements or used +# commands (so in case of a Windows batch file always use @echo OFF), should be +# written to standard output. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +# The Fortran standard specifies that for fixed formatted Fortran code all +# characters from position 72 are to be considered as comment. A common +# extension is to allow longer lines before the automatic comment starts. The +# setting FORTRAN_COMMENT_AFTER will also make it possible that longer lines can +# be processed before the automatic comment starts. +# Minimum value: 7, maximum value: 10000, default value: 72. + +FORTRAN_COMMENT_AFTER = 72 + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# entity all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: +# http://clang.llvm.org/) for more accurate parsing at the cost of reduced +# performance. This can be particularly helpful with template rich C++ code for +# which doxygen's built-in parser lacks the necessary type information. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If the CLANG_ASSISTED_PARSING tag is set to YES and the CLANG_ADD_INC_PATHS +# tag is set to YES then doxygen will add the directory of each input to the +# include path. +# The default value is: YES. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_ADD_INC_PATHS = YES + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +# If clang assisted parsing is enabled you can provide the clang parser with the +# path to the directory containing a file called compile_commands.json. This +# file is the compilation database (see: +# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the +# options used when the source files were built. This is equivalent to +# specifying the -p option to a clang tool, such as clang-check. These options +# will then be passed to the parser. Any options specified with CLANG_OPTIONS +# will be added as well. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. + +CLANG_DATABASE_PATH = + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The IGNORE_PREFIX tag can be used to specify a prefix (or a list of prefixes) +# that should be ignored while generating the index headers. The IGNORE_PREFIX +# tag works for classes, function and member names. The entity will be placed in +# the alphabetical list under the first letter of the entity name that remains +# after removing the prefix. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). +# Note: Since the styling of scrollbars can currently not be overruled in +# Webkit/Chromium, the styling will be left out of the default doxygen.css if +# one or more extra stylesheets have been specified. So if scrollbar +# customization is desired it has to be added explicitly. For an example see the +# documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output +# should be rendered with a dark or light theme. +# Possible values are: LIGHT always generate light mode output, DARK always +# generate dark mode output, AUTO_LIGHT automatically set the mode according to +# the user preference, use light mode if no preference is set (the default), +# AUTO_DARK automatically set the mode according to the user preference, use +# dark mode if no preference is set and TOGGLE allow to user to switch between +# light and dark mode via a button. +# The default value is: AUTO_LIGHT. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE = AUTO_LIGHT + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a color-wheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use gray-scales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via JavaScript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have JavaScript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: +# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To +# create a documentation set, doxygen will generate a Makefile in the HTML +# output directory. Running make will produce the docset in that directory and +# running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag determines the URL of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDURL = + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# on Windows. In the beginning of 2021 Microsoft took the original page, with +# a.o. the download links, offline the HTML help workshop was already many years +# in maintenance mode). You can download the HTML help workshop from the web +# archives at Installation executable (see: +# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo +# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe). +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the main .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# The SITEMAP_URL tag is used to specify the full URL of the place where the +# generated documentation will be placed on the server by the user during the +# deployment of the documentation. The generated sitemap is called sitemap.xml +# and placed on the directory specified by HTML_OUTPUT. In case no SITEMAP_URL +# is specified no sitemap is generated. For information about the sitemap +# protocol see https://www.sitemaps.org +# This tag requires that the tag GENERATE_HTML is set to YES. + +SITEMAP_URL = + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location (absolute path +# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to +# run qhelpgenerator on the generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine tune the look of the index (see "Fine-tuning the output"). As an +# example, the default style sheet generated by doxygen has an example that +# shows how to put an image at the root of the tree instead of the PROJECT_NAME. +# Since the tree basically has the same information as the tab index, you could +# consider setting DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the +# FULL_SIDEBAR option determines if the side bar is limited to only the treeview +# area (value NO) or if it should extend to the full height of the window (value +# YES). Setting this to YES gives a layout similar to +# https://docs.readthedocs.io with more room for contents, but less room for the +# project logo, title, and description. If either GENERATE_TREEVIEW or +# DISABLE_INDEX is set to NO, this option has no effect. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FULL_SIDEBAR = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# If the OBFUSCATE_EMAILS tag is set to YES, doxygen will obfuscate email +# addresses. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +OBFUSCATE_EMAILS = YES + +# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png (the default) and svg (looks nicer but requires the +# pdf2svg or inkscape tool). +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = png + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands +# to create new LaTeX commands to be used in formulas as building blocks. See +# the section "Including formulas" for details. + +FORMULA_MACROFILE = + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side JavaScript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# With MATHJAX_VERSION it is possible to specify the MathJax version to be used. +# Note that the different versions of MathJax have different requirements with +# regards to the different settings, so it is possible that also other MathJax +# settings have to be changed when switching between the different MathJax +# versions. +# Possible values are: MathJax_2 and MathJax_3. +# The default value is: MathJax_2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_VERSION = MathJax_2 + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. For more details about the output format see MathJax +# version 2 (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3 +# (see: +# http://docs.mathjax.org/en/latest/web/components/output.html). +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility. This is the name for Mathjax version 2, for MathJax version 3 +# this will be translated into chtml), NativeMML (i.e. MathML. Only supported +# for NathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This +# is the name for Mathjax version 3, for MathJax version 2 this will be +# translated into HTML-CSS) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. The default value is: +# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2 +# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3 +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# for MathJax version 2 (see +# https://docs.mathjax.org/en/v2.7-latest/tex.html#tex-and-latex-extensions): +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# For example for MathJax version 3 (see +# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html): +# MATHJAX_EXTENSIONS = ams +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /Node, +# Edge and Graph Attributes specification You need to make sure dot is able +# to find the font, which can be done by putting it in a standard location or by +# setting the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the +# directory containing the font. Default graphviz fontsize is 14. +# The default value is: fontname=Helvetica,fontsize=10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_COMMON_ATTR = "fontname=Helvetica,fontsize=10" + +# DOT_EDGE_ATTR is concatenated with DOT_COMMON_ATTR. For elegant style you can +# add 'arrowhead=open, arrowtail=open, arrowsize=0.5'. Complete documentation about +# arrows shapes. +# The default value is: labelfontname=Helvetica,labelfontsize=10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_EDGE_ATTR = "labelfontname=Helvetica,labelfontsize=10" + +# DOT_NODE_ATTR is concatenated with DOT_COMMON_ATTR. For view without boxes +# around nodes set 'shape=plain' or 'shape=plaintext' Shapes specification +# The default value is: shape=box,height=0.2,width=0.4. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_NODE_ATTR = "shape=box,height=0.2,width=0.4" + +# You can set the path where dot can find font specified with fontname in +# DOT_COMMON_ATTR and others dot attributes. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTPATH = + +# If the CLASS_GRAPH tag is set to YES or GRAPH or BUILTIN then doxygen will +# generate a graph for each documented class showing the direct and indirect +# inheritance relations. In case the CLASS_GRAPH tag is set to YES or GRAPH and +# HAVE_DOT is enabled as well, then dot will be used to draw the graph. In case +# the CLASS_GRAPH tag is set to YES and HAVE_DOT is disabled or if the +# CLASS_GRAPH tag is set to BUILTIN, then the built-in generator will be used. +# If the CLASS_GRAPH tag is set to TEXT the direct and indirect inheritance +# relations will be shown as texts / links. +# Possible values are: NO, YES, TEXT, GRAPH and BUILTIN. +# The default value is: YES. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a +# graph for each documented class showing the direct and indirect implementation +# dependencies (inheritance, containment, and class references variables) of the +# class with other documented classes. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for +# groups, showing the direct groups dependencies. See also the chapter Grouping +# in the manual. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LOOK = NO + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside the +# class node. If there are many fields or methods and many nodes the graph may +# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the +# number of items for each type to make the size more manageable. Set this to 0 +# for no limit. Note that the threshold may be exceeded by 50% before the limit +# is enforced. So when you set the threshold to 10, up to 15 fields may appear, +# but if the number exceeds 15, the total amount of fields shown is limited to +# 10. +# Minimum value: 0, maximum value: 100, default value: 10. +# This tag requires that the tag UML_LOOK is set to YES. + +UML_LIMIT_NUM_FIELDS = 10 + +# If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and +# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS +# tag is set to YES, doxygen will add type and arguments for attributes and +# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen +# will not generate fields with class member information in the UML graphs. The +# class diagrams will look similar to the default class diagrams but using UML +# notation for the relationships. +# Possible values are: NO, YES and NONE. +# The default value is: NO. +# This tag requires that the tag UML_LOOK is set to YES. + +DOT_UML_DETAILS = NO + +# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters +# to display on a single line. If the actual line length exceeds this threshold +# significantly it will wrapped across multiple lines. Some heuristics are apply +# to avoid ugly line breaks. +# Minimum value: 0, maximum value: 1000, default value: 17. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_WRAP_THRESHOLD = 17 + +# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and +# collaboration graphs will show the relations between templates and their +# instances. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +TEMPLATE_RELATIONS = NO + +# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to +# YES then doxygen will generate a graph for each documented file showing the +# direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDE_GRAPH = YES + +# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are +# set to YES then doxygen will generate a graph for each documented file showing +# the direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH tag is set to YES then doxygen will generate a call +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. Disabling a call graph can be +# accomplished by means of the command \hidecallgraph. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable caller graphs for selected +# functions only using the \callergraph command. Disabling a caller graph can be +# accomplished by means of the command \hidecallergraph. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical +# hierarchy of all classes instead of a textual one. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the +# dependencies a directory has on other directories in a graphical way. The +# dependency relations are determined by the #include relations between the +# files in the directories. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DIRECTORY_GRAPH = YES + +# The DIR_GRAPH_MAX_DEPTH tag can be used to limit the maximum number of levels +# of child directories generated in directory dependency graphs by dot. +# Minimum value: 1, maximum value: 25, default value: 1. +# This tag requires that the tag DIRECTORY_GRAPH is set to YES. + +DIR_GRAPH_MAX_DEPTH = 1 + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. For an explanation of the image formats see the section +# output formats in the documentation of the dot tool (Graphviz (see: +# https://www.graphviz.org/)). +# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order +# to make the SVG files visible in IE 9+ (other browsers do not have this +# requirement). +# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo, +# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and +# png:gdiplus:gdiplus. +# The default value is: png. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# +# Note that this requires a modern browser other than Internet Explorer. Tested +# and working are Firefox, Chrome, Safari, and Opera. +# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make +# the SVG files visible. Older versions of IE do not have SVG support. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +INTERACTIVE_SVG = NO + +# The DOT_PATH tag can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the \dotfile +# command). +# This tag requires that the tag HAVE_DOT is set to YES. + +DOTFILE_DIRS = + +# You can include diagrams made with dia in doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. + +DIA_PATH = + +# The DIAFILE_DIRS tag can be used to specify one or more directories that +# contain dia files that are included in the documentation (see the \diafile +# command). + +DIAFILE_DIRS = + +# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the +# path where java can find the plantuml.jar file or to the filename of jar file +# to be used. If left blank, it is assumed PlantUML is not used or called during +# a preprocessing step. Doxygen will generate a warning when it encounters a +# \startuml command in this case and will not generate output for the diagram. + +PLANTUML_JAR_PATH = + +# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a +# configuration file for plantuml. + +PLANTUML_CFG_FILE = + +# When using plantuml, the specified paths are searched for files specified by +# the !include statement in a plantuml block. + +PLANTUML_INCLUDE_PATH = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes +# that will be shown in the graph. If the number of nodes in a graph becomes +# larger than this value, doxygen will truncate the graph, which is visualized +# by representing a node as a red box. Note that doxygen if the number of direct +# children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that +# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. +# Minimum value: 0, maximum value: 10000, default value: 50. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs +# generated by dot. A depth value of 3 means that only nodes reachable from the +# root by following a path via at most 3 edges will be shown. Nodes that lay +# further from the root node will be omitted. Note that setting this option to 1 +# or 2 may greatly reduce the computation time needed for large code bases. Also +# note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. +# Minimum value: 0, maximum value: 1000, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) support +# this, this feature is disabled by default. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page +# explaining the meaning of the various boxes and arrows in the dot generated +# graphs. +# Note: This tag requires that UML_LOOK isn't set, i.e. the doxygen internal +# graphical representation for inheritance and collaboration diagrams is used. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate +# files that are used to generate the various graphs. +# +# Note: This setting is not only used for dot files but also for msc temporary +# files. +# The default value is: YES. + +DOT_CLEANUP = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. If the MSCGEN_TOOL tag is left empty (the default), then doxygen will +# use a built-in version of mscgen tool to produce the charts. Alternatively, +# the MSCGEN_TOOL tag can also specify the name an external tool. For instance, +# specifying prog as the value, doxygen will call the tool as prog -T +# -o . The external tool should support +# output file formats "png", "eps", "svg", and "ismap". + +MSCGEN_TOOL = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the \mscfile +# command). + +MSCFILE_DIRS = diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index 6c2a67035..c3abfc4f7 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -163,7 +163,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { APlayerCameraManager* SubLevelCamera = nullptr; #if WITH_EDITORONLY_DATA - /* + /** * Whether to visualize the level loading radii in the editor. Helpful for * initially positioning the level and choosing a load radius. */ @@ -224,55 +224,119 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { void SetOriginEarthCenteredEarthFixed( const FVector& TargetEarthCenteredEarthFixed); + /** + * Gets the placement of this Actor's origin (coordinate 0,0,0) within the + * tileset. + * + * 3D Tiles tilesets often use Earth-centered, Earth-fixed coordinates, such + * that the tileset content is in a small bounding volume 6-7 million meters + * (the radius of the Earth) away from the coordinate system origin. This + * property allows an alternative position, other then the tileset's true + * origin, to be treated as the origin for the purpose of this Actor. Using + * this property will preserve vertex precision (and thus avoid jittering) + * much better than setting the Actor's Transform property. + */ UFUNCTION(BlueprintGetter) EOriginPlacement GetOriginPlacement() const; + /** + * Sets the placement of this Actor's origin (coordinate 0,0,0) within the + * tileset. + * + * 3D Tiles tilesets often use Earth-centered, Earth-fixed coordinates, such + * that the tileset content is in a small bounding volume 6-7 million meters + * (the radius of the Earth) away from the coordinate system origin. This + * property allows an alternative position, other then the tileset's true + * origin, to be treated as the origin for the purpose of this Actor. Using + * this property will preserve vertex precision (and thus avoid jittering) + * much better than setting the Actor's Transform property. + */ UFUNCTION(BlueprintSetter) void SetOriginPlacement(EOriginPlacement NewValue); + /** + * Gets the latitude of the custom origin placement in degrees, in the range + * [-90, 90] + */ UFUNCTION(BlueprintGetter) double GetOriginLatitude() const; + /** + * Sets the latitude of the custom origin placement in degrees, in the range + * [-90, 90] + */ UFUNCTION(BlueprintSetter) void SetOriginLatitude(double NewValue); + /** + * Gets the longitude of the custom origin placement in degrees, in the range + * [-180, 180] + */ UFUNCTION(BlueprintGetter) double GetOriginLongitude() const; + /** + * Sets the longitude of the custom origin placement in degrees, in the range + * [-180, 180] + */ UFUNCTION(BlueprintSetter) void SetOriginLongitude(double NewValue); + /** + * Gets the height of the custom origin placement in meters above the + * ellipsoid. + */ UFUNCTION(BlueprintGetter) double GetOriginHeight() const; + /** + * Sets the height of the custom origin placement in meters above the + * ellipsoid. + */ UFUNCTION(BlueprintSetter) void SetOriginHeight(double NewValue); /** - * The percentage scale of the globe in the Unreal world. If this value is 50, - * for example, one meter on the globe occupies half a meter in the Unreal - * world. + * Gets the percentage scale of the globe in the Unreal world. If this value + * is 50, for example, one meter on the globe occupies half a meter in the + * Unreal world. */ UFUNCTION(BlueprintGetter) double GetScale() const; /** - * The percentage scale of the globe in the Unreal world. If this value is 50, - * for example, one meter on the globe occupies half a meter in the Unreal - * world. + * Sets the percentage scale of the globe in the Unreal world. If this value + * is 50, for example, one meter on the globe occupies half a meter in the + * Unreal world. */ UFUNCTION(BlueprintSetter) void SetScale(double NewValue); + /** + * Gets the camera to use to determine which sub-level is closest, so that one + * can be activated and all others deactivated. + */ UFUNCTION(BlueprintGetter) APlayerCameraManager* GetSubLevelCamera() const; + /** + * Sets the camera to use to determine which sub-level is closest, so that one + * can be activated and all others deactivated. + */ UFUNCTION(BlueprintSetter) void SetSubLevelCamera(APlayerCameraManager* NewValue); + /** + * Gets whether to visualize the level loading radii in the editor. Helpful + * for initially positioning the level and choosing a load radius. + */ UFUNCTION(BlueprintGetter) bool GetShowLoadRadii() const; + /** + * Sets whether to visualize the level loading radii in the editor. Helpful + * for initially positioning the level and choosing a load radius. + */ UFUNCTION(BlueprintSetter) void SetShowLoadRadii(bool NewValue); diff --git a/package.json b/package.json index a54603440..61c55624d 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,8 @@ "doc": "Documentation" }, "scripts": { - "format": "clang-format -i \"--glob=Source/@(Cesium*)/**/*.@(cpp|h|hpp)\"" + "format": "clang-format -i \"--glob=Source/@(Cesium*)/**/*.@(cpp|h|hpp)\"", + "doxygen": "doxygen ./Documentation/Doxyfile" }, "repository": { "type": "git", @@ -26,6 +27,5 @@ "homepage": "https://github.com/CesiumGS/cesium-unreal#readme", "devDependencies": { "clang-format": "^1.5.0" - }, - "dependencies": {} + } } From 735f0a1eea8c2a1054fa14f242edac1c34bc5f6d Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Fri, 28 Jul 2023 16:03:12 +1000 Subject: [PATCH 33/37] Add instructions for generated reference docs. --- Documentation/developer-setup.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Documentation/developer-setup.md b/Documentation/developer-setup.md index 392b09eac..56bd42173 100644 --- a/Documentation/developer-setup.md +++ b/Documentation/developer-setup.md @@ -39,3 +39,10 @@ There are detailed instructions for setting up a Cesium for Unreal development e - Click on "Start Tests" > Note: The TestsProject uses the Cesium and Functional Testing Editor plugins. You can run the tests from any project as long as you have both of these plugins enabled + +## Generate Reference Documentation + +- Install Doxygen and make sure `doxygen` is in your path. +- Run `npm run doxygen` + +The reference documentation will be written to `Documentation/Reference`. From 982a103a0b1cf3657a700482eb1826489db23ec8 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Fri, 28 Jul 2023 16:34:51 +1000 Subject: [PATCH 34/37] Fix non-Editor builds, hopefully. --- Source/CesiumRuntime/Private/CesiumGeoreference.cpp | 2 ++ Source/CesiumRuntime/Public/CesiumGeoreference.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index a986d00cb..82adc8c41 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -193,6 +193,7 @@ void ACesiumGeoreference::SetSubLevelCamera(APlayerCameraManager* NewValue) { this->SubLevelCamera = NewValue; } +#if WITH_EDITOR bool ACesiumGeoreference::GetShowLoadRadii() const { return this->ShowLoadRadii; } @@ -200,6 +201,7 @@ bool ACesiumGeoreference::GetShowLoadRadii() const { void ACesiumGeoreference::SetShowLoadRadii(bool NewValue) { this->ShowLoadRadii = NewValue; } +#endif // WITH_EDITOR FVector ACesiumGeoreference::TransformLongitudeLatitudeHeightPositionToUnreal( const FVector& LongitudeLatitudeHeight) const { diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index c3abfc4f7..de9359562 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -326,6 +326,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { UFUNCTION(BlueprintSetter) void SetSubLevelCamera(APlayerCameraManager* NewValue); +#if WITH_EDITOR /** * Gets whether to visualize the level loading radii in the editor. Helpful * for initially positioning the level and choosing a load radius. @@ -339,6 +340,7 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { */ UFUNCTION(BlueprintSetter) void SetShowLoadRadii(bool NewValue); +#endif // WITH_EDITOR #pragma endregion From 8593648be3fc3cebdaec9d4787c2479a8529ca14 Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Mon, 11 Sep 2023 10:06:43 +1000 Subject: [PATCH 35/37] Don't crash on zero scale. --- Source/CesiumRuntime/Private/Cesium3DTileset.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Source/CesiumRuntime/Private/Cesium3DTileset.cpp b/Source/CesiumRuntime/Private/Cesium3DTileset.cpp index a422e777c..bb8afd695 100644 --- a/Source/CesiumRuntime/Private/Cesium3DTileset.cpp +++ b/Source/CesiumRuntime/Private/Cesium3DTileset.cpp @@ -2024,6 +2024,13 @@ void ACesium3DTileset::Tick(float DeltaTime) { glm::dmat4 unrealWorldToCesiumTileset = glm::affineInverse(ueTilesetToUeWorld * cesiumTilesetToUeTileset); + if (glm::isnan(unrealWorldToCesiumTileset[3].x) || + glm::isnan(unrealWorldToCesiumTileset[3].y) || + glm::isnan(unrealWorldToCesiumTileset[3].z)) { + // Probably caused by a zero scale. + return; + } + std::vector frustums; for (const FCesiumCamera& camera : cameras) { frustums.push_back( From 4c1e3c8106ae69687f060449957a3b9251b8ad2e Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Mon, 11 Sep 2023 10:30:39 +1000 Subject: [PATCH 36/37] Improvements from review. --- Source/CesiumRuntime/Private/CesiumPolygonRasterOverlay.cpp | 5 ++--- Source/CesiumRuntime/Private/CesiumSunSky.cpp | 3 --- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumPolygonRasterOverlay.cpp b/Source/CesiumRuntime/Private/CesiumPolygonRasterOverlay.cpp index 3011ff32d..4f6229aea 100644 --- a/Source/CesiumRuntime/Private/CesiumPolygonRasterOverlay.cpp +++ b/Source/CesiumRuntime/Private/CesiumPolygonRasterOverlay.cpp @@ -20,10 +20,9 @@ std::unique_ptr UCesiumPolygonRasterOverlay::CreateOverlay( const Cesium3DTilesSelection::RasterOverlayOptions& options) { ACesium3DTileset* pTileset = this->GetOwner(); - if (pTileset == nullptr) - return nullptr; - FTransform worldToTileset = pTileset->GetActorTransform().Inverse(); + FTransform worldToTileset = + pTileset ? pTileset->GetActorTransform().Inverse() : FTransform::Identity; std::vector polygons; polygons.reserve(this->Polygons.Num()); diff --git a/Source/CesiumRuntime/Private/CesiumSunSky.cpp b/Source/CesiumRuntime/Private/CesiumSunSky.cpp index ed8517ac2..8c2769de8 100644 --- a/Source/CesiumRuntime/Private/CesiumSunSky.cpp +++ b/Source/CesiumRuntime/Private/CesiumSunSky.cpp @@ -215,9 +215,6 @@ void ACesiumSunSky::BeginPlay() { if (this->UpdateAtmosphereAtRuntime) { this->UpdateAtmosphereRadius(); } - - if (this->SkyAtmosphere->AtmosphereHeight != this->AtmosphereHeight) { - } } void ACesiumSunSky::EndPlay(const EEndPlayReason::Type EndPlayReason) { From adf0d157414ae41ded91e392a81d1d1fe155b98a Mon Sep 17 00:00:00 2001 From: Kevin Ring Date: Mon, 11 Sep 2023 12:36:23 +1000 Subject: [PATCH 37/37] Improvements from review. --- .../CesiumRuntime/Private/CesiumGeoreference.cpp | 6 ++++-- Source/CesiumRuntime/Public/CesiumGeoreference.h | 16 ++++++++++------ 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp index 82adc8c41..0a198fb0d 100644 --- a/Source/CesiumRuntime/Private/CesiumGeoreference.cpp +++ b/Source/CesiumRuntime/Private/CesiumGeoreference.cpp @@ -38,6 +38,8 @@ #include "Slate/SceneViewport.h" #endif +/*static*/ const double ACesiumGeoreference::kMinimumScale = 1.0e-6; + /*static*/ ACesiumGeoreference* ACesiumGeoreference::GetDefaultGeoreference(const UObject* WorldContextObject) { UWorld* world = WorldContextObject->GetWorld(); @@ -177,8 +179,8 @@ void ACesiumGeoreference::SetOriginHeight(double NewValue) { double ACesiumGeoreference::GetScale() const { return this->Scale; } void ACesiumGeoreference::SetScale(double NewValue) { - if (NewValue < 1e-6) { - this->Scale = 1e-6; + if (NewValue < ACesiumGeoreference::kMinimumScale) { + this->Scale = ACesiumGeoreference::kMinimumScale; } else { this->Scale = NewValue; } diff --git a/Source/CesiumRuntime/Public/CesiumGeoreference.h b/Source/CesiumRuntime/Public/CesiumGeoreference.h index de9359562..11a26efa6 100644 --- a/Source/CesiumRuntime/Public/CesiumGeoreference.h +++ b/Source/CesiumRuntime/Public/CesiumGeoreference.h @@ -36,6 +36,11 @@ UCLASS() class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { GENERATED_BODY() public: + /** + * The minimum allowed value for the Scale property, 1e-6. + */ + static const double kMinimumScale; + /** * Finds and returns the actor labeled `CesiumGeoreferenceDefault` in the * persistent level of the calling object's world. If not found, it creates a @@ -681,12 +686,6 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { public: ACesiumGeoreference(); - /** - * Recomputes all world georeference transforms. Usually there is no need to - * explicitly call this from external code. - */ - void UpdateGeoreference(); - /** * Returns the GeoTransforms that offers the same conversion * functions as this class, but performs the computations @@ -697,6 +696,11 @@ class CESIUMRUNTIME_API ACesiumGeoreference : public AActor { } private: + /** + * Recomputes all world georeference transforms. + */ + void UpdateGeoreference(); + /** * A tag that is assigned to Georeferences when they are created * as the "default" Georeference for a certain world.