Add .Net Runtime deployment for cooked game

This commit is contained in:
Wojtek Figat
2023-03-13 10:23:42 +01:00
parent e83b8afdd3
commit e00bf92f05
14 changed files with 186 additions and 50 deletions

View File

@@ -194,7 +194,7 @@ public:
API_FIELD(ReadOnly) String OriginalOutputPath; API_FIELD(ReadOnly) String OriginalOutputPath;
/// <summary> /// <summary>
/// The output path for data files (Content, Mono, etc.). /// The output path for data files (Content, Dotnet, Mono, etc.).
/// </summary> /// </summary>
API_FIELD(ReadOnly) String DataOutputPath; API_FIELD(ReadOnly) String DataOutputPath;
@@ -306,13 +306,11 @@ public:
/// <summary> /// <summary>
/// Gets the absolute path to the Platform Data folder that contains the binary files used by the current build configuration. /// Gets the absolute path to the Platform Data folder that contains the binary files used by the current build configuration.
/// </summary> /// </summary>
/// <returns>The platform data folder path.</returns>
String GetGameBinariesPath() const; String GetGameBinariesPath() const;
/// <summary> /// <summary>
/// Gets the absolute path to the platform folder that contains the dependency files used by the current build configuration. /// Gets the absolute path to the platform folder that contains the dependency files used by the current build configuration.
/// </summary> /// </summary>
/// <returns>The platform deps folder path.</returns>
String GetPlatformBinariesRoot() const; String GetPlatformBinariesRoot() const;
public: public:

View File

@@ -34,6 +34,11 @@ ArchitectureType LinuxPlatformTools::GetArchitecture() const
return ArchitectureType::x64; return ArchitectureType::x64;
} }
bool LinuxPlatformTools::UseSystemDotnet() const
{
return true;
}
bool LinuxPlatformTools::OnDeployBinaries(CookingData& data) bool LinuxPlatformTools::OnDeployBinaries(CookingData& data)
{ {
const auto gameSettings = GameSettings::Get(); const auto gameSettings = GameSettings::Get();

View File

@@ -18,6 +18,7 @@ public:
const Char* GetName() const override; const Char* GetName() const override;
PlatformType GetPlatform() const override; PlatformType GetPlatform() const override;
ArchitectureType GetArchitecture() const override; ArchitectureType GetArchitecture() const override;
bool UseSystemDotnet() const override;
bool OnDeployBinaries(CookingData& data) override; bool OnDeployBinaries(CookingData& data) override;
}; };

View File

@@ -59,6 +59,11 @@ ArchitectureType MacPlatformTools::GetArchitecture() const
return _arch; return _arch;
} }
bool MacPlatformTools::UseSystemDotnet() const
{
return true;
}
bool MacPlatformTools::IsNativeCodeFile(CookingData& data, const String& file) bool MacPlatformTools::IsNativeCodeFile(CookingData& data, const String& file)
{ {
String extension = FileSystem::GetExtension(file); String extension = FileSystem::GetExtension(file);

View File

@@ -23,6 +23,7 @@ public:
const Char* GetName() const override; const Char* GetName() const override;
PlatformType GetPlatform() const override; PlatformType GetPlatform() const override;
ArchitectureType GetArchitecture() const override; ArchitectureType GetArchitecture() const override;
bool UseSystemDotnet() const override;
bool IsNativeCodeFile(CookingData& data, const String& file) override; bool IsNativeCodeFile(CookingData& data, const String& file) override;
void OnBuildStarted(CookingData& data) override; void OnBuildStarted(CookingData& data) override;
bool OnPostProcess(CookingData& data) override; bool OnPostProcess(CookingData& data) override;

View File

@@ -33,6 +33,11 @@ ArchitectureType WindowsPlatformTools::GetArchitecture() const
return _arch; return _arch;
} }
bool WindowsPlatformTools::UseSystemDotnet() const
{
return true;
}
bool WindowsPlatformTools::OnDeployBinaries(CookingData& data) bool WindowsPlatformTools::OnDeployBinaries(CookingData& data)
{ {
const auto platformSettings = WindowsPlatformSettings::Get(); const auto platformSettings = WindowsPlatformSettings::Get();

View File

@@ -29,6 +29,7 @@ public:
const Char* GetName() const override; const Char* GetName() const override;
PlatformType GetPlatform() const override; PlatformType GetPlatform() const override;
ArchitectureType GetArchitecture() const override; ArchitectureType GetArchitecture() const override;
bool UseSystemDotnet() const override;
bool OnDeployBinaries(CookingData& data) override; bool OnDeployBinaries(CookingData& data) override;
void OnRun(CookingData& data, String& executableFile, String& commandLineFormat, String& workingDir) override; void OnRun(CookingData& data, String& executableFile, String& commandLineFormat, String& workingDir) override;
}; };

