/// <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()));
 }
Esempio n. 2
0
 /// <summary>
 /// <para> Advise steam china duration control system about the online state of the game.</para>
 /// <para> This will prevent offline gameplay time from counting against a user's</para>
 /// <para> playtime limits.</para>
 /// </summary>
 public static bool BSetDurationControlOnlineState(EDurationControlOnlineState eNewState)
 {
     InteropHelp.TestIfAvailableClient();
     return(NativeMethods.ISteamUser_BSetDurationControlOnlineState(CSteamAPIContext.GetSteamUser(), eNewState));
 }
 /// <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> 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 awaiting (re)verification</para>
 /// </summary>
 public static bool BIsPhoneRequiringVerification()
 {
     InteropHelp.TestIfAvailableClient();
     return(NativeMethods.ISteamUser_BIsPhoneRequiringVerification(CSteamAPIContext.GetSteamUser()));
 }
 /// <summary>
 /// <para> Retrieves a finished ticket.</para>
 /// <para> If no ticket is available, or your buffer is too small, returns false.</para>
 /// <para> Upon exit, *pcbTicket will be either the size of the ticket copied into your buffer</para>
 /// <para> (if true was returned), or the size needed (if false was returned).  To determine the</para>
 /// <para> proper size of the ticket, you can pass pTicket=NULL and cbMaxTicket=0; if a ticket</para>
 /// <para> is available, *pcbTicket will contain the size needed, otherwise it will be zero.</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> 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> 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> 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> 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());
 }
Esempio n. 13
0
 /// <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>
 /// <para> DEPRECATED!  This function will be removed from the SDK in an upcoming version.</para>
 /// <para>              Please migrate to BeginAuthSession and related functions.</para>
 /// </summary>
 public static void TerminateGameConnection_DEPRECATED(uint unIPServer, ushort usPortServer)
 {
     InteropHelp.TestIfAvailableClient();
     NativeMethods.ISteamUser_TerminateGameConnection_DEPRECATED(CSteamAPIContext.GetSteamUser(), unIPServer, usPortServer);
 }
Esempio n. 14
0
 /// <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( &lt;appID&gt; )</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>
 /// <para> DEPRECATED!  This function will be removed from the SDK in an upcoming version.</para>
 /// <para>              Please migrate to BeginAuthSession and related functions.</para>
 /// </summary>
 public static int InitiateGameConnection_DEPRECATED(byte[] pAuthBlob, int cbMaxAuthBlob, CSteamID steamIDGameServer, uint unIPServer, ushort usPortServer, bool bSecure)
 {
     InteropHelp.TestIfAvailableClient();
     return(NativeMethods.ISteamUser_InitiateGameConnection_DEPRECATED(CSteamAPIContext.GetSteamUser(), pAuthBlob, cbMaxAuthBlob, steamIDGameServer, unIPServer, usPortServer, bSecure));
 }
 /// <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> 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> 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> 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> 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> 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> 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> gets whether the users phone number is identifying</para>
 /// </summary>
 public static bool BIsPhoneIdentifying()
 {
     InteropHelp.TestIfAvailableClient();
     return(NativeMethods.ISteamUser_BIsPhoneIdentifying(CSteamAPIContext.GetSteamUser()));
 }
 /// <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);
 }
 public static SteamAPICall_t GetMarketEligibility()
 {
     InteropHelp.TestIfAvailableClient();
     return((SteamAPICall_t)NativeMethods.ISteamUser_GetMarketEligibility(CSteamAPIContext.GetSteamUser()));
 }
Esempio n. 26
0
 /// <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()));
 }