123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- // This file is provided under The MIT License as part of Steamworks.NET.
- // Copyright (c) 2013-2019 Riley Labrecque
- // Please see the included LICENSE.txt for additional information.
- // This file is automatically generated.
- // Changes to this file will be reverted when you update Steamworks.NET
- #if UNITY_ANDROID || UNITY_IOS || UNITY_TIZEN || UNITY_TVOS || UNITY_WEBGL || UNITY_WSA || UNITY_PS4 || UNITY_WII || UNITY_XBOXONE || UNITY_SWITCH
- #define DISABLESTEAMWORKS
- #endif
- #if !DISABLESTEAMWORKS
- using System.Runtime.InteropServices;
- using IntPtr = System.IntPtr;
- namespace Steamworks {
- public static class SteamUser {
- /// <summary>
- /// <para> returns the HSteamUser this interface represents</para>
- /// <para> this is only used internally by the API, and by a few select interfaces that support multi-user</para>
- /// </summary>
- public static HSteamUser GetHSteamUser() {
- InteropHelp.TestIfAvailableClient();
- return (HSteamUser)NativeMethods.ISteamUser_GetHSteamUser(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> returns true if the Steam client current has a live connection to the Steam servers.</para>
- /// <para> If false, it means there is no active connection due to either a networking issue on the local machine, or the Steam server is down/busy.</para>
- /// <para> The Steam client will automatically be trying to recreate the connection as often as possible.</para>
- /// </summary>
- public static bool BLoggedOn() {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_BLoggedOn(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> returns the CSteamID of the account currently logged into the Steam client</para>
- /// <para> a CSteamID is a unique identifier for an account, and used to differentiate users in all parts of the Steamworks API</para>
- /// </summary>
- public static CSteamID GetSteamID() {
- InteropHelp.TestIfAvailableClient();
- return (CSteamID)NativeMethods.ISteamUser_GetSteamID(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> Multiplayer Authentication functions</para>
- /// <para> InitiateGameConnection() starts the state machine for authenticating the game client with the game server</para>
- /// <para> It is the client portion of a three-way handshake between the client, the game server, and the steam servers</para>
- /// <para> Parameters:</para>
- /// <para> void *pAuthBlob - a pointer to empty memory that will be filled in with the authentication token.</para>
- /// <para> int cbMaxAuthBlob - the number of bytes of allocated memory in pBlob. Should be at least 2048 bytes.</para>
- /// <para> CSteamID steamIDGameServer - the steamID of the game server, received from the game server by the client</para>
- /// <para> CGameID gameID - the ID of the current game. For games without mods, this is just CGameID( <appID> )</para>
- /// <para> uint32 unIPServer, uint16 usPortServer - the IP address of the game server</para>
- /// <para> bool bSecure - whether or not the client thinks that the game server is reporting itself as secure (i.e. VAC is running)</para>
- /// <para> return value - returns the number of bytes written to pBlob. If the return is 0, then the buffer passed in was too small, and the call has failed</para>
- /// <para> The contents of pBlob should then be sent to the game server, for it to use to complete the authentication process.</para>
- /// </summary>
- public static int InitiateGameConnection(byte[] pAuthBlob, int cbMaxAuthBlob, CSteamID steamIDGameServer, uint unIPServer, ushort usPortServer, bool bSecure) {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_InitiateGameConnection(CSteamAPIContext.GetSteamUser(), pAuthBlob, cbMaxAuthBlob, steamIDGameServer, unIPServer, usPortServer, bSecure);
- }
- /// <summary>
- /// <para> notify of disconnect</para>
- /// <para> needs to occur when the game client leaves the specified game server, needs to match with the InitiateGameConnection() call</para>
- /// </summary>
- public static void TerminateGameConnection(uint unIPServer, ushort usPortServer) {
- InteropHelp.TestIfAvailableClient();
- NativeMethods.ISteamUser_TerminateGameConnection(CSteamAPIContext.GetSteamUser(), unIPServer, usPortServer);
- }
- /// <summary>
- /// <para> Legacy functions</para>
- /// <para> used by only a few games to track usage events</para>
- /// </summary>
- public static void TrackAppUsageEvent(CGameID gameID, int eAppUsageEvent, string pchExtraInfo = "") {
- InteropHelp.TestIfAvailableClient();
- using (var pchExtraInfo2 = new InteropHelp.UTF8StringHandle(pchExtraInfo)) {
- NativeMethods.ISteamUser_TrackAppUsageEvent(CSteamAPIContext.GetSteamUser(), gameID, eAppUsageEvent, pchExtraInfo2);
- }
- }
- /// <summary>
- /// <para> get the local storage folder for current Steam account to write application data, e.g. save games, configs etc.</para>
- /// <para> this will usually be something like "C:\Progam Files\Steam\userdata\<SteamID>\<AppID>\local"</para>
- /// </summary>
- public static bool GetUserDataFolder(out string pchBuffer, int cubBuffer) {
- InteropHelp.TestIfAvailableClient();
- IntPtr pchBuffer2 = Marshal.AllocHGlobal(cubBuffer);
- bool ret = NativeMethods.ISteamUser_GetUserDataFolder(CSteamAPIContext.GetSteamUser(), pchBuffer2, cubBuffer);
- pchBuffer = ret ? InteropHelp.PtrToStringUTF8(pchBuffer2) : null;
- Marshal.FreeHGlobal(pchBuffer2);
- return ret;
- }
- /// <summary>
- /// <para> Starts voice recording. Once started, use GetVoice() to get the data</para>
- /// </summary>
- public static void StartVoiceRecording() {
- InteropHelp.TestIfAvailableClient();
- NativeMethods.ISteamUser_StartVoiceRecording(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> Stops voice recording. Because people often release push-to-talk keys early, the system will keep recording for</para>
- /// <para> a little bit after this function is called. GetVoice() should continue to be called until it returns</para>
- /// <para> k_eVoiceResultNotRecording</para>
- /// </summary>
- public static void StopVoiceRecording() {
- InteropHelp.TestIfAvailableClient();
- NativeMethods.ISteamUser_StopVoiceRecording(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> Determine the size of captured audio data that is available from GetVoice.</para>
- /// <para> Most applications will only use compressed data and should ignore the other</para>
- /// <para> parameters, which exist primarily for backwards compatibility. See comments</para>
- /// <para> below for further explanation of "uncompressed" data.</para>
- /// </summary>
- public static EVoiceResult GetAvailableVoice(out uint pcbCompressed) {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_GetAvailableVoice(CSteamAPIContext.GetSteamUser(), out pcbCompressed, IntPtr.Zero, 0);
- }
- /// <summary>
- /// <para> ---------------------------------------------------------------------------</para>
- /// <para> NOTE: "uncompressed" audio is a deprecated feature and should not be used</para>
- /// <para> by most applications. It is raw single-channel 16-bit PCM wave data which</para>
- /// <para> may have been run through preprocessing filters and/or had silence removed,</para>
- /// <para> so the uncompressed audio could have a shorter duration than you expect.</para>
- /// <para> There may be no data at all during long periods of silence. Also, fetching</para>
- /// <para> uncompressed audio will cause GetVoice to discard any leftover compressed</para>
- /// <para> audio, so you must fetch both types at once. Finally, GetAvailableVoice is</para>
- /// <para> not precisely accurate when the uncompressed size is requested. So if you</para>
- /// <para> really need to use uncompressed audio, you should call GetVoice frequently</para>
- /// <para> with two very large (20kb+) output buffers instead of trying to allocate</para>
- /// <para> perfectly-sized buffers. But most applications should ignore all of these</para>
- /// <para> details and simply leave the "uncompressed" parameters as NULL/zero.</para>
- /// <para> ---------------------------------------------------------------------------</para>
- /// <para> Read captured audio data from the microphone buffer. This should be called</para>
- /// <para> at least once per frame, and preferably every few milliseconds, to keep the</para>
- /// <para> microphone input delay as low as possible. Most applications will only use</para>
- /// <para> compressed data and should pass NULL/zero for the "uncompressed" parameters.</para>
- /// <para> Compressed data can be transmitted by your application and decoded into raw</para>
- /// <para> using the DecompressVoice function below.</para>
- /// </summary>
- public static EVoiceResult GetVoice(bool bWantCompressed, byte[] pDestBuffer, uint cbDestBufferSize, out uint nBytesWritten) {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_GetVoice(CSteamAPIContext.GetSteamUser(), bWantCompressed, pDestBuffer, cbDestBufferSize, out nBytesWritten, false, IntPtr.Zero, 0, IntPtr.Zero, 0);
- }
- /// <summary>
- /// <para> Decodes the compressed voice data returned by GetVoice. The output data is</para>
- /// <para> raw single-channel 16-bit PCM audio. The decoder supports any sample rate</para>
- /// <para> from 11025 to 48000; see GetVoiceOptimalSampleRate() below for details.</para>
- /// <para> If the output buffer is not large enough, then *nBytesWritten will be set</para>
- /// <para> to the required buffer size, and k_EVoiceResultBufferTooSmall is returned.</para>
- /// <para> It is suggested to start with a 20kb buffer and reallocate as necessary.</para>
- /// </summary>
- public static EVoiceResult DecompressVoice(byte[] pCompressed, uint cbCompressed, byte[] pDestBuffer, uint cbDestBufferSize, out uint nBytesWritten, uint nDesiredSampleRate) {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_DecompressVoice(CSteamAPIContext.GetSteamUser(), pCompressed, cbCompressed, pDestBuffer, cbDestBufferSize, out nBytesWritten, nDesiredSampleRate);
- }
- /// <summary>
- /// <para> This returns the native sample rate of the Steam voice decompressor; using</para>
- /// <para> this sample rate for DecompressVoice will perform the least CPU processing.</para>
- /// <para> However, the final audio quality will depend on how well the audio device</para>
- /// <para> (and/or your application's audio output SDK) deals with lower sample rates.</para>
- /// <para> You may find that you get the best audio output quality when you ignore</para>
- /// <para> this function and use the native sample rate of your audio output device,</para>
- /// <para> which is usually 48000 or 44100.</para>
- /// </summary>
- public static uint GetVoiceOptimalSampleRate() {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_GetVoiceOptimalSampleRate(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> Retrieve ticket to be sent to the entity who wishes to authenticate you.</para>
- /// <para> pcbTicket retrieves the length of the actual ticket.</para>
- /// </summary>
- public static HAuthTicket GetAuthSessionTicket(byte[] pTicket, int cbMaxTicket, out uint pcbTicket) {
- InteropHelp.TestIfAvailableClient();
- return (HAuthTicket)NativeMethods.ISteamUser_GetAuthSessionTicket(CSteamAPIContext.GetSteamUser(), pTicket, cbMaxTicket, out pcbTicket);
- }
- /// <summary>
- /// <para> Authenticate ticket from entity steamID to be sure it is valid and isnt reused</para>
- /// <para> Registers for callbacks if the entity goes offline or cancels the ticket ( see ValidateAuthTicketResponse_t callback and EAuthSessionResponse )</para>
- /// </summary>
- public static EBeginAuthSessionResult BeginAuthSession(byte[] pAuthTicket, int cbAuthTicket, CSteamID steamID) {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_BeginAuthSession(CSteamAPIContext.GetSteamUser(), pAuthTicket, cbAuthTicket, steamID);
- }
- /// <summary>
- /// <para> Stop tracking started by BeginAuthSession - called when no longer playing game with this entity</para>
- /// </summary>
- public static void EndAuthSession(CSteamID steamID) {
- InteropHelp.TestIfAvailableClient();
- NativeMethods.ISteamUser_EndAuthSession(CSteamAPIContext.GetSteamUser(), steamID);
- }
- /// <summary>
- /// <para> Cancel auth ticket from GetAuthSessionTicket, called when no longer playing game with the entity you gave the ticket to</para>
- /// </summary>
- public static void CancelAuthTicket(HAuthTicket hAuthTicket) {
- InteropHelp.TestIfAvailableClient();
- NativeMethods.ISteamUser_CancelAuthTicket(CSteamAPIContext.GetSteamUser(), hAuthTicket);
- }
- /// <summary>
- /// <para> After receiving a user's authentication data, and passing it to BeginAuthSession, use this function</para>
- /// <para> to determine if the user owns downloadable content specified by the provided AppID.</para>
- /// </summary>
- public static EUserHasLicenseForAppResult UserHasLicenseForApp(CSteamID steamID, AppId_t appID) {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_UserHasLicenseForApp(CSteamAPIContext.GetSteamUser(), steamID, appID);
- }
- /// <summary>
- /// <para> returns true if this users looks like they are behind a NAT device. Only valid once the user has connected to steam</para>
- /// <para> (i.e a SteamServersConnected_t has been issued) and may not catch all forms of NAT.</para>
- /// </summary>
- public static bool BIsBehindNAT() {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_BIsBehindNAT(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> set data to be replicated to friends so that they can join your game</para>
- /// <para> CSteamID steamIDGameServer - the steamID of the game server, received from the game server by the client</para>
- /// <para> uint32 unIPServer, uint16 usPortServer - the IP address of the game server</para>
- /// </summary>
- public static void AdvertiseGame(CSteamID steamIDGameServer, uint unIPServer, ushort usPortServer) {
- InteropHelp.TestIfAvailableClient();
- NativeMethods.ISteamUser_AdvertiseGame(CSteamAPIContext.GetSteamUser(), steamIDGameServer, unIPServer, usPortServer);
- }
- /// <summary>
- /// <para> Requests a ticket encrypted with an app specific shared key</para>
- /// <para> pDataToInclude, cbDataToInclude will be encrypted into the ticket</para>
- /// <para> ( This is asynchronous, you must wait for the ticket to be completed by the server )</para>
- /// </summary>
- public static SteamAPICall_t RequestEncryptedAppTicket(byte[] pDataToInclude, int cbDataToInclude) {
- InteropHelp.TestIfAvailableClient();
- return (SteamAPICall_t)NativeMethods.ISteamUser_RequestEncryptedAppTicket(CSteamAPIContext.GetSteamUser(), pDataToInclude, cbDataToInclude);
- }
- /// <summary>
- /// <para> retrieve a finished ticket</para>
- /// </summary>
- public static bool GetEncryptedAppTicket(byte[] pTicket, int cbMaxTicket, out uint pcbTicket) {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_GetEncryptedAppTicket(CSteamAPIContext.GetSteamUser(), pTicket, cbMaxTicket, out pcbTicket);
- }
- /// <summary>
- /// <para> Trading Card badges data access</para>
- /// <para> if you only have one set of cards, the series will be 1</para>
- /// <para> the user has can have two different badges for a series; the regular (max level 5) and the foil (max level 1)</para>
- /// </summary>
- public static int GetGameBadgeLevel(int nSeries, bool bFoil) {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_GetGameBadgeLevel(CSteamAPIContext.GetSteamUser(), nSeries, bFoil);
- }
- /// <summary>
- /// <para> gets the Steam Level of the user, as shown on their profile</para>
- /// </summary>
- public static int GetPlayerSteamLevel() {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_GetPlayerSteamLevel(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> Requests a URL which authenticates an in-game browser for store check-out,</para>
- /// <para> and then redirects to the specified URL. As long as the in-game browser</para>
- /// <para> accepts and handles session cookies, Steam microtransaction checkout pages</para>
- /// <para> will automatically recognize the user instead of presenting a login page.</para>
- /// <para> The result of this API call will be a StoreAuthURLResponse_t callback.</para>
- /// <para> NOTE: The URL has a very short lifetime to prevent history-snooping attacks,</para>
- /// <para> so you should only call this API when you are about to launch the browser,</para>
- /// <para> or else immediately navigate to the result URL using a hidden browser window.</para>
- /// <para> NOTE 2: The resulting authorization cookie has an expiration time of one day,</para>
- /// <para> so it would be a good idea to request and visit a new auth URL every 12 hours.</para>
- /// </summary>
- public static SteamAPICall_t RequestStoreAuthURL(string pchRedirectURL) {
- InteropHelp.TestIfAvailableClient();
- using (var pchRedirectURL2 = new InteropHelp.UTF8StringHandle(pchRedirectURL)) {
- return (SteamAPICall_t)NativeMethods.ISteamUser_RequestStoreAuthURL(CSteamAPIContext.GetSteamUser(), pchRedirectURL2);
- }
- }
- /// <summary>
- /// <para> gets whether the users phone number is verified</para>
- /// </summary>
- public static bool BIsPhoneVerified() {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_BIsPhoneVerified(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> gets whether the user has two factor enabled on their account</para>
- /// </summary>
- public static bool BIsTwoFactorEnabled() {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_BIsTwoFactorEnabled(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> gets whether the users phone number is identifying</para>
- /// </summary>
- public static bool BIsPhoneIdentifying() {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_BIsPhoneIdentifying(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> gets whether the users phone number is awaiting (re)verification</para>
- /// </summary>
- public static bool BIsPhoneRequiringVerification() {
- InteropHelp.TestIfAvailableClient();
- return NativeMethods.ISteamUser_BIsPhoneRequiringVerification(CSteamAPIContext.GetSteamUser());
- }
- public static SteamAPICall_t GetMarketEligibility() {
- InteropHelp.TestIfAvailableClient();
- return (SteamAPICall_t)NativeMethods.ISteamUser_GetMarketEligibility(CSteamAPIContext.GetSteamUser());
- }
- /// <summary>
- /// <para> Retrieves anti indulgence / duration control for current user</para>
- /// </summary>
- public static SteamAPICall_t GetDurationControl() {
- InteropHelp.TestIfAvailableClient();
- return (SteamAPICall_t)NativeMethods.ISteamUser_GetDurationControl(CSteamAPIContext.GetSteamUser());
- }
- }
- }
- #endif // !DISABLESTEAMWORKS
|