View File

@@ -24,36 +24,39 @@ public:
/// <summary> /// <summary>
/// Gets the name of the platform for UI and logging. /// Gets the name of the platform for UI and logging.
/// </summary> /// </summary>
/// <returns>The name.</returns>
virtual const Char* GetDisplayName() const = 0; virtual const Char* GetDisplayName() const = 0;
/// <summary> /// <summary>
/// Gets the name of the platform for filesystem cache directories, deps folder. /// Gets the name of the platform for filesystem cache directories, deps folder.
/// </summary> /// </summary>
/// <returns>The name.</returns>
virtual const Char* GetName() const = 0; virtual const Char* GetName() const = 0;
/// <summary> /// <summary>
/// Gets the type of the platform. /// Gets the type of the platform.
/// </summary> /// </summary>
/// <returns>The platform type.</returns>
virtual PlatformType GetPlatform() const = 0; virtual PlatformType GetPlatform() const = 0;
/// <summary> /// <summary>
/// Gets the architecture of the platform. /// Gets the architecture of the platform.
/// </summary> /// </summary>
/// <returns>The architecture type.</returns>
virtual ArchitectureType GetArchitecture() const = 0; virtual ArchitectureType GetArchitecture() const = 0;
/// <summary> /// <summary>
/// Gets the value indicating whenever platform requires AOT. /// Gets the value indicating whenever platform requires AOT (needs C# assemblies to be precompiled).
/// </summary> /// </summary>
/// <returns>True if platform uses AOT and needs C# assemblies to be precompiled, otherwise false.</returns>
virtual bool UseAOT() const virtual bool UseAOT() const
{ {
return false; return false;
} }
/// <summary>
/// Gets the value indicating whenever platform supports using system-installed .Net Runtime.
/// </summary>
virtual bool UseSystemDotnet() const
{
return false;
}
/// <summary> /// <summary>
/// Gets the texture format that is supported by the platform for a given texture. /// Gets the texture format that is supported by the platform for a given texture.
/// </summary> /// </summary>

View File

