Skip to content

Commit

Permalink
Update some enums. (#698)
Browse files Browse the repository at this point in the history
  • Loading branch information
psychonic authored Jun 25, 2019
1 parent 361b0d5 commit cc12644
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 9 deletions.
38 changes: 33 additions & 5 deletions Resources/SteamLanguage/enums.steamd
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ enum EFriendRelationship
RequestInitiator = 4;
Ignored = 5;
IgnoredFriend = 6;
SuggestedFriend = 7;
SuggestedFriend = 7; removed "was used by the original implementation of the facebook linking feature; but now unused."

Max = 8;
};
Expand Down Expand Up @@ -476,6 +476,8 @@ enum EClanRelationship
Member = 3;
Kicked = 4;
KickAcknowledged = 5;
PendingApproval = 6;
RequestDenied = 7;
};

enum EAuthSessionResponse
Expand Down Expand Up @@ -700,6 +702,11 @@ enum EOSType

enum EServerType
{
Util = -2;
Client = -3;
CServer = -4;
CEconBase = -5;

Invalid = -1;
First = 0;

Expand All @@ -721,14 +728,15 @@ enum EServerType
Console = 13;
ASBOBSOLETE = 14; removed
PICS = 14;
Client = 15;
Client = 15; removed
BootstrapOBSOLETE = 16; removed
ContentStats = 16;
DP = 17;
WG = 18;
SM = 19;
SLC = 20;
UFS = 21;
Util = 23;
Util = 23; removed
DSS = 24; removed "renamed to Community"
Community = 24;
P2PRelayOBSOLETE = 25; removed
Expand All @@ -737,6 +745,7 @@ enum EServerType
FTS = 28;
EPM = 29; removed
EPMOBSOLETE = 29; removed
SiteLicense = 29;
PS = 30;
IS = 31;
CCS = 32;
Expand Down Expand Up @@ -805,8 +814,25 @@ enum EServerType
Auth = 94;
StoreCatalog = 95;
HLTVRelay = 96;

Max = 97;
IDLS = 97;
Perf = 98;
ItemInventory = 99;
Watchdog = 100;
AccountHistory = 101;
Chat = 102;
Shader = 103;
AccountHardware = 104;
WebRTC = 105;
Giveaway = 106;
ChatRoom = 107;
VoiceChat = 108;
QMS = 109;
Trust = 110;
TimeMachine = 111;
VACDBMaster = 112;
ContentServerConfig = 113;

Max = 114;
};

enum EBillingType
Expand Down Expand Up @@ -1012,6 +1038,8 @@ enum EEconTradeResponse
NeedsMobileConfirmation = 29;
TradingHoldForClearedTradeOffersInitiator = 30;
WouldExceedMaxAssetCount = 31;
DisabledInRegion = 32;
DisabledInPartnerRegion = 33;
OKToDeliver = 50;
};

Expand Down
32 changes: 28 additions & 4 deletions SteamKit2/SteamKit2/Base/Generated/SteamLanguage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1712,7 +1712,6 @@ public enum EFriendRelationship
RequestInitiator = 4,
Ignored = 5,
IgnoredFriend = 6,
SuggestedFriend = 7,
Max = 8,
}
[Flags]
Expand Down Expand Up @@ -2082,6 +2081,8 @@ public enum EClanRelationship
Member = 3,
Kicked = 4,
KickAcknowledged = 5,
PendingApproval = 6,
RequestDenied = 7,
}
public enum EAuthSessionResponse
{
Expand Down Expand Up @@ -2262,6 +2263,10 @@ public enum EOSType
}
public enum EServerType
{
Util = -2,
Client = -3,
CServer = -4,
CEconBase = -5,
Invalid = -1,
First = 0,
Shell = 0,
Expand All @@ -2277,17 +2282,17 @@ public enum EServerType
DRMS = 11,
Console = 13,
PICS = 14,
Client = 15,
ContentStats = 16,
DP = 17,
WG = 18,
SM = 19,
SLC = 20,
UFS = 21,
Util = 23,
Community = 24,
AppInformation = 26,
Spare = 27,
FTS = 28,
SiteLicense = 29,
PS = 30,
IS = 31,
CCS = 32,
Expand Down Expand Up @@ -2355,7 +2360,24 @@ public enum EServerType
Auth = 94,
StoreCatalog = 95,
HLTVRelay = 96,
Max = 97,
IDLS = 97,
Perf = 98,
ItemInventory = 99,
Watchdog = 100,
AccountHistory = 101,
Chat = 102,
Shader = 103,
AccountHardware = 104,
WebRTC = 105,
Giveaway = 106,
ChatRoom = 107,
VoiceChat = 108,
QMS = 109,
Trust = 110,
TimeMachine = 111,
VACDBMaster = 112,
ContentServerConfig = 113,
Max = 114,
}
public enum EBillingType
{
Expand Down Expand Up @@ -2545,6 +2567,8 @@ public enum EEconTradeResponse
NeedsMobileConfirmation = 29,
TradingHoldForClearedTradeOffersInitiator = 30,
WouldExceedMaxAssetCount = 31,
DisabledInRegion = 32,
DisabledInPartnerRegion = 33,
OKToDeliver = 50,
}
[Flags]
Expand Down

0 comments on commit cc12644

Please sign in to comment.