pythonhacktoberfeststeamauthenticationauthenticatorsteam-authenticatorsteam-clientsteam-guard-codessteam-websteamworksvalvewebapi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
513 lines
10 KiB
513 lines
10 KiB
from steam.enums.base import SteamIntEnum
|
|
|
|
|
|
class EResult(SteamIntEnum):
|
|
Invalid = 0
|
|
OK = 1
|
|
Fail = 2
|
|
NoConnection = 3
|
|
InvalidPassword = 5
|
|
LoggedInElsewhere = 6
|
|
InvalidProtocolVer = 7
|
|
InvalidParam = 8
|
|
FileNotFound = 9
|
|
Busy = 10
|
|
InvalidState = 11
|
|
InvalidName = 12
|
|
InvalidEmail = 13
|
|
DuplicateName = 14
|
|
AccessDenied = 15
|
|
Timeout = 16
|
|
Banned = 17
|
|
AccountNotFound = 18
|
|
InvalidSteamID = 19
|
|
ServiceUnavailable = 20
|
|
NotLoggedOn = 21
|
|
Pending = 22
|
|
EncryptionFailure = 23
|
|
InsufficientPrivilege = 24
|
|
LimitExceeded = 25
|
|
Revoked = 26
|
|
Expired = 27
|
|
AlreadyRedeemed = 28
|
|
DuplicateRequest = 29
|
|
AlreadyOwned = 30
|
|
IPNotFound = 31
|
|
PersistFailed = 32
|
|
LockingFailed = 33
|
|
LogonSessionReplaced = 34
|
|
ConnectFailed = 35
|
|
HandshakeFailed = 36
|
|
IOFailure = 37
|
|
RemoteDisconnect = 38
|
|
ShoppingCartNotFound = 39
|
|
Blocked = 40
|
|
Ignored = 41
|
|
NoMatch = 42
|
|
AccountDisabled = 43
|
|
ServiceReadOnly = 44
|
|
AccountNotFeatured = 45
|
|
AdministratorOK = 46
|
|
ContentVersion = 47
|
|
TryAnotherCM = 48
|
|
PasswordRequiredToKickSession = 49
|
|
AlreadyLoggedInElsewhere = 50
|
|
Suspended = 51
|
|
Cancelled = 52
|
|
DataCorruption = 53
|
|
DiskFull = 54
|
|
RemoteCallFailed = 55
|
|
PasswordUnset = 56
|
|
ExternalAccountUnlinked = 57
|
|
PSNTicketInvalid = 58
|
|
ExternalAccountAlreadyLinked = 59
|
|
RemoteFileConflict = 60
|
|
IllegalPassword = 61
|
|
SameAsPreviousValue = 62
|
|
AccountLogonDenied = 63
|
|
CannotUseOldPassword = 64
|
|
InvalidLoginAuthCode = 65
|
|
AccountLogonDeniedNoMail = 66
|
|
HardwareNotCapableOfIPT = 67
|
|
IPTInitError = 68
|
|
ParentalControlRestricted = 69
|
|
FacebookQueryError = 70
|
|
ExpiredLoginAuthCode = 71
|
|
IPLoginRestrictionFailed = 72
|
|
AccountLockedDown = 73
|
|
AccountLogonDeniedVerifiedEmailRequired = 74
|
|
NoMatchingURL = 75
|
|
BadResponse = 76
|
|
RequirePasswordReEntry = 77
|
|
ValueOutOfRange = 78
|
|
UnexpectedError = 79
|
|
Disabled = 80
|
|
InvalidCEGSubmission = 81
|
|
RestrictedDevice = 82
|
|
RegionLocked = 83
|
|
RateLimitExceeded = 84
|
|
AccountLoginDeniedNeedTwoFactor = 85
|
|
ItemDeleted = 86
|
|
AccountLoginDeniedThrottle = 87
|
|
TwoFactorCodeMismatch = 88
|
|
TwoFactorActivationCodeMismatch = 89
|
|
AccountAssociatedToMultiplePartners = 90
|
|
NotModified = 91
|
|
NoMobileDevice = 92
|
|
TimeNotSynced = 93
|
|
SMSCodeFailed = 94
|
|
AccountLimitExceeded = 95
|
|
AccountActivityLimitExceeded = 96
|
|
PhoneActivityLimitExceeded = 97
|
|
RefundToWallet = 98
|
|
EmailSendFailure = 99
|
|
NotSettled = 100
|
|
NeedCaptcha = 101
|
|
GSLTDenied = 102
|
|
GSOwnerDenied = 103
|
|
InvalidItemType = 104
|
|
IPBanned = 105
|
|
GSLTExpired = 106
|
|
InsufficientFunds = 107
|
|
TooManyPending = 108
|
|
|
|
|
|
class EUniverse(SteamIntEnum):
|
|
Invalid = 0
|
|
Public = 1
|
|
Beta = 2
|
|
Internal = 3
|
|
Dev = 4
|
|
Max = 5
|
|
|
|
|
|
class EType(SteamIntEnum):
|
|
Invalid = 0
|
|
Individual = 1
|
|
Multiseat = 2
|
|
GameServer = 3
|
|
AnonGameServer = 4
|
|
Pending = 5
|
|
ContentServer = 6
|
|
Clan = 7
|
|
Chat = 8
|
|
ConsoleUser = 9
|
|
AnonUser = 10
|
|
Max = 11
|
|
|
|
|
|
class EInstanceFlag(SteamIntEnum):
|
|
MMSLobby = 0x20000
|
|
Lobby = 0x40000
|
|
Clan = 0x80000
|
|
|
|
|
|
class EVanityUrlType(SteamIntEnum):
|
|
Individual = 1
|
|
Group = 2
|
|
GameGroup = 3
|
|
|
|
|
|
class EServerType(SteamIntEnum):
|
|
Invalid = -1
|
|
First = 0
|
|
GM = 1
|
|
BUM = 2 # obsolete
|
|
AM = 3
|
|
BS = 4
|
|
VS = 5
|
|
ATS = 6
|
|
CM = 7
|
|
FBS = 8
|
|
BoxMonitor = 9
|
|
SS = 10
|
|
DRMS = 11
|
|
HubOBSOLETE = 12
|
|
Console = 13
|
|
PICS = 14
|
|
Client = 15
|
|
BootstrapOBSOLETE = 16
|
|
DP = 17
|
|
WG = 18
|
|
SM = 19
|
|
SLC = 20
|
|
UFS = 21
|
|
Util = 23
|
|
DSS = 24
|
|
Community = 24
|
|
P2PRelayOBSOLETE = 25
|
|
AppInformation = 26
|
|
Spare = 27
|
|
FTS = 28
|
|
EPM = 29 # obsolete
|
|
PS = 30
|
|
IS = 31
|
|
CCS = 32
|
|
DFS = 33
|
|
LBS = 34
|
|
MDS = 35
|
|
CS = 36
|
|
GC = 37
|
|
NS = 38
|
|
OGS = 39
|
|
WebAPI = 40
|
|
UDS = 41
|
|
MMS = 42
|
|
GMS = 43
|
|
KGS = 44
|
|
UCM = 45
|
|
RM = 46
|
|
FS = 47
|
|
Econ = 48
|
|
Backpack = 49
|
|
UGS = 50
|
|
# Store = 51 # obsolete
|
|
StoreFeature = 51
|
|
MoneyStats = 52
|
|
CRE = 53
|
|
UMQ = 54
|
|
Workshop = 55
|
|
BRP = 56
|
|
GCH = 57
|
|
MPAS = 58
|
|
Trade = 59
|
|
Secrets = 60
|
|
Logsink = 61
|
|
Market = 62
|
|
Quest = 63
|
|
WDS = 64
|
|
ACS = 65
|
|
PNP = 66
|
|
TaxForm = 67
|
|
ExternalMonitor = 68
|
|
Parental = 69
|
|
PartnerUpload = 70
|
|
Partner = 71
|
|
ES = 72
|
|
DepotWebContent = 73
|
|
ExternalConfig = 74
|
|
GameNotifications = 75
|
|
MarketRepl = 76
|
|
MarketSearch = 77
|
|
Localization = 78
|
|
Steam2Emulator = 79
|
|
PublicTest = 80
|
|
SolrMgr = 81
|
|
BroadcastRelay = 82
|
|
BroadcastDirectory = 83
|
|
VideoManager = 84
|
|
TradeOffer = 85
|
|
BroadcastChat = 86
|
|
Phone = 87
|
|
AccountScore = 88
|
|
Support = 89
|
|
LogRequest = 90
|
|
LogWorker = 91
|
|
EmailDelivery = 92
|
|
InventoryManagement = 93
|
|
Auth = 94
|
|
StoreCatalog = 95
|
|
HLTVRelay = 96
|
|
|
|
Max = 97
|
|
|
|
|
|
class EOSType(SteamIntEnum):
|
|
Unknown = -1
|
|
|
|
IOSUnknown = -600
|
|
|
|
AndroidUnknown = -500
|
|
|
|
UMQ = -400
|
|
|
|
PS3 = -300
|
|
|
|
MacOSUnknown = -102
|
|
MacOS104 = -101
|
|
MacOS105 = -100
|
|
MacOS1058 = -99
|
|
MacOS106 = -95
|
|
MacOS1063 = -94
|
|
MacOS1064_slgu = -93
|
|
MacOS1067 = -92
|
|
MacOS107 = -90
|
|
MacOS108 = -89
|
|
MacOS109 = -88
|
|
MacOS1010 = -87
|
|
MacOS1011 = -86
|
|
MacOS1012 = -85
|
|
MacOSMax = -1
|
|
|
|
LinuxUnknown = -203
|
|
Linux22 = -202
|
|
Linux24 = -201
|
|
Linux26 = -200
|
|
Linux32 = -199
|
|
Linux35 = -198
|
|
Linux36 = -197
|
|
Linux310 = -196
|
|
LinuxMax = -103
|
|
|
|
WinUnknown = 0
|
|
Win311 = 1
|
|
Win95 = 2
|
|
Win98 = 3
|
|
WinME = 4
|
|
WinNT = 5
|
|
# Win200 = 6 # obsolete
|
|
Win2000 = 6
|
|
WinXP = 7
|
|
Win2003 = 8
|
|
WinVista = 9
|
|
# Win7 = 10 # obsolete
|
|
Windows7 = 10
|
|
Win2008 = 11
|
|
Win2012 = 12
|
|
# Win8 = 13 # obsolete "renamed to Windows8"
|
|
Windows8 = 13
|
|
# Win81 = 14 # obsolete "renamed to Windows81"
|
|
Windows81 = 14
|
|
Win2012R2 = 15
|
|
# Win10 = 16 # obsolete "renamed to Windows10"
|
|
Windows10 = 16
|
|
|
|
WinMAX = 15
|
|
|
|
Max = 26
|
|
|
|
|
|
class EFriendRelationship(SteamIntEnum):
|
|
NONE = 0
|
|
Blocked = 1
|
|
RequestRecipient = 2
|
|
Friend = 3
|
|
RequestInitiator = 4
|
|
Ignored = 5
|
|
IgnoredFriend = 6
|
|
SuggestedFriend = 7
|
|
Max = 8
|
|
|
|
|
|
class EAccountFlags(SteamIntEnum):
|
|
NormalUser = 0
|
|
PersonaNameSet = 1
|
|
Unbannable = 2
|
|
PasswordSet = 4
|
|
Support = 8
|
|
Admin = 16
|
|
Supervisor = 32
|
|
AppEditor = 64
|
|
HWIDSet = 128
|
|
PersonalQASet = 256
|
|
VacBeta = 512
|
|
Debug = 1024
|
|
Disabled = 2048
|
|
LimitedUser = 4096
|
|
LimitedUserForce = 8192
|
|
EmailValidated = 16384
|
|
MarketingTreatment = 32768
|
|
OGGInviteOptOut = 65536
|
|
ForcePasswordChange = 131072
|
|
ForceEmailVerification = 262144
|
|
LogonExtraSecurity = 524288
|
|
LogonExtraSecurityDisabled = 1048576
|
|
Steam2MigrationComplete = 2097152
|
|
NeedLogs = 4194304
|
|
Lockdown = 8388608
|
|
MasterAppEditor = 16777216
|
|
BannedFromWebAPI = 33554432
|
|
ClansOnlyFromFriends = 67108864
|
|
GlobalModerator = 134217728
|
|
ParentalSettings = 268435456
|
|
ThirdPartySupport = 536870912
|
|
NeedsSSANextSteamLogon = 1073741824
|
|
|
|
|
|
class EFriendFlags(SteamIntEnum):
|
|
NONE = 0
|
|
Blocked = 1
|
|
FriendshipRequested = 2
|
|
Immediate = 4
|
|
ClanMember = 8
|
|
OnGameServer = 16
|
|
RequestingFriendship = 128
|
|
RequestingInfo = 256
|
|
Ignored = 512
|
|
IgnoredFriend = 1024
|
|
Suggested = 2048
|
|
ChatMember = 4096
|
|
FlagAll = 65535
|
|
|
|
|
|
class EPersonaState(SteamIntEnum):
|
|
Offline = 0
|
|
Online = 1
|
|
Busy = 2
|
|
Away = 3
|
|
Snooze = 4
|
|
LookingToTrade = 5
|
|
LookingToPlay = 6
|
|
Max = 7
|
|
|
|
|
|
class EPersonaStateFlag(SteamIntEnum):
|
|
HasRichPresence = 1
|
|
InJoinableGame = 2
|
|
HasGoldenProfile = 4
|
|
# OnlineUsingWeb = 256 obsolete "renamed to ClientTypeWeb"
|
|
ClientTypeWeb = 256
|
|
# OnlineUsingMobile = 512 obsolete "renamed to ClientTypeMobile"
|
|
ClientTypeMobile = 512
|
|
# OnlineUsingBigPicture = 1024 obsolete "renamed to ClientTypeTenfoot"
|
|
ClientTypeTenfoot = 1024
|
|
# OnlineUsingVR = 2048 obsolete "renamed to ClientTypeVR"
|
|
ClientTypeVR = 2048
|
|
LaunchTypeGamepad = 4096
|
|
|
|
|
|
class EClientPersonaStateFlag(SteamIntEnum):
|
|
Status = 1
|
|
PlayerName = 2
|
|
QueryPort = 4
|
|
SourceID = 8
|
|
Presence = 16
|
|
Metadata = 32 # obsolete
|
|
LastSeen = 64
|
|
ClanInfo = 128
|
|
GameExtraInfo = 256
|
|
GameDataBlob = 512
|
|
ClanTag = 1024
|
|
Facebook = 2048
|
|
|
|
class ELeaderboardDataRequest(SteamIntEnum):
|
|
Global = 0
|
|
GlobalAroundUser = 1
|
|
Friends = 2
|
|
Users = 3
|
|
|
|
class ELeaderboardSortMethod(SteamIntEnum):
|
|
NONE = 0
|
|
Ascending = 1
|
|
Descending = 2
|
|
|
|
class ELeaderboardDisplayType(SteamIntEnum):
|
|
NONE = 0
|
|
Numeric = 1
|
|
TimeSeconds = 2
|
|
TimeMilliSeconds = 3
|
|
|
|
class ELeaderboardUploadScoreMethod(SteamIntEnum):
|
|
NONE = 0
|
|
KeepBest = 1
|
|
ForceUpdate = 2
|
|
|
|
class ETwoFactorTokenType(SteamIntEnum):
|
|
NONE = 0
|
|
ValveMobileApp = 1
|
|
ThirdParty = 2
|
|
|
|
class EChatEntryType(SteamIntEnum):
|
|
Invalid = 0
|
|
ChatMsg = 1
|
|
Typing = 2
|
|
InviteGame = 3
|
|
Emote = 4 # No longer supported by clients
|
|
LobbyGameStart = 5 # Listen for LobbyGameCreated_t callback instead
|
|
LeftConversation = 6
|
|
Entered = 7
|
|
WasKicked = 8
|
|
WasBanned = 9
|
|
Disconnected = 10
|
|
HistoricalChat = 11
|
|
Reserved1 = 12
|
|
Reserved2 = 13
|
|
LinkBlocked = 14
|
|
|
|
class ECurrencyCode(SteamIntEnum):
|
|
Invalid = 0
|
|
USD = 1
|
|
GBP = 2
|
|
EUR = 3
|
|
CHF = 4
|
|
RUB = 5
|
|
PLN = 6
|
|
BRL = 7
|
|
JPY = 8
|
|
NOK = 9
|
|
IDR = 10
|
|
MYR = 11
|
|
PHP = 12
|
|
SGD = 13
|
|
THB = 14
|
|
VND = 15
|
|
KRW = 16
|
|
TRY = 17
|
|
UAH = 18
|
|
MXN = 19
|
|
CAD = 20
|
|
AUD = 21
|
|
NZD = 22
|
|
CNY = 23
|
|
INR = 24
|
|
CLP = 25
|
|
PEN = 26
|
|
COP = 27
|
|
ZAR = 28
|
|
HKD = 29
|
|
TWD = 30
|
|
SAR = 31
|
|
AED = 32
|
|
SEK = 33
|
|
Max = 34
|
|
|
|
|
|
# Do not remove
|
|
from sys import modules
|
|
from enum import EnumMeta
|
|
|
|
__all__ = list(map(lambda y: y.__name__,
|
|
filter(lambda x: x.__class__ is EnumMeta, modules[__name__].__dict__.values()),
|
|
))
|
|
|
|
del modules, EnumMeta
|
|
|