@@ -1,19 +1,22 @@
// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
#include "DeployDataStep.h" #include "DeployDataStep.h"
#include "Engine/Platform/File.h"
#include "Engine/Platform/FileSystem.h" #include "Engine/Platform/FileSystem.h"
#include "Editor/Cooker/PlatformTools.h" #include "Engine/Core/Collections/Sorting.h"
#include "Engine/Core/Config/BuildSettings.h" #include "Engine/Core/Config/BuildSettings.h"
#include "Engine/Core/Config/GameSettings.h" #include "Engine/Core/Config/GameSettings.h"
#include "Engine/Renderer/ReflectionsPass.h" #include "Engine/Renderer/ReflectionsPass.h"
#include "Engine/Renderer/AntiAliasing/SMAA.h" #include "Engine/Renderer/AntiAliasing/SMAA.h"
#include "Engine/Engine/Globals.h" #include "Engine/Engine/Globals.h"
#include "Editor/Cooker/PlatformTools.h"
bool DeployDataStep::Perform(CookingData& data) bool DeployDataStep::Perform(CookingData& data)
{ {
data.StepProgress(TEXT("Deploying engine data"), 0); data.StepProgress(TEXT("Deploying engine data"), 0);
const String depsRoot = data.GetPlatformBinariesRoot(); const String depsRoot = data.GetPlatformBinariesRoot();
const auto gameSettings = GameSettings::Get(); const auto& gameSettings = *GameSettings::Get();
const auto& buildSettings = *BuildSettings::Get();
// Setup output folders and copy required data // Setup output folders and copy required data
const auto contentDir = data.DataOutputPath / TEXT("Content"); const auto contentDir = data.DataOutputPath / TEXT("Content");
@@ -26,24 +29,24 @@ bool DeployDataStep::Perform(CookingData& data)
Platform::Sleep(10); Platform::Sleep(10);
} }
FileSystem::CreateDirectory(contentDir); FileSystem::CreateDirectory(contentDir);
const String dstMono = data.DataOutputPath / TEXT("Mono");
#if USE_NETCORE #if USE_NETCORE
// TODO: Optionally copy all files needed for self-contained deployment // TODO: Optionally copy all files needed for self-contained deployment
{ {
// Remove old Mono files // Remove old Mono files
FileSystem::DeleteDirectory(data.DataOutputPath / TEXT("Mono")); FileSystem::DeleteDirectory(dstMono);
FileSystem::DeleteFile(data.DataOutputPath / TEXT("MonoPosixHelper.dll")); FileSystem::DeleteFile(data.DataOutputPath / TEXT("MonoPosixHelper.dll"));
} }
#else #else
const auto srcMono = depsRoot / TEXT("Mono");
const auto dstMono = data.DataOutputPath / TEXT("Mono");
if (!FileSystem::DirectoryExists(dstMono)) if (!FileSystem::DirectoryExists(dstMono))
{ {
// Deploy Mono files (from platform data folder)
const String srcMono = depsRoot / TEXT("Mono");
if (!FileSystem::DirectoryExists(srcMono)) if (!FileSystem::DirectoryExists(srcMono))
{ {
data.Error(TEXT("Missing Mono runtime data files.")); data.Error(TEXT("Missing Mono runtime data files."));
return true; return true;
} }
if (FileSystem::CopyDirectory(dstMono, srcMono, true)) if (FileSystem::CopyDirectory(dstMono, srcMono, true))
{ {
data.Error(TEXT("Failed to copy Mono runtime data files.")); data.Error(TEXT("Failed to copy Mono runtime data files."));
@@ -51,6 +54,101 @@ bool DeployDataStep::Perform(CookingData& data)
} }
} }
#endif #endif
const String dstDotnet = data.DataOutputPath / TEXT("Dotnet");
if (buildSettings.SkipDotnetPackaging && data.Tools->UseSystemDotnet())
{
// Use system-installed .Net Runtime
FileSystem::DeleteDirectory(dstDotnet);
}
else
{
// Deploy .Net Runtime files
FileSystem::CreateDirectory(dstDotnet);
String srcDotnet = depsRoot / TEXT("Dotnet");
if (FileSystem::DirectoryExists(srcDotnet))
{
// Use prebuilt .Net installation for that platform
if (FileSystem::CopyDirectory(dstMono, srcDotnet, true))
{
data.Error(TEXT("Failed to copy .Net runtime data files."));
return true;
}
}
else
{
bool canUseSystemDotnet = false;
switch (data.Platform)
{
case BuildPlatform::Windows32:
case BuildPlatform::Windows64:
canUseSystemDotnet = PLATFORM_TYPE == PlatformType::Windows;
break;
case BuildPlatform::LinuxX64:
canUseSystemDotnet = PLATFORM_TYPE == PlatformType::Linux;
break;
case BuildPlatform::MacOSx64:
case BuildPlatform::MacOSARM64:
canUseSystemDotnet = PLATFORM_TYPE == PlatformType::Mac;
break;
}
if (!canUseSystemDotnet)
{
data.Error(TEXT("Missing .Net files for a target platform."));
return true;
}
// Ask Flax.Build to provide .Net SDK location for current platform (assuming there are no prebuilt dotnet files)
String sdks;
bool failed = ScriptsBuilder::RunBuildTool(TEXT("-log -printSDKs -logfile=SDKs.txt"), data.CacheDirectory);
failed |= File::ReadAllText(data.CacheDirectory / TEXT("SDKs.txt"), sdks);
int32 idx = sdks.Find(TEXT("] DotNetSdk, "), StringSearchCase::CaseSensitive);
if (idx != -1)
{
idx = sdks.Find(TEXT(", "), StringSearchCase::CaseSensitive, idx + 14);
idx += 2;
int32 end = sdks.Find(TEXT("\n"), StringSearchCase::CaseSensitive, idx);
if (sdks[end] == '\r')
end--;
srcDotnet = String(sdks.Get() + idx, end - idx).TrimTrailing();
}
if (failed || !FileSystem::DirectoryExists(srcDotnet))
{
data.Error(TEXT("Failed to get .Net SDK location for a current platform."));
return true;
}
// Select version to use
Array<String> versions;
FileSystem::GetChildDirectories(versions, srcDotnet / TEXT("host/fxr"));
if (versions.Count() == 0)
{
data.Error(TEXT("Failed to get .Net SDK location for a current platform."));
return true;
}
for (String& version : versions)
{
version = StringUtils::GetFileName(version);
if (!version.StartsWith(TEXT("7.")))
version.Clear();
}
Sorting::QuickSort(versions.Get(), versions.Count());
const String version = versions.Last();
LOG(Info, "Using .Net Runtime {} at {}", version, srcDotnet);
// Deploy runtime files
FileSystem::CopyFile(dstDotnet / TEXT("LICENSE.TXT"), srcDotnet / TEXT("LICENSE.txt"));
FileSystem::CopyFile(dstDotnet / TEXT("LICENSE.TXT"), srcDotnet / TEXT("LICENSE.TXT"));
FileSystem::CopyFile(dstDotnet / TEXT("THIRD-PARTY-NOTICES.TXT"), srcDotnet / TEXT("ThirdPartyNotices.txt"));
FileSystem::CopyFile(dstDotnet / TEXT("THIRD-PARTY-NOTICES.TXT"), srcDotnet / TEXT("THIRD-PARTY-NOTICES.TXT"));
failed |= FileSystem::CopyDirectory(dstDotnet / TEXT("host/fxr") / version, srcDotnet / TEXT("host/fxr") / version, true);
failed |= FileSystem::CopyDirectory(dstDotnet / TEXT("shared/Microsoft.NETCore.App") / version, srcDotnet / TEXT("shared/Microsoft.NETCore.App") / version, true);
if (failed)
{
data.Error(TEXT("Failed to copy .Net runtime data files."));
return true;
}
}
}
// Deploy engine data for the target platform // Deploy engine data for the target platform
if (data.Tools->OnDeployBinaries(data)) if (data.Tools->OnDeployBinaries(data))
@@ -91,7 +189,7 @@ bool DeployDataStep::Perform(CookingData& data)
data.AddRootEngineAsset(TEXT("Engine/DefaultMaterial")); data.AddRootEngineAsset(TEXT("Engine/DefaultMaterial"));
data.AddRootEngineAsset(TEXT("Engine/DefaultDeformableMaterial")); data.AddRootEngineAsset(TEXT("Engine/DefaultDeformableMaterial"));
data.AddRootEngineAsset(TEXT("Engine/DefaultTerrainMaterial")); data.AddRootEngineAsset(TEXT("Engine/DefaultTerrainMaterial"));
if (!gameSettings->NoSplashScreen && !gameSettings->SplashScreen.IsValid()) if (!gameSettings.NoSplashScreen && !gameSettings.SplashScreen.IsValid())
data.AddRootEngineAsset(TEXT("Engine/Textures/Logo")); data.AddRootEngineAsset(TEXT("Engine/Textures/Logo"));
data.AddRootEngineAsset(TEXT("Engine/Textures/NormalTexture")); data.AddRootEngineAsset(TEXT("Engine/Textures/NormalTexture"));
data.AddRootEngineAsset(TEXT("Engine/Textures/BlackTexture")); data.AddRootEngineAsset(TEXT("Engine/Textures/BlackTexture"));
@@ -121,7 +219,6 @@ bool DeployDataStep::Perform(CookingData& data)
// Register game assets // Register game assets
data.StepProgress(TEXT("Deploying game data"), 50); data.StepProgress(TEXT("Deploying game data"), 50);
auto& buildSettings = *BuildSettings::Get();
for (auto& e : buildSettings.AdditionalAssets) for (auto& e : buildSettings.AdditionalAssets)
data.AddRootAsset(e.GetID()); data.AddRootAsset(e.GetID());
for (auto& e : buildSettings.AdditionalScenes) for (auto& e : buildSettings.AdditionalScenes)

