You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-163243 #preflight 646e5f421417daba1e01a8eb #rnx #rb Brian.White [CL 25643793 by Jerome Delattre in ue5-main branch]
94 lines
3.1 KiB
C++
94 lines
3.1 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
/*=============================================================================
|
|
ScreenShotManager.cpp: Implements the FScreenShotManager class.
|
|
=============================================================================*/
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Async/Future.h"
|
|
#include "ImageComparer.h"
|
|
#include "Interfaces/IScreenShotManager.h"
|
|
#include "MessageEndpoint.h"
|
|
|
|
DECLARE_LOG_CATEGORY_EXTERN(LogScreenShotManager, Log, All);
|
|
|
|
class FScreenshotComparisons;
|
|
struct FScreenShotDataItem;
|
|
class UScreenShotComparisonSettings;
|
|
|
|
/**
|
|
* Implements the ScreenShotManager that contains screen shot data.
|
|
*/
|
|
class FScreenShotManager : public IScreenShotManager
|
|
{
|
|
public:
|
|
|
|
enum class EApprovedFolderOptions : int8
|
|
{
|
|
None = 0,
|
|
UsePlatformFolders = 1 >> 0,
|
|
UseLegacyPaths = 1 >> 1
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates and initializes a new instance.
|
|
*
|
|
*/
|
|
FScreenShotManager();
|
|
|
|
~FScreenShotManager();
|
|
|
|
public:
|
|
|
|
//~ Begin IScreenShotManager Interface
|
|
|
|
virtual TFuture<FImageComparisonResult> CompareScreenshotAsync(const FString& IncomingPath, const FAutomationScreenshotMetadata& MetaData, const EScreenShotCompareOptions Options) override;
|
|
|
|
virtual FScreenshotExportResult ExportScreenshotComparisonResult(FString ScreenshotName, FString ExportPath = TEXT(""), bool bOnlyIncoming = false) override;
|
|
|
|
virtual bool OpenComparisonReports(FString ImportPath, TArray<FComparisonReport>& OutReports) override;
|
|
|
|
virtual FString GetIdealApprovedFolderForImage(const FAutomationScreenshotMetadata& MetaData) const override;
|
|
//~ End IScreenShotManager Interface
|
|
|
|
private:
|
|
|
|
FString GetPathComponentForRHI(const FAutomationScreenshotMetadata& MetaData) const;
|
|
FString GetPathComponentForPlatformAndRHI(const FAutomationScreenshotMetadata& MetaData) const;
|
|
FString GetPathComponentForTestImages(const FAutomationScreenshotMetadata& MetaData) const;
|
|
|
|
|
|
FString GetApprovedFolderForImageWithOptions(const FAutomationScreenshotMetadata& MetaData, EApprovedFolderOptions InOptions) const;
|
|
|
|
TArray<FString> FindApprovedImages(const FAutomationScreenshotMetadata& IncomingMetaData);
|
|
|
|
FString GetDefaultExportDirectory() const;
|
|
|
|
FImageComparisonResult CompareScreenshot(const FString& IncomingPath, const FAutomationScreenshotMetadata& MetaData, const EScreenShotCompareOptions Options);
|
|
|
|
void CopyDirectory(const FString& DestDir, const FString& SrcDir, const FString& Pattern);
|
|
|
|
void BuildFallbackPlatformsListFromConfig();
|
|
|
|
private:
|
|
|
|
FString ScreenshotTempDeltaFolder;
|
|
FString ScreenshotResultsFolder;
|
|
|
|
TMap<FString, FString> FallbackPlatforms;
|
|
|
|
bool bUseConfidentialPlatformPaths;
|
|
};
|
|
|
|
inline FScreenShotManager::EApprovedFolderOptions operator | (FScreenShotManager::EApprovedFolderOptions lhs, FScreenShotManager::EApprovedFolderOptions rhs)
|
|
{
|
|
return static_cast<FScreenShotManager::EApprovedFolderOptions>(static_cast<int8>(lhs) | static_cast<int8>(rhs));
|
|
}
|
|
|
|
inline bool operator & (FScreenShotManager::EApprovedFolderOptions& lhs, FScreenShotManager::EApprovedFolderOptions rhs)
|
|
{
|
|
return (static_cast<int8>(lhs) & static_cast<int8>(rhs)) != 0;
|
|
} |