Fix "make CarlaUE4" buid: Remove editor code from

This commit is contained in:
xavisolesoft 2024-02-22 10:12:49 +01:00
parent 0551fd458e
commit 7c73f16e5c
5 changed files with 19 additions and 6 deletions

View File

@ -221,11 +221,13 @@ void UMapGenFunctionLibrary::FlushRenderingCommandsInBlueprint()
FlushPendingDeleteRHIResources_GameThread();
}
#if WITH_EDITOR
extern UNREALED_API UEditorEngine* GEditor;
#endif
void UMapGenFunctionLibrary::CleanupGEngine(){
GEngine->PerformGarbageCollectionAndCleanupActors();
#if WITH_EDITOR
GEngine->PerformGarbageCollectionAndCleanupActors();
FText TransResetText(FText::FromString("Clean up after Move actors to sublevels"));
if ( GEditor->Trans )
{

View File

@ -383,11 +383,12 @@ void FCarlaEngine::OnEpisodeSettingsChanged(const FEpisodeSettings &Settings)
bSynchronousMode = Settings.bSynchronousMode;
#if WITH_EDITOR
if (GEngine && GEngine->GameViewport)
{
GEngine->GameViewport->bDisableWorldRendering = Settings.bNoRenderingMode;
}
#endif
FCarlaEngine_SetFixedDeltaSeconds(Settings.FixedDeltaSeconds);
// Setting parameters for physics substepping

View File

@ -428,8 +428,9 @@ void ALargeMapManager::GenerateMap(FString InAssetsPath)
LoadCarlaMapTile(InAssetsPath + "/" + AssetData.AssetName.ToString(), TileId);
}
ObjectLibrary->ConditionalBeginDestroy();
GEngine->ForceGarbageCollection(true);
#if WITH_EDITOR
GetWorld()->ForceGarbageCollection(true);
#endif
ActorsToConsider.Reset();
if (SpectatorAsEgo && Spectator)
{
@ -1059,6 +1060,7 @@ void ALargeMapManager::DumpTilesTable() const
void ALargeMapManager::PrintMapInfo()
{
#if WITH_EDITOR
UWorld* World = GetWorld();
FDVector CurrentActorPosition;
@ -1117,6 +1119,7 @@ void ALargeMapManager::PrintMapInfo()
if (LastMsgIndex > MaxClientLocMsgIndex) break;
}
}
#endif
}
void ALargeMapManager::ConsiderSpectatorAsEgo(bool _SpectatorAsEgo)

View File

@ -169,7 +169,10 @@ UOpenDriveMap *UOpenDrive::LoadOpenDriveMap(const FString &MapName)
UOpenDriveMap *UOpenDrive::LoadCurrentOpenDriveMap(const UObject *WorldContextObject)
{
UWorld *World = GEngine->GetWorldFromContextObject(WorldContextObject, EGetWorldErrorMode::LogAndReturnNull);
UWorld *World = nullptr;
#if WITH_EDITOR
GEngine->GetWorldFromContextObject(WorldContextObject, EGetWorldErrorMode::LogAndReturnNull);
#endif
return World != nullptr ?
LoadOpenDriveMap(World->GetMapName()) :
nullptr;

View File

@ -799,7 +799,11 @@ void FCarlaServer::FPimpl::BindActions()
result.Contains(FString(TEXT("Error")))
);
}
return GEngine->Exec(Episode->GetWorld(), UTF8_TO_TCHAR(cmd.c_str()));
bool success = false;
#if WITH_EDITOR
success = GEngine->Exec(Episode->GetWorld(), UTF8_TO_TCHAR(cmd.c_str()));
#endif
return success;
};
BIND_SYNC(get_sensor_token) << [this](carla::streaming::detail::stream_id_type sensor_id) ->