View File

@@ -13,37 +13,37 @@
/// </summary> /// </summary>
API_CLASS(sealed, Namespace="FlaxEditor.Content.Settings") class FLAXENGINE_API BuildSettings : public SettingsBase API_CLASS(sealed, Namespace="FlaxEditor.Content.Settings") class FLAXENGINE_API BuildSettings : public SettingsBase
{ {
DECLARE_SCRIPTING_TYPE_MINIMAL(BuildSettings); DECLARE_SCRIPTING_TYPE_MINIMAL(BuildSettings);
public:
public:
/// <summary> /// <summary>
/// The maximum amount of assets to include into a single assets package. Asset packages will split into several packages if need to. /// The maximum amount of assets to include into a single assets package. Asset packages will split into several packages if need to.
/// </summary> /// </summary>
API_FIELD(Attributes="EditorOrder(10), DefaultValue(4096), Limit(1, ushort.MaxValue), EditorDisplay(\"General\", \"Max assets per package\")") API_FIELD(Attributes="EditorOrder(10), Limit(1, ushort.MaxValue), EditorDisplay(\"General\", \"Max assets per package\")")
int32 MaxAssetsPerPackage = 4096; int32 MaxAssetsPerPackage = 4096;
/// <summary> /// <summary>
/// The maximum size of the single assets package (in megabytes). Asset packages will split into several packages if need to. /// The maximum size of the single assets package (in megabytes). Asset packages will split into several packages if need to.
/// </summary> /// </summary>
API_FIELD(Attributes="EditorOrder(20), DefaultValue(1024), Limit(1, ushort.MaxValue), EditorDisplay(\"General\", \"Max package size (in MB)\")") API_FIELD(Attributes="EditorOrder(20), Limit(1, ushort.MaxValue), EditorDisplay(\"General\", \"Max package size (in MB)\")")
int32 MaxPackageSizeMB = 1024; int32 MaxPackageSizeMB = 1024;
/// <summary> /// <summary>
/// The game content cooking keycode. Use the same value for a game and DLC packages to support loading them by the build game. Use 0 to randomize it during building. /// The game content cooking keycode. Use the same value for a game and DLC packages to support loading them by the build game. Use 0 to randomize it during building.
/// </summary> /// </summary>
API_FIELD(Attributes="EditorOrder(30), DefaultValue(0), EditorDisplay(\"General\")") API_FIELD(Attributes="EditorOrder(30), EditorDisplay(\"General\")")
int32 ContentKey = 0; int32 ContentKey = 0;
/// <summary> /// <summary>
/// If checked, the builds produced by the Game Cooker will be treated as for final game distribution (eg. for game store upload). Builds done this way cannot be tested on console devkits (eg. Xbox One, Xbox Scarlett). /// If checked, the builds produced by the Game Cooker will be treated as for final game distribution (eg. for game store upload). Builds done this way cannot be tested on console devkits (eg. Xbox One, Xbox Scarlett).
/// </summary> /// </summary>
API_FIELD(Attributes="EditorOrder(40), DefaultValue(false), EditorDisplay(\"General\")") API_FIELD(Attributes="EditorOrder(40), EditorDisplay(\"General\")")
bool ForDistribution = false; bool ForDistribution = false;
/// <summary> /// <summary>
/// If checked, the output build files won't be packaged for the destination platform. Useful when debugging build from local PC. /// If checked, the output build files won't be packaged for the destination platform. Useful when debugging build from local PC.
/// </summary> /// </summary>
API_FIELD(Attributes="EditorOrder(50), DefaultValue(false), EditorDisplay(\"General\")") API_FIELD(Attributes="EditorOrder(50), EditorDisplay(\"General\")")
bool SkipPackaging = false; bool SkipPackaging = false;
/// <summary> /// <summary>
@@ -51,7 +51,7 @@ public:
/// </summary> /// </summary>
API_FIELD(Attributes="EditorOrder(1000), EditorDisplay(\"Additional Data\")") API_FIELD(Attributes="EditorOrder(1000), EditorDisplay(\"Additional Data\")")
Array<AssetReference<Asset>> AdditionalAssets; Array<AssetReference<Asset>> AdditionalAssets;
/// <summary> /// <summary>
/// The list of additional scenes to include into build (into root assets set). /// The list of additional scenes to include into build (into root assets set).
/// </summary> /// </summary>
@@ -67,17 +67,22 @@ public:
/// <summary> /// <summary>
/// Disables shaders compiler optimizations in cooked game. Can be used to debug shaders on a target platform or to speed up the shaders compilation time. /// Disables shaders compiler optimizations in cooked game. Can be used to debug shaders on a target platform or to speed up the shaders compilation time.
/// </summary> /// </summary>
API_FIELD(Attributes="EditorOrder(2000), DefaultValue(false), EditorDisplay(\"Content\", \"Shaders No Optimize\")") API_FIELD(Attributes="EditorOrder(2000), EditorDisplay(\"Content\", \"Shaders No Optimize\")")
bool ShadersNoOptimize = false; bool ShadersNoOptimize = false;
/// <summary> /// <summary>
/// Enables shader debug data generation for shaders in cooked game (depends on the target platform rendering backend). /// Enables shader debug data generation for shaders in cooked game (depends on the target platform rendering backend).
/// </summary> /// </summary>
API_FIELD(Attributes="EditorOrder(2010), DefaultValue(false), EditorDisplay(\"Content\")") API_FIELD(Attributes="EditorOrder(2010), EditorDisplay(\"Content\")")
bool ShadersGenerateDebugData = false; bool ShadersGenerateDebugData = false;
public: /// <summary>
/// If checked, .NET 7 Runtime won't be packaged with a game and will be required by user to be installed on system upon running game build. Available only on supported platforms such as Windows, Linux and macOS.
/// </summary>
API_FIELD(Attributes="EditorOrder(3000), EditorDisplay(\"Scripting\", \"Skip .NET Runtime Packaging\")")
bool SkipDotnetPackaging = false;
public:
/// <summary> /// <summary>
/// Gets the instance of the settings asset (default value if missing). Object returned by this method is always loaded with valid data to use. /// Gets the instance of the settings asset (default value if missing). Object returned by this method is always loaded with valid data to use.
/// </summary> /// </summary>
@@ -95,5 +100,6 @@ public:
DESERIALIZE(AdditionalAssetFolders); DESERIALIZE(AdditionalAssetFolders);
DESERIALIZE(ShadersNoOptimize); DESERIALIZE(ShadersNoOptimize);
DESERIALIZE(ShadersGenerateDebugData); DESERIALIZE(ShadersGenerateDebugData);
DESERIALIZE(SkipDotnetPackaging);
} }
}; };

