From 0e63c4a2c6dec8dfa260501fb7d73750261ea7b7 Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Sat, 25 Nov 2023 18:39:02 +0800 Subject: + init --- Assembly_Firstpass/Steamworks/SteamAPI.cs | 62 +++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 Assembly_Firstpass/Steamworks/SteamAPI.cs (limited to 'Assembly_Firstpass/Steamworks/SteamAPI.cs') diff --git a/Assembly_Firstpass/Steamworks/SteamAPI.cs b/Assembly_Firstpass/Steamworks/SteamAPI.cs new file mode 100644 index 0000000..73cbebd --- /dev/null +++ b/Assembly_Firstpass/Steamworks/SteamAPI.cs @@ -0,0 +1,62 @@ +namespace Steamworks; + +public static class SteamAPI +{ + public static bool Init() + { + InteropHelp.TestIfPlatformSupported(); + bool flag = NativeMethods.SteamAPI_Init(); + if (flag) + { + flag = CSteamAPIContext.Init(); + } + if (flag) + { + CallbackDispatcher.Initialize(); + } + return flag; + } + + public static void Shutdown() + { + InteropHelp.TestIfPlatformSupported(); + NativeMethods.SteamAPI_Shutdown(); + CSteamAPIContext.Clear(); + CallbackDispatcher.Shutdown(); + } + + public static bool RestartAppIfNecessary(AppId_t unOwnAppID) + { + InteropHelp.TestIfPlatformSupported(); + return NativeMethods.SteamAPI_RestartAppIfNecessary(unOwnAppID); + } + + public static void ReleaseCurrentThreadMemory() + { + InteropHelp.TestIfPlatformSupported(); + NativeMethods.SteamAPI_ReleaseCurrentThreadMemory(); + } + + public static void RunCallbacks() + { + CallbackDispatcher.RunFrame(isGameServer: false); + } + + public static bool IsSteamRunning() + { + InteropHelp.TestIfPlatformSupported(); + return NativeMethods.SteamAPI_IsSteamRunning(); + } + + public static HSteamPipe GetHSteamPipe() + { + InteropHelp.TestIfPlatformSupported(); + return (HSteamPipe)NativeMethods.SteamAPI_GetHSteamPipe(); + } + + public static HSteamUser GetHSteamUser() + { + InteropHelp.TestIfPlatformSupported(); + return (HSteamUser)NativeMethods.SteamAPI_GetHSteamUser(); + } +} -- cgit v1.1-26-g67d0