mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-27 07:05:50 +03:00
85 lines
3.1 KiB
C#
85 lines
3.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
public static class Cleanup
|
|
{
|
|
public static string ConvertType( string type )
|
|
{
|
|
type = type.Replace( "CSteamID", "SteamId" );
|
|
type = type.Replace( "CGameID", "GameId" );
|
|
type = type.Replace( "PersonaState", "FriendState" );
|
|
type = type.Replace( "AudioPlayback_Status", "MusicStatus" );
|
|
type = type.Replace( "AuthSessionResponse", "AuthResponse" );
|
|
type = type.Replace( "FriendRelationship", "Relationship" );
|
|
type = type.Replace( "BeginAuthSessionResult", "BeginAuthResult" );
|
|
type = type.Replace( "PublishedFileId_t", "PublishedFileId" );
|
|
type = type.Replace( "PublishedFileId_t", "PublishedFileId" );
|
|
type = type.Replace( "AppId_t", "AppId" );
|
|
type = type.Replace( "LeaderboardSortMethod", "LeaderboardSort" );
|
|
type = type.Replace( "LeaderboardDisplayType", "LeaderboardDisplay" );
|
|
type = type.Replace( "UGCMatchingUGCType", "UgcType" );
|
|
type = type.Replace( "SteamItemInstanceID_t", "InventoryItemId" );
|
|
type = type.Replace( "SteamItemDef_t", "InventoryDefId" );
|
|
type = type.Replace( "ChatRoomEnterResponse", "RoomEnter" );
|
|
type = type.Replace( "SteamNetworkPingLocation_t", "PingLocation" );
|
|
type = type.Replace( "SteamNetworkingConfigValue", "NetConfig" );
|
|
type = type.Replace( "SteamNetworkingConfigScope", "NetScope" );
|
|
type = type.Replace( "SteamNetworkingConfigDataType", "NetConfigType" );
|
|
|
|
return type;
|
|
}
|
|
|
|
public static bool ShouldCreate( string type )
|
|
{
|
|
if ( type == "SteamId" ) return false;
|
|
if ( type == "LeaderboardSort" ) return false;
|
|
if ( type == "LeaderboardDisplay" ) return false;
|
|
if ( type == "AppId" ) return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
internal static string Expose( string name )
|
|
{
|
|
if ( name == "FriendState" ) return "public";
|
|
if ( name == "MusicStatus" ) return "public";
|
|
if ( name == "ParentalFeature" ) return "public";
|
|
if ( name == "AuthResponse" ) return "public";
|
|
if ( name == "Relationship" ) return "public";
|
|
if ( name == "BeginAuthResult" ) return "public";
|
|
if ( name == "Universe" ) return "public";
|
|
if ( name == "NotificationPosition" ) return "public";
|
|
if ( name == "GamepadTextInputMode" ) return "public";
|
|
if ( name == "GamepadTextInputLineMode" ) return "public";
|
|
if ( name == "CheckFileSignature" ) return "public";
|
|
if ( name == "BroadcastUploadResult" ) return "public";
|
|
if ( name == "PublishedFileId" ) return "public";
|
|
if ( name == "Result" ) return "public";
|
|
if ( name == "UgcType" ) return "public";
|
|
if ( name == "InventoryItemId" ) return "public";
|
|
if ( name == "InventoryDefId" ) return "public";
|
|
if ( name == "P2PSend" ) return "public";
|
|
if ( name == "RoomEnter" ) return "public";
|
|
|
|
return "internal";
|
|
}
|
|
|
|
internal static bool IsDeprecated( string name )
|
|
{
|
|
if ( name.StartsWith( "ISteamRemoteStorage." ) )
|
|
{
|
|
if ( name.Contains( "Publish" ) ) return true;
|
|
if ( name.Contains( "ResetFileRequestState" ) ) return true;
|
|
if ( name.Contains( "EnumerateUserSubscribedFiles" ) ) return true;
|
|
if ( name.Contains( "EnumerateUserSharedWorkshopFile" ) ) return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|