View File

@@ -1,13 +1,15 @@
// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
#include "CoreCLR.h" #include "CoreCLR.h"
#if USE_NETCORE #if USE_NETCORE
#include "Engine/Core/Log.h" #include "Engine/Core/Log.h"
#include "Engine/Platform/Platform.h" #include "Engine/Platform/Platform.h"
#include "Engine/Platform/FileSystem.h" #include "Engine/Platform/FileSystem.h"
#include "Engine/Core/Types/DateTime.h" #include "Engine/Core/Types/DateTime.h"
#include "Engine/Debug/DebugLog.h"
#include "Engine/Core/Collections/Dictionary.h" #include "Engine/Core/Collections/Dictionary.h"
#include "Engine/Debug/DebugLog.h"
#include "Engine/Engine/Globals.h"
#include <nethost.h> #include <nethost.h>
#include <coreclr_delegates.h> #include <coreclr_delegates.h>
#include <hostfxr.h> #include <hostfxr.h>
@@ -17,12 +19,8 @@
#undef LoadLibrary #undef LoadLibrary
#endif #endif
static Dictionary<String, void*> cachedFunctions; static Dictionary<String, void*> CachedFunctions;
#if PLATFORM_WINDOWS static const char_t* NativeInteropTypeName = FLAX_CORECLR_TEXT("FlaxEngine.NativeInterop, FlaxEngine.CSharp");
static const char_t* typeName = TEXT("FlaxEngine.NativeInterop, FlaxEngine.CSharp");
#else
static const char_t* typeName = "FlaxEngine.NativeInterop, FlaxEngine.CSharp";
#endif
hostfxr_initialize_for_runtime_config_fn hostfxr_initialize_for_runtime_config; hostfxr_initialize_for_runtime_config_fn hostfxr_initialize_for_runtime_config;
hostfxr_initialize_for_dotnet_command_line_fn hostfxr_initialize_for_dotnet_command_line; hostfxr_initialize_for_dotnet_command_line_fn hostfxr_initialize_for_dotnet_command_line;
@@ -42,21 +40,33 @@ bool CoreCLR::InitHostfxr(const String& configPath, const String& libraryPath)
get_hostfxr_parameters get_hostfxr_params; get_hostfxr_parameters get_hostfxr_params;
get_hostfxr_params.size = sizeof(hostfxr_initialize_parameters); get_hostfxr_params.size = sizeof(hostfxr_initialize_parameters);
get_hostfxr_params.assembly_path = library_path.Get(); get_hostfxr_params.assembly_path = library_path.Get();
FLAX_CORECLR_STRING dotnetRoot;
// TODO: implement proper lookup for dotnet instalation folder and handle standalone build of FlaxGame // TODO: implement proper lookup for dotnet instalation folder and handle standalone build of FlaxGame
#if PLATFORM_MAC #if PLATFORM_MAC
get_hostfxr_params.dotnet_root = "/usr/local/share/dotnet"; get_hostfxr_params.dotnet_root = "/usr/local/share/dotnet";
#else #else
get_hostfxr_params.dotnet_root = nullptr; get_hostfxr_params.dotnet_root = nullptr;
#endif
#if !USE_EDITOR
const String& bundledDotnetPath = Globals::ProjectFolder / TEXT("Dotnet");
if (FileSystem::DirectoryExists(bundledDotnetPath))
{
dotnetRoot = FLAX_CORECLR_STRING(bundledDotnetPath);
#if PLATFORM_WINDOWS_FAMILY
dotnetRoot.Replace('/', '\\');
#endif
get_hostfxr_params.dotnet_root = dotnetRoot.Get();
}
#endif #endif
char_t hostfxrPath[1024]; char_t hostfxrPath[1024];
size_t hostfxrPathSize = sizeof(hostfxrPath) / sizeof(char_t); size_t hostfxrPathSize = sizeof(hostfxrPath) / sizeof(char_t);
int rc = get_hostfxr_path(hostfxrPath, &hostfxrPathSize, &get_hostfxr_params); int rc = get_hostfxr_path(hostfxrPath, &hostfxrPathSize, &get_hostfxr_params);
if (rc != 0) if (rc != 0)
{ {
LOG(Error, "Failed to find hostfxr: {0:x}", (unsigned int)rc); LOG(Error, "Failed to find hostfxr: {0:x} ({1})", (unsigned int)rc, String(get_hostfxr_params.dotnet_root));
return true; return true;
} }
const String path(hostfxrPath); String path(hostfxrPath);
LOG(Info, "Found hostfxr in {0}", path); LOG(Info, "Found hostfxr in {0}", path);
// Get API from hostfxr library // Get API from hostfxr library
@@ -84,12 +94,15 @@ bool CoreCLR::InitHostfxr(const String& configPath, const String& libraryPath)
hostfxr_initialize_parameters init_params; hostfxr_initialize_parameters init_params;
init_params.size = sizeof(hostfxr_initialize_parameters); init_params.size = sizeof(hostfxr_initialize_parameters);
init_params.host_path = library_path.Get(); init_params.host_path = library_path.Get();
init_params.dotnet_root = nullptr;//dotnetRoot.Get(); // This probably must be set path = String(StringUtils::GetDirectoryName(path)) / TEXT("/../../../");
StringUtils::PathRemoveRelativeParts(path);
dotnetRoot = FLAX_CORECLR_STRING(path);
init_params.dotnet_root = dotnetRoot.Get();
hostfxr_handle handle = nullptr; hostfxr_handle handle = nullptr;
rc = hostfxr_initialize_for_dotnet_command_line(ARRAY_COUNT(argv), argv, &init_params, &handle); rc = hostfxr_initialize_for_dotnet_command_line(ARRAY_COUNT(argv), argv, &init_params, &handle);
if (rc != 0 || handle == nullptr) if (rc != 0 || handle == nullptr)
{ {
LOG(Error, "Failed to initialize hostfxr: {0:x}", (unsigned int)rc); LOG(Error, "Failed to initialize hostfxr: {0:x} ({1})", (unsigned int)rc, String(init_params.dotnet_root));
hostfxr_close(handle); hostfxr_close(handle);
return true; return true;
} }
@@ -111,15 +124,14 @@ bool CoreCLR::InitHostfxr(const String& configPath, const String& libraryPath)
void* CoreCLR::GetStaticMethodPointer(const String& methodName) void* CoreCLR::GetStaticMethodPointer(const String& methodName)
{ {
void* fun; void* fun;
if (cachedFunctions.TryGet(methodName, fun)) if (CachedFunctions.TryGet(methodName, fun))
return fun; return fun;
int rc = get_function_pointer(typeName, FLAX_CORECLR_STRING(methodName).Get(), UNMANAGEDCALLERSONLY_METHOD, nullptr, nullptr, &fun); int rc = get_function_pointer(NativeInteropTypeName, FLAX_CORECLR_STRING(methodName).Get(), UNMANAGEDCALLERSONLY_METHOD, nullptr, nullptr, &fun);
if (rc != 0) if (rc != 0)
LOG(Fatal, "Failed to get unmanaged function pointer for method {0}: 0x{1:x}", methodName.Get(), (unsigned int)rc); LOG(Fatal, "Failed to get unmanaged function pointer for method {0}: 0x{1:x}", methodName.Get(), (unsigned int)rc);
cachedFunctions.Add(methodName, fun); CachedFunctions.Add(methodName, fun);
return fun; return fun;
} }

View File

@@ -11,9 +11,11 @@
#if defined(_WIN32) #if defined(_WIN32)
#define CORECLR_DELEGATE_CALLTYPE __stdcall #define CORECLR_DELEGATE_CALLTYPE __stdcall
#define FLAX_CORECLR_STRING String #define FLAX_CORECLR_STRING String
#define FLAX_CORECLR_TEXT(x) TEXT(x)
#else #else
#define CORECLR_DELEGATE_CALLTYPE #define CORECLR_DELEGATE_CALLTYPE
#define FLAX_CORECLR_STRING StringAnsi #define FLAX_CORECLR_STRING StringAnsi
#define FLAX_CORECLR_TEXT(x) x
#endif #endif
/// <summary> /// <summary>
@@ -56,8 +58,8 @@ public:
static void Free(void* ptr); static void Free(void* ptr);
static MGCHandle NewGCHandle(void* obj, bool pinned); static MGCHandle NewGCHandle(void* obj, bool pinned);
static MGCHandle NewGCHandleWeakref(void* obj, bool track_resurrection); static MGCHandle NewGCHandleWeakref(void* obj, bool track_resurrection);
static void* GetGCHandleTarget(const MGCHandle& MGCHandle); static void* GetGCHandleTarget(const MGCHandle& handle);
static void FreeGCHandle(const MGCHandle& MGCHandle); static void FreeGCHandle(const MGCHandle& handle);
static bool HasCustomAttribute(void* klass, void* attribClass); static bool HasCustomAttribute(void* klass, void* attribClass);
static bool HasCustomAttribute(void* klass); static bool HasCustomAttribute(void* klass);

View File

@@ -606,15 +606,15 @@ MGCHandle CoreCLR::NewGCHandleWeakref(void* obj, bool track_resurrection)
return (MGCHandle)CoreCLR::CallStaticMethod<void*, void*, bool>(NewGCHandleWeakrefPtr, obj, track_resurrection); return (MGCHandle)CoreCLR::CallStaticMethod<void*, void*, bool>(NewGCHandleWeakrefPtr, obj, track_resurrection);
} }
void* CoreCLR::GetGCHandleTarget(const MGCHandle& MGCHandle) void* CoreCLR::GetGCHandleTarget(const MGCHandle& handle)
{ {
return (void*)MGCHandle; return (void*)handle;
} }
void CoreCLR::FreeGCHandle(const MGCHandle& MGCHandle) void CoreCLR::FreeGCHandle(const MGCHandle& handle)
{ {
static void* FreeGCHandlePtr = CoreCLR::GetStaticMethodPointer(TEXT("FreeGCHandle")); static void* FreeGCHandlePtr = CoreCLR::GetStaticMethodPointer(TEXT("FreeGCHandle"));
CoreCLR::CallStaticMethod<void, void*>(FreeGCHandlePtr, (void*)MGCHandle); CoreCLR::CallStaticMethod<void, void*>(FreeGCHandlePtr, (void*)handle);
} }
const char* CoreCLR::GetClassFullname(void* klass) const char* CoreCLR::GetClassFullname(void* klass)

View File

@@ -180,7 +180,7 @@ namespace Flax.Deps.Dependencies
{ {
Utilities.FileCopy(Path.Combine(srcHostRuntime, file), Path.Combine(dstBinaries, file)); Utilities.FileCopy(Path.Combine(srcHostRuntime, file), Path.Combine(dstBinaries, file));
} }
var dstDotnet = Path.Combine(dstBinaries, "Dotnet"); var dstDotnet = Path.Combine(GetBinariesFolder(options, targetPlatform), "Dotnet");
var dstClassLibrary = Path.Combine(dstDotnet, "shared", "Microsoft.NETCore.App", version); var dstClassLibrary = Path.Combine(dstDotnet, "shared", "Microsoft.NETCore.App", version);
SetupDirectory(dstClassLibrary, true); SetupDirectory(dstClassLibrary, true);
foreach (var file in new[] foreach (var file in new[]