diff --git a/cfg/cs2fixes/cs2fixes.cfg b/cfg/cs2fixes/cs2fixes.cfg index c1e5972ab..a169bafee 100644 --- a/cfg/cs2fixes/cs2fixes.cfg +++ b/cfg/cs2fixes/cs2fixes.cfg @@ -16,7 +16,6 @@ cs2f_trigger_timer_enable 0 // Whether to process countdown messages said by C cs2f_block_nav_lookup 0 // Whether to block navigation mesh lookup, improves server performance but breaks bot navigation cs2f_flashlight_enable 0 // Whether to enable flashlights cs2f_infinite_reserve_ammo 0 // Whether to enable infinite reserve ammo on weapons -cs2f_purge_entity_strings 0 // Whether to purge the EntityNames stringtable on new rounds cs2f_disable_subtick_move 0 // Whether to disable subtick movement cs2f_disable_subtick_shooting 0 // Whether to disable subtick shooting, experimental (WARNING: add "log_flags Shooting +DoNotEcho" to your cfg to prevent console spam on every shot fired) cs2f_full_alltalk 0 // Whether to enforce sv_full_alltalk 1 diff --git a/gamedata/cs2fixes.games.txt b/gamedata/cs2fixes.games.txt index 85fa85aed..742040ec8 100644 --- a/gamedata/cs2fixes.games.txt +++ b/gamedata/cs2fixes.games.txt @@ -42,8 +42,8 @@ "ServerMovementUnlock" { "library" "server" - "windows" "\x0F\x86\xB8\x2A\x2A\x2A\xF3\x0F\x58\xD4" - "linux" "\x0F\x87\x2A\x2A\x2A\x2A\xF3\x0F\x10\x3D\x2A\x2A\x2A\x2A\xF3\x0F\x11\xBD" + "windows" "\x0F\x86\xB0\x2A\x2A\x2A\xF3\x0F\x58\xD4" + "linux" "\x0F\x87\x2A\x2A\x2A\x2A\xF3\x0F\x10\x35\x2A\x2A\x2A\x2A\xF3\x0F\x11\xB5\x2A\x2A\x2A\x2A\x48\x89\xDE" } // String: "CCSPlayerPawnBase::SwitchTeam", just keep in mind this is actually CCSPlayerController::SwitchTeam "CCSPlayerController_SwitchTeam" @@ -247,13 +247,6 @@ "windows" "\x4C\x8B\xDC\x49\x89\x5B\x2A\x49\x89\x6B\x2A\x49\x89\x73\x2A\x49\x89\x7B\x2A\x41\x56\x48\x83\xEC\x2A\x49\xC7\x43\x2A\x2A\x2A\x2A\x2A\x48\x8D\x05\x2A\x2A\x2A\x2A\x49\x89\x43\x2A\x41\x8B\xF8" "linux" "\x55\x48\x8D\x05\x2A\x2A\x2A\x2A\x48\x89\xE5\x41\x57\x49\x89\xCF\x41\x56\x41\x89\xD6" } - // the longer function containing "___clientsideitemsplaceholder0___" - "CNetworkStringTable_DeleteAllStrings" - { - "library" "engine" - "windows" "\x48\x89\x5C\x24\x2A\x48\x89\x7C\x24\x2A\x41\x56\x48\x83\xEC\x2A\x45\x33\xF6" - "linux" "\x55\x48\x89\xE5\x41\x57\x41\x56\x41\x55\x41\x54\x45\x31\xE4\x53\x48\x89\xFB\x48\x83\xEC\x2A\x48\x83\x7F" - } // "PlayerMovementTraces" "ProcessMovement" { @@ -544,7 +537,7 @@ // Server "ServerMovementUnlock" { - "windows" "\xE9\xB9\x00\x00\x00\x90" + "windows" "\xE9\xB1\x00\x00\x00\x90" "linux" "\x90\x90\x90\x90\x90\x90" } "FixWaterFloorJump" diff --git a/protobuf/base_gcmessages.proto.disabled b/protobuf/base_gcmessages.proto similarity index 100% rename from protobuf/base_gcmessages.proto.disabled rename to protobuf/base_gcmessages.proto diff --git a/protobuf/base_gcmessages_csgo.proto b/protobuf/base_gcmessages_csgo.proto deleted file mode 100644 index 2173f2546..000000000 --- a/protobuf/base_gcmessages_csgo.proto +++ /dev/null @@ -1,547 +0,0 @@ -import "steammessages.proto"; - -enum EGCBaseMsg { - k_EMsgGCSystemMessage = 4001; - k_EMsgGCReplicateConVars = 4002; - k_EMsgGCConVarUpdated = 4003; - k_EMsgGCInQueue = 4008; - k_EMsgGCInviteToParty = 4501; - k_EMsgGCInvitationCreated = 4502; - k_EMsgGCPartyInviteResponse = 4503; - k_EMsgGCKickFromParty = 4504; - k_EMsgGCLeaveParty = 4505; - k_EMsgGCServerAvailable = 4506; - k_EMsgGCClientConnectToServer = 4507; - k_EMsgGCGameServerInfo = 4508; - k_EMsgGCError = 4509; - k_EMsgGCReplay_UploadedToYouTube = 4510; - k_EMsgGCLANServerAvailable = 4511; -} - -enum EGCBaseProtoObjectTypes { - k_EProtoObjectPartyInvite = 1001; - k_EProtoObjectLobbyInvite = 1002; -} - -enum GC_BannedWordType { - GC_BANNED_WORD_DISABLE_WORD = 0; - GC_BANNED_WORD_ENABLE_WORD = 1; -} - -message CGCStorePurchaseInit_LineItem { - optional uint32 item_def_id = 1; - optional uint32 quantity = 2; - optional uint32 cost_in_local_currency = 3; - optional uint32 purchase_type = 4; -} - -message CMsgGCStorePurchaseInit { - optional string country = 1; - optional int32 language = 2; - optional int32 currency = 3; - repeated .CGCStorePurchaseInit_LineItem line_items = 4; -} - -message CMsgGCStorePurchaseInitResponse { - optional int32 result = 1; - optional uint64 txn_id = 2; - optional string url = 3; - repeated uint64 item_ids = 4; -} - -message CSOPartyInvite { - optional uint64 group_id = 1 [(key_field) = true]; - optional fixed64 sender_id = 2; - optional string sender_name = 3; -} - -message CSOLobbyInvite { - optional uint64 group_id = 1 [(key_field) = true]; - optional fixed64 sender_id = 2; - optional string sender_name = 3; -} - -message CMsgSystemBroadcast { - optional string message = 1; -} - -message CMsgInviteToParty { - optional fixed64 steam_id = 1; - optional uint32 client_version = 2; - optional uint32 team_invite = 3; -} - -message CMsgInvitationCreated { - optional uint64 group_id = 1; - optional fixed64 steam_id = 2; -} - -message CMsgPartyInviteResponse { - optional uint64 party_id = 1; - optional bool accept = 2; - optional uint32 client_version = 3; - optional uint32 team_invite = 4; -} - -message CMsgKickFromParty { - optional fixed64 steam_id = 1; -} - -message CMsgLeaveParty { -} - -message CMsgServerAvailable { -} - -message CMsgLANServerAvailable { - optional fixed64 lobby_id = 1; -} - -message CSOEconGameAccountClient { - optional uint32 additional_backpack_slots = 1 [default = 0]; - optional fixed32 bonus_xp_timestamp_refresh = 12; - optional uint32 bonus_xp_usedflags = 13; - optional uint32 elevated_state = 14; - optional uint32 elevated_timestamp = 15; -} - -message CSOItemCriteriaCondition { - optional int32 op = 1; - optional string field = 2; - optional bool required = 3; - optional float float_value = 4; - optional string string_value = 5; -} - -message CSOItemCriteria { - optional uint32 item_level = 1; - optional int32 item_quality = 2; - optional bool item_level_set = 3; - optional bool item_quality_set = 4; - optional uint32 initial_inventory = 5; - optional uint32 initial_quantity = 6; - optional bool ignore_enabled_flag = 8; - repeated .CSOItemCriteriaCondition conditions = 9; - optional int32 item_rarity = 10; - optional bool item_rarity_set = 11; - optional bool recent_only = 12; -} - -message CSOItemRecipe { - optional uint32 def_index = 1; - optional string name = 2; - optional string n_a = 3; - optional string desc_inputs = 4; - optional string desc_outputs = 5; - optional string di_a = 6; - optional string di_b = 7; - optional string di_c = 8; - optional string do_a = 9; - optional string do_b = 10; - optional string do_c = 11; - optional bool requires_all_same_class = 12; - optional bool requires_all_same_slot = 13; - optional int32 class_usage_for_output = 14; - optional int32 slot_usage_for_output = 15; - optional int32 set_for_output = 16; - repeated .CSOItemCriteria input_items_criteria = 20; - repeated .CSOItemCriteria output_items_criteria = 21; - repeated uint32 input_item_dupe_counts = 22; -} - -message CMsgDevNewItemRequest { - optional fixed64 receiver = 1; - optional .CSOItemCriteria criteria = 2; -} - -message CMsgIncrementKillCountAttribute { - optional fixed32 killer_account_id = 1; - optional fixed32 victim_account_id = 2; - optional uint64 item_id = 3; - optional uint32 event_type = 4; - optional uint32 amount = 5; -} - -message CMsgApplySticker { - optional uint64 sticker_item_id = 1; - optional uint64 item_item_id = 2; - optional uint32 sticker_slot = 3; - optional uint32 baseitem_defidx = 4; - optional float sticker_wear = 5; -} - -message CMsgModifyItemAttribute { - optional uint64 item_id = 1; - optional uint32 attr_defidx = 2; - optional uint32 attr_value = 3; -} - -message CMsgApplyStatTrakSwap { - optional uint64 tool_item_id = 1; - optional uint64 item_1_item_id = 2; - optional uint64 item_2_item_id = 3; -} - -message CMsgApplyStrangePart { - optional uint64 strange_part_item_id = 1; - optional uint64 item_item_id = 2; -} - -message CMsgApplyPennantUpgrade { - optional uint64 upgrade_item_id = 1; - optional uint64 pennant_item_id = 2; -} - -message CMsgApplyEggEssence { - optional uint64 essence_item_id = 1; - optional uint64 egg_item_id = 2; -} - -message CSOEconItemAttribute { - optional uint32 def_index = 1; - optional uint32 value = 2; - optional bytes value_bytes = 3; -} - -message CSOEconItemEquipped { - optional uint32 new_class = 1; - optional uint32 new_slot = 2; -} - -message CSOEconItem { - optional uint64 id = 1; - optional uint32 account_id = 2; - optional uint32 inventory = 3; - optional uint32 def_index = 4; - optional uint32 quantity = 5; - optional uint32 level = 6; - optional uint32 quality = 7; - optional uint32 flags = 8 [default = 0]; - optional uint32 origin = 9; - optional string custom_name = 10; - optional string custom_desc = 11; - repeated .CSOEconItemAttribute attribute = 12; - optional .CSOEconItem interior_item = 13; - optional bool in_use = 14 [default = false]; - optional uint32 style = 15 [default = 0]; - optional uint64 original_id = 16 [default = 0]; - repeated .CSOEconItemEquipped equipped_state = 18; - optional uint32 rarity = 19; -} - -message CMsgAdjustItemEquippedState { - optional uint64 item_id = 1; - optional uint32 new_class = 2; - optional uint32 new_slot = 3; - optional bool swap = 4; -} - -message CMsgAdjustItemEquippedStateMulti { - repeated uint64 t_equips = 1; - repeated uint64 ct_equips = 2; - repeated uint64 noteam_equips = 3; -} - -message CMsgSortItems { - optional uint32 sort_type = 1; -} - -message CSOEconClaimCode { - optional uint32 account_id = 1; - optional uint32 code_type = 2; - optional uint32 time_acquired = 3; - optional string code = 4; -} - -message CMsgStoreGetUserData { - optional fixed32 price_sheet_version = 1; - optional int32 currency = 2; -} - -message CMsgStoreGetUserDataResponse { - optional int32 result = 1; - optional int32 currency_deprecated = 2; - optional string country_deprecated = 3; - optional fixed32 price_sheet_version = 4; - optional bytes price_sheet = 8; -} - -message CMsgUpdateItemSchema { - optional bytes items_game = 1; - optional fixed32 item_schema_version = 2; - optional string items_game_url = 4; -} - -message CMsgGCError { - optional string error_text = 1; -} - -message CMsgRequestInventoryRefresh { -} - -message CMsgConVarValue { - optional string name = 1; - optional string value = 2; -} - -message CMsgReplicateConVars { - repeated .CMsgConVarValue convars = 1; -} - -message CMsgUseItem { - optional uint64 item_id = 1; - optional fixed64 target_steam_id = 2; - repeated uint32 gift__potential_targets = 3; - optional uint32 duel__class_lock = 4; - optional fixed64 initiator_steam_id = 5; -} - -message CMsgReplayUploadedToYouTube { - optional string youtube_url = 1; - optional string youtube_account_name = 2; - optional uint64 session_id = 3; -} - -message CMsgConsumableExhausted { - optional int32 item_def_id = 1; -} - -message CMsgItemAcknowledged__DEPRECATED { - optional uint32 account_id = 1; - optional uint32 inventory = 2; - optional uint32 def_index = 3; - optional uint32 quality = 4; - optional uint32 rarity = 5; - optional uint32 origin = 6; - optional uint64 item_id = 7; -} - -message CMsgSetItemPositions { - message ItemPosition { - optional uint32 legacy_item_id = 1; - optional uint32 position = 2; - optional uint64 item_id = 3; - } - - repeated .CMsgSetItemPositions.ItemPosition item_positions = 1; -} - -message CMsgGCReportAbuse { - optional fixed64 target_steam_id = 1; - optional string description = 4; - optional uint64 gid = 5; - optional uint32 abuse_type = 2; - optional uint32 content_type = 3; - optional fixed32 target_game_server_ip = 6; - optional uint32 target_game_server_port = 7; -} - -message CMsgGCReportAbuseResponse { - optional fixed64 target_steam_id = 1; - optional uint32 result = 2; - optional string error_message = 3; -} - -message CMsgGCNameItemNotification { - optional fixed64 player_steamid = 1; - optional uint32 item_def_index = 2; - optional string item_name_custom = 3; -} - -message CMsgGCClientDisplayNotification { - optional string notification_title_localization_key = 1; - optional string notification_body_localization_key = 2; - repeated string body_substring_keys = 3; - repeated string body_substring_values = 4; -} - -message CMsgGCShowItemsPickedUp { - optional fixed64 player_steamid = 1; -} - -message CMsgGCIncrementKillCountResponse { - optional uint32 killer_account_id = 1 [(key_field) = true]; - optional uint32 num_kills = 2; - optional uint32 item_def = 3; - optional uint32 level_type = 4; -} - -message CSOEconItemDropRateBonus { - optional uint32 account_id = 1; - optional fixed32 expiration_date = 2; - optional float bonus = 3; - optional uint32 bonus_count = 4; - optional uint64 item_id = 5; - optional uint32 def_index = 6; -} - -message CSOEconItemLeagueViewPass { - optional uint32 account_id = 1 [(key_field) = true]; - optional uint32 league_id = 2 [(key_field) = true]; - optional uint32 admin = 3; - optional uint32 itemindex = 4; -} - -message CSOEconItemEventTicket { - optional uint32 account_id = 1; - optional uint32 event_id = 2; - optional uint64 item_id = 3; -} - -message CMsgGCItemPreviewItemBoughtNotification { - optional uint32 item_def_index = 1; -} - -message CMsgGCStorePurchaseCancel { - optional uint64 txn_id = 1; -} - -message CMsgGCStorePurchaseCancelResponse { - optional uint32 result = 1; -} - -message CMsgGCStorePurchaseFinalize { - optional uint64 txn_id = 1; -} - -message CMsgGCStorePurchaseFinalizeResponse { - optional uint32 result = 1; - repeated uint64 item_ids = 2; -} - -message CMsgGCBannedWordListRequest { - optional uint32 ban_list_group_id = 1; - optional uint32 word_id = 2; -} - -message CMsgGCRequestAnnouncements { -} - -message CMsgGCRequestAnnouncementsResponse { - optional string announcement_title = 1; - optional string announcement = 2; - optional string nextmatch_title = 3; - optional string nextmatch = 4; -} - -message CMsgGCBannedWord { - optional uint32 word_id = 1; - optional .GC_BannedWordType word_type = 2 [default = GC_BANNED_WORD_DISABLE_WORD]; - optional string word = 3; -} - -message CMsgGCBannedWordListResponse { - optional uint32 ban_list_group_id = 1; - repeated .CMsgGCBannedWord word_list = 2; -} - -message CMsgGCToGCBannedWordListBroadcast { - optional .CMsgGCBannedWordListResponse broadcast = 1; -} - -message CMsgGCToGCBannedWordListUpdated { - optional uint32 group_id = 1; -} - -message CSOEconDefaultEquippedDefinitionInstanceClient { - optional uint32 account_id = 1 [(key_field) = true]; - optional uint32 item_definition = 2; - optional uint32 class_id = 3 [(key_field) = true]; - optional uint32 slot_id = 4 [(key_field) = true]; -} - -message CMsgGCToGCDirtySDOCache { - optional uint32 sdo_type = 1; - optional uint64 key_uint64 = 2; -} - -message CMsgGCToGCDirtyMultipleSDOCache { - optional uint32 sdo_type = 1; - repeated uint64 key_uint64 = 2; -} - -message CMsgGCCollectItem { - optional uint64 collection_item_id = 1; - optional uint64 subject_item_id = 2; -} - -message CMsgSDONoMemcached { -} - -message CMsgGCToGCUpdateSQLKeyValue { - optional string key_name = 1; -} - -message CMsgGCToGCIsTrustedServer { - optional fixed64 steam_id = 1; -} - -message CMsgGCToGCIsTrustedServerResponse { - optional bool is_trusted = 1; -} - -message CMsgGCToGCBroadcastConsoleCommand { - optional string con_command = 1; -} - -message CMsgGCServerVersionUpdated { - optional uint32 server_version = 1; -} - -message CMsgGCClientVersionUpdated { - optional uint32 client_version = 1; -} - -message CMsgGCToGCWebAPIAccountChanged { -} - -message CMsgGCToGCRequestPassportItemGrant { - optional fixed64 steam_id = 1; - optional uint32 league_id = 2; - optional int32 reward_flag = 3; -} - -message CMsgGameServerInfo { - enum ServerType { - UNSPECIFIED = 0; - GAME = 1; - PROXY = 2; - } - - optional fixed32 server_public_ip_addr = 1; - optional fixed32 server_private_ip_addr = 2; - optional uint32 server_port = 3; - optional uint32 server_tv_port = 4; - optional string server_key = 5; - optional bool server_hibernation = 6; - optional .CMsgGameServerInfo.ServerType server_type = 7 [default = UNSPECIFIED]; - optional uint32 server_region = 8; - optional float server_loadavg = 9; - optional float server_tv_broadcast_time = 10; - optional float server_game_time = 11; - optional fixed64 server_relay_connected_steam_id = 12; - optional uint32 relay_slots_max = 13; - optional int32 relays_connected = 14; - optional int32 relay_clients_connected = 15; - optional fixed64 relayed_game_server_steam_id = 16; - optional uint32 parent_relay_count = 17; - optional fixed64 tv_secret_code = 18; -} - -message CSOEconEquipSlot { - optional uint32 account_id = 1 [(key_field) = true]; - optional uint32 class_id = 2 [(key_field) = true]; - optional uint32 slot_id = 3 [(key_field) = true]; - optional uint64 item_id = 4; - optional uint32 item_definition = 5; -} - -message CMsgAdjustEquipSlot { - optional uint32 class_id = 1; - optional uint32 slot_id = 2; - optional uint64 item_id = 3; -} - -message CMsgAdjustEquipSlots { - repeated .CMsgAdjustEquipSlot slots = 1; -} diff --git a/protobuf/cs_usercmd.proto b/protobuf/cs_usercmd.proto index 87dd3ad3d..5664b9a28 100644 --- a/protobuf/cs_usercmd.proto +++ b/protobuf/cs_usercmd.proto @@ -34,7 +34,6 @@ message CSGOUserCmdPB { repeated .CSGOInputHistoryEntryPB input_history = 2; optional int32 attack1_start_history_index = 6 [default = -1]; optional int32 attack2_start_history_index = 7 [default = -1]; - optional int32 attack3_start_history_index = 8 [default = -1]; optional bool left_hand_desired = 9 [default = false]; optional bool is_predicting_body_shot_fx = 11 [default = false]; optional bool is_predicting_head_shot_fx = 12 [default = false]; diff --git a/protobuf/cstrike15_gcmessages.proto b/protobuf/cstrike15_gcmessages.proto index 15e2ce009..221fa475b 100644 --- a/protobuf/cstrike15_gcmessages.proto +++ b/protobuf/cstrike15_gcmessages.proto @@ -110,6 +110,7 @@ enum ECsgoGCMsg { k_EMsgGCCStrike15_v2_PremierSeasonSummary = 9224; k_EMsgGCCStrike15_v2_RequestRecurringMissionSchedule = 9225; k_EMsgGCCStrike15_v2_RecurringMissionSchema = 9226; + k_EMsgGCCStrike15_v2_VolatileItemClaimReward = 9227; } enum ECsgoSteamUserStat { @@ -1184,6 +1185,18 @@ message CSOAccountXpShopBids { optional uint32 generation_time = 4; } +message CSOVolatileItemOffer { + optional uint32 defidx = 1 [(key_field) = true]; + repeated uint64 faux_itemid = 2; + repeated uint32 generation_time = 3; +} + +message CSOVolatileItemClaimedRewards { + optional uint32 defidx = 1 [(key_field) = true]; + repeated uint32 reward = 2; + repeated uint32 generation_time = 3; +} + message CSOAccountKeychainRemoveToolCharges { optional uint32 charges = 1; } diff --git a/protobuf/cstrike15_usermessages.proto b/protobuf/cstrike15_usermessages.proto index 5fb05d90b..0902776b9 100644 --- a/protobuf/cstrike15_usermessages.proto +++ b/protobuf/cstrike15_usermessages.proto @@ -37,7 +37,6 @@ enum ECstrike15UserMessages { CS_UM_MatchEndConditions = 334; CS_UM_DisconnectToLobby = 335; CS_UM_PlayerStatsUpdate = 336; - CS_UM_WarmupHasEnded = 338; CS_UM_ClientInfo = 339; CS_UM_XRankGet = 340; CS_UM_XRankUpd = 341; @@ -56,7 +55,6 @@ enum ECstrike15UserMessages { CS_UM_MarkAchievement = 357; CS_UM_MatchStatsUpdate = 358; CS_UM_ItemDrop = 359; - CS_UM_GlowPropTurnOff = 360; CS_UM_SendPlayerItemDrops = 361; CS_UM_RoundBackupFilenames = 362; CS_UM_SendPlayerItemFound = 363; @@ -80,6 +78,7 @@ enum ECstrike15UserMessages { CS_UM_CounterStrafe = 385; CS_UM_DamagePrediction = 386; CS_UM_RecurringMissionSchema = 387; + CS_UM_SendPlayerLoadout = 388; } enum ECSUsrMsg_DisconnectToLobby_Action { @@ -422,10 +421,6 @@ message CCSUsrMsg_ItemDrop { optional bool death = 2; } -message CCSUsrMsg_GlowPropTurnOff { - optional int32 entidx = 1 [default = -1]; -} - message CCSUsrMsg_RoundBackupFilenames { optional int32 count = 1; optional int32 index = 2; @@ -578,10 +573,6 @@ message CCSUsrMsg_DisconnectToLobby { optional int32 dummy = 1; } -message CCSUsrMsg_WarmupHasEnded { - optional int32 dummy = 1; -} - message CCSUsrMsg_ClientInfo { optional int32 dummy = 1; } @@ -617,3 +608,14 @@ message CCSUsrMsg_RecurringMissionSchema { optional uint32 period = 1; optional bytes mission_schema = 2; } + +message CCSUsrMsg_SendPlayerLoadout { + message LoadoutItem { + optional .CEconItemPreviewDataBlock econ_item = 1; + optional int32 team = 2; + optional int32 slot = 3; + } + + repeated .CCSUsrMsg_SendPlayerLoadout.LoadoutItem loadout = 1; + optional int32 playerslot = 2 [default = -1]; +} diff --git a/protobuf/generated/base_gcmessages_csgo.pb.cc b/protobuf/generated/base_gcmessages.pb.cc similarity index 93% rename from protobuf/generated/base_gcmessages_csgo.pb.cc rename to protobuf/generated/base_gcmessages.pb.cc index 9e2de2035..d01966f62 100644 --- a/protobuf/generated/base_gcmessages_csgo.pb.cc +++ b/protobuf/generated/base_gcmessages.pb.cc @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: base_gcmessages_csgo.proto +// source: base_gcmessages.proto -#include "base_gcmessages_csgo.pb.h" +#include "base_gcmessages.pb.h" #include @@ -27,7 +27,8 @@ PROTOBUF_CONSTEXPR CGCStorePurchaseInit_LineItem::CGCStorePurchaseInit_LineItem( , /*decltype(_impl_.item_def_id_)*/0u , /*decltype(_impl_.quantity_)*/0u , /*decltype(_impl_.cost_in_local_currency_)*/0u - , /*decltype(_impl_.purchase_type_)*/0u} {} + , /*decltype(_impl_.purchase_type_)*/0u + , /*decltype(_impl_.supplemental_data_)*/uint64_t{0u}} {} struct CGCStorePurchaseInit_LineItemDefaultTypeInternal { PROTOBUF_CONSTEXPR CGCStorePurchaseInit_LineItemDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} @@ -220,6 +221,7 @@ PROTOBUF_CONSTEXPR CSOEconGameAccountClient::CSOEconGameAccountClient( /*decltype(_impl_._has_bits_)*/{} , /*decltype(_impl_._cached_size_)*/{} , /*decltype(_impl_.additional_backpack_slots_)*/0u + , /*decltype(_impl_.trade_ban_expiration_)*/0u , /*decltype(_impl_.bonus_xp_timestamp_refresh_)*/0u , /*decltype(_impl_.bonus_xp_usedflags_)*/0u , /*decltype(_impl_.elevated_state_)*/0u @@ -348,7 +350,13 @@ PROTOBUF_CONSTEXPR CMsgApplySticker::CMsgApplySticker( , /*decltype(_impl_.item_item_id_)*/uint64_t{0u} , /*decltype(_impl_.sticker_slot_)*/0u , /*decltype(_impl_.baseitem_defidx_)*/0u - , /*decltype(_impl_.sticker_wear_)*/0} {} + , /*decltype(_impl_.sticker_wear_)*/0 + , /*decltype(_impl_.sticker_rotation_)*/0 + , /*decltype(_impl_.sticker_scale_)*/0 + , /*decltype(_impl_.sticker_offset_x_)*/0 + , /*decltype(_impl_.sticker_offset_y_)*/0 + , /*decltype(_impl_.sticker_offset_z_)*/0 + , /*decltype(_impl_.sticker_wear_target_)*/0} {} struct CMsgApplyStickerDefaultTypeInternal { PROTOBUF_CONSTEXPR CMsgApplyStickerDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} @@ -497,38 +505,6 @@ struct CSOEconItemDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CSOEconItemDefaultTypeInternal _CSOEconItem_default_instance_; -PROTOBUF_CONSTEXPR CMsgAdjustItemEquippedState::CMsgAdjustItemEquippedState( - ::_pbi::ConstantInitialized): _impl_{ - /*decltype(_impl_._has_bits_)*/{} - , /*decltype(_impl_._cached_size_)*/{} - , /*decltype(_impl_.item_id_)*/uint64_t{0u} - , /*decltype(_impl_.new_class_)*/0u - , /*decltype(_impl_.new_slot_)*/0u - , /*decltype(_impl_.swap_)*/false} {} -struct CMsgAdjustItemEquippedStateDefaultTypeInternal { - PROTOBUF_CONSTEXPR CMsgAdjustItemEquippedStateDefaultTypeInternal() - : _instance(::_pbi::ConstantInitialized{}) {} - ~CMsgAdjustItemEquippedStateDefaultTypeInternal() {} - union { - CMsgAdjustItemEquippedState _instance; - }; -}; -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CMsgAdjustItemEquippedStateDefaultTypeInternal _CMsgAdjustItemEquippedState_default_instance_; -PROTOBUF_CONSTEXPR CMsgAdjustItemEquippedStateMulti::CMsgAdjustItemEquippedStateMulti( - ::_pbi::ConstantInitialized): _impl_{ - /*decltype(_impl_.t_equips_)*/{} - , /*decltype(_impl_.ct_equips_)*/{} - , /*decltype(_impl_.noteam_equips_)*/{} - , /*decltype(_impl_._cached_size_)*/{}} {} -struct CMsgAdjustItemEquippedStateMultiDefaultTypeInternal { - PROTOBUF_CONSTEXPR CMsgAdjustItemEquippedStateMultiDefaultTypeInternal() - : _instance(::_pbi::ConstantInitialized{}) {} - ~CMsgAdjustItemEquippedStateMultiDefaultTypeInternal() {} - union { - CMsgAdjustItemEquippedStateMulti _instance; - }; -}; -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CMsgAdjustItemEquippedStateMultiDefaultTypeInternal _CMsgAdjustItemEquippedStateMulti_default_instance_; PROTOBUF_CONSTEXPR CMsgSortItems::CMsgSortItems( ::_pbi::ConstantInitialized): _impl_{ /*decltype(_impl_._has_bits_)*/{} @@ -1084,23 +1060,6 @@ struct CMsgGCToGCBannedWordListUpdatedDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CMsgGCToGCBannedWordListUpdatedDefaultTypeInternal _CMsgGCToGCBannedWordListUpdated_default_instance_; -PROTOBUF_CONSTEXPR CSOEconDefaultEquippedDefinitionInstanceClient::CSOEconDefaultEquippedDefinitionInstanceClient( - ::_pbi::ConstantInitialized): _impl_{ - /*decltype(_impl_._has_bits_)*/{} - , /*decltype(_impl_._cached_size_)*/{} - , /*decltype(_impl_.account_id_)*/0u - , /*decltype(_impl_.item_definition_)*/0u - , /*decltype(_impl_.class_id_)*/0u - , /*decltype(_impl_.slot_id_)*/0u} {} -struct CSOEconDefaultEquippedDefinitionInstanceClientDefaultTypeInternal { - PROTOBUF_CONSTEXPR CSOEconDefaultEquippedDefinitionInstanceClientDefaultTypeInternal() - : _instance(::_pbi::ConstantInitialized{}) {} - ~CSOEconDefaultEquippedDefinitionInstanceClientDefaultTypeInternal() {} - union { - CSOEconDefaultEquippedDefinitionInstanceClient _instance; - }; -}; -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CSOEconDefaultEquippedDefinitionInstanceClientDefaultTypeInternal _CSOEconDefaultEquippedDefinitionInstanceClient_default_instance_; PROTOBUF_CONSTEXPR CMsgGCToGCDirtySDOCache::CMsgGCToGCDirtySDOCache( ::_pbi::ConstantInitialized): _impl_{ /*decltype(_impl_._has_bits_)*/{} @@ -1335,8 +1294,10 @@ struct CMsgAdjustEquipSlotDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CMsgAdjustEquipSlotDefaultTypeInternal _CMsgAdjustEquipSlot_default_instance_; PROTOBUF_CONSTEXPR CMsgAdjustEquipSlots::CMsgAdjustEquipSlots( ::_pbi::ConstantInitialized): _impl_{ - /*decltype(_impl_.slots_)*/{} - , /*decltype(_impl_._cached_size_)*/{}} {} + /*decltype(_impl_._has_bits_)*/{} + , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.slots_)*/{} + , /*decltype(_impl_.change_num_)*/0u} {} struct CMsgAdjustEquipSlotsDefaultTypeInternal { PROTOBUF_CONSTEXPR CMsgAdjustEquipSlotsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} @@ -1346,11 +1307,60 @@ struct CMsgAdjustEquipSlotsDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CMsgAdjustEquipSlotsDefaultTypeInternal _CMsgAdjustEquipSlots_default_instance_; -static ::_pb::Metadata file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[83]; -static const ::_pb::EnumDescriptor* file_level_enum_descriptors_base_5fgcmessages_5fcsgo_2eproto[4]; -static constexpr ::_pb::ServiceDescriptor const** file_level_service_descriptors_base_5fgcmessages_5fcsgo_2eproto = nullptr; +PROTOBUF_CONSTEXPR CMsgOpenCrate::CMsgOpenCrate( + ::_pbi::ConstantInitialized): _impl_{ + /*decltype(_impl_._has_bits_)*/{} + , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.tool_item_id_)*/uint64_t{0u} + , /*decltype(_impl_.subject_item_id_)*/uint64_t{0u} + , /*decltype(_impl_.for_rental_)*/false + , /*decltype(_impl_.points_remaining_)*/0u} {} +struct CMsgOpenCrateDefaultTypeInternal { + PROTOBUF_CONSTEXPR CMsgOpenCrateDefaultTypeInternal() + : _instance(::_pbi::ConstantInitialized{}) {} + ~CMsgOpenCrateDefaultTypeInternal() {} + union { + CMsgOpenCrate _instance; + }; +}; +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CMsgOpenCrateDefaultTypeInternal _CMsgOpenCrate_default_instance_; +PROTOBUF_CONSTEXPR CSOEconRentalHistory::CSOEconRentalHistory( + ::_pbi::ConstantInitialized): _impl_{ + /*decltype(_impl_._has_bits_)*/{} + , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.crate_item_id_)*/uint64_t{0u} + , /*decltype(_impl_.account_id_)*/0u + , /*decltype(_impl_.crate_def_index_)*/0u + , /*decltype(_impl_.issue_date_)*/0u + , /*decltype(_impl_.expiration_date_)*/0u} {} +struct CSOEconRentalHistoryDefaultTypeInternal { + PROTOBUF_CONSTEXPR CSOEconRentalHistoryDefaultTypeInternal() + : _instance(::_pbi::ConstantInitialized{}) {} + ~CSOEconRentalHistoryDefaultTypeInternal() {} + union { + CSOEconRentalHistory _instance; + }; +}; +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CSOEconRentalHistoryDefaultTypeInternal _CSOEconRentalHistory_default_instance_; +PROTOBUF_CONSTEXPR CMsgAcknowledgeRentalExpiration::CMsgAcknowledgeRentalExpiration( + ::_pbi::ConstantInitialized): _impl_{ + /*decltype(_impl_._has_bits_)*/{} + , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.crate_item_id_)*/uint64_t{0u}} {} +struct CMsgAcknowledgeRentalExpirationDefaultTypeInternal { + PROTOBUF_CONSTEXPR CMsgAcknowledgeRentalExpirationDefaultTypeInternal() + : _instance(::_pbi::ConstantInitialized{}) {} + ~CMsgAcknowledgeRentalExpirationDefaultTypeInternal() {} + union { + CMsgAcknowledgeRentalExpiration _instance; + }; +}; +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CMsgAcknowledgeRentalExpirationDefaultTypeInternal _CMsgAcknowledgeRentalExpiration_default_instance_; +static ::_pb::Metadata file_level_metadata_base_5fgcmessages_2eproto[83]; +static const ::_pb::EnumDescriptor* file_level_enum_descriptors_base_5fgcmessages_2eproto[4]; +static constexpr ::_pb::ServiceDescriptor const** file_level_service_descriptors_base_5fgcmessages_2eproto = nullptr; -const uint32_t TableStruct_base_5fgcmessages_5fcsgo_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { +const uint32_t TableStruct_base_5fgcmessages_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { PROTOBUF_FIELD_OFFSET(::CGCStorePurchaseInit_LineItem, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CGCStorePurchaseInit_LineItem, _internal_metadata_), ~0u, // no _extensions_ @@ -1361,10 +1371,12 @@ const uint32_t TableStruct_base_5fgcmessages_5fcsgo_2eproto::offsets[] PROTOBUF_ PROTOBUF_FIELD_OFFSET(::CGCStorePurchaseInit_LineItem, _impl_.quantity_), PROTOBUF_FIELD_OFFSET(::CGCStorePurchaseInit_LineItem, _impl_.cost_in_local_currency_), PROTOBUF_FIELD_OFFSET(::CGCStorePurchaseInit_LineItem, _impl_.purchase_type_), + PROTOBUF_FIELD_OFFSET(::CGCStorePurchaseInit_LineItem, _impl_.supplemental_data_), 0, 1, 2, 3, + 4, PROTOBUF_FIELD_OFFSET(::CMsgGCStorePurchaseInit, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CMsgGCStorePurchaseInit, _internal_metadata_), ~0u, // no _extensions_ @@ -1496,6 +1508,7 @@ const uint32_t TableStruct_base_5fgcmessages_5fcsgo_2eproto::offsets[] PROTOBUF_ ~0u, // no _weak_field_map_ ~0u, // no _inlined_string_donated_ PROTOBUF_FIELD_OFFSET(::CSOEconGameAccountClient, _impl_.additional_backpack_slots_), + PROTOBUF_FIELD_OFFSET(::CSOEconGameAccountClient, _impl_.trade_ban_expiration_), PROTOBUF_FIELD_OFFSET(::CSOEconGameAccountClient, _impl_.bonus_xp_timestamp_refresh_), PROTOBUF_FIELD_OFFSET(::CSOEconGameAccountClient, _impl_.bonus_xp_usedflags_), PROTOBUF_FIELD_OFFSET(::CSOEconGameAccountClient, _impl_.elevated_state_), @@ -1505,6 +1518,7 @@ const uint32_t TableStruct_base_5fgcmessages_5fcsgo_2eproto::offsets[] PROTOBUF_ 2, 3, 4, + 5, PROTOBUF_FIELD_OFFSET(::CSOItemCriteriaCondition, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CSOItemCriteriaCondition, _internal_metadata_), ~0u, // no _extensions_ @@ -1630,11 +1644,23 @@ const uint32_t TableStruct_base_5fgcmessages_5fcsgo_2eproto::offsets[] PROTOBUF_ PROTOBUF_FIELD_OFFSET(::CMsgApplySticker, _impl_.sticker_slot_), PROTOBUF_FIELD_OFFSET(::CMsgApplySticker, _impl_.baseitem_defidx_), PROTOBUF_FIELD_OFFSET(::CMsgApplySticker, _impl_.sticker_wear_), + PROTOBUF_FIELD_OFFSET(::CMsgApplySticker, _impl_.sticker_rotation_), + PROTOBUF_FIELD_OFFSET(::CMsgApplySticker, _impl_.sticker_scale_), + PROTOBUF_FIELD_OFFSET(::CMsgApplySticker, _impl_.sticker_offset_x_), + PROTOBUF_FIELD_OFFSET(::CMsgApplySticker, _impl_.sticker_offset_y_), + PROTOBUF_FIELD_OFFSET(::CMsgApplySticker, _impl_.sticker_offset_z_), + PROTOBUF_FIELD_OFFSET(::CMsgApplySticker, _impl_.sticker_wear_target_), 0, 1, 2, 3, 4, + 5, + 6, + 7, + 8, + 9, + 10, PROTOBUF_FIELD_OFFSET(::CMsgModifyItemAttribute, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CMsgModifyItemAttribute, _internal_metadata_), ~0u, // no _extensions_ @@ -1753,29 +1779,6 @@ const uint32_t TableStruct_base_5fgcmessages_5fcsgo_2eproto::offsets[] PROTOBUF_ 14, ~0u, 15, - PROTOBUF_FIELD_OFFSET(::CMsgAdjustItemEquippedState, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::CMsgAdjustItemEquippedState, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - PROTOBUF_FIELD_OFFSET(::CMsgAdjustItemEquippedState, _impl_.item_id_), - PROTOBUF_FIELD_OFFSET(::CMsgAdjustItemEquippedState, _impl_.new_class_), - PROTOBUF_FIELD_OFFSET(::CMsgAdjustItemEquippedState, _impl_.new_slot_), - PROTOBUF_FIELD_OFFSET(::CMsgAdjustItemEquippedState, _impl_.swap_), - 0, - 1, - 2, - 3, - ~0u, // no _has_bits_ - PROTOBUF_FIELD_OFFSET(::CMsgAdjustItemEquippedStateMulti, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - PROTOBUF_FIELD_OFFSET(::CMsgAdjustItemEquippedStateMulti, _impl_.t_equips_), - PROTOBUF_FIELD_OFFSET(::CMsgAdjustItemEquippedStateMulti, _impl_.ct_equips_), - PROTOBUF_FIELD_OFFSET(::CMsgAdjustItemEquippedStateMulti, _impl_.noteam_equips_), PROTOBUF_FIELD_OFFSET(::CMsgSortItems, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CMsgSortItems, _internal_metadata_), ~0u, // no _extensions_ @@ -2176,20 +2179,6 @@ const uint32_t TableStruct_base_5fgcmessages_5fcsgo_2eproto::offsets[] PROTOBUF_ ~0u, // no _inlined_string_donated_ PROTOBUF_FIELD_OFFSET(::CMsgGCToGCBannedWordListUpdated, _impl_.group_id_), 0, - PROTOBUF_FIELD_OFFSET(::CSOEconDefaultEquippedDefinitionInstanceClient, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::CSOEconDefaultEquippedDefinitionInstanceClient, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - PROTOBUF_FIELD_OFFSET(::CSOEconDefaultEquippedDefinitionInstanceClient, _impl_.account_id_), - PROTOBUF_FIELD_OFFSET(::CSOEconDefaultEquippedDefinitionInstanceClient, _impl_.item_definition_), - PROTOBUF_FIELD_OFFSET(::CSOEconDefaultEquippedDefinitionInstanceClient, _impl_.class_id_), - PROTOBUF_FIELD_OFFSET(::CSOEconDefaultEquippedDefinitionInstanceClient, _impl_.slot_id_), - 0, - 1, - 2, - 3, PROTOBUF_FIELD_OFFSET(::CMsgGCToGCDirtySDOCache, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CMsgGCToGCDirtySDOCache, _internal_metadata_), ~0u, // no _extensions_ @@ -2362,98 +2351,139 @@ const uint32_t TableStruct_base_5fgcmessages_5fcsgo_2eproto::offsets[] PROTOBUF_ 0, 1, 2, - ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::CMsgAdjustEquipSlots, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CMsgAdjustEquipSlots, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ ~0u, // no _inlined_string_donated_ PROTOBUF_FIELD_OFFSET(::CMsgAdjustEquipSlots, _impl_.slots_), + PROTOBUF_FIELD_OFFSET(::CMsgAdjustEquipSlots, _impl_.change_num_), + ~0u, + 0, + PROTOBUF_FIELD_OFFSET(::CMsgOpenCrate, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::CMsgOpenCrate, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + PROTOBUF_FIELD_OFFSET(::CMsgOpenCrate, _impl_.tool_item_id_), + PROTOBUF_FIELD_OFFSET(::CMsgOpenCrate, _impl_.subject_item_id_), + PROTOBUF_FIELD_OFFSET(::CMsgOpenCrate, _impl_.for_rental_), + PROTOBUF_FIELD_OFFSET(::CMsgOpenCrate, _impl_.points_remaining_), + 0, + 1, + 2, + 3, + PROTOBUF_FIELD_OFFSET(::CSOEconRentalHistory, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::CSOEconRentalHistory, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + PROTOBUF_FIELD_OFFSET(::CSOEconRentalHistory, _impl_.account_id_), + PROTOBUF_FIELD_OFFSET(::CSOEconRentalHistory, _impl_.crate_item_id_), + PROTOBUF_FIELD_OFFSET(::CSOEconRentalHistory, _impl_.crate_def_index_), + PROTOBUF_FIELD_OFFSET(::CSOEconRentalHistory, _impl_.issue_date_), + PROTOBUF_FIELD_OFFSET(::CSOEconRentalHistory, _impl_.expiration_date_), + 1, + 0, + 2, + 3, + 4, + PROTOBUF_FIELD_OFFSET(::CMsgAcknowledgeRentalExpiration, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::CMsgAcknowledgeRentalExpiration, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + PROTOBUF_FIELD_OFFSET(::CMsgAcknowledgeRentalExpiration, _impl_.crate_item_id_), + 0, }; static const ::_pbi::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { - { 0, 10, -1, sizeof(::CGCStorePurchaseInit_LineItem)}, - { 14, 24, -1, sizeof(::CMsgGCStorePurchaseInit)}, - { 28, 38, -1, sizeof(::CMsgGCStorePurchaseInitResponse)}, - { 42, 51, -1, sizeof(::CSOPartyInvite)}, - { 54, 63, -1, sizeof(::CSOLobbyInvite)}, - { 66, 73, -1, sizeof(::CMsgSystemBroadcast)}, - { 74, 83, -1, sizeof(::CMsgInviteToParty)}, - { 86, 94, -1, sizeof(::CMsgInvitationCreated)}, - { 96, 106, -1, sizeof(::CMsgPartyInviteResponse)}, - { 110, 117, -1, sizeof(::CMsgKickFromParty)}, - { 118, -1, -1, sizeof(::CMsgLeaveParty)}, - { 124, -1, -1, sizeof(::CMsgServerAvailable)}, - { 130, 137, -1, sizeof(::CMsgLANServerAvailable)}, - { 138, 149, -1, sizeof(::CSOEconGameAccountClient)}, - { 154, 165, -1, sizeof(::CSOItemCriteriaCondition)}, - { 170, 187, -1, sizeof(::CSOItemCriteria)}, - { 198, 223, -1, sizeof(::CSOItemRecipe)}, - { 242, 250, -1, sizeof(::CMsgDevNewItemRequest)}, - { 252, 263, -1, sizeof(::CMsgIncrementKillCountAttribute)}, - { 268, 279, -1, sizeof(::CMsgApplySticker)}, - { 284, 293, -1, sizeof(::CMsgModifyItemAttribute)}, - { 296, 305, -1, sizeof(::CMsgApplyStatTrakSwap)}, - { 308, 316, -1, sizeof(::CMsgApplyStrangePart)}, - { 318, 326, -1, sizeof(::CMsgApplyPennantUpgrade)}, - { 328, 336, -1, sizeof(::CMsgApplyEggEssence)}, - { 338, 347, -1, sizeof(::CSOEconItemAttribute)}, - { 350, 358, -1, sizeof(::CSOEconItemEquipped)}, - { 360, 384, -1, sizeof(::CSOEconItem)}, - { 402, 412, -1, sizeof(::CMsgAdjustItemEquippedState)}, - { 416, -1, -1, sizeof(::CMsgAdjustItemEquippedStateMulti)}, - { 425, 432, -1, sizeof(::CMsgSortItems)}, - { 433, 443, -1, sizeof(::CSOEconClaimCode)}, - { 447, 455, -1, sizeof(::CMsgStoreGetUserData)}, - { 457, 468, -1, sizeof(::CMsgStoreGetUserDataResponse)}, - { 473, 482, -1, sizeof(::CMsgUpdateItemSchema)}, - { 485, 492, -1, sizeof(::CMsgGCError)}, - { 493, -1, -1, sizeof(::CMsgRequestInventoryRefresh)}, - { 499, 507, -1, sizeof(::CMsgConVarValue)}, - { 509, -1, -1, sizeof(::CMsgReplicateConVars)}, - { 516, 527, -1, sizeof(::CMsgUseItem)}, - { 532, 541, -1, sizeof(::CMsgReplayUploadedToYouTube)}, - { 544, 551, -1, sizeof(::CMsgConsumableExhausted)}, - { 552, 565, -1, sizeof(::CMsgItemAcknowledged__DEPRECATED)}, - { 572, 581, -1, sizeof(::CMsgSetItemPositions_ItemPosition)}, - { 584, -1, -1, sizeof(::CMsgSetItemPositions)}, - { 591, 604, -1, sizeof(::CMsgGCReportAbuse)}, - { 611, 620, -1, sizeof(::CMsgGCReportAbuseResponse)}, - { 623, 632, -1, sizeof(::CMsgGCNameItemNotification)}, - { 635, 645, -1, sizeof(::CMsgGCClientDisplayNotification)}, - { 649, 656, -1, sizeof(::CMsgGCShowItemsPickedUp)}, - { 657, 667, -1, sizeof(::CMsgGCIncrementKillCountResponse)}, - { 671, 683, -1, sizeof(::CSOEconItemDropRateBonus)}, - { 689, 699, -1, sizeof(::CSOEconItemLeagueViewPass)}, - { 703, 712, -1, sizeof(::CSOEconItemEventTicket)}, - { 715, 722, -1, sizeof(::CMsgGCItemPreviewItemBoughtNotification)}, - { 723, 730, -1, sizeof(::CMsgGCStorePurchaseCancel)}, - { 731, 738, -1, sizeof(::CMsgGCStorePurchaseCancelResponse)}, - { 739, 746, -1, sizeof(::CMsgGCStorePurchaseFinalize)}, - { 747, 755, -1, sizeof(::CMsgGCStorePurchaseFinalizeResponse)}, - { 757, 765, -1, sizeof(::CMsgGCBannedWordListRequest)}, - { 767, -1, -1, sizeof(::CMsgGCRequestAnnouncements)}, - { 773, 783, -1, sizeof(::CMsgGCRequestAnnouncementsResponse)}, - { 787, 796, -1, sizeof(::CMsgGCBannedWord)}, - { 799, 807, -1, sizeof(::CMsgGCBannedWordListResponse)}, - { 809, 816, -1, sizeof(::CMsgGCToGCBannedWordListBroadcast)}, - { 817, 824, -1, sizeof(::CMsgGCToGCBannedWordListUpdated)}, - { 825, 835, -1, sizeof(::CSOEconDefaultEquippedDefinitionInstanceClient)}, - { 839, 847, -1, sizeof(::CMsgGCToGCDirtySDOCache)}, - { 849, 857, -1, sizeof(::CMsgGCToGCDirtyMultipleSDOCache)}, - { 859, 867, -1, sizeof(::CMsgGCCollectItem)}, - { 869, -1, -1, sizeof(::CMsgSDONoMemcached)}, - { 875, 882, -1, sizeof(::CMsgGCToGCUpdateSQLKeyValue)}, - { 883, 890, -1, sizeof(::CMsgGCToGCIsTrustedServer)}, - { 891, 898, -1, sizeof(::CMsgGCToGCIsTrustedServerResponse)}, - { 899, 906, -1, sizeof(::CMsgGCToGCBroadcastConsoleCommand)}, - { 907, 914, -1, sizeof(::CMsgGCServerVersionUpdated)}, - { 915, 922, -1, sizeof(::CMsgGCClientVersionUpdated)}, - { 923, -1, -1, sizeof(::CMsgGCToGCWebAPIAccountChanged)}, - { 929, 938, -1, sizeof(::CMsgGCToGCRequestPassportItemGrant)}, - { 941, 965, -1, sizeof(::CMsgGameServerInfo)}, - { 983, 994, -1, sizeof(::CSOEconEquipSlot)}, - { 999, 1008, -1, sizeof(::CMsgAdjustEquipSlot)}, - { 1011, -1, -1, sizeof(::CMsgAdjustEquipSlots)}, + { 0, 11, -1, sizeof(::CGCStorePurchaseInit_LineItem)}, + { 16, 26, -1, sizeof(::CMsgGCStorePurchaseInit)}, + { 30, 40, -1, sizeof(::CMsgGCStorePurchaseInitResponse)}, + { 44, 53, -1, sizeof(::CSOPartyInvite)}, + { 56, 65, -1, sizeof(::CSOLobbyInvite)}, + { 68, 75, -1, sizeof(::CMsgSystemBroadcast)}, + { 76, 85, -1, sizeof(::CMsgInviteToParty)}, + { 88, 96, -1, sizeof(::CMsgInvitationCreated)}, + { 98, 108, -1, sizeof(::CMsgPartyInviteResponse)}, + { 112, 119, -1, sizeof(::CMsgKickFromParty)}, + { 120, -1, -1, sizeof(::CMsgLeaveParty)}, + { 126, -1, -1, sizeof(::CMsgServerAvailable)}, + { 132, 139, -1, sizeof(::CMsgLANServerAvailable)}, + { 140, 152, -1, sizeof(::CSOEconGameAccountClient)}, + { 158, 169, -1, sizeof(::CSOItemCriteriaCondition)}, + { 174, 191, -1, sizeof(::CSOItemCriteria)}, + { 202, 227, -1, sizeof(::CSOItemRecipe)}, + { 246, 254, -1, sizeof(::CMsgDevNewItemRequest)}, + { 256, 267, -1, sizeof(::CMsgIncrementKillCountAttribute)}, + { 272, 289, -1, sizeof(::CMsgApplySticker)}, + { 300, 309, -1, sizeof(::CMsgModifyItemAttribute)}, + { 312, 321, -1, sizeof(::CMsgApplyStatTrakSwap)}, + { 324, 332, -1, sizeof(::CMsgApplyStrangePart)}, + { 334, 342, -1, sizeof(::CMsgApplyPennantUpgrade)}, + { 344, 352, -1, sizeof(::CMsgApplyEggEssence)}, + { 354, 363, -1, sizeof(::CSOEconItemAttribute)}, + { 366, 374, -1, sizeof(::CSOEconItemEquipped)}, + { 376, 400, -1, sizeof(::CSOEconItem)}, + { 418, 425, -1, sizeof(::CMsgSortItems)}, + { 426, 436, -1, sizeof(::CSOEconClaimCode)}, + { 440, 448, -1, sizeof(::CMsgStoreGetUserData)}, + { 450, 461, -1, sizeof(::CMsgStoreGetUserDataResponse)}, + { 466, 475, -1, sizeof(::CMsgUpdateItemSchema)}, + { 478, 485, -1, sizeof(::CMsgGCError)}, + { 486, -1, -1, sizeof(::CMsgRequestInventoryRefresh)}, + { 492, 500, -1, sizeof(::CMsgConVarValue)}, + { 502, -1, -1, sizeof(::CMsgReplicateConVars)}, + { 509, 520, -1, sizeof(::CMsgUseItem)}, + { 525, 534, -1, sizeof(::CMsgReplayUploadedToYouTube)}, + { 537, 544, -1, sizeof(::CMsgConsumableExhausted)}, + { 545, 558, -1, sizeof(::CMsgItemAcknowledged__DEPRECATED)}, + { 565, 574, -1, sizeof(::CMsgSetItemPositions_ItemPosition)}, + { 577, -1, -1, sizeof(::CMsgSetItemPositions)}, + { 584, 597, -1, sizeof(::CMsgGCReportAbuse)}, + { 604, 613, -1, sizeof(::CMsgGCReportAbuseResponse)}, + { 616, 625, -1, sizeof(::CMsgGCNameItemNotification)}, + { 628, 638, -1, sizeof(::CMsgGCClientDisplayNotification)}, + { 642, 649, -1, sizeof(::CMsgGCShowItemsPickedUp)}, + { 650, 660, -1, sizeof(::CMsgGCIncrementKillCountResponse)}, + { 664, 676, -1, sizeof(::CSOEconItemDropRateBonus)}, + { 682, 692, -1, sizeof(::CSOEconItemLeagueViewPass)}, + { 696, 705, -1, sizeof(::CSOEconItemEventTicket)}, + { 708, 715, -1, sizeof(::CMsgGCItemPreviewItemBoughtNotification)}, + { 716, 723, -1, sizeof(::CMsgGCStorePurchaseCancel)}, + { 724, 731, -1, sizeof(::CMsgGCStorePurchaseCancelResponse)}, + { 732, 739, -1, sizeof(::CMsgGCStorePurchaseFinalize)}, + { 740, 748, -1, sizeof(::CMsgGCStorePurchaseFinalizeResponse)}, + { 750, 758, -1, sizeof(::CMsgGCBannedWordListRequest)}, + { 760, -1, -1, sizeof(::CMsgGCRequestAnnouncements)}, + { 766, 776, -1, sizeof(::CMsgGCRequestAnnouncementsResponse)}, + { 780, 789, -1, sizeof(::CMsgGCBannedWord)}, + { 792, 800, -1, sizeof(::CMsgGCBannedWordListResponse)}, + { 802, 809, -1, sizeof(::CMsgGCToGCBannedWordListBroadcast)}, + { 810, 817, -1, sizeof(::CMsgGCToGCBannedWordListUpdated)}, + { 818, 826, -1, sizeof(::CMsgGCToGCDirtySDOCache)}, + { 828, 836, -1, sizeof(::CMsgGCToGCDirtyMultipleSDOCache)}, + { 838, 846, -1, sizeof(::CMsgGCCollectItem)}, + { 848, -1, -1, sizeof(::CMsgSDONoMemcached)}, + { 854, 861, -1, sizeof(::CMsgGCToGCUpdateSQLKeyValue)}, + { 862, 869, -1, sizeof(::CMsgGCToGCIsTrustedServer)}, + { 870, 877, -1, sizeof(::CMsgGCToGCIsTrustedServerResponse)}, + { 878, 885, -1, sizeof(::CMsgGCToGCBroadcastConsoleCommand)}, + { 886, 893, -1, sizeof(::CMsgGCServerVersionUpdated)}, + { 894, 901, -1, sizeof(::CMsgGCClientVersionUpdated)}, + { 902, -1, -1, sizeof(::CMsgGCToGCWebAPIAccountChanged)}, + { 908, 917, -1, sizeof(::CMsgGCToGCRequestPassportItemGrant)}, + { 920, 944, -1, sizeof(::CMsgGameServerInfo)}, + { 962, 973, -1, sizeof(::CSOEconEquipSlot)}, + { 978, 987, -1, sizeof(::CMsgAdjustEquipSlot)}, + { 990, 998, -1, sizeof(::CMsgAdjustEquipSlots)}, + { 1000, 1010, -1, sizeof(::CMsgOpenCrate)}, + { 1014, 1025, -1, sizeof(::CSOEconRentalHistory)}, + { 1030, 1037, -1, sizeof(::CMsgAcknowledgeRentalExpiration)}, }; static const ::_pb::Message* const file_default_instances[] = { @@ -2485,8 +2515,6 @@ static const ::_pb::Message* const file_default_instances[] = { &::_CSOEconItemAttribute_default_instance_._instance, &::_CSOEconItemEquipped_default_instance_._instance, &::_CSOEconItem_default_instance_._instance, - &::_CMsgAdjustItemEquippedState_default_instance_._instance, - &::_CMsgAdjustItemEquippedStateMulti_default_instance_._instance, &::_CMsgSortItems_default_instance_._instance, &::_CSOEconClaimCode_default_instance_._instance, &::_CMsgStoreGetUserData_default_instance_._instance, @@ -2523,7 +2551,6 @@ static const ::_pb::Message* const file_default_instances[] = { &::_CMsgGCBannedWordListResponse_default_instance_._instance, &::_CMsgGCToGCBannedWordListBroadcast_default_instance_._instance, &::_CMsgGCToGCBannedWordListUpdated_default_instance_._instance, - &::_CSOEconDefaultEquippedDefinitionInstanceClient_default_instance_._instance, &::_CMsgGCToGCDirtySDOCache_default_instance_._instance, &::_CMsgGCToGCDirtyMultipleSDOCache_default_instance_._instance, &::_CMsgGCCollectItem_default_instance_._instance, @@ -2540,260 +2567,268 @@ static const ::_pb::Message* const file_default_instances[] = { &::_CSOEconEquipSlot_default_instance_._instance, &::_CMsgAdjustEquipSlot_default_instance_._instance, &::_CMsgAdjustEquipSlots_default_instance_._instance, + &::_CMsgOpenCrate_default_instance_._instance, + &::_CSOEconRentalHistory_default_instance_._instance, + &::_CMsgAcknowledgeRentalExpiration_default_instance_._instance, }; -const char descriptor_table_protodef_base_5fgcmessages_5fcsgo_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = - "\n\032base_gcmessages_csgo.proto\032\023steammessa" - "ges.proto\"}\n\035CGCStorePurchaseInit_LineIt" - "em\022\023\n\013item_def_id\030\001 \001(\r\022\020\n\010quantity\030\002 \001(" - "\r\022\036\n\026cost_in_local_currency\030\003 \001(\r\022\025\n\rpur" - "chase_type\030\004 \001(\r\"\202\001\n\027CMsgGCStorePurchase" - "Init\022\017\n\007country\030\001 \001(\t\022\020\n\010language\030\002 \001(\005\022" - "\020\n\010currency\030\003 \001(\005\0222\n\nline_items\030\004 \003(\0132\036." - "CGCStorePurchaseInit_LineItem\"`\n\037CMsgGCS" - "torePurchaseInitResponse\022\016\n\006result\030\001 \001(\005" - "\022\016\n\006txn_id\030\002 \001(\004\022\013\n\003url\030\003 \001(\t\022\020\n\010item_id" - "s\030\004 \003(\004\"P\n\016CSOPartyInvite\022\026\n\010group_id\030\001 " - "\001(\004B\004\200\246\035\001\022\021\n\tsender_id\030\002 \001(\006\022\023\n\013sender_n" - "ame\030\003 \001(\t\"P\n\016CSOLobbyInvite\022\026\n\010group_id\030" - "\001 \001(\004B\004\200\246\035\001\022\021\n\tsender_id\030\002 \001(\006\022\023\n\013sender" - "_name\030\003 \001(\t\"&\n\023CMsgSystemBroadcast\022\017\n\007me" - "ssage\030\001 \001(\t\"R\n\021CMsgInviteToParty\022\020\n\010stea" - "m_id\030\001 \001(\006\022\026\n\016client_version\030\002 \001(\r\022\023\n\013te" - "am_invite\030\003 \001(\r\";\n\025CMsgInvitationCreated" - "\022\020\n\010group_id\030\001 \001(\004\022\020\n\010steam_id\030\002 \001(\006\"h\n\027" - "CMsgPartyInviteResponse\022\020\n\010party_id\030\001 \001(" - "\004\022\016\n\006accept\030\002 \001(\010\022\026\n\016client_version\030\003 \001(" - "\r\022\023\n\013team_invite\030\004 \001(\r\"%\n\021CMsgKickFromPa" - "rty\022\020\n\010steam_id\030\001 \001(\006\"\020\n\016CMsgLeaveParty\"" - "\025\n\023CMsgServerAvailable\"*\n\026CMsgLANServerA" - "vailable\022\020\n\010lobby_id\030\001 \001(\006\"\264\001\n\030CSOEconGa" - "meAccountClient\022$\n\031additional_backpack_s" - "lots\030\001 \001(\r:\0010\022\"\n\032bonus_xp_timestamp_refr" - "esh\030\014 \001(\007\022\032\n\022bonus_xp_usedflags\030\r \001(\r\022\026\n" - "\016elevated_state\030\016 \001(\r\022\032\n\022elevated_timest" - "amp\030\017 \001(\r\"r\n\030CSOItemCriteriaCondition\022\n\n" - "\002op\030\001 \001(\005\022\r\n\005field\030\002 \001(\t\022\020\n\010required\030\003 \001" - "(\010\022\023\n\013float_value\030\004 \001(\002\022\024\n\014string_value\030" - "\005 \001(\t\"\261\002\n\017CSOItemCriteria\022\022\n\nitem_level\030" - "\001 \001(\r\022\024\n\014item_quality\030\002 \001(\005\022\026\n\016item_leve" - "l_set\030\003 \001(\010\022\030\n\020item_quality_set\030\004 \001(\010\022\031\n" - "\021initial_inventory\030\005 \001(\r\022\030\n\020initial_quan" - "tity\030\006 \001(\r\022\033\n\023ignore_enabled_flag\030\010 \001(\010\022" - "-\n\nconditions\030\t \003(\0132\031.CSOItemCriteriaCon" - "dition\022\023\n\013item_rarity\030\n \001(\005\022\027\n\017item_rari" - "ty_set\030\013 \001(\010\022\023\n\013recent_only\030\014 \001(\010\"\325\003\n\rCS" - "OItemRecipe\022\021\n\tdef_index\030\001 \001(\r\022\014\n\004name\030\002" - " \001(\t\022\013\n\003n_a\030\003 \001(\t\022\023\n\013desc_inputs\030\004 \001(\t\022\024" - "\n\014desc_outputs\030\005 \001(\t\022\014\n\004di_a\030\006 \001(\t\022\014\n\004di" - "_b\030\007 \001(\t\022\014\n\004di_c\030\010 \001(\t\022\014\n\004do_a\030\t \001(\t\022\014\n\004" - "do_b\030\n \001(\t\022\014\n\004do_c\030\013 \001(\t\022\037\n\027requires_all" - "_same_class\030\014 \001(\010\022\036\n\026requires_all_same_s" - "lot\030\r \001(\010\022\036\n\026class_usage_for_output\030\016 \001(" - "\005\022\035\n\025slot_usage_for_output\030\017 \001(\005\022\026\n\016set_" - "for_output\030\020 \001(\005\022.\n\024input_items_criteria" - "\030\024 \003(\0132\020.CSOItemCriteria\022/\n\025output_items" - "_criteria\030\025 \003(\0132\020.CSOItemCriteria\022\036\n\026inp" - "ut_item_dupe_counts\030\026 \003(\r\"M\n\025CMsgDevNewI" - "temRequest\022\020\n\010receiver\030\001 \001(\006\022\"\n\010criteria" - "\030\002 \001(\0132\020.CSOItemCriteria\"\214\001\n\037CMsgIncreme" - "ntKillCountAttribute\022\031\n\021killer_account_i" - "d\030\001 \001(\007\022\031\n\021victim_account_id\030\002 \001(\007\022\017\n\007it" - "em_id\030\003 \001(\004\022\022\n\nevent_type\030\004 \001(\r\022\016\n\006amoun" - "t\030\005 \001(\r\"\206\001\n\020CMsgApplySticker\022\027\n\017sticker_" - "item_id\030\001 \001(\004\022\024\n\014item_item_id\030\002 \001(\004\022\024\n\014s" - "ticker_slot\030\003 \001(\r\022\027\n\017baseitem_defidx\030\004 \001" - "(\r\022\024\n\014sticker_wear\030\005 \001(\002\"S\n\027CMsgModifyIt" - "emAttribute\022\017\n\007item_id\030\001 \001(\004\022\023\n\013attr_def" - "idx\030\002 \001(\r\022\022\n\nattr_value\030\003 \001(\r\"]\n\025CMsgApp" - "lyStatTrakSwap\022\024\n\014tool_item_id\030\001 \001(\004\022\026\n\016" - "item_1_item_id\030\002 \001(\004\022\026\n\016item_2_item_id\030\003" - " \001(\004\"J\n\024CMsgApplyStrangePart\022\034\n\024strange_" - "part_item_id\030\001 \001(\004\022\024\n\014item_item_id\030\002 \001(\004" - "\"K\n\027CMsgApplyPennantUpgrade\022\027\n\017upgrade_i" - "tem_id\030\001 \001(\004\022\027\n\017pennant_item_id\030\002 \001(\004\"C\n" - "\023CMsgApplyEggEssence\022\027\n\017essence_item_id\030" - "\001 \001(\004\022\023\n\013egg_item_id\030\002 \001(\004\"M\n\024CSOEconIte" - "mAttribute\022\021\n\tdef_index\030\001 \001(\r\022\r\n\005value\030\002" - " \001(\r\022\023\n\013value_bytes\030\003 \001(\014\":\n\023CSOEconItem" - "Equipped\022\021\n\tnew_class\030\001 \001(\r\022\020\n\010new_slot\030" - "\002 \001(\r\"\237\003\n\013CSOEconItem\022\n\n\002id\030\001 \001(\004\022\022\n\nacc" - "ount_id\030\002 \001(\r\022\021\n\tinventory\030\003 \001(\r\022\021\n\tdef_" - "index\030\004 \001(\r\022\020\n\010quantity\030\005 \001(\r\022\r\n\005level\030\006" - " \001(\r\022\017\n\007quality\030\007 \001(\r\022\020\n\005flags\030\010 \001(\r:\0010\022" - "\016\n\006origin\030\t \001(\r\022\023\n\013custom_name\030\n \001(\t\022\023\n\013" - "custom_desc\030\013 \001(\t\022(\n\tattribute\030\014 \003(\0132\025.C" - "SOEconItemAttribute\022#\n\rinterior_item\030\r \001" - "(\0132\014.CSOEconItem\022\025\n\006in_use\030\016 \001(\010:\005false\022" - "\020\n\005style\030\017 \001(\r:\0010\022\026\n\013original_id\030\020 \001(\004:\001" - "0\022,\n\016equipped_state\030\022 \003(\0132\024.CSOEconItemE" - "quipped\022\016\n\006rarity\030\023 \001(\r\"a\n\033CMsgAdjustIte" - "mEquippedState\022\017\n\007item_id\030\001 \001(\004\022\021\n\tnew_c" - "lass\030\002 \001(\r\022\020\n\010new_slot\030\003 \001(\r\022\014\n\004swap\030\004 \001" - "(\010\"^\n CMsgAdjustItemEquippedStateMulti\022\020" - "\n\010t_equips\030\001 \003(\004\022\021\n\tct_equips\030\002 \003(\004\022\025\n\rn" - "oteam_equips\030\003 \003(\004\"\"\n\rCMsgSortItems\022\021\n\ts" - "ort_type\030\001 \001(\r\"^\n\020CSOEconClaimCode\022\022\n\nac" - "count_id\030\001 \001(\r\022\021\n\tcode_type\030\002 \001(\r\022\025\n\rtim" - "e_acquired\030\003 \001(\r\022\014\n\004code\030\004 \001(\t\"E\n\024CMsgSt" - "oreGetUserData\022\033\n\023price_sheet_version\030\001 " - "\001(\007\022\020\n\010currency\030\002 \001(\005\"\231\001\n\034CMsgStoreGetUs" - "erDataResponse\022\016\n\006result\030\001 \001(\005\022\033\n\023curren" - "cy_deprecated\030\002 \001(\005\022\032\n\022country_deprecate" - "d\030\003 \001(\t\022\033\n\023price_sheet_version\030\004 \001(\007\022\023\n\013" - "price_sheet\030\010 \001(\014\"_\n\024CMsgUpdateItemSchem" - "a\022\022\n\nitems_game\030\001 \001(\014\022\033\n\023item_schema_ver" - "sion\030\002 \001(\007\022\026\n\016items_game_url\030\004 \001(\t\"!\n\013CM" - "sgGCError\022\022\n\nerror_text\030\001 \001(\t\"\035\n\033CMsgReq" - "uestInventoryRefresh\".\n\017CMsgConVarValue\022" - "\014\n\004name\030\001 \001(\t\022\r\n\005value\030\002 \001(\t\"9\n\024CMsgRepl" - "icateConVars\022!\n\007convars\030\001 \003(\0132\020.CMsgConV" - "arValue\"\216\001\n\013CMsgUseItem\022\017\n\007item_id\030\001 \001(\004" - "\022\027\n\017target_steam_id\030\002 \001(\006\022\037\n\027gift__poten" - "tial_targets\030\003 \003(\r\022\030\n\020duel__class_lock\030\004" - " \001(\r\022\032\n\022initiator_steam_id\030\005 \001(\006\"d\n\033CMsg" - "ReplayUploadedToYouTube\022\023\n\013youtube_url\030\001" - " \001(\t\022\034\n\024youtube_account_name\030\002 \001(\t\022\022\n\nse" - "ssion_id\030\003 \001(\004\".\n\027CMsgConsumableExhauste" - "d\022\023\n\013item_def_id\030\001 \001(\005\"\236\001\n CMsgItemAckno" - "wledged__DEPRECATED\022\022\n\naccount_id\030\001 \001(\r\022" - "\021\n\tinventory\030\002 \001(\r\022\021\n\tdef_index\030\003 \001(\r\022\017\n" - "\007quality\030\004 \001(\r\022\016\n\006rarity\030\005 \001(\r\022\016\n\006origin" - "\030\006 \001(\r\022\017\n\007item_id\030\007 \001(\004\"\235\001\n\024CMsgSetItemP" - "ositions\022:\n\016item_positions\030\001 \003(\0132\".CMsgS" - "etItemPositions.ItemPosition\032I\n\014ItemPosi" - "tion\022\026\n\016legacy_item_id\030\001 \001(\r\022\020\n\010position" - "\030\002 \001(\r\022\017\n\007item_id\030\003 \001(\004\"\270\001\n\021CMsgGCReport" - "Abuse\022\027\n\017target_steam_id\030\001 \001(\006\022\023\n\013descri" - "ption\030\004 \001(\t\022\013\n\003gid\030\005 \001(\004\022\022\n\nabuse_type\030\002" - " \001(\r\022\024\n\014content_type\030\003 \001(\r\022\035\n\025target_gam" - "e_server_ip\030\006 \001(\007\022\037\n\027target_game_server_" - "port\030\007 \001(\r\"[\n\031CMsgGCReportAbuseResponse\022" - "\027\n\017target_steam_id\030\001 \001(\006\022\016\n\006result\030\002 \001(\r" - "\022\025\n\rerror_message\030\003 \001(\t\"f\n\032CMsgGCNameIte" - "mNotification\022\026\n\016player_steamid\030\001 \001(\006\022\026\n" - "\016item_def_index\030\002 \001(\r\022\030\n\020item_name_custo" - "m\030\003 \001(\t\"\266\001\n\037CMsgGCClientDisplayNotificat" - "ion\022+\n#notification_title_localization_k" - "ey\030\001 \001(\t\022*\n\"notification_body_localizati" - "on_key\030\002 \001(\t\022\033\n\023body_substring_keys\030\003 \003(" - "\t\022\035\n\025body_substring_values\030\004 \003(\t\"1\n\027CMsg" - "GCShowItemsPickedUp\022\026\n\016player_steamid\030\001 " - "\001(\006\"|\n CMsgGCIncrementKillCountResponse\022" - "\037\n\021killer_account_id\030\001 \001(\rB\004\200\246\035\001\022\021\n\tnum_" - "kills\030\002 \001(\r\022\020\n\010item_def\030\003 \001(\r\022\022\n\nlevel_t" - "ype\030\004 \001(\r\"\217\001\n\030CSOEconItemDropRateBonus\022\022" - "\n\naccount_id\030\001 \001(\r\022\027\n\017expiration_date\030\002 " - "\001(\007\022\r\n\005bonus\030\003 \001(\002\022\023\n\013bonus_count\030\004 \001(\r\022" - "\017\n\007item_id\030\005 \001(\004\022\021\n\tdef_index\030\006 \001(\r\"p\n\031C" - "SOEconItemLeagueViewPass\022\030\n\naccount_id\030\001" - " \001(\rB\004\200\246\035\001\022\027\n\tleague_id\030\002 \001(\rB\004\200\246\035\001\022\r\n\005a" - "dmin\030\003 \001(\r\022\021\n\titemindex\030\004 \001(\r\"O\n\026CSOEcon" - "ItemEventTicket\022\022\n\naccount_id\030\001 \001(\r\022\020\n\010e" - "vent_id\030\002 \001(\r\022\017\n\007item_id\030\003 \001(\004\"A\n\'CMsgGC" - "ItemPreviewItemBoughtNotification\022\026\n\016ite" - "m_def_index\030\001 \001(\r\"+\n\031CMsgGCStorePurchase" - "Cancel\022\016\n\006txn_id\030\001 \001(\004\"3\n!CMsgGCStorePur" - "chaseCancelResponse\022\016\n\006result\030\001 \001(\r\"-\n\033C" - "MsgGCStorePurchaseFinalize\022\016\n\006txn_id\030\001 \001" - "(\004\"G\n#CMsgGCStorePurchaseFinalizeRespons" - "e\022\016\n\006result\030\001 \001(\r\022\020\n\010item_ids\030\002 \003(\004\"I\n\033C" - "MsgGCBannedWordListRequest\022\031\n\021ban_list_g" - "roup_id\030\001 \001(\r\022\017\n\007word_id\030\002 \001(\r\"\034\n\032CMsgGC" - "RequestAnnouncements\"\202\001\n\"CMsgGCRequestAn" - "nouncementsResponse\022\032\n\022announcement_titl" - "e\030\001 \001(\t\022\024\n\014announcement\030\002 \001(\t\022\027\n\017nextmat" - "ch_title\030\003 \001(\t\022\021\n\tnextmatch\030\004 \001(\t\"u\n\020CMs" - "gGCBannedWord\022\017\n\007word_id\030\001 \001(\r\022B\n\tword_t" - "ype\030\002 \001(\0162\022.GC_BannedWordType:\033GC_BANNED" - "_WORD_DISABLE_WORD\022\014\n\004word\030\003 \001(\t\"_\n\034CMsg" - "GCBannedWordListResponse\022\031\n\021ban_list_gro" - "up_id\030\001 \001(\r\022$\n\tword_list\030\002 \003(\0132\021.CMsgGCB" - "annedWord\"U\n!CMsgGCToGCBannedWordListBro" - "adcast\0220\n\tbroadcast\030\001 \001(\0132\035.CMsgGCBanned" - "WordListResponse\"3\n\037CMsgGCToGCBannedWord" - "ListUpdated\022\020\n\010group_id\030\001 \001(\r\"\222\001\n.CSOEco" - "nDefaultEquippedDefinitionInstanceClient" - "\022\030\n\naccount_id\030\001 \001(\rB\004\200\246\035\001\022\027\n\017item_defin" - "ition\030\002 \001(\r\022\026\n\010class_id\030\003 \001(\rB\004\200\246\035\001\022\025\n\007s" - "lot_id\030\004 \001(\rB\004\200\246\035\001\"\?\n\027CMsgGCToGCDirtySDO" - "Cache\022\020\n\010sdo_type\030\001 \001(\r\022\022\n\nkey_uint64\030\002 " - "\001(\004\"G\n\037CMsgGCToGCDirtyMultipleSDOCache\022\020" - "\n\010sdo_type\030\001 \001(\r\022\022\n\nkey_uint64\030\002 \003(\004\"H\n\021" - "CMsgGCCollectItem\022\032\n\022collection_item_id\030" - "\001 \001(\004\022\027\n\017subject_item_id\030\002 \001(\004\"\024\n\022CMsgSD" - "ONoMemcached\"/\n\033CMsgGCToGCUpdateSQLKeyVa" - "lue\022\020\n\010key_name\030\001 \001(\t\"-\n\031CMsgGCToGCIsTru" - "stedServer\022\020\n\010steam_id\030\001 \001(\006\"7\n!CMsgGCTo" - "GCIsTrustedServerResponse\022\022\n\nis_trusted\030" - "\001 \001(\010\"8\n!CMsgGCToGCBroadcastConsoleComma" - "nd\022\023\n\013con_command\030\001 \001(\t\"4\n\032CMsgGCServerV" - "ersionUpdated\022\026\n\016server_version\030\001 \001(\r\"4\n" - "\032CMsgGCClientVersionUpdated\022\026\n\016client_ve" - "rsion\030\001 \001(\r\" \n\036CMsgGCToGCWebAPIAccountCh" - "anged\"^\n\"CMsgGCToGCRequestPassportItemGr" - "ant\022\020\n\010steam_id\030\001 \001(\006\022\021\n\tleague_id\030\002 \001(\r" - "\022\023\n\013reward_flag\030\003 \001(\005\"\350\004\n\022CMsgGameServer" - "Info\022\035\n\025server_public_ip_addr\030\001 \001(\007\022\036\n\026s" - "erver_private_ip_addr\030\002 \001(\007\022\023\n\013server_po" - "rt\030\003 \001(\r\022\026\n\016server_tv_port\030\004 \001(\r\022\022\n\nserv" - "er_key\030\005 \001(\t\022\032\n\022server_hibernation\030\006 \001(\010" - "\022@\n\013server_type\030\007 \001(\0162\036.CMsgGameServerIn" - "fo.ServerType:\013UNSPECIFIED\022\025\n\rserver_reg" - "ion\030\010 \001(\r\022\026\n\016server_loadavg\030\t \001(\002\022 \n\030ser" - "ver_tv_broadcast_time\030\n \001(\002\022\030\n\020server_ga" - "me_time\030\013 \001(\002\022\'\n\037server_relay_connected_" - "steam_id\030\014 \001(\006\022\027\n\017relay_slots_max\030\r \001(\r\022" - "\030\n\020relays_connected\030\016 \001(\005\022\037\n\027relay_clien" - "ts_connected\030\017 \001(\005\022$\n\034relayed_game_serve" - "r_steam_id\030\020 \001(\006\022\032\n\022parent_relay_count\030\021" - " \001(\r\022\026\n\016tv_secret_code\030\022 \001(\006\"2\n\nServerTy" - "pe\022\017\n\013UNSPECIFIED\020\000\022\010\n\004GAME\020\001\022\t\n\005PROXY\020\002" - "\"\205\001\n\020CSOEconEquipSlot\022\030\n\naccount_id\030\001 \001(" - "\rB\004\200\246\035\001\022\026\n\010class_id\030\002 \001(\rB\004\200\246\035\001\022\025\n\007slot_" - "id\030\003 \001(\rB\004\200\246\035\001\022\017\n\007item_id\030\004 \001(\004\022\027\n\017item_" - "definition\030\005 \001(\r\"I\n\023CMsgAdjustEquipSlot\022" - "\020\n\010class_id\030\001 \001(\r\022\017\n\007slot_id\030\002 \001(\r\022\017\n\007it" - "em_id\030\003 \001(\004\";\n\024CMsgAdjustEquipSlots\022#\n\005s" - "lots\030\001 \003(\0132\024.CMsgAdjustEquipSlot*\307\003\n\nEGC" - "BaseMsg\022\032\n\025k_EMsgGCSystemMessage\020\241\037\022\035\n\030k" - "_EMsgGCReplicateConVars\020\242\037\022\032\n\025k_EMsgGCCo" - "nVarUpdated\020\243\037\022\024\n\017k_EMsgGCInQueue\020\250\037\022\032\n\025" - "k_EMsgGCInviteToParty\020\225#\022\036\n\031k_EMsgGCInvi" - "tationCreated\020\226#\022 \n\033k_EMsgGCPartyInviteR" - "esponse\020\227#\022\032\n\025k_EMsgGCKickFromParty\020\230#\022\027" - "\n\022k_EMsgGCLeaveParty\020\231#\022\034\n\027k_EMsgGCServe" - "rAvailable\020\232#\022\"\n\035k_EMsgGCClientConnectTo" - "Server\020\233#\022\033\n\026k_EMsgGCGameServerInfo\020\234#\022\022" - "\n\rk_EMsgGCError\020\235#\022%\n k_EMsgGCReplay_Upl" - "oadedToYouTube\020\236#\022\037\n\032k_EMsgGCLANServerAv" - "ailable\020\237#*Y\n\027EGCBaseProtoObjectTypes\022\036\n" - "\031k_EProtoObjectPartyInvite\020\351\007\022\036\n\031k_EProt" - "oObjectLobbyInvite\020\352\007*T\n\021GC_BannedWordTy" - "pe\022\037\n\033GC_BANNED_WORD_DISABLE_WORD\020\000\022\036\n\032G" - "C_BANNED_WORD_ENABLE_WORD\020\001" +const char descriptor_table_protodef_base_5fgcmessages_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = + "\n\025base_gcmessages.proto\032\023steammessages.p" + "roto\"\230\001\n\035CGCStorePurchaseInit_LineItem\022\023" + "\n\013item_def_id\030\001 \001(\r\022\020\n\010quantity\030\002 \001(\r\022\036\n" + "\026cost_in_local_currency\030\003 \001(\r\022\025\n\rpurchas" + "e_type\030\004 \001(\r\022\031\n\021supplemental_data\030\005 \001(\004\"" + "\202\001\n\027CMsgGCStorePurchaseInit\022\017\n\007country\030\001" + " \001(\t\022\020\n\010language\030\002 \001(\005\022\020\n\010currency\030\003 \001(\005" + "\0222\n\nline_items\030\004 \003(\0132\036.CGCStorePurchaseI" + "nit_LineItem\"`\n\037CMsgGCStorePurchaseInitR" + "esponse\022\016\n\006result\030\001 \001(\005\022\016\n\006txn_id\030\002 \001(\004\022" + "\013\n\003url\030\003 \001(\t\022\020\n\010item_ids\030\004 \003(\004\"P\n\016CSOPar" + "tyInvite\022\026\n\010group_id\030\001 \001(\004B\004\200\246\035\001\022\021\n\tsend" + "er_id\030\002 \001(\006\022\023\n\013sender_name\030\003 \001(\t\"P\n\016CSOL" + "obbyInvite\022\026\n\010group_id\030\001 \001(\004B\004\200\246\035\001\022\021\n\tse" + "nder_id\030\002 \001(\006\022\023\n\013sender_name\030\003 \001(\t\"&\n\023CM" + "sgSystemBroadcast\022\017\n\007message\030\001 \001(\t\"R\n\021CM" + "sgInviteToParty\022\020\n\010steam_id\030\001 \001(\006\022\026\n\016cli" + "ent_version\030\002 \001(\r\022\023\n\013team_invite\030\003 \001(\r\";" + "\n\025CMsgInvitationCreated\022\020\n\010group_id\030\001 \001(" + "\004\022\020\n\010steam_id\030\002 \001(\006\"h\n\027CMsgPartyInviteRe" + "sponse\022\020\n\010party_id\030\001 \001(\004\022\016\n\006accept\030\002 \001(\010" + "\022\026\n\016client_version\030\003 \001(\r\022\023\n\013team_invite\030" + "\004 \001(\r\"%\n\021CMsgKickFromParty\022\020\n\010steam_id\030\001" + " \001(\006\"\020\n\016CMsgLeaveParty\"\025\n\023CMsgServerAvai" + "lable\"*\n\026CMsgLANServerAvailable\022\020\n\010lobby" + "_id\030\001 \001(\006\"\322\001\n\030CSOEconGameAccountClient\022$" + "\n\031additional_backpack_slots\030\001 \001(\r:\0010\022\034\n\024" + "trade_ban_expiration\030\006 \001(\007\022\"\n\032bonus_xp_t" + "imestamp_refresh\030\014 \001(\007\022\032\n\022bonus_xp_usedf" + "lags\030\r \001(\r\022\026\n\016elevated_state\030\016 \001(\r\022\032\n\022el" + "evated_timestamp\030\017 \001(\r\"r\n\030CSOItemCriteri" + "aCondition\022\n\n\002op\030\001 \001(\005\022\r\n\005field\030\002 \001(\t\022\020\n" + "\010required\030\003 \001(\010\022\023\n\013float_value\030\004 \001(\002\022\024\n\014" + "string_value\030\005 \001(\t\"\261\002\n\017CSOItemCriteria\022\022" + "\n\nitem_level\030\001 \001(\r\022\024\n\014item_quality\030\002 \001(\005" + "\022\026\n\016item_level_set\030\003 \001(\010\022\030\n\020item_quality" + "_set\030\004 \001(\010\022\031\n\021initial_inventory\030\005 \001(\r\022\030\n" + "\020initial_quantity\030\006 \001(\r\022\033\n\023ignore_enable" + "d_flag\030\010 \001(\010\022-\n\nconditions\030\t \003(\0132\031.CSOIt" + "emCriteriaCondition\022\023\n\013item_rarity\030\n \001(\005" + "\022\027\n\017item_rarity_set\030\013 \001(\010\022\023\n\013recent_only" + "\030\014 \001(\010\"\325\003\n\rCSOItemRecipe\022\021\n\tdef_index\030\001 " + "\001(\r\022\014\n\004name\030\002 \001(\t\022\013\n\003n_a\030\003 \001(\t\022\023\n\013desc_i" + "nputs\030\004 \001(\t\022\024\n\014desc_outputs\030\005 \001(\t\022\014\n\004di_" + "a\030\006 \001(\t\022\014\n\004di_b\030\007 \001(\t\022\014\n\004di_c\030\010 \001(\t\022\014\n\004d" + "o_a\030\t \001(\t\022\014\n\004do_b\030\n \001(\t\022\014\n\004do_c\030\013 \001(\t\022\037\n" + "\027requires_all_same_class\030\014 \001(\010\022\036\n\026requir" + "es_all_same_slot\030\r \001(\010\022\036\n\026class_usage_fo" + "r_output\030\016 \001(\005\022\035\n\025slot_usage_for_output\030" + "\017 \001(\005\022\026\n\016set_for_output\030\020 \001(\005\022.\n\024input_i" + "tems_criteria\030\024 \003(\0132\020.CSOItemCriteria\022/\n" + "\025output_items_criteria\030\025 \003(\0132\020.CSOItemCr" + "iteria\022\036\n\026input_item_dupe_counts\030\026 \003(\r\"M" + "\n\025CMsgDevNewItemRequest\022\020\n\010receiver\030\001 \001(" + "\006\022\"\n\010criteria\030\002 \001(\0132\020.CSOItemCriteria\"\214\001" + "\n\037CMsgIncrementKillCountAttribute\022\031\n\021kil" + "ler_account_id\030\001 \001(\007\022\031\n\021victim_account_i" + "d\030\002 \001(\007\022\017\n\007item_id\030\003 \001(\004\022\022\n\nevent_type\030\004" + " \001(\r\022\016\n\006amount\030\005 \001(\r\"\242\002\n\020CMsgApplySticke" + "r\022\027\n\017sticker_item_id\030\001 \001(\004\022\024\n\014item_item_" + "id\030\002 \001(\004\022\024\n\014sticker_slot\030\003 \001(\r\022\027\n\017baseit" + "em_defidx\030\004 \001(\r\022\024\n\014sticker_wear\030\005 \001(\002\022\030\n" + "\020sticker_rotation\030\006 \001(\002\022\025\n\rsticker_scale" + "\030\007 \001(\002\022\030\n\020sticker_offset_x\030\010 \001(\002\022\030\n\020stic" + "ker_offset_y\030\t \001(\002\022\030\n\020sticker_offset_z\030\n" + " \001(\002\022\033\n\023sticker_wear_target\030\013 \001(\002\"S\n\027CMs" + "gModifyItemAttribute\022\017\n\007item_id\030\001 \001(\004\022\023\n" + "\013attr_defidx\030\002 \001(\r\022\022\n\nattr_value\030\003 \001(\r\"]" + "\n\025CMsgApplyStatTrakSwap\022\024\n\014tool_item_id\030" + "\001 \001(\004\022\026\n\016item_1_item_id\030\002 \001(\004\022\026\n\016item_2_" + "item_id\030\003 \001(\004\"J\n\024CMsgApplyStrangePart\022\034\n" + "\024strange_part_item_id\030\001 \001(\004\022\024\n\014item_item" + "_id\030\002 \001(\004\"K\n\027CMsgApplyPennantUpgrade\022\027\n\017" + "upgrade_item_id\030\001 \001(\004\022\027\n\017pennant_item_id" + "\030\002 \001(\004\"C\n\023CMsgApplyEggEssence\022\027\n\017essence" + "_item_id\030\001 \001(\004\022\023\n\013egg_item_id\030\002 \001(\004\"M\n\024C" + "SOEconItemAttribute\022\021\n\tdef_index\030\001 \001(\r\022\r" + "\n\005value\030\002 \001(\r\022\023\n\013value_bytes\030\003 \001(\014\":\n\023CS" + "OEconItemEquipped\022\021\n\tnew_class\030\001 \001(\r\022\020\n\010" + "new_slot\030\002 \001(\r\"\237\003\n\013CSOEconItem\022\n\n\002id\030\001 \001" + "(\004\022\022\n\naccount_id\030\002 \001(\r\022\021\n\tinventory\030\003 \001(" + "\r\022\021\n\tdef_index\030\004 \001(\r\022\020\n\010quantity\030\005 \001(\r\022\r" + "\n\005level\030\006 \001(\r\022\017\n\007quality\030\007 \001(\r\022\020\n\005flags\030" + "\010 \001(\r:\0010\022\016\n\006origin\030\t \001(\r\022\023\n\013custom_name\030" + "\n \001(\t\022\023\n\013custom_desc\030\013 \001(\t\022(\n\tattribute\030" + "\014 \003(\0132\025.CSOEconItemAttribute\022#\n\rinterior" + "_item\030\r \001(\0132\014.CSOEconItem\022\025\n\006in_use\030\016 \001(" + "\010:\005false\022\020\n\005style\030\017 \001(\r:\0010\022\026\n\013original_i" + "d\030\020 \001(\004:\0010\022,\n\016equipped_state\030\022 \003(\0132\024.CSO" + "EconItemEquipped\022\016\n\006rarity\030\023 \001(\r\"\"\n\rCMsg" + "SortItems\022\021\n\tsort_type\030\001 \001(\r\"^\n\020CSOEconC" + "laimCode\022\022\n\naccount_id\030\001 \001(\r\022\021\n\tcode_typ" + "e\030\002 \001(\r\022\025\n\rtime_acquired\030\003 \001(\r\022\014\n\004code\030\004" + " \001(\t\"E\n\024CMsgStoreGetUserData\022\033\n\023price_sh" + "eet_version\030\001 \001(\007\022\020\n\010currency\030\002 \001(\005\"\231\001\n\034" + "CMsgStoreGetUserDataResponse\022\016\n\006result\030\001" + " \001(\005\022\033\n\023currency_deprecated\030\002 \001(\005\022\032\n\022cou" + "ntry_deprecated\030\003 \001(\t\022\033\n\023price_sheet_ver" + "sion\030\004 \001(\007\022\023\n\013price_sheet\030\010 \001(\014\"_\n\024CMsgU" + "pdateItemSchema\022\022\n\nitems_game\030\001 \001(\014\022\033\n\023i" + "tem_schema_version\030\002 \001(\007\022\026\n\016items_game_u" + "rl\030\004 \001(\t\"!\n\013CMsgGCError\022\022\n\nerror_text\030\001 " + "\001(\t\"\035\n\033CMsgRequestInventoryRefresh\".\n\017CM" + "sgConVarValue\022\014\n\004name\030\001 \001(\t\022\r\n\005value\030\002 \001" + "(\t\"9\n\024CMsgReplicateConVars\022!\n\007convars\030\001 " + "\003(\0132\020.CMsgConVarValue\"\216\001\n\013CMsgUseItem\022\017\n" + "\007item_id\030\001 \001(\004\022\027\n\017target_steam_id\030\002 \001(\006\022" + "\037\n\027gift__potential_targets\030\003 \003(\r\022\030\n\020duel" + "__class_lock\030\004 \001(\r\022\032\n\022initiator_steam_id" + "\030\005 \001(\006\"d\n\033CMsgReplayUploadedToYouTube\022\023\n" + "\013youtube_url\030\001 \001(\t\022\034\n\024youtube_account_na" + "me\030\002 \001(\t\022\022\n\nsession_id\030\003 \001(\004\".\n\027CMsgCons" + "umableExhausted\022\023\n\013item_def_id\030\001 \001(\005\"\236\001\n" + " CMsgItemAcknowledged__DEPRECATED\022\022\n\nacc" + "ount_id\030\001 \001(\r\022\021\n\tinventory\030\002 \001(\r\022\021\n\tdef_" + "index\030\003 \001(\r\022\017\n\007quality\030\004 \001(\r\022\016\n\006rarity\030\005" + " \001(\r\022\016\n\006origin\030\006 \001(\r\022\017\n\007item_id\030\007 \001(\004\"\235\001" + "\n\024CMsgSetItemPositions\022:\n\016item_positions" + "\030\001 \003(\0132\".CMsgSetItemPositions.ItemPositi" + "on\032I\n\014ItemPosition\022\026\n\016legacy_item_id\030\001 \001" + "(\r\022\020\n\010position\030\002 \001(\r\022\017\n\007item_id\030\003 \001(\004\"\270\001" + "\n\021CMsgGCReportAbuse\022\027\n\017target_steam_id\030\001" + " \001(\006\022\023\n\013description\030\004 \001(\t\022\013\n\003gid\030\005 \001(\004\022\022" + "\n\nabuse_type\030\002 \001(\r\022\024\n\014content_type\030\003 \001(\r" + "\022\035\n\025target_game_server_ip\030\006 \001(\007\022\037\n\027targe" + "t_game_server_port\030\007 \001(\r\"[\n\031CMsgGCReport" + "AbuseResponse\022\027\n\017target_steam_id\030\001 \001(\006\022\016" + "\n\006result\030\002 \001(\r\022\025\n\rerror_message\030\003 \001(\t\"f\n" + "\032CMsgGCNameItemNotification\022\026\n\016player_st" + "eamid\030\001 \001(\006\022\026\n\016item_def_index\030\002 \001(\r\022\030\n\020i" + "tem_name_custom\030\003 \001(\t\"\266\001\n\037CMsgGCClientDi" + "splayNotification\022+\n#notification_title_" + "localization_key\030\001 \001(\t\022*\n\"notification_b" + "ody_localization_key\030\002 \001(\t\022\033\n\023body_subst" + "ring_keys\030\003 \003(\t\022\035\n\025body_substring_values" + "\030\004 \003(\t\"1\n\027CMsgGCShowItemsPickedUp\022\026\n\016pla" + "yer_steamid\030\001 \001(\006\"|\n CMsgGCIncrementKill" + "CountResponse\022\037\n\021killer_account_id\030\001 \001(\r" + "B\004\200\246\035\001\022\021\n\tnum_kills\030\002 \001(\r\022\020\n\010item_def\030\003 " + "\001(\r\022\022\n\nlevel_type\030\004 \001(\r\"\217\001\n\030CSOEconItemD" + "ropRateBonus\022\022\n\naccount_id\030\001 \001(\r\022\027\n\017expi" + "ration_date\030\002 \001(\007\022\r\n\005bonus\030\003 \001(\002\022\023\n\013bonu" + "s_count\030\004 \001(\r\022\017\n\007item_id\030\005 \001(\004\022\021\n\tdef_in" + "dex\030\006 \001(\r\"p\n\031CSOEconItemLeagueViewPass\022\030" + "\n\naccount_id\030\001 \001(\rB\004\200\246\035\001\022\027\n\tleague_id\030\002 " + "\001(\rB\004\200\246\035\001\022\r\n\005admin\030\003 \001(\r\022\021\n\titemindex\030\004 " + "\001(\r\"O\n\026CSOEconItemEventTicket\022\022\n\naccount" + "_id\030\001 \001(\r\022\020\n\010event_id\030\002 \001(\r\022\017\n\007item_id\030\003" + " \001(\004\"A\n\'CMsgGCItemPreviewItemBoughtNotif" + "ication\022\026\n\016item_def_index\030\001 \001(\r\"+\n\031CMsgG" + "CStorePurchaseCancel\022\016\n\006txn_id\030\001 \001(\004\"3\n!" + "CMsgGCStorePurchaseCancelResponse\022\016\n\006res" + "ult\030\001 \001(\r\"-\n\033CMsgGCStorePurchaseFinalize" + "\022\016\n\006txn_id\030\001 \001(\004\"G\n#CMsgGCStorePurchaseF" + "inalizeResponse\022\016\n\006result\030\001 \001(\r\022\020\n\010item_" + "ids\030\002 \003(\004\"I\n\033CMsgGCBannedWordListRequest" + "\022\031\n\021ban_list_group_id\030\001 \001(\r\022\017\n\007word_id\030\002" + " \001(\r\"\034\n\032CMsgGCRequestAnnouncements\"\202\001\n\"C" + "MsgGCRequestAnnouncementsResponse\022\032\n\022ann" + "ouncement_title\030\001 \001(\t\022\024\n\014announcement\030\002 " + "\001(\t\022\027\n\017nextmatch_title\030\003 \001(\t\022\021\n\tnextmatc" + "h\030\004 \001(\t\"u\n\020CMsgGCBannedWord\022\017\n\007word_id\030\001" + " \001(\r\022B\n\tword_type\030\002 \001(\0162\022.GC_BannedWordT" + "ype:\033GC_BANNED_WORD_DISABLE_WORD\022\014\n\004word" + "\030\003 \001(\t\"_\n\034CMsgGCBannedWordListResponse\022\031" + "\n\021ban_list_group_id\030\001 \001(\r\022$\n\tword_list\030\002" + " \003(\0132\021.CMsgGCBannedWord\"U\n!CMsgGCToGCBan" + "nedWordListBroadcast\0220\n\tbroadcast\030\001 \001(\0132" + "\035.CMsgGCBannedWordListResponse\"3\n\037CMsgGC" + "ToGCBannedWordListUpdated\022\020\n\010group_id\030\001 " + "\001(\r\"\?\n\027CMsgGCToGCDirtySDOCache\022\020\n\010sdo_ty" + "pe\030\001 \001(\r\022\022\n\nkey_uint64\030\002 \001(\004\"G\n\037CMsgGCTo" + "GCDirtyMultipleSDOCache\022\020\n\010sdo_type\030\001 \001(" + "\r\022\022\n\nkey_uint64\030\002 \003(\004\"H\n\021CMsgGCCollectIt" + "em\022\032\n\022collection_item_id\030\001 \001(\004\022\027\n\017subjec" + "t_item_id\030\002 \001(\004\"\024\n\022CMsgSDONoMemcached\"/\n" + "\033CMsgGCToGCUpdateSQLKeyValue\022\020\n\010key_name" + "\030\001 \001(\t\"-\n\031CMsgGCToGCIsTrustedServer\022\020\n\010s" + "team_id\030\001 \001(\006\"7\n!CMsgGCToGCIsTrustedServ" + "erResponse\022\022\n\nis_trusted\030\001 \001(\010\"8\n!CMsgGC" + "ToGCBroadcastConsoleCommand\022\023\n\013con_comma" + "nd\030\001 \001(\t\"4\n\032CMsgGCServerVersionUpdated\022\026" + "\n\016server_version\030\001 \001(\r\"4\n\032CMsgGCClientVe" + "rsionUpdated\022\026\n\016client_version\030\001 \001(\r\" \n\036" + "CMsgGCToGCWebAPIAccountChanged\"^\n\"CMsgGC" + "ToGCRequestPassportItemGrant\022\020\n\010steam_id" + "\030\001 \001(\006\022\021\n\tleague_id\030\002 \001(\r\022\023\n\013reward_flag" + "\030\003 \001(\005\"\350\004\n\022CMsgGameServerInfo\022\035\n\025server_" + "public_ip_addr\030\001 \001(\007\022\036\n\026server_private_i" + "p_addr\030\002 \001(\007\022\023\n\013server_port\030\003 \001(\r\022\026\n\016ser" + "ver_tv_port\030\004 \001(\r\022\022\n\nserver_key\030\005 \001(\t\022\032\n" + "\022server_hibernation\030\006 \001(\010\022@\n\013server_type" + "\030\007 \001(\0162\036.CMsgGameServerInfo.ServerType:\013" + "UNSPECIFIED\022\025\n\rserver_region\030\010 \001(\r\022\026\n\016se" + "rver_loadavg\030\t \001(\002\022 \n\030server_tv_broadcas" + "t_time\030\n \001(\002\022\030\n\020server_game_time\030\013 \001(\002\022\'" + "\n\037server_relay_connected_steam_id\030\014 \001(\006\022" + "\027\n\017relay_slots_max\030\r \001(\r\022\030\n\020relays_conne" + "cted\030\016 \001(\005\022\037\n\027relay_clients_connected\030\017 " + "\001(\005\022$\n\034relayed_game_server_steam_id\030\020 \001(" + "\006\022\032\n\022parent_relay_count\030\021 \001(\r\022\026\n\016tv_secr" + "et_code\030\022 \001(\006\"2\n\nServerType\022\017\n\013UNSPECIFI" + "ED\020\000\022\010\n\004GAME\020\001\022\t\n\005PROXY\020\002\"\205\001\n\020CSOEconEqu" + "ipSlot\022\030\n\naccount_id\030\001 \001(\rB\004\200\246\035\001\022\026\n\010clas" + "s_id\030\002 \001(\rB\004\200\246\035\001\022\025\n\007slot_id\030\003 \001(\rB\004\200\246\035\001\022" + "\017\n\007item_id\030\004 \001(\004\022\027\n\017item_definition\030\005 \001(" + "\r\"I\n\023CMsgAdjustEquipSlot\022\020\n\010class_id\030\001 \001" + "(\r\022\017\n\007slot_id\030\002 \001(\r\022\017\n\007item_id\030\003 \001(\004\"O\n\024" + "CMsgAdjustEquipSlots\022#\n\005slots\030\001 \003(\0132\024.CM" + "sgAdjustEquipSlot\022\022\n\nchange_num\030\002 \001(\r\"l\n" + "\rCMsgOpenCrate\022\024\n\014tool_item_id\030\001 \001(\004\022\027\n\017" + "subject_item_id\030\002 \001(\004\022\022\n\nfor_rental\030\003 \001(" + "\010\022\030\n\020points_remaining\030\004 \001(\r\"\223\001\n\024CSOEconR" + "entalHistory\022\030\n\naccount_id\030\001 \001(\rB\004\200\246\035\001\022\033" + "\n\rcrate_item_id\030\002 \001(\004B\004\200\246\035\001\022\027\n\017crate_def" + "_index\030\003 \001(\r\022\022\n\nissue_date\030\004 \001(\r\022\027\n\017expi" + "ration_date\030\005 \001(\r\"8\n\037CMsgAcknowledgeRent" + "alExpiration\022\025\n\rcrate_item_id\030\001 \001(\004*\307\003\n\n" + "EGCBaseMsg\022\032\n\025k_EMsgGCSystemMessage\020\241\037\022\035" + "\n\030k_EMsgGCReplicateConVars\020\242\037\022\032\n\025k_EMsgG" + "CConVarUpdated\020\243\037\022\024\n\017k_EMsgGCInQueue\020\250\037\022" + "\032\n\025k_EMsgGCInviteToParty\020\225#\022\036\n\031k_EMsgGCI" + "nvitationCreated\020\226#\022 \n\033k_EMsgGCPartyInvi" + "teResponse\020\227#\022\032\n\025k_EMsgGCKickFromParty\020\230" + "#\022\027\n\022k_EMsgGCLeaveParty\020\231#\022\034\n\027k_EMsgGCSe" + "rverAvailable\020\232#\022\"\n\035k_EMsgGCClientConnec" + "tToServer\020\233#\022\033\n\026k_EMsgGCGameServerInfo\020\234" + "#\022\022\n\rk_EMsgGCError\020\235#\022%\n k_EMsgGCReplay_" + "UploadedToYouTube\020\236#\022\037\n\032k_EMsgGCLANServe" + "rAvailable\020\237#*Y\n\027EGCBaseProtoObjectTypes" + "\022\036\n\031k_EProtoObjectPartyInvite\020\351\007\022\036\n\031k_EP" + "rotoObjectLobbyInvite\020\352\007*T\n\021GC_BannedWor" + "dType\022\037\n\033GC_BANNED_WORD_DISABLE_WORD\020\000\022\036" + "\n\032GC_BANNED_WORD_ENABLE_WORD\020\001" ; -static const ::_pbi::DescriptorTable* const descriptor_table_base_5fgcmessages_5fcsgo_2eproto_deps[1] = { +static const ::_pbi::DescriptorTable* const descriptor_table_base_5fgcmessages_2eproto_deps[1] = { &::descriptor_table_steammessages_2eproto, }; -static ::_pbi::once_flag descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once; -const ::_pbi::DescriptorTable descriptor_table_base_5fgcmessages_5fcsgo_2eproto = { - false, false, 9147, descriptor_table_protodef_base_5fgcmessages_5fcsgo_2eproto, - "base_gcmessages_csgo.proto", - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, descriptor_table_base_5fgcmessages_5fcsgo_2eproto_deps, 1, 83, - schemas, file_default_instances, TableStruct_base_5fgcmessages_5fcsgo_2eproto::offsets, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto, file_level_enum_descriptors_base_5fgcmessages_5fcsgo_2eproto, - file_level_service_descriptors_base_5fgcmessages_5fcsgo_2eproto, +static ::_pbi::once_flag descriptor_table_base_5fgcmessages_2eproto_once; +const ::_pbi::DescriptorTable descriptor_table_base_5fgcmessages_2eproto = { + false, false, 9350, descriptor_table_protodef_base_5fgcmessages_2eproto, + "base_gcmessages.proto", + &descriptor_table_base_5fgcmessages_2eproto_once, descriptor_table_base_5fgcmessages_2eproto_deps, 1, 83, + schemas, file_default_instances, TableStruct_base_5fgcmessages_2eproto::offsets, + file_level_metadata_base_5fgcmessages_2eproto, file_level_enum_descriptors_base_5fgcmessages_2eproto, + file_level_service_descriptors_base_5fgcmessages_2eproto, }; -PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter() { - return &descriptor_table_base_5fgcmessages_5fcsgo_2eproto; +PROTOBUF_ATTRIBUTE_WEAK const ::_pbi::DescriptorTable* descriptor_table_base_5fgcmessages_2eproto_getter() { + return &descriptor_table_base_5fgcmessages_2eproto; } // Force running AddDescriptors() at dynamic initialization time. -PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_base_5fgcmessages_5fcsgo_2eproto(&descriptor_table_base_5fgcmessages_5fcsgo_2eproto); +PROTOBUF_ATTRIBUTE_INIT_PRIORITY2 static ::_pbi::AddDescriptorsRunner dynamic_init_dummy_base_5fgcmessages_2eproto(&descriptor_table_base_5fgcmessages_2eproto); const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* CMsgGameServerInfo_ServerType_descriptor() { - ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&descriptor_table_base_5fgcmessages_5fcsgo_2eproto); - return file_level_enum_descriptors_base_5fgcmessages_5fcsgo_2eproto[0]; + ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&descriptor_table_base_5fgcmessages_2eproto); + return file_level_enum_descriptors_base_5fgcmessages_2eproto[0]; } bool CMsgGameServerInfo_ServerType_IsValid(int value) { switch (value) { @@ -2815,8 +2850,8 @@ constexpr CMsgGameServerInfo_ServerType CMsgGameServerInfo::ServerType_MAX; constexpr int CMsgGameServerInfo::ServerType_ARRAYSIZE; #endif // (__cplusplus < 201703) && (!defined(_MSC_VER) || (_MSC_VER >= 1900 && _MSC_VER < 1912)) const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* EGCBaseMsg_descriptor() { - ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&descriptor_table_base_5fgcmessages_5fcsgo_2eproto); - return file_level_enum_descriptors_base_5fgcmessages_5fcsgo_2eproto[1]; + ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&descriptor_table_base_5fgcmessages_2eproto); + return file_level_enum_descriptors_base_5fgcmessages_2eproto[1]; } bool EGCBaseMsg_IsValid(int value) { switch (value) { @@ -2842,8 +2877,8 @@ bool EGCBaseMsg_IsValid(int value) { } const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* EGCBaseProtoObjectTypes_descriptor() { - ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&descriptor_table_base_5fgcmessages_5fcsgo_2eproto); - return file_level_enum_descriptors_base_5fgcmessages_5fcsgo_2eproto[2]; + ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&descriptor_table_base_5fgcmessages_2eproto); + return file_level_enum_descriptors_base_5fgcmessages_2eproto[2]; } bool EGCBaseProtoObjectTypes_IsValid(int value) { switch (value) { @@ -2856,8 +2891,8 @@ bool EGCBaseProtoObjectTypes_IsValid(int value) { } const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* GC_BannedWordType_descriptor() { - ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&descriptor_table_base_5fgcmessages_5fcsgo_2eproto); - return file_level_enum_descriptors_base_5fgcmessages_5fcsgo_2eproto[3]; + ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&descriptor_table_base_5fgcmessages_2eproto); + return file_level_enum_descriptors_base_5fgcmessages_2eproto[3]; } bool GC_BannedWordType_IsValid(int value) { switch (value) { @@ -2887,6 +2922,9 @@ class CGCStorePurchaseInit_LineItem::_Internal { static void set_has_purchase_type(HasBits* has_bits) { (*has_bits)[0] |= 8u; } + static void set_has_supplemental_data(HasBits* has_bits) { + (*has_bits)[0] |= 16u; + } }; CGCStorePurchaseInit_LineItem::CGCStorePurchaseInit_LineItem(::PROTOBUF_NAMESPACE_ID::Arena* arena, @@ -2904,12 +2942,13 @@ CGCStorePurchaseInit_LineItem::CGCStorePurchaseInit_LineItem(const CGCStorePurch , decltype(_impl_.item_def_id_){} , decltype(_impl_.quantity_){} , decltype(_impl_.cost_in_local_currency_){} - , decltype(_impl_.purchase_type_){}}; + , decltype(_impl_.purchase_type_){} + , decltype(_impl_.supplemental_data_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); ::memcpy(&_impl_.item_def_id_, &from._impl_.item_def_id_, - static_cast(reinterpret_cast(&_impl_.purchase_type_) - - reinterpret_cast(&_impl_.item_def_id_)) + sizeof(_impl_.purchase_type_)); + static_cast(reinterpret_cast(&_impl_.supplemental_data_) - + reinterpret_cast(&_impl_.item_def_id_)) + sizeof(_impl_.supplemental_data_)); // @@protoc_insertion_point(copy_constructor:CGCStorePurchaseInit_LineItem) } @@ -2924,6 +2963,7 @@ inline void CGCStorePurchaseInit_LineItem::SharedCtor( , decltype(_impl_.quantity_){0u} , decltype(_impl_.cost_in_local_currency_){0u} , decltype(_impl_.purchase_type_){0u} + , decltype(_impl_.supplemental_data_){uint64_t{0u}} }; } @@ -2951,10 +2991,10 @@ void CGCStorePurchaseInit_LineItem::Clear() { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { + if (cached_has_bits & 0x0000001fu) { ::memset(&_impl_.item_def_id_, 0, static_cast( - reinterpret_cast(&_impl_.purchase_type_) - - reinterpret_cast(&_impl_.item_def_id_)) + sizeof(_impl_.purchase_type_)); + reinterpret_cast(&_impl_.supplemental_data_) - + reinterpret_cast(&_impl_.item_def_id_)) + sizeof(_impl_.supplemental_data_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); @@ -3003,6 +3043,15 @@ const char* CGCStorePurchaseInit_LineItem::_InternalParse(const char* ptr, ::_pb } else goto handle_unusual; continue; + // optional uint64 supplemental_data = 5; + case 5: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 40)) { + _Internal::set_has_supplemental_data(&has_bits); + _impl_.supplemental_data_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; default: goto handle_unusual; } // switch @@ -3058,6 +3107,12 @@ uint8_t* CGCStorePurchaseInit_LineItem::_InternalSerialize( target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_purchase_type(), target); } + // optional uint64 supplemental_data = 5; + if (cached_has_bits & 0x00000010u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(5, this->_internal_supplemental_data(), target); + } + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); @@ -3075,7 +3130,7 @@ size_t CGCStorePurchaseInit_LineItem::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { + if (cached_has_bits & 0x0000001fu) { // optional uint32 item_def_id = 1; if (cached_has_bits & 0x00000001u) { total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_item_def_id()); @@ -3096,6 +3151,11 @@ size_t CGCStorePurchaseInit_LineItem::ByteSizeLong() const { total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_purchase_type()); } + // optional uint64 supplemental_data = 5; + if (cached_has_bits & 0x00000010u) { + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_supplemental_data()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } @@ -3116,7 +3176,7 @@ void CGCStorePurchaseInit_LineItem::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { + if (cached_has_bits & 0x0000001fu) { if (cached_has_bits & 0x00000001u) { _this->_impl_.item_def_id_ = from._impl_.item_def_id_; } @@ -3129,6 +3189,9 @@ void CGCStorePurchaseInit_LineItem::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& if (cached_has_bits & 0x00000008u) { _this->_impl_.purchase_type_ = from._impl_.purchase_type_; } + if (cached_has_bits & 0x00000010u) { + _this->_impl_.supplemental_data_ = from._impl_.supplemental_data_; + } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); @@ -3150,8 +3213,8 @@ void CGCStorePurchaseInit_LineItem::InternalSwap(CGCStorePurchaseInit_LineItem* _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CGCStorePurchaseInit_LineItem, _impl_.purchase_type_) - + sizeof(CGCStorePurchaseInit_LineItem::_impl_.purchase_type_) + PROTOBUF_FIELD_OFFSET(CGCStorePurchaseInit_LineItem, _impl_.supplemental_data_) + + sizeof(CGCStorePurchaseInit_LineItem::_impl_.supplemental_data_) - PROTOBUF_FIELD_OFFSET(CGCStorePurchaseInit_LineItem, _impl_.item_def_id_)>( reinterpret_cast(&_impl_.item_def_id_), reinterpret_cast(&other->_impl_.item_def_id_)); @@ -3159,8 +3222,8 @@ void CGCStorePurchaseInit_LineItem::InternalSwap(CGCStorePurchaseInit_LineItem* ::PROTOBUF_NAMESPACE_ID::Metadata CGCStorePurchaseInit_LineItem::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[0]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[0]); } // =================================================================== @@ -3489,8 +3552,8 @@ void CMsgGCStorePurchaseInit::InternalSwap(CMsgGCStorePurchaseInit* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCStorePurchaseInit::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[1]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[1]); } // =================================================================== @@ -3822,8 +3885,8 @@ void CMsgGCStorePurchaseInitResponse::InternalSwap(CMsgGCStorePurchaseInitRespon ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCStorePurchaseInitResponse::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[2]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[2]); } // =================================================================== @@ -4118,8 +4181,8 @@ void CSOPartyInvite::InternalSwap(CSOPartyInvite* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOPartyInvite::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[3]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[3]); } // =================================================================== @@ -4414,8 +4477,8 @@ void CSOLobbyInvite::InternalSwap(CSOLobbyInvite* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOLobbyInvite::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[4]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[4]); } // =================================================================== @@ -4634,8 +4697,8 @@ void CMsgSystemBroadcast::InternalSwap(CMsgSystemBroadcast* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgSystemBroadcast::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[5]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[5]); } // =================================================================== @@ -4899,8 +4962,8 @@ void CMsgInviteToParty::InternalSwap(CMsgInviteToParty* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgInviteToParty::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[6]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[6]); } // =================================================================== @@ -5136,8 +5199,8 @@ void CMsgInvitationCreated::InternalSwap(CMsgInvitationCreated* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgInvitationCreated::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[7]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[7]); } // =================================================================== @@ -5429,8 +5492,8 @@ void CMsgPartyInviteResponse::InternalSwap(CMsgPartyInviteResponse* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgPartyInviteResponse::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[8]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[8]); } // =================================================================== @@ -5620,8 +5683,8 @@ void CMsgKickFromParty::InternalSwap(CMsgKickFromParty* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgKickFromParty::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[9]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[9]); } // =================================================================== @@ -5660,8 +5723,8 @@ const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgLeaveParty::GetClassData() ::PROTOBUF_NAMESPACE_ID::Metadata CMsgLeaveParty::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[10]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[10]); } // =================================================================== @@ -5700,8 +5763,8 @@ const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgServerAvailable::GetClassD ::PROTOBUF_NAMESPACE_ID::Metadata CMsgServerAvailable::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[11]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[11]); } // =================================================================== @@ -5891,8 +5954,8 @@ void CMsgLANServerAvailable::InternalSwap(CMsgLANServerAvailable* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgLANServerAvailable::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[12]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[12]); } // =================================================================== @@ -5903,18 +5966,21 @@ class CSOEconGameAccountClient::_Internal { static void set_has_additional_backpack_slots(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_bonus_xp_timestamp_refresh(HasBits* has_bits) { + static void set_has_trade_ban_expiration(HasBits* has_bits) { (*has_bits)[0] |= 2u; } - static void set_has_bonus_xp_usedflags(HasBits* has_bits) { + static void set_has_bonus_xp_timestamp_refresh(HasBits* has_bits) { (*has_bits)[0] |= 4u; } - static void set_has_elevated_state(HasBits* has_bits) { + static void set_has_bonus_xp_usedflags(HasBits* has_bits) { (*has_bits)[0] |= 8u; } - static void set_has_elevated_timestamp(HasBits* has_bits) { + static void set_has_elevated_state(HasBits* has_bits) { (*has_bits)[0] |= 16u; } + static void set_has_elevated_timestamp(HasBits* has_bits) { + (*has_bits)[0] |= 32u; + } }; CSOEconGameAccountClient::CSOEconGameAccountClient(::PROTOBUF_NAMESPACE_ID::Arena* arena, @@ -5930,6 +5996,7 @@ CSOEconGameAccountClient::CSOEconGameAccountClient(const CSOEconGameAccountClien decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} , decltype(_impl_.additional_backpack_slots_){} + , decltype(_impl_.trade_ban_expiration_){} , decltype(_impl_.bonus_xp_timestamp_refresh_){} , decltype(_impl_.bonus_xp_usedflags_){} , decltype(_impl_.elevated_state_){} @@ -5950,6 +6017,7 @@ inline void CSOEconGameAccountClient::SharedCtor( decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} , decltype(_impl_.additional_backpack_slots_){0u} + , decltype(_impl_.trade_ban_expiration_){0u} , decltype(_impl_.bonus_xp_timestamp_refresh_){0u} , decltype(_impl_.bonus_xp_usedflags_){0u} , decltype(_impl_.elevated_state_){0u} @@ -5981,7 +6049,7 @@ void CSOEconGameAccountClient::Clear() { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { + if (cached_has_bits & 0x0000003fu) { ::memset(&_impl_.additional_backpack_slots_, 0, static_cast( reinterpret_cast(&_impl_.elevated_timestamp_) - reinterpret_cast(&_impl_.additional_backpack_slots_)) + sizeof(_impl_.elevated_timestamp_)); @@ -6006,6 +6074,15 @@ const char* CSOEconGameAccountClient::_InternalParse(const char* ptr, ::_pbi::Pa } else goto handle_unusual; continue; + // optional fixed32 trade_ban_expiration = 6; + case 6: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 53)) { + _Internal::set_has_trade_ban_expiration(&has_bits); + _impl_.trade_ban_expiration_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint32_t); + } else + goto handle_unusual; + continue; // optional fixed32 bonus_xp_timestamp_refresh = 12; case 12: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 101)) { @@ -6079,26 +6156,32 @@ uint8_t* CSOEconGameAccountClient::_InternalSerialize( target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_additional_backpack_slots(), target); } - // optional fixed32 bonus_xp_timestamp_refresh = 12; + // optional fixed32 trade_ban_expiration = 6; if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed32ToArray(6, this->_internal_trade_ban_expiration(), target); + } + + // optional fixed32 bonus_xp_timestamp_refresh = 12; + if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteFixed32ToArray(12, this->_internal_bonus_xp_timestamp_refresh(), target); } // optional uint32 bonus_xp_usedflags = 13; - if (cached_has_bits & 0x00000004u) { + if (cached_has_bits & 0x00000008u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteUInt32ToArray(13, this->_internal_bonus_xp_usedflags(), target); } // optional uint32 elevated_state = 14; - if (cached_has_bits & 0x00000008u) { + if (cached_has_bits & 0x00000010u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteUInt32ToArray(14, this->_internal_elevated_state(), target); } // optional uint32 elevated_timestamp = 15; - if (cached_has_bits & 0x00000010u) { + if (cached_has_bits & 0x00000020u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteUInt32ToArray(15, this->_internal_elevated_timestamp(), target); } @@ -6120,29 +6203,34 @@ size_t CSOEconGameAccountClient::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { + if (cached_has_bits & 0x0000003fu) { // optional uint32 additional_backpack_slots = 1 [default = 0]; if (cached_has_bits & 0x00000001u) { total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_additional_backpack_slots()); } - // optional fixed32 bonus_xp_timestamp_refresh = 12; + // optional fixed32 trade_ban_expiration = 6; if (cached_has_bits & 0x00000002u) { total_size += 1 + 4; } - // optional uint32 bonus_xp_usedflags = 13; + // optional fixed32 bonus_xp_timestamp_refresh = 12; if (cached_has_bits & 0x00000004u) { + total_size += 1 + 4; + } + + // optional uint32 bonus_xp_usedflags = 13; + if (cached_has_bits & 0x00000008u) { total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_bonus_xp_usedflags()); } // optional uint32 elevated_state = 14; - if (cached_has_bits & 0x00000008u) { + if (cached_has_bits & 0x00000010u) { total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_elevated_state()); } // optional uint32 elevated_timestamp = 15; - if (cached_has_bits & 0x00000010u) { + if (cached_has_bits & 0x00000020u) { total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_elevated_timestamp()); } @@ -6166,20 +6254,23 @@ void CSOEconGameAccountClient::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_ms (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { + if (cached_has_bits & 0x0000003fu) { if (cached_has_bits & 0x00000001u) { _this->_impl_.additional_backpack_slots_ = from._impl_.additional_backpack_slots_; } if (cached_has_bits & 0x00000002u) { - _this->_impl_.bonus_xp_timestamp_refresh_ = from._impl_.bonus_xp_timestamp_refresh_; + _this->_impl_.trade_ban_expiration_ = from._impl_.trade_ban_expiration_; } if (cached_has_bits & 0x00000004u) { - _this->_impl_.bonus_xp_usedflags_ = from._impl_.bonus_xp_usedflags_; + _this->_impl_.bonus_xp_timestamp_refresh_ = from._impl_.bonus_xp_timestamp_refresh_; } if (cached_has_bits & 0x00000008u) { - _this->_impl_.elevated_state_ = from._impl_.elevated_state_; + _this->_impl_.bonus_xp_usedflags_ = from._impl_.bonus_xp_usedflags_; } if (cached_has_bits & 0x00000010u) { + _this->_impl_.elevated_state_ = from._impl_.elevated_state_; + } + if (cached_has_bits & 0x00000020u) { _this->_impl_.elevated_timestamp_ = from._impl_.elevated_timestamp_; } _this->_impl_._has_bits_[0] |= cached_has_bits; @@ -6212,8 +6303,8 @@ void CSOEconGameAccountClient::InternalSwap(CSOEconGameAccountClient* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOEconGameAccountClient::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[13]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[13]); } // =================================================================== @@ -6595,8 +6686,8 @@ void CSOItemCriteriaCondition::InternalSwap(CSOItemCriteriaCondition* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOItemCriteriaCondition::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[14]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[14]); } // =================================================================== @@ -7100,8 +7191,8 @@ void CSOItemCriteria::InternalSwap(CSOItemCriteria* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOItemCriteria::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[15]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[15]); } // =================================================================== @@ -8136,8 +8227,8 @@ void CSOItemRecipe::InternalSwap(CSOItemRecipe* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOItemRecipe::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[16]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[16]); } // =================================================================== @@ -8383,8 +8474,8 @@ void CMsgDevNewItemRequest::InternalSwap(CMsgDevNewItemRequest* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgDevNewItemRequest::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[17]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[17]); } // =================================================================== @@ -8704,8 +8795,8 @@ void CMsgIncrementKillCountAttribute::InternalSwap(CMsgIncrementKillCountAttribu ::PROTOBUF_NAMESPACE_ID::Metadata CMsgIncrementKillCountAttribute::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[18]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[18]); } // =================================================================== @@ -8728,6 +8819,24 @@ class CMsgApplySticker::_Internal { static void set_has_sticker_wear(HasBits* has_bits) { (*has_bits)[0] |= 16u; } + static void set_has_sticker_rotation(HasBits* has_bits) { + (*has_bits)[0] |= 32u; + } + static void set_has_sticker_scale(HasBits* has_bits) { + (*has_bits)[0] |= 64u; + } + static void set_has_sticker_offset_x(HasBits* has_bits) { + (*has_bits)[0] |= 128u; + } + static void set_has_sticker_offset_y(HasBits* has_bits) { + (*has_bits)[0] |= 256u; + } + static void set_has_sticker_offset_z(HasBits* has_bits) { + (*has_bits)[0] |= 512u; + } + static void set_has_sticker_wear_target(HasBits* has_bits) { + (*has_bits)[0] |= 1024u; + } }; CMsgApplySticker::CMsgApplySticker(::PROTOBUF_NAMESPACE_ID::Arena* arena, @@ -8746,12 +8855,18 @@ CMsgApplySticker::CMsgApplySticker(const CMsgApplySticker& from) , decltype(_impl_.item_item_id_){} , decltype(_impl_.sticker_slot_){} , decltype(_impl_.baseitem_defidx_){} - , decltype(_impl_.sticker_wear_){}}; + , decltype(_impl_.sticker_wear_){} + , decltype(_impl_.sticker_rotation_){} + , decltype(_impl_.sticker_scale_){} + , decltype(_impl_.sticker_offset_x_){} + , decltype(_impl_.sticker_offset_y_){} + , decltype(_impl_.sticker_offset_z_){} + , decltype(_impl_.sticker_wear_target_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); ::memcpy(&_impl_.sticker_item_id_, &from._impl_.sticker_item_id_, - static_cast(reinterpret_cast(&_impl_.sticker_wear_) - - reinterpret_cast(&_impl_.sticker_item_id_)) + sizeof(_impl_.sticker_wear_)); + static_cast(reinterpret_cast(&_impl_.sticker_wear_target_) - + reinterpret_cast(&_impl_.sticker_item_id_)) + sizeof(_impl_.sticker_wear_target_)); // @@protoc_insertion_point(copy_constructor:CMsgApplySticker) } @@ -8767,6 +8882,12 @@ inline void CMsgApplySticker::SharedCtor( , decltype(_impl_.sticker_slot_){0u} , decltype(_impl_.baseitem_defidx_){0u} , decltype(_impl_.sticker_wear_){0} + , decltype(_impl_.sticker_rotation_){0} + , decltype(_impl_.sticker_scale_){0} + , decltype(_impl_.sticker_offset_x_){0} + , decltype(_impl_.sticker_offset_y_){0} + , decltype(_impl_.sticker_offset_z_){0} + , decltype(_impl_.sticker_wear_target_){0} }; } @@ -8794,10 +8915,15 @@ void CMsgApplySticker::Clear() { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { + if (cached_has_bits & 0x000000ffu) { ::memset(&_impl_.sticker_item_id_, 0, static_cast( - reinterpret_cast(&_impl_.sticker_wear_) - - reinterpret_cast(&_impl_.sticker_item_id_)) + sizeof(_impl_.sticker_wear_)); + reinterpret_cast(&_impl_.sticker_offset_x_) - + reinterpret_cast(&_impl_.sticker_item_id_)) + sizeof(_impl_.sticker_offset_x_)); + } + if (cached_has_bits & 0x00000700u) { + ::memset(&_impl_.sticker_offset_y_, 0, static_cast( + reinterpret_cast(&_impl_.sticker_wear_target_) - + reinterpret_cast(&_impl_.sticker_offset_y_)) + sizeof(_impl_.sticker_wear_target_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); @@ -8855,6 +8981,60 @@ const char* CMsgApplySticker::_InternalParse(const char* ptr, ::_pbi::ParseConte } else goto handle_unusual; continue; + // optional float sticker_rotation = 6; + case 6: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 53)) { + _Internal::set_has_sticker_rotation(&has_bits); + _impl_.sticker_rotation_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional float sticker_scale = 7; + case 7: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 61)) { + _Internal::set_has_sticker_scale(&has_bits); + _impl_.sticker_scale_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional float sticker_offset_x = 8; + case 8: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 69)) { + _Internal::set_has_sticker_offset_x(&has_bits); + _impl_.sticker_offset_x_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional float sticker_offset_y = 9; + case 9: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 77)) { + _Internal::set_has_sticker_offset_y(&has_bits); + _impl_.sticker_offset_y_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional float sticker_offset_z = 10; + case 10: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 85)) { + _Internal::set_has_sticker_offset_z(&has_bits); + _impl_.sticker_offset_z_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional float sticker_wear_target = 11; + case 11: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 93)) { + _Internal::set_has_sticker_wear_target(&has_bits); + _impl_.sticker_wear_target_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; default: goto handle_unusual; } // switch @@ -8916,6 +9096,42 @@ uint8_t* CMsgApplySticker::_InternalSerialize( target = ::_pbi::WireFormatLite::WriteFloatToArray(5, this->_internal_sticker_wear(), target); } + // optional float sticker_rotation = 6; + if (cached_has_bits & 0x00000020u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(6, this->_internal_sticker_rotation(), target); + } + + // optional float sticker_scale = 7; + if (cached_has_bits & 0x00000040u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(7, this->_internal_sticker_scale(), target); + } + + // optional float sticker_offset_x = 8; + if (cached_has_bits & 0x00000080u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(8, this->_internal_sticker_offset_x(), target); + } + + // optional float sticker_offset_y = 9; + if (cached_has_bits & 0x00000100u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(9, this->_internal_sticker_offset_y(), target); + } + + // optional float sticker_offset_z = 10; + if (cached_has_bits & 0x00000200u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(10, this->_internal_sticker_offset_z(), target); + } + + // optional float sticker_wear_target = 11; + if (cached_has_bits & 0x00000400u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(11, this->_internal_sticker_wear_target(), target); + } + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); @@ -8933,7 +9149,7 @@ size_t CMsgApplySticker::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { + if (cached_has_bits & 0x000000ffu) { // optional uint64 sticker_item_id = 1; if (cached_has_bits & 0x00000001u) { total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_sticker_item_id()); @@ -8959,6 +9175,38 @@ size_t CMsgApplySticker::ByteSizeLong() const { total_size += 1 + 4; } + // optional float sticker_rotation = 6; + if (cached_has_bits & 0x00000020u) { + total_size += 1 + 4; + } + + // optional float sticker_scale = 7; + if (cached_has_bits & 0x00000040u) { + total_size += 1 + 4; + } + + // optional float sticker_offset_x = 8; + if (cached_has_bits & 0x00000080u) { + total_size += 1 + 4; + } + + } + if (cached_has_bits & 0x00000700u) { + // optional float sticker_offset_y = 9; + if (cached_has_bits & 0x00000100u) { + total_size += 1 + 4; + } + + // optional float sticker_offset_z = 10; + if (cached_has_bits & 0x00000200u) { + total_size += 1 + 4; + } + + // optional float sticker_wear_target = 11; + if (cached_has_bits & 0x00000400u) { + total_size += 1 + 4; + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } @@ -8979,7 +9227,7 @@ void CMsgApplySticker::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { + if (cached_has_bits & 0x000000ffu) { if (cached_has_bits & 0x00000001u) { _this->_impl_.sticker_item_id_ = from._impl_.sticker_item_id_; } @@ -8995,6 +9243,27 @@ void CMsgApplySticker::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const if (cached_has_bits & 0x00000010u) { _this->_impl_.sticker_wear_ = from._impl_.sticker_wear_; } + if (cached_has_bits & 0x00000020u) { + _this->_impl_.sticker_rotation_ = from._impl_.sticker_rotation_; + } + if (cached_has_bits & 0x00000040u) { + _this->_impl_.sticker_scale_ = from._impl_.sticker_scale_; + } + if (cached_has_bits & 0x00000080u) { + _this->_impl_.sticker_offset_x_ = from._impl_.sticker_offset_x_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } + if (cached_has_bits & 0x00000700u) { + if (cached_has_bits & 0x00000100u) { + _this->_impl_.sticker_offset_y_ = from._impl_.sticker_offset_y_; + } + if (cached_has_bits & 0x00000200u) { + _this->_impl_.sticker_offset_z_ = from._impl_.sticker_offset_z_; + } + if (cached_has_bits & 0x00000400u) { + _this->_impl_.sticker_wear_target_ = from._impl_.sticker_wear_target_; + } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); @@ -9016,8 +9285,8 @@ void CMsgApplySticker::InternalSwap(CMsgApplySticker* other) { _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgApplySticker, _impl_.sticker_wear_) - + sizeof(CMsgApplySticker::_impl_.sticker_wear_) + PROTOBUF_FIELD_OFFSET(CMsgApplySticker, _impl_.sticker_wear_target_) + + sizeof(CMsgApplySticker::_impl_.sticker_wear_target_) - PROTOBUF_FIELD_OFFSET(CMsgApplySticker, _impl_.sticker_item_id_)>( reinterpret_cast(&_impl_.sticker_item_id_), reinterpret_cast(&other->_impl_.sticker_item_id_)); @@ -9025,8 +9294,8 @@ void CMsgApplySticker::InternalSwap(CMsgApplySticker* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgApplySticker::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[19]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[19]); } // =================================================================== @@ -9290,8 +9559,8 @@ void CMsgModifyItemAttribute::InternalSwap(CMsgModifyItemAttribute* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgModifyItemAttribute::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[20]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[20]); } // =================================================================== @@ -9555,8 +9824,8 @@ void CMsgApplyStatTrakSwap::InternalSwap(CMsgApplyStatTrakSwap* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgApplyStatTrakSwap::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[21]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[21]); } // =================================================================== @@ -9792,8 +10061,8 @@ void CMsgApplyStrangePart::InternalSwap(CMsgApplyStrangePart* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgApplyStrangePart::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[22]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[22]); } // =================================================================== @@ -10029,8 +10298,8 @@ void CMsgApplyPennantUpgrade::InternalSwap(CMsgApplyPennantUpgrade* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgApplyPennantUpgrade::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[23]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[23]); } // =================================================================== @@ -10266,8 +10535,8 @@ void CMsgApplyEggEssence::InternalSwap(CMsgApplyEggEssence* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgApplyEggEssence::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[24]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[24]); } // =================================================================== @@ -10555,8 +10824,8 @@ void CSOEconItemAttribute::InternalSwap(CSOEconItemAttribute* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOEconItemAttribute::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[25]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[25]); } // =================================================================== @@ -10792,8 +11061,8 @@ void CSOEconItemEquipped::InternalSwap(CSOEconItemEquipped* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOEconItemEquipped::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[26]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[26]); } // =================================================================== @@ -11581,69 +11850,52 @@ void CSOEconItem::InternalSwap(CSOEconItem* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOEconItem::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[27]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[27]); } // =================================================================== -class CMsgAdjustItemEquippedState::_Internal { +class CMsgSortItems::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_item_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_sort_type(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_new_class(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_new_slot(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_swap(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } }; -CMsgAdjustItemEquippedState::CMsgAdjustItemEquippedState(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgSortItems::CMsgSortItems(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgAdjustItemEquippedState) + // @@protoc_insertion_point(arena_constructor:CMsgSortItems) } -CMsgAdjustItemEquippedState::CMsgAdjustItemEquippedState(const CMsgAdjustItemEquippedState& from) +CMsgSortItems::CMsgSortItems(const CMsgSortItems& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgAdjustItemEquippedState* const _this = this; (void)_this; + CMsgSortItems* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.item_id_){} - , decltype(_impl_.new_class_){} - , decltype(_impl_.new_slot_){} - , decltype(_impl_.swap_){}}; + , decltype(_impl_.sort_type_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.item_id_, &from._impl_.item_id_, - static_cast(reinterpret_cast(&_impl_.swap_) - - reinterpret_cast(&_impl_.item_id_)) + sizeof(_impl_.swap_)); - // @@protoc_insertion_point(copy_constructor:CMsgAdjustItemEquippedState) + _this->_impl_.sort_type_ = from._impl_.sort_type_; + // @@protoc_insertion_point(copy_constructor:CMsgSortItems) } -inline void CMsgAdjustItemEquippedState::SharedCtor( +inline void CMsgSortItems::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.item_id_){uint64_t{0u}} - , decltype(_impl_.new_class_){0u} - , decltype(_impl_.new_slot_){0u} - , decltype(_impl_.swap_){false} + , decltype(_impl_.sort_type_){0u} }; } -CMsgAdjustItemEquippedState::~CMsgAdjustItemEquippedState() { - // @@protoc_insertion_point(destructor:CMsgAdjustItemEquippedState) +CMsgSortItems::~CMsgSortItems() { + // @@protoc_insertion_point(destructor:CMsgSortItems) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -11651,69 +11903,37 @@ CMsgAdjustItemEquippedState::~CMsgAdjustItemEquippedState() { SharedDtor(); } -inline void CMsgAdjustItemEquippedState::SharedDtor() { +inline void CMsgSortItems::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgAdjustItemEquippedState::SetCachedSize(int size) const { +void CMsgSortItems::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgAdjustItemEquippedState::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgAdjustItemEquippedState) +void CMsgSortItems::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgSortItems) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - ::memset(&_impl_.item_id_, 0, static_cast( - reinterpret_cast(&_impl_.swap_) - - reinterpret_cast(&_impl_.item_id_)) + sizeof(_impl_.swap_)); - } + _impl_.sort_type_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgAdjustItemEquippedState::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgSortItems::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint64 item_id = 1; + // optional uint32 sort_type = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_item_id(&has_bits); - _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 new_class = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_new_class(&has_bits); - _impl_.new_class_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 new_slot = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_new_slot(&has_bits); - _impl_.new_slot_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional bool swap = 4; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { - _Internal::set_has_swap(&has_bits); - _impl_.swap_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + _Internal::set_has_sort_type(&has_bits); + _impl_.sort_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -11742,181 +11962,160 @@ const char* CMsgAdjustItemEquippedState::_InternalParse(const char* ptr, ::_pbi: #undef CHK_ } -uint8_t* CMsgAdjustItemEquippedState::_InternalSerialize( +uint8_t* CMsgSortItems::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgAdjustItemEquippedState) + // @@protoc_insertion_point(serialize_to_array_start:CMsgSortItems) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint64 item_id = 1; + // optional uint32 sort_type = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(1, this->_internal_item_id(), target); - } - - // optional uint32 new_class = 2; - if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_new_class(), target); - } - - // optional uint32 new_slot = 3; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_new_slot(), target); - } - - // optional bool swap = 4; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray(4, this->_internal_swap(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_sort_type(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgAdjustItemEquippedState) + // @@protoc_insertion_point(serialize_to_array_end:CMsgSortItems) return target; } -size_t CMsgAdjustItemEquippedState::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgAdjustItemEquippedState) +size_t CMsgSortItems::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgSortItems) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // optional uint32 sort_type = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - // optional uint64 item_id = 1; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); - } - - // optional uint32 new_class = 2; - if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_new_class()); - } - - // optional uint32 new_slot = 3; - if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_new_slot()); - } - - // optional bool swap = 4; - if (cached_has_bits & 0x00000008u) { - total_size += 1 + 1; - } - + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_sort_type()); } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgAdjustItemEquippedState::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgSortItems::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgAdjustItemEquippedState::MergeImpl + CMsgSortItems::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgAdjustItemEquippedState::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgSortItems::GetClassData() const { return &_class_data_; } -void CMsgAdjustItemEquippedState::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgAdjustItemEquippedState) +void CMsgSortItems::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgSortItems) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - if (cached_has_bits & 0x00000001u) { - _this->_impl_.item_id_ = from._impl_.item_id_; - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.new_class_ = from._impl_.new_class_; - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.new_slot_ = from._impl_.new_slot_; - } - if (cached_has_bits & 0x00000008u) { - _this->_impl_.swap_ = from._impl_.swap_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; + if (from._internal_has_sort_type()) { + _this->_internal_set_sort_type(from._internal_sort_type()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgAdjustItemEquippedState::CopyFrom(const CMsgAdjustItemEquippedState& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgAdjustItemEquippedState) +void CMsgSortItems::CopyFrom(const CMsgSortItems& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgSortItems) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgAdjustItemEquippedState::IsInitialized() const { +bool CMsgSortItems::IsInitialized() const { return true; } -void CMsgAdjustItemEquippedState::InternalSwap(CMsgAdjustItemEquippedState* other) { +void CMsgSortItems::InternalSwap(CMsgSortItems* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgAdjustItemEquippedState, _impl_.swap_) - + sizeof(CMsgAdjustItemEquippedState::_impl_.swap_) - - PROTOBUF_FIELD_OFFSET(CMsgAdjustItemEquippedState, _impl_.item_id_)>( - reinterpret_cast(&_impl_.item_id_), - reinterpret_cast(&other->_impl_.item_id_)); + swap(_impl_.sort_type_, other->_impl_.sort_type_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgAdjustItemEquippedState::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgSortItems::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[28]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[28]); } // =================================================================== -class CMsgAdjustItemEquippedStateMulti::_Internal { +class CSOEconClaimCode::_Internal { public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_account_id(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_code_type(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } + static void set_has_time_acquired(HasBits* has_bits) { + (*has_bits)[0] |= 8u; + } + static void set_has_code(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } }; -CMsgAdjustItemEquippedStateMulti::CMsgAdjustItemEquippedStateMulti(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CSOEconClaimCode::CSOEconClaimCode(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgAdjustItemEquippedStateMulti) + // @@protoc_insertion_point(arena_constructor:CSOEconClaimCode) } -CMsgAdjustItemEquippedStateMulti::CMsgAdjustItemEquippedStateMulti(const CMsgAdjustItemEquippedStateMulti& from) +CSOEconClaimCode::CSOEconClaimCode(const CSOEconClaimCode& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgAdjustItemEquippedStateMulti* const _this = this; (void)_this; + CSOEconClaimCode* const _this = this; (void)_this; new (&_impl_) Impl_{ - decltype(_impl_.t_equips_){from._impl_.t_equips_} - , decltype(_impl_.ct_equips_){from._impl_.ct_equips_} - , decltype(_impl_.noteam_equips_){from._impl_.noteam_equips_} - , /*decltype(_impl_._cached_size_)*/{}}; + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.code_){} + , decltype(_impl_.account_id_){} + , decltype(_impl_.code_type_){} + , decltype(_impl_.time_acquired_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - // @@protoc_insertion_point(copy_constructor:CMsgAdjustItemEquippedStateMulti) + _impl_.code_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.code_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_code()) { + _this->_impl_.code_.Set(from._internal_code(), + _this->GetArenaForAllocation()); + } + ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, + static_cast(reinterpret_cast(&_impl_.time_acquired_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.time_acquired_)); + // @@protoc_insertion_point(copy_constructor:CSOEconClaimCode) } -inline void CMsgAdjustItemEquippedStateMulti::SharedCtor( +inline void CSOEconClaimCode::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ - decltype(_impl_.t_equips_){arena} - , decltype(_impl_.ct_equips_){arena} - , decltype(_impl_.noteam_equips_){arena} + decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.code_){} + , decltype(_impl_.account_id_){0u} + , decltype(_impl_.code_type_){0u} + , decltype(_impl_.time_acquired_){0u} }; + _impl_.code_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.code_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgAdjustItemEquippedStateMulti::~CMsgAdjustItemEquippedStateMulti() { - // @@protoc_insertion_point(destructor:CMsgAdjustItemEquippedStateMulti) +CSOEconClaimCode::~CSOEconClaimCode() { + // @@protoc_insertion_point(destructor:CSOEconClaimCode) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -11924,80 +12123,77 @@ CMsgAdjustItemEquippedStateMulti::~CMsgAdjustItemEquippedStateMulti() { SharedDtor(); } -inline void CMsgAdjustItemEquippedStateMulti::SharedDtor() { +inline void CSOEconClaimCode::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.t_equips_.~RepeatedField(); - _impl_.ct_equips_.~RepeatedField(); - _impl_.noteam_equips_.~RepeatedField(); + _impl_.code_.Destroy(); } -void CMsgAdjustItemEquippedStateMulti::SetCachedSize(int size) const { +void CSOEconClaimCode::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgAdjustItemEquippedStateMulti::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgAdjustItemEquippedStateMulti) +void CSOEconClaimCode::Clear() { +// @@protoc_insertion_point(message_clear_start:CSOEconClaimCode) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.t_equips_.Clear(); - _impl_.ct_equips_.Clear(); - _impl_.noteam_equips_.Clear(); + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + _impl_.code_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x0000000eu) { + ::memset(&_impl_.account_id_, 0, static_cast( + reinterpret_cast(&_impl_.time_acquired_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.time_acquired_)); + } + _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgAdjustItemEquippedStateMulti::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CSOEconClaimCode::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // repeated uint64 t_equips = 1; + // optional uint32 account_id = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - ptr -= 1; - do { - ptr += 1; - _internal_add_t_equips(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr)); - CHK_(ptr); - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<8>(ptr)); - } else if (static_cast(tag) == 10) { - ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt64Parser(_internal_mutable_t_equips(), ptr, ctx); - CHK_(ptr); + _Internal::set_has_account_id(&has_bits); + _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); } else goto handle_unusual; continue; - // repeated uint64 ct_equips = 2; + // optional uint32 code_type = 2; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - ptr -= 1; - do { - ptr += 1; - _internal_add_ct_equips(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr)); - CHK_(ptr); - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<16>(ptr)); - } else if (static_cast(tag) == 18) { - ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt64Parser(_internal_mutable_ct_equips(), ptr, ctx); + _Internal::set_has_code_type(&has_bits); + _impl_.code_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // repeated uint64 noteam_equips = 3; + // optional uint32 time_acquired = 3; case 3: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - ptr -= 1; - do { - ptr += 1; - _internal_add_noteam_equips(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr)); - CHK_(ptr); - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<24>(ptr)); - } else if (static_cast(tag) == 26) { - ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt64Parser(_internal_mutable_noteam_equips(), ptr, ctx); + _Internal::set_has_time_acquired(&has_bits); + _impl_.time_acquired_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional string code = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 34)) { + auto str = _internal_mutable_code(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CSOEconClaimCode.code"); + #endif // !NDEBUG } else goto handle_unusual; continue; @@ -12017,6 +12213,7 @@ const char* CMsgAdjustItemEquippedStateMulti::_InternalParse(const char* ptr, :: CHK_(ptr != nullptr); } // while message_done: + _impl_._has_bits_.Or(has_bits); return ptr; failure: ptr = nullptr; @@ -12024,164 +12221,203 @@ const char* CMsgAdjustItemEquippedStateMulti::_InternalParse(const char* ptr, :: #undef CHK_ } -uint8_t* CMsgAdjustItemEquippedStateMulti::_InternalSerialize( +uint8_t* CSOEconClaimCode::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgAdjustItemEquippedStateMulti) + // @@protoc_insertion_point(serialize_to_array_start:CSOEconClaimCode) uint32_t cached_has_bits = 0; (void) cached_has_bits; - // repeated uint64 t_equips = 1; - for (int i = 0, n = this->_internal_t_equips_size(); i < n; i++) { + cached_has_bits = _impl_._has_bits_[0]; + // optional uint32 account_id = 1; + if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(1, this->_internal_t_equips(i), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); } - // repeated uint64 ct_equips = 2; - for (int i = 0, n = this->_internal_ct_equips_size(); i < n; i++) { + // optional uint32 code_type = 2; + if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_ct_equips(i), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_code_type(), target); } - // repeated uint64 noteam_equips = 3; - for (int i = 0, n = this->_internal_noteam_equips_size(); i < n; i++) { + // optional uint32 time_acquired = 3; + if (cached_has_bits & 0x00000008u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(3, this->_internal_noteam_equips(i), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_time_acquired(), target); + } + + // optional string code = 4; + if (cached_has_bits & 0x00000001u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_code().data(), static_cast(this->_internal_code().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CSOEconClaimCode.code"); + target = stream->WriteStringMaybeAliased( + 4, this->_internal_code(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgAdjustItemEquippedStateMulti) + // @@protoc_insertion_point(serialize_to_array_end:CSOEconClaimCode) return target; } -size_t CMsgAdjustItemEquippedStateMulti::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgAdjustItemEquippedStateMulti) +size_t CSOEconClaimCode::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CSOEconClaimCode) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated uint64 t_equips = 1; - { - size_t data_size = ::_pbi::WireFormatLite:: - UInt64Size(this->_impl_.t_equips_); - total_size += 1 * - ::_pbi::FromIntSize(this->_internal_t_equips_size()); - total_size += data_size; - } + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x0000000fu) { + // optional string code = 4; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_code()); + } - // repeated uint64 ct_equips = 2; - { - size_t data_size = ::_pbi::WireFormatLite:: - UInt64Size(this->_impl_.ct_equips_); - total_size += 1 * - ::_pbi::FromIntSize(this->_internal_ct_equips_size()); - total_size += data_size; - } + // optional uint32 account_id = 1; + if (cached_has_bits & 0x00000002u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); + } - // repeated uint64 noteam_equips = 3; - { - size_t data_size = ::_pbi::WireFormatLite:: - UInt64Size(this->_impl_.noteam_equips_); - total_size += 1 * - ::_pbi::FromIntSize(this->_internal_noteam_equips_size()); - total_size += data_size; - } + // optional uint32 code_type = 2; + if (cached_has_bits & 0x00000004u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_code_type()); + } + + // optional uint32 time_acquired = 3; + if (cached_has_bits & 0x00000008u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_time_acquired()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgAdjustItemEquippedStateMulti::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconClaimCode::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgAdjustItemEquippedStateMulti::MergeImpl + CSOEconClaimCode::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgAdjustItemEquippedStateMulti::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconClaimCode::GetClassData() const { return &_class_data_; } -void CMsgAdjustItemEquippedStateMulti::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgAdjustItemEquippedStateMulti) +void CSOEconClaimCode::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconClaimCode) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - _this->_impl_.t_equips_.MergeFrom(from._impl_.t_equips_); - _this->_impl_.ct_equips_.MergeFrom(from._impl_.ct_equips_); - _this->_impl_.noteam_equips_.MergeFrom(from._impl_.noteam_equips_); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x0000000fu) { + if (cached_has_bits & 0x00000001u) { + _this->_internal_set_code(from._internal_code()); + } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.account_id_ = from._impl_.account_id_; + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.code_type_ = from._impl_.code_type_; + } + if (cached_has_bits & 0x00000008u) { + _this->_impl_.time_acquired_ = from._impl_.time_acquired_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgAdjustItemEquippedStateMulti::CopyFrom(const CMsgAdjustItemEquippedStateMulti& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgAdjustItemEquippedStateMulti) +void CSOEconClaimCode::CopyFrom(const CSOEconClaimCode& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconClaimCode) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgAdjustItemEquippedStateMulti::IsInitialized() const { +bool CSOEconClaimCode::IsInitialized() const { return true; } -void CMsgAdjustItemEquippedStateMulti::InternalSwap(CMsgAdjustItemEquippedStateMulti* other) { +void CSOEconClaimCode::InternalSwap(CSOEconClaimCode* other) { using std::swap; + auto* lhs_arena = GetArenaForAllocation(); + auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.t_equips_.InternalSwap(&other->_impl_.t_equips_); - _impl_.ct_equips_.InternalSwap(&other->_impl_.ct_equips_); - _impl_.noteam_equips_.InternalSwap(&other->_impl_.noteam_equips_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.code_, lhs_arena, + &other->_impl_.code_, rhs_arena + ); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CSOEconClaimCode, _impl_.time_acquired_) + + sizeof(CSOEconClaimCode::_impl_.time_acquired_) + - PROTOBUF_FIELD_OFFSET(CSOEconClaimCode, _impl_.account_id_)>( + reinterpret_cast(&_impl_.account_id_), + reinterpret_cast(&other->_impl_.account_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgAdjustItemEquippedStateMulti::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CSOEconClaimCode::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[29]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[29]); } // =================================================================== -class CMsgSortItems::_Internal { +class CMsgStoreGetUserData::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_sort_type(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_price_sheet_version(HasBits* has_bits) { (*has_bits)[0] |= 1u; } + static void set_has_currency(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } }; -CMsgSortItems::CMsgSortItems(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgStoreGetUserData::CMsgStoreGetUserData(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgSortItems) + // @@protoc_insertion_point(arena_constructor:CMsgStoreGetUserData) } -CMsgSortItems::CMsgSortItems(const CMsgSortItems& from) +CMsgStoreGetUserData::CMsgStoreGetUserData(const CMsgStoreGetUserData& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgSortItems* const _this = this; (void)_this; + CMsgStoreGetUserData* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.sort_type_){}}; + , decltype(_impl_.price_sheet_version_){} + , decltype(_impl_.currency_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.sort_type_ = from._impl_.sort_type_; - // @@protoc_insertion_point(copy_constructor:CMsgSortItems) + ::memcpy(&_impl_.price_sheet_version_, &from._impl_.price_sheet_version_, + static_cast(reinterpret_cast(&_impl_.currency_) - + reinterpret_cast(&_impl_.price_sheet_version_)) + sizeof(_impl_.currency_)); + // @@protoc_insertion_point(copy_constructor:CMsgStoreGetUserData) } -inline void CMsgSortItems::SharedCtor( +inline void CMsgStoreGetUserData::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.sort_type_){0u} + , decltype(_impl_.price_sheet_version_){0u} + , decltype(_impl_.currency_){0} }; } -CMsgSortItems::~CMsgSortItems() { - // @@protoc_insertion_point(destructor:CMsgSortItems) +CMsgStoreGetUserData::~CMsgStoreGetUserData() { + // @@protoc_insertion_point(destructor:CMsgStoreGetUserData) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -12189,37 +12425,51 @@ CMsgSortItems::~CMsgSortItems() { SharedDtor(); } -inline void CMsgSortItems::SharedDtor() { +inline void CMsgStoreGetUserData::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgSortItems::SetCachedSize(int size) const { +void CMsgStoreGetUserData::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgSortItems::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgSortItems) +void CMsgStoreGetUserData::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgStoreGetUserData) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.sort_type_ = 0u; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + ::memset(&_impl_.price_sheet_version_, 0, static_cast( + reinterpret_cast(&_impl_.currency_) - + reinterpret_cast(&_impl_.price_sheet_version_)) + sizeof(_impl_.currency_)); + } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgSortItems::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgStoreGetUserData::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 sort_type = 1; + // optional fixed32 price_sheet_version = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_sort_type(&has_bits); - _impl_.sort_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 13)) { + _Internal::set_has_price_sheet_version(&has_bits); + _impl_.price_sheet_version_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint32_t); + } else + goto handle_unusual; + continue; + // optional int32 currency = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_currency(&has_bits); + _impl_.currency_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -12248,160 +12498,202 @@ const char* CMsgSortItems::_InternalParse(const char* ptr, ::_pbi::ParseContext* #undef CHK_ } -uint8_t* CMsgSortItems::_InternalSerialize( +uint8_t* CMsgStoreGetUserData::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgSortItems) + // @@protoc_insertion_point(serialize_to_array_start:CMsgStoreGetUserData) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 sort_type = 1; + // optional fixed32 price_sheet_version = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_sort_type(), target); + target = ::_pbi::WireFormatLite::WriteFixed32ToArray(1, this->_internal_price_sheet_version(), target); + } + + // optional int32 currency = 2; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(2, this->_internal_currency(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgSortItems) + // @@protoc_insertion_point(serialize_to_array_end:CMsgStoreGetUserData) return target; } -size_t CMsgSortItems::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgSortItems) +size_t CMsgStoreGetUserData::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgStoreGetUserData) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional uint32 sort_type = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_sort_type()); - } + if (cached_has_bits & 0x00000003u) { + // optional fixed32 price_sheet_version = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + 4; + } + + // optional int32 currency = 2; + if (cached_has_bits & 0x00000002u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_currency()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgSortItems::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgStoreGetUserData::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgSortItems::MergeImpl + CMsgStoreGetUserData::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgSortItems::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgStoreGetUserData::GetClassData() const { return &_class_data_; } -void CMsgSortItems::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgSortItems) - GOOGLE_DCHECK_NE(&from, _this); - uint32_t cached_has_bits = 0; - (void) cached_has_bits; +void CMsgStoreGetUserData::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgStoreGetUserData) + GOOGLE_DCHECK_NE(&from, _this); + uint32_t cached_has_bits = 0; + (void) cached_has_bits; - if (from._internal_has_sort_type()) { - _this->_internal_set_sort_type(from._internal_sort_type()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000001u) { + _this->_impl_.price_sheet_version_ = from._impl_.price_sheet_version_; + } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.currency_ = from._impl_.currency_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgSortItems::CopyFrom(const CMsgSortItems& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgSortItems) +void CMsgStoreGetUserData::CopyFrom(const CMsgStoreGetUserData& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgStoreGetUserData) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgSortItems::IsInitialized() const { +bool CMsgStoreGetUserData::IsInitialized() const { return true; } -void CMsgSortItems::InternalSwap(CMsgSortItems* other) { +void CMsgStoreGetUserData::InternalSwap(CMsgStoreGetUserData* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.sort_type_, other->_impl_.sort_type_); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgStoreGetUserData, _impl_.currency_) + + sizeof(CMsgStoreGetUserData::_impl_.currency_) + - PROTOBUF_FIELD_OFFSET(CMsgStoreGetUserData, _impl_.price_sheet_version_)>( + reinterpret_cast(&_impl_.price_sheet_version_), + reinterpret_cast(&other->_impl_.price_sheet_version_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgSortItems::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgStoreGetUserData::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[30]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[30]); } // =================================================================== -class CSOEconClaimCode::_Internal { +class CMsgStoreGetUserDataResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_account_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_code_type(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_result(HasBits* has_bits) { (*has_bits)[0] |= 4u; } - static void set_has_time_acquired(HasBits* has_bits) { + static void set_has_currency_deprecated(HasBits* has_bits) { (*has_bits)[0] |= 8u; } - static void set_has_code(HasBits* has_bits) { + static void set_has_country_deprecated(HasBits* has_bits) { (*has_bits)[0] |= 1u; } + static void set_has_price_sheet_version(HasBits* has_bits) { + (*has_bits)[0] |= 16u; + } + static void set_has_price_sheet(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } }; -CSOEconClaimCode::CSOEconClaimCode(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgStoreGetUserDataResponse::CMsgStoreGetUserDataResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CSOEconClaimCode) + // @@protoc_insertion_point(arena_constructor:CMsgStoreGetUserDataResponse) } -CSOEconClaimCode::CSOEconClaimCode(const CSOEconClaimCode& from) +CMsgStoreGetUserDataResponse::CMsgStoreGetUserDataResponse(const CMsgStoreGetUserDataResponse& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CSOEconClaimCode* const _this = this; (void)_this; + CMsgStoreGetUserDataResponse* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.code_){} - , decltype(_impl_.account_id_){} - , decltype(_impl_.code_type_){} - , decltype(_impl_.time_acquired_){}}; + , decltype(_impl_.country_deprecated_){} + , decltype(_impl_.price_sheet_){} + , decltype(_impl_.result_){} + , decltype(_impl_.currency_deprecated_){} + , decltype(_impl_.price_sheet_version_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.code_.InitDefault(); + _impl_.country_deprecated_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.code_.Set("", GetArenaForAllocation()); + _impl_.country_deprecated_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_code()) { - _this->_impl_.code_.Set(from._internal_code(), + if (from._internal_has_country_deprecated()) { + _this->_impl_.country_deprecated_.Set(from._internal_country_deprecated(), _this->GetArenaForAllocation()); } - ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, - static_cast(reinterpret_cast(&_impl_.time_acquired_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.time_acquired_)); - // @@protoc_insertion_point(copy_constructor:CSOEconClaimCode) + _impl_.price_sheet_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.price_sheet_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_price_sheet()) { + _this->_impl_.price_sheet_.Set(from._internal_price_sheet(), + _this->GetArenaForAllocation()); + } + ::memcpy(&_impl_.result_, &from._impl_.result_, + static_cast(reinterpret_cast(&_impl_.price_sheet_version_) - + reinterpret_cast(&_impl_.result_)) + sizeof(_impl_.price_sheet_version_)); + // @@protoc_insertion_point(copy_constructor:CMsgStoreGetUserDataResponse) } -inline void CSOEconClaimCode::SharedCtor( +inline void CMsgStoreGetUserDataResponse::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.code_){} - , decltype(_impl_.account_id_){0u} - , decltype(_impl_.code_type_){0u} - , decltype(_impl_.time_acquired_){0u} + , decltype(_impl_.country_deprecated_){} + , decltype(_impl_.price_sheet_){} + , decltype(_impl_.result_){0} + , decltype(_impl_.currency_deprecated_){0} + , decltype(_impl_.price_sheet_version_){0u} }; - _impl_.code_.InitDefault(); + _impl_.country_deprecated_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.code_.Set("", GetArenaForAllocation()); + _impl_.country_deprecated_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.price_sheet_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.price_sheet_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CSOEconClaimCode::~CSOEconClaimCode() { - // @@protoc_insertion_point(destructor:CSOEconClaimCode) +CMsgStoreGetUserDataResponse::~CMsgStoreGetUserDataResponse() { + // @@protoc_insertion_point(destructor:CMsgStoreGetUserDataResponse) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -12409,77 +12701,92 @@ CSOEconClaimCode::~CSOEconClaimCode() { SharedDtor(); } -inline void CSOEconClaimCode::SharedDtor() { +inline void CMsgStoreGetUserDataResponse::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.code_.Destroy(); + _impl_.country_deprecated_.Destroy(); + _impl_.price_sheet_.Destroy(); } -void CSOEconClaimCode::SetCachedSize(int size) const { +void CMsgStoreGetUserDataResponse::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CSOEconClaimCode::Clear() { -// @@protoc_insertion_point(message_clear_start:CSOEconClaimCode) +void CMsgStoreGetUserDataResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgStoreGetUserDataResponse) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.code_.ClearNonDefaultToEmpty(); + if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000001u) { + _impl_.country_deprecated_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000002u) { + _impl_.price_sheet_.ClearNonDefaultToEmpty(); + } } - if (cached_has_bits & 0x0000000eu) { - ::memset(&_impl_.account_id_, 0, static_cast( - reinterpret_cast(&_impl_.time_acquired_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.time_acquired_)); + if (cached_has_bits & 0x0000001cu) { + ::memset(&_impl_.result_, 0, static_cast( + reinterpret_cast(&_impl_.price_sheet_version_) - + reinterpret_cast(&_impl_.result_)) + sizeof(_impl_.price_sheet_version_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CSOEconClaimCode::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgStoreGetUserDataResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 account_id = 1; + // optional int32 result = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_account_id(&has_bits); - _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_result(&has_bits); + _impl_.result_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 code_type = 2; + // optional int32 currency_deprecated = 2; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_code_type(&has_bits); - _impl_.code_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_currency_deprecated(&has_bits); + _impl_.currency_deprecated_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 time_acquired = 3; + // optional string country_deprecated = 3; case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_time_acquired(&has_bits); - _impl_.time_acquired_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 26)) { + auto str = _internal_mutable_country_deprecated(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgStoreGetUserDataResponse.country_deprecated"); + #endif // !NDEBUG } else goto handle_unusual; continue; - // optional string code = 4; + // optional fixed32 price_sheet_version = 4; case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 34)) { - auto str = _internal_mutable_code(); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 37)) { + _Internal::set_has_price_sheet_version(&has_bits); + _impl_.price_sheet_version_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint32_t); + } else + goto handle_unusual; + continue; + // optional bytes price_sheet = 8; + case 8: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 66)) { + auto str = _internal_mutable_price_sheet(); ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CSOEconClaimCode.code"); - #endif // !NDEBUG } else goto handle_unusual; continue; @@ -12507,51 +12814,57 @@ const char* CSOEconClaimCode::_InternalParse(const char* ptr, ::_pbi::ParseConte #undef CHK_ } -uint8_t* CSOEconClaimCode::_InternalSerialize( +uint8_t* CMsgStoreGetUserDataResponse::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CSOEconClaimCode) + // @@protoc_insertion_point(serialize_to_array_start:CMsgStoreGetUserDataResponse) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 account_id = 1; - if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); - } - - // optional uint32 code_type = 2; + // optional int32 result = 1; if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_code_type(), target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(1, this->_internal_result(), target); } - // optional uint32 time_acquired = 3; + // optional int32 currency_deprecated = 2; if (cached_has_bits & 0x00000008u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_time_acquired(), target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(2, this->_internal_currency_deprecated(), target); } - // optional string code = 4; + // optional string country_deprecated = 3; if (cached_has_bits & 0x00000001u) { ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_code().data(), static_cast(this->_internal_code().length()), + this->_internal_country_deprecated().data(), static_cast(this->_internal_country_deprecated().length()), ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CSOEconClaimCode.code"); + "CMsgStoreGetUserDataResponse.country_deprecated"); target = stream->WriteStringMaybeAliased( - 4, this->_internal_code(), target); + 3, this->_internal_country_deprecated(), target); + } + + // optional fixed32 price_sheet_version = 4; + if (cached_has_bits & 0x00000010u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed32ToArray(4, this->_internal_price_sheet_version(), target); + } + + // optional bytes price_sheet = 8; + if (cached_has_bits & 0x00000002u) { + target = stream->WriteBytesMaybeAliased( + 8, this->_internal_price_sheet(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CSOEconClaimCode) + // @@protoc_insertion_point(serialize_to_array_end:CMsgStoreGetUserDataResponse) return target; } -size_t CSOEconClaimCode::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CSOEconClaimCode) +size_t CMsgStoreGetUserDataResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgStoreGetUserDataResponse) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -12559,151 +12872,192 @@ size_t CSOEconClaimCode::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - // optional string code = 4; + if (cached_has_bits & 0x0000001fu) { + // optional string country_deprecated = 3; if (cached_has_bits & 0x00000001u) { total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_code()); + this->_internal_country_deprecated()); } - // optional uint32 account_id = 1; + // optional bytes price_sheet = 8; if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::BytesSize( + this->_internal_price_sheet()); } - // optional uint32 code_type = 2; + // optional int32 result = 1; if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_code_type()); + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_result()); } - // optional uint32 time_acquired = 3; + // optional int32 currency_deprecated = 2; if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_time_acquired()); + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_currency_deprecated()); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} + // optional fixed32 price_sheet_version = 4; + if (cached_has_bits & 0x00000010u) { + total_size += 1 + 4; + } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconClaimCode::_class_data_ = { + } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgStoreGetUserDataResponse::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CSOEconClaimCode::MergeImpl + CMsgStoreGetUserDataResponse::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconClaimCode::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgStoreGetUserDataResponse::GetClassData() const { return &_class_data_; } -void CSOEconClaimCode::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconClaimCode) +void CMsgStoreGetUserDataResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgStoreGetUserDataResponse) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { + if (cached_has_bits & 0x0000001fu) { if (cached_has_bits & 0x00000001u) { - _this->_internal_set_code(from._internal_code()); + _this->_internal_set_country_deprecated(from._internal_country_deprecated()); } if (cached_has_bits & 0x00000002u) { - _this->_impl_.account_id_ = from._impl_.account_id_; + _this->_internal_set_price_sheet(from._internal_price_sheet()); } if (cached_has_bits & 0x00000004u) { - _this->_impl_.code_type_ = from._impl_.code_type_; + _this->_impl_.result_ = from._impl_.result_; } if (cached_has_bits & 0x00000008u) { - _this->_impl_.time_acquired_ = from._impl_.time_acquired_; + _this->_impl_.currency_deprecated_ = from._impl_.currency_deprecated_; + } + if (cached_has_bits & 0x00000010u) { + _this->_impl_.price_sheet_version_ = from._impl_.price_sheet_version_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CSOEconClaimCode::CopyFrom(const CSOEconClaimCode& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconClaimCode) +void CMsgStoreGetUserDataResponse::CopyFrom(const CMsgStoreGetUserDataResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgStoreGetUserDataResponse) if (&from == this) return; Clear(); MergeFrom(from); } -bool CSOEconClaimCode::IsInitialized() const { +bool CMsgStoreGetUserDataResponse::IsInitialized() const { return true; } -void CSOEconClaimCode::InternalSwap(CSOEconClaimCode* other) { +void CMsgStoreGetUserDataResponse::InternalSwap(CMsgStoreGetUserDataResponse* other) { using std::swap; auto* lhs_arena = GetArenaForAllocation(); auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.code_, lhs_arena, - &other->_impl_.code_, rhs_arena + &_impl_.country_deprecated_, lhs_arena, + &other->_impl_.country_deprecated_, rhs_arena + ); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.price_sheet_, lhs_arena, + &other->_impl_.price_sheet_, rhs_arena ); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CSOEconClaimCode, _impl_.time_acquired_) - + sizeof(CSOEconClaimCode::_impl_.time_acquired_) - - PROTOBUF_FIELD_OFFSET(CSOEconClaimCode, _impl_.account_id_)>( - reinterpret_cast(&_impl_.account_id_), - reinterpret_cast(&other->_impl_.account_id_)); + PROTOBUF_FIELD_OFFSET(CMsgStoreGetUserDataResponse, _impl_.price_sheet_version_) + + sizeof(CMsgStoreGetUserDataResponse::_impl_.price_sheet_version_) + - PROTOBUF_FIELD_OFFSET(CMsgStoreGetUserDataResponse, _impl_.result_)>( + reinterpret_cast(&_impl_.result_), + reinterpret_cast(&other->_impl_.result_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CSOEconClaimCode::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgStoreGetUserDataResponse::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[31]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[31]); } // =================================================================== -class CMsgStoreGetUserData::_Internal { +class CMsgUpdateItemSchema::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_price_sheet_version(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_items_game(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_currency(HasBits* has_bits) { + static void set_has_item_schema_version(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } + static void set_has_items_game_url(HasBits* has_bits) { (*has_bits)[0] |= 2u; } }; -CMsgStoreGetUserData::CMsgStoreGetUserData(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgUpdateItemSchema::CMsgUpdateItemSchema(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgStoreGetUserData) + // @@protoc_insertion_point(arena_constructor:CMsgUpdateItemSchema) } -CMsgStoreGetUserData::CMsgStoreGetUserData(const CMsgStoreGetUserData& from) +CMsgUpdateItemSchema::CMsgUpdateItemSchema(const CMsgUpdateItemSchema& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgStoreGetUserData* const _this = this; (void)_this; + CMsgUpdateItemSchema* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.price_sheet_version_){} - , decltype(_impl_.currency_){}}; + , decltype(_impl_.items_game_){} + , decltype(_impl_.items_game_url_){} + , decltype(_impl_.item_schema_version_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.price_sheet_version_, &from._impl_.price_sheet_version_, - static_cast(reinterpret_cast(&_impl_.currency_) - - reinterpret_cast(&_impl_.price_sheet_version_)) + sizeof(_impl_.currency_)); - // @@protoc_insertion_point(copy_constructor:CMsgStoreGetUserData) + _impl_.items_game_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.items_game_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_items_game()) { + _this->_impl_.items_game_.Set(from._internal_items_game(), + _this->GetArenaForAllocation()); + } + _impl_.items_game_url_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.items_game_url_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_items_game_url()) { + _this->_impl_.items_game_url_.Set(from._internal_items_game_url(), + _this->GetArenaForAllocation()); + } + _this->_impl_.item_schema_version_ = from._impl_.item_schema_version_; + // @@protoc_insertion_point(copy_constructor:CMsgUpdateItemSchema) } -inline void CMsgStoreGetUserData::SharedCtor( +inline void CMsgUpdateItemSchema::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.price_sheet_version_){0u} - , decltype(_impl_.currency_){0} + , decltype(_impl_.items_game_){} + , decltype(_impl_.items_game_url_){} + , decltype(_impl_.item_schema_version_){0u} }; + _impl_.items_game_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.items_game_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.items_game_url_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.items_game_url_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgStoreGetUserData::~CMsgStoreGetUserData() { - // @@protoc_insertion_point(destructor:CMsgStoreGetUserData) +CMsgUpdateItemSchema::~CMsgUpdateItemSchema() { + // @@protoc_insertion_point(destructor:CMsgUpdateItemSchema) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -12711,52 +13065,70 @@ CMsgStoreGetUserData::~CMsgStoreGetUserData() { SharedDtor(); } -inline void CMsgStoreGetUserData::SharedDtor() { +inline void CMsgUpdateItemSchema::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.items_game_.Destroy(); + _impl_.items_game_url_.Destroy(); } -void CMsgStoreGetUserData::SetCachedSize(int size) const { +void CMsgUpdateItemSchema::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgStoreGetUserData::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgStoreGetUserData) +void CMsgUpdateItemSchema::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgUpdateItemSchema) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { - ::memset(&_impl_.price_sheet_version_, 0, static_cast( - reinterpret_cast(&_impl_.currency_) - - reinterpret_cast(&_impl_.price_sheet_version_)) + sizeof(_impl_.currency_)); + if (cached_has_bits & 0x00000001u) { + _impl_.items_game_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000002u) { + _impl_.items_game_url_.ClearNonDefaultToEmpty(); + } } + _impl_.item_schema_version_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgStoreGetUserData::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgUpdateItemSchema::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional fixed32 price_sheet_version = 1; + // optional bytes items_game = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 13)) { - _Internal::set_has_price_sheet_version(&has_bits); - _impl_.price_sheet_version_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint32_t); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { + auto str = _internal_mutable_items_game(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); } else goto handle_unusual; continue; - // optional int32 currency = 2; + // optional fixed32 item_schema_version = 2; case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_currency(&has_bits); - _impl_.currency_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 21)) { + _Internal::set_has_item_schema_version(&has_bits); + _impl_.item_schema_version_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint32_t); + } else + goto handle_unusual; + continue; + // optional string items_game_url = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 34)) { + auto str = _internal_mutable_items_game_url(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgUpdateItemSchema.items_game_url"); + #endif // !NDEBUG } else goto handle_unusual; continue; @@ -12784,35 +13156,45 @@ const char* CMsgStoreGetUserData::_InternalParse(const char* ptr, ::_pbi::ParseC #undef CHK_ } -uint8_t* CMsgStoreGetUserData::_InternalSerialize( +uint8_t* CMsgUpdateItemSchema::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgStoreGetUserData) + // @@protoc_insertion_point(serialize_to_array_start:CMsgUpdateItemSchema) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional fixed32 price_sheet_version = 1; + // optional bytes items_game = 1; if (cached_has_bits & 0x00000001u) { + target = stream->WriteBytesMaybeAliased( + 1, this->_internal_items_game(), target); + } + + // optional fixed32 item_schema_version = 2; + if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed32ToArray(1, this->_internal_price_sheet_version(), target); + target = ::_pbi::WireFormatLite::WriteFixed32ToArray(2, this->_internal_item_schema_version(), target); } - // optional int32 currency = 2; + // optional string items_game_url = 4; if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(2, this->_internal_currency(), target); + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_items_game_url().data(), static_cast(this->_internal_items_game_url().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgUpdateItemSchema.items_game_url"); + target = stream->WriteStringMaybeAliased( + 4, this->_internal_items_game_url(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgStoreGetUserData) + // @@protoc_insertion_point(serialize_to_array_end:CMsgUpdateItemSchema) return target; } -size_t CMsgStoreGetUserData::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgStoreGetUserData) +size_t CMsgUpdateItemSchema::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgUpdateItemSchema) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -12820,166 +13202,148 @@ size_t CMsgStoreGetUserData::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - // optional fixed32 price_sheet_version = 1; + if (cached_has_bits & 0x00000007u) { + // optional bytes items_game = 1; if (cached_has_bits & 0x00000001u) { - total_size += 1 + 4; + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::BytesSize( + this->_internal_items_game()); } - // optional int32 currency = 2; + // optional string items_game_url = 4; if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_currency()); + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_items_game_url()); + } + + // optional fixed32 item_schema_version = 2; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + 4; } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgStoreGetUserData::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgUpdateItemSchema::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgStoreGetUserData::MergeImpl + CMsgUpdateItemSchema::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgStoreGetUserData::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgUpdateItemSchema::GetClassData() const { return &_class_data_; } -void CMsgStoreGetUserData::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgStoreGetUserData) +void CMsgUpdateItemSchema::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgUpdateItemSchema) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_impl_.price_sheet_version_ = from._impl_.price_sheet_version_; + _this->_internal_set_items_game(from._internal_items_game()); } if (cached_has_bits & 0x00000002u) { - _this->_impl_.currency_ = from._impl_.currency_; + _this->_internal_set_items_game_url(from._internal_items_game_url()); + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.item_schema_version_ = from._impl_.item_schema_version_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgStoreGetUserData::CopyFrom(const CMsgStoreGetUserData& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgStoreGetUserData) +void CMsgUpdateItemSchema::CopyFrom(const CMsgUpdateItemSchema& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgUpdateItemSchema) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgStoreGetUserData::IsInitialized() const { +bool CMsgUpdateItemSchema::IsInitialized() const { return true; } -void CMsgStoreGetUserData::InternalSwap(CMsgStoreGetUserData* other) { +void CMsgUpdateItemSchema::InternalSwap(CMsgUpdateItemSchema* other) { using std::swap; + auto* lhs_arena = GetArenaForAllocation(); + auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgStoreGetUserData, _impl_.currency_) - + sizeof(CMsgStoreGetUserData::_impl_.currency_) - - PROTOBUF_FIELD_OFFSET(CMsgStoreGetUserData, _impl_.price_sheet_version_)>( - reinterpret_cast(&_impl_.price_sheet_version_), - reinterpret_cast(&other->_impl_.price_sheet_version_)); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.items_game_, lhs_arena, + &other->_impl_.items_game_, rhs_arena + ); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.items_game_url_, lhs_arena, + &other->_impl_.items_game_url_, rhs_arena + ); + swap(_impl_.item_schema_version_, other->_impl_.item_schema_version_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgStoreGetUserData::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgUpdateItemSchema::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[32]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[32]); } // =================================================================== -class CMsgStoreGetUserDataResponse::_Internal { +class CMsgGCError::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_result(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_currency_deprecated(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } - static void set_has_country_deprecated(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_error_text(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_price_sheet_version(HasBits* has_bits) { - (*has_bits)[0] |= 16u; - } - static void set_has_price_sheet(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } }; -CMsgStoreGetUserDataResponse::CMsgStoreGetUserDataResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCError::CMsgGCError(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgStoreGetUserDataResponse) + // @@protoc_insertion_point(arena_constructor:CMsgGCError) } -CMsgStoreGetUserDataResponse::CMsgStoreGetUserDataResponse(const CMsgStoreGetUserDataResponse& from) +CMsgGCError::CMsgGCError(const CMsgGCError& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgStoreGetUserDataResponse* const _this = this; (void)_this; + CMsgGCError* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.country_deprecated_){} - , decltype(_impl_.price_sheet_){} - , decltype(_impl_.result_){} - , decltype(_impl_.currency_deprecated_){} - , decltype(_impl_.price_sheet_version_){}}; + , decltype(_impl_.error_text_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.country_deprecated_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.country_deprecated_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_country_deprecated()) { - _this->_impl_.country_deprecated_.Set(from._internal_country_deprecated(), - _this->GetArenaForAllocation()); - } - _impl_.price_sheet_.InitDefault(); + _impl_.error_text_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.price_sheet_.Set("", GetArenaForAllocation()); + _impl_.error_text_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_price_sheet()) { - _this->_impl_.price_sheet_.Set(from._internal_price_sheet(), + if (from._internal_has_error_text()) { + _this->_impl_.error_text_.Set(from._internal_error_text(), _this->GetArenaForAllocation()); } - ::memcpy(&_impl_.result_, &from._impl_.result_, - static_cast(reinterpret_cast(&_impl_.price_sheet_version_) - - reinterpret_cast(&_impl_.result_)) + sizeof(_impl_.price_sheet_version_)); - // @@protoc_insertion_point(copy_constructor:CMsgStoreGetUserDataResponse) + // @@protoc_insertion_point(copy_constructor:CMsgGCError) } -inline void CMsgStoreGetUserDataResponse::SharedCtor( +inline void CMsgGCError::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.country_deprecated_){} - , decltype(_impl_.price_sheet_){} - , decltype(_impl_.result_){0} - , decltype(_impl_.currency_deprecated_){0} - , decltype(_impl_.price_sheet_version_){0u} + , decltype(_impl_.error_text_){} }; - _impl_.country_deprecated_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.country_deprecated_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.price_sheet_.InitDefault(); + _impl_.error_text_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.price_sheet_.Set("", GetArenaForAllocation()); + _impl_.error_text_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgStoreGetUserDataResponse::~CMsgStoreGetUserDataResponse() { - // @@protoc_insertion_point(destructor:CMsgStoreGetUserDataResponse) +CMsgGCError::~CMsgGCError() { + // @@protoc_insertion_point(destructor:CMsgGCError) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -12987,95 +13351,48 @@ CMsgStoreGetUserDataResponse::~CMsgStoreGetUserDataResponse() { SharedDtor(); } -inline void CMsgStoreGetUserDataResponse::SharedDtor() { +inline void CMsgGCError::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.country_deprecated_.Destroy(); - _impl_.price_sheet_.Destroy(); + _impl_.error_text_.Destroy(); } -void CMsgStoreGetUserDataResponse::SetCachedSize(int size) const { +void CMsgGCError::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgStoreGetUserDataResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgStoreGetUserDataResponse) +void CMsgGCError::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCError) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _impl_.country_deprecated_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000002u) { - _impl_.price_sheet_.ClearNonDefaultToEmpty(); - } - } - if (cached_has_bits & 0x0000001cu) { - ::memset(&_impl_.result_, 0, static_cast( - reinterpret_cast(&_impl_.price_sheet_version_) - - reinterpret_cast(&_impl_.result_)) + sizeof(_impl_.price_sheet_version_)); + if (cached_has_bits & 0x00000001u) { + _impl_.error_text_.ClearNonDefaultToEmpty(); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgStoreGetUserDataResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCError::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional int32 result = 1; + // optional string error_text = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_result(&has_bits); - _impl_.result_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional int32 currency_deprecated = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_currency_deprecated(&has_bits); - _impl_.currency_deprecated_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional string country_deprecated = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 26)) { - auto str = _internal_mutable_country_deprecated(); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { + auto str = _internal_mutable_error_text(); ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgStoreGetUserDataResponse.country_deprecated"); + ::_pbi::VerifyUTF8(str, "CMsgGCError.error_text"); #endif // !NDEBUG } else goto handle_unusual; continue; - // optional fixed32 price_sheet_version = 4; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 37)) { - _Internal::set_has_price_sheet_version(&has_bits); - _impl_.price_sheet_version_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint32_t); - } else - goto handle_unusual; - continue; - // optional bytes price_sheet = 8; - case 8: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 66)) { - auto str = _internal_mutable_price_sheet(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); - CHK_(ptr); - } else - goto handle_unusual; - continue; default: goto handle_unusual; } // switch @@ -13100,250 +13417,210 @@ const char* CMsgStoreGetUserDataResponse::_InternalParse(const char* ptr, ::_pbi #undef CHK_ } -uint8_t* CMsgStoreGetUserDataResponse::_InternalSerialize( +uint8_t* CMsgGCError::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgStoreGetUserDataResponse) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCError) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional int32 result = 1; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(1, this->_internal_result(), target); - } - - // optional int32 currency_deprecated = 2; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(2, this->_internal_currency_deprecated(), target); - } - - // optional string country_deprecated = 3; + // optional string error_text = 1; if (cached_has_bits & 0x00000001u) { ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_country_deprecated().data(), static_cast(this->_internal_country_deprecated().length()), + this->_internal_error_text().data(), static_cast(this->_internal_error_text().length()), ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgStoreGetUserDataResponse.country_deprecated"); + "CMsgGCError.error_text"); target = stream->WriteStringMaybeAliased( - 3, this->_internal_country_deprecated(), target); - } - - // optional fixed32 price_sheet_version = 4; - if (cached_has_bits & 0x00000010u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed32ToArray(4, this->_internal_price_sheet_version(), target); - } - - // optional bytes price_sheet = 8; - if (cached_has_bits & 0x00000002u) { - target = stream->WriteBytesMaybeAliased( - 8, this->_internal_price_sheet(), target); + 1, this->_internal_error_text(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgStoreGetUserDataResponse) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCError) return target; } -size_t CMsgStoreGetUserDataResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgStoreGetUserDataResponse) +size_t CMsgGCError::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCError) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // optional string error_text = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { - // optional string country_deprecated = 3; - if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_country_deprecated()); - } - - // optional bytes price_sheet = 8; - if (cached_has_bits & 0x00000002u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::BytesSize( - this->_internal_price_sheet()); - } - - // optional int32 result = 1; - if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_result()); - } - - // optional int32 currency_deprecated = 2; - if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_currency_deprecated()); - } - - // optional fixed32 price_sheet_version = 4; - if (cached_has_bits & 0x00000010u) { - total_size += 1 + 4; - } - + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_error_text()); } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgStoreGetUserDataResponse::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCError::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgStoreGetUserDataResponse::MergeImpl + CMsgGCError::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgStoreGetUserDataResponse::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCError::GetClassData() const { return &_class_data_; } -void CMsgStoreGetUserDataResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgStoreGetUserDataResponse) - GOOGLE_DCHECK_NE(&from, _this); +void CMsgGCError::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCError) + GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { - if (cached_has_bits & 0x00000001u) { - _this->_internal_set_country_deprecated(from._internal_country_deprecated()); - } - if (cached_has_bits & 0x00000002u) { - _this->_internal_set_price_sheet(from._internal_price_sheet()); - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.result_ = from._impl_.result_; - } - if (cached_has_bits & 0x00000008u) { - _this->_impl_.currency_deprecated_ = from._impl_.currency_deprecated_; - } - if (cached_has_bits & 0x00000010u) { - _this->_impl_.price_sheet_version_ = from._impl_.price_sheet_version_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; + if (from._internal_has_error_text()) { + _this->_internal_set_error_text(from._internal_error_text()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgStoreGetUserDataResponse::CopyFrom(const CMsgStoreGetUserDataResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgStoreGetUserDataResponse) +void CMsgGCError::CopyFrom(const CMsgGCError& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCError) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgStoreGetUserDataResponse::IsInitialized() const { +bool CMsgGCError::IsInitialized() const { return true; } -void CMsgStoreGetUserDataResponse::InternalSwap(CMsgStoreGetUserDataResponse* other) { +void CMsgGCError::InternalSwap(CMsgGCError* other) { using std::swap; auto* lhs_arena = GetArenaForAllocation(); auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.country_deprecated_, lhs_arena, - &other->_impl_.country_deprecated_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.price_sheet_, lhs_arena, - &other->_impl_.price_sheet_, rhs_arena + &_impl_.error_text_, lhs_arena, + &other->_impl_.error_text_, rhs_arena ); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgStoreGetUserDataResponse, _impl_.price_sheet_version_) - + sizeof(CMsgStoreGetUserDataResponse::_impl_.price_sheet_version_) - - PROTOBUF_FIELD_OFFSET(CMsgStoreGetUserDataResponse, _impl_.result_)>( - reinterpret_cast(&_impl_.result_), - reinterpret_cast(&other->_impl_.result_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgStoreGetUserDataResponse::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCError::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[33]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[33]); } // =================================================================== -class CMsgUpdateItemSchema::_Internal { +class CMsgRequestInventoryRefresh::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_items_game(HasBits* has_bits) { +}; + +CMsgRequestInventoryRefresh::CMsgRequestInventoryRefresh(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase(arena, is_message_owned) { + // @@protoc_insertion_point(arena_constructor:CMsgRequestInventoryRefresh) +} +CMsgRequestInventoryRefresh::CMsgRequestInventoryRefresh(const CMsgRequestInventoryRefresh& from) + : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase() { + CMsgRequestInventoryRefresh* const _this = this; (void)_this; + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + // @@protoc_insertion_point(copy_constructor:CMsgRequestInventoryRefresh) +} + + + + + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgRequestInventoryRefresh::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl, + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl, +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgRequestInventoryRefresh::GetClassData() const { return &_class_data_; } + + + + + + + +::PROTOBUF_NAMESPACE_ID::Metadata CMsgRequestInventoryRefresh::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[34]); +} + +// =================================================================== + +class CMsgConVarValue::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_name(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_item_schema_version(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_items_game_url(HasBits* has_bits) { + static void set_has_value(HasBits* has_bits) { (*has_bits)[0] |= 2u; } }; -CMsgUpdateItemSchema::CMsgUpdateItemSchema(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgConVarValue::CMsgConVarValue(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgUpdateItemSchema) + // @@protoc_insertion_point(arena_constructor:CMsgConVarValue) } -CMsgUpdateItemSchema::CMsgUpdateItemSchema(const CMsgUpdateItemSchema& from) +CMsgConVarValue::CMsgConVarValue(const CMsgConVarValue& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgUpdateItemSchema* const _this = this; (void)_this; + CMsgConVarValue* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.items_game_){} - , decltype(_impl_.items_game_url_){} - , decltype(_impl_.item_schema_version_){}}; + , decltype(_impl_.name_){} + , decltype(_impl_.value_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.items_game_.InitDefault(); + _impl_.name_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.items_game_.Set("", GetArenaForAllocation()); + _impl_.name_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_items_game()) { - _this->_impl_.items_game_.Set(from._internal_items_game(), + if (from._internal_has_name()) { + _this->_impl_.name_.Set(from._internal_name(), _this->GetArenaForAllocation()); } - _impl_.items_game_url_.InitDefault(); + _impl_.value_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.items_game_url_.Set("", GetArenaForAllocation()); + _impl_.value_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_items_game_url()) { - _this->_impl_.items_game_url_.Set(from._internal_items_game_url(), + if (from._internal_has_value()) { + _this->_impl_.value_.Set(from._internal_value(), _this->GetArenaForAllocation()); } - _this->_impl_.item_schema_version_ = from._impl_.item_schema_version_; - // @@protoc_insertion_point(copy_constructor:CMsgUpdateItemSchema) + // @@protoc_insertion_point(copy_constructor:CMsgConVarValue) } -inline void CMsgUpdateItemSchema::SharedCtor( +inline void CMsgConVarValue::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.items_game_){} - , decltype(_impl_.items_game_url_){} - , decltype(_impl_.item_schema_version_){0u} + , decltype(_impl_.name_){} + , decltype(_impl_.value_){} }; - _impl_.items_game_.InitDefault(); + _impl_.name_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.items_game_.Set("", GetArenaForAllocation()); + _impl_.name_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.items_game_url_.InitDefault(); + _impl_.value_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.items_game_url_.Set("", GetArenaForAllocation()); + _impl_.value_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgUpdateItemSchema::~CMsgUpdateItemSchema() { - // @@protoc_insertion_point(destructor:CMsgUpdateItemSchema) +CMsgConVarValue::~CMsgConVarValue() { + // @@protoc_insertion_point(destructor:CMsgConVarValue) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -13351,18 +13628,18 @@ CMsgUpdateItemSchema::~CMsgUpdateItemSchema() { SharedDtor(); } -inline void CMsgUpdateItemSchema::SharedDtor() { +inline void CMsgConVarValue::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.items_game_.Destroy(); - _impl_.items_game_url_.Destroy(); + _impl_.name_.Destroy(); + _impl_.value_.Destroy(); } -void CMsgUpdateItemSchema::SetCachedSize(int size) const { +void CMsgConVarValue::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgUpdateItemSchema::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgUpdateItemSchema) +void CMsgConVarValue::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgConVarValue) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; @@ -13370,50 +13647,43 @@ void CMsgUpdateItemSchema::Clear() { cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _impl_.items_game_.ClearNonDefaultToEmpty(); + _impl_.name_.ClearNonDefaultToEmpty(); } if (cached_has_bits & 0x00000002u) { - _impl_.items_game_url_.ClearNonDefaultToEmpty(); + _impl_.value_.ClearNonDefaultToEmpty(); } } - _impl_.item_schema_version_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgUpdateItemSchema::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgConVarValue::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional bytes items_game = 1; + // optional string name = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - auto str = _internal_mutable_items_game(); + auto str = _internal_mutable_name(); ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgConVarValue.name"); + #endif // !NDEBUG } else goto handle_unusual; continue; - // optional fixed32 item_schema_version = 2; + // optional string value = 2; case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 21)) { - _Internal::set_has_item_schema_version(&has_bits); - _impl_.item_schema_version_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint32_t); - } else - goto handle_unusual; - continue; - // optional string items_game_url = 4; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 34)) { - auto str = _internal_mutable_items_game_url(); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 18)) { + auto str = _internal_mutable_value(); ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgUpdateItemSchema.items_game_url"); + ::_pbi::VerifyUTF8(str, "CMsgConVarValue.value"); #endif // !NDEBUG } else goto handle_unusual; @@ -13442,45 +13712,43 @@ const char* CMsgUpdateItemSchema::_InternalParse(const char* ptr, ::_pbi::ParseC #undef CHK_ } -uint8_t* CMsgUpdateItemSchema::_InternalSerialize( +uint8_t* CMsgConVarValue::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgUpdateItemSchema) + // @@protoc_insertion_point(serialize_to_array_start:CMsgConVarValue) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional bytes items_game = 1; + // optional string name = 1; if (cached_has_bits & 0x00000001u) { - target = stream->WriteBytesMaybeAliased( - 1, this->_internal_items_game(), target); - } - - // optional fixed32 item_schema_version = 2; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed32ToArray(2, this->_internal_item_schema_version(), target); + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_name().data(), static_cast(this->_internal_name().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgConVarValue.name"); + target = stream->WriteStringMaybeAliased( + 1, this->_internal_name(), target); } - // optional string items_game_url = 4; + // optional string value = 2; if (cached_has_bits & 0x00000002u) { ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_items_game_url().data(), static_cast(this->_internal_items_game_url().length()), + this->_internal_value().data(), static_cast(this->_internal_value().length()), ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgUpdateItemSchema.items_game_url"); + "CMsgConVarValue.value"); target = stream->WriteStringMaybeAliased( - 4, this->_internal_items_game_url(), target); + 2, this->_internal_value(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgUpdateItemSchema) + // @@protoc_insertion_point(serialize_to_array_end:CMsgConVarValue) return target; } -size_t CMsgUpdateItemSchema::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgUpdateItemSchema) +size_t CMsgConVarValue::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgConVarValue) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -13488,148 +13756,120 @@ size_t CMsgUpdateItemSchema::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - // optional bytes items_game = 1; + if (cached_has_bits & 0x00000003u) { + // optional string name = 1; if (cached_has_bits & 0x00000001u) { total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::BytesSize( - this->_internal_items_game()); + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_name()); } - // optional string items_game_url = 4; + // optional string value = 2; if (cached_has_bits & 0x00000002u) { total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_items_game_url()); - } - - // optional fixed32 item_schema_version = 2; - if (cached_has_bits & 0x00000004u) { - total_size += 1 + 4; + this->_internal_value()); } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgUpdateItemSchema::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgConVarValue::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgUpdateItemSchema::MergeImpl + CMsgConVarValue::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgUpdateItemSchema::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgConVarValue::GetClassData() const { return &_class_data_; } -void CMsgUpdateItemSchema::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgUpdateItemSchema) - GOOGLE_DCHECK_NE(&from, _this); - uint32_t cached_has_bits = 0; - (void) cached_has_bits; +void CMsgConVarValue::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgConVarValue) + GOOGLE_DCHECK_NE(&from, _this); + uint32_t cached_has_bits = 0; + (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_set_items_game(from._internal_items_game()); + _this->_internal_set_name(from._internal_name()); } if (cached_has_bits & 0x00000002u) { - _this->_internal_set_items_game_url(from._internal_items_game_url()); - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.item_schema_version_ = from._impl_.item_schema_version_; + _this->_internal_set_value(from._internal_value()); } - _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgUpdateItemSchema::CopyFrom(const CMsgUpdateItemSchema& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgUpdateItemSchema) +void CMsgConVarValue::CopyFrom(const CMsgConVarValue& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgConVarValue) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgUpdateItemSchema::IsInitialized() const { +bool CMsgConVarValue::IsInitialized() const { return true; } -void CMsgUpdateItemSchema::InternalSwap(CMsgUpdateItemSchema* other) { +void CMsgConVarValue::InternalSwap(CMsgConVarValue* other) { using std::swap; auto* lhs_arena = GetArenaForAllocation(); auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.items_game_, lhs_arena, - &other->_impl_.items_game_, rhs_arena + &_impl_.name_, lhs_arena, + &other->_impl_.name_, rhs_arena ); ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.items_game_url_, lhs_arena, - &other->_impl_.items_game_url_, rhs_arena + &_impl_.value_, lhs_arena, + &other->_impl_.value_, rhs_arena ); - swap(_impl_.item_schema_version_, other->_impl_.item_schema_version_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgUpdateItemSchema::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgConVarValue::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[34]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[35]); } // =================================================================== -class CMsgGCError::_Internal { +class CMsgReplicateConVars::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_error_text(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } }; -CMsgGCError::CMsgGCError(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgReplicateConVars::CMsgReplicateConVars(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCError) + // @@protoc_insertion_point(arena_constructor:CMsgReplicateConVars) } -CMsgGCError::CMsgGCError(const CMsgGCError& from) +CMsgReplicateConVars::CMsgReplicateConVars(const CMsgReplicateConVars& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCError* const _this = this; (void)_this; + CMsgReplicateConVars* const _this = this; (void)_this; new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){from._impl_._has_bits_} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.error_text_){}}; + decltype(_impl_.convars_){from._impl_.convars_} + , /*decltype(_impl_._cached_size_)*/{}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.error_text_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.error_text_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_error_text()) { - _this->_impl_.error_text_.Set(from._internal_error_text(), - _this->GetArenaForAllocation()); - } - // @@protoc_insertion_point(copy_constructor:CMsgGCError) + // @@protoc_insertion_point(copy_constructor:CMsgReplicateConVars) } -inline void CMsgGCError::SharedCtor( +inline void CMsgReplicateConVars::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){} + decltype(_impl_.convars_){arena} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.error_text_){} }; - _impl_.error_text_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.error_text_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCError::~CMsgGCError() { - // @@protoc_insertion_point(destructor:CMsgGCError) +CMsgReplicateConVars::~CMsgReplicateConVars() { + // @@protoc_insertion_point(destructor:CMsgReplicateConVars) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -13637,45 +13877,41 @@ CMsgGCError::~CMsgGCError() { SharedDtor(); } -inline void CMsgGCError::SharedDtor() { +inline void CMsgReplicateConVars::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.error_text_.Destroy(); + _impl_.convars_.~RepeatedPtrField(); } -void CMsgGCError::SetCachedSize(int size) const { +void CMsgReplicateConVars::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCError::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCError) +void CMsgReplicateConVars::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgReplicateConVars) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.error_text_.ClearNonDefaultToEmpty(); - } - _impl_._has_bits_.Clear(); + _impl_.convars_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCError::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgReplicateConVars::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure - _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional string error_text = 1; + // repeated .CMsgConVarValue convars = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - auto str = _internal_mutable_error_text(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); - CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCError.error_text"); - #endif // !NDEBUG + ptr -= 1; + do { + ptr += 1; + ptr = ctx->ParseMessage(_internal_add_convars(), ptr); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<10>(ptr)); } else goto handle_unusual; continue; @@ -13695,7 +13931,6 @@ const char* CMsgGCError::_InternalParse(const char* ptr, ::_pbi::ParseContext* c CHK_(ptr != nullptr); } // while message_done: - _impl_._has_bits_.Or(has_bits); return ptr; failure: ptr = nullptr; @@ -13703,210 +13938,149 @@ const char* CMsgGCError::_InternalParse(const char* ptr, ::_pbi::ParseContext* c #undef CHK_ } -uint8_t* CMsgGCError::_InternalSerialize( +uint8_t* CMsgReplicateConVars::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCError) + // @@protoc_insertion_point(serialize_to_array_start:CMsgReplicateConVars) uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - // optional string error_text = 1; - if (cached_has_bits & 0x00000001u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_error_text().data(), static_cast(this->_internal_error_text().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCError.error_text"); - target = stream->WriteStringMaybeAliased( - 1, this->_internal_error_text(), target); + // repeated .CMsgConVarValue convars = 1; + for (unsigned i = 0, + n = static_cast(this->_internal_convars_size()); i < n; i++) { + const auto& repfield = this->_internal_convars(i); + target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: + InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCError) + // @@protoc_insertion_point(serialize_to_array_end:CMsgReplicateConVars) return target; } -size_t CMsgGCError::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCError) +size_t CMsgReplicateConVars::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgReplicateConVars) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional string error_text = 1; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_error_text()); + // repeated .CMsgConVarValue convars = 1; + total_size += 1UL * this->_internal_convars_size(); + for (const auto& msg : this->_impl_.convars_) { + total_size += + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCError::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgReplicateConVars::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCError::MergeImpl + CMsgReplicateConVars::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCError::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgReplicateConVars::GetClassData() const { return &_class_data_; } -void CMsgGCError::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCError) +void CMsgReplicateConVars::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgReplicateConVars) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (from._internal_has_error_text()) { - _this->_internal_set_error_text(from._internal_error_text()); - } + _this->_impl_.convars_.MergeFrom(from._impl_.convars_); _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCError::CopyFrom(const CMsgGCError& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCError) +void CMsgReplicateConVars::CopyFrom(const CMsgReplicateConVars& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgReplicateConVars) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCError::IsInitialized() const { +bool CMsgReplicateConVars::IsInitialized() const { return true; } -void CMsgGCError::InternalSwap(CMsgGCError* other) { +void CMsgReplicateConVars::InternalSwap(CMsgReplicateConVars* other) { using std::swap; - auto* lhs_arena = GetArenaForAllocation(); - auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.error_text_, lhs_arena, - &other->_impl_.error_text_, rhs_arena - ); -} - -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCError::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[35]); -} - -// =================================================================== - -class CMsgRequestInventoryRefresh::_Internal { - public: -}; - -CMsgRequestInventoryRefresh::CMsgRequestInventoryRefresh(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned) - : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase(arena, is_message_owned) { - // @@protoc_insertion_point(arena_constructor:CMsgRequestInventoryRefresh) -} -CMsgRequestInventoryRefresh::CMsgRequestInventoryRefresh(const CMsgRequestInventoryRefresh& from) - : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase() { - CMsgRequestInventoryRefresh* const _this = this; (void)_this; - _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - // @@protoc_insertion_point(copy_constructor:CMsgRequestInventoryRefresh) + _impl_.convars_.InternalSwap(&other->_impl_.convars_); } - - - - -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgRequestInventoryRefresh::_class_data_ = { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl, - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl, -}; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgRequestInventoryRefresh::GetClassData() const { return &_class_data_; } - - - - - - - -::PROTOBUF_NAMESPACE_ID::Metadata CMsgRequestInventoryRefresh::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgReplicateConVars::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[36]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[36]); } // =================================================================== -class CMsgConVarValue::_Internal { +class CMsgUseItem::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_name(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_item_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_value(HasBits* has_bits) { + static void set_has_target_steam_id(HasBits* has_bits) { (*has_bits)[0] |= 2u; } + static void set_has_duel__class_lock(HasBits* has_bits) { + (*has_bits)[0] |= 8u; + } + static void set_has_initiator_steam_id(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } }; -CMsgConVarValue::CMsgConVarValue(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgUseItem::CMsgUseItem(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgConVarValue) + // @@protoc_insertion_point(arena_constructor:CMsgUseItem) } -CMsgConVarValue::CMsgConVarValue(const CMsgConVarValue& from) +CMsgUseItem::CMsgUseItem(const CMsgUseItem& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgConVarValue* const _this = this; (void)_this; + CMsgUseItem* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.name_){} - , decltype(_impl_.value_){}}; + , decltype(_impl_.gift__potential_targets_){from._impl_.gift__potential_targets_} + , decltype(_impl_.item_id_){} + , decltype(_impl_.target_steam_id_){} + , decltype(_impl_.initiator_steam_id_){} + , decltype(_impl_.duel__class_lock_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.name_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.name_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_name()) { - _this->_impl_.name_.Set(from._internal_name(), - _this->GetArenaForAllocation()); - } - _impl_.value_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.value_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_value()) { - _this->_impl_.value_.Set(from._internal_value(), - _this->GetArenaForAllocation()); - } - // @@protoc_insertion_point(copy_constructor:CMsgConVarValue) + ::memcpy(&_impl_.item_id_, &from._impl_.item_id_, + static_cast(reinterpret_cast(&_impl_.duel__class_lock_) - + reinterpret_cast(&_impl_.item_id_)) + sizeof(_impl_.duel__class_lock_)); + // @@protoc_insertion_point(copy_constructor:CMsgUseItem) } -inline void CMsgConVarValue::SharedCtor( +inline void CMsgUseItem::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.name_){} - , decltype(_impl_.value_){} + , decltype(_impl_.gift__potential_targets_){arena} + , decltype(_impl_.item_id_){uint64_t{0u}} + , decltype(_impl_.target_steam_id_){uint64_t{0u}} + , decltype(_impl_.initiator_steam_id_){uint64_t{0u}} + , decltype(_impl_.duel__class_lock_){0u} }; - _impl_.name_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.name_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.value_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.value_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgConVarValue::~CMsgConVarValue() { - // @@protoc_insertion_point(destructor:CMsgConVarValue) +CMsgUseItem::~CMsgUseItem() { + // @@protoc_insertion_point(destructor:CMsgUseItem) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -13914,63 +14088,88 @@ CMsgConVarValue::~CMsgConVarValue() { SharedDtor(); } -inline void CMsgConVarValue::SharedDtor() { +inline void CMsgUseItem::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.name_.Destroy(); - _impl_.value_.Destroy(); + _impl_.gift__potential_targets_.~RepeatedField(); } -void CMsgConVarValue::SetCachedSize(int size) const { +void CMsgUseItem::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgConVarValue::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgConVarValue) +void CMsgUseItem::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgUseItem) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + _impl_.gift__potential_targets_.Clear(); cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _impl_.name_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000002u) { - _impl_.value_.ClearNonDefaultToEmpty(); - } + if (cached_has_bits & 0x0000000fu) { + ::memset(&_impl_.item_id_, 0, static_cast( + reinterpret_cast(&_impl_.duel__class_lock_) - + reinterpret_cast(&_impl_.item_id_)) + sizeof(_impl_.duel__class_lock_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgConVarValue::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgUseItem::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional string name = 1; + // optional uint64 item_id = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - auto str = _internal_mutable_name(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_item_id(&has_bits); + _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgConVarValue.name"); - #endif // !NDEBUG } else goto handle_unusual; continue; - // optional string value = 2; + // optional fixed64 target_steam_id = 2; case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 18)) { - auto str = _internal_mutable_value(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 17)) { + _Internal::set_has_target_steam_id(&has_bits); + _impl_.target_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint64_t); + } else + goto handle_unusual; + continue; + // repeated uint32 gift__potential_targets = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { + ptr -= 1; + do { + ptr += 1; + _internal_add_gift__potential_targets(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr)); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<24>(ptr)); + } else if (static_cast(tag) == 26) { + ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt32Parser(_internal_mutable_gift__potential_targets(), ptr, ctx); CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgConVarValue.value"); - #endif // !NDEBUG + } else + goto handle_unusual; + continue; + // optional uint32 duel__class_lock = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { + _Internal::set_has_duel__class_lock(&has_bits); + _impl_.duel__class_lock_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional fixed64 initiator_steam_id = 5; + case 5: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 41)) { + _Internal::set_has_initiator_steam_id(&has_bits); + _impl_.initiator_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint64_t); } else goto handle_unusual; continue; @@ -13998,164 +14197,235 @@ const char* CMsgConVarValue::_InternalParse(const char* ptr, ::_pbi::ParseContex #undef CHK_ } -uint8_t* CMsgConVarValue::_InternalSerialize( +uint8_t* CMsgUseItem::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgConVarValue) + // @@protoc_insertion_point(serialize_to_array_start:CMsgUseItem) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional string name = 1; + // optional uint64 item_id = 1; if (cached_has_bits & 0x00000001u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_name().data(), static_cast(this->_internal_name().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgConVarValue.name"); - target = stream->WriteStringMaybeAliased( - 1, this->_internal_name(), target); + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(1, this->_internal_item_id(), target); } - // optional string value = 2; + // optional fixed64 target_steam_id = 2; if (cached_has_bits & 0x00000002u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_value().data(), static_cast(this->_internal_value().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgConVarValue.value"); - target = stream->WriteStringMaybeAliased( - 2, this->_internal_value(), target); + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed64ToArray(2, this->_internal_target_steam_id(), target); + } + + // repeated uint32 gift__potential_targets = 3; + for (int i = 0, n = this->_internal_gift__potential_targets_size(); i < n; i++) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_gift__potential_targets(i), target); + } + + // optional uint32 duel__class_lock = 4; + if (cached_has_bits & 0x00000008u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_duel__class_lock(), target); + } + + // optional fixed64 initiator_steam_id = 5; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed64ToArray(5, this->_internal_initiator_steam_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgConVarValue) + // @@protoc_insertion_point(serialize_to_array_end:CMsgUseItem) return target; } -size_t CMsgConVarValue::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgConVarValue) +size_t CMsgUseItem::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgUseItem) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // repeated uint32 gift__potential_targets = 3; + { + size_t data_size = ::_pbi::WireFormatLite:: + UInt32Size(this->_impl_.gift__potential_targets_); + total_size += 1 * + ::_pbi::FromIntSize(this->_internal_gift__potential_targets_size()); + total_size += data_size; + } + cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - // optional string name = 1; + if (cached_has_bits & 0x0000000fu) { + // optional uint64 item_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_name()); + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); } - // optional string value = 2; + // optional fixed64 target_steam_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_value()); + total_size += 1 + 8; + } + + // optional fixed64 initiator_steam_id = 5; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + 8; + } + + // optional uint32 duel__class_lock = 4; + if (cached_has_bits & 0x00000008u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_duel__class_lock()); } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgConVarValue::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgUseItem::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgConVarValue::MergeImpl + CMsgUseItem::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgConVarValue::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgUseItem::GetClassData() const { return &_class_data_; } -void CMsgConVarValue::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgConVarValue) +void CMsgUseItem::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgUseItem) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; + _this->_impl_.gift__potential_targets_.MergeFrom(from._impl_.gift__potential_targets_); cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x0000000fu) { if (cached_has_bits & 0x00000001u) { - _this->_internal_set_name(from._internal_name()); + _this->_impl_.item_id_ = from._impl_.item_id_; } if (cached_has_bits & 0x00000002u) { - _this->_internal_set_value(from._internal_value()); + _this->_impl_.target_steam_id_ = from._impl_.target_steam_id_; + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.initiator_steam_id_ = from._impl_.initiator_steam_id_; } + if (cached_has_bits & 0x00000008u) { + _this->_impl_.duel__class_lock_ = from._impl_.duel__class_lock_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgConVarValue::CopyFrom(const CMsgConVarValue& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgConVarValue) +void CMsgUseItem::CopyFrom(const CMsgUseItem& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgUseItem) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgConVarValue::IsInitialized() const { +bool CMsgUseItem::IsInitialized() const { return true; } -void CMsgConVarValue::InternalSwap(CMsgConVarValue* other) { +void CMsgUseItem::InternalSwap(CMsgUseItem* other) { using std::swap; - auto* lhs_arena = GetArenaForAllocation(); - auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.name_, lhs_arena, - &other->_impl_.name_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.value_, lhs_arena, - &other->_impl_.value_, rhs_arena - ); + _impl_.gift__potential_targets_.InternalSwap(&other->_impl_.gift__potential_targets_); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgUseItem, _impl_.duel__class_lock_) + + sizeof(CMsgUseItem::_impl_.duel__class_lock_) + - PROTOBUF_FIELD_OFFSET(CMsgUseItem, _impl_.item_id_)>( + reinterpret_cast(&_impl_.item_id_), + reinterpret_cast(&other->_impl_.item_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgConVarValue::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgUseItem::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[37]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[37]); } // =================================================================== -class CMsgReplicateConVars::_Internal { +class CMsgReplayUploadedToYouTube::_Internal { public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_youtube_url(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } + static void set_has_youtube_account_name(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_session_id(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } }; -CMsgReplicateConVars::CMsgReplicateConVars(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgReplayUploadedToYouTube::CMsgReplayUploadedToYouTube(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgReplicateConVars) + // @@protoc_insertion_point(arena_constructor:CMsgReplayUploadedToYouTube) } -CMsgReplicateConVars::CMsgReplicateConVars(const CMsgReplicateConVars& from) +CMsgReplayUploadedToYouTube::CMsgReplayUploadedToYouTube(const CMsgReplayUploadedToYouTube& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgReplicateConVars* const _this = this; (void)_this; + CMsgReplayUploadedToYouTube* const _this = this; (void)_this; new (&_impl_) Impl_{ - decltype(_impl_.convars_){from._impl_.convars_} - , /*decltype(_impl_._cached_size_)*/{}}; + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.youtube_url_){} + , decltype(_impl_.youtube_account_name_){} + , decltype(_impl_.session_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - // @@protoc_insertion_point(copy_constructor:CMsgReplicateConVars) + _impl_.youtube_url_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.youtube_url_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_youtube_url()) { + _this->_impl_.youtube_url_.Set(from._internal_youtube_url(), + _this->GetArenaForAllocation()); + } + _impl_.youtube_account_name_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.youtube_account_name_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_youtube_account_name()) { + _this->_impl_.youtube_account_name_.Set(from._internal_youtube_account_name(), + _this->GetArenaForAllocation()); + } + _this->_impl_.session_id_ = from._impl_.session_id_; + // @@protoc_insertion_point(copy_constructor:CMsgReplayUploadedToYouTube) } -inline void CMsgReplicateConVars::SharedCtor( +inline void CMsgReplayUploadedToYouTube::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ - decltype(_impl_.convars_){arena} + decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.youtube_url_){} + , decltype(_impl_.youtube_account_name_){} + , decltype(_impl_.session_id_){uint64_t{0u}} }; + _impl_.youtube_url_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.youtube_url_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.youtube_account_name_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.youtube_account_name_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgReplicateConVars::~CMsgReplicateConVars() { - // @@protoc_insertion_point(destructor:CMsgReplicateConVars) +CMsgReplayUploadedToYouTube::~CMsgReplayUploadedToYouTube() { + // @@protoc_insertion_point(destructor:CMsgReplayUploadedToYouTube) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -14163,41 +14433,73 @@ CMsgReplicateConVars::~CMsgReplicateConVars() { SharedDtor(); } -inline void CMsgReplicateConVars::SharedDtor() { +inline void CMsgReplayUploadedToYouTube::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.convars_.~RepeatedPtrField(); + _impl_.youtube_url_.Destroy(); + _impl_.youtube_account_name_.Destroy(); } -void CMsgReplicateConVars::SetCachedSize(int size) const { +void CMsgReplayUploadedToYouTube::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgReplicateConVars::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgReplicateConVars) +void CMsgReplayUploadedToYouTube::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgReplayUploadedToYouTube) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.convars_.Clear(); + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000001u) { + _impl_.youtube_url_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000002u) { + _impl_.youtube_account_name_.ClearNonDefaultToEmpty(); + } + } + _impl_.session_id_ = uint64_t{0u}; + _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgReplicateConVars::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgReplayUploadedToYouTube::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // repeated .CMsgConVarValue convars = 1; + // optional string youtube_url = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - ptr -= 1; - do { - ptr += 1; - ptr = ctx->ParseMessage(_internal_add_convars(), ptr); - CHK_(ptr); - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<10>(ptr)); + auto str = _internal_mutable_youtube_url(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgReplayUploadedToYouTube.youtube_url"); + #endif // !NDEBUG + } else + goto handle_unusual; + continue; + // optional string youtube_account_name = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 18)) { + auto str = _internal_mutable_youtube_account_name(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgReplayUploadedToYouTube.youtube_account_name"); + #endif // !NDEBUG + } else + goto handle_unusual; + continue; + // optional uint64 session_id = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { + _Internal::set_has_session_id(&has_bits); + _impl_.session_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + CHK_(ptr); } else goto handle_unusual; continue; @@ -14217,6 +14519,7 @@ const char* CMsgReplicateConVars::_InternalParse(const char* ptr, ::_pbi::ParseC CHK_(ptr != nullptr); } // while message_done: + _impl_._has_bits_.Or(has_bits); return ptr; failure: ptr = nullptr; @@ -14224,149 +14527,187 @@ const char* CMsgReplicateConVars::_InternalParse(const char* ptr, ::_pbi::ParseC #undef CHK_ } -uint8_t* CMsgReplicateConVars::_InternalSerialize( +uint8_t* CMsgReplayUploadedToYouTube::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgReplicateConVars) + // @@protoc_insertion_point(serialize_to_array_start:CMsgReplayUploadedToYouTube) uint32_t cached_has_bits = 0; (void) cached_has_bits; - // repeated .CMsgConVarValue convars = 1; - for (unsigned i = 0, - n = static_cast(this->_internal_convars_size()); i < n; i++) { - const auto& repfield = this->_internal_convars(i); - target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: - InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); + cached_has_bits = _impl_._has_bits_[0]; + // optional string youtube_url = 1; + if (cached_has_bits & 0x00000001u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_youtube_url().data(), static_cast(this->_internal_youtube_url().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgReplayUploadedToYouTube.youtube_url"); + target = stream->WriteStringMaybeAliased( + 1, this->_internal_youtube_url(), target); + } + + // optional string youtube_account_name = 2; + if (cached_has_bits & 0x00000002u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_youtube_account_name().data(), static_cast(this->_internal_youtube_account_name().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgReplayUploadedToYouTube.youtube_account_name"); + target = stream->WriteStringMaybeAliased( + 2, this->_internal_youtube_account_name(), target); + } + + // optional uint64 session_id = 3; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(3, this->_internal_session_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgReplicateConVars) + // @@protoc_insertion_point(serialize_to_array_end:CMsgReplayUploadedToYouTube) return target; } -size_t CMsgReplicateConVars::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgReplicateConVars) +size_t CMsgReplayUploadedToYouTube::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgReplayUploadedToYouTube) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .CMsgConVarValue convars = 1; - total_size += 1UL * this->_internal_convars_size(); - for (const auto& msg : this->_impl_.convars_) { - total_size += - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); - } + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // optional string youtube_url = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_youtube_url()); + } + + // optional string youtube_account_name = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_youtube_account_name()); + } + + // optional uint64 session_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_session_id()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgReplicateConVars::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgReplayUploadedToYouTube::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgReplicateConVars::MergeImpl + CMsgReplayUploadedToYouTube::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgReplicateConVars::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgReplayUploadedToYouTube::GetClassData() const { return &_class_data_; } -void CMsgReplicateConVars::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgReplicateConVars) +void CMsgReplayUploadedToYouTube::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgReplayUploadedToYouTube) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - _this->_impl_.convars_.MergeFrom(from._impl_.convars_); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x00000001u) { + _this->_internal_set_youtube_url(from._internal_youtube_url()); + } + if (cached_has_bits & 0x00000002u) { + _this->_internal_set_youtube_account_name(from._internal_youtube_account_name()); + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.session_id_ = from._impl_.session_id_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgReplicateConVars::CopyFrom(const CMsgReplicateConVars& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgReplicateConVars) +void CMsgReplayUploadedToYouTube::CopyFrom(const CMsgReplayUploadedToYouTube& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgReplayUploadedToYouTube) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgReplicateConVars::IsInitialized() const { +bool CMsgReplayUploadedToYouTube::IsInitialized() const { return true; } -void CMsgReplicateConVars::InternalSwap(CMsgReplicateConVars* other) { +void CMsgReplayUploadedToYouTube::InternalSwap(CMsgReplayUploadedToYouTube* other) { using std::swap; + auto* lhs_arena = GetArenaForAllocation(); + auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.convars_.InternalSwap(&other->_impl_.convars_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.youtube_url_, lhs_arena, + &other->_impl_.youtube_url_, rhs_arena + ); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.youtube_account_name_, lhs_arena, + &other->_impl_.youtube_account_name_, rhs_arena + ); + swap(_impl_.session_id_, other->_impl_.session_id_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgReplicateConVars::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgReplayUploadedToYouTube::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[38]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[38]); } // =================================================================== -class CMsgUseItem::_Internal { +class CMsgConsumableExhausted::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_item_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_item_def_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_target_steam_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_duel__class_lock(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } - static void set_has_initiator_steam_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } }; -CMsgUseItem::CMsgUseItem(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgConsumableExhausted::CMsgConsumableExhausted(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgUseItem) + // @@protoc_insertion_point(arena_constructor:CMsgConsumableExhausted) } -CMsgUseItem::CMsgUseItem(const CMsgUseItem& from) +CMsgConsumableExhausted::CMsgConsumableExhausted(const CMsgConsumableExhausted& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgUseItem* const _this = this; (void)_this; + CMsgConsumableExhausted* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.gift__potential_targets_){from._impl_.gift__potential_targets_} - , decltype(_impl_.item_id_){} - , decltype(_impl_.target_steam_id_){} - , decltype(_impl_.initiator_steam_id_){} - , decltype(_impl_.duel__class_lock_){}}; + , decltype(_impl_.item_def_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.item_id_, &from._impl_.item_id_, - static_cast(reinterpret_cast(&_impl_.duel__class_lock_) - - reinterpret_cast(&_impl_.item_id_)) + sizeof(_impl_.duel__class_lock_)); - // @@protoc_insertion_point(copy_constructor:CMsgUseItem) + _this->_impl_.item_def_id_ = from._impl_.item_def_id_; + // @@protoc_insertion_point(copy_constructor:CMsgConsumableExhausted) } -inline void CMsgUseItem::SharedCtor( +inline void CMsgConsumableExhausted::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.gift__potential_targets_){arena} - , decltype(_impl_.item_id_){uint64_t{0u}} - , decltype(_impl_.target_steam_id_){uint64_t{0u}} - , decltype(_impl_.initiator_steam_id_){uint64_t{0u}} - , decltype(_impl_.duel__class_lock_){0u} + , decltype(_impl_.item_def_id_){0} }; } -CMsgUseItem::~CMsgUseItem() { - // @@protoc_insertion_point(destructor:CMsgUseItem) +CMsgConsumableExhausted::~CMsgConsumableExhausted() { + // @@protoc_insertion_point(destructor:CMsgConsumableExhausted) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -14374,91 +14715,41 @@ CMsgUseItem::~CMsgUseItem() { SharedDtor(); } -inline void CMsgUseItem::SharedDtor() { +inline void CMsgConsumableExhausted::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.gift__potential_targets_.~RepeatedField(); } -void CMsgUseItem::SetCachedSize(int size) const { +void CMsgConsumableExhausted::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgUseItem::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgUseItem) +void CMsgConsumableExhausted::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgConsumableExhausted) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.gift__potential_targets_.Clear(); - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - ::memset(&_impl_.item_id_, 0, static_cast( - reinterpret_cast(&_impl_.duel__class_lock_) - - reinterpret_cast(&_impl_.item_id_)) + sizeof(_impl_.duel__class_lock_)); - } + _impl_.item_def_id_ = 0; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgUseItem::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgConsumableExhausted::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint64 item_id = 1; + // optional int32 item_def_id = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_item_id(&has_bits); - _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional fixed64 target_steam_id = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 17)) { - _Internal::set_has_target_steam_id(&has_bits); - _impl_.target_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint64_t); - } else - goto handle_unusual; - continue; - // repeated uint32 gift__potential_targets = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - ptr -= 1; - do { - ptr += 1; - _internal_add_gift__potential_targets(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr)); - CHK_(ptr); - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<24>(ptr)); - } else if (static_cast(tag) == 26) { - ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt32Parser(_internal_mutable_gift__potential_targets(), ptr, ctx); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 duel__class_lock = 4; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { - _Internal::set_has_duel__class_lock(&has_bits); - _impl_.duel__class_lock_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_item_def_id(&has_bits); + _impl_.item_def_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional fixed64 initiator_steam_id = 5; - case 5: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 41)) { - _Internal::set_has_initiator_steam_id(&has_bits); - _impl_.initiator_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint64_t); - } else - goto handle_unusual; - continue; default: goto handle_unusual; } // switch @@ -14483,235 +14774,163 @@ const char* CMsgUseItem::_InternalParse(const char* ptr, ::_pbi::ParseContext* c #undef CHK_ } -uint8_t* CMsgUseItem::_InternalSerialize( +uint8_t* CMsgConsumableExhausted::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgUseItem) + // @@protoc_insertion_point(serialize_to_array_start:CMsgConsumableExhausted) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint64 item_id = 1; + // optional int32 item_def_id = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(1, this->_internal_item_id(), target); - } - - // optional fixed64 target_steam_id = 2; - if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed64ToArray(2, this->_internal_target_steam_id(), target); - } - - // repeated uint32 gift__potential_targets = 3; - for (int i = 0, n = this->_internal_gift__potential_targets_size(); i < n; i++) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_gift__potential_targets(i), target); - } - - // optional uint32 duel__class_lock = 4; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_duel__class_lock(), target); - } - - // optional fixed64 initiator_steam_id = 5; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed64ToArray(5, this->_internal_initiator_steam_id(), target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(1, this->_internal_item_def_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgUseItem) + // @@protoc_insertion_point(serialize_to_array_end:CMsgConsumableExhausted) return target; } -size_t CMsgUseItem::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgUseItem) +size_t CMsgConsumableExhausted::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgConsumableExhausted) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated uint32 gift__potential_targets = 3; - { - size_t data_size = ::_pbi::WireFormatLite:: - UInt32Size(this->_impl_.gift__potential_targets_); - total_size += 1 * - ::_pbi::FromIntSize(this->_internal_gift__potential_targets_size()); - total_size += data_size; - } - + // optional int32 item_def_id = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - // optional uint64 item_id = 1; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); - } - - // optional fixed64 target_steam_id = 2; - if (cached_has_bits & 0x00000002u) { - total_size += 1 + 8; - } - - // optional fixed64 initiator_steam_id = 5; - if (cached_has_bits & 0x00000004u) { - total_size += 1 + 8; - } - - // optional uint32 duel__class_lock = 4; - if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_duel__class_lock()); - } - + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_item_def_id()); } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgUseItem::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgConsumableExhausted::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgUseItem::MergeImpl + CMsgConsumableExhausted::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgUseItem::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgConsumableExhausted::GetClassData() const { return &_class_data_; } -void CMsgUseItem::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgUseItem) +void CMsgConsumableExhausted::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgConsumableExhausted) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - _this->_impl_.gift__potential_targets_.MergeFrom(from._impl_.gift__potential_targets_); - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - if (cached_has_bits & 0x00000001u) { - _this->_impl_.item_id_ = from._impl_.item_id_; - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.target_steam_id_ = from._impl_.target_steam_id_; - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.initiator_steam_id_ = from._impl_.initiator_steam_id_; - } - if (cached_has_bits & 0x00000008u) { - _this->_impl_.duel__class_lock_ = from._impl_.duel__class_lock_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; + if (from._internal_has_item_def_id()) { + _this->_internal_set_item_def_id(from._internal_item_def_id()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgUseItem::CopyFrom(const CMsgUseItem& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgUseItem) +void CMsgConsumableExhausted::CopyFrom(const CMsgConsumableExhausted& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgConsumableExhausted) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgUseItem::IsInitialized() const { +bool CMsgConsumableExhausted::IsInitialized() const { return true; } -void CMsgUseItem::InternalSwap(CMsgUseItem* other) { +void CMsgConsumableExhausted::InternalSwap(CMsgConsumableExhausted* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.gift__potential_targets_.InternalSwap(&other->_impl_.gift__potential_targets_); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgUseItem, _impl_.duel__class_lock_) - + sizeof(CMsgUseItem::_impl_.duel__class_lock_) - - PROTOBUF_FIELD_OFFSET(CMsgUseItem, _impl_.item_id_)>( - reinterpret_cast(&_impl_.item_id_), - reinterpret_cast(&other->_impl_.item_id_)); + swap(_impl_.item_def_id_, other->_impl_.item_def_id_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgUseItem::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgConsumableExhausted::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[39]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[39]); } // =================================================================== -class CMsgReplayUploadedToYouTube::_Internal { +class CMsgItemAcknowledged__DEPRECATED::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_youtube_url(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_account_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_youtube_account_name(HasBits* has_bits) { + static void set_has_inventory(HasBits* has_bits) { (*has_bits)[0] |= 2u; } - static void set_has_session_id(HasBits* has_bits) { + static void set_has_def_index(HasBits* has_bits) { (*has_bits)[0] |= 4u; } + static void set_has_quality(HasBits* has_bits) { + (*has_bits)[0] |= 8u; + } + static void set_has_rarity(HasBits* has_bits) { + (*has_bits)[0] |= 16u; + } + static void set_has_origin(HasBits* has_bits) { + (*has_bits)[0] |= 32u; + } + static void set_has_item_id(HasBits* has_bits) { + (*has_bits)[0] |= 64u; + } }; -CMsgReplayUploadedToYouTube::CMsgReplayUploadedToYouTube(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgItemAcknowledged__DEPRECATED::CMsgItemAcknowledged__DEPRECATED(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgReplayUploadedToYouTube) + // @@protoc_insertion_point(arena_constructor:CMsgItemAcknowledged__DEPRECATED) } -CMsgReplayUploadedToYouTube::CMsgReplayUploadedToYouTube(const CMsgReplayUploadedToYouTube& from) +CMsgItemAcknowledged__DEPRECATED::CMsgItemAcknowledged__DEPRECATED(const CMsgItemAcknowledged__DEPRECATED& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgReplayUploadedToYouTube* const _this = this; (void)_this; + CMsgItemAcknowledged__DEPRECATED* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.youtube_url_){} - , decltype(_impl_.youtube_account_name_){} - , decltype(_impl_.session_id_){}}; + , decltype(_impl_.account_id_){} + , decltype(_impl_.inventory_){} + , decltype(_impl_.def_index_){} + , decltype(_impl_.quality_){} + , decltype(_impl_.rarity_){} + , decltype(_impl_.origin_){} + , decltype(_impl_.item_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.youtube_url_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.youtube_url_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_youtube_url()) { - _this->_impl_.youtube_url_.Set(from._internal_youtube_url(), - _this->GetArenaForAllocation()); - } - _impl_.youtube_account_name_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.youtube_account_name_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_youtube_account_name()) { - _this->_impl_.youtube_account_name_.Set(from._internal_youtube_account_name(), - _this->GetArenaForAllocation()); - } - _this->_impl_.session_id_ = from._impl_.session_id_; - // @@protoc_insertion_point(copy_constructor:CMsgReplayUploadedToYouTube) + ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, + static_cast(reinterpret_cast(&_impl_.item_id_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_id_)); + // @@protoc_insertion_point(copy_constructor:CMsgItemAcknowledged__DEPRECATED) } -inline void CMsgReplayUploadedToYouTube::SharedCtor( +inline void CMsgItemAcknowledged__DEPRECATED::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.youtube_url_){} - , decltype(_impl_.youtube_account_name_){} - , decltype(_impl_.session_id_){uint64_t{0u}} + , decltype(_impl_.account_id_){0u} + , decltype(_impl_.inventory_){0u} + , decltype(_impl_.def_index_){0u} + , decltype(_impl_.quality_){0u} + , decltype(_impl_.rarity_){0u} + , decltype(_impl_.origin_){0u} + , decltype(_impl_.item_id_){uint64_t{0u}} }; - _impl_.youtube_url_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.youtube_url_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.youtube_account_name_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.youtube_account_name_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgReplayUploadedToYouTube::~CMsgReplayUploadedToYouTube() { - // @@protoc_insertion_point(destructor:CMsgReplayUploadedToYouTube) +CMsgItemAcknowledged__DEPRECATED::~CMsgItemAcknowledged__DEPRECATED() { + // @@protoc_insertion_point(destructor:CMsgItemAcknowledged__DEPRECATED) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -14719,72 +14938,96 @@ CMsgReplayUploadedToYouTube::~CMsgReplayUploadedToYouTube() { SharedDtor(); } -inline void CMsgReplayUploadedToYouTube::SharedDtor() { +inline void CMsgItemAcknowledged__DEPRECATED::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.youtube_url_.Destroy(); - _impl_.youtube_account_name_.Destroy(); } -void CMsgReplayUploadedToYouTube::SetCachedSize(int size) const { +void CMsgItemAcknowledged__DEPRECATED::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgReplayUploadedToYouTube::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgReplayUploadedToYouTube) +void CMsgItemAcknowledged__DEPRECATED::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgItemAcknowledged__DEPRECATED) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _impl_.youtube_url_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000002u) { - _impl_.youtube_account_name_.ClearNonDefaultToEmpty(); - } + if (cached_has_bits & 0x0000007fu) { + ::memset(&_impl_.account_id_, 0, static_cast( + reinterpret_cast(&_impl_.item_id_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_id_)); } - _impl_.session_id_ = uint64_t{0u}; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgReplayUploadedToYouTube::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgItemAcknowledged__DEPRECATED::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional string youtube_url = 1; + // optional uint32 account_id = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - auto str = _internal_mutable_youtube_url(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_account_id(&has_bits); + _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgReplayUploadedToYouTube.youtube_url"); - #endif // !NDEBUG } else goto handle_unusual; continue; - // optional string youtube_account_name = 2; + // optional uint32 inventory = 2; case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 18)) { - auto str = _internal_mutable_youtube_account_name(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_inventory(&has_bits); + _impl_.inventory_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgReplayUploadedToYouTube.youtube_account_name"); - #endif // !NDEBUG } else goto handle_unusual; continue; - // optional uint64 session_id = 3; + // optional uint32 def_index = 3; case 3: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_session_id(&has_bits); - _impl_.session_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + _Internal::set_has_def_index(&has_bits); + _impl_.def_index_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint32 quality = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { + _Internal::set_has_quality(&has_bits); + _impl_.quality_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint32 rarity = 5; + case 5: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 40)) { + _Internal::set_has_rarity(&has_bits); + _impl_.rarity_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint32 origin = 6; + case 6: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 48)) { + _Internal::set_has_origin(&has_bits); + _impl_.origin_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint64 item_id = 7; + case 7: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 56)) { + _Internal::set_has_item_id(&has_bits); + _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -14813,49 +15056,65 @@ const char* CMsgReplayUploadedToYouTube::_InternalParse(const char* ptr, ::_pbi: #undef CHK_ } -uint8_t* CMsgReplayUploadedToYouTube::_InternalSerialize( +uint8_t* CMsgItemAcknowledged__DEPRECATED::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgReplayUploadedToYouTube) + // @@protoc_insertion_point(serialize_to_array_start:CMsgItemAcknowledged__DEPRECATED) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional string youtube_url = 1; + // optional uint32 account_id = 1; if (cached_has_bits & 0x00000001u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_youtube_url().data(), static_cast(this->_internal_youtube_url().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgReplayUploadedToYouTube.youtube_url"); - target = stream->WriteStringMaybeAliased( - 1, this->_internal_youtube_url(), target); + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); } - // optional string youtube_account_name = 2; + // optional uint32 inventory = 2; if (cached_has_bits & 0x00000002u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_youtube_account_name().data(), static_cast(this->_internal_youtube_account_name().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgReplayUploadedToYouTube.youtube_account_name"); - target = stream->WriteStringMaybeAliased( - 2, this->_internal_youtube_account_name(), target); + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_inventory(), target); } - // optional uint64 session_id = 3; + // optional uint32 def_index = 3; if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(3, this->_internal_session_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_def_index(), target); + } + + // optional uint32 quality = 4; + if (cached_has_bits & 0x00000008u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_quality(), target); + } + + // optional uint32 rarity = 5; + if (cached_has_bits & 0x00000010u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(5, this->_internal_rarity(), target); + } + + // optional uint32 origin = 6; + if (cached_has_bits & 0x00000020u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(6, this->_internal_origin(), target); + } + + // optional uint64 item_id = 7; + if (cached_has_bits & 0x00000040u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(7, this->_internal_item_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgReplayUploadedToYouTube) + // @@protoc_insertion_point(serialize_to_array_end:CMsgItemAcknowledged__DEPRECATED) return target; } -size_t CMsgReplayUploadedToYouTube::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgReplayUploadedToYouTube) +size_t CMsgItemAcknowledged__DEPRECATED::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgItemAcknowledged__DEPRECATED) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -14863,137 +15122,172 @@ size_t CMsgReplayUploadedToYouTube::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - // optional string youtube_url = 1; + if (cached_has_bits & 0x0000007fu) { + // optional uint32 account_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_youtube_url()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); } - // optional string youtube_account_name = 2; + // optional uint32 inventory = 2; if (cached_has_bits & 0x00000002u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_youtube_account_name()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_inventory()); } - // optional uint64 session_id = 3; + // optional uint32 def_index = 3; if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_session_id()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_def_index()); + } + + // optional uint32 quality = 4; + if (cached_has_bits & 0x00000008u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_quality()); + } + + // optional uint32 rarity = 5; + if (cached_has_bits & 0x00000010u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_rarity()); + } + + // optional uint32 origin = 6; + if (cached_has_bits & 0x00000020u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_origin()); + } + + // optional uint64 item_id = 7; + if (cached_has_bits & 0x00000040u) { + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgReplayUploadedToYouTube::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgItemAcknowledged__DEPRECATED::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgReplayUploadedToYouTube::MergeImpl + CMsgItemAcknowledged__DEPRECATED::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgReplayUploadedToYouTube::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgItemAcknowledged__DEPRECATED::GetClassData() const { return &_class_data_; } -void CMsgReplayUploadedToYouTube::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgReplayUploadedToYouTube) +void CMsgItemAcknowledged__DEPRECATED::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgItemAcknowledged__DEPRECATED) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x0000007fu) { if (cached_has_bits & 0x00000001u) { - _this->_internal_set_youtube_url(from._internal_youtube_url()); + _this->_impl_.account_id_ = from._impl_.account_id_; } if (cached_has_bits & 0x00000002u) { - _this->_internal_set_youtube_account_name(from._internal_youtube_account_name()); + _this->_impl_.inventory_ = from._impl_.inventory_; } if (cached_has_bits & 0x00000004u) { - _this->_impl_.session_id_ = from._impl_.session_id_; + _this->_impl_.def_index_ = from._impl_.def_index_; + } + if (cached_has_bits & 0x00000008u) { + _this->_impl_.quality_ = from._impl_.quality_; + } + if (cached_has_bits & 0x00000010u) { + _this->_impl_.rarity_ = from._impl_.rarity_; + } + if (cached_has_bits & 0x00000020u) { + _this->_impl_.origin_ = from._impl_.origin_; + } + if (cached_has_bits & 0x00000040u) { + _this->_impl_.item_id_ = from._impl_.item_id_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgReplayUploadedToYouTube::CopyFrom(const CMsgReplayUploadedToYouTube& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgReplayUploadedToYouTube) +void CMsgItemAcknowledged__DEPRECATED::CopyFrom(const CMsgItemAcknowledged__DEPRECATED& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgItemAcknowledged__DEPRECATED) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgReplayUploadedToYouTube::IsInitialized() const { +bool CMsgItemAcknowledged__DEPRECATED::IsInitialized() const { return true; } -void CMsgReplayUploadedToYouTube::InternalSwap(CMsgReplayUploadedToYouTube* other) { +void CMsgItemAcknowledged__DEPRECATED::InternalSwap(CMsgItemAcknowledged__DEPRECATED* other) { using std::swap; - auto* lhs_arena = GetArenaForAllocation(); - auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.youtube_url_, lhs_arena, - &other->_impl_.youtube_url_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.youtube_account_name_, lhs_arena, - &other->_impl_.youtube_account_name_, rhs_arena - ); - swap(_impl_.session_id_, other->_impl_.session_id_); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgItemAcknowledged__DEPRECATED, _impl_.item_id_) + + sizeof(CMsgItemAcknowledged__DEPRECATED::_impl_.item_id_) + - PROTOBUF_FIELD_OFFSET(CMsgItemAcknowledged__DEPRECATED, _impl_.account_id_)>( + reinterpret_cast(&_impl_.account_id_), + reinterpret_cast(&other->_impl_.account_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgReplayUploadedToYouTube::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgItemAcknowledged__DEPRECATED::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[40]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[40]); } // =================================================================== -class CMsgConsumableExhausted::_Internal { +class CMsgSetItemPositions_ItemPosition::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_item_def_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_legacy_item_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } + static void set_has_position(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_item_id(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } }; -CMsgConsumableExhausted::CMsgConsumableExhausted(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgSetItemPositions_ItemPosition::CMsgSetItemPositions_ItemPosition(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgConsumableExhausted) + // @@protoc_insertion_point(arena_constructor:CMsgSetItemPositions.ItemPosition) } -CMsgConsumableExhausted::CMsgConsumableExhausted(const CMsgConsumableExhausted& from) +CMsgSetItemPositions_ItemPosition::CMsgSetItemPositions_ItemPosition(const CMsgSetItemPositions_ItemPosition& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgConsumableExhausted* const _this = this; (void)_this; + CMsgSetItemPositions_ItemPosition* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.item_def_id_){}}; + , decltype(_impl_.legacy_item_id_){} + , decltype(_impl_.position_){} + , decltype(_impl_.item_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.item_def_id_ = from._impl_.item_def_id_; - // @@protoc_insertion_point(copy_constructor:CMsgConsumableExhausted) + ::memcpy(&_impl_.legacy_item_id_, &from._impl_.legacy_item_id_, + static_cast(reinterpret_cast(&_impl_.item_id_) - + reinterpret_cast(&_impl_.legacy_item_id_)) + sizeof(_impl_.item_id_)); + // @@protoc_insertion_point(copy_constructor:CMsgSetItemPositions.ItemPosition) } -inline void CMsgConsumableExhausted::SharedCtor( +inline void CMsgSetItemPositions_ItemPosition::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.item_def_id_){0} + , decltype(_impl_.legacy_item_id_){0u} + , decltype(_impl_.position_){0u} + , decltype(_impl_.item_id_){uint64_t{0u}} }; } -CMsgConsumableExhausted::~CMsgConsumableExhausted() { - // @@protoc_insertion_point(destructor:CMsgConsumableExhausted) +CMsgSetItemPositions_ItemPosition::~CMsgSetItemPositions_ItemPosition() { + // @@protoc_insertion_point(destructor:CMsgSetItemPositions.ItemPosition) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -15001,37 +15295,60 @@ CMsgConsumableExhausted::~CMsgConsumableExhausted() { SharedDtor(); } -inline void CMsgConsumableExhausted::SharedDtor() { +inline void CMsgSetItemPositions_ItemPosition::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgConsumableExhausted::SetCachedSize(int size) const { +void CMsgSetItemPositions_ItemPosition::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgConsumableExhausted::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgConsumableExhausted) +void CMsgSetItemPositions_ItemPosition::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgSetItemPositions.ItemPosition) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.item_def_id_ = 0; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + ::memset(&_impl_.legacy_item_id_, 0, static_cast( + reinterpret_cast(&_impl_.item_id_) - + reinterpret_cast(&_impl_.legacy_item_id_)) + sizeof(_impl_.item_id_)); + } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgConsumableExhausted::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgSetItemPositions_ItemPosition::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional int32 item_def_id = 1; + // optional uint32 legacy_item_id = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_item_def_id(&has_bits); - _impl_.item_def_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_legacy_item_id(&has_bits); + _impl_.legacy_item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint32 position = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_position(&has_bits); + _impl_.position_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint64 item_id = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { + _Internal::set_has_item_id(&has_bits); + _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -15060,163 +15377,163 @@ const char* CMsgConsumableExhausted::_InternalParse(const char* ptr, ::_pbi::Par #undef CHK_ } -uint8_t* CMsgConsumableExhausted::_InternalSerialize( +uint8_t* CMsgSetItemPositions_ItemPosition::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgConsumableExhausted) + // @@protoc_insertion_point(serialize_to_array_start:CMsgSetItemPositions.ItemPosition) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional int32 item_def_id = 1; + // optional uint32 legacy_item_id = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(1, this->_internal_item_def_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_legacy_item_id(), target); + } + + // optional uint32 position = 2; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_position(), target); + } + + // optional uint64 item_id = 3; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(3, this->_internal_item_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgConsumableExhausted) + // @@protoc_insertion_point(serialize_to_array_end:CMsgSetItemPositions.ItemPosition) return target; } -size_t CMsgConsumableExhausted::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgConsumableExhausted) +size_t CMsgSetItemPositions_ItemPosition::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgSetItemPositions.ItemPosition) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional int32 item_def_id = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_item_def_id()); - } + if (cached_has_bits & 0x00000007u) { + // optional uint32 legacy_item_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_legacy_item_id()); + } + + // optional uint32 position = 2; + if (cached_has_bits & 0x00000002u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_position()); + } + + // optional uint64 item_id = 3; + if (cached_has_bits & 0x00000004u) { + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgConsumableExhausted::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgSetItemPositions_ItemPosition::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgConsumableExhausted::MergeImpl + CMsgSetItemPositions_ItemPosition::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgConsumableExhausted::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgSetItemPositions_ItemPosition::GetClassData() const { return &_class_data_; } -void CMsgConsumableExhausted::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgConsumableExhausted) +void CMsgSetItemPositions_ItemPosition::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgSetItemPositions.ItemPosition) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (from._internal_has_item_def_id()) { - _this->_internal_set_item_def_id(from._internal_item_def_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x00000001u) { + _this->_impl_.legacy_item_id_ = from._impl_.legacy_item_id_; + } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.position_ = from._impl_.position_; + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.item_id_ = from._impl_.item_id_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgConsumableExhausted::CopyFrom(const CMsgConsumableExhausted& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgConsumableExhausted) +void CMsgSetItemPositions_ItemPosition::CopyFrom(const CMsgSetItemPositions_ItemPosition& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgSetItemPositions.ItemPosition) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgConsumableExhausted::IsInitialized() const { +bool CMsgSetItemPositions_ItemPosition::IsInitialized() const { return true; } -void CMsgConsumableExhausted::InternalSwap(CMsgConsumableExhausted* other) { +void CMsgSetItemPositions_ItemPosition::InternalSwap(CMsgSetItemPositions_ItemPosition* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.item_def_id_, other->_impl_.item_def_id_); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgSetItemPositions_ItemPosition, _impl_.item_id_) + + sizeof(CMsgSetItemPositions_ItemPosition::_impl_.item_id_) + - PROTOBUF_FIELD_OFFSET(CMsgSetItemPositions_ItemPosition, _impl_.legacy_item_id_)>( + reinterpret_cast(&_impl_.legacy_item_id_), + reinterpret_cast(&other->_impl_.legacy_item_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgConsumableExhausted::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgSetItemPositions_ItemPosition::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[41]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[41]); } // =================================================================== -class CMsgItemAcknowledged__DEPRECATED::_Internal { +class CMsgSetItemPositions::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_account_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static void set_has_inventory(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_def_index(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_quality(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } - static void set_has_rarity(HasBits* has_bits) { - (*has_bits)[0] |= 16u; - } - static void set_has_origin(HasBits* has_bits) { - (*has_bits)[0] |= 32u; - } - static void set_has_item_id(HasBits* has_bits) { - (*has_bits)[0] |= 64u; - } }; -CMsgItemAcknowledged__DEPRECATED::CMsgItemAcknowledged__DEPRECATED(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgSetItemPositions::CMsgSetItemPositions(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgItemAcknowledged__DEPRECATED) + // @@protoc_insertion_point(arena_constructor:CMsgSetItemPositions) } -CMsgItemAcknowledged__DEPRECATED::CMsgItemAcknowledged__DEPRECATED(const CMsgItemAcknowledged__DEPRECATED& from) +CMsgSetItemPositions::CMsgSetItemPositions(const CMsgSetItemPositions& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgItemAcknowledged__DEPRECATED* const _this = this; (void)_this; + CMsgSetItemPositions* const _this = this; (void)_this; new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){from._impl_._has_bits_} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.account_id_){} - , decltype(_impl_.inventory_){} - , decltype(_impl_.def_index_){} - , decltype(_impl_.quality_){} - , decltype(_impl_.rarity_){} - , decltype(_impl_.origin_){} - , decltype(_impl_.item_id_){}}; + decltype(_impl_.item_positions_){from._impl_.item_positions_} + , /*decltype(_impl_._cached_size_)*/{}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, - static_cast(reinterpret_cast(&_impl_.item_id_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_id_)); - // @@protoc_insertion_point(copy_constructor:CMsgItemAcknowledged__DEPRECATED) + // @@protoc_insertion_point(copy_constructor:CMsgSetItemPositions) } -inline void CMsgItemAcknowledged__DEPRECATED::SharedCtor( +inline void CMsgSetItemPositions::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){} + decltype(_impl_.item_positions_){arena} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.account_id_){0u} - , decltype(_impl_.inventory_){0u} - , decltype(_impl_.def_index_){0u} - , decltype(_impl_.quality_){0u} - , decltype(_impl_.rarity_){0u} - , decltype(_impl_.origin_){0u} - , decltype(_impl_.item_id_){uint64_t{0u}} }; } -CMsgItemAcknowledged__DEPRECATED::~CMsgItemAcknowledged__DEPRECATED() { - // @@protoc_insertion_point(destructor:CMsgItemAcknowledged__DEPRECATED) +CMsgSetItemPositions::~CMsgSetItemPositions() { + // @@protoc_insertion_point(destructor:CMsgSetItemPositions) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -15224,97 +15541,41 @@ CMsgItemAcknowledged__DEPRECATED::~CMsgItemAcknowledged__DEPRECATED() { SharedDtor(); } -inline void CMsgItemAcknowledged__DEPRECATED::SharedDtor() { +inline void CMsgSetItemPositions::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.item_positions_.~RepeatedPtrField(); } -void CMsgItemAcknowledged__DEPRECATED::SetCachedSize(int size) const { +void CMsgSetItemPositions::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgItemAcknowledged__DEPRECATED::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgItemAcknowledged__DEPRECATED) +void CMsgSetItemPositions::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgSetItemPositions) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000007fu) { - ::memset(&_impl_.account_id_, 0, static_cast( - reinterpret_cast(&_impl_.item_id_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_id_)); - } - _impl_._has_bits_.Clear(); + _impl_.item_positions_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgItemAcknowledged__DEPRECATED::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgSetItemPositions::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure - _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 account_id = 1; + // repeated .CMsgSetItemPositions.ItemPosition item_positions = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_account_id(&has_bits); - _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 inventory = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_inventory(&has_bits); - _impl_.inventory_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 def_index = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_def_index(&has_bits); - _impl_.def_index_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 quality = 4; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { - _Internal::set_has_quality(&has_bits); - _impl_.quality_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 rarity = 5; - case 5: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 40)) { - _Internal::set_has_rarity(&has_bits); - _impl_.rarity_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 origin = 6; - case 6: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 48)) { - _Internal::set_has_origin(&has_bits); - _impl_.origin_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint64 item_id = 7; - case 7: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 56)) { - _Internal::set_has_item_id(&has_bits); - _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); - CHK_(ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { + ptr -= 1; + do { + ptr += 1; + ptr = ctx->ParseMessage(_internal_add_item_positions(), ptr); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<10>(ptr)); } else goto handle_unusual; continue; @@ -15334,7 +15595,6 @@ const char* CMsgItemAcknowledged__DEPRECATED::_InternalParse(const char* ptr, :: CHK_(ptr != nullptr); } // while message_done: - _impl_._has_bits_.Or(has_bits); return ptr; failure: ptr = nullptr; @@ -15342,238 +15602,174 @@ const char* CMsgItemAcknowledged__DEPRECATED::_InternalParse(const char* ptr, :: #undef CHK_ } -uint8_t* CMsgItemAcknowledged__DEPRECATED::_InternalSerialize( +uint8_t* CMsgSetItemPositions::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgItemAcknowledged__DEPRECATED) + // @@protoc_insertion_point(serialize_to_array_start:CMsgSetItemPositions) uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 account_id = 1; - if (cached_has_bits & 0x00000001u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); - } - - // optional uint32 inventory = 2; - if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_inventory(), target); - } - - // optional uint32 def_index = 3; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_def_index(), target); - } - - // optional uint32 quality = 4; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_quality(), target); - } - - // optional uint32 rarity = 5; - if (cached_has_bits & 0x00000010u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(5, this->_internal_rarity(), target); - } - - // optional uint32 origin = 6; - if (cached_has_bits & 0x00000020u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(6, this->_internal_origin(), target); - } - - // optional uint64 item_id = 7; - if (cached_has_bits & 0x00000040u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(7, this->_internal_item_id(), target); + // repeated .CMsgSetItemPositions.ItemPosition item_positions = 1; + for (unsigned i = 0, + n = static_cast(this->_internal_item_positions_size()); i < n; i++) { + const auto& repfield = this->_internal_item_positions(i); + target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: + InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgItemAcknowledged__DEPRECATED) + // @@protoc_insertion_point(serialize_to_array_end:CMsgSetItemPositions) return target; } -size_t CMsgItemAcknowledged__DEPRECATED::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgItemAcknowledged__DEPRECATED) +size_t CMsgSetItemPositions::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgSetItemPositions) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000007fu) { - // optional uint32 account_id = 1; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); - } - - // optional uint32 inventory = 2; - if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_inventory()); - } - - // optional uint32 def_index = 3; - if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_def_index()); - } - - // optional uint32 quality = 4; - if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_quality()); - } - - // optional uint32 rarity = 5; - if (cached_has_bits & 0x00000010u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_rarity()); - } - - // optional uint32 origin = 6; - if (cached_has_bits & 0x00000020u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_origin()); - } - - // optional uint64 item_id = 7; - if (cached_has_bits & 0x00000040u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); - } - + // repeated .CMsgSetItemPositions.ItemPosition item_positions = 1; + total_size += 1UL * this->_internal_item_positions_size(); + for (const auto& msg : this->_impl_.item_positions_) { + total_size += + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgItemAcknowledged__DEPRECATED::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgSetItemPositions::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgItemAcknowledged__DEPRECATED::MergeImpl + CMsgSetItemPositions::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgItemAcknowledged__DEPRECATED::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgSetItemPositions::GetClassData() const { return &_class_data_; } -void CMsgItemAcknowledged__DEPRECATED::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgItemAcknowledged__DEPRECATED) +void CMsgSetItemPositions::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgSetItemPositions) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000007fu) { - if (cached_has_bits & 0x00000001u) { - _this->_impl_.account_id_ = from._impl_.account_id_; - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.inventory_ = from._impl_.inventory_; - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.def_index_ = from._impl_.def_index_; - } - if (cached_has_bits & 0x00000008u) { - _this->_impl_.quality_ = from._impl_.quality_; - } - if (cached_has_bits & 0x00000010u) { - _this->_impl_.rarity_ = from._impl_.rarity_; - } - if (cached_has_bits & 0x00000020u) { - _this->_impl_.origin_ = from._impl_.origin_; - } - if (cached_has_bits & 0x00000040u) { - _this->_impl_.item_id_ = from._impl_.item_id_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - } + _this->_impl_.item_positions_.MergeFrom(from._impl_.item_positions_); _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgItemAcknowledged__DEPRECATED::CopyFrom(const CMsgItemAcknowledged__DEPRECATED& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgItemAcknowledged__DEPRECATED) +void CMsgSetItemPositions::CopyFrom(const CMsgSetItemPositions& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgSetItemPositions) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgItemAcknowledged__DEPRECATED::IsInitialized() const { +bool CMsgSetItemPositions::IsInitialized() const { return true; } -void CMsgItemAcknowledged__DEPRECATED::InternalSwap(CMsgItemAcknowledged__DEPRECATED* other) { +void CMsgSetItemPositions::InternalSwap(CMsgSetItemPositions* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgItemAcknowledged__DEPRECATED, _impl_.item_id_) - + sizeof(CMsgItemAcknowledged__DEPRECATED::_impl_.item_id_) - - PROTOBUF_FIELD_OFFSET(CMsgItemAcknowledged__DEPRECATED, _impl_.account_id_)>( - reinterpret_cast(&_impl_.account_id_), - reinterpret_cast(&other->_impl_.account_id_)); + _impl_.item_positions_.InternalSwap(&other->_impl_.item_positions_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgItemAcknowledged__DEPRECATED::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgSetItemPositions::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[42]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[42]); } // =================================================================== -class CMsgSetItemPositions_ItemPosition::_Internal { +class CMsgGCReportAbuse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_legacy_item_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_target_steam_id(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_description(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_position(HasBits* has_bits) { - (*has_bits)[0] |= 2u; + static void set_has_gid(HasBits* has_bits) { + (*has_bits)[0] |= 16u; } - static void set_has_item_id(HasBits* has_bits) { + static void set_has_abuse_type(HasBits* has_bits) { (*has_bits)[0] |= 4u; } + static void set_has_content_type(HasBits* has_bits) { + (*has_bits)[0] |= 8u; + } + static void set_has_target_game_server_ip(HasBits* has_bits) { + (*has_bits)[0] |= 32u; + } + static void set_has_target_game_server_port(HasBits* has_bits) { + (*has_bits)[0] |= 64u; + } }; -CMsgSetItemPositions_ItemPosition::CMsgSetItemPositions_ItemPosition(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCReportAbuse::CMsgGCReportAbuse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgSetItemPositions.ItemPosition) + // @@protoc_insertion_point(arena_constructor:CMsgGCReportAbuse) } -CMsgSetItemPositions_ItemPosition::CMsgSetItemPositions_ItemPosition(const CMsgSetItemPositions_ItemPosition& from) +CMsgGCReportAbuse::CMsgGCReportAbuse(const CMsgGCReportAbuse& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgSetItemPositions_ItemPosition* const _this = this; (void)_this; + CMsgGCReportAbuse* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.legacy_item_id_){} - , decltype(_impl_.position_){} - , decltype(_impl_.item_id_){}}; + , decltype(_impl_.description_){} + , decltype(_impl_.target_steam_id_){} + , decltype(_impl_.abuse_type_){} + , decltype(_impl_.content_type_){} + , decltype(_impl_.gid_){} + , decltype(_impl_.target_game_server_ip_){} + , decltype(_impl_.target_game_server_port_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.legacy_item_id_, &from._impl_.legacy_item_id_, - static_cast(reinterpret_cast(&_impl_.item_id_) - - reinterpret_cast(&_impl_.legacy_item_id_)) + sizeof(_impl_.item_id_)); - // @@protoc_insertion_point(copy_constructor:CMsgSetItemPositions.ItemPosition) + _impl_.description_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.description_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_description()) { + _this->_impl_.description_.Set(from._internal_description(), + _this->GetArenaForAllocation()); + } + ::memcpy(&_impl_.target_steam_id_, &from._impl_.target_steam_id_, + static_cast(reinterpret_cast(&_impl_.target_game_server_port_) - + reinterpret_cast(&_impl_.target_steam_id_)) + sizeof(_impl_.target_game_server_port_)); + // @@protoc_insertion_point(copy_constructor:CMsgGCReportAbuse) } -inline void CMsgSetItemPositions_ItemPosition::SharedCtor( +inline void CMsgGCReportAbuse::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.legacy_item_id_){0u} - , decltype(_impl_.position_){0u} - , decltype(_impl_.item_id_){uint64_t{0u}} + , decltype(_impl_.description_){} + , decltype(_impl_.target_steam_id_){uint64_t{0u}} + , decltype(_impl_.abuse_type_){0u} + , decltype(_impl_.content_type_){0u} + , decltype(_impl_.gid_){uint64_t{0u}} + , decltype(_impl_.target_game_server_ip_){0u} + , decltype(_impl_.target_game_server_port_){0u} }; + _impl_.description_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.description_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgSetItemPositions_ItemPosition::~CMsgSetItemPositions_ItemPosition() { - // @@protoc_insertion_point(destructor:CMsgSetItemPositions.ItemPosition) +CMsgGCReportAbuse::~CMsgGCReportAbuse() { + // @@protoc_insertion_point(destructor:CMsgGCReportAbuse) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -15581,60 +15777,103 @@ CMsgSetItemPositions_ItemPosition::~CMsgSetItemPositions_ItemPosition() { SharedDtor(); } -inline void CMsgSetItemPositions_ItemPosition::SharedDtor() { +inline void CMsgGCReportAbuse::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.description_.Destroy(); } -void CMsgSetItemPositions_ItemPosition::SetCachedSize(int size) const { +void CMsgGCReportAbuse::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgSetItemPositions_ItemPosition::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgSetItemPositions.ItemPosition) +void CMsgGCReportAbuse::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCReportAbuse) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - ::memset(&_impl_.legacy_item_id_, 0, static_cast( - reinterpret_cast(&_impl_.item_id_) - - reinterpret_cast(&_impl_.legacy_item_id_)) + sizeof(_impl_.item_id_)); + if (cached_has_bits & 0x00000001u) { + _impl_.description_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x0000007eu) { + ::memset(&_impl_.target_steam_id_, 0, static_cast( + reinterpret_cast(&_impl_.target_game_server_port_) - + reinterpret_cast(&_impl_.target_steam_id_)) + sizeof(_impl_.target_game_server_port_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgSetItemPositions_ItemPosition::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCReportAbuse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 legacy_item_id = 1; + // optional fixed64 target_steam_id = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_legacy_item_id(&has_bits); - _impl_.legacy_item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 9)) { + _Internal::set_has_target_steam_id(&has_bits); + _impl_.target_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint64_t); } else goto handle_unusual; continue; - // optional uint32 position = 2; + // optional uint32 abuse_type = 2; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_position(&has_bits); - _impl_.position_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_abuse_type(&has_bits); + _impl_.abuse_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint64 item_id = 3; + // optional uint32 content_type = 3; case 3: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_item_id(&has_bits); - _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + _Internal::set_has_content_type(&has_bits); + _impl_.content_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional string description = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 34)) { + auto str = _internal_mutable_description(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCReportAbuse.description"); + #endif // !NDEBUG + } else + goto handle_unusual; + continue; + // optional uint64 gid = 5; + case 5: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 40)) { + _Internal::set_has_gid(&has_bits); + _impl_.gid_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional fixed32 target_game_server_ip = 6; + case 6: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 53)) { + _Internal::set_has_target_game_server_ip(&has_bits); + _impl_.target_game_server_ip_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint32_t); + } else + goto handle_unusual; + continue; + // optional uint32 target_game_server_port = 7; + case 7: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 56)) { + _Internal::set_has_target_game_server_port(&has_bits); + _impl_.target_game_server_port_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -15663,41 +15902,69 @@ const char* CMsgSetItemPositions_ItemPosition::_InternalParse(const char* ptr, : #undef CHK_ } -uint8_t* CMsgSetItemPositions_ItemPosition::_InternalSerialize( +uint8_t* CMsgGCReportAbuse::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgSetItemPositions.ItemPosition) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCReportAbuse) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 legacy_item_id = 1; + // optional fixed64 target_steam_id = 1; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed64ToArray(1, this->_internal_target_steam_id(), target); + } + + // optional uint32 abuse_type = 2; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_abuse_type(), target); + } + + // optional uint32 content_type = 3; + if (cached_has_bits & 0x00000008u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_content_type(), target); + } + + // optional string description = 4; if (cached_has_bits & 0x00000001u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_description().data(), static_cast(this->_internal_description().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGCReportAbuse.description"); + target = stream->WriteStringMaybeAliased( + 4, this->_internal_description(), target); + } + + // optional uint64 gid = 5; + if (cached_has_bits & 0x00000010u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_legacy_item_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(5, this->_internal_gid(), target); } - // optional uint32 position = 2; - if (cached_has_bits & 0x00000002u) { + // optional fixed32 target_game_server_ip = 6; + if (cached_has_bits & 0x00000020u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_position(), target); + target = ::_pbi::WireFormatLite::WriteFixed32ToArray(6, this->_internal_target_game_server_ip(), target); } - // optional uint64 item_id = 3; - if (cached_has_bits & 0x00000004u) { + // optional uint32 target_game_server_port = 7; + if (cached_has_bits & 0x00000040u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(3, this->_internal_item_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(7, this->_internal_target_game_server_port(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgSetItemPositions.ItemPosition) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCReportAbuse) return target; } -size_t CMsgSetItemPositions_ItemPosition::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgSetItemPositions.ItemPosition) +size_t CMsgGCReportAbuse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCReportAbuse) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -15705,121 +15972,192 @@ size_t CMsgSetItemPositions_ItemPosition::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - // optional uint32 legacy_item_id = 1; + if (cached_has_bits & 0x0000007fu) { + // optional string description = 4; if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_legacy_item_id()); + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_description()); } - // optional uint32 position = 2; + // optional fixed64 target_steam_id = 1; if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_position()); + total_size += 1 + 8; } - // optional uint64 item_id = 3; + // optional uint32 abuse_type = 2; if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_abuse_type()); } - } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} + // optional uint32 content_type = 3; + if (cached_has_bits & 0x00000008u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_content_type()); + } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgSetItemPositions_ItemPosition::_class_data_ = { - ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgSetItemPositions_ItemPosition::MergeImpl + // optional uint64 gid = 5; + if (cached_has_bits & 0x00000010u) { + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_gid()); + } + + // optional fixed32 target_game_server_ip = 6; + if (cached_has_bits & 0x00000020u) { + total_size += 1 + 4; + } + + // optional uint32 target_game_server_port = 7; + if (cached_has_bits & 0x00000040u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_target_game_server_port()); + } + + } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCReportAbuse::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, + CMsgGCReportAbuse::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgSetItemPositions_ItemPosition::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCReportAbuse::GetClassData() const { return &_class_data_; } -void CMsgSetItemPositions_ItemPosition::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgSetItemPositions.ItemPosition) +void CMsgGCReportAbuse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCReportAbuse) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x0000007fu) { if (cached_has_bits & 0x00000001u) { - _this->_impl_.legacy_item_id_ = from._impl_.legacy_item_id_; + _this->_internal_set_description(from._internal_description()); } if (cached_has_bits & 0x00000002u) { - _this->_impl_.position_ = from._impl_.position_; + _this->_impl_.target_steam_id_ = from._impl_.target_steam_id_; } if (cached_has_bits & 0x00000004u) { - _this->_impl_.item_id_ = from._impl_.item_id_; + _this->_impl_.abuse_type_ = from._impl_.abuse_type_; + } + if (cached_has_bits & 0x00000008u) { + _this->_impl_.content_type_ = from._impl_.content_type_; + } + if (cached_has_bits & 0x00000010u) { + _this->_impl_.gid_ = from._impl_.gid_; + } + if (cached_has_bits & 0x00000020u) { + _this->_impl_.target_game_server_ip_ = from._impl_.target_game_server_ip_; + } + if (cached_has_bits & 0x00000040u) { + _this->_impl_.target_game_server_port_ = from._impl_.target_game_server_port_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgSetItemPositions_ItemPosition::CopyFrom(const CMsgSetItemPositions_ItemPosition& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgSetItemPositions.ItemPosition) +void CMsgGCReportAbuse::CopyFrom(const CMsgGCReportAbuse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCReportAbuse) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgSetItemPositions_ItemPosition::IsInitialized() const { +bool CMsgGCReportAbuse::IsInitialized() const { return true; } -void CMsgSetItemPositions_ItemPosition::InternalSwap(CMsgSetItemPositions_ItemPosition* other) { +void CMsgGCReportAbuse::InternalSwap(CMsgGCReportAbuse* other) { using std::swap; + auto* lhs_arena = GetArenaForAllocation(); + auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.description_, lhs_arena, + &other->_impl_.description_, rhs_arena + ); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgSetItemPositions_ItemPosition, _impl_.item_id_) - + sizeof(CMsgSetItemPositions_ItemPosition::_impl_.item_id_) - - PROTOBUF_FIELD_OFFSET(CMsgSetItemPositions_ItemPosition, _impl_.legacy_item_id_)>( - reinterpret_cast(&_impl_.legacy_item_id_), - reinterpret_cast(&other->_impl_.legacy_item_id_)); + PROTOBUF_FIELD_OFFSET(CMsgGCReportAbuse, _impl_.target_game_server_port_) + + sizeof(CMsgGCReportAbuse::_impl_.target_game_server_port_) + - PROTOBUF_FIELD_OFFSET(CMsgGCReportAbuse, _impl_.target_steam_id_)>( + reinterpret_cast(&_impl_.target_steam_id_), + reinterpret_cast(&other->_impl_.target_steam_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgSetItemPositions_ItemPosition::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCReportAbuse::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[43]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[43]); } // =================================================================== -class CMsgSetItemPositions::_Internal { +class CMsgGCReportAbuseResponse::_Internal { public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_target_steam_id(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_result(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } + static void set_has_error_message(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } }; -CMsgSetItemPositions::CMsgSetItemPositions(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCReportAbuseResponse::CMsgGCReportAbuseResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgSetItemPositions) + // @@protoc_insertion_point(arena_constructor:CMsgGCReportAbuseResponse) } -CMsgSetItemPositions::CMsgSetItemPositions(const CMsgSetItemPositions& from) +CMsgGCReportAbuseResponse::CMsgGCReportAbuseResponse(const CMsgGCReportAbuseResponse& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgSetItemPositions* const _this = this; (void)_this; + CMsgGCReportAbuseResponse* const _this = this; (void)_this; new (&_impl_) Impl_{ - decltype(_impl_.item_positions_){from._impl_.item_positions_} - , /*decltype(_impl_._cached_size_)*/{}}; + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.error_message_){} + , decltype(_impl_.target_steam_id_){} + , decltype(_impl_.result_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - // @@protoc_insertion_point(copy_constructor:CMsgSetItemPositions) + _impl_.error_message_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.error_message_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_error_message()) { + _this->_impl_.error_message_.Set(from._internal_error_message(), + _this->GetArenaForAllocation()); + } + ::memcpy(&_impl_.target_steam_id_, &from._impl_.target_steam_id_, + static_cast(reinterpret_cast(&_impl_.result_) - + reinterpret_cast(&_impl_.target_steam_id_)) + sizeof(_impl_.result_)); + // @@protoc_insertion_point(copy_constructor:CMsgGCReportAbuseResponse) } -inline void CMsgSetItemPositions::SharedCtor( +inline void CMsgGCReportAbuseResponse::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ - decltype(_impl_.item_positions_){arena} + decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.error_message_){} + , decltype(_impl_.target_steam_id_){uint64_t{0u}} + , decltype(_impl_.result_){0u} }; + _impl_.error_message_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.error_message_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgSetItemPositions::~CMsgSetItemPositions() { - // @@protoc_insertion_point(destructor:CMsgSetItemPositions) +CMsgGCReportAbuseResponse::~CMsgGCReportAbuseResponse() { + // @@protoc_insertion_point(destructor:CMsgGCReportAbuseResponse) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -15827,41 +16165,68 @@ CMsgSetItemPositions::~CMsgSetItemPositions() { SharedDtor(); } -inline void CMsgSetItemPositions::SharedDtor() { +inline void CMsgGCReportAbuseResponse::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.item_positions_.~RepeatedPtrField(); + _impl_.error_message_.Destroy(); } -void CMsgSetItemPositions::SetCachedSize(int size) const { +void CMsgGCReportAbuseResponse::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgSetItemPositions::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgSetItemPositions) +void CMsgGCReportAbuseResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCReportAbuseResponse) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.item_positions_.Clear(); + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + _impl_.error_message_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000006u) { + ::memset(&_impl_.target_steam_id_, 0, static_cast( + reinterpret_cast(&_impl_.result_) - + reinterpret_cast(&_impl_.target_steam_id_)) + sizeof(_impl_.result_)); + } + _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgSetItemPositions::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCReportAbuseResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // repeated .CMsgSetItemPositions.ItemPosition item_positions = 1; + // optional fixed64 target_steam_id = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - ptr -= 1; - do { - ptr += 1; - ptr = ctx->ParseMessage(_internal_add_item_positions(), ptr); - CHK_(ptr); - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<10>(ptr)); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 9)) { + _Internal::set_has_target_steam_id(&has_bits); + _impl_.target_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint64_t); + } else + goto handle_unusual; + continue; + // optional uint32 result = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_result(&has_bits); + _impl_.result_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional string error_message = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 26)) { + auto str = _internal_mutable_error_message(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCReportAbuseResponse.error_message"); + #endif // !NDEBUG } else goto handle_unusual; continue; @@ -15881,6 +16246,7 @@ const char* CMsgSetItemPositions::_InternalParse(const char* ptr, ::_pbi::ParseC CHK_(ptr != nullptr); } // while message_done: + _impl_._has_bits_.Or(has_bits); return ptr; failure: ptr = nullptr; @@ -15888,174 +16254,206 @@ const char* CMsgSetItemPositions::_InternalParse(const char* ptr, ::_pbi::ParseC #undef CHK_ } -uint8_t* CMsgSetItemPositions::_InternalSerialize( +uint8_t* CMsgGCReportAbuseResponse::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgSetItemPositions) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCReportAbuseResponse) uint32_t cached_has_bits = 0; (void) cached_has_bits; - // repeated .CMsgSetItemPositions.ItemPosition item_positions = 1; - for (unsigned i = 0, - n = static_cast(this->_internal_item_positions_size()); i < n; i++) { - const auto& repfield = this->_internal_item_positions(i); - target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: - InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); + cached_has_bits = _impl_._has_bits_[0]; + // optional fixed64 target_steam_id = 1; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed64ToArray(1, this->_internal_target_steam_id(), target); + } + + // optional uint32 result = 2; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_result(), target); + } + + // optional string error_message = 3; + if (cached_has_bits & 0x00000001u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_error_message().data(), static_cast(this->_internal_error_message().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGCReportAbuseResponse.error_message"); + target = stream->WriteStringMaybeAliased( + 3, this->_internal_error_message(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgSetItemPositions) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCReportAbuseResponse) return target; } -size_t CMsgSetItemPositions::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgSetItemPositions) +size_t CMsgGCReportAbuseResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCReportAbuseResponse) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .CMsgSetItemPositions.ItemPosition item_positions = 1; - total_size += 1UL * this->_internal_item_positions_size(); - for (const auto& msg : this->_impl_.item_positions_) { - total_size += - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); - } + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // optional string error_message = 3; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_error_message()); + } + + // optional fixed64 target_steam_id = 1; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + 8; + } + + // optional uint32 result = 2; + if (cached_has_bits & 0x00000004u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_result()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgSetItemPositions::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCReportAbuseResponse::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgSetItemPositions::MergeImpl + CMsgGCReportAbuseResponse::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgSetItemPositions::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCReportAbuseResponse::GetClassData() const { return &_class_data_; } -void CMsgSetItemPositions::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgSetItemPositions) +void CMsgGCReportAbuseResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCReportAbuseResponse) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - _this->_impl_.item_positions_.MergeFrom(from._impl_.item_positions_); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x00000001u) { + _this->_internal_set_error_message(from._internal_error_message()); + } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.target_steam_id_ = from._impl_.target_steam_id_; + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.result_ = from._impl_.result_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgSetItemPositions::CopyFrom(const CMsgSetItemPositions& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgSetItemPositions) +void CMsgGCReportAbuseResponse::CopyFrom(const CMsgGCReportAbuseResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCReportAbuseResponse) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgSetItemPositions::IsInitialized() const { +bool CMsgGCReportAbuseResponse::IsInitialized() const { return true; } -void CMsgSetItemPositions::InternalSwap(CMsgSetItemPositions* other) { +void CMsgGCReportAbuseResponse::InternalSwap(CMsgGCReportAbuseResponse* other) { using std::swap; + auto* lhs_arena = GetArenaForAllocation(); + auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.item_positions_.InternalSwap(&other->_impl_.item_positions_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.error_message_, lhs_arena, + &other->_impl_.error_message_, rhs_arena + ); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgGCReportAbuseResponse, _impl_.result_) + + sizeof(CMsgGCReportAbuseResponse::_impl_.result_) + - PROTOBUF_FIELD_OFFSET(CMsgGCReportAbuseResponse, _impl_.target_steam_id_)>( + reinterpret_cast(&_impl_.target_steam_id_), + reinterpret_cast(&other->_impl_.target_steam_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgSetItemPositions::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCReportAbuseResponse::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[44]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[44]); } // =================================================================== -class CMsgGCReportAbuse::_Internal { +class CMsgGCNameItemNotification::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_target_steam_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_player_steamid(HasBits* has_bits) { (*has_bits)[0] |= 2u; } - static void set_has_description(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static void set_has_gid(HasBits* has_bits) { - (*has_bits)[0] |= 16u; - } - static void set_has_abuse_type(HasBits* has_bits) { + static void set_has_item_def_index(HasBits* has_bits) { (*has_bits)[0] |= 4u; } - static void set_has_content_type(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } - static void set_has_target_game_server_ip(HasBits* has_bits) { - (*has_bits)[0] |= 32u; - } - static void set_has_target_game_server_port(HasBits* has_bits) { - (*has_bits)[0] |= 64u; + static void set_has_item_name_custom(HasBits* has_bits) { + (*has_bits)[0] |= 1u; } }; -CMsgGCReportAbuse::CMsgGCReportAbuse(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCNameItemNotification::CMsgGCNameItemNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCReportAbuse) + // @@protoc_insertion_point(arena_constructor:CMsgGCNameItemNotification) } -CMsgGCReportAbuse::CMsgGCReportAbuse(const CMsgGCReportAbuse& from) +CMsgGCNameItemNotification::CMsgGCNameItemNotification(const CMsgGCNameItemNotification& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCReportAbuse* const _this = this; (void)_this; + CMsgGCNameItemNotification* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.description_){} - , decltype(_impl_.target_steam_id_){} - , decltype(_impl_.abuse_type_){} - , decltype(_impl_.content_type_){} - , decltype(_impl_.gid_){} - , decltype(_impl_.target_game_server_ip_){} - , decltype(_impl_.target_game_server_port_){}}; + , decltype(_impl_.item_name_custom_){} + , decltype(_impl_.player_steamid_){} + , decltype(_impl_.item_def_index_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.description_.InitDefault(); + _impl_.item_name_custom_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.description_.Set("", GetArenaForAllocation()); + _impl_.item_name_custom_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_description()) { - _this->_impl_.description_.Set(from._internal_description(), + if (from._internal_has_item_name_custom()) { + _this->_impl_.item_name_custom_.Set(from._internal_item_name_custom(), _this->GetArenaForAllocation()); } - ::memcpy(&_impl_.target_steam_id_, &from._impl_.target_steam_id_, - static_cast(reinterpret_cast(&_impl_.target_game_server_port_) - - reinterpret_cast(&_impl_.target_steam_id_)) + sizeof(_impl_.target_game_server_port_)); - // @@protoc_insertion_point(copy_constructor:CMsgGCReportAbuse) + ::memcpy(&_impl_.player_steamid_, &from._impl_.player_steamid_, + static_cast(reinterpret_cast(&_impl_.item_def_index_) - + reinterpret_cast(&_impl_.player_steamid_)) + sizeof(_impl_.item_def_index_)); + // @@protoc_insertion_point(copy_constructor:CMsgGCNameItemNotification) } -inline void CMsgGCReportAbuse::SharedCtor( +inline void CMsgGCNameItemNotification::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.description_){} - , decltype(_impl_.target_steam_id_){uint64_t{0u}} - , decltype(_impl_.abuse_type_){0u} - , decltype(_impl_.content_type_){0u} - , decltype(_impl_.gid_){uint64_t{0u}} - , decltype(_impl_.target_game_server_ip_){0u} - , decltype(_impl_.target_game_server_port_){0u} + , decltype(_impl_.item_name_custom_){} + , decltype(_impl_.player_steamid_){uint64_t{0u}} + , decltype(_impl_.item_def_index_){0u} }; - _impl_.description_.InitDefault(); + _impl_.item_name_custom_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.description_.Set("", GetArenaForAllocation()); + _impl_.item_name_custom_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCReportAbuse::~CMsgGCReportAbuse() { - // @@protoc_insertion_point(destructor:CMsgGCReportAbuse) +CMsgGCNameItemNotification::~CMsgGCNameItemNotification() { + // @@protoc_insertion_point(destructor:CMsgGCNameItemNotification) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -16063,107 +16461,71 @@ CMsgGCReportAbuse::~CMsgGCReportAbuse() { SharedDtor(); } -inline void CMsgGCReportAbuse::SharedDtor() { +inline void CMsgGCNameItemNotification::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.description_.Destroy(); + _impl_.item_name_custom_.Destroy(); } -void CMsgGCReportAbuse::SetCachedSize(int size) const { +void CMsgGCNameItemNotification::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCReportAbuse::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCReportAbuse) +void CMsgGCNameItemNotification::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCNameItemNotification) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - _impl_.description_.ClearNonDefaultToEmpty(); + _impl_.item_name_custom_.ClearNonDefaultToEmpty(); } - if (cached_has_bits & 0x0000007eu) { - ::memset(&_impl_.target_steam_id_, 0, static_cast( - reinterpret_cast(&_impl_.target_game_server_port_) - - reinterpret_cast(&_impl_.target_steam_id_)) + sizeof(_impl_.target_game_server_port_)); + if (cached_has_bits & 0x00000006u) { + ::memset(&_impl_.player_steamid_, 0, static_cast( + reinterpret_cast(&_impl_.item_def_index_) - + reinterpret_cast(&_impl_.player_steamid_)) + sizeof(_impl_.item_def_index_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCReportAbuse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCNameItemNotification::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional fixed64 target_steam_id = 1; + // optional fixed64 player_steamid = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 9)) { - _Internal::set_has_target_steam_id(&has_bits); - _impl_.target_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + _Internal::set_has_player_steamid(&has_bits); + _impl_.player_steamid_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); ptr += sizeof(uint64_t); } else goto handle_unusual; continue; - // optional uint32 abuse_type = 2; + // optional uint32 item_def_index = 2; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_abuse_type(&has_bits); - _impl_.abuse_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_item_def_index(&has_bits); + _impl_.item_def_index_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 content_type = 3; + // optional string item_name_custom = 3; case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_content_type(&has_bits); - _impl_.content_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional string description = 4; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 34)) { - auto str = _internal_mutable_description(); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 26)) { + auto str = _internal_mutable_item_name_custom(); ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCReportAbuse.description"); + ::_pbi::VerifyUTF8(str, "CMsgGCNameItemNotification.item_name_custom"); #endif // !NDEBUG } else goto handle_unusual; continue; - // optional uint64 gid = 5; - case 5: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 40)) { - _Internal::set_has_gid(&has_bits); - _impl_.gid_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional fixed32 target_game_server_ip = 6; - case 6: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 53)) { - _Internal::set_has_target_game_server_ip(&has_bits); - _impl_.target_game_server_ip_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint32_t); - } else - goto handle_unusual; - continue; - // optional uint32 target_game_server_port = 7; - case 7: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 56)) { - _Internal::set_has_target_game_server_port(&has_bits); - _impl_.target_game_server_port_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; default: goto handle_unusual; } // switch @@ -16188,69 +16550,45 @@ const char* CMsgGCReportAbuse::_InternalParse(const char* ptr, ::_pbi::ParseCont #undef CHK_ } -uint8_t* CMsgGCReportAbuse::_InternalSerialize( +uint8_t* CMsgGCNameItemNotification::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCReportAbuse) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCNameItemNotification) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional fixed64 target_steam_id = 1; + // optional fixed64 player_steamid = 1; if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed64ToArray(1, this->_internal_target_steam_id(), target); + target = ::_pbi::WireFormatLite::WriteFixed64ToArray(1, this->_internal_player_steamid(), target); } - // optional uint32 abuse_type = 2; + // optional uint32 item_def_index = 2; if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_abuse_type(), target); - } - - // optional uint32 content_type = 3; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_content_type(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_item_def_index(), target); } - // optional string description = 4; + // optional string item_name_custom = 3; if (cached_has_bits & 0x00000001u) { ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_description().data(), static_cast(this->_internal_description().length()), + this->_internal_item_name_custom().data(), static_cast(this->_internal_item_name_custom().length()), ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCReportAbuse.description"); + "CMsgGCNameItemNotification.item_name_custom"); target = stream->WriteStringMaybeAliased( - 4, this->_internal_description(), target); - } - - // optional uint64 gid = 5; - if (cached_has_bits & 0x00000010u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(5, this->_internal_gid(), target); - } - - // optional fixed32 target_game_server_ip = 6; - if (cached_has_bits & 0x00000020u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed32ToArray(6, this->_internal_target_game_server_ip(), target); - } - - // optional uint32 target_game_server_port = 7; - if (cached_has_bits & 0x00000040u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(7, this->_internal_target_game_server_port(), target); + 3, this->_internal_item_name_custom(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCReportAbuse) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCNameItemNotification) return target; } -size_t CMsgGCReportAbuse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCReportAbuse) +size_t CMsgGCNameItemNotification::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCNameItemNotification) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -16258,192 +16596,168 @@ size_t CMsgGCReportAbuse::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000007fu) { - // optional string description = 4; + if (cached_has_bits & 0x00000007u) { + // optional string item_name_custom = 3; if (cached_has_bits & 0x00000001u) { total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_description()); + this->_internal_item_name_custom()); } - // optional fixed64 target_steam_id = 1; + // optional fixed64 player_steamid = 1; if (cached_has_bits & 0x00000002u) { total_size += 1 + 8; } - // optional uint32 abuse_type = 2; + // optional uint32 item_def_index = 2; if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_abuse_type()); - } - - // optional uint32 content_type = 3; - if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_content_type()); - } - - // optional uint64 gid = 5; - if (cached_has_bits & 0x00000010u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_gid()); - } - - // optional fixed32 target_game_server_ip = 6; - if (cached_has_bits & 0x00000020u) { - total_size += 1 + 4; - } - - // optional uint32 target_game_server_port = 7; - if (cached_has_bits & 0x00000040u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_target_game_server_port()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_item_def_index()); } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCReportAbuse::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCNameItemNotification::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCReportAbuse::MergeImpl + CMsgGCNameItemNotification::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCReportAbuse::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCNameItemNotification::GetClassData() const { return &_class_data_; } -void CMsgGCReportAbuse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCReportAbuse) +void CMsgGCNameItemNotification::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCNameItemNotification) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000007fu) { + if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_set_description(from._internal_description()); + _this->_internal_set_item_name_custom(from._internal_item_name_custom()); } if (cached_has_bits & 0x00000002u) { - _this->_impl_.target_steam_id_ = from._impl_.target_steam_id_; + _this->_impl_.player_steamid_ = from._impl_.player_steamid_; } if (cached_has_bits & 0x00000004u) { - _this->_impl_.abuse_type_ = from._impl_.abuse_type_; - } - if (cached_has_bits & 0x00000008u) { - _this->_impl_.content_type_ = from._impl_.content_type_; - } - if (cached_has_bits & 0x00000010u) { - _this->_impl_.gid_ = from._impl_.gid_; - } - if (cached_has_bits & 0x00000020u) { - _this->_impl_.target_game_server_ip_ = from._impl_.target_game_server_ip_; - } - if (cached_has_bits & 0x00000040u) { - _this->_impl_.target_game_server_port_ = from._impl_.target_game_server_port_; + _this->_impl_.item_def_index_ = from._impl_.item_def_index_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCReportAbuse::CopyFrom(const CMsgGCReportAbuse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCReportAbuse) +void CMsgGCNameItemNotification::CopyFrom(const CMsgGCNameItemNotification& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCNameItemNotification) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCReportAbuse::IsInitialized() const { +bool CMsgGCNameItemNotification::IsInitialized() const { return true; } -void CMsgGCReportAbuse::InternalSwap(CMsgGCReportAbuse* other) { +void CMsgGCNameItemNotification::InternalSwap(CMsgGCNameItemNotification* other) { using std::swap; auto* lhs_arena = GetArenaForAllocation(); auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.description_, lhs_arena, - &other->_impl_.description_, rhs_arena + &_impl_.item_name_custom_, lhs_arena, + &other->_impl_.item_name_custom_, rhs_arena ); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgGCReportAbuse, _impl_.target_game_server_port_) - + sizeof(CMsgGCReportAbuse::_impl_.target_game_server_port_) - - PROTOBUF_FIELD_OFFSET(CMsgGCReportAbuse, _impl_.target_steam_id_)>( - reinterpret_cast(&_impl_.target_steam_id_), - reinterpret_cast(&other->_impl_.target_steam_id_)); + PROTOBUF_FIELD_OFFSET(CMsgGCNameItemNotification, _impl_.item_def_index_) + + sizeof(CMsgGCNameItemNotification::_impl_.item_def_index_) + - PROTOBUF_FIELD_OFFSET(CMsgGCNameItemNotification, _impl_.player_steamid_)>( + reinterpret_cast(&_impl_.player_steamid_), + reinterpret_cast(&other->_impl_.player_steamid_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCReportAbuse::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCNameItemNotification::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[45]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[45]); } // =================================================================== -class CMsgGCReportAbuseResponse::_Internal { +class CMsgGCClientDisplayNotification::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_target_steam_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_result(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_error_message(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_notification_title_localization_key(HasBits* has_bits) { (*has_bits)[0] |= 1u; } + static void set_has_notification_body_localization_key(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } }; -CMsgGCReportAbuseResponse::CMsgGCReportAbuseResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCClientDisplayNotification::CMsgGCClientDisplayNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCReportAbuseResponse) + // @@protoc_insertion_point(arena_constructor:CMsgGCClientDisplayNotification) } -CMsgGCReportAbuseResponse::CMsgGCReportAbuseResponse(const CMsgGCReportAbuseResponse& from) +CMsgGCClientDisplayNotification::CMsgGCClientDisplayNotification(const CMsgGCClientDisplayNotification& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCReportAbuseResponse* const _this = this; (void)_this; + CMsgGCClientDisplayNotification* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.error_message_){} - , decltype(_impl_.target_steam_id_){} - , decltype(_impl_.result_){}}; + , decltype(_impl_.body_substring_keys_){from._impl_.body_substring_keys_} + , decltype(_impl_.body_substring_values_){from._impl_.body_substring_values_} + , decltype(_impl_.notification_title_localization_key_){} + , decltype(_impl_.notification_body_localization_key_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.error_message_.InitDefault(); + _impl_.notification_title_localization_key_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.error_message_.Set("", GetArenaForAllocation()); + _impl_.notification_title_localization_key_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_error_message()) { - _this->_impl_.error_message_.Set(from._internal_error_message(), + if (from._internal_has_notification_title_localization_key()) { + _this->_impl_.notification_title_localization_key_.Set(from._internal_notification_title_localization_key(), _this->GetArenaForAllocation()); } - ::memcpy(&_impl_.target_steam_id_, &from._impl_.target_steam_id_, - static_cast(reinterpret_cast(&_impl_.result_) - - reinterpret_cast(&_impl_.target_steam_id_)) + sizeof(_impl_.result_)); - // @@protoc_insertion_point(copy_constructor:CMsgGCReportAbuseResponse) + _impl_.notification_body_localization_key_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.notification_body_localization_key_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_notification_body_localization_key()) { + _this->_impl_.notification_body_localization_key_.Set(from._internal_notification_body_localization_key(), + _this->GetArenaForAllocation()); + } + // @@protoc_insertion_point(copy_constructor:CMsgGCClientDisplayNotification) } -inline void CMsgGCReportAbuseResponse::SharedCtor( +inline void CMsgGCClientDisplayNotification::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.error_message_){} - , decltype(_impl_.target_steam_id_){uint64_t{0u}} - , decltype(_impl_.result_){0u} + , decltype(_impl_.body_substring_keys_){arena} + , decltype(_impl_.body_substring_values_){arena} + , decltype(_impl_.notification_title_localization_key_){} + , decltype(_impl_.notification_body_localization_key_){} }; - _impl_.error_message_.InitDefault(); + _impl_.notification_title_localization_key_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.error_message_.Set("", GetArenaForAllocation()); + _impl_.notification_title_localization_key_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.notification_body_localization_key_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.notification_body_localization_key_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCReportAbuseResponse::~CMsgGCReportAbuseResponse() { - // @@protoc_insertion_point(destructor:CMsgGCReportAbuseResponse) +CMsgGCClientDisplayNotification::~CMsgGCClientDisplayNotification() { + // @@protoc_insertion_point(destructor:CMsgGCClientDisplayNotification) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -16451,68 +16765,101 @@ CMsgGCReportAbuseResponse::~CMsgGCReportAbuseResponse() { SharedDtor(); } -inline void CMsgGCReportAbuseResponse::SharedDtor() { +inline void CMsgGCClientDisplayNotification::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.error_message_.Destroy(); + _impl_.body_substring_keys_.~RepeatedPtrField(); + _impl_.body_substring_values_.~RepeatedPtrField(); + _impl_.notification_title_localization_key_.Destroy(); + _impl_.notification_body_localization_key_.Destroy(); } -void CMsgGCReportAbuseResponse::SetCachedSize(int size) const { +void CMsgGCClientDisplayNotification::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCReportAbuseResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCReportAbuseResponse) +void CMsgGCClientDisplayNotification::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCClientDisplayNotification) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + _impl_.body_substring_keys_.Clear(); + _impl_.body_substring_values_.Clear(); cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.error_message_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000006u) { - ::memset(&_impl_.target_steam_id_, 0, static_cast( - reinterpret_cast(&_impl_.result_) - - reinterpret_cast(&_impl_.target_steam_id_)) + sizeof(_impl_.result_)); + if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000001u) { + _impl_.notification_title_localization_key_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000002u) { + _impl_.notification_body_localization_key_.ClearNonDefaultToEmpty(); + } } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCReportAbuseResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCClientDisplayNotification::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional fixed64 target_steam_id = 1; + // optional string notification_title_localization_key = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 9)) { - _Internal::set_has_target_steam_id(&has_bits); - _impl_.target_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint64_t); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { + auto str = _internal_mutable_notification_title_localization_key(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCClientDisplayNotification.notification_title_localization_key"); + #endif // !NDEBUG } else goto handle_unusual; continue; - // optional uint32 result = 2; + // optional string notification_body_localization_key = 2; case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_result(&has_bits); - _impl_.result_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 18)) { + auto str = _internal_mutable_notification_body_localization_key(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCClientDisplayNotification.notification_body_localization_key"); + #endif // !NDEBUG } else goto handle_unusual; continue; - // optional string error_message = 3; + // repeated string body_substring_keys = 3; case 3: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 26)) { - auto str = _internal_mutable_error_message(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); - CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCReportAbuseResponse.error_message"); - #endif // !NDEBUG + ptr -= 1; + do { + ptr += 1; + auto str = _internal_add_body_substring_keys(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCClientDisplayNotification.body_substring_keys"); + #endif // !NDEBUG + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<26>(ptr)); + } else + goto handle_unusual; + continue; + // repeated string body_substring_values = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 34)) { + ptr -= 1; + do { + ptr += 1; + auto str = _internal_add_body_substring_values(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCClientDisplayNotification.body_substring_values"); + #endif // !NDEBUG + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<34>(ptr)); } else goto handle_unusual; continue; @@ -16540,206 +16887,211 @@ const char* CMsgGCReportAbuseResponse::_InternalParse(const char* ptr, ::_pbi::P #undef CHK_ } -uint8_t* CMsgGCReportAbuseResponse::_InternalSerialize( +uint8_t* CMsgGCClientDisplayNotification::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCReportAbuseResponse) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCClientDisplayNotification) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional fixed64 target_steam_id = 1; + // optional string notification_title_localization_key = 1; + if (cached_has_bits & 0x00000001u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_notification_title_localization_key().data(), static_cast(this->_internal_notification_title_localization_key().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGCClientDisplayNotification.notification_title_localization_key"); + target = stream->WriteStringMaybeAliased( + 1, this->_internal_notification_title_localization_key(), target); + } + + // optional string notification_body_localization_key = 2; if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed64ToArray(1, this->_internal_target_steam_id(), target); + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_notification_body_localization_key().data(), static_cast(this->_internal_notification_body_localization_key().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGCClientDisplayNotification.notification_body_localization_key"); + target = stream->WriteStringMaybeAliased( + 2, this->_internal_notification_body_localization_key(), target); } - // optional uint32 result = 2; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_result(), target); + // repeated string body_substring_keys = 3; + for (int i = 0, n = this->_internal_body_substring_keys_size(); i < n; i++) { + const auto& s = this->_internal_body_substring_keys(i); + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + s.data(), static_cast(s.length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGCClientDisplayNotification.body_substring_keys"); + target = stream->WriteString(3, s, target); } - // optional string error_message = 3; - if (cached_has_bits & 0x00000001u) { + // repeated string body_substring_values = 4; + for (int i = 0, n = this->_internal_body_substring_values_size(); i < n; i++) { + const auto& s = this->_internal_body_substring_values(i); ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_error_message().data(), static_cast(this->_internal_error_message().length()), + s.data(), static_cast(s.length()), ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCReportAbuseResponse.error_message"); - target = stream->WriteStringMaybeAliased( - 3, this->_internal_error_message(), target); + "CMsgGCClientDisplayNotification.body_substring_values"); + target = stream->WriteString(4, s, target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCReportAbuseResponse) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCClientDisplayNotification) return target; } -size_t CMsgGCReportAbuseResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCReportAbuseResponse) +size_t CMsgGCClientDisplayNotification::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCClientDisplayNotification) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // repeated string body_substring_keys = 3; + total_size += 1 * + ::PROTOBUF_NAMESPACE_ID::internal::FromIntSize(_impl_.body_substring_keys_.size()); + for (int i = 0, n = _impl_.body_substring_keys_.size(); i < n; i++) { + total_size += ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + _impl_.body_substring_keys_.Get(i)); + } + + // repeated string body_substring_values = 4; + total_size += 1 * + ::PROTOBUF_NAMESPACE_ID::internal::FromIntSize(_impl_.body_substring_values_.size()); + for (int i = 0, n = _impl_.body_substring_values_.size(); i < n; i++) { + total_size += ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + _impl_.body_substring_values_.Get(i)); + } + cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - // optional string error_message = 3; + if (cached_has_bits & 0x00000003u) { + // optional string notification_title_localization_key = 1; if (cached_has_bits & 0x00000001u) { total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_error_message()); + this->_internal_notification_title_localization_key()); } - // optional fixed64 target_steam_id = 1; + // optional string notification_body_localization_key = 2; if (cached_has_bits & 0x00000002u) { - total_size += 1 + 8; - } - - // optional uint32 result = 2; - if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_result()); + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_notification_body_localization_key()); } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCReportAbuseResponse::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCClientDisplayNotification::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCReportAbuseResponse::MergeImpl + CMsgGCClientDisplayNotification::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCReportAbuseResponse::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCClientDisplayNotification::GetClassData() const { return &_class_data_; } -void CMsgGCReportAbuseResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCReportAbuseResponse) +void CMsgGCClientDisplayNotification::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCClientDisplayNotification) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; + _this->_impl_.body_substring_keys_.MergeFrom(from._impl_.body_substring_keys_); + _this->_impl_.body_substring_values_.MergeFrom(from._impl_.body_substring_values_); cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_internal_set_error_message(from._internal_error_message()); + _this->_internal_set_notification_title_localization_key(from._internal_notification_title_localization_key()); } if (cached_has_bits & 0x00000002u) { - _this->_impl_.target_steam_id_ = from._impl_.target_steam_id_; - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.result_ = from._impl_.result_; + _this->_internal_set_notification_body_localization_key(from._internal_notification_body_localization_key()); } - _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCReportAbuseResponse::CopyFrom(const CMsgGCReportAbuseResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCReportAbuseResponse) +void CMsgGCClientDisplayNotification::CopyFrom(const CMsgGCClientDisplayNotification& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCClientDisplayNotification) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCReportAbuseResponse::IsInitialized() const { +bool CMsgGCClientDisplayNotification::IsInitialized() const { return true; } -void CMsgGCReportAbuseResponse::InternalSwap(CMsgGCReportAbuseResponse* other) { +void CMsgGCClientDisplayNotification::InternalSwap(CMsgGCClientDisplayNotification* other) { using std::swap; auto* lhs_arena = GetArenaForAllocation(); auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + _impl_.body_substring_keys_.InternalSwap(&other->_impl_.body_substring_keys_); + _impl_.body_substring_values_.InternalSwap(&other->_impl_.body_substring_values_); ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.error_message_, lhs_arena, - &other->_impl_.error_message_, rhs_arena + &_impl_.notification_title_localization_key_, lhs_arena, + &other->_impl_.notification_title_localization_key_, rhs_arena + ); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.notification_body_localization_key_, lhs_arena, + &other->_impl_.notification_body_localization_key_, rhs_arena ); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgGCReportAbuseResponse, _impl_.result_) - + sizeof(CMsgGCReportAbuseResponse::_impl_.result_) - - PROTOBUF_FIELD_OFFSET(CMsgGCReportAbuseResponse, _impl_.target_steam_id_)>( - reinterpret_cast(&_impl_.target_steam_id_), - reinterpret_cast(&other->_impl_.target_steam_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCReportAbuseResponse::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCClientDisplayNotification::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[46]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[46]); } // =================================================================== -class CMsgGCNameItemNotification::_Internal { +class CMsgGCShowItemsPickedUp::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = decltype(std::declval()._impl_._has_bits_); static void set_has_player_steamid(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_item_def_index(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_item_name_custom(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCNameItemNotification::CMsgGCNameItemNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCShowItemsPickedUp::CMsgGCShowItemsPickedUp(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCNameItemNotification) + // @@protoc_insertion_point(arena_constructor:CMsgGCShowItemsPickedUp) } -CMsgGCNameItemNotification::CMsgGCNameItemNotification(const CMsgGCNameItemNotification& from) +CMsgGCShowItemsPickedUp::CMsgGCShowItemsPickedUp(const CMsgGCShowItemsPickedUp& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCNameItemNotification* const _this = this; (void)_this; + CMsgGCShowItemsPickedUp* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.item_name_custom_){} - , decltype(_impl_.player_steamid_){} - , decltype(_impl_.item_def_index_){}}; + , decltype(_impl_.player_steamid_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.item_name_custom_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.item_name_custom_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_item_name_custom()) { - _this->_impl_.item_name_custom_.Set(from._internal_item_name_custom(), - _this->GetArenaForAllocation()); - } - ::memcpy(&_impl_.player_steamid_, &from._impl_.player_steamid_, - static_cast(reinterpret_cast(&_impl_.item_def_index_) - - reinterpret_cast(&_impl_.player_steamid_)) + sizeof(_impl_.item_def_index_)); - // @@protoc_insertion_point(copy_constructor:CMsgGCNameItemNotification) + _this->_impl_.player_steamid_ = from._impl_.player_steamid_; + // @@protoc_insertion_point(copy_constructor:CMsgGCShowItemsPickedUp) } -inline void CMsgGCNameItemNotification::SharedCtor( +inline void CMsgGCShowItemsPickedUp::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.item_name_custom_){} , decltype(_impl_.player_steamid_){uint64_t{0u}} - , decltype(_impl_.item_def_index_){0u} }; - _impl_.item_name_custom_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.item_name_custom_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCNameItemNotification::~CMsgGCNameItemNotification() { - // @@protoc_insertion_point(destructor:CMsgGCNameItemNotification) +CMsgGCShowItemsPickedUp::~CMsgGCShowItemsPickedUp() { + // @@protoc_insertion_point(destructor:CMsgGCShowItemsPickedUp) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -16747,35 +17099,26 @@ CMsgGCNameItemNotification::~CMsgGCNameItemNotification() { SharedDtor(); } -inline void CMsgGCNameItemNotification::SharedDtor() { +inline void CMsgGCShowItemsPickedUp::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.item_name_custom_.Destroy(); } -void CMsgGCNameItemNotification::SetCachedSize(int size) const { +void CMsgGCShowItemsPickedUp::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCNameItemNotification::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCNameItemNotification) +void CMsgGCShowItemsPickedUp::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCShowItemsPickedUp) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.item_name_custom_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000006u) { - ::memset(&_impl_.player_steamid_, 0, static_cast( - reinterpret_cast(&_impl_.item_def_index_) - - reinterpret_cast(&_impl_.player_steamid_)) + sizeof(_impl_.item_def_index_)); - } + _impl_.player_steamid_ = uint64_t{0u}; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCNameItemNotification::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCShowItemsPickedUp::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { @@ -16791,27 +17134,6 @@ const char* CMsgGCNameItemNotification::_InternalParse(const char* ptr, ::_pbi:: } else goto handle_unusual; continue; - // optional uint32 item_def_index = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_item_def_index(&has_bits); - _impl_.item_def_index_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional string item_name_custom = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 26)) { - auto str = _internal_mutable_item_name_custom(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); - CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCNameItemNotification.item_name_custom"); - #endif // !NDEBUG - } else - goto handle_unusual; - continue; default: goto handle_unusual; } // switch @@ -16836,214 +17158,148 @@ const char* CMsgGCNameItemNotification::_InternalParse(const char* ptr, ::_pbi:: #undef CHK_ } -uint8_t* CMsgGCNameItemNotification::_InternalSerialize( +uint8_t* CMsgGCShowItemsPickedUp::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCNameItemNotification) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCShowItemsPickedUp) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; // optional fixed64 player_steamid = 1; - if (cached_has_bits & 0x00000002u) { + if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteFixed64ToArray(1, this->_internal_player_steamid(), target); } - // optional uint32 item_def_index = 2; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_item_def_index(), target); - } - - // optional string item_name_custom = 3; - if (cached_has_bits & 0x00000001u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_item_name_custom().data(), static_cast(this->_internal_item_name_custom().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCNameItemNotification.item_name_custom"); - target = stream->WriteStringMaybeAliased( - 3, this->_internal_item_name_custom(), target); - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCNameItemNotification) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCShowItemsPickedUp) return target; } -size_t CMsgGCNameItemNotification::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCNameItemNotification) +size_t CMsgGCShowItemsPickedUp::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCShowItemsPickedUp) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // optional fixed64 player_steamid = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - // optional string item_name_custom = 3; - if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_item_name_custom()); - } - - // optional fixed64 player_steamid = 1; - if (cached_has_bits & 0x00000002u) { - total_size += 1 + 8; - } - - // optional uint32 item_def_index = 2; - if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_item_def_index()); - } - + if (cached_has_bits & 0x00000001u) { + total_size += 1 + 8; } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCNameItemNotification::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCShowItemsPickedUp::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCNameItemNotification::MergeImpl + CMsgGCShowItemsPickedUp::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCNameItemNotification::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCShowItemsPickedUp::GetClassData() const { return &_class_data_; } -void CMsgGCNameItemNotification::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCNameItemNotification) +void CMsgGCShowItemsPickedUp::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCShowItemsPickedUp) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - _this->_internal_set_item_name_custom(from._internal_item_name_custom()); - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.player_steamid_ = from._impl_.player_steamid_; - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.item_def_index_ = from._impl_.item_def_index_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; + if (from._internal_has_player_steamid()) { + _this->_internal_set_player_steamid(from._internal_player_steamid()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCNameItemNotification::CopyFrom(const CMsgGCNameItemNotification& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCNameItemNotification) +void CMsgGCShowItemsPickedUp::CopyFrom(const CMsgGCShowItemsPickedUp& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCShowItemsPickedUp) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCNameItemNotification::IsInitialized() const { +bool CMsgGCShowItemsPickedUp::IsInitialized() const { return true; } -void CMsgGCNameItemNotification::InternalSwap(CMsgGCNameItemNotification* other) { +void CMsgGCShowItemsPickedUp::InternalSwap(CMsgGCShowItemsPickedUp* other) { using std::swap; - auto* lhs_arena = GetArenaForAllocation(); - auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.item_name_custom_, lhs_arena, - &other->_impl_.item_name_custom_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgGCNameItemNotification, _impl_.item_def_index_) - + sizeof(CMsgGCNameItemNotification::_impl_.item_def_index_) - - PROTOBUF_FIELD_OFFSET(CMsgGCNameItemNotification, _impl_.player_steamid_)>( - reinterpret_cast(&_impl_.player_steamid_), - reinterpret_cast(&other->_impl_.player_steamid_)); + swap(_impl_.player_steamid_, other->_impl_.player_steamid_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCNameItemNotification::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCShowItemsPickedUp::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[47]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[47]); } // =================================================================== -class CMsgGCClientDisplayNotification::_Internal { +class CMsgGCIncrementKillCountResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_notification_title_localization_key(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_killer_account_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_notification_body_localization_key(HasBits* has_bits) { + static void set_has_num_kills(HasBits* has_bits) { (*has_bits)[0] |= 2u; } + static void set_has_item_def(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } + static void set_has_level_type(HasBits* has_bits) { + (*has_bits)[0] |= 8u; + } }; -CMsgGCClientDisplayNotification::CMsgGCClientDisplayNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCIncrementKillCountResponse::CMsgGCIncrementKillCountResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCClientDisplayNotification) + // @@protoc_insertion_point(arena_constructor:CMsgGCIncrementKillCountResponse) } -CMsgGCClientDisplayNotification::CMsgGCClientDisplayNotification(const CMsgGCClientDisplayNotification& from) +CMsgGCIncrementKillCountResponse::CMsgGCIncrementKillCountResponse(const CMsgGCIncrementKillCountResponse& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCClientDisplayNotification* const _this = this; (void)_this; + CMsgGCIncrementKillCountResponse* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.body_substring_keys_){from._impl_.body_substring_keys_} - , decltype(_impl_.body_substring_values_){from._impl_.body_substring_values_} - , decltype(_impl_.notification_title_localization_key_){} - , decltype(_impl_.notification_body_localization_key_){}}; + , decltype(_impl_.killer_account_id_){} + , decltype(_impl_.num_kills_){} + , decltype(_impl_.item_def_){} + , decltype(_impl_.level_type_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.notification_title_localization_key_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.notification_title_localization_key_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_notification_title_localization_key()) { - _this->_impl_.notification_title_localization_key_.Set(from._internal_notification_title_localization_key(), - _this->GetArenaForAllocation()); - } - _impl_.notification_body_localization_key_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.notification_body_localization_key_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_notification_body_localization_key()) { - _this->_impl_.notification_body_localization_key_.Set(from._internal_notification_body_localization_key(), - _this->GetArenaForAllocation()); - } - // @@protoc_insertion_point(copy_constructor:CMsgGCClientDisplayNotification) + ::memcpy(&_impl_.killer_account_id_, &from._impl_.killer_account_id_, + static_cast(reinterpret_cast(&_impl_.level_type_) - + reinterpret_cast(&_impl_.killer_account_id_)) + sizeof(_impl_.level_type_)); + // @@protoc_insertion_point(copy_constructor:CMsgGCIncrementKillCountResponse) } -inline void CMsgGCClientDisplayNotification::SharedCtor( +inline void CMsgGCIncrementKillCountResponse::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.body_substring_keys_){arena} - , decltype(_impl_.body_substring_values_){arena} - , decltype(_impl_.notification_title_localization_key_){} - , decltype(_impl_.notification_body_localization_key_){} + , decltype(_impl_.killer_account_id_){0u} + , decltype(_impl_.num_kills_){0u} + , decltype(_impl_.item_def_){0u} + , decltype(_impl_.level_type_){0u} }; - _impl_.notification_title_localization_key_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.notification_title_localization_key_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.notification_body_localization_key_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.notification_body_localization_key_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCClientDisplayNotification::~CMsgGCClientDisplayNotification() { - // @@protoc_insertion_point(destructor:CMsgGCClientDisplayNotification) +CMsgGCIncrementKillCountResponse::~CMsgGCIncrementKillCountResponse() { + // @@protoc_insertion_point(destructor:CMsgGCIncrementKillCountResponse) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -17051,101 +17307,70 @@ CMsgGCClientDisplayNotification::~CMsgGCClientDisplayNotification() { SharedDtor(); } -inline void CMsgGCClientDisplayNotification::SharedDtor() { +inline void CMsgGCIncrementKillCountResponse::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.body_substring_keys_.~RepeatedPtrField(); - _impl_.body_substring_values_.~RepeatedPtrField(); - _impl_.notification_title_localization_key_.Destroy(); - _impl_.notification_body_localization_key_.Destroy(); } -void CMsgGCClientDisplayNotification::SetCachedSize(int size) const { +void CMsgGCIncrementKillCountResponse::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCClientDisplayNotification::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCClientDisplayNotification) +void CMsgGCIncrementKillCountResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCIncrementKillCountResponse) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.body_substring_keys_.Clear(); - _impl_.body_substring_values_.Clear(); cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _impl_.notification_title_localization_key_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000002u) { - _impl_.notification_body_localization_key_.ClearNonDefaultToEmpty(); - } + if (cached_has_bits & 0x0000000fu) { + ::memset(&_impl_.killer_account_id_, 0, static_cast( + reinterpret_cast(&_impl_.level_type_) - + reinterpret_cast(&_impl_.killer_account_id_)) + sizeof(_impl_.level_type_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCClientDisplayNotification::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCIncrementKillCountResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional string notification_title_localization_key = 1; + // optional uint32 killer_account_id = 1 [(.key_field) = true]; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - auto str = _internal_mutable_notification_title_localization_key(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_killer_account_id(&has_bits); + _impl_.killer_account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCClientDisplayNotification.notification_title_localization_key"); - #endif // !NDEBUG } else goto handle_unusual; continue; - // optional string notification_body_localization_key = 2; + // optional uint32 num_kills = 2; case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 18)) { - auto str = _internal_mutable_notification_body_localization_key(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_num_kills(&has_bits); + _impl_.num_kills_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCClientDisplayNotification.notification_body_localization_key"); - #endif // !NDEBUG } else goto handle_unusual; continue; - // repeated string body_substring_keys = 3; + // optional uint32 item_def = 3; case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 26)) { - ptr -= 1; - do { - ptr += 1; - auto str = _internal_add_body_substring_keys(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); - CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCClientDisplayNotification.body_substring_keys"); - #endif // !NDEBUG - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<26>(ptr)); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { + _Internal::set_has_item_def(&has_bits); + _impl_.item_def_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); } else goto handle_unusual; continue; - // repeated string body_substring_values = 4; + // optional uint32 level_type = 4; case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 34)) { - ptr -= 1; - do { - ptr += 1; - auto str = _internal_add_body_substring_values(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); - CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCClientDisplayNotification.body_substring_values"); - #endif // !NDEBUG - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<34>(ptr)); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { + _Internal::set_has_level_type(&has_bits); + _impl_.level_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); } else goto handle_unusual; continue; @@ -17173,211 +17398,211 @@ const char* CMsgGCClientDisplayNotification::_InternalParse(const char* ptr, ::_ #undef CHK_ } -uint8_t* CMsgGCClientDisplayNotification::_InternalSerialize( +uint8_t* CMsgGCIncrementKillCountResponse::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCClientDisplayNotification) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCIncrementKillCountResponse) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional string notification_title_localization_key = 1; + // optional uint32 killer_account_id = 1 [(.key_field) = true]; if (cached_has_bits & 0x00000001u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_notification_title_localization_key().data(), static_cast(this->_internal_notification_title_localization_key().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCClientDisplayNotification.notification_title_localization_key"); - target = stream->WriteStringMaybeAliased( - 1, this->_internal_notification_title_localization_key(), target); + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_killer_account_id(), target); } - // optional string notification_body_localization_key = 2; + // optional uint32 num_kills = 2; if (cached_has_bits & 0x00000002u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_notification_body_localization_key().data(), static_cast(this->_internal_notification_body_localization_key().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCClientDisplayNotification.notification_body_localization_key"); - target = stream->WriteStringMaybeAliased( - 2, this->_internal_notification_body_localization_key(), target); + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_num_kills(), target); } - // repeated string body_substring_keys = 3; - for (int i = 0, n = this->_internal_body_substring_keys_size(); i < n; i++) { - const auto& s = this->_internal_body_substring_keys(i); - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - s.data(), static_cast(s.length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCClientDisplayNotification.body_substring_keys"); - target = stream->WriteString(3, s, target); + // optional uint32 item_def = 3; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_item_def(), target); } - // repeated string body_substring_values = 4; - for (int i = 0, n = this->_internal_body_substring_values_size(); i < n; i++) { - const auto& s = this->_internal_body_substring_values(i); - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - s.data(), static_cast(s.length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCClientDisplayNotification.body_substring_values"); - target = stream->WriteString(4, s, target); + // optional uint32 level_type = 4; + if (cached_has_bits & 0x00000008u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_level_type(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCClientDisplayNotification) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCIncrementKillCountResponse) return target; } -size_t CMsgGCClientDisplayNotification::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCClientDisplayNotification) +size_t CMsgGCIncrementKillCountResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCIncrementKillCountResponse) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated string body_substring_keys = 3; - total_size += 1 * - ::PROTOBUF_NAMESPACE_ID::internal::FromIntSize(_impl_.body_substring_keys_.size()); - for (int i = 0, n = _impl_.body_substring_keys_.size(); i < n; i++) { - total_size += ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - _impl_.body_substring_keys_.Get(i)); - } - - // repeated string body_substring_values = 4; - total_size += 1 * - ::PROTOBUF_NAMESPACE_ID::internal::FromIntSize(_impl_.body_substring_values_.size()); - for (int i = 0, n = _impl_.body_substring_values_.size(); i < n; i++) { - total_size += ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - _impl_.body_substring_values_.Get(i)); - } - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - // optional string notification_title_localization_key = 1; + if (cached_has_bits & 0x0000000fu) { + // optional uint32 killer_account_id = 1 [(.key_field) = true]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_notification_title_localization_key()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_killer_account_id()); } - // optional string notification_body_localization_key = 2; + // optional uint32 num_kills = 2; if (cached_has_bits & 0x00000002u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_notification_body_localization_key()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_num_kills()); + } + + // optional uint32 item_def = 3; + if (cached_has_bits & 0x00000004u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_item_def()); + } + + // optional uint32 level_type = 4; + if (cached_has_bits & 0x00000008u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_level_type()); } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCClientDisplayNotification::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCIncrementKillCountResponse::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCClientDisplayNotification::MergeImpl + CMsgGCIncrementKillCountResponse::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCClientDisplayNotification::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCIncrementKillCountResponse::GetClassData() const { return &_class_data_; } -void CMsgGCClientDisplayNotification::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCClientDisplayNotification) +void CMsgGCIncrementKillCountResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCIncrementKillCountResponse) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - _this->_impl_.body_substring_keys_.MergeFrom(from._impl_.body_substring_keys_); - _this->_impl_.body_substring_values_.MergeFrom(from._impl_.body_substring_values_); cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x0000000fu) { if (cached_has_bits & 0x00000001u) { - _this->_internal_set_notification_title_localization_key(from._internal_notification_title_localization_key()); + _this->_impl_.killer_account_id_ = from._impl_.killer_account_id_; } if (cached_has_bits & 0x00000002u) { - _this->_internal_set_notification_body_localization_key(from._internal_notification_body_localization_key()); + _this->_impl_.num_kills_ = from._impl_.num_kills_; + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.item_def_ = from._impl_.item_def_; + } + if (cached_has_bits & 0x00000008u) { + _this->_impl_.level_type_ = from._impl_.level_type_; } + _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCClientDisplayNotification::CopyFrom(const CMsgGCClientDisplayNotification& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCClientDisplayNotification) +void CMsgGCIncrementKillCountResponse::CopyFrom(const CMsgGCIncrementKillCountResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCIncrementKillCountResponse) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCClientDisplayNotification::IsInitialized() const { +bool CMsgGCIncrementKillCountResponse::IsInitialized() const { return true; } -void CMsgGCClientDisplayNotification::InternalSwap(CMsgGCClientDisplayNotification* other) { +void CMsgGCIncrementKillCountResponse::InternalSwap(CMsgGCIncrementKillCountResponse* other) { using std::swap; - auto* lhs_arena = GetArenaForAllocation(); - auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.body_substring_keys_.InternalSwap(&other->_impl_.body_substring_keys_); - _impl_.body_substring_values_.InternalSwap(&other->_impl_.body_substring_values_); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.notification_title_localization_key_, lhs_arena, - &other->_impl_.notification_title_localization_key_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.notification_body_localization_key_, lhs_arena, - &other->_impl_.notification_body_localization_key_, rhs_arena - ); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgGCIncrementKillCountResponse, _impl_.level_type_) + + sizeof(CMsgGCIncrementKillCountResponse::_impl_.level_type_) + - PROTOBUF_FIELD_OFFSET(CMsgGCIncrementKillCountResponse, _impl_.killer_account_id_)>( + reinterpret_cast(&_impl_.killer_account_id_), + reinterpret_cast(&other->_impl_.killer_account_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCClientDisplayNotification::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCIncrementKillCountResponse::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[48]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[48]); } // =================================================================== -class CMsgGCShowItemsPickedUp::_Internal { +class CSOEconItemDropRateBonus::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_player_steamid(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_account_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } + static void set_has_expiration_date(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_bonus(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } + static void set_has_bonus_count(HasBits* has_bits) { + (*has_bits)[0] |= 8u; + } + static void set_has_item_id(HasBits* has_bits) { + (*has_bits)[0] |= 16u; + } + static void set_has_def_index(HasBits* has_bits) { + (*has_bits)[0] |= 32u; + } }; -CMsgGCShowItemsPickedUp::CMsgGCShowItemsPickedUp(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CSOEconItemDropRateBonus::CSOEconItemDropRateBonus(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCShowItemsPickedUp) + // @@protoc_insertion_point(arena_constructor:CSOEconItemDropRateBonus) } -CMsgGCShowItemsPickedUp::CMsgGCShowItemsPickedUp(const CMsgGCShowItemsPickedUp& from) +CSOEconItemDropRateBonus::CSOEconItemDropRateBonus(const CSOEconItemDropRateBonus& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCShowItemsPickedUp* const _this = this; (void)_this; + CSOEconItemDropRateBonus* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.player_steamid_){}}; + , decltype(_impl_.account_id_){} + , decltype(_impl_.expiration_date_){} + , decltype(_impl_.bonus_){} + , decltype(_impl_.bonus_count_){} + , decltype(_impl_.item_id_){} + , decltype(_impl_.def_index_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.player_steamid_ = from._impl_.player_steamid_; - // @@protoc_insertion_point(copy_constructor:CMsgGCShowItemsPickedUp) + ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, + static_cast(reinterpret_cast(&_impl_.def_index_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.def_index_)); + // @@protoc_insertion_point(copy_constructor:CSOEconItemDropRateBonus) } -inline void CMsgGCShowItemsPickedUp::SharedCtor( +inline void CSOEconItemDropRateBonus::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.player_steamid_){uint64_t{0u}} + , decltype(_impl_.account_id_){0u} + , decltype(_impl_.expiration_date_){0u} + , decltype(_impl_.bonus_){0} + , decltype(_impl_.bonus_count_){0u} + , decltype(_impl_.item_id_){uint64_t{0u}} + , decltype(_impl_.def_index_){0u} }; } -CMsgGCShowItemsPickedUp::~CMsgGCShowItemsPickedUp() { - // @@protoc_insertion_point(destructor:CMsgGCShowItemsPickedUp) +CSOEconItemDropRateBonus::~CSOEconItemDropRateBonus() { + // @@protoc_insertion_point(destructor:CSOEconItemDropRateBonus) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -17385,38 +17610,88 @@ CMsgGCShowItemsPickedUp::~CMsgGCShowItemsPickedUp() { SharedDtor(); } -inline void CMsgGCShowItemsPickedUp::SharedDtor() { +inline void CSOEconItemDropRateBonus::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgGCShowItemsPickedUp::SetCachedSize(int size) const { +void CSOEconItemDropRateBonus::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCShowItemsPickedUp::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCShowItemsPickedUp) +void CSOEconItemDropRateBonus::Clear() { +// @@protoc_insertion_point(message_clear_start:CSOEconItemDropRateBonus) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.player_steamid_ = uint64_t{0u}; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x0000003fu) { + ::memset(&_impl_.account_id_, 0, static_cast( + reinterpret_cast(&_impl_.def_index_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.def_index_)); + } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCShowItemsPickedUp::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CSOEconItemDropRateBonus::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional fixed64 player_steamid = 1; + // optional uint32 account_id = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 9)) { - _Internal::set_has_player_steamid(&has_bits); - _impl_.player_steamid_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint64_t); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_account_id(&has_bits); + _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional fixed32 expiration_date = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 21)) { + _Internal::set_has_expiration_date(&has_bits); + _impl_.expiration_date_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint32_t); + } else + goto handle_unusual; + continue; + // optional float bonus = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 29)) { + _Internal::set_has_bonus(&has_bits); + _impl_.bonus_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional uint32 bonus_count = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { + _Internal::set_has_bonus_count(&has_bits); + _impl_.bonus_count_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint64 item_id = 5; + case 5: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 40)) { + _Internal::set_has_item_id(&has_bits); + _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint32 def_index = 6; + case 6: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 48)) { + _Internal::set_has_def_index(&has_bits); + _impl_.def_index_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); } else goto handle_unusual; continue; @@ -17444,148 +17719,229 @@ const char* CMsgGCShowItemsPickedUp::_InternalParse(const char* ptr, ::_pbi::Par #undef CHK_ } -uint8_t* CMsgGCShowItemsPickedUp::_InternalSerialize( +uint8_t* CSOEconItemDropRateBonus::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCShowItemsPickedUp) + // @@protoc_insertion_point(serialize_to_array_start:CSOEconItemDropRateBonus) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional fixed64 player_steamid = 1; + // optional uint32 account_id = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed64ToArray(1, this->_internal_player_steamid(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); + } + + // optional fixed32 expiration_date = 2; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed32ToArray(2, this->_internal_expiration_date(), target); + } + + // optional float bonus = 3; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(3, this->_internal_bonus(), target); + } + + // optional uint32 bonus_count = 4; + if (cached_has_bits & 0x00000008u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_bonus_count(), target); + } + + // optional uint64 item_id = 5; + if (cached_has_bits & 0x00000010u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(5, this->_internal_item_id(), target); + } + + // optional uint32 def_index = 6; + if (cached_has_bits & 0x00000020u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(6, this->_internal_def_index(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCShowItemsPickedUp) + // @@protoc_insertion_point(serialize_to_array_end:CSOEconItemDropRateBonus) return target; } -size_t CMsgGCShowItemsPickedUp::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCShowItemsPickedUp) +size_t CSOEconItemDropRateBonus::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CSOEconItemDropRateBonus) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional fixed64 player_steamid = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += 1 + 8; - } + if (cached_has_bits & 0x0000003fu) { + // optional uint32 account_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); + } + + // optional fixed32 expiration_date = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + 4; + } + + // optional float bonus = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + 4; + } + + // optional uint32 bonus_count = 4; + if (cached_has_bits & 0x00000008u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_bonus_count()); + } + + // optional uint64 item_id = 5; + if (cached_has_bits & 0x00000010u) { + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); + } + + // optional uint32 def_index = 6; + if (cached_has_bits & 0x00000020u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_def_index()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCShowItemsPickedUp::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconItemDropRateBonus::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCShowItemsPickedUp::MergeImpl + CSOEconItemDropRateBonus::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCShowItemsPickedUp::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconItemDropRateBonus::GetClassData() const { return &_class_data_; } -void CMsgGCShowItemsPickedUp::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCShowItemsPickedUp) +void CSOEconItemDropRateBonus::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconItemDropRateBonus) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (from._internal_has_player_steamid()) { - _this->_internal_set_player_steamid(from._internal_player_steamid()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x0000003fu) { + if (cached_has_bits & 0x00000001u) { + _this->_impl_.account_id_ = from._impl_.account_id_; + } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.expiration_date_ = from._impl_.expiration_date_; + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.bonus_ = from._impl_.bonus_; + } + if (cached_has_bits & 0x00000008u) { + _this->_impl_.bonus_count_ = from._impl_.bonus_count_; + } + if (cached_has_bits & 0x00000010u) { + _this->_impl_.item_id_ = from._impl_.item_id_; + } + if (cached_has_bits & 0x00000020u) { + _this->_impl_.def_index_ = from._impl_.def_index_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCShowItemsPickedUp::CopyFrom(const CMsgGCShowItemsPickedUp& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCShowItemsPickedUp) +void CSOEconItemDropRateBonus::CopyFrom(const CSOEconItemDropRateBonus& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconItemDropRateBonus) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCShowItemsPickedUp::IsInitialized() const { +bool CSOEconItemDropRateBonus::IsInitialized() const { return true; } -void CMsgGCShowItemsPickedUp::InternalSwap(CMsgGCShowItemsPickedUp* other) { +void CSOEconItemDropRateBonus::InternalSwap(CSOEconItemDropRateBonus* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.player_steamid_, other->_impl_.player_steamid_); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CSOEconItemDropRateBonus, _impl_.def_index_) + + sizeof(CSOEconItemDropRateBonus::_impl_.def_index_) + - PROTOBUF_FIELD_OFFSET(CSOEconItemDropRateBonus, _impl_.account_id_)>( + reinterpret_cast(&_impl_.account_id_), + reinterpret_cast(&other->_impl_.account_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCShowItemsPickedUp::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CSOEconItemDropRateBonus::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[49]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[49]); } // =================================================================== -class CMsgGCIncrementKillCountResponse::_Internal { +class CSOEconItemLeagueViewPass::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_killer_account_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_account_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_num_kills(HasBits* has_bits) { + static void set_has_league_id(HasBits* has_bits) { (*has_bits)[0] |= 2u; } - static void set_has_item_def(HasBits* has_bits) { + static void set_has_admin(HasBits* has_bits) { (*has_bits)[0] |= 4u; } - static void set_has_level_type(HasBits* has_bits) { + static void set_has_itemindex(HasBits* has_bits) { (*has_bits)[0] |= 8u; } }; -CMsgGCIncrementKillCountResponse::CMsgGCIncrementKillCountResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CSOEconItemLeagueViewPass::CSOEconItemLeagueViewPass(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCIncrementKillCountResponse) + // @@protoc_insertion_point(arena_constructor:CSOEconItemLeagueViewPass) } -CMsgGCIncrementKillCountResponse::CMsgGCIncrementKillCountResponse(const CMsgGCIncrementKillCountResponse& from) +CSOEconItemLeagueViewPass::CSOEconItemLeagueViewPass(const CSOEconItemLeagueViewPass& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCIncrementKillCountResponse* const _this = this; (void)_this; + CSOEconItemLeagueViewPass* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.killer_account_id_){} - , decltype(_impl_.num_kills_){} - , decltype(_impl_.item_def_){} - , decltype(_impl_.level_type_){}}; + , decltype(_impl_.account_id_){} + , decltype(_impl_.league_id_){} + , decltype(_impl_.admin_){} + , decltype(_impl_.itemindex_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.killer_account_id_, &from._impl_.killer_account_id_, - static_cast(reinterpret_cast(&_impl_.level_type_) - - reinterpret_cast(&_impl_.killer_account_id_)) + sizeof(_impl_.level_type_)); - // @@protoc_insertion_point(copy_constructor:CMsgGCIncrementKillCountResponse) + ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, + static_cast(reinterpret_cast(&_impl_.itemindex_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.itemindex_)); + // @@protoc_insertion_point(copy_constructor:CSOEconItemLeagueViewPass) } -inline void CMsgGCIncrementKillCountResponse::SharedCtor( +inline void CSOEconItemLeagueViewPass::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.killer_account_id_){0u} - , decltype(_impl_.num_kills_){0u} - , decltype(_impl_.item_def_){0u} - , decltype(_impl_.level_type_){0u} + , decltype(_impl_.account_id_){0u} + , decltype(_impl_.league_id_){0u} + , decltype(_impl_.admin_){0u} + , decltype(_impl_.itemindex_){0u} }; } -CMsgGCIncrementKillCountResponse::~CMsgGCIncrementKillCountResponse() { - // @@protoc_insertion_point(destructor:CMsgGCIncrementKillCountResponse) +CSOEconItemLeagueViewPass::~CSOEconItemLeagueViewPass() { + // @@protoc_insertion_point(destructor:CSOEconItemLeagueViewPass) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -17593,69 +17949,69 @@ CMsgGCIncrementKillCountResponse::~CMsgGCIncrementKillCountResponse() { SharedDtor(); } -inline void CMsgGCIncrementKillCountResponse::SharedDtor() { +inline void CSOEconItemLeagueViewPass::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgGCIncrementKillCountResponse::SetCachedSize(int size) const { +void CSOEconItemLeagueViewPass::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCIncrementKillCountResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCIncrementKillCountResponse) +void CSOEconItemLeagueViewPass::Clear() { +// @@protoc_insertion_point(message_clear_start:CSOEconItemLeagueViewPass) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x0000000fu) { - ::memset(&_impl_.killer_account_id_, 0, static_cast( - reinterpret_cast(&_impl_.level_type_) - - reinterpret_cast(&_impl_.killer_account_id_)) + sizeof(_impl_.level_type_)); + ::memset(&_impl_.account_id_, 0, static_cast( + reinterpret_cast(&_impl_.itemindex_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.itemindex_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCIncrementKillCountResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CSOEconItemLeagueViewPass::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 killer_account_id = 1 [(.key_field) = true]; + // optional uint32 account_id = 1 [(.key_field) = true]; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_killer_account_id(&has_bits); - _impl_.killer_account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_account_id(&has_bits); + _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 num_kills = 2; + // optional uint32 league_id = 2 [(.key_field) = true]; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_num_kills(&has_bits); - _impl_.num_kills_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_league_id(&has_bits); + _impl_.league_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 item_def = 3; + // optional uint32 admin = 3; case 3: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_item_def(&has_bits); - _impl_.item_def_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_admin(&has_bits); + _impl_.admin_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 level_type = 4; + // optional uint32 itemindex = 4; case 4: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { - _Internal::set_has_level_type(&has_bits); - _impl_.level_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_itemindex(&has_bits); + _impl_.itemindex_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -17684,47 +18040,47 @@ const char* CMsgGCIncrementKillCountResponse::_InternalParse(const char* ptr, :: #undef CHK_ } -uint8_t* CMsgGCIncrementKillCountResponse::_InternalSerialize( +uint8_t* CSOEconItemLeagueViewPass::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCIncrementKillCountResponse) + // @@protoc_insertion_point(serialize_to_array_start:CSOEconItemLeagueViewPass) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 killer_account_id = 1 [(.key_field) = true]; + // optional uint32 account_id = 1 [(.key_field) = true]; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_killer_account_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); } - // optional uint32 num_kills = 2; + // optional uint32 league_id = 2 [(.key_field) = true]; if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_num_kills(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_league_id(), target); } - // optional uint32 item_def = 3; + // optional uint32 admin = 3; if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_item_def(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_admin(), target); } - // optional uint32 level_type = 4; + // optional uint32 itemindex = 4; if (cached_has_bits & 0x00000008u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_level_type(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_itemindex(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCIncrementKillCountResponse) + // @@protoc_insertion_point(serialize_to_array_end:CSOEconItemLeagueViewPass) return target; } -size_t CMsgGCIncrementKillCountResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCIncrementKillCountResponse) +size_t CSOEconItemLeagueViewPass::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CSOEconItemLeagueViewPass) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -17733,41 +18089,41 @@ size_t CMsgGCIncrementKillCountResponse::ByteSizeLong() const { cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x0000000fu) { - // optional uint32 killer_account_id = 1 [(.key_field) = true]; + // optional uint32 account_id = 1 [(.key_field) = true]; if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_killer_account_id()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); } - // optional uint32 num_kills = 2; + // optional uint32 league_id = 2 [(.key_field) = true]; if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_num_kills()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_league_id()); } - // optional uint32 item_def = 3; + // optional uint32 admin = 3; if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_item_def()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_admin()); } - // optional uint32 level_type = 4; + // optional uint32 itemindex = 4; if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_level_type()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_itemindex()); } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCIncrementKillCountResponse::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconItemLeagueViewPass::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCIncrementKillCountResponse::MergeImpl + CSOEconItemLeagueViewPass::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCIncrementKillCountResponse::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconItemLeagueViewPass::GetClassData() const { return &_class_data_; } -void CMsgGCIncrementKillCountResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCIncrementKillCountResponse) +void CSOEconItemLeagueViewPass::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconItemLeagueViewPass) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; @@ -17775,103 +18131,91 @@ void CMsgGCIncrementKillCountResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Messag cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x0000000fu) { if (cached_has_bits & 0x00000001u) { - _this->_impl_.killer_account_id_ = from._impl_.killer_account_id_; + _this->_impl_.account_id_ = from._impl_.account_id_; } if (cached_has_bits & 0x00000002u) { - _this->_impl_.num_kills_ = from._impl_.num_kills_; + _this->_impl_.league_id_ = from._impl_.league_id_; } if (cached_has_bits & 0x00000004u) { - _this->_impl_.item_def_ = from._impl_.item_def_; + _this->_impl_.admin_ = from._impl_.admin_; } if (cached_has_bits & 0x00000008u) { - _this->_impl_.level_type_ = from._impl_.level_type_; + _this->_impl_.itemindex_ = from._impl_.itemindex_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCIncrementKillCountResponse::CopyFrom(const CMsgGCIncrementKillCountResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCIncrementKillCountResponse) +void CSOEconItemLeagueViewPass::CopyFrom(const CSOEconItemLeagueViewPass& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconItemLeagueViewPass) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCIncrementKillCountResponse::IsInitialized() const { +bool CSOEconItemLeagueViewPass::IsInitialized() const { return true; } -void CMsgGCIncrementKillCountResponse::InternalSwap(CMsgGCIncrementKillCountResponse* other) { +void CSOEconItemLeagueViewPass::InternalSwap(CSOEconItemLeagueViewPass* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgGCIncrementKillCountResponse, _impl_.level_type_) - + sizeof(CMsgGCIncrementKillCountResponse::_impl_.level_type_) - - PROTOBUF_FIELD_OFFSET(CMsgGCIncrementKillCountResponse, _impl_.killer_account_id_)>( - reinterpret_cast(&_impl_.killer_account_id_), - reinterpret_cast(&other->_impl_.killer_account_id_)); + PROTOBUF_FIELD_OFFSET(CSOEconItemLeagueViewPass, _impl_.itemindex_) + + sizeof(CSOEconItemLeagueViewPass::_impl_.itemindex_) + - PROTOBUF_FIELD_OFFSET(CSOEconItemLeagueViewPass, _impl_.account_id_)>( + reinterpret_cast(&_impl_.account_id_), + reinterpret_cast(&other->_impl_.account_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCIncrementKillCountResponse::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CSOEconItemLeagueViewPass::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[50]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[50]); } // =================================================================== -class CSOEconItemDropRateBonus::_Internal { +class CSOEconItemEventTicket::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = decltype(std::declval()._impl_._has_bits_); static void set_has_account_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_expiration_date(HasBits* has_bits) { + static void set_has_event_id(HasBits* has_bits) { (*has_bits)[0] |= 2u; } - static void set_has_bonus(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_bonus_count(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } static void set_has_item_id(HasBits* has_bits) { - (*has_bits)[0] |= 16u; - } - static void set_has_def_index(HasBits* has_bits) { - (*has_bits)[0] |= 32u; + (*has_bits)[0] |= 4u; } }; -CSOEconItemDropRateBonus::CSOEconItemDropRateBonus(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CSOEconItemEventTicket::CSOEconItemEventTicket(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CSOEconItemDropRateBonus) + // @@protoc_insertion_point(arena_constructor:CSOEconItemEventTicket) } -CSOEconItemDropRateBonus::CSOEconItemDropRateBonus(const CSOEconItemDropRateBonus& from) +CSOEconItemEventTicket::CSOEconItemEventTicket(const CSOEconItemEventTicket& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CSOEconItemDropRateBonus* const _this = this; (void)_this; + CSOEconItemEventTicket* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} , decltype(_impl_.account_id_){} - , decltype(_impl_.expiration_date_){} - , decltype(_impl_.bonus_){} - , decltype(_impl_.bonus_count_){} - , decltype(_impl_.item_id_){} - , decltype(_impl_.def_index_){}}; + , decltype(_impl_.event_id_){} + , decltype(_impl_.item_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, - static_cast(reinterpret_cast(&_impl_.def_index_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.def_index_)); - // @@protoc_insertion_point(copy_constructor:CSOEconItemDropRateBonus) + static_cast(reinterpret_cast(&_impl_.item_id_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_id_)); + // @@protoc_insertion_point(copy_constructor:CSOEconItemEventTicket) } -inline void CSOEconItemDropRateBonus::SharedCtor( +inline void CSOEconItemEventTicket::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; @@ -17879,16 +18223,13 @@ inline void CSOEconItemDropRateBonus::SharedCtor( decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} , decltype(_impl_.account_id_){0u} - , decltype(_impl_.expiration_date_){0u} - , decltype(_impl_.bonus_){0} - , decltype(_impl_.bonus_count_){0u} + , decltype(_impl_.event_id_){0u} , decltype(_impl_.item_id_){uint64_t{0u}} - , decltype(_impl_.def_index_){0u} }; } -CSOEconItemDropRateBonus::~CSOEconItemDropRateBonus() { - // @@protoc_insertion_point(destructor:CSOEconItemDropRateBonus) +CSOEconItemEventTicket::~CSOEconItemEventTicket() { + // @@protoc_insertion_point(destructor:CSOEconItemEventTicket) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -17896,31 +18237,31 @@ CSOEconItemDropRateBonus::~CSOEconItemDropRateBonus() { SharedDtor(); } -inline void CSOEconItemDropRateBonus::SharedDtor() { +inline void CSOEconItemEventTicket::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CSOEconItemDropRateBonus::SetCachedSize(int size) const { +void CSOEconItemEventTicket::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CSOEconItemDropRateBonus::Clear() { -// @@protoc_insertion_point(message_clear_start:CSOEconItemDropRateBonus) +void CSOEconItemEventTicket::Clear() { +// @@protoc_insertion_point(message_clear_start:CSOEconItemEventTicket) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000003fu) { + if (cached_has_bits & 0x00000007u) { ::memset(&_impl_.account_id_, 0, static_cast( - reinterpret_cast(&_impl_.def_index_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.def_index_)); + reinterpret_cast(&_impl_.item_id_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_id_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CSOEconItemDropRateBonus::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CSOEconItemEventTicket::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { @@ -17936,51 +18277,24 @@ const char* CSOEconItemDropRateBonus::_InternalParse(const char* ptr, ::_pbi::Pa } else goto handle_unusual; continue; - // optional fixed32 expiration_date = 2; + // optional uint32 event_id = 2; case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 21)) { - _Internal::set_has_expiration_date(&has_bits); - _impl_.expiration_date_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint32_t); - } else - goto handle_unusual; - continue; - // optional float bonus = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 29)) { - _Internal::set_has_bonus(&has_bits); - _impl_.bonus_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(float); - } else - goto handle_unusual; - continue; - // optional uint32 bonus_count = 4; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { - _Internal::set_has_bonus_count(&has_bits); - _impl_.bonus_count_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_event_id(&has_bits); + _impl_.event_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint64 item_id = 5; - case 5: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 40)) { + // optional uint64 item_id = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { _Internal::set_has_item_id(&has_bits); _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 def_index = 6; - case 6: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 48)) { - _Internal::set_has_def_index(&has_bits); - _impl_.def_index_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; default: goto handle_unusual; } // switch @@ -18005,9 +18319,9 @@ const char* CSOEconItemDropRateBonus::_InternalParse(const char* ptr, ::_pbi::Pa #undef CHK_ } -uint8_t* CSOEconItemDropRateBonus::_InternalSerialize( +uint8_t* CSOEconItemEventTicket::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CSOEconItemDropRateBonus) + // @@protoc_insertion_point(serialize_to_array_start:CSOEconItemEventTicket) uint32_t cached_has_bits = 0; (void) cached_has_bits; @@ -18018,46 +18332,28 @@ uint8_t* CSOEconItemDropRateBonus::_InternalSerialize( target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); } - // optional fixed32 expiration_date = 2; + // optional uint32 event_id = 2; if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed32ToArray(2, this->_internal_expiration_date(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_event_id(), target); } - // optional float bonus = 3; + // optional uint64 item_id = 3; if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFloatToArray(3, this->_internal_bonus(), target); - } - - // optional uint32 bonus_count = 4; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_bonus_count(), target); - } - - // optional uint64 item_id = 5; - if (cached_has_bits & 0x00000010u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(5, this->_internal_item_id(), target); - } - - // optional uint32 def_index = 6; - if (cached_has_bits & 0x00000020u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(6, this->_internal_def_index(), target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(3, this->_internal_item_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CSOEconItemDropRateBonus) + // @@protoc_insertion_point(serialize_to_array_end:CSOEconItemEventTicket) return target; } -size_t CSOEconItemDropRateBonus::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CSOEconItemDropRateBonus) +size_t CSOEconItemEventTicket::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CSOEconItemEventTicket) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -18065,169 +18361,128 @@ size_t CSOEconItemDropRateBonus::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000003fu) { + if (cached_has_bits & 0x00000007u) { // optional uint32 account_id = 1; if (cached_has_bits & 0x00000001u) { total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); } - // optional fixed32 expiration_date = 2; + // optional uint32 event_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += 1 + 4; + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_event_id()); } - // optional float bonus = 3; + // optional uint64 item_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += 1 + 4; - } - - // optional uint32 bonus_count = 4; - if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_bonus_count()); - } - - // optional uint64 item_id = 5; - if (cached_has_bits & 0x00000010u) { total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); } - // optional uint32 def_index = 6; - if (cached_has_bits & 0x00000020u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_def_index()); - } - } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconItemDropRateBonus::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconItemEventTicket::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CSOEconItemDropRateBonus::MergeImpl + CSOEconItemEventTicket::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconItemDropRateBonus::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconItemEventTicket::GetClassData() const { return &_class_data_; } -void CSOEconItemDropRateBonus::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconItemDropRateBonus) +void CSOEconItemEventTicket::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconItemEventTicket) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000003fu) { + if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { _this->_impl_.account_id_ = from._impl_.account_id_; } if (cached_has_bits & 0x00000002u) { - _this->_impl_.expiration_date_ = from._impl_.expiration_date_; + _this->_impl_.event_id_ = from._impl_.event_id_; } if (cached_has_bits & 0x00000004u) { - _this->_impl_.bonus_ = from._impl_.bonus_; - } - if (cached_has_bits & 0x00000008u) { - _this->_impl_.bonus_count_ = from._impl_.bonus_count_; - } - if (cached_has_bits & 0x00000010u) { _this->_impl_.item_id_ = from._impl_.item_id_; } - if (cached_has_bits & 0x00000020u) { - _this->_impl_.def_index_ = from._impl_.def_index_; - } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CSOEconItemDropRateBonus::CopyFrom(const CSOEconItemDropRateBonus& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconItemDropRateBonus) +void CSOEconItemEventTicket::CopyFrom(const CSOEconItemEventTicket& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconItemEventTicket) if (&from == this) return; Clear(); MergeFrom(from); } -bool CSOEconItemDropRateBonus::IsInitialized() const { +bool CSOEconItemEventTicket::IsInitialized() const { return true; } -void CSOEconItemDropRateBonus::InternalSwap(CSOEconItemDropRateBonus* other) { +void CSOEconItemEventTicket::InternalSwap(CSOEconItemEventTicket* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CSOEconItemDropRateBonus, _impl_.def_index_) - + sizeof(CSOEconItemDropRateBonus::_impl_.def_index_) - - PROTOBUF_FIELD_OFFSET(CSOEconItemDropRateBonus, _impl_.account_id_)>( + PROTOBUF_FIELD_OFFSET(CSOEconItemEventTicket, _impl_.item_id_) + + sizeof(CSOEconItemEventTicket::_impl_.item_id_) + - PROTOBUF_FIELD_OFFSET(CSOEconItemEventTicket, _impl_.account_id_)>( reinterpret_cast(&_impl_.account_id_), reinterpret_cast(&other->_impl_.account_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CSOEconItemDropRateBonus::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CSOEconItemEventTicket::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[51]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[51]); } // =================================================================== -class CSOEconItemLeagueViewPass::_Internal { +class CMsgGCItemPreviewItemBoughtNotification::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_account_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_item_def_index(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_league_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_admin(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_itemindex(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } }; -CSOEconItemLeagueViewPass::CSOEconItemLeagueViewPass(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCItemPreviewItemBoughtNotification::CMsgGCItemPreviewItemBoughtNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CSOEconItemLeagueViewPass) + // @@protoc_insertion_point(arena_constructor:CMsgGCItemPreviewItemBoughtNotification) } -CSOEconItemLeagueViewPass::CSOEconItemLeagueViewPass(const CSOEconItemLeagueViewPass& from) +CMsgGCItemPreviewItemBoughtNotification::CMsgGCItemPreviewItemBoughtNotification(const CMsgGCItemPreviewItemBoughtNotification& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CSOEconItemLeagueViewPass* const _this = this; (void)_this; + CMsgGCItemPreviewItemBoughtNotification* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.account_id_){} - , decltype(_impl_.league_id_){} - , decltype(_impl_.admin_){} - , decltype(_impl_.itemindex_){}}; + , decltype(_impl_.item_def_index_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, - static_cast(reinterpret_cast(&_impl_.itemindex_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.itemindex_)); - // @@protoc_insertion_point(copy_constructor:CSOEconItemLeagueViewPass) + _this->_impl_.item_def_index_ = from._impl_.item_def_index_; + // @@protoc_insertion_point(copy_constructor:CMsgGCItemPreviewItemBoughtNotification) } -inline void CSOEconItemLeagueViewPass::SharedCtor( +inline void CMsgGCItemPreviewItemBoughtNotification::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.account_id_){0u} - , decltype(_impl_.league_id_){0u} - , decltype(_impl_.admin_){0u} - , decltype(_impl_.itemindex_){0u} + , decltype(_impl_.item_def_index_){0u} }; } -CSOEconItemLeagueViewPass::~CSOEconItemLeagueViewPass() { - // @@protoc_insertion_point(destructor:CSOEconItemLeagueViewPass) +CMsgGCItemPreviewItemBoughtNotification::~CMsgGCItemPreviewItemBoughtNotification() { + // @@protoc_insertion_point(destructor:CMsgGCItemPreviewItemBoughtNotification) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -18235,69 +18490,37 @@ CSOEconItemLeagueViewPass::~CSOEconItemLeagueViewPass() { SharedDtor(); } -inline void CSOEconItemLeagueViewPass::SharedDtor() { +inline void CMsgGCItemPreviewItemBoughtNotification::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CSOEconItemLeagueViewPass::SetCachedSize(int size) const { +void CMsgGCItemPreviewItemBoughtNotification::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CSOEconItemLeagueViewPass::Clear() { -// @@protoc_insertion_point(message_clear_start:CSOEconItemLeagueViewPass) +void CMsgGCItemPreviewItemBoughtNotification::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCItemPreviewItemBoughtNotification) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - ::memset(&_impl_.account_id_, 0, static_cast( - reinterpret_cast(&_impl_.itemindex_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.itemindex_)); - } + _impl_.item_def_index_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CSOEconItemLeagueViewPass::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCItemPreviewItemBoughtNotification::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 account_id = 1 [(.key_field) = true]; + // optional uint32 item_def_index = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_account_id(&has_bits); - _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 league_id = 2 [(.key_field) = true]; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_league_id(&has_bits); - _impl_.league_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 admin = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_admin(&has_bits); - _impl_.admin_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 itemindex = 4; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { - _Internal::set_has_itemindex(&has_bits); - _impl_.itemindex_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_item_def_index(&has_bits); + _impl_.item_def_index_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -18326,196 +18549,131 @@ const char* CSOEconItemLeagueViewPass::_InternalParse(const char* ptr, ::_pbi::P #undef CHK_ } -uint8_t* CSOEconItemLeagueViewPass::_InternalSerialize( +uint8_t* CMsgGCItemPreviewItemBoughtNotification::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CSOEconItemLeagueViewPass) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCItemPreviewItemBoughtNotification) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 account_id = 1 [(.key_field) = true]; + // optional uint32 item_def_index = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); - } - - // optional uint32 league_id = 2 [(.key_field) = true]; - if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_league_id(), target); - } - - // optional uint32 admin = 3; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_admin(), target); - } - - // optional uint32 itemindex = 4; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_itemindex(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_item_def_index(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CSOEconItemLeagueViewPass) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCItemPreviewItemBoughtNotification) return target; } -size_t CSOEconItemLeagueViewPass::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CSOEconItemLeagueViewPass) +size_t CMsgGCItemPreviewItemBoughtNotification::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCItemPreviewItemBoughtNotification) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // optional uint32 item_def_index = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - // optional uint32 account_id = 1 [(.key_field) = true]; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); - } - - // optional uint32 league_id = 2 [(.key_field) = true]; - if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_league_id()); - } - - // optional uint32 admin = 3; - if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_admin()); - } - - // optional uint32 itemindex = 4; - if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_itemindex()); - } - + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_item_def_index()); } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconItemLeagueViewPass::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCItemPreviewItemBoughtNotification::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CSOEconItemLeagueViewPass::MergeImpl + CMsgGCItemPreviewItemBoughtNotification::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconItemLeagueViewPass::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCItemPreviewItemBoughtNotification::GetClassData() const { return &_class_data_; } -void CSOEconItemLeagueViewPass::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconItemLeagueViewPass) +void CMsgGCItemPreviewItemBoughtNotification::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCItemPreviewItemBoughtNotification) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - if (cached_has_bits & 0x00000001u) { - _this->_impl_.account_id_ = from._impl_.account_id_; - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.league_id_ = from._impl_.league_id_; - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.admin_ = from._impl_.admin_; - } - if (cached_has_bits & 0x00000008u) { - _this->_impl_.itemindex_ = from._impl_.itemindex_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; + if (from._internal_has_item_def_index()) { + _this->_internal_set_item_def_index(from._internal_item_def_index()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CSOEconItemLeagueViewPass::CopyFrom(const CSOEconItemLeagueViewPass& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconItemLeagueViewPass) +void CMsgGCItemPreviewItemBoughtNotification::CopyFrom(const CMsgGCItemPreviewItemBoughtNotification& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCItemPreviewItemBoughtNotification) if (&from == this) return; Clear(); MergeFrom(from); } -bool CSOEconItemLeagueViewPass::IsInitialized() const { +bool CMsgGCItemPreviewItemBoughtNotification::IsInitialized() const { return true; } -void CSOEconItemLeagueViewPass::InternalSwap(CSOEconItemLeagueViewPass* other) { +void CMsgGCItemPreviewItemBoughtNotification::InternalSwap(CMsgGCItemPreviewItemBoughtNotification* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CSOEconItemLeagueViewPass, _impl_.itemindex_) - + sizeof(CSOEconItemLeagueViewPass::_impl_.itemindex_) - - PROTOBUF_FIELD_OFFSET(CSOEconItemLeagueViewPass, _impl_.account_id_)>( - reinterpret_cast(&_impl_.account_id_), - reinterpret_cast(&other->_impl_.account_id_)); + swap(_impl_.item_def_index_, other->_impl_.item_def_index_); } -::PROTOBUF_NAMESPACE_ID::Metadata CSOEconItemLeagueViewPass::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCItemPreviewItemBoughtNotification::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[52]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[52]); } // =================================================================== -class CSOEconItemEventTicket::_Internal { +class CMsgGCStorePurchaseCancel::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_account_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_txn_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_event_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_item_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } }; -CSOEconItemEventTicket::CSOEconItemEventTicket(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCStorePurchaseCancel::CMsgGCStorePurchaseCancel(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CSOEconItemEventTicket) + // @@protoc_insertion_point(arena_constructor:CMsgGCStorePurchaseCancel) } -CSOEconItemEventTicket::CSOEconItemEventTicket(const CSOEconItemEventTicket& from) +CMsgGCStorePurchaseCancel::CMsgGCStorePurchaseCancel(const CMsgGCStorePurchaseCancel& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CSOEconItemEventTicket* const _this = this; (void)_this; + CMsgGCStorePurchaseCancel* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.account_id_){} - , decltype(_impl_.event_id_){} - , decltype(_impl_.item_id_){}}; + , decltype(_impl_.txn_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, - static_cast(reinterpret_cast(&_impl_.item_id_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_id_)); - // @@protoc_insertion_point(copy_constructor:CSOEconItemEventTicket) + _this->_impl_.txn_id_ = from._impl_.txn_id_; + // @@protoc_insertion_point(copy_constructor:CMsgGCStorePurchaseCancel) } -inline void CSOEconItemEventTicket::SharedCtor( +inline void CMsgGCStorePurchaseCancel::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.account_id_){0u} - , decltype(_impl_.event_id_){0u} - , decltype(_impl_.item_id_){uint64_t{0u}} + , decltype(_impl_.txn_id_){uint64_t{0u}} }; } -CSOEconItemEventTicket::~CSOEconItemEventTicket() { - // @@protoc_insertion_point(destructor:CSOEconItemEventTicket) +CMsgGCStorePurchaseCancel::~CMsgGCStorePurchaseCancel() { + // @@protoc_insertion_point(destructor:CMsgGCStorePurchaseCancel) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -18523,60 +18681,37 @@ CSOEconItemEventTicket::~CSOEconItemEventTicket() { SharedDtor(); } -inline void CSOEconItemEventTicket::SharedDtor() { +inline void CMsgGCStorePurchaseCancel::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CSOEconItemEventTicket::SetCachedSize(int size) const { +void CMsgGCStorePurchaseCancel::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CSOEconItemEventTicket::Clear() { -// @@protoc_insertion_point(message_clear_start:CSOEconItemEventTicket) +void CMsgGCStorePurchaseCancel::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCStorePurchaseCancel) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - ::memset(&_impl_.account_id_, 0, static_cast( - reinterpret_cast(&_impl_.item_id_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_id_)); - } + _impl_.txn_id_ = uint64_t{0u}; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CSOEconItemEventTicket::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCStorePurchaseCancel::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 account_id = 1; + // optional uint64 txn_id = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_account_id(&has_bits); - _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 event_id = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_event_id(&has_bits); - _impl_.event_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint64 item_id = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_item_id(&has_bits); - _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + _Internal::set_has_txn_id(&has_bits); + _impl_.txn_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -18605,170 +18740,131 @@ const char* CSOEconItemEventTicket::_InternalParse(const char* ptr, ::_pbi::Pars #undef CHK_ } -uint8_t* CSOEconItemEventTicket::_InternalSerialize( +uint8_t* CMsgGCStorePurchaseCancel::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CSOEconItemEventTicket) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCStorePurchaseCancel) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 account_id = 1; + // optional uint64 txn_id = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); - } - - // optional uint32 event_id = 2; - if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_event_id(), target); - } - - // optional uint64 item_id = 3; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(3, this->_internal_item_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(1, this->_internal_txn_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CSOEconItemEventTicket) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCStorePurchaseCancel) return target; } -size_t CSOEconItemEventTicket::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CSOEconItemEventTicket) +size_t CMsgGCStorePurchaseCancel::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCStorePurchaseCancel) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // optional uint64 txn_id = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - // optional uint32 account_id = 1; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); - } - - // optional uint32 event_id = 2; - if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_event_id()); - } - - // optional uint64 item_id = 3; - if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); - } - + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_txn_id()); } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconItemEventTicket::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCStorePurchaseCancel::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CSOEconItemEventTicket::MergeImpl + CMsgGCStorePurchaseCancel::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconItemEventTicket::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCStorePurchaseCancel::GetClassData() const { return &_class_data_; } -void CSOEconItemEventTicket::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconItemEventTicket) +void CMsgGCStorePurchaseCancel::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCStorePurchaseCancel) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - _this->_impl_.account_id_ = from._impl_.account_id_; - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.event_id_ = from._impl_.event_id_; - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.item_id_ = from._impl_.item_id_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; + if (from._internal_has_txn_id()) { + _this->_internal_set_txn_id(from._internal_txn_id()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CSOEconItemEventTicket::CopyFrom(const CSOEconItemEventTicket& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconItemEventTicket) +void CMsgGCStorePurchaseCancel::CopyFrom(const CMsgGCStorePurchaseCancel& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCStorePurchaseCancel) if (&from == this) return; Clear(); MergeFrom(from); } -bool CSOEconItemEventTicket::IsInitialized() const { +bool CMsgGCStorePurchaseCancel::IsInitialized() const { return true; } -void CSOEconItemEventTicket::InternalSwap(CSOEconItemEventTicket* other) { +void CMsgGCStorePurchaseCancel::InternalSwap(CMsgGCStorePurchaseCancel* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CSOEconItemEventTicket, _impl_.item_id_) - + sizeof(CSOEconItemEventTicket::_impl_.item_id_) - - PROTOBUF_FIELD_OFFSET(CSOEconItemEventTicket, _impl_.account_id_)>( - reinterpret_cast(&_impl_.account_id_), - reinterpret_cast(&other->_impl_.account_id_)); + swap(_impl_.txn_id_, other->_impl_.txn_id_); } -::PROTOBUF_NAMESPACE_ID::Metadata CSOEconItemEventTicket::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCStorePurchaseCancel::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[53]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[53]); } // =================================================================== -class CMsgGCItemPreviewItemBoughtNotification::_Internal { +class CMsgGCStorePurchaseCancelResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_item_def_index(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_result(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCItemPreviewItemBoughtNotification::CMsgGCItemPreviewItemBoughtNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCStorePurchaseCancelResponse::CMsgGCStorePurchaseCancelResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCItemPreviewItemBoughtNotification) + // @@protoc_insertion_point(arena_constructor:CMsgGCStorePurchaseCancelResponse) } -CMsgGCItemPreviewItemBoughtNotification::CMsgGCItemPreviewItemBoughtNotification(const CMsgGCItemPreviewItemBoughtNotification& from) +CMsgGCStorePurchaseCancelResponse::CMsgGCStorePurchaseCancelResponse(const CMsgGCStorePurchaseCancelResponse& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCItemPreviewItemBoughtNotification* const _this = this; (void)_this; + CMsgGCStorePurchaseCancelResponse* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.item_def_index_){}}; + , decltype(_impl_.result_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.item_def_index_ = from._impl_.item_def_index_; - // @@protoc_insertion_point(copy_constructor:CMsgGCItemPreviewItemBoughtNotification) + _this->_impl_.result_ = from._impl_.result_; + // @@protoc_insertion_point(copy_constructor:CMsgGCStorePurchaseCancelResponse) } -inline void CMsgGCItemPreviewItemBoughtNotification::SharedCtor( +inline void CMsgGCStorePurchaseCancelResponse::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.item_def_index_){0u} + , decltype(_impl_.result_){0u} }; } -CMsgGCItemPreviewItemBoughtNotification::~CMsgGCItemPreviewItemBoughtNotification() { - // @@protoc_insertion_point(destructor:CMsgGCItemPreviewItemBoughtNotification) +CMsgGCStorePurchaseCancelResponse::~CMsgGCStorePurchaseCancelResponse() { + // @@protoc_insertion_point(destructor:CMsgGCStorePurchaseCancelResponse) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -18776,37 +18872,37 @@ CMsgGCItemPreviewItemBoughtNotification::~CMsgGCItemPreviewItemBoughtNotificatio SharedDtor(); } -inline void CMsgGCItemPreviewItemBoughtNotification::SharedDtor() { +inline void CMsgGCStorePurchaseCancelResponse::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgGCItemPreviewItemBoughtNotification::SetCachedSize(int size) const { +void CMsgGCStorePurchaseCancelResponse::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCItemPreviewItemBoughtNotification::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCItemPreviewItemBoughtNotification) +void CMsgGCStorePurchaseCancelResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCStorePurchaseCancelResponse) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.item_def_index_ = 0u; + _impl_.result_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCItemPreviewItemBoughtNotification::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCStorePurchaseCancelResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 item_def_index = 1; + // optional uint32 result = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_item_def_index(&has_bits); - _impl_.item_def_index_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_result(&has_bits); + _impl_.result_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -18835,108 +18931,108 @@ const char* CMsgGCItemPreviewItemBoughtNotification::_InternalParse(const char* #undef CHK_ } -uint8_t* CMsgGCItemPreviewItemBoughtNotification::_InternalSerialize( +uint8_t* CMsgGCStorePurchaseCancelResponse::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCItemPreviewItemBoughtNotification) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCStorePurchaseCancelResponse) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 item_def_index = 1; + // optional uint32 result = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_item_def_index(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_result(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCItemPreviewItemBoughtNotification) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCStorePurchaseCancelResponse) return target; } -size_t CMsgGCItemPreviewItemBoughtNotification::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCItemPreviewItemBoughtNotification) +size_t CMsgGCStorePurchaseCancelResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCStorePurchaseCancelResponse) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional uint32 item_def_index = 1; + // optional uint32 result = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_item_def_index()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_result()); } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCItemPreviewItemBoughtNotification::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCStorePurchaseCancelResponse::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCItemPreviewItemBoughtNotification::MergeImpl + CMsgGCStorePurchaseCancelResponse::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCItemPreviewItemBoughtNotification::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCStorePurchaseCancelResponse::GetClassData() const { return &_class_data_; } -void CMsgGCItemPreviewItemBoughtNotification::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCItemPreviewItemBoughtNotification) +void CMsgGCStorePurchaseCancelResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCStorePurchaseCancelResponse) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (from._internal_has_item_def_index()) { - _this->_internal_set_item_def_index(from._internal_item_def_index()); + if (from._internal_has_result()) { + _this->_internal_set_result(from._internal_result()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCItemPreviewItemBoughtNotification::CopyFrom(const CMsgGCItemPreviewItemBoughtNotification& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCItemPreviewItemBoughtNotification) +void CMsgGCStorePurchaseCancelResponse::CopyFrom(const CMsgGCStorePurchaseCancelResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCStorePurchaseCancelResponse) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCItemPreviewItemBoughtNotification::IsInitialized() const { +bool CMsgGCStorePurchaseCancelResponse::IsInitialized() const { return true; } -void CMsgGCItemPreviewItemBoughtNotification::InternalSwap(CMsgGCItemPreviewItemBoughtNotification* other) { +void CMsgGCStorePurchaseCancelResponse::InternalSwap(CMsgGCStorePurchaseCancelResponse* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.item_def_index_, other->_impl_.item_def_index_); + swap(_impl_.result_, other->_impl_.result_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCItemPreviewItemBoughtNotification::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCStorePurchaseCancelResponse::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[54]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[54]); } // =================================================================== -class CMsgGCStorePurchaseCancel::_Internal { +class CMsgGCStorePurchaseFinalize::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = decltype(std::declval()._impl_._has_bits_); static void set_has_txn_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCStorePurchaseCancel::CMsgGCStorePurchaseCancel(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCStorePurchaseFinalize::CMsgGCStorePurchaseFinalize(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCStorePurchaseCancel) + // @@protoc_insertion_point(arena_constructor:CMsgGCStorePurchaseFinalize) } -CMsgGCStorePurchaseCancel::CMsgGCStorePurchaseCancel(const CMsgGCStorePurchaseCancel& from) +CMsgGCStorePurchaseFinalize::CMsgGCStorePurchaseFinalize(const CMsgGCStorePurchaseFinalize& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCStorePurchaseCancel* const _this = this; (void)_this; + CMsgGCStorePurchaseFinalize* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} @@ -18944,10 +19040,10 @@ CMsgGCStorePurchaseCancel::CMsgGCStorePurchaseCancel(const CMsgGCStorePurchaseCa _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); _this->_impl_.txn_id_ = from._impl_.txn_id_; - // @@protoc_insertion_point(copy_constructor:CMsgGCStorePurchaseCancel) + // @@protoc_insertion_point(copy_constructor:CMsgGCStorePurchaseFinalize) } -inline void CMsgGCStorePurchaseCancel::SharedCtor( +inline void CMsgGCStorePurchaseFinalize::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; @@ -18958,8 +19054,8 @@ inline void CMsgGCStorePurchaseCancel::SharedCtor( }; } -CMsgGCStorePurchaseCancel::~CMsgGCStorePurchaseCancel() { - // @@protoc_insertion_point(destructor:CMsgGCStorePurchaseCancel) +CMsgGCStorePurchaseFinalize::~CMsgGCStorePurchaseFinalize() { + // @@protoc_insertion_point(destructor:CMsgGCStorePurchaseFinalize) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -18967,16 +19063,16 @@ CMsgGCStorePurchaseCancel::~CMsgGCStorePurchaseCancel() { SharedDtor(); } -inline void CMsgGCStorePurchaseCancel::SharedDtor() { +inline void CMsgGCStorePurchaseFinalize::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgGCStorePurchaseCancel::SetCachedSize(int size) const { +void CMsgGCStorePurchaseFinalize::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCStorePurchaseCancel::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCStorePurchaseCancel) +void CMsgGCStorePurchaseFinalize::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCStorePurchaseFinalize) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; @@ -18986,7 +19082,7 @@ void CMsgGCStorePurchaseCancel::Clear() { _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCStorePurchaseCancel::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCStorePurchaseFinalize::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { @@ -19026,9 +19122,9 @@ const char* CMsgGCStorePurchaseCancel::_InternalParse(const char* ptr, ::_pbi::P #undef CHK_ } -uint8_t* CMsgGCStorePurchaseCancel::_InternalSerialize( +uint8_t* CMsgGCStorePurchaseFinalize::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCStorePurchaseCancel) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCStorePurchaseFinalize) uint32_t cached_has_bits = 0; (void) cached_has_bits; @@ -19043,12 +19139,12 @@ uint8_t* CMsgGCStorePurchaseCancel::_InternalSerialize( target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCStorePurchaseCancel) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCStorePurchaseFinalize) return target; } -size_t CMsgGCStorePurchaseCancel::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCStorePurchaseCancel) +size_t CMsgGCStorePurchaseFinalize::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCStorePurchaseFinalize) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -19064,17 +19160,17 @@ size_t CMsgGCStorePurchaseCancel::ByteSizeLong() const { return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCStorePurchaseCancel::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCStorePurchaseFinalize::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCStorePurchaseCancel::MergeImpl + CMsgGCStorePurchaseFinalize::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCStorePurchaseCancel::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCStorePurchaseFinalize::GetClassData() const { return &_class_data_; } -void CMsgGCStorePurchaseCancel::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCStorePurchaseCancel) +void CMsgGCStorePurchaseFinalize::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCStorePurchaseFinalize) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; @@ -19085,72 +19181,74 @@ void CMsgGCStorePurchaseCancel::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_m _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCStorePurchaseCancel::CopyFrom(const CMsgGCStorePurchaseCancel& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCStorePurchaseCancel) +void CMsgGCStorePurchaseFinalize::CopyFrom(const CMsgGCStorePurchaseFinalize& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCStorePurchaseFinalize) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCStorePurchaseCancel::IsInitialized() const { +bool CMsgGCStorePurchaseFinalize::IsInitialized() const { return true; } -void CMsgGCStorePurchaseCancel::InternalSwap(CMsgGCStorePurchaseCancel* other) { +void CMsgGCStorePurchaseFinalize::InternalSwap(CMsgGCStorePurchaseFinalize* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); swap(_impl_.txn_id_, other->_impl_.txn_id_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCStorePurchaseCancel::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCStorePurchaseFinalize::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[55]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[55]); } // =================================================================== -class CMsgGCStorePurchaseCancelResponse::_Internal { +class CMsgGCStorePurchaseFinalizeResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); + using HasBits = decltype(std::declval()._impl_._has_bits_); static void set_has_result(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCStorePurchaseCancelResponse::CMsgGCStorePurchaseCancelResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCStorePurchaseFinalizeResponse::CMsgGCStorePurchaseFinalizeResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCStorePurchaseCancelResponse) + // @@protoc_insertion_point(arena_constructor:CMsgGCStorePurchaseFinalizeResponse) } -CMsgGCStorePurchaseCancelResponse::CMsgGCStorePurchaseCancelResponse(const CMsgGCStorePurchaseCancelResponse& from) +CMsgGCStorePurchaseFinalizeResponse::CMsgGCStorePurchaseFinalizeResponse(const CMsgGCStorePurchaseFinalizeResponse& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCStorePurchaseCancelResponse* const _this = this; (void)_this; + CMsgGCStorePurchaseFinalizeResponse* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.item_ids_){from._impl_.item_ids_} , decltype(_impl_.result_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); _this->_impl_.result_ = from._impl_.result_; - // @@protoc_insertion_point(copy_constructor:CMsgGCStorePurchaseCancelResponse) + // @@protoc_insertion_point(copy_constructor:CMsgGCStorePurchaseFinalizeResponse) } -inline void CMsgGCStorePurchaseCancelResponse::SharedCtor( +inline void CMsgGCStorePurchaseFinalizeResponse::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.item_ids_){arena} , decltype(_impl_.result_){0u} }; } -CMsgGCStorePurchaseCancelResponse::~CMsgGCStorePurchaseCancelResponse() { - // @@protoc_insertion_point(destructor:CMsgGCStorePurchaseCancelResponse) +CMsgGCStorePurchaseFinalizeResponse::~CMsgGCStorePurchaseFinalizeResponse() { + // @@protoc_insertion_point(destructor:CMsgGCStorePurchaseFinalizeResponse) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -19158,26 +19256,28 @@ CMsgGCStorePurchaseCancelResponse::~CMsgGCStorePurchaseCancelResponse() { SharedDtor(); } -inline void CMsgGCStorePurchaseCancelResponse::SharedDtor() { +inline void CMsgGCStorePurchaseFinalizeResponse::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.item_ids_.~RepeatedField(); } -void CMsgGCStorePurchaseCancelResponse::SetCachedSize(int size) const { +void CMsgGCStorePurchaseFinalizeResponse::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCStorePurchaseCancelResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCStorePurchaseCancelResponse) +void CMsgGCStorePurchaseFinalizeResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCStorePurchaseFinalizeResponse) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + _impl_.item_ids_.Clear(); _impl_.result_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCStorePurchaseCancelResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCStorePurchaseFinalizeResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { @@ -19193,6 +19293,22 @@ const char* CMsgGCStorePurchaseCancelResponse::_InternalParse(const char* ptr, : } else goto handle_unusual; continue; + // repeated uint64 item_ids = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + ptr -= 1; + do { + ptr += 1; + _internal_add_item_ids(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr)); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<16>(ptr)); + } else if (static_cast(tag) == 18) { + ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt64Parser(_internal_mutable_item_ids(), ptr, ctx); + CHK_(ptr); + } else + goto handle_unusual; + continue; default: goto handle_unusual; } // switch @@ -19217,9 +19333,9 @@ const char* CMsgGCStorePurchaseCancelResponse::_InternalParse(const char* ptr, : #undef CHK_ } -uint8_t* CMsgGCStorePurchaseCancelResponse::_InternalSerialize( +uint8_t* CMsgGCStorePurchaseFinalizeResponse::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCStorePurchaseCancelResponse) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCStorePurchaseFinalizeResponse) uint32_t cached_has_bits = 0; (void) cached_has_bits; @@ -19230,22 +19346,37 @@ uint8_t* CMsgGCStorePurchaseCancelResponse::_InternalSerialize( target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_result(), target); } + // repeated uint64 item_ids = 2; + for (int i = 0, n = this->_internal_item_ids_size(); i < n; i++) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_item_ids(i), target); + } + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCStorePurchaseCancelResponse) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCStorePurchaseFinalizeResponse) return target; } -size_t CMsgGCStorePurchaseCancelResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCStorePurchaseCancelResponse) +size_t CMsgGCStorePurchaseFinalizeResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCStorePurchaseFinalizeResponse) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // repeated uint64 item_ids = 2; + { + size_t data_size = ::_pbi::WireFormatLite:: + UInt64Size(this->_impl_.item_ids_); + total_size += 1 * + ::_pbi::FromIntSize(this->_internal_item_ids_size()); + total_size += data_size; + } + // optional uint32 result = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { @@ -19255,93 +19386,102 @@ size_t CMsgGCStorePurchaseCancelResponse::ByteSizeLong() const { return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCStorePurchaseCancelResponse::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCStorePurchaseFinalizeResponse::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCStorePurchaseCancelResponse::MergeImpl + CMsgGCStorePurchaseFinalizeResponse::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCStorePurchaseCancelResponse::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCStorePurchaseFinalizeResponse::GetClassData() const { return &_class_data_; } -void CMsgGCStorePurchaseCancelResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCStorePurchaseCancelResponse) +void CMsgGCStorePurchaseFinalizeResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCStorePurchaseFinalizeResponse) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; + _this->_impl_.item_ids_.MergeFrom(from._impl_.item_ids_); if (from._internal_has_result()) { _this->_internal_set_result(from._internal_result()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCStorePurchaseCancelResponse::CopyFrom(const CMsgGCStorePurchaseCancelResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCStorePurchaseCancelResponse) +void CMsgGCStorePurchaseFinalizeResponse::CopyFrom(const CMsgGCStorePurchaseFinalizeResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCStorePurchaseFinalizeResponse) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCStorePurchaseCancelResponse::IsInitialized() const { +bool CMsgGCStorePurchaseFinalizeResponse::IsInitialized() const { return true; } -void CMsgGCStorePurchaseCancelResponse::InternalSwap(CMsgGCStorePurchaseCancelResponse* other) { +void CMsgGCStorePurchaseFinalizeResponse::InternalSwap(CMsgGCStorePurchaseFinalizeResponse* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + _impl_.item_ids_.InternalSwap(&other->_impl_.item_ids_); swap(_impl_.result_, other->_impl_.result_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCStorePurchaseCancelResponse::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCStorePurchaseFinalizeResponse::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[56]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[56]); } // =================================================================== -class CMsgGCStorePurchaseFinalize::_Internal { +class CMsgGCBannedWordListRequest::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_txn_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_ban_list_group_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } + static void set_has_word_id(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } }; -CMsgGCStorePurchaseFinalize::CMsgGCStorePurchaseFinalize(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCBannedWordListRequest::CMsgGCBannedWordListRequest(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCStorePurchaseFinalize) + // @@protoc_insertion_point(arena_constructor:CMsgGCBannedWordListRequest) } -CMsgGCStorePurchaseFinalize::CMsgGCStorePurchaseFinalize(const CMsgGCStorePurchaseFinalize& from) +CMsgGCBannedWordListRequest::CMsgGCBannedWordListRequest(const CMsgGCBannedWordListRequest& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCStorePurchaseFinalize* const _this = this; (void)_this; + CMsgGCBannedWordListRequest* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.txn_id_){}}; + , decltype(_impl_.ban_list_group_id_){} + , decltype(_impl_.word_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.txn_id_ = from._impl_.txn_id_; - // @@protoc_insertion_point(copy_constructor:CMsgGCStorePurchaseFinalize) + ::memcpy(&_impl_.ban_list_group_id_, &from._impl_.ban_list_group_id_, + static_cast(reinterpret_cast(&_impl_.word_id_) - + reinterpret_cast(&_impl_.ban_list_group_id_)) + sizeof(_impl_.word_id_)); + // @@protoc_insertion_point(copy_constructor:CMsgGCBannedWordListRequest) } -inline void CMsgGCStorePurchaseFinalize::SharedCtor( +inline void CMsgGCBannedWordListRequest::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.txn_id_){uint64_t{0u}} + , decltype(_impl_.ban_list_group_id_){0u} + , decltype(_impl_.word_id_){0u} }; } -CMsgGCStorePurchaseFinalize::~CMsgGCStorePurchaseFinalize() { - // @@protoc_insertion_point(destructor:CMsgGCStorePurchaseFinalize) +CMsgGCBannedWordListRequest::~CMsgGCBannedWordListRequest() { + // @@protoc_insertion_point(destructor:CMsgGCBannedWordListRequest) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -19349,37 +19489,51 @@ CMsgGCStorePurchaseFinalize::~CMsgGCStorePurchaseFinalize() { SharedDtor(); } -inline void CMsgGCStorePurchaseFinalize::SharedDtor() { +inline void CMsgGCBannedWordListRequest::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgGCStorePurchaseFinalize::SetCachedSize(int size) const { +void CMsgGCBannedWordListRequest::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCStorePurchaseFinalize::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCStorePurchaseFinalize) +void CMsgGCBannedWordListRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCBannedWordListRequest) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.txn_id_ = uint64_t{0u}; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + ::memset(&_impl_.ban_list_group_id_, 0, static_cast( + reinterpret_cast(&_impl_.word_id_) - + reinterpret_cast(&_impl_.ban_list_group_id_)) + sizeof(_impl_.word_id_)); + } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCStorePurchaseFinalize::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCBannedWordListRequest::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint64 txn_id = 1; + // optional uint32 ban_list_group_id = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_txn_id(&has_bits); - _impl_.txn_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + _Internal::set_has_ban_list_group_id(&has_bits); + _impl_.ban_list_group_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint32 word_id = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_word_id(&has_bits); + _impl_.word_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -19408,133 +19562,258 @@ const char* CMsgGCStorePurchaseFinalize::_InternalParse(const char* ptr, ::_pbi: #undef CHK_ } -uint8_t* CMsgGCStorePurchaseFinalize::_InternalSerialize( +uint8_t* CMsgGCBannedWordListRequest::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCStorePurchaseFinalize) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCBannedWordListRequest) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint64 txn_id = 1; + // optional uint32 ban_list_group_id = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(1, this->_internal_txn_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_ban_list_group_id(), target); + } + + // optional uint32 word_id = 2; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_word_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCStorePurchaseFinalize) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCBannedWordListRequest) return target; } -size_t CMsgGCStorePurchaseFinalize::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCStorePurchaseFinalize) +size_t CMsgGCBannedWordListRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCBannedWordListRequest) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional uint64 txn_id = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_txn_id()); - } + if (cached_has_bits & 0x00000003u) { + // optional uint32 ban_list_group_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_ban_list_group_id()); + } + + // optional uint32 word_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_word_id()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCStorePurchaseFinalize::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCBannedWordListRequest::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCStorePurchaseFinalize::MergeImpl + CMsgGCBannedWordListRequest::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCStorePurchaseFinalize::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCBannedWordListRequest::GetClassData() const { return &_class_data_; } -void CMsgGCStorePurchaseFinalize::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCStorePurchaseFinalize) +void CMsgGCBannedWordListRequest::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCBannedWordListRequest) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (from._internal_has_txn_id()) { - _this->_internal_set_txn_id(from._internal_txn_id()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000001u) { + _this->_impl_.ban_list_group_id_ = from._impl_.ban_list_group_id_; + } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.word_id_ = from._impl_.word_id_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCStorePurchaseFinalize::CopyFrom(const CMsgGCStorePurchaseFinalize& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCStorePurchaseFinalize) +void CMsgGCBannedWordListRequest::CopyFrom(const CMsgGCBannedWordListRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCBannedWordListRequest) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCStorePurchaseFinalize::IsInitialized() const { +bool CMsgGCBannedWordListRequest::IsInitialized() const { return true; } -void CMsgGCStorePurchaseFinalize::InternalSwap(CMsgGCStorePurchaseFinalize* other) { +void CMsgGCBannedWordListRequest::InternalSwap(CMsgGCBannedWordListRequest* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.txn_id_, other->_impl_.txn_id_); -} + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgGCBannedWordListRequest, _impl_.word_id_) + + sizeof(CMsgGCBannedWordListRequest::_impl_.word_id_) + - PROTOBUF_FIELD_OFFSET(CMsgGCBannedWordListRequest, _impl_.ban_list_group_id_)>( + reinterpret_cast(&_impl_.ban_list_group_id_), + reinterpret_cast(&other->_impl_.ban_list_group_id_)); +} -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCStorePurchaseFinalize::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCBannedWordListRequest::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[57]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[57]); } // =================================================================== -class CMsgGCStorePurchaseFinalizeResponse::_Internal { +class CMsgGCRequestAnnouncements::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_result(HasBits* has_bits) { +}; + +CMsgGCRequestAnnouncements::CMsgGCRequestAnnouncements(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase(arena, is_message_owned) { + // @@protoc_insertion_point(arena_constructor:CMsgGCRequestAnnouncements) +} +CMsgGCRequestAnnouncements::CMsgGCRequestAnnouncements(const CMsgGCRequestAnnouncements& from) + : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase() { + CMsgGCRequestAnnouncements* const _this = this; (void)_this; + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + // @@protoc_insertion_point(copy_constructor:CMsgGCRequestAnnouncements) +} + + + + + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCRequestAnnouncements::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl, + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl, +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCRequestAnnouncements::GetClassData() const { return &_class_data_; } + + + + + + + +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCRequestAnnouncements::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[58]); +} + +// =================================================================== + +class CMsgGCRequestAnnouncementsResponse::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_announcement_title(HasBits* has_bits) { (*has_bits)[0] |= 1u; } + static void set_has_announcement(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_nextmatch_title(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } + static void set_has_nextmatch(HasBits* has_bits) { + (*has_bits)[0] |= 8u; + } }; -CMsgGCStorePurchaseFinalizeResponse::CMsgGCStorePurchaseFinalizeResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCRequestAnnouncementsResponse::CMsgGCRequestAnnouncementsResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCStorePurchaseFinalizeResponse) + // @@protoc_insertion_point(arena_constructor:CMsgGCRequestAnnouncementsResponse) } -CMsgGCStorePurchaseFinalizeResponse::CMsgGCStorePurchaseFinalizeResponse(const CMsgGCStorePurchaseFinalizeResponse& from) +CMsgGCRequestAnnouncementsResponse::CMsgGCRequestAnnouncementsResponse(const CMsgGCRequestAnnouncementsResponse& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCStorePurchaseFinalizeResponse* const _this = this; (void)_this; + CMsgGCRequestAnnouncementsResponse* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.item_ids_){from._impl_.item_ids_} - , decltype(_impl_.result_){}}; + , decltype(_impl_.announcement_title_){} + , decltype(_impl_.announcement_){} + , decltype(_impl_.nextmatch_title_){} + , decltype(_impl_.nextmatch_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.result_ = from._impl_.result_; - // @@protoc_insertion_point(copy_constructor:CMsgGCStorePurchaseFinalizeResponse) + _impl_.announcement_title_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.announcement_title_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_announcement_title()) { + _this->_impl_.announcement_title_.Set(from._internal_announcement_title(), + _this->GetArenaForAllocation()); + } + _impl_.announcement_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.announcement_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_announcement()) { + _this->_impl_.announcement_.Set(from._internal_announcement(), + _this->GetArenaForAllocation()); + } + _impl_.nextmatch_title_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.nextmatch_title_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_nextmatch_title()) { + _this->_impl_.nextmatch_title_.Set(from._internal_nextmatch_title(), + _this->GetArenaForAllocation()); + } + _impl_.nextmatch_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.nextmatch_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_nextmatch()) { + _this->_impl_.nextmatch_.Set(from._internal_nextmatch(), + _this->GetArenaForAllocation()); + } + // @@protoc_insertion_point(copy_constructor:CMsgGCRequestAnnouncementsResponse) } -inline void CMsgGCStorePurchaseFinalizeResponse::SharedCtor( +inline void CMsgGCRequestAnnouncementsResponse::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.item_ids_){arena} - , decltype(_impl_.result_){0u} + , decltype(_impl_.announcement_title_){} + , decltype(_impl_.announcement_){} + , decltype(_impl_.nextmatch_title_){} + , decltype(_impl_.nextmatch_){} }; + _impl_.announcement_title_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.announcement_title_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.announcement_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.announcement_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.nextmatch_title_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.nextmatch_title_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.nextmatch_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.nextmatch_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCStorePurchaseFinalizeResponse::~CMsgGCStorePurchaseFinalizeResponse() { - // @@protoc_insertion_point(destructor:CMsgGCStorePurchaseFinalizeResponse) +CMsgGCRequestAnnouncementsResponse::~CMsgGCRequestAnnouncementsResponse() { + // @@protoc_insertion_point(destructor:CMsgGCRequestAnnouncementsResponse) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -19542,56 +19821,95 @@ CMsgGCStorePurchaseFinalizeResponse::~CMsgGCStorePurchaseFinalizeResponse() { SharedDtor(); } -inline void CMsgGCStorePurchaseFinalizeResponse::SharedDtor() { +inline void CMsgGCRequestAnnouncementsResponse::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.item_ids_.~RepeatedField(); + _impl_.announcement_title_.Destroy(); + _impl_.announcement_.Destroy(); + _impl_.nextmatch_title_.Destroy(); + _impl_.nextmatch_.Destroy(); } -void CMsgGCStorePurchaseFinalizeResponse::SetCachedSize(int size) const { +void CMsgGCRequestAnnouncementsResponse::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCStorePurchaseFinalizeResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCStorePurchaseFinalizeResponse) +void CMsgGCRequestAnnouncementsResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCRequestAnnouncementsResponse) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.item_ids_.Clear(); - _impl_.result_ = 0u; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x0000000fu) { + if (cached_has_bits & 0x00000001u) { + _impl_.announcement_title_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000002u) { + _impl_.announcement_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000004u) { + _impl_.nextmatch_title_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000008u) { + _impl_.nextmatch_.ClearNonDefaultToEmpty(); + } + } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCStorePurchaseFinalizeResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCRequestAnnouncementsResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 result = 1; + // optional string announcement_title = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_result(&has_bits); - _impl_.result_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { + auto str = _internal_mutable_announcement_title(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCRequestAnnouncementsResponse.announcement_title"); + #endif // !NDEBUG } else goto handle_unusual; continue; - // repeated uint64 item_ids = 2; + // optional string announcement = 2; case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - ptr -= 1; - do { - ptr += 1; - _internal_add_item_ids(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr)); - CHK_(ptr); - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<16>(ptr)); - } else if (static_cast(tag) == 18) { - ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt64Parser(_internal_mutable_item_ids(), ptr, ctx); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 18)) { + auto str = _internal_mutable_announcement(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCRequestAnnouncementsResponse.announcement"); + #endif // !NDEBUG + } else + goto handle_unusual; + continue; + // optional string nextmatch_title = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 26)) { + auto str = _internal_mutable_nextmatch_title(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCRequestAnnouncementsResponse.nextmatch_title"); + #endif // !NDEBUG + } else + goto handle_unusual; + continue; + // optional string nextmatch = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 34)) { + auto str = _internal_mutable_nextmatch(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCRequestAnnouncementsResponse.nextmatch"); + #endif // !NDEBUG } else goto handle_unusual; continue; @@ -19619,155 +19937,243 @@ const char* CMsgGCStorePurchaseFinalizeResponse::_InternalParse(const char* ptr, #undef CHK_ } -uint8_t* CMsgGCStorePurchaseFinalizeResponse::_InternalSerialize( +uint8_t* CMsgGCRequestAnnouncementsResponse::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCStorePurchaseFinalizeResponse) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCRequestAnnouncementsResponse) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 result = 1; + // optional string announcement_title = 1; if (cached_has_bits & 0x00000001u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_result(), target); + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_announcement_title().data(), static_cast(this->_internal_announcement_title().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGCRequestAnnouncementsResponse.announcement_title"); + target = stream->WriteStringMaybeAliased( + 1, this->_internal_announcement_title(), target); } - // repeated uint64 item_ids = 2; - for (int i = 0, n = this->_internal_item_ids_size(); i < n; i++) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_item_ids(i), target); + // optional string announcement = 2; + if (cached_has_bits & 0x00000002u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_announcement().data(), static_cast(this->_internal_announcement().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGCRequestAnnouncementsResponse.announcement"); + target = stream->WriteStringMaybeAliased( + 2, this->_internal_announcement(), target); } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCStorePurchaseFinalizeResponse) - return target; + // optional string nextmatch_title = 3; + if (cached_has_bits & 0x00000004u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_nextmatch_title().data(), static_cast(this->_internal_nextmatch_title().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGCRequestAnnouncementsResponse.nextmatch_title"); + target = stream->WriteStringMaybeAliased( + 3, this->_internal_nextmatch_title(), target); + } + + // optional string nextmatch = 4; + if (cached_has_bits & 0x00000008u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_nextmatch().data(), static_cast(this->_internal_nextmatch().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGCRequestAnnouncementsResponse.nextmatch"); + target = stream->WriteStringMaybeAliased( + 4, this->_internal_nextmatch(), target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCRequestAnnouncementsResponse) + return target; } -size_t CMsgGCStorePurchaseFinalizeResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCStorePurchaseFinalizeResponse) +size_t CMsgGCRequestAnnouncementsResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCRequestAnnouncementsResponse) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated uint64 item_ids = 2; - { - size_t data_size = ::_pbi::WireFormatLite:: - UInt64Size(this->_impl_.item_ids_); - total_size += 1 * - ::_pbi::FromIntSize(this->_internal_item_ids_size()); - total_size += data_size; - } - - // optional uint32 result = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_result()); - } + if (cached_has_bits & 0x0000000fu) { + // optional string announcement_title = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_announcement_title()); + } + + // optional string announcement = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_announcement()); + } + + // optional string nextmatch_title = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_nextmatch_title()); + } + // optional string nextmatch = 4; + if (cached_has_bits & 0x00000008u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_nextmatch()); + } + + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCStorePurchaseFinalizeResponse::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCRequestAnnouncementsResponse::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCStorePurchaseFinalizeResponse::MergeImpl + CMsgGCRequestAnnouncementsResponse::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCStorePurchaseFinalizeResponse::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCRequestAnnouncementsResponse::GetClassData() const { return &_class_data_; } -void CMsgGCStorePurchaseFinalizeResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCStorePurchaseFinalizeResponse) +void CMsgGCRequestAnnouncementsResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCRequestAnnouncementsResponse) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - _this->_impl_.item_ids_.MergeFrom(from._impl_.item_ids_); - if (from._internal_has_result()) { - _this->_internal_set_result(from._internal_result()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x0000000fu) { + if (cached_has_bits & 0x00000001u) { + _this->_internal_set_announcement_title(from._internal_announcement_title()); + } + if (cached_has_bits & 0x00000002u) { + _this->_internal_set_announcement(from._internal_announcement()); + } + if (cached_has_bits & 0x00000004u) { + _this->_internal_set_nextmatch_title(from._internal_nextmatch_title()); + } + if (cached_has_bits & 0x00000008u) { + _this->_internal_set_nextmatch(from._internal_nextmatch()); + } } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCStorePurchaseFinalizeResponse::CopyFrom(const CMsgGCStorePurchaseFinalizeResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCStorePurchaseFinalizeResponse) +void CMsgGCRequestAnnouncementsResponse::CopyFrom(const CMsgGCRequestAnnouncementsResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCRequestAnnouncementsResponse) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCStorePurchaseFinalizeResponse::IsInitialized() const { +bool CMsgGCRequestAnnouncementsResponse::IsInitialized() const { return true; } -void CMsgGCStorePurchaseFinalizeResponse::InternalSwap(CMsgGCStorePurchaseFinalizeResponse* other) { +void CMsgGCRequestAnnouncementsResponse::InternalSwap(CMsgGCRequestAnnouncementsResponse* other) { using std::swap; + auto* lhs_arena = GetArenaForAllocation(); + auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.item_ids_.InternalSwap(&other->_impl_.item_ids_); - swap(_impl_.result_, other->_impl_.result_); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.announcement_title_, lhs_arena, + &other->_impl_.announcement_title_, rhs_arena + ); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.announcement_, lhs_arena, + &other->_impl_.announcement_, rhs_arena + ); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.nextmatch_title_, lhs_arena, + &other->_impl_.nextmatch_title_, rhs_arena + ); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.nextmatch_, lhs_arena, + &other->_impl_.nextmatch_, rhs_arena + ); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCStorePurchaseFinalizeResponse::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCRequestAnnouncementsResponse::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[58]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[59]); } // =================================================================== -class CMsgGCBannedWordListRequest::_Internal { +class CMsgGCBannedWord::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_ban_list_group_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } + using HasBits = decltype(std::declval()._impl_._has_bits_); static void set_has_word_id(HasBits* has_bits) { (*has_bits)[0] |= 2u; } + static void set_has_word_type(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } + static void set_has_word(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } }; -CMsgGCBannedWordListRequest::CMsgGCBannedWordListRequest(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCBannedWord::CMsgGCBannedWord(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCBannedWordListRequest) + // @@protoc_insertion_point(arena_constructor:CMsgGCBannedWord) } -CMsgGCBannedWordListRequest::CMsgGCBannedWordListRequest(const CMsgGCBannedWordListRequest& from) +CMsgGCBannedWord::CMsgGCBannedWord(const CMsgGCBannedWord& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCBannedWordListRequest* const _this = this; (void)_this; + CMsgGCBannedWord* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.ban_list_group_id_){} - , decltype(_impl_.word_id_){}}; + , decltype(_impl_.word_){} + , decltype(_impl_.word_id_){} + , decltype(_impl_.word_type_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.ban_list_group_id_, &from._impl_.ban_list_group_id_, - static_cast(reinterpret_cast(&_impl_.word_id_) - - reinterpret_cast(&_impl_.ban_list_group_id_)) + sizeof(_impl_.word_id_)); - // @@protoc_insertion_point(copy_constructor:CMsgGCBannedWordListRequest) + _impl_.word_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.word_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_word()) { + _this->_impl_.word_.Set(from._internal_word(), + _this->GetArenaForAllocation()); + } + ::memcpy(&_impl_.word_id_, &from._impl_.word_id_, + static_cast(reinterpret_cast(&_impl_.word_type_) - + reinterpret_cast(&_impl_.word_id_)) + sizeof(_impl_.word_type_)); + // @@protoc_insertion_point(copy_constructor:CMsgGCBannedWord) } -inline void CMsgGCBannedWordListRequest::SharedCtor( +inline void CMsgGCBannedWord::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.ban_list_group_id_){0u} + , decltype(_impl_.word_){} , decltype(_impl_.word_id_){0u} + , decltype(_impl_.word_type_){0} }; + _impl_.word_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.word_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCBannedWordListRequest::~CMsgGCBannedWordListRequest() { - // @@protoc_insertion_point(destructor:CMsgGCBannedWordListRequest) +CMsgGCBannedWord::~CMsgGCBannedWord() { + // @@protoc_insertion_point(destructor:CMsgGCBannedWord) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -19775,52 +20181,72 @@ CMsgGCBannedWordListRequest::~CMsgGCBannedWordListRequest() { SharedDtor(); } -inline void CMsgGCBannedWordListRequest::SharedDtor() { +inline void CMsgGCBannedWord::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.word_.Destroy(); } -void CMsgGCBannedWordListRequest::SetCachedSize(int size) const { +void CMsgGCBannedWord::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCBannedWordListRequest::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCBannedWordListRequest) +void CMsgGCBannedWord::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCBannedWord) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - ::memset(&_impl_.ban_list_group_id_, 0, static_cast( - reinterpret_cast(&_impl_.word_id_) - - reinterpret_cast(&_impl_.ban_list_group_id_)) + sizeof(_impl_.word_id_)); + if (cached_has_bits & 0x00000001u) { + _impl_.word_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000006u) { + ::memset(&_impl_.word_id_, 0, static_cast( + reinterpret_cast(&_impl_.word_type_) - + reinterpret_cast(&_impl_.word_id_)) + sizeof(_impl_.word_type_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCBannedWordListRequest::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCBannedWord::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 ban_list_group_id = 1; + // optional uint32 word_id = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_ban_list_group_id(&has_bits); - _impl_.ban_list_group_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_word_id(&has_bits); + _impl_.word_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 word_id = 2; + // optional .GC_BannedWordType word_type = 2 [default = GC_BANNED_WORD_DISABLE_WORD]; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_word_id(&has_bits); - _impl_.word_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + uint64_t val = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + CHK_(ptr); + if (PROTOBUF_PREDICT_TRUE(::GC_BannedWordType_IsValid(val))) { + _internal_set_word_type(static_cast<::GC_BannedWordType>(val)); + } else { + ::PROTOBUF_NAMESPACE_ID::internal::WriteVarint(2, val, mutable_unknown_fields()); + } + } else + goto handle_unusual; + continue; + // optional string word = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 26)) { + auto str = _internal_mutable_word(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCBannedWord.word"); + #endif // !NDEBUG } else goto handle_unusual; continue; @@ -19848,35 +20274,46 @@ const char* CMsgGCBannedWordListRequest::_InternalParse(const char* ptr, ::_pbi: #undef CHK_ } -uint8_t* CMsgGCBannedWordListRequest::_InternalSerialize( +uint8_t* CMsgGCBannedWord::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCBannedWordListRequest) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCBannedWord) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 ban_list_group_id = 1; - if (cached_has_bits & 0x00000001u) { + // optional uint32 word_id = 1; + if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_ban_list_group_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_word_id(), target); } - // optional uint32 word_id = 2; - if (cached_has_bits & 0x00000002u) { + // optional .GC_BannedWordType word_type = 2 [default = GC_BANNED_WORD_DISABLE_WORD]; + if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_word_id(), target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 2, this->_internal_word_type(), target); } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + // optional string word = 3; + if (cached_has_bits & 0x00000001u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_word().data(), static_cast(this->_internal_word().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGCBannedWord.word"); + target = stream->WriteStringMaybeAliased( + 3, this->_internal_word(), target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCBannedWordListRequest) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCBannedWord) return target; } -size_t CMsgGCBannedWordListRequest::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCBannedWordListRequest) +size_t CMsgGCBannedWord::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCBannedWord) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -19884,222 +20321,139 @@ size_t CMsgGCBannedWordListRequest::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - // optional uint32 ban_list_group_id = 1; + if (cached_has_bits & 0x00000007u) { + // optional string word = 3; if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_ban_list_group_id()); + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_word()); } - // optional uint32 word_id = 2; + // optional uint32 word_id = 1; if (cached_has_bits & 0x00000002u) { total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_word_id()); } + // optional .GC_BannedWordType word_type = 2 [default = GC_BANNED_WORD_DISABLE_WORD]; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this->_internal_word_type()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCBannedWordListRequest::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCBannedWord::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCBannedWordListRequest::MergeImpl + CMsgGCBannedWord::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCBannedWordListRequest::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCBannedWord::GetClassData() const { return &_class_data_; } -void CMsgGCBannedWordListRequest::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCBannedWordListRequest) +void CMsgGCBannedWord::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCBannedWord) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000007u) { if (cached_has_bits & 0x00000001u) { - _this->_impl_.ban_list_group_id_ = from._impl_.ban_list_group_id_; + _this->_internal_set_word(from._internal_word()); } if (cached_has_bits & 0x00000002u) { _this->_impl_.word_id_ = from._impl_.word_id_; } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.word_type_ = from._impl_.word_type_; + } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCBannedWordListRequest::CopyFrom(const CMsgGCBannedWordListRequest& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCBannedWordListRequest) +void CMsgGCBannedWord::CopyFrom(const CMsgGCBannedWord& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCBannedWord) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCBannedWordListRequest::IsInitialized() const { +bool CMsgGCBannedWord::IsInitialized() const { return true; } -void CMsgGCBannedWordListRequest::InternalSwap(CMsgGCBannedWordListRequest* other) { +void CMsgGCBannedWord::InternalSwap(CMsgGCBannedWord* other) { using std::swap; + auto* lhs_arena = GetArenaForAllocation(); + auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.word_, lhs_arena, + &other->_impl_.word_, rhs_arena + ); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgGCBannedWordListRequest, _impl_.word_id_) - + sizeof(CMsgGCBannedWordListRequest::_impl_.word_id_) - - PROTOBUF_FIELD_OFFSET(CMsgGCBannedWordListRequest, _impl_.ban_list_group_id_)>( - reinterpret_cast(&_impl_.ban_list_group_id_), - reinterpret_cast(&other->_impl_.ban_list_group_id_)); -} - -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCBannedWordListRequest::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[59]); -} - -// =================================================================== - -class CMsgGCRequestAnnouncements::_Internal { - public: -}; - -CMsgGCRequestAnnouncements::CMsgGCRequestAnnouncements(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned) - : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase(arena, is_message_owned) { - // @@protoc_insertion_point(arena_constructor:CMsgGCRequestAnnouncements) -} -CMsgGCRequestAnnouncements::CMsgGCRequestAnnouncements(const CMsgGCRequestAnnouncements& from) - : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase() { - CMsgGCRequestAnnouncements* const _this = this; (void)_this; - _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - // @@protoc_insertion_point(copy_constructor:CMsgGCRequestAnnouncements) + PROTOBUF_FIELD_OFFSET(CMsgGCBannedWord, _impl_.word_type_) + + sizeof(CMsgGCBannedWord::_impl_.word_type_) + - PROTOBUF_FIELD_OFFSET(CMsgGCBannedWord, _impl_.word_id_)>( + reinterpret_cast(&_impl_.word_id_), + reinterpret_cast(&other->_impl_.word_id_)); } - - - - -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCRequestAnnouncements::_class_data_ = { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl, - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl, -}; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCRequestAnnouncements::GetClassData() const { return &_class_data_; } - - - - - - - -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCRequestAnnouncements::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCBannedWord::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[60]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[60]); } // =================================================================== -class CMsgGCRequestAnnouncementsResponse::_Internal { +class CMsgGCBannedWordListResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_announcement_title(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_ban_list_group_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_announcement(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_nextmatch_title(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_nextmatch(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } }; -CMsgGCRequestAnnouncementsResponse::CMsgGCRequestAnnouncementsResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCBannedWordListResponse::CMsgGCBannedWordListResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCRequestAnnouncementsResponse) + // @@protoc_insertion_point(arena_constructor:CMsgGCBannedWordListResponse) } -CMsgGCRequestAnnouncementsResponse::CMsgGCRequestAnnouncementsResponse(const CMsgGCRequestAnnouncementsResponse& from) +CMsgGCBannedWordListResponse::CMsgGCBannedWordListResponse(const CMsgGCBannedWordListResponse& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCRequestAnnouncementsResponse* const _this = this; (void)_this; + CMsgGCBannedWordListResponse* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.announcement_title_){} - , decltype(_impl_.announcement_){} - , decltype(_impl_.nextmatch_title_){} - , decltype(_impl_.nextmatch_){}}; + , decltype(_impl_.word_list_){from._impl_.word_list_} + , decltype(_impl_.ban_list_group_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.announcement_title_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.announcement_title_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_announcement_title()) { - _this->_impl_.announcement_title_.Set(from._internal_announcement_title(), - _this->GetArenaForAllocation()); - } - _impl_.announcement_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.announcement_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_announcement()) { - _this->_impl_.announcement_.Set(from._internal_announcement(), - _this->GetArenaForAllocation()); - } - _impl_.nextmatch_title_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.nextmatch_title_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_nextmatch_title()) { - _this->_impl_.nextmatch_title_.Set(from._internal_nextmatch_title(), - _this->GetArenaForAllocation()); - } - _impl_.nextmatch_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.nextmatch_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_nextmatch()) { - _this->_impl_.nextmatch_.Set(from._internal_nextmatch(), - _this->GetArenaForAllocation()); - } - // @@protoc_insertion_point(copy_constructor:CMsgGCRequestAnnouncementsResponse) + _this->_impl_.ban_list_group_id_ = from._impl_.ban_list_group_id_; + // @@protoc_insertion_point(copy_constructor:CMsgGCBannedWordListResponse) } -inline void CMsgGCRequestAnnouncementsResponse::SharedCtor( +inline void CMsgGCBannedWordListResponse::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.announcement_title_){} - , decltype(_impl_.announcement_){} - , decltype(_impl_.nextmatch_title_){} - , decltype(_impl_.nextmatch_){} + , decltype(_impl_.word_list_){arena} + , decltype(_impl_.ban_list_group_id_){0u} }; - _impl_.announcement_title_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.announcement_title_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.announcement_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.announcement_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.nextmatch_title_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.nextmatch_title_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.nextmatch_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.nextmatch_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCRequestAnnouncementsResponse::~CMsgGCRequestAnnouncementsResponse() { - // @@protoc_insertion_point(destructor:CMsgGCRequestAnnouncementsResponse) +CMsgGCBannedWordListResponse::~CMsgGCBannedWordListResponse() { + // @@protoc_insertion_point(destructor:CMsgGCBannedWordListResponse) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -20107,95 +20461,53 @@ CMsgGCRequestAnnouncementsResponse::~CMsgGCRequestAnnouncementsResponse() { SharedDtor(); } -inline void CMsgGCRequestAnnouncementsResponse::SharedDtor() { +inline void CMsgGCBannedWordListResponse::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.announcement_title_.Destroy(); - _impl_.announcement_.Destroy(); - _impl_.nextmatch_title_.Destroy(); - _impl_.nextmatch_.Destroy(); + _impl_.word_list_.~RepeatedPtrField(); } -void CMsgGCRequestAnnouncementsResponse::SetCachedSize(int size) const { +void CMsgGCBannedWordListResponse::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCRequestAnnouncementsResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCRequestAnnouncementsResponse) +void CMsgGCBannedWordListResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCBannedWordListResponse) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - if (cached_has_bits & 0x00000001u) { - _impl_.announcement_title_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000002u) { - _impl_.announcement_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000004u) { - _impl_.nextmatch_title_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000008u) { - _impl_.nextmatch_.ClearNonDefaultToEmpty(); - } - } + _impl_.word_list_.Clear(); + _impl_.ban_list_group_id_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCRequestAnnouncementsResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCBannedWordListResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional string announcement_title = 1; + // optional uint32 ban_list_group_id = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - auto str = _internal_mutable_announcement_title(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_ban_list_group_id(&has_bits); + _impl_.ban_list_group_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCRequestAnnouncementsResponse.announcement_title"); - #endif // !NDEBUG } else goto handle_unusual; continue; - // optional string announcement = 2; + // repeated .CMsgGCBannedWord word_list = 2; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 18)) { - auto str = _internal_mutable_announcement(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); - CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCRequestAnnouncementsResponse.announcement"); - #endif // !NDEBUG - } else - goto handle_unusual; - continue; - // optional string nextmatch_title = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 26)) { - auto str = _internal_mutable_nextmatch_title(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); - CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCRequestAnnouncementsResponse.nextmatch_title"); - #endif // !NDEBUG - } else - goto handle_unusual; - continue; - // optional string nextmatch = 4; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 34)) { - auto str = _internal_mutable_nextmatch(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); - CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCRequestAnnouncementsResponse.nextmatch"); - #endif // !NDEBUG + ptr -= 1; + do { + ptr += 1; + ptr = ctx->ParseMessage(_internal_add_word_list(), ptr); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<18>(ptr)); } else goto handle_unusual; continue; @@ -20223,243 +20535,155 @@ const char* CMsgGCRequestAnnouncementsResponse::_InternalParse(const char* ptr, #undef CHK_ } -uint8_t* CMsgGCRequestAnnouncementsResponse::_InternalSerialize( +uint8_t* CMsgGCBannedWordListResponse::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCRequestAnnouncementsResponse) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCBannedWordListResponse) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional string announcement_title = 1; + // optional uint32 ban_list_group_id = 1; if (cached_has_bits & 0x00000001u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_announcement_title().data(), static_cast(this->_internal_announcement_title().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCRequestAnnouncementsResponse.announcement_title"); - target = stream->WriteStringMaybeAliased( - 1, this->_internal_announcement_title(), target); - } - - // optional string announcement = 2; - if (cached_has_bits & 0x00000002u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_announcement().data(), static_cast(this->_internal_announcement().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCRequestAnnouncementsResponse.announcement"); - target = stream->WriteStringMaybeAliased( - 2, this->_internal_announcement(), target); - } - - // optional string nextmatch_title = 3; - if (cached_has_bits & 0x00000004u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_nextmatch_title().data(), static_cast(this->_internal_nextmatch_title().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCRequestAnnouncementsResponse.nextmatch_title"); - target = stream->WriteStringMaybeAliased( - 3, this->_internal_nextmatch_title(), target); + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_ban_list_group_id(), target); } - // optional string nextmatch = 4; - if (cached_has_bits & 0x00000008u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_nextmatch().data(), static_cast(this->_internal_nextmatch().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCRequestAnnouncementsResponse.nextmatch"); - target = stream->WriteStringMaybeAliased( - 4, this->_internal_nextmatch(), target); + // repeated .CMsgGCBannedWord word_list = 2; + for (unsigned i = 0, + n = static_cast(this->_internal_word_list_size()); i < n; i++) { + const auto& repfield = this->_internal_word_list(i); + target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: + InternalWriteMessage(2, repfield, repfield.GetCachedSize(), target, stream); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCRequestAnnouncementsResponse) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCBannedWordListResponse) return target; } -size_t CMsgGCRequestAnnouncementsResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCRequestAnnouncementsResponse) +size_t CMsgGCBannedWordListResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCBannedWordListResponse) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - // optional string announcement_title = 1; - if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_announcement_title()); - } - - // optional string announcement = 2; - if (cached_has_bits & 0x00000002u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_announcement()); - } - - // optional string nextmatch_title = 3; - if (cached_has_bits & 0x00000004u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_nextmatch_title()); - } - - // optional string nextmatch = 4; - if (cached_has_bits & 0x00000008u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_nextmatch()); - } + // repeated .CMsgGCBannedWord word_list = 2; + total_size += 1UL * this->_internal_word_list_size(); + for (const auto& msg : this->_impl_.word_list_) { + total_size += + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); + } + // optional uint32 ban_list_group_id = 1; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_ban_list_group_id()); } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCRequestAnnouncementsResponse::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCBannedWordListResponse::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCRequestAnnouncementsResponse::MergeImpl + CMsgGCBannedWordListResponse::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCRequestAnnouncementsResponse::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCBannedWordListResponse::GetClassData() const { return &_class_data_; } -void CMsgGCRequestAnnouncementsResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCRequestAnnouncementsResponse) +void CMsgGCBannedWordListResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCBannedWordListResponse) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - if (cached_has_bits & 0x00000001u) { - _this->_internal_set_announcement_title(from._internal_announcement_title()); - } - if (cached_has_bits & 0x00000002u) { - _this->_internal_set_announcement(from._internal_announcement()); - } - if (cached_has_bits & 0x00000004u) { - _this->_internal_set_nextmatch_title(from._internal_nextmatch_title()); - } - if (cached_has_bits & 0x00000008u) { - _this->_internal_set_nextmatch(from._internal_nextmatch()); - } + _this->_impl_.word_list_.MergeFrom(from._impl_.word_list_); + if (from._internal_has_ban_list_group_id()) { + _this->_internal_set_ban_list_group_id(from._internal_ban_list_group_id()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCRequestAnnouncementsResponse::CopyFrom(const CMsgGCRequestAnnouncementsResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCRequestAnnouncementsResponse) +void CMsgGCBannedWordListResponse::CopyFrom(const CMsgGCBannedWordListResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCBannedWordListResponse) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCRequestAnnouncementsResponse::IsInitialized() const { +bool CMsgGCBannedWordListResponse::IsInitialized() const { return true; } -void CMsgGCRequestAnnouncementsResponse::InternalSwap(CMsgGCRequestAnnouncementsResponse* other) { +void CMsgGCBannedWordListResponse::InternalSwap(CMsgGCBannedWordListResponse* other) { using std::swap; - auto* lhs_arena = GetArenaForAllocation(); - auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.announcement_title_, lhs_arena, - &other->_impl_.announcement_title_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.announcement_, lhs_arena, - &other->_impl_.announcement_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.nextmatch_title_, lhs_arena, - &other->_impl_.nextmatch_title_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.nextmatch_, lhs_arena, - &other->_impl_.nextmatch_, rhs_arena - ); + _impl_.word_list_.InternalSwap(&other->_impl_.word_list_); + swap(_impl_.ban_list_group_id_, other->_impl_.ban_list_group_id_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCRequestAnnouncementsResponse::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCBannedWordListResponse::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[61]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[61]); } // =================================================================== -class CMsgGCBannedWord::_Internal { +class CMsgGCToGCBannedWordListBroadcast::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_word_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_word_type(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_word(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static const ::CMsgGCBannedWordListResponse& broadcast(const CMsgGCToGCBannedWordListBroadcast* msg); + static void set_has_broadcast(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCBannedWord::CMsgGCBannedWord(::PROTOBUF_NAMESPACE_ID::Arena* arena, +const ::CMsgGCBannedWordListResponse& +CMsgGCToGCBannedWordListBroadcast::_Internal::broadcast(const CMsgGCToGCBannedWordListBroadcast* msg) { + return *msg->_impl_.broadcast_; +} +CMsgGCToGCBannedWordListBroadcast::CMsgGCToGCBannedWordListBroadcast(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCBannedWord) + // @@protoc_insertion_point(arena_constructor:CMsgGCToGCBannedWordListBroadcast) } -CMsgGCBannedWord::CMsgGCBannedWord(const CMsgGCBannedWord& from) +CMsgGCToGCBannedWordListBroadcast::CMsgGCToGCBannedWordListBroadcast(const CMsgGCToGCBannedWordListBroadcast& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCBannedWord* const _this = this; (void)_this; + CMsgGCToGCBannedWordListBroadcast* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.word_){} - , decltype(_impl_.word_id_){} - , decltype(_impl_.word_type_){}}; + , decltype(_impl_.broadcast_){nullptr}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.word_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.word_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_word()) { - _this->_impl_.word_.Set(from._internal_word(), - _this->GetArenaForAllocation()); + if (from._internal_has_broadcast()) { + _this->_impl_.broadcast_ = new ::CMsgGCBannedWordListResponse(*from._impl_.broadcast_); } - ::memcpy(&_impl_.word_id_, &from._impl_.word_id_, - static_cast(reinterpret_cast(&_impl_.word_type_) - - reinterpret_cast(&_impl_.word_id_)) + sizeof(_impl_.word_type_)); - // @@protoc_insertion_point(copy_constructor:CMsgGCBannedWord) + // @@protoc_insertion_point(copy_constructor:CMsgGCToGCBannedWordListBroadcast) } -inline void CMsgGCBannedWord::SharedCtor( +inline void CMsgGCToGCBannedWordListBroadcast::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.word_){} - , decltype(_impl_.word_id_){0u} - , decltype(_impl_.word_type_){0} + , decltype(_impl_.broadcast_){nullptr} }; - _impl_.word_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.word_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCBannedWord::~CMsgGCBannedWord() { - // @@protoc_insertion_point(destructor:CMsgGCBannedWord) +CMsgGCToGCBannedWordListBroadcast::~CMsgGCToGCBannedWordListBroadcast() { + // @@protoc_insertion_point(destructor:CMsgGCToGCBannedWordListBroadcast) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -20467,72 +20691,42 @@ CMsgGCBannedWord::~CMsgGCBannedWord() { SharedDtor(); } -inline void CMsgGCBannedWord::SharedDtor() { +inline void CMsgGCToGCBannedWordListBroadcast::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.word_.Destroy(); + if (this != internal_default_instance()) delete _impl_.broadcast_; } -void CMsgGCBannedWord::SetCachedSize(int size) const { +void CMsgGCToGCBannedWordListBroadcast::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCBannedWord::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCBannedWord) +void CMsgGCToGCBannedWordListBroadcast::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCToGCBannedWordListBroadcast) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - _impl_.word_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000006u) { - ::memset(&_impl_.word_id_, 0, static_cast( - reinterpret_cast(&_impl_.word_type_) - - reinterpret_cast(&_impl_.word_id_)) + sizeof(_impl_.word_type_)); + GOOGLE_DCHECK(_impl_.broadcast_ != nullptr); + _impl_.broadcast_->Clear(); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCBannedWord::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCToGCBannedWordListBroadcast::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 word_id = 1; + // optional .CMsgGCBannedWordListResponse broadcast = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_word_id(&has_bits); - _impl_.word_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional .GC_BannedWordType word_type = 2 [default = GC_BANNED_WORD_DISABLE_WORD]; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - uint64_t val = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); - CHK_(ptr); - if (PROTOBUF_PREDICT_TRUE(::GC_BannedWordType_IsValid(val))) { - _internal_set_word_type(static_cast<::GC_BannedWordType>(val)); - } else { - ::PROTOBUF_NAMESPACE_ID::internal::WriteVarint(2, val, mutable_unknown_fields()); - } - } else - goto handle_unusual; - continue; - // optional string word = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 26)) { - auto str = _internal_mutable_word(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { + ptr = ctx->ParseMessage(_internal_mutable_broadcast(), ptr); CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCBannedWord.word"); - #endif // !NDEBUG } else goto handle_unusual; continue; @@ -20560,186 +20754,135 @@ const char* CMsgGCBannedWord::_InternalParse(const char* ptr, ::_pbi::ParseConte #undef CHK_ } -uint8_t* CMsgGCBannedWord::_InternalSerialize( +uint8_t* CMsgGCToGCBannedWordListBroadcast::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCBannedWord) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCBannedWordListBroadcast) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 word_id = 1; - if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_word_id(), target); - } - - // optional .GC_BannedWordType word_type = 2 [default = GC_BANNED_WORD_DISABLE_WORD]; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 2, this->_internal_word_type(), target); - } - - // optional string word = 3; + // optional .CMsgGCBannedWordListResponse broadcast = 1; if (cached_has_bits & 0x00000001u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_word().data(), static_cast(this->_internal_word().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCBannedWord.word"); - target = stream->WriteStringMaybeAliased( - 3, this->_internal_word(), target); + target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: + InternalWriteMessage(1, _Internal::broadcast(this), + _Internal::broadcast(this).GetCachedSize(), target, stream); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCBannedWord) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCBannedWordListBroadcast) return target; } -size_t CMsgGCBannedWord::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCBannedWord) +size_t CMsgGCToGCBannedWordListBroadcast::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCBannedWordListBroadcast) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // optional .CMsgGCBannedWordListResponse broadcast = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - // optional string word = 3; - if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_word()); - } - - // optional uint32 word_id = 1; - if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_word_id()); - } - - // optional .GC_BannedWordType word_type = 2 [default = GC_BANNED_WORD_DISABLE_WORD]; - if (cached_has_bits & 0x00000004u) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_word_type()); - } - + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize( + *_impl_.broadcast_); } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCBannedWord::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCBannedWordListBroadcast::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCBannedWord::MergeImpl + CMsgGCToGCBannedWordListBroadcast::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCBannedWord::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCBannedWordListBroadcast::GetClassData() const { return &_class_data_; } -void CMsgGCBannedWord::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCBannedWord) +void CMsgGCToGCBannedWordListBroadcast::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCBannedWordListBroadcast) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - if (cached_has_bits & 0x00000001u) { - _this->_internal_set_word(from._internal_word()); - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.word_id_ = from._impl_.word_id_; - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.word_type_ = from._impl_.word_type_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; + if (from._internal_has_broadcast()) { + _this->_internal_mutable_broadcast()->::CMsgGCBannedWordListResponse::MergeFrom( + from._internal_broadcast()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCBannedWord::CopyFrom(const CMsgGCBannedWord& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCBannedWord) +void CMsgGCToGCBannedWordListBroadcast::CopyFrom(const CMsgGCToGCBannedWordListBroadcast& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCBannedWordListBroadcast) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCBannedWord::IsInitialized() const { +bool CMsgGCToGCBannedWordListBroadcast::IsInitialized() const { return true; } -void CMsgGCBannedWord::InternalSwap(CMsgGCBannedWord* other) { +void CMsgGCToGCBannedWordListBroadcast::InternalSwap(CMsgGCToGCBannedWordListBroadcast* other) { using std::swap; - auto* lhs_arena = GetArenaForAllocation(); - auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.word_, lhs_arena, - &other->_impl_.word_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgGCBannedWord, _impl_.word_type_) - + sizeof(CMsgGCBannedWord::_impl_.word_type_) - - PROTOBUF_FIELD_OFFSET(CMsgGCBannedWord, _impl_.word_id_)>( - reinterpret_cast(&_impl_.word_id_), - reinterpret_cast(&other->_impl_.word_id_)); + swap(_impl_.broadcast_, other->_impl_.broadcast_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCBannedWord::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCBannedWordListBroadcast::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[62]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[62]); } // =================================================================== -class CMsgGCBannedWordListResponse::_Internal { +class CMsgGCToGCBannedWordListUpdated::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_ban_list_group_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_group_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCBannedWordListResponse::CMsgGCBannedWordListResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCToGCBannedWordListUpdated::CMsgGCToGCBannedWordListUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCBannedWordListResponse) + // @@protoc_insertion_point(arena_constructor:CMsgGCToGCBannedWordListUpdated) } -CMsgGCBannedWordListResponse::CMsgGCBannedWordListResponse(const CMsgGCBannedWordListResponse& from) +CMsgGCToGCBannedWordListUpdated::CMsgGCToGCBannedWordListUpdated(const CMsgGCToGCBannedWordListUpdated& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCBannedWordListResponse* const _this = this; (void)_this; + CMsgGCToGCBannedWordListUpdated* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.word_list_){from._impl_.word_list_} - , decltype(_impl_.ban_list_group_id_){}}; + , decltype(_impl_.group_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.ban_list_group_id_ = from._impl_.ban_list_group_id_; - // @@protoc_insertion_point(copy_constructor:CMsgGCBannedWordListResponse) + _this->_impl_.group_id_ = from._impl_.group_id_; + // @@protoc_insertion_point(copy_constructor:CMsgGCToGCBannedWordListUpdated) } -inline void CMsgGCBannedWordListResponse::SharedCtor( +inline void CMsgGCToGCBannedWordListUpdated::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.word_list_){arena} - , decltype(_impl_.ban_list_group_id_){0u} + , decltype(_impl_.group_id_){0u} }; } -CMsgGCBannedWordListResponse::~CMsgGCBannedWordListResponse() { - // @@protoc_insertion_point(destructor:CMsgGCBannedWordListResponse) +CMsgGCToGCBannedWordListUpdated::~CMsgGCToGCBannedWordListUpdated() { + // @@protoc_insertion_point(destructor:CMsgGCToGCBannedWordListUpdated) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -20747,56 +20890,41 @@ CMsgGCBannedWordListResponse::~CMsgGCBannedWordListResponse() { SharedDtor(); } -inline void CMsgGCBannedWordListResponse::SharedDtor() { +inline void CMsgGCToGCBannedWordListUpdated::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.word_list_.~RepeatedPtrField(); } -void CMsgGCBannedWordListResponse::SetCachedSize(int size) const { +void CMsgGCToGCBannedWordListUpdated::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCBannedWordListResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCBannedWordListResponse) +void CMsgGCToGCBannedWordListUpdated::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCToGCBannedWordListUpdated) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.word_list_.Clear(); - _impl_.ban_list_group_id_ = 0u; + _impl_.group_id_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCBannedWordListResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCToGCBannedWordListUpdated::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 ban_list_group_id = 1; + // optional uint32 group_id = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_ban_list_group_id(&has_bits); - _impl_.ban_list_group_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_group_id(&has_bits); + _impl_.group_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // repeated .CMsgGCBannedWord word_list = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 18)) { - ptr -= 1; - do { - ptr += 1; - ptr = ctx->ParseMessage(_internal_add_word_list(), ptr); - CHK_(ptr); - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<18>(ptr)); - } else - goto handle_unusual; - continue; default: goto handle_unusual; } // switch @@ -20821,155 +20949,138 @@ const char* CMsgGCBannedWordListResponse::_InternalParse(const char* ptr, ::_pbi #undef CHK_ } -uint8_t* CMsgGCBannedWordListResponse::_InternalSerialize( +uint8_t* CMsgGCToGCBannedWordListUpdated::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCBannedWordListResponse) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCBannedWordListUpdated) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 ban_list_group_id = 1; + // optional uint32 group_id = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_ban_list_group_id(), target); - } - - // repeated .CMsgGCBannedWord word_list = 2; - for (unsigned i = 0, - n = static_cast(this->_internal_word_list_size()); i < n; i++) { - const auto& repfield = this->_internal_word_list(i); - target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: - InternalWriteMessage(2, repfield, repfield.GetCachedSize(), target, stream); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_group_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCBannedWordListResponse) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCBannedWordListUpdated) return target; } -size_t CMsgGCBannedWordListResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCBannedWordListResponse) +size_t CMsgGCToGCBannedWordListUpdated::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCBannedWordListUpdated) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .CMsgGCBannedWord word_list = 2; - total_size += 1UL * this->_internal_word_list_size(); - for (const auto& msg : this->_impl_.word_list_) { - total_size += - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); - } - - // optional uint32 ban_list_group_id = 1; + // optional uint32 group_id = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_ban_list_group_id()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_group_id()); } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCBannedWordListResponse::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCBannedWordListUpdated::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCBannedWordListResponse::MergeImpl + CMsgGCToGCBannedWordListUpdated::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCBannedWordListResponse::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCBannedWordListUpdated::GetClassData() const { return &_class_data_; } -void CMsgGCBannedWordListResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCBannedWordListResponse) +void CMsgGCToGCBannedWordListUpdated::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCBannedWordListUpdated) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - _this->_impl_.word_list_.MergeFrom(from._impl_.word_list_); - if (from._internal_has_ban_list_group_id()) { - _this->_internal_set_ban_list_group_id(from._internal_ban_list_group_id()); + if (from._internal_has_group_id()) { + _this->_internal_set_group_id(from._internal_group_id()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCBannedWordListResponse::CopyFrom(const CMsgGCBannedWordListResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCBannedWordListResponse) +void CMsgGCToGCBannedWordListUpdated::CopyFrom(const CMsgGCToGCBannedWordListUpdated& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCBannedWordListUpdated) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCBannedWordListResponse::IsInitialized() const { +bool CMsgGCToGCBannedWordListUpdated::IsInitialized() const { return true; } -void CMsgGCBannedWordListResponse::InternalSwap(CMsgGCBannedWordListResponse* other) { +void CMsgGCToGCBannedWordListUpdated::InternalSwap(CMsgGCToGCBannedWordListUpdated* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.word_list_.InternalSwap(&other->_impl_.word_list_); - swap(_impl_.ban_list_group_id_, other->_impl_.ban_list_group_id_); + swap(_impl_.group_id_, other->_impl_.group_id_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCBannedWordListResponse::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCBannedWordListUpdated::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[63]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[63]); } // =================================================================== -class CMsgGCToGCBannedWordListBroadcast::_Internal { +class CMsgGCToGCDirtySDOCache::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static const ::CMsgGCBannedWordListResponse& broadcast(const CMsgGCToGCBannedWordListBroadcast* msg); - static void set_has_broadcast(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_sdo_type(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_key_uint64(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -const ::CMsgGCBannedWordListResponse& -CMsgGCToGCBannedWordListBroadcast::_Internal::broadcast(const CMsgGCToGCBannedWordListBroadcast* msg) { - return *msg->_impl_.broadcast_; -} -CMsgGCToGCBannedWordListBroadcast::CMsgGCToGCBannedWordListBroadcast(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCToGCDirtySDOCache::CMsgGCToGCDirtySDOCache(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCToGCBannedWordListBroadcast) + // @@protoc_insertion_point(arena_constructor:CMsgGCToGCDirtySDOCache) } -CMsgGCToGCBannedWordListBroadcast::CMsgGCToGCBannedWordListBroadcast(const CMsgGCToGCBannedWordListBroadcast& from) +CMsgGCToGCDirtySDOCache::CMsgGCToGCDirtySDOCache(const CMsgGCToGCDirtySDOCache& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCToGCBannedWordListBroadcast* const _this = this; (void)_this; + CMsgGCToGCDirtySDOCache* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.broadcast_){nullptr}}; + , decltype(_impl_.key_uint64_){} + , decltype(_impl_.sdo_type_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - if (from._internal_has_broadcast()) { - _this->_impl_.broadcast_ = new ::CMsgGCBannedWordListResponse(*from._impl_.broadcast_); - } - // @@protoc_insertion_point(copy_constructor:CMsgGCToGCBannedWordListBroadcast) + ::memcpy(&_impl_.key_uint64_, &from._impl_.key_uint64_, + static_cast(reinterpret_cast(&_impl_.sdo_type_) - + reinterpret_cast(&_impl_.key_uint64_)) + sizeof(_impl_.sdo_type_)); + // @@protoc_insertion_point(copy_constructor:CMsgGCToGCDirtySDOCache) } -inline void CMsgGCToGCBannedWordListBroadcast::SharedCtor( +inline void CMsgGCToGCDirtySDOCache::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.broadcast_){nullptr} + , decltype(_impl_.key_uint64_){uint64_t{0u}} + , decltype(_impl_.sdo_type_){0u} }; } -CMsgGCToGCBannedWordListBroadcast::~CMsgGCToGCBannedWordListBroadcast() { - // @@protoc_insertion_point(destructor:CMsgGCToGCBannedWordListBroadcast) +CMsgGCToGCDirtySDOCache::~CMsgGCToGCDirtySDOCache() { + // @@protoc_insertion_point(destructor:CMsgGCToGCDirtySDOCache) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -20977,41 +21088,51 @@ CMsgGCToGCBannedWordListBroadcast::~CMsgGCToGCBannedWordListBroadcast() { SharedDtor(); } -inline void CMsgGCToGCBannedWordListBroadcast::SharedDtor() { +inline void CMsgGCToGCDirtySDOCache::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - if (this != internal_default_instance()) delete _impl_.broadcast_; } -void CMsgGCToGCBannedWordListBroadcast::SetCachedSize(int size) const { +void CMsgGCToGCDirtySDOCache::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCToGCBannedWordListBroadcast::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCToGCBannedWordListBroadcast) +void CMsgGCToGCDirtySDOCache::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCToGCDirtySDOCache) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - GOOGLE_DCHECK(_impl_.broadcast_ != nullptr); - _impl_.broadcast_->Clear(); + if (cached_has_bits & 0x00000003u) { + ::memset(&_impl_.key_uint64_, 0, static_cast( + reinterpret_cast(&_impl_.sdo_type_) - + reinterpret_cast(&_impl_.key_uint64_)) + sizeof(_impl_.sdo_type_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCToGCBannedWordListBroadcast::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCToGCDirtySDOCache::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional .CMsgGCBannedWordListResponse broadcast = 1; + // optional uint32 sdo_type = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - ptr = ctx->ParseMessage(_internal_mutable_broadcast(), ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_sdo_type(&has_bits); + _impl_.sdo_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint64 key_uint64 = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_key_uint64(&has_bits); + _impl_.key_uint64_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -21040,135 +21161,158 @@ const char* CMsgGCToGCBannedWordListBroadcast::_InternalParse(const char* ptr, : #undef CHK_ } -uint8_t* CMsgGCToGCBannedWordListBroadcast::_InternalSerialize( +uint8_t* CMsgGCToGCDirtySDOCache::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCBannedWordListBroadcast) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCDirtySDOCache) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional .CMsgGCBannedWordListResponse broadcast = 1; + // optional uint32 sdo_type = 1; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_sdo_type(), target); + } + + // optional uint64 key_uint64 = 2; if (cached_has_bits & 0x00000001u) { - target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: - InternalWriteMessage(1, _Internal::broadcast(this), - _Internal::broadcast(this).GetCachedSize(), target, stream); + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_key_uint64(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCBannedWordListBroadcast) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCDirtySDOCache) return target; } -size_t CMsgGCToGCBannedWordListBroadcast::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCBannedWordListBroadcast) +size_t CMsgGCToGCDirtySDOCache::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCDirtySDOCache) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional .CMsgGCBannedWordListResponse broadcast = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize( - *_impl_.broadcast_); - } + if (cached_has_bits & 0x00000003u) { + // optional uint64 key_uint64 = 2; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_key_uint64()); + } + + // optional uint32 sdo_type = 1; + if (cached_has_bits & 0x00000002u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_sdo_type()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCBannedWordListBroadcast::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCDirtySDOCache::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCToGCBannedWordListBroadcast::MergeImpl + CMsgGCToGCDirtySDOCache::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCBannedWordListBroadcast::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCDirtySDOCache::GetClassData() const { return &_class_data_; } -void CMsgGCToGCBannedWordListBroadcast::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCBannedWordListBroadcast) +void CMsgGCToGCDirtySDOCache::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCDirtySDOCache) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (from._internal_has_broadcast()) { - _this->_internal_mutable_broadcast()->::CMsgGCBannedWordListResponse::MergeFrom( - from._internal_broadcast()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000001u) { + _this->_impl_.key_uint64_ = from._impl_.key_uint64_; + } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.sdo_type_ = from._impl_.sdo_type_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCToGCBannedWordListBroadcast::CopyFrom(const CMsgGCToGCBannedWordListBroadcast& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCBannedWordListBroadcast) +void CMsgGCToGCDirtySDOCache::CopyFrom(const CMsgGCToGCDirtySDOCache& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCDirtySDOCache) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCToGCBannedWordListBroadcast::IsInitialized() const { +bool CMsgGCToGCDirtySDOCache::IsInitialized() const { return true; } -void CMsgGCToGCBannedWordListBroadcast::InternalSwap(CMsgGCToGCBannedWordListBroadcast* other) { +void CMsgGCToGCDirtySDOCache::InternalSwap(CMsgGCToGCDirtySDOCache* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.broadcast_, other->_impl_.broadcast_); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgGCToGCDirtySDOCache, _impl_.sdo_type_) + + sizeof(CMsgGCToGCDirtySDOCache::_impl_.sdo_type_) + - PROTOBUF_FIELD_OFFSET(CMsgGCToGCDirtySDOCache, _impl_.key_uint64_)>( + reinterpret_cast(&_impl_.key_uint64_), + reinterpret_cast(&other->_impl_.key_uint64_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCBannedWordListBroadcast::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCDirtySDOCache::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[64]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[64]); } // =================================================================== -class CMsgGCToGCBannedWordListUpdated::_Internal { +class CMsgGCToGCDirtyMultipleSDOCache::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_group_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_sdo_type(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCToGCBannedWordListUpdated::CMsgGCToGCBannedWordListUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCToGCDirtyMultipleSDOCache::CMsgGCToGCDirtyMultipleSDOCache(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCToGCBannedWordListUpdated) + // @@protoc_insertion_point(arena_constructor:CMsgGCToGCDirtyMultipleSDOCache) } -CMsgGCToGCBannedWordListUpdated::CMsgGCToGCBannedWordListUpdated(const CMsgGCToGCBannedWordListUpdated& from) +CMsgGCToGCDirtyMultipleSDOCache::CMsgGCToGCDirtyMultipleSDOCache(const CMsgGCToGCDirtyMultipleSDOCache& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCToGCBannedWordListUpdated* const _this = this; (void)_this; + CMsgGCToGCDirtyMultipleSDOCache* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.group_id_){}}; + , decltype(_impl_.key_uint64_){from._impl_.key_uint64_} + , decltype(_impl_.sdo_type_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.group_id_ = from._impl_.group_id_; - // @@protoc_insertion_point(copy_constructor:CMsgGCToGCBannedWordListUpdated) + _this->_impl_.sdo_type_ = from._impl_.sdo_type_; + // @@protoc_insertion_point(copy_constructor:CMsgGCToGCDirtyMultipleSDOCache) } -inline void CMsgGCToGCBannedWordListUpdated::SharedCtor( +inline void CMsgGCToGCDirtyMultipleSDOCache::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.group_id_){0u} + , decltype(_impl_.key_uint64_){arena} + , decltype(_impl_.sdo_type_){0u} }; } -CMsgGCToGCBannedWordListUpdated::~CMsgGCToGCBannedWordListUpdated() { - // @@protoc_insertion_point(destructor:CMsgGCToGCBannedWordListUpdated) +CMsgGCToGCDirtyMultipleSDOCache::~CMsgGCToGCDirtyMultipleSDOCache() { + // @@protoc_insertion_point(destructor:CMsgGCToGCDirtyMultipleSDOCache) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -21176,37 +21320,55 @@ CMsgGCToGCBannedWordListUpdated::~CMsgGCToGCBannedWordListUpdated() { SharedDtor(); } -inline void CMsgGCToGCBannedWordListUpdated::SharedDtor() { +inline void CMsgGCToGCDirtyMultipleSDOCache::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.key_uint64_.~RepeatedField(); } -void CMsgGCToGCBannedWordListUpdated::SetCachedSize(int size) const { +void CMsgGCToGCDirtyMultipleSDOCache::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCToGCBannedWordListUpdated::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCToGCBannedWordListUpdated) +void CMsgGCToGCDirtyMultipleSDOCache::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCToGCDirtyMultipleSDOCache) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.group_id_ = 0u; + _impl_.key_uint64_.Clear(); + _impl_.sdo_type_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCToGCBannedWordListUpdated::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCToGCDirtyMultipleSDOCache::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 group_id = 1; + // optional uint32 sdo_type = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_group_id(&has_bits); - _impl_.group_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_sdo_type(&has_bits); + _impl_.sdo_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // repeated uint64 key_uint64 = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + ptr -= 1; + do { + ptr += 1; + _internal_add_key_uint64(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr)); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<16>(ptr)); + } else if (static_cast(tag) == 18) { + ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt64Parser(_internal_mutable_key_uint64(), ptr, ctx); CHK_(ptr); } else goto handle_unusual; @@ -21235,148 +21397,155 @@ const char* CMsgGCToGCBannedWordListUpdated::_InternalParse(const char* ptr, ::_ #undef CHK_ } -uint8_t* CMsgGCToGCBannedWordListUpdated::_InternalSerialize( +uint8_t* CMsgGCToGCDirtyMultipleSDOCache::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCBannedWordListUpdated) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCDirtyMultipleSDOCache) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 group_id = 1; + // optional uint32 sdo_type = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_group_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_sdo_type(), target); + } + + // repeated uint64 key_uint64 = 2; + for (int i = 0, n = this->_internal_key_uint64_size(); i < n; i++) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_key_uint64(i), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCBannedWordListUpdated) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCDirtyMultipleSDOCache) return target; } -size_t CMsgGCToGCBannedWordListUpdated::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCBannedWordListUpdated) +size_t CMsgGCToGCDirtyMultipleSDOCache::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCDirtyMultipleSDOCache) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional uint32 group_id = 1; + // repeated uint64 key_uint64 = 2; + { + size_t data_size = ::_pbi::WireFormatLite:: + UInt64Size(this->_impl_.key_uint64_); + total_size += 1 * + ::_pbi::FromIntSize(this->_internal_key_uint64_size()); + total_size += data_size; + } + + // optional uint32 sdo_type = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_group_id()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_sdo_type()); } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCBannedWordListUpdated::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCDirtyMultipleSDOCache::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCToGCBannedWordListUpdated::MergeImpl + CMsgGCToGCDirtyMultipleSDOCache::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCBannedWordListUpdated::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCDirtyMultipleSDOCache::GetClassData() const { return &_class_data_; } -void CMsgGCToGCBannedWordListUpdated::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCBannedWordListUpdated) +void CMsgGCToGCDirtyMultipleSDOCache::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCDirtyMultipleSDOCache) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (from._internal_has_group_id()) { - _this->_internal_set_group_id(from._internal_group_id()); + _this->_impl_.key_uint64_.MergeFrom(from._impl_.key_uint64_); + if (from._internal_has_sdo_type()) { + _this->_internal_set_sdo_type(from._internal_sdo_type()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCToGCBannedWordListUpdated::CopyFrom(const CMsgGCToGCBannedWordListUpdated& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCBannedWordListUpdated) +void CMsgGCToGCDirtyMultipleSDOCache::CopyFrom(const CMsgGCToGCDirtyMultipleSDOCache& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCDirtyMultipleSDOCache) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCToGCBannedWordListUpdated::IsInitialized() const { +bool CMsgGCToGCDirtyMultipleSDOCache::IsInitialized() const { return true; } -void CMsgGCToGCBannedWordListUpdated::InternalSwap(CMsgGCToGCBannedWordListUpdated* other) { +void CMsgGCToGCDirtyMultipleSDOCache::InternalSwap(CMsgGCToGCDirtyMultipleSDOCache* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.group_id_, other->_impl_.group_id_); + _impl_.key_uint64_.InternalSwap(&other->_impl_.key_uint64_); + swap(_impl_.sdo_type_, other->_impl_.sdo_type_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCBannedWordListUpdated::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCDirtyMultipleSDOCache::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[65]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[65]); } // =================================================================== -class CSOEconDefaultEquippedDefinitionInstanceClient::_Internal { +class CMsgGCCollectItem::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_account_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_collection_item_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_item_definition(HasBits* has_bits) { + static void set_has_subject_item_id(HasBits* has_bits) { (*has_bits)[0] |= 2u; } - static void set_has_class_id(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_slot_id(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } }; -CSOEconDefaultEquippedDefinitionInstanceClient::CSOEconDefaultEquippedDefinitionInstanceClient(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCCollectItem::CMsgGCCollectItem(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CSOEconDefaultEquippedDefinitionInstanceClient) + // @@protoc_insertion_point(arena_constructor:CMsgGCCollectItem) } -CSOEconDefaultEquippedDefinitionInstanceClient::CSOEconDefaultEquippedDefinitionInstanceClient(const CSOEconDefaultEquippedDefinitionInstanceClient& from) +CMsgGCCollectItem::CMsgGCCollectItem(const CMsgGCCollectItem& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CSOEconDefaultEquippedDefinitionInstanceClient* const _this = this; (void)_this; + CMsgGCCollectItem* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.account_id_){} - , decltype(_impl_.item_definition_){} - , decltype(_impl_.class_id_){} - , decltype(_impl_.slot_id_){}}; + , decltype(_impl_.collection_item_id_){} + , decltype(_impl_.subject_item_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, - static_cast(reinterpret_cast(&_impl_.slot_id_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.slot_id_)); - // @@protoc_insertion_point(copy_constructor:CSOEconDefaultEquippedDefinitionInstanceClient) + ::memcpy(&_impl_.collection_item_id_, &from._impl_.collection_item_id_, + static_cast(reinterpret_cast(&_impl_.subject_item_id_) - + reinterpret_cast(&_impl_.collection_item_id_)) + sizeof(_impl_.subject_item_id_)); + // @@protoc_insertion_point(copy_constructor:CMsgGCCollectItem) } -inline void CSOEconDefaultEquippedDefinitionInstanceClient::SharedCtor( +inline void CMsgGCCollectItem::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.account_id_){0u} - , decltype(_impl_.item_definition_){0u} - , decltype(_impl_.class_id_){0u} - , decltype(_impl_.slot_id_){0u} + , decltype(_impl_.collection_item_id_){uint64_t{0u}} + , decltype(_impl_.subject_item_id_){uint64_t{0u}} }; } -CSOEconDefaultEquippedDefinitionInstanceClient::~CSOEconDefaultEquippedDefinitionInstanceClient() { - // @@protoc_insertion_point(destructor:CSOEconDefaultEquippedDefinitionInstanceClient) +CMsgGCCollectItem::~CMsgGCCollectItem() { + // @@protoc_insertion_point(destructor:CMsgGCCollectItem) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -21384,69 +21553,51 @@ CSOEconDefaultEquippedDefinitionInstanceClient::~CSOEconDefaultEquippedDefinitio SharedDtor(); } -inline void CSOEconDefaultEquippedDefinitionInstanceClient::SharedDtor() { +inline void CMsgGCCollectItem::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CSOEconDefaultEquippedDefinitionInstanceClient::SetCachedSize(int size) const { +void CMsgGCCollectItem::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CSOEconDefaultEquippedDefinitionInstanceClient::Clear() { -// @@protoc_insertion_point(message_clear_start:CSOEconDefaultEquippedDefinitionInstanceClient) +void CMsgGCCollectItem::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCCollectItem) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - ::memset(&_impl_.account_id_, 0, static_cast( - reinterpret_cast(&_impl_.slot_id_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.slot_id_)); + if (cached_has_bits & 0x00000003u) { + ::memset(&_impl_.collection_item_id_, 0, static_cast( + reinterpret_cast(&_impl_.subject_item_id_) - + reinterpret_cast(&_impl_.collection_item_id_)) + sizeof(_impl_.subject_item_id_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CSOEconDefaultEquippedDefinitionInstanceClient::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCCollectItem::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 account_id = 1 [(.key_field) = true]; + // optional uint64 collection_item_id = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_account_id(&has_bits); - _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_collection_item_id(&has_bits); + _impl_.collection_item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 item_definition = 2; + // optional uint64 subject_item_id = 2; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_item_definition(&has_bits); - _impl_.item_definition_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 class_id = 3 [(.key_field) = true]; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_class_id(&has_bits); - _impl_.class_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 slot_id = 4 [(.key_field) = true]; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { - _Internal::set_has_slot_id(&has_bits); - _impl_.slot_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_subject_item_id(&has_bits); + _impl_.subject_item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -21475,47 +21626,35 @@ const char* CSOEconDefaultEquippedDefinitionInstanceClient::_InternalParse(const #undef CHK_ } -uint8_t* CSOEconDefaultEquippedDefinitionInstanceClient::_InternalSerialize( +uint8_t* CMsgGCCollectItem::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CSOEconDefaultEquippedDefinitionInstanceClient) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCCollectItem) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 account_id = 1 [(.key_field) = true]; + // optional uint64 collection_item_id = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(1, this->_internal_collection_item_id(), target); } - // optional uint32 item_definition = 2; + // optional uint64 subject_item_id = 2; if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_item_definition(), target); - } - - // optional uint32 class_id = 3 [(.key_field) = true]; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_class_id(), target); - } - - // optional uint32 slot_id = 4 [(.key_field) = true]; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_slot_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_subject_item_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CSOEconDefaultEquippedDefinitionInstanceClient) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCCollectItem) return target; } -size_t CSOEconDefaultEquippedDefinitionInstanceClient::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CSOEconDefaultEquippedDefinitionInstanceClient) +size_t CMsgGCCollectItem::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCCollectItem) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -21523,143 +21662,171 @@ size_t CSOEconDefaultEquippedDefinitionInstanceClient::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { - // optional uint32 account_id = 1 [(.key_field) = true]; + if (cached_has_bits & 0x00000003u) { + // optional uint64 collection_item_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_collection_item_id()); } - // optional uint32 item_definition = 2; + // optional uint64 subject_item_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_item_definition()); - } - - // optional uint32 class_id = 3 [(.key_field) = true]; - if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_class_id()); - } - - // optional uint32 slot_id = 4 [(.key_field) = true]; - if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_slot_id()); + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_subject_item_id()); } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconDefaultEquippedDefinitionInstanceClient::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCCollectItem::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CSOEconDefaultEquippedDefinitionInstanceClient::MergeImpl + CMsgGCCollectItem::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconDefaultEquippedDefinitionInstanceClient::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCCollectItem::GetClassData() const { return &_class_data_; } -void CSOEconDefaultEquippedDefinitionInstanceClient::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconDefaultEquippedDefinitionInstanceClient) +void CMsgGCCollectItem::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCCollectItem) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000000fu) { + if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { - _this->_impl_.account_id_ = from._impl_.account_id_; + _this->_impl_.collection_item_id_ = from._impl_.collection_item_id_; } if (cached_has_bits & 0x00000002u) { - _this->_impl_.item_definition_ = from._impl_.item_definition_; - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.class_id_ = from._impl_.class_id_; - } - if (cached_has_bits & 0x00000008u) { - _this->_impl_.slot_id_ = from._impl_.slot_id_; + _this->_impl_.subject_item_id_ = from._impl_.subject_item_id_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CSOEconDefaultEquippedDefinitionInstanceClient::CopyFrom(const CSOEconDefaultEquippedDefinitionInstanceClient& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconDefaultEquippedDefinitionInstanceClient) +void CMsgGCCollectItem::CopyFrom(const CMsgGCCollectItem& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCCollectItem) if (&from == this) return; Clear(); MergeFrom(from); } -bool CSOEconDefaultEquippedDefinitionInstanceClient::IsInitialized() const { +bool CMsgGCCollectItem::IsInitialized() const { return true; } -void CSOEconDefaultEquippedDefinitionInstanceClient::InternalSwap(CSOEconDefaultEquippedDefinitionInstanceClient* other) { +void CMsgGCCollectItem::InternalSwap(CMsgGCCollectItem* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CSOEconDefaultEquippedDefinitionInstanceClient, _impl_.slot_id_) - + sizeof(CSOEconDefaultEquippedDefinitionInstanceClient::_impl_.slot_id_) - - PROTOBUF_FIELD_OFFSET(CSOEconDefaultEquippedDefinitionInstanceClient, _impl_.account_id_)>( - reinterpret_cast(&_impl_.account_id_), - reinterpret_cast(&other->_impl_.account_id_)); + PROTOBUF_FIELD_OFFSET(CMsgGCCollectItem, _impl_.subject_item_id_) + + sizeof(CMsgGCCollectItem::_impl_.subject_item_id_) + - PROTOBUF_FIELD_OFFSET(CMsgGCCollectItem, _impl_.collection_item_id_)>( + reinterpret_cast(&_impl_.collection_item_id_), + reinterpret_cast(&other->_impl_.collection_item_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CSOEconDefaultEquippedDefinitionInstanceClient::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCollectItem::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[66]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[66]); } // =================================================================== -class CMsgGCToGCDirtySDOCache::_Internal { +class CMsgSDONoMemcached::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_sdo_type(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_key_uint64(HasBits* has_bits) { +}; + +CMsgSDONoMemcached::CMsgSDONoMemcached(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase(arena, is_message_owned) { + // @@protoc_insertion_point(arena_constructor:CMsgSDONoMemcached) +} +CMsgSDONoMemcached::CMsgSDONoMemcached(const CMsgSDONoMemcached& from) + : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase() { + CMsgSDONoMemcached* const _this = this; (void)_this; + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + // @@protoc_insertion_point(copy_constructor:CMsgSDONoMemcached) +} + + + + + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgSDONoMemcached::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl, + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl, +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgSDONoMemcached::GetClassData() const { return &_class_data_; } + + + + + + + +::PROTOBUF_NAMESPACE_ID::Metadata CMsgSDONoMemcached::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[67]); +} + +// =================================================================== + +class CMsgGCToGCUpdateSQLKeyValue::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_key_name(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCToGCDirtySDOCache::CMsgGCToGCDirtySDOCache(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCToGCUpdateSQLKeyValue::CMsgGCToGCUpdateSQLKeyValue(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCToGCDirtySDOCache) + // @@protoc_insertion_point(arena_constructor:CMsgGCToGCUpdateSQLKeyValue) } -CMsgGCToGCDirtySDOCache::CMsgGCToGCDirtySDOCache(const CMsgGCToGCDirtySDOCache& from) +CMsgGCToGCUpdateSQLKeyValue::CMsgGCToGCUpdateSQLKeyValue(const CMsgGCToGCUpdateSQLKeyValue& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCToGCDirtySDOCache* const _this = this; (void)_this; + CMsgGCToGCUpdateSQLKeyValue* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.key_uint64_){} - , decltype(_impl_.sdo_type_){}}; + , decltype(_impl_.key_name_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.key_uint64_, &from._impl_.key_uint64_, - static_cast(reinterpret_cast(&_impl_.sdo_type_) - - reinterpret_cast(&_impl_.key_uint64_)) + sizeof(_impl_.sdo_type_)); - // @@protoc_insertion_point(copy_constructor:CMsgGCToGCDirtySDOCache) + _impl_.key_name_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.key_name_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_key_name()) { + _this->_impl_.key_name_.Set(from._internal_key_name(), + _this->GetArenaForAllocation()); + } + // @@protoc_insertion_point(copy_constructor:CMsgGCToGCUpdateSQLKeyValue) } -inline void CMsgGCToGCDirtySDOCache::SharedCtor( +inline void CMsgGCToGCUpdateSQLKeyValue::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.key_uint64_){uint64_t{0u}} - , decltype(_impl_.sdo_type_){0u} + , decltype(_impl_.key_name_){} }; + _impl_.key_name_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.key_name_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCToGCDirtySDOCache::~CMsgGCToGCDirtySDOCache() { - // @@protoc_insertion_point(destructor:CMsgGCToGCDirtySDOCache) +CMsgGCToGCUpdateSQLKeyValue::~CMsgGCToGCUpdateSQLKeyValue() { + // @@protoc_insertion_point(destructor:CMsgGCToGCUpdateSQLKeyValue) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -21667,52 +21834,45 @@ CMsgGCToGCDirtySDOCache::~CMsgGCToGCDirtySDOCache() { SharedDtor(); } -inline void CMsgGCToGCDirtySDOCache::SharedDtor() { +inline void CMsgGCToGCUpdateSQLKeyValue::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.key_name_.Destroy(); } -void CMsgGCToGCDirtySDOCache::SetCachedSize(int size) const { +void CMsgGCToGCUpdateSQLKeyValue::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCToGCDirtySDOCache::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCToGCDirtySDOCache) +void CMsgGCToGCUpdateSQLKeyValue::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCToGCUpdateSQLKeyValue) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - ::memset(&_impl_.key_uint64_, 0, static_cast( - reinterpret_cast(&_impl_.sdo_type_) - - reinterpret_cast(&_impl_.key_uint64_)) + sizeof(_impl_.sdo_type_)); + if (cached_has_bits & 0x00000001u) { + _impl_.key_name_.ClearNonDefaultToEmpty(); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCToGCDirtySDOCache::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCToGCUpdateSQLKeyValue::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 sdo_type = 1; + // optional string key_name = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_sdo_type(&has_bits); - _impl_.sdo_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint64 key_uint64 = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_key_uint64(&has_bits); - _impl_.key_uint64_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { + auto str = _internal_mutable_key_name(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGCToGCUpdateSQLKeyValue.key_name"); + #endif // !NDEBUG } else goto handle_unusual; continue; @@ -21740,158 +21900,142 @@ const char* CMsgGCToGCDirtySDOCache::_InternalParse(const char* ptr, ::_pbi::Par #undef CHK_ } -uint8_t* CMsgGCToGCDirtySDOCache::_InternalSerialize( +uint8_t* CMsgGCToGCUpdateSQLKeyValue::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCDirtySDOCache) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCUpdateSQLKeyValue) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 sdo_type = 1; - if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_sdo_type(), target); - } - - // optional uint64 key_uint64 = 2; + // optional string key_name = 1; if (cached_has_bits & 0x00000001u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_key_uint64(), target); + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_key_name().data(), static_cast(this->_internal_key_name().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGCToGCUpdateSQLKeyValue.key_name"); + target = stream->WriteStringMaybeAliased( + 1, this->_internal_key_name(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCDirtySDOCache) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCUpdateSQLKeyValue) return target; } -size_t CMsgGCToGCDirtySDOCache::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCDirtySDOCache) +size_t CMsgGCToGCUpdateSQLKeyValue::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCUpdateSQLKeyValue) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // optional string key_name = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - // optional uint64 key_uint64 = 2; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_key_uint64()); - } - - // optional uint32 sdo_type = 1; - if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_sdo_type()); - } - + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_key_name()); } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCDirtySDOCache::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCUpdateSQLKeyValue::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCToGCDirtySDOCache::MergeImpl + CMsgGCToGCUpdateSQLKeyValue::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCDirtySDOCache::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCUpdateSQLKeyValue::GetClassData() const { return &_class_data_; } -void CMsgGCToGCDirtySDOCache::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCDirtySDOCache) +void CMsgGCToGCUpdateSQLKeyValue::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCUpdateSQLKeyValue) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _this->_impl_.key_uint64_ = from._impl_.key_uint64_; - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.sdo_type_ = from._impl_.sdo_type_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; + if (from._internal_has_key_name()) { + _this->_internal_set_key_name(from._internal_key_name()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCToGCDirtySDOCache::CopyFrom(const CMsgGCToGCDirtySDOCache& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCDirtySDOCache) +void CMsgGCToGCUpdateSQLKeyValue::CopyFrom(const CMsgGCToGCUpdateSQLKeyValue& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCUpdateSQLKeyValue) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCToGCDirtySDOCache::IsInitialized() const { +bool CMsgGCToGCUpdateSQLKeyValue::IsInitialized() const { return true; } -void CMsgGCToGCDirtySDOCache::InternalSwap(CMsgGCToGCDirtySDOCache* other) { +void CMsgGCToGCUpdateSQLKeyValue::InternalSwap(CMsgGCToGCUpdateSQLKeyValue* other) { using std::swap; + auto* lhs_arena = GetArenaForAllocation(); + auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgGCToGCDirtySDOCache, _impl_.sdo_type_) - + sizeof(CMsgGCToGCDirtySDOCache::_impl_.sdo_type_) - - PROTOBUF_FIELD_OFFSET(CMsgGCToGCDirtySDOCache, _impl_.key_uint64_)>( - reinterpret_cast(&_impl_.key_uint64_), - reinterpret_cast(&other->_impl_.key_uint64_)); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.key_name_, lhs_arena, + &other->_impl_.key_name_, rhs_arena + ); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCDirtySDOCache::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCUpdateSQLKeyValue::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[67]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[68]); } // =================================================================== -class CMsgGCToGCDirtyMultipleSDOCache::_Internal { +class CMsgGCToGCIsTrustedServer::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_sdo_type(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_steam_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCToGCDirtyMultipleSDOCache::CMsgGCToGCDirtyMultipleSDOCache(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCToGCIsTrustedServer::CMsgGCToGCIsTrustedServer(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCToGCDirtyMultipleSDOCache) + // @@protoc_insertion_point(arena_constructor:CMsgGCToGCIsTrustedServer) } -CMsgGCToGCDirtyMultipleSDOCache::CMsgGCToGCDirtyMultipleSDOCache(const CMsgGCToGCDirtyMultipleSDOCache& from) +CMsgGCToGCIsTrustedServer::CMsgGCToGCIsTrustedServer(const CMsgGCToGCIsTrustedServer& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCToGCDirtyMultipleSDOCache* const _this = this; (void)_this; + CMsgGCToGCIsTrustedServer* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.key_uint64_){from._impl_.key_uint64_} - , decltype(_impl_.sdo_type_){}}; + , decltype(_impl_.steam_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.sdo_type_ = from._impl_.sdo_type_; - // @@protoc_insertion_point(copy_constructor:CMsgGCToGCDirtyMultipleSDOCache) + _this->_impl_.steam_id_ = from._impl_.steam_id_; + // @@protoc_insertion_point(copy_constructor:CMsgGCToGCIsTrustedServer) } -inline void CMsgGCToGCDirtyMultipleSDOCache::SharedCtor( +inline void CMsgGCToGCIsTrustedServer::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.key_uint64_){arena} - , decltype(_impl_.sdo_type_){0u} + , decltype(_impl_.steam_id_){uint64_t{0u}} }; } -CMsgGCToGCDirtyMultipleSDOCache::~CMsgGCToGCDirtyMultipleSDOCache() { - // @@protoc_insertion_point(destructor:CMsgGCToGCDirtyMultipleSDOCache) +CMsgGCToGCIsTrustedServer::~CMsgGCToGCIsTrustedServer() { + // @@protoc_insertion_point(destructor:CMsgGCToGCIsTrustedServer) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -21899,56 +22043,38 @@ CMsgGCToGCDirtyMultipleSDOCache::~CMsgGCToGCDirtyMultipleSDOCache() { SharedDtor(); } -inline void CMsgGCToGCDirtyMultipleSDOCache::SharedDtor() { +inline void CMsgGCToGCIsTrustedServer::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.key_uint64_.~RepeatedField(); } -void CMsgGCToGCDirtyMultipleSDOCache::SetCachedSize(int size) const { +void CMsgGCToGCIsTrustedServer::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCToGCDirtyMultipleSDOCache::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCToGCDirtyMultipleSDOCache) +void CMsgGCToGCIsTrustedServer::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCToGCIsTrustedServer) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.key_uint64_.Clear(); - _impl_.sdo_type_ = 0u; + _impl_.steam_id_ = uint64_t{0u}; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCToGCDirtyMultipleSDOCache::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCToGCIsTrustedServer::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 sdo_type = 1; + // optional fixed64 steam_id = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_sdo_type(&has_bits); - _impl_.sdo_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // repeated uint64 key_uint64 = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - ptr -= 1; - do { - ptr += 1; - _internal_add_key_uint64(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr)); - CHK_(ptr); - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<16>(ptr)); - } else if (static_cast(tag) == 18) { - ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt64Parser(_internal_mutable_key_uint64(), ptr, ctx); - CHK_(ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 9)) { + _Internal::set_has_steam_id(&has_bits); + _impl_.steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint64_t); } else goto handle_unusual; continue; @@ -21976,155 +22102,131 @@ const char* CMsgGCToGCDirtyMultipleSDOCache::_InternalParse(const char* ptr, ::_ #undef CHK_ } -uint8_t* CMsgGCToGCDirtyMultipleSDOCache::_InternalSerialize( +uint8_t* CMsgGCToGCIsTrustedServer::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCDirtyMultipleSDOCache) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCIsTrustedServer) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 sdo_type = 1; + // optional fixed64 steam_id = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_sdo_type(), target); - } - - // repeated uint64 key_uint64 = 2; - for (int i = 0, n = this->_internal_key_uint64_size(); i < n; i++) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_key_uint64(i), target); + target = ::_pbi::WireFormatLite::WriteFixed64ToArray(1, this->_internal_steam_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCDirtyMultipleSDOCache) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCIsTrustedServer) return target; } -size_t CMsgGCToGCDirtyMultipleSDOCache::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCDirtyMultipleSDOCache) +size_t CMsgGCToGCIsTrustedServer::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCIsTrustedServer) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated uint64 key_uint64 = 2; - { - size_t data_size = ::_pbi::WireFormatLite:: - UInt64Size(this->_impl_.key_uint64_); - total_size += 1 * - ::_pbi::FromIntSize(this->_internal_key_uint64_size()); - total_size += data_size; - } - - // optional uint32 sdo_type = 1; + // optional fixed64 steam_id = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_sdo_type()); + total_size += 1 + 8; } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCDirtyMultipleSDOCache::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCIsTrustedServer::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCToGCDirtyMultipleSDOCache::MergeImpl + CMsgGCToGCIsTrustedServer::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCDirtyMultipleSDOCache::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCIsTrustedServer::GetClassData() const { return &_class_data_; } -void CMsgGCToGCDirtyMultipleSDOCache::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCDirtyMultipleSDOCache) +void CMsgGCToGCIsTrustedServer::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCIsTrustedServer) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - _this->_impl_.key_uint64_.MergeFrom(from._impl_.key_uint64_); - if (from._internal_has_sdo_type()) { - _this->_internal_set_sdo_type(from._internal_sdo_type()); + if (from._internal_has_steam_id()) { + _this->_internal_set_steam_id(from._internal_steam_id()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCToGCDirtyMultipleSDOCache::CopyFrom(const CMsgGCToGCDirtyMultipleSDOCache& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCDirtyMultipleSDOCache) +void CMsgGCToGCIsTrustedServer::CopyFrom(const CMsgGCToGCIsTrustedServer& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCIsTrustedServer) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCToGCDirtyMultipleSDOCache::IsInitialized() const { +bool CMsgGCToGCIsTrustedServer::IsInitialized() const { return true; } -void CMsgGCToGCDirtyMultipleSDOCache::InternalSwap(CMsgGCToGCDirtyMultipleSDOCache* other) { +void CMsgGCToGCIsTrustedServer::InternalSwap(CMsgGCToGCIsTrustedServer* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - _impl_.key_uint64_.InternalSwap(&other->_impl_.key_uint64_); - swap(_impl_.sdo_type_, other->_impl_.sdo_type_); + swap(_impl_.steam_id_, other->_impl_.steam_id_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCDirtyMultipleSDOCache::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCIsTrustedServer::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[68]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[69]); } // =================================================================== -class CMsgGCCollectItem::_Internal { +class CMsgGCToGCIsTrustedServerResponse::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_collection_item_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_is_trusted(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_subject_item_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } }; -CMsgGCCollectItem::CMsgGCCollectItem(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCToGCIsTrustedServerResponse::CMsgGCToGCIsTrustedServerResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCCollectItem) + // @@protoc_insertion_point(arena_constructor:CMsgGCToGCIsTrustedServerResponse) } -CMsgGCCollectItem::CMsgGCCollectItem(const CMsgGCCollectItem& from) +CMsgGCToGCIsTrustedServerResponse::CMsgGCToGCIsTrustedServerResponse(const CMsgGCToGCIsTrustedServerResponse& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCCollectItem* const _this = this; (void)_this; + CMsgGCToGCIsTrustedServerResponse* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.collection_item_id_){} - , decltype(_impl_.subject_item_id_){}}; + , decltype(_impl_.is_trusted_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.collection_item_id_, &from._impl_.collection_item_id_, - static_cast(reinterpret_cast(&_impl_.subject_item_id_) - - reinterpret_cast(&_impl_.collection_item_id_)) + sizeof(_impl_.subject_item_id_)); - // @@protoc_insertion_point(copy_constructor:CMsgGCCollectItem) + _this->_impl_.is_trusted_ = from._impl_.is_trusted_; + // @@protoc_insertion_point(copy_constructor:CMsgGCToGCIsTrustedServerResponse) } -inline void CMsgGCCollectItem::SharedCtor( +inline void CMsgGCToGCIsTrustedServerResponse::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.collection_item_id_){uint64_t{0u}} - , decltype(_impl_.subject_item_id_){uint64_t{0u}} + , decltype(_impl_.is_trusted_){false} }; } -CMsgGCCollectItem::~CMsgGCCollectItem() { - // @@protoc_insertion_point(destructor:CMsgGCCollectItem) +CMsgGCToGCIsTrustedServerResponse::~CMsgGCToGCIsTrustedServerResponse() { + // @@protoc_insertion_point(destructor:CMsgGCToGCIsTrustedServerResponse) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -22132,51 +22234,37 @@ CMsgGCCollectItem::~CMsgGCCollectItem() { SharedDtor(); } -inline void CMsgGCCollectItem::SharedDtor() { +inline void CMsgGCToGCIsTrustedServerResponse::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgGCCollectItem::SetCachedSize(int size) const { +void CMsgGCToGCIsTrustedServerResponse::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCCollectItem::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCCollectItem) +void CMsgGCToGCIsTrustedServerResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCToGCIsTrustedServerResponse) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - ::memset(&_impl_.collection_item_id_, 0, static_cast( - reinterpret_cast(&_impl_.subject_item_id_) - - reinterpret_cast(&_impl_.collection_item_id_)) + sizeof(_impl_.subject_item_id_)); - } + _impl_.is_trusted_ = false; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCCollectItem::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCToGCIsTrustedServerResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint64 collection_item_id = 1; + // optional bool is_trusted = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_collection_item_id(&has_bits); - _impl_.collection_item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint64 subject_item_id = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_subject_item_id(&has_bits); - _impl_.subject_item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + _Internal::set_has_is_trusted(&has_bits); + _impl_.is_trusted_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -22205,207 +22293,142 @@ const char* CMsgGCCollectItem::_InternalParse(const char* ptr, ::_pbi::ParseCont #undef CHK_ } -uint8_t* CMsgGCCollectItem::_InternalSerialize( +uint8_t* CMsgGCToGCIsTrustedServerResponse::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCCollectItem) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCIsTrustedServerResponse) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint64 collection_item_id = 1; + // optional bool is_trusted = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(1, this->_internal_collection_item_id(), target); - } - - // optional uint64 subject_item_id = 2; - if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_subject_item_id(), target); + target = ::_pbi::WireFormatLite::WriteBoolToArray(1, this->_internal_is_trusted(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCCollectItem) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCIsTrustedServerResponse) return target; } -size_t CMsgGCCollectItem::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCCollectItem) +size_t CMsgGCToGCIsTrustedServerResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCIsTrustedServerResponse) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // optional bool is_trusted = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - // optional uint64 collection_item_id = 1; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_collection_item_id()); - } - - // optional uint64 subject_item_id = 2; - if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_subject_item_id()); - } - + if (cached_has_bits & 0x00000001u) { + total_size += 1 + 1; } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCCollectItem::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCIsTrustedServerResponse::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCCollectItem::MergeImpl + CMsgGCToGCIsTrustedServerResponse::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCCollectItem::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCIsTrustedServerResponse::GetClassData() const { return &_class_data_; } -void CMsgGCCollectItem::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCCollectItem) +void CMsgGCToGCIsTrustedServerResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCIsTrustedServerResponse) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _this->_impl_.collection_item_id_ = from._impl_.collection_item_id_; - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.subject_item_id_ = from._impl_.subject_item_id_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; + if (from._internal_has_is_trusted()) { + _this->_internal_set_is_trusted(from._internal_is_trusted()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCCollectItem::CopyFrom(const CMsgGCCollectItem& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCCollectItem) +void CMsgGCToGCIsTrustedServerResponse::CopyFrom(const CMsgGCToGCIsTrustedServerResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCIsTrustedServerResponse) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCCollectItem::IsInitialized() const { +bool CMsgGCToGCIsTrustedServerResponse::IsInitialized() const { return true; } -void CMsgGCCollectItem::InternalSwap(CMsgGCCollectItem* other) { +void CMsgGCToGCIsTrustedServerResponse::InternalSwap(CMsgGCToGCIsTrustedServerResponse* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgGCCollectItem, _impl_.subject_item_id_) - + sizeof(CMsgGCCollectItem::_impl_.subject_item_id_) - - PROTOBUF_FIELD_OFFSET(CMsgGCCollectItem, _impl_.collection_item_id_)>( - reinterpret_cast(&_impl_.collection_item_id_), - reinterpret_cast(&other->_impl_.collection_item_id_)); -} - -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCollectItem::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[69]); -} - -// =================================================================== - -class CMsgSDONoMemcached::_Internal { - public: -}; - -CMsgSDONoMemcached::CMsgSDONoMemcached(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned) - : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase(arena, is_message_owned) { - // @@protoc_insertion_point(arena_constructor:CMsgSDONoMemcached) -} -CMsgSDONoMemcached::CMsgSDONoMemcached(const CMsgSDONoMemcached& from) - : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase() { - CMsgSDONoMemcached* const _this = this; (void)_this; - _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - // @@protoc_insertion_point(copy_constructor:CMsgSDONoMemcached) + swap(_impl_.is_trusted_, other->_impl_.is_trusted_); } - - - - -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgSDONoMemcached::_class_data_ = { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl, - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl, -}; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgSDONoMemcached::GetClassData() const { return &_class_data_; } - - - - - - - -::PROTOBUF_NAMESPACE_ID::Metadata CMsgSDONoMemcached::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCIsTrustedServerResponse::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[70]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[70]); } // =================================================================== -class CMsgGCToGCUpdateSQLKeyValue::_Internal { +class CMsgGCToGCBroadcastConsoleCommand::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_key_name(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_con_command(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCToGCUpdateSQLKeyValue::CMsgGCToGCUpdateSQLKeyValue(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCToGCBroadcastConsoleCommand::CMsgGCToGCBroadcastConsoleCommand(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCToGCUpdateSQLKeyValue) + // @@protoc_insertion_point(arena_constructor:CMsgGCToGCBroadcastConsoleCommand) } -CMsgGCToGCUpdateSQLKeyValue::CMsgGCToGCUpdateSQLKeyValue(const CMsgGCToGCUpdateSQLKeyValue& from) +CMsgGCToGCBroadcastConsoleCommand::CMsgGCToGCBroadcastConsoleCommand(const CMsgGCToGCBroadcastConsoleCommand& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCToGCUpdateSQLKeyValue* const _this = this; (void)_this; + CMsgGCToGCBroadcastConsoleCommand* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.key_name_){}}; + , decltype(_impl_.con_command_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.key_name_.InitDefault(); + _impl_.con_command_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.key_name_.Set("", GetArenaForAllocation()); + _impl_.con_command_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_key_name()) { - _this->_impl_.key_name_.Set(from._internal_key_name(), + if (from._internal_has_con_command()) { + _this->_impl_.con_command_.Set(from._internal_con_command(), _this->GetArenaForAllocation()); } - // @@protoc_insertion_point(copy_constructor:CMsgGCToGCUpdateSQLKeyValue) + // @@protoc_insertion_point(copy_constructor:CMsgGCToGCBroadcastConsoleCommand) } -inline void CMsgGCToGCUpdateSQLKeyValue::SharedCtor( +inline void CMsgGCToGCBroadcastConsoleCommand::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.key_name_){} + , decltype(_impl_.con_command_){} }; - _impl_.key_name_.InitDefault(); + _impl_.con_command_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.key_name_.Set("", GetArenaForAllocation()); + _impl_.con_command_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCToGCUpdateSQLKeyValue::~CMsgGCToGCUpdateSQLKeyValue() { - // @@protoc_insertion_point(destructor:CMsgGCToGCUpdateSQLKeyValue) +CMsgGCToGCBroadcastConsoleCommand::~CMsgGCToGCBroadcastConsoleCommand() { + // @@protoc_insertion_point(destructor:CMsgGCToGCBroadcastConsoleCommand) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -22413,44 +22436,44 @@ CMsgGCToGCUpdateSQLKeyValue::~CMsgGCToGCUpdateSQLKeyValue() { SharedDtor(); } -inline void CMsgGCToGCUpdateSQLKeyValue::SharedDtor() { +inline void CMsgGCToGCBroadcastConsoleCommand::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.key_name_.Destroy(); + _impl_.con_command_.Destroy(); } -void CMsgGCToGCUpdateSQLKeyValue::SetCachedSize(int size) const { +void CMsgGCToGCBroadcastConsoleCommand::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCToGCUpdateSQLKeyValue::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCToGCUpdateSQLKeyValue) +void CMsgGCToGCBroadcastConsoleCommand::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCToGCBroadcastConsoleCommand) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - _impl_.key_name_.ClearNonDefaultToEmpty(); + _impl_.con_command_.ClearNonDefaultToEmpty(); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCToGCUpdateSQLKeyValue::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCToGCBroadcastConsoleCommand::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional string key_name = 1; + // optional string con_command = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - auto str = _internal_mutable_key_name(); + auto str = _internal_mutable_con_command(); ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); CHK_(ptr); #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCToGCUpdateSQLKeyValue.key_name"); + ::_pbi::VerifyUTF8(str, "CMsgGCToGCBroadcastConsoleCommand.con_command"); #endif // !NDEBUG } else goto handle_unusual; @@ -22479,142 +22502,142 @@ const char* CMsgGCToGCUpdateSQLKeyValue::_InternalParse(const char* ptr, ::_pbi: #undef CHK_ } -uint8_t* CMsgGCToGCUpdateSQLKeyValue::_InternalSerialize( +uint8_t* CMsgGCToGCBroadcastConsoleCommand::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCUpdateSQLKeyValue) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCBroadcastConsoleCommand) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional string key_name = 1; + // optional string con_command = 1; if (cached_has_bits & 0x00000001u) { ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_key_name().data(), static_cast(this->_internal_key_name().length()), + this->_internal_con_command().data(), static_cast(this->_internal_con_command().length()), ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCToGCUpdateSQLKeyValue.key_name"); + "CMsgGCToGCBroadcastConsoleCommand.con_command"); target = stream->WriteStringMaybeAliased( - 1, this->_internal_key_name(), target); + 1, this->_internal_con_command(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCUpdateSQLKeyValue) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCBroadcastConsoleCommand) return target; } -size_t CMsgGCToGCUpdateSQLKeyValue::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCUpdateSQLKeyValue) +size_t CMsgGCToGCBroadcastConsoleCommand::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCBroadcastConsoleCommand) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional string key_name = 1; + // optional string con_command = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_key_name()); + this->_internal_con_command()); } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCUpdateSQLKeyValue::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCBroadcastConsoleCommand::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCToGCUpdateSQLKeyValue::MergeImpl + CMsgGCToGCBroadcastConsoleCommand::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCUpdateSQLKeyValue::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCBroadcastConsoleCommand::GetClassData() const { return &_class_data_; } -void CMsgGCToGCUpdateSQLKeyValue::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCUpdateSQLKeyValue) +void CMsgGCToGCBroadcastConsoleCommand::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCBroadcastConsoleCommand) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (from._internal_has_key_name()) { - _this->_internal_set_key_name(from._internal_key_name()); + if (from._internal_has_con_command()) { + _this->_internal_set_con_command(from._internal_con_command()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCToGCUpdateSQLKeyValue::CopyFrom(const CMsgGCToGCUpdateSQLKeyValue& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCUpdateSQLKeyValue) +void CMsgGCToGCBroadcastConsoleCommand::CopyFrom(const CMsgGCToGCBroadcastConsoleCommand& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCBroadcastConsoleCommand) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCToGCUpdateSQLKeyValue::IsInitialized() const { +bool CMsgGCToGCBroadcastConsoleCommand::IsInitialized() const { return true; } -void CMsgGCToGCUpdateSQLKeyValue::InternalSwap(CMsgGCToGCUpdateSQLKeyValue* other) { +void CMsgGCToGCBroadcastConsoleCommand::InternalSwap(CMsgGCToGCBroadcastConsoleCommand* other) { using std::swap; auto* lhs_arena = GetArenaForAllocation(); auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.key_name_, lhs_arena, - &other->_impl_.key_name_, rhs_arena + &_impl_.con_command_, lhs_arena, + &other->_impl_.con_command_, rhs_arena ); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCUpdateSQLKeyValue::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCBroadcastConsoleCommand::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[71]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[71]); } // =================================================================== -class CMsgGCToGCIsTrustedServer::_Internal { +class CMsgGCServerVersionUpdated::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_steam_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_server_version(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCToGCIsTrustedServer::CMsgGCToGCIsTrustedServer(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCServerVersionUpdated::CMsgGCServerVersionUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCToGCIsTrustedServer) + // @@protoc_insertion_point(arena_constructor:CMsgGCServerVersionUpdated) } -CMsgGCToGCIsTrustedServer::CMsgGCToGCIsTrustedServer(const CMsgGCToGCIsTrustedServer& from) +CMsgGCServerVersionUpdated::CMsgGCServerVersionUpdated(const CMsgGCServerVersionUpdated& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCToGCIsTrustedServer* const _this = this; (void)_this; + CMsgGCServerVersionUpdated* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.steam_id_){}}; + , decltype(_impl_.server_version_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.steam_id_ = from._impl_.steam_id_; - // @@protoc_insertion_point(copy_constructor:CMsgGCToGCIsTrustedServer) + _this->_impl_.server_version_ = from._impl_.server_version_; + // @@protoc_insertion_point(copy_constructor:CMsgGCServerVersionUpdated) } -inline void CMsgGCToGCIsTrustedServer::SharedCtor( +inline void CMsgGCServerVersionUpdated::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.steam_id_){uint64_t{0u}} + , decltype(_impl_.server_version_){0u} }; } -CMsgGCToGCIsTrustedServer::~CMsgGCToGCIsTrustedServer() { - // @@protoc_insertion_point(destructor:CMsgGCToGCIsTrustedServer) +CMsgGCServerVersionUpdated::~CMsgGCServerVersionUpdated() { + // @@protoc_insertion_point(destructor:CMsgGCServerVersionUpdated) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -22622,38 +22645,38 @@ CMsgGCToGCIsTrustedServer::~CMsgGCToGCIsTrustedServer() { SharedDtor(); } -inline void CMsgGCToGCIsTrustedServer::SharedDtor() { +inline void CMsgGCServerVersionUpdated::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgGCToGCIsTrustedServer::SetCachedSize(int size) const { +void CMsgGCServerVersionUpdated::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCToGCIsTrustedServer::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCToGCIsTrustedServer) +void CMsgGCServerVersionUpdated::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCServerVersionUpdated) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.steam_id_ = uint64_t{0u}; + _impl_.server_version_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCToGCIsTrustedServer::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCServerVersionUpdated::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional fixed64 steam_id = 1; + // optional uint32 server_version = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 9)) { - _Internal::set_has_steam_id(&has_bits); - _impl_.steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint64_t); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_server_version(&has_bits); + _impl_.server_version_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); } else goto handle_unusual; continue; @@ -22681,131 +22704,131 @@ const char* CMsgGCToGCIsTrustedServer::_InternalParse(const char* ptr, ::_pbi::P #undef CHK_ } -uint8_t* CMsgGCToGCIsTrustedServer::_InternalSerialize( +uint8_t* CMsgGCServerVersionUpdated::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCIsTrustedServer) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCServerVersionUpdated) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional fixed64 steam_id = 1; + // optional uint32 server_version = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed64ToArray(1, this->_internal_steam_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_server_version(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCIsTrustedServer) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCServerVersionUpdated) return target; } -size_t CMsgGCToGCIsTrustedServer::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCIsTrustedServer) +size_t CMsgGCServerVersionUpdated::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCServerVersionUpdated) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional fixed64 steam_id = 1; + // optional uint32 server_version = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + 8; + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_server_version()); } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCIsTrustedServer::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCServerVersionUpdated::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCToGCIsTrustedServer::MergeImpl + CMsgGCServerVersionUpdated::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCIsTrustedServer::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCServerVersionUpdated::GetClassData() const { return &_class_data_; } -void CMsgGCToGCIsTrustedServer::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCIsTrustedServer) +void CMsgGCServerVersionUpdated::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCServerVersionUpdated) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (from._internal_has_steam_id()) { - _this->_internal_set_steam_id(from._internal_steam_id()); + if (from._internal_has_server_version()) { + _this->_internal_set_server_version(from._internal_server_version()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCToGCIsTrustedServer::CopyFrom(const CMsgGCToGCIsTrustedServer& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCIsTrustedServer) +void CMsgGCServerVersionUpdated::CopyFrom(const CMsgGCServerVersionUpdated& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCServerVersionUpdated) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCToGCIsTrustedServer::IsInitialized() const { +bool CMsgGCServerVersionUpdated::IsInitialized() const { return true; } -void CMsgGCToGCIsTrustedServer::InternalSwap(CMsgGCToGCIsTrustedServer* other) { +void CMsgGCServerVersionUpdated::InternalSwap(CMsgGCServerVersionUpdated* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.steam_id_, other->_impl_.steam_id_); + swap(_impl_.server_version_, other->_impl_.server_version_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCIsTrustedServer::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCServerVersionUpdated::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[72]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[72]); } // =================================================================== -class CMsgGCToGCIsTrustedServerResponse::_Internal { +class CMsgGCClientVersionUpdated::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_is_trusted(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_client_version(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CMsgGCToGCIsTrustedServerResponse::CMsgGCToGCIsTrustedServerResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCClientVersionUpdated::CMsgGCClientVersionUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCToGCIsTrustedServerResponse) + // @@protoc_insertion_point(arena_constructor:CMsgGCClientVersionUpdated) } -CMsgGCToGCIsTrustedServerResponse::CMsgGCToGCIsTrustedServerResponse(const CMsgGCToGCIsTrustedServerResponse& from) +CMsgGCClientVersionUpdated::CMsgGCClientVersionUpdated(const CMsgGCClientVersionUpdated& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCToGCIsTrustedServerResponse* const _this = this; (void)_this; + CMsgGCClientVersionUpdated* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.is_trusted_){}}; + , decltype(_impl_.client_version_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.is_trusted_ = from._impl_.is_trusted_; - // @@protoc_insertion_point(copy_constructor:CMsgGCToGCIsTrustedServerResponse) + _this->_impl_.client_version_ = from._impl_.client_version_; + // @@protoc_insertion_point(copy_constructor:CMsgGCClientVersionUpdated) } -inline void CMsgGCToGCIsTrustedServerResponse::SharedCtor( +inline void CMsgGCClientVersionUpdated::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.is_trusted_){false} + , decltype(_impl_.client_version_){0u} }; } -CMsgGCToGCIsTrustedServerResponse::~CMsgGCToGCIsTrustedServerResponse() { - // @@protoc_insertion_point(destructor:CMsgGCToGCIsTrustedServerResponse) +CMsgGCClientVersionUpdated::~CMsgGCClientVersionUpdated() { + // @@protoc_insertion_point(destructor:CMsgGCClientVersionUpdated) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -22813,37 +22836,37 @@ CMsgGCToGCIsTrustedServerResponse::~CMsgGCToGCIsTrustedServerResponse() { SharedDtor(); } -inline void CMsgGCToGCIsTrustedServerResponse::SharedDtor() { +inline void CMsgGCClientVersionUpdated::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgGCToGCIsTrustedServerResponse::SetCachedSize(int size) const { +void CMsgGCClientVersionUpdated::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCToGCIsTrustedServerResponse::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCToGCIsTrustedServerResponse) +void CMsgGCClientVersionUpdated::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCClientVersionUpdated) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.is_trusted_ = false; + _impl_.client_version_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCToGCIsTrustedServerResponse::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCClientVersionUpdated::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional bool is_trusted = 1; + // optional uint32 client_version = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_is_trusted(&has_bits); - _impl_.is_trusted_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + _Internal::set_has_client_version(&has_bits); + _impl_.client_version_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -22872,142 +22895,183 @@ const char* CMsgGCToGCIsTrustedServerResponse::_InternalParse(const char* ptr, : #undef CHK_ } -uint8_t* CMsgGCToGCIsTrustedServerResponse::_InternalSerialize( +uint8_t* CMsgGCClientVersionUpdated::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCIsTrustedServerResponse) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCClientVersionUpdated) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional bool is_trusted = 1; + // optional uint32 client_version = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray(1, this->_internal_is_trusted(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_client_version(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCIsTrustedServerResponse) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCClientVersionUpdated) return target; } -size_t CMsgGCToGCIsTrustedServerResponse::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCIsTrustedServerResponse) +size_t CMsgGCClientVersionUpdated::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCClientVersionUpdated) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional bool is_trusted = 1; + // optional uint32 client_version = 1; cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + 1; + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_client_version()); } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCIsTrustedServerResponse::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCClientVersionUpdated::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCToGCIsTrustedServerResponse::MergeImpl + CMsgGCClientVersionUpdated::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCIsTrustedServerResponse::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCClientVersionUpdated::GetClassData() const { return &_class_data_; } -void CMsgGCToGCIsTrustedServerResponse::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCIsTrustedServerResponse) +void CMsgGCClientVersionUpdated::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCClientVersionUpdated) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (from._internal_has_is_trusted()) { - _this->_internal_set_is_trusted(from._internal_is_trusted()); + if (from._internal_has_client_version()) { + _this->_internal_set_client_version(from._internal_client_version()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCToGCIsTrustedServerResponse::CopyFrom(const CMsgGCToGCIsTrustedServerResponse& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCIsTrustedServerResponse) +void CMsgGCClientVersionUpdated::CopyFrom(const CMsgGCClientVersionUpdated& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCClientVersionUpdated) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCToGCIsTrustedServerResponse::IsInitialized() const { +bool CMsgGCClientVersionUpdated::IsInitialized() const { return true; } -void CMsgGCToGCIsTrustedServerResponse::InternalSwap(CMsgGCToGCIsTrustedServerResponse* other) { +void CMsgGCClientVersionUpdated::InternalSwap(CMsgGCClientVersionUpdated* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.is_trusted_, other->_impl_.is_trusted_); + swap(_impl_.client_version_, other->_impl_.client_version_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCIsTrustedServerResponse::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCClientVersionUpdated::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[73]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[73]); } // =================================================================== -class CMsgGCToGCBroadcastConsoleCommand::_Internal { +class CMsgGCToGCWebAPIAccountChanged::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_con_command(HasBits* has_bits) { +}; + +CMsgGCToGCWebAPIAccountChanged::CMsgGCToGCWebAPIAccountChanged(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase(arena, is_message_owned) { + // @@protoc_insertion_point(arena_constructor:CMsgGCToGCWebAPIAccountChanged) +} +CMsgGCToGCWebAPIAccountChanged::CMsgGCToGCWebAPIAccountChanged(const CMsgGCToGCWebAPIAccountChanged& from) + : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase() { + CMsgGCToGCWebAPIAccountChanged* const _this = this; (void)_this; + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + // @@protoc_insertion_point(copy_constructor:CMsgGCToGCWebAPIAccountChanged) +} + + + + + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCWebAPIAccountChanged::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl, + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl, +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCWebAPIAccountChanged::GetClassData() const { return &_class_data_; } + + + + + + + +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCWebAPIAccountChanged::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[74]); +} + +// =================================================================== + +class CMsgGCToGCRequestPassportItemGrant::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_steam_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } + static void set_has_league_id(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_reward_flag(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } }; -CMsgGCToGCBroadcastConsoleCommand::CMsgGCToGCBroadcastConsoleCommand(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGCToGCRequestPassportItemGrant::CMsgGCToGCRequestPassportItemGrant(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCToGCBroadcastConsoleCommand) + // @@protoc_insertion_point(arena_constructor:CMsgGCToGCRequestPassportItemGrant) } -CMsgGCToGCBroadcastConsoleCommand::CMsgGCToGCBroadcastConsoleCommand(const CMsgGCToGCBroadcastConsoleCommand& from) +CMsgGCToGCRequestPassportItemGrant::CMsgGCToGCRequestPassportItemGrant(const CMsgGCToGCRequestPassportItemGrant& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCToGCBroadcastConsoleCommand* const _this = this; (void)_this; + CMsgGCToGCRequestPassportItemGrant* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.con_command_){}}; + , decltype(_impl_.steam_id_){} + , decltype(_impl_.league_id_){} + , decltype(_impl_.reward_flag_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.con_command_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.con_command_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_con_command()) { - _this->_impl_.con_command_.Set(from._internal_con_command(), - _this->GetArenaForAllocation()); - } - // @@protoc_insertion_point(copy_constructor:CMsgGCToGCBroadcastConsoleCommand) + ::memcpy(&_impl_.steam_id_, &from._impl_.steam_id_, + static_cast(reinterpret_cast(&_impl_.reward_flag_) - + reinterpret_cast(&_impl_.steam_id_)) + sizeof(_impl_.reward_flag_)); + // @@protoc_insertion_point(copy_constructor:CMsgGCToGCRequestPassportItemGrant) } -inline void CMsgGCToGCBroadcastConsoleCommand::SharedCtor( +inline void CMsgGCToGCRequestPassportItemGrant::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.con_command_){} + , decltype(_impl_.steam_id_){uint64_t{0u}} + , decltype(_impl_.league_id_){0u} + , decltype(_impl_.reward_flag_){0} }; - _impl_.con_command_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.con_command_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCToGCBroadcastConsoleCommand::~CMsgGCToGCBroadcastConsoleCommand() { - // @@protoc_insertion_point(destructor:CMsgGCToGCBroadcastConsoleCommand) +CMsgGCToGCRequestPassportItemGrant::~CMsgGCToGCRequestPassportItemGrant() { + // @@protoc_insertion_point(destructor:CMsgGCToGCRequestPassportItemGrant) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -23015,45 +23079,61 @@ CMsgGCToGCBroadcastConsoleCommand::~CMsgGCToGCBroadcastConsoleCommand() { SharedDtor(); } -inline void CMsgGCToGCBroadcastConsoleCommand::SharedDtor() { +inline void CMsgGCToGCRequestPassportItemGrant::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.con_command_.Destroy(); } -void CMsgGCToGCBroadcastConsoleCommand::SetCachedSize(int size) const { +void CMsgGCToGCRequestPassportItemGrant::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCToGCBroadcastConsoleCommand::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCToGCBroadcastConsoleCommand) +void CMsgGCToGCRequestPassportItemGrant::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGCToGCRequestPassportItemGrant) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.con_command_.ClearNonDefaultToEmpty(); + if (cached_has_bits & 0x00000007u) { + ::memset(&_impl_.steam_id_, 0, static_cast( + reinterpret_cast(&_impl_.reward_flag_) - + reinterpret_cast(&_impl_.steam_id_)) + sizeof(_impl_.reward_flag_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCToGCBroadcastConsoleCommand::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGCToGCRequestPassportItemGrant::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional string con_command = 1; + // optional fixed64 steam_id = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - auto str = _internal_mutable_con_command(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 9)) { + _Internal::set_has_steam_id(&has_bits); + _impl_.steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint64_t); + } else + goto handle_unusual; + continue; + // optional uint32 league_id = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_league_id(&has_bits); + _impl_.league_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional int32 reward_flag = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { + _Internal::set_has_reward_flag(&has_bits); + _impl_.reward_flag_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGCToGCBroadcastConsoleCommand.con_command"); - #endif // !NDEBUG } else goto handle_unusual; continue; @@ -23081,142 +23161,269 @@ const char* CMsgGCToGCBroadcastConsoleCommand::_InternalParse(const char* ptr, : #undef CHK_ } -uint8_t* CMsgGCToGCBroadcastConsoleCommand::_InternalSerialize( +uint8_t* CMsgGCToGCRequestPassportItemGrant::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCBroadcastConsoleCommand) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCRequestPassportItemGrant) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional string con_command = 1; + // optional fixed64 steam_id = 1; if (cached_has_bits & 0x00000001u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_con_command().data(), static_cast(this->_internal_con_command().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGCToGCBroadcastConsoleCommand.con_command"); - target = stream->WriteStringMaybeAliased( - 1, this->_internal_con_command(), target); + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed64ToArray(1, this->_internal_steam_id(), target); + } + + // optional uint32 league_id = 2; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_league_id(), target); + } + + // optional int32 reward_flag = 3; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(3, this->_internal_reward_flag(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCBroadcastConsoleCommand) + // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCRequestPassportItemGrant) return target; } -size_t CMsgGCToGCBroadcastConsoleCommand::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCBroadcastConsoleCommand) +size_t CMsgGCToGCRequestPassportItemGrant::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCRequestPassportItemGrant) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // optional string con_command = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_con_command()); - } + if (cached_has_bits & 0x00000007u) { + // optional fixed64 steam_id = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + 8; + } + + // optional uint32 league_id = 2; + if (cached_has_bits & 0x00000002u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_league_id()); + } + + // optional int32 reward_flag = 3; + if (cached_has_bits & 0x00000004u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_reward_flag()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCBroadcastConsoleCommand::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCRequestPassportItemGrant::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCToGCBroadcastConsoleCommand::MergeImpl + CMsgGCToGCRequestPassportItemGrant::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCBroadcastConsoleCommand::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCRequestPassportItemGrant::GetClassData() const { return &_class_data_; } -void CMsgGCToGCBroadcastConsoleCommand::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCBroadcastConsoleCommand) +void CMsgGCToGCRequestPassportItemGrant::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCRequestPassportItemGrant) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (from._internal_has_con_command()) { - _this->_internal_set_con_command(from._internal_con_command()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x00000001u) { + _this->_impl_.steam_id_ = from._impl_.steam_id_; + } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.league_id_ = from._impl_.league_id_; + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.reward_flag_ = from._impl_.reward_flag_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCToGCBroadcastConsoleCommand::CopyFrom(const CMsgGCToGCBroadcastConsoleCommand& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCBroadcastConsoleCommand) +void CMsgGCToGCRequestPassportItemGrant::CopyFrom(const CMsgGCToGCRequestPassportItemGrant& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCRequestPassportItemGrant) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCToGCBroadcastConsoleCommand::IsInitialized() const { +bool CMsgGCToGCRequestPassportItemGrant::IsInitialized() const { return true; } -void CMsgGCToGCBroadcastConsoleCommand::InternalSwap(CMsgGCToGCBroadcastConsoleCommand* other) { +void CMsgGCToGCRequestPassportItemGrant::InternalSwap(CMsgGCToGCRequestPassportItemGrant* other) { using std::swap; - auto* lhs_arena = GetArenaForAllocation(); - auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.con_command_, lhs_arena, - &other->_impl_.con_command_, rhs_arena - ); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgGCToGCRequestPassportItemGrant, _impl_.reward_flag_) + + sizeof(CMsgGCToGCRequestPassportItemGrant::_impl_.reward_flag_) + - PROTOBUF_FIELD_OFFSET(CMsgGCToGCRequestPassportItemGrant, _impl_.steam_id_)>( + reinterpret_cast(&_impl_.steam_id_), + reinterpret_cast(&other->_impl_.steam_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCBroadcastConsoleCommand::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCRequestPassportItemGrant::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[74]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[75]); } // =================================================================== -class CMsgGCServerVersionUpdated::_Internal { +class CMsgGameServerInfo::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_server_version(HasBits* has_bits) { - (*has_bits)[0] |= 1u; + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_server_public_ip_addr(HasBits* has_bits) { + (*has_bits)[0] |= 2u; } -}; + static void set_has_server_private_ip_addr(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } + static void set_has_server_port(HasBits* has_bits) { + (*has_bits)[0] |= 8u; + } + static void set_has_server_tv_port(HasBits* has_bits) { + (*has_bits)[0] |= 16u; + } + static void set_has_server_key(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } + static void set_has_server_hibernation(HasBits* has_bits) { + (*has_bits)[0] |= 32u; + } + static void set_has_server_type(HasBits* has_bits) { + (*has_bits)[0] |= 64u; + } + static void set_has_server_region(HasBits* has_bits) { + (*has_bits)[0] |= 128u; + } + static void set_has_server_loadavg(HasBits* has_bits) { + (*has_bits)[0] |= 256u; + } + static void set_has_server_tv_broadcast_time(HasBits* has_bits) { + (*has_bits)[0] |= 512u; + } + static void set_has_server_game_time(HasBits* has_bits) { + (*has_bits)[0] |= 1024u; + } + static void set_has_server_relay_connected_steam_id(HasBits* has_bits) { + (*has_bits)[0] |= 2048u; + } + static void set_has_relay_slots_max(HasBits* has_bits) { + (*has_bits)[0] |= 4096u; + } + static void set_has_relays_connected(HasBits* has_bits) { + (*has_bits)[0] |= 8192u; + } + static void set_has_relay_clients_connected(HasBits* has_bits) { + (*has_bits)[0] |= 32768u; + } + static void set_has_relayed_game_server_steam_id(HasBits* has_bits) { + (*has_bits)[0] |= 16384u; + } + static void set_has_parent_relay_count(HasBits* has_bits) { + (*has_bits)[0] |= 65536u; + } + static void set_has_tv_secret_code(HasBits* has_bits) { + (*has_bits)[0] |= 131072u; + } +}; -CMsgGCServerVersionUpdated::CMsgGCServerVersionUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgGameServerInfo::CMsgGameServerInfo(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCServerVersionUpdated) + // @@protoc_insertion_point(arena_constructor:CMsgGameServerInfo) } -CMsgGCServerVersionUpdated::CMsgGCServerVersionUpdated(const CMsgGCServerVersionUpdated& from) +CMsgGameServerInfo::CMsgGameServerInfo(const CMsgGameServerInfo& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCServerVersionUpdated* const _this = this; (void)_this; + CMsgGameServerInfo* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.server_version_){}}; + , decltype(_impl_.server_key_){} + , decltype(_impl_.server_public_ip_addr_){} + , decltype(_impl_.server_private_ip_addr_){} + , decltype(_impl_.server_port_){} + , decltype(_impl_.server_tv_port_){} + , decltype(_impl_.server_hibernation_){} + , decltype(_impl_.server_type_){} + , decltype(_impl_.server_region_){} + , decltype(_impl_.server_loadavg_){} + , decltype(_impl_.server_tv_broadcast_time_){} + , decltype(_impl_.server_game_time_){} + , decltype(_impl_.server_relay_connected_steam_id_){} + , decltype(_impl_.relay_slots_max_){} + , decltype(_impl_.relays_connected_){} + , decltype(_impl_.relayed_game_server_steam_id_){} + , decltype(_impl_.relay_clients_connected_){} + , decltype(_impl_.parent_relay_count_){} + , decltype(_impl_.tv_secret_code_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.server_version_ = from._impl_.server_version_; - // @@protoc_insertion_point(copy_constructor:CMsgGCServerVersionUpdated) + _impl_.server_key_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.server_key_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_server_key()) { + _this->_impl_.server_key_.Set(from._internal_server_key(), + _this->GetArenaForAllocation()); + } + ::memcpy(&_impl_.server_public_ip_addr_, &from._impl_.server_public_ip_addr_, + static_cast(reinterpret_cast(&_impl_.tv_secret_code_) - + reinterpret_cast(&_impl_.server_public_ip_addr_)) + sizeof(_impl_.tv_secret_code_)); + // @@protoc_insertion_point(copy_constructor:CMsgGameServerInfo) } -inline void CMsgGCServerVersionUpdated::SharedCtor( +inline void CMsgGameServerInfo::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.server_version_){0u} + , decltype(_impl_.server_key_){} + , decltype(_impl_.server_public_ip_addr_){0u} + , decltype(_impl_.server_private_ip_addr_){0u} + , decltype(_impl_.server_port_){0u} + , decltype(_impl_.server_tv_port_){0u} + , decltype(_impl_.server_hibernation_){false} + , decltype(_impl_.server_type_){0} + , decltype(_impl_.server_region_){0u} + , decltype(_impl_.server_loadavg_){0} + , decltype(_impl_.server_tv_broadcast_time_){0} + , decltype(_impl_.server_game_time_){0} + , decltype(_impl_.server_relay_connected_steam_id_){uint64_t{0u}} + , decltype(_impl_.relay_slots_max_){0u} + , decltype(_impl_.relays_connected_){0} + , decltype(_impl_.relayed_game_server_steam_id_){uint64_t{0u}} + , decltype(_impl_.relay_clients_connected_){0} + , decltype(_impl_.parent_relay_count_){0u} + , decltype(_impl_.tv_secret_code_){uint64_t{0u}} }; + _impl_.server_key_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.server_key_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CMsgGCServerVersionUpdated::~CMsgGCServerVersionUpdated() { - // @@protoc_insertion_point(destructor:CMsgGCServerVersionUpdated) +CMsgGameServerInfo::~CMsgGameServerInfo() { + // @@protoc_insertion_point(destructor:CMsgGameServerInfo) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -23224,232 +23431,220 @@ CMsgGCServerVersionUpdated::~CMsgGCServerVersionUpdated() { SharedDtor(); } -inline void CMsgGCServerVersionUpdated::SharedDtor() { +inline void CMsgGameServerInfo::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.server_key_.Destroy(); } -void CMsgGCServerVersionUpdated::SetCachedSize(int size) const { +void CMsgGameServerInfo::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCServerVersionUpdated::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCServerVersionUpdated) +void CMsgGameServerInfo::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgGameServerInfo) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.server_version_ = 0u; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + _impl_.server_key_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x000000feu) { + ::memset(&_impl_.server_public_ip_addr_, 0, static_cast( + reinterpret_cast(&_impl_.server_region_) - + reinterpret_cast(&_impl_.server_public_ip_addr_)) + sizeof(_impl_.server_region_)); + } + if (cached_has_bits & 0x0000ff00u) { + ::memset(&_impl_.server_loadavg_, 0, static_cast( + reinterpret_cast(&_impl_.relay_clients_connected_) - + reinterpret_cast(&_impl_.server_loadavg_)) + sizeof(_impl_.relay_clients_connected_)); + } + if (cached_has_bits & 0x00030000u) { + ::memset(&_impl_.parent_relay_count_, 0, static_cast( + reinterpret_cast(&_impl_.tv_secret_code_) - + reinterpret_cast(&_impl_.parent_relay_count_)) + sizeof(_impl_.tv_secret_code_)); + } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCServerVersionUpdated::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgGameServerInfo::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 server_version = 1; + // optional fixed32 server_public_ip_addr = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_server_version(&has_bits); - _impl_.server_version_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 13)) { + _Internal::set_has_server_public_ip_addr(&has_bits); + _impl_.server_public_ip_addr_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint32_t); + } else + goto handle_unusual; + continue; + // optional fixed32 server_private_ip_addr = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 21)) { + _Internal::set_has_server_private_ip_addr(&has_bits); + _impl_.server_private_ip_addr_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint32_t); + } else + goto handle_unusual; + continue; + // optional uint32 server_port = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { + _Internal::set_has_server_port(&has_bits); + _impl_.server_port_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - default: - goto handle_unusual; - } // switch - handle_unusual: - if ((tag == 0) || ((tag & 7) == 4)) { - CHK_(ptr); - ctx->SetLastTag(tag); - goto message_done; - } - ptr = UnknownFieldParse( - tag, - _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), - ptr, ctx); - CHK_(ptr != nullptr); - } // while -message_done: - _impl_._has_bits_.Or(has_bits); - return ptr; -failure: - ptr = nullptr; - goto message_done; -#undef CHK_ -} - -uint8_t* CMsgGCServerVersionUpdated::_InternalSerialize( - uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCServerVersionUpdated) - uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 server_version = 1; - if (cached_has_bits & 0x00000001u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_server_version(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCServerVersionUpdated) - return target; -} - -size_t CMsgGCServerVersionUpdated::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCServerVersionUpdated) - size_t total_size = 0; - - uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // optional uint32 server_version = 1; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_server_version()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCServerVersionUpdated::_class_data_ = { - ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCServerVersionUpdated::MergeImpl -}; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCServerVersionUpdated::GetClassData() const { return &_class_data_; } - - -void CMsgGCServerVersionUpdated::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCServerVersionUpdated) - GOOGLE_DCHECK_NE(&from, _this); - uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_has_server_version()) { - _this->_internal_set_server_version(from._internal_server_version()); - } - _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); -} - -void CMsgGCServerVersionUpdated::CopyFrom(const CMsgGCServerVersionUpdated& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCServerVersionUpdated) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -bool CMsgGCServerVersionUpdated::IsInitialized() const { - return true; -} - -void CMsgGCServerVersionUpdated::InternalSwap(CMsgGCServerVersionUpdated* other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.server_version_, other->_impl_.server_version_); -} - -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCServerVersionUpdated::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[75]); -} - -// =================================================================== - -class CMsgGCClientVersionUpdated::_Internal { - public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_client_version(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } -}; - -CMsgGCClientVersionUpdated::CMsgGCClientVersionUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned) - : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { - SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCClientVersionUpdated) -} -CMsgGCClientVersionUpdated::CMsgGCClientVersionUpdated(const CMsgGCClientVersionUpdated& from) - : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCClientVersionUpdated* const _this = this; (void)_this; - new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){from._impl_._has_bits_} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.client_version_){}}; - - _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.client_version_ = from._impl_.client_version_; - // @@protoc_insertion_point(copy_constructor:CMsgGCClientVersionUpdated) -} - -inline void CMsgGCClientVersionUpdated::SharedCtor( - ::_pb::Arena* arena, bool is_message_owned) { - (void)arena; - (void)is_message_owned; - new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.client_version_){0u} - }; -} - -CMsgGCClientVersionUpdated::~CMsgGCClientVersionUpdated() { - // @@protoc_insertion_point(destructor:CMsgGCClientVersionUpdated) - if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { - (void)arena; - return; - } - SharedDtor(); -} - -inline void CMsgGCClientVersionUpdated::SharedDtor() { - GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); -} - -void CMsgGCClientVersionUpdated::SetCachedSize(int size) const { - _impl_._cached_size_.Set(size); -} - -void CMsgGCClientVersionUpdated::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCClientVersionUpdated) - uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.client_version_ = 0u; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); -} - -const char* CMsgGCClientVersionUpdated::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { -#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure - _Internal::HasBits has_bits{}; - while (!ctx->Done(&ptr)) { - uint32_t tag; - ptr = ::_pbi::ReadTag(ptr, &tag); - switch (tag >> 3) { - // optional uint32 client_version = 1; - case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_client_version(&has_bits); - _impl_.client_version_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + // optional uint32 server_tv_port = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { + _Internal::set_has_server_tv_port(&has_bits); + _impl_.server_tv_port_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional string server_key = 5; + case 5: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 42)) { + auto str = _internal_mutable_server_key(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgGameServerInfo.server_key"); + #endif // !NDEBUG + } else + goto handle_unusual; + continue; + // optional bool server_hibernation = 6; + case 6: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 48)) { + _Internal::set_has_server_hibernation(&has_bits); + _impl_.server_hibernation_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional .CMsgGameServerInfo.ServerType server_type = 7 [default = UNSPECIFIED]; + case 7: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 56)) { + uint64_t val = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + CHK_(ptr); + if (PROTOBUF_PREDICT_TRUE(::CMsgGameServerInfo_ServerType_IsValid(val))) { + _internal_set_server_type(static_cast<::CMsgGameServerInfo_ServerType>(val)); + } else { + ::PROTOBUF_NAMESPACE_ID::internal::WriteVarint(7, val, mutable_unknown_fields()); + } + } else + goto handle_unusual; + continue; + // optional uint32 server_region = 8; + case 8: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 64)) { + _Internal::set_has_server_region(&has_bits); + _impl_.server_region_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional float server_loadavg = 9; + case 9: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 77)) { + _Internal::set_has_server_loadavg(&has_bits); + _impl_.server_loadavg_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional float server_tv_broadcast_time = 10; + case 10: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 85)) { + _Internal::set_has_server_tv_broadcast_time(&has_bits); + _impl_.server_tv_broadcast_time_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional float server_game_time = 11; + case 11: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 93)) { + _Internal::set_has_server_game_time(&has_bits); + _impl_.server_game_time_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional fixed64 server_relay_connected_steam_id = 12; + case 12: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 97)) { + _Internal::set_has_server_relay_connected_steam_id(&has_bits); + _impl_.server_relay_connected_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint64_t); + } else + goto handle_unusual; + continue; + // optional uint32 relay_slots_max = 13; + case 13: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 104)) { + _Internal::set_has_relay_slots_max(&has_bits); + _impl_.relay_slots_max_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional int32 relays_connected = 14; + case 14: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 112)) { + _Internal::set_has_relays_connected(&has_bits); + _impl_.relays_connected_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional int32 relay_clients_connected = 15; + case 15: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 120)) { + _Internal::set_has_relay_clients_connected(&has_bits); + _impl_.relay_clients_connected_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional fixed64 relayed_game_server_steam_id = 16; + case 16: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 129)) { + _Internal::set_has_relayed_game_server_steam_id(&has_bits); + _impl_.relayed_game_server_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint64_t); + } else + goto handle_unusual; + continue; + // optional uint32 parent_relay_count = 17; + case 17: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 136)) { + _Internal::set_has_parent_relay_count(&has_bits); + _impl_.parent_relay_count_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; + // optional fixed64 tv_secret_code = 18; + case 18: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 145)) { + _Internal::set_has_tv_secret_code(&has_bits); + _impl_.tv_secret_code_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint64_t); + } else + goto handle_unusual; + continue; default: goto handle_unusual; } // switch @@ -23474,183 +23669,428 @@ const char* CMsgGCClientVersionUpdated::_InternalParse(const char* ptr, ::_pbi:: #undef CHK_ } -uint8_t* CMsgGCClientVersionUpdated::_InternalSerialize( +uint8_t* CMsgGameServerInfo::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCClientVersionUpdated) + // @@protoc_insertion_point(serialize_to_array_start:CMsgGameServerInfo) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 client_version = 1; - if (cached_has_bits & 0x00000001u) { + // optional fixed32 server_public_ip_addr = 1; + if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_client_version(), target); + target = ::_pbi::WireFormatLite::WriteFixed32ToArray(1, this->_internal_server_public_ip_addr(), target); } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); + // optional fixed32 server_private_ip_addr = 2; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed32ToArray(2, this->_internal_server_private_ip_addr(), target); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCClientVersionUpdated) - return target; -} -size_t CMsgGCClientVersionUpdated::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCClientVersionUpdated) - size_t total_size = 0; + // optional uint32 server_port = 3; + if (cached_has_bits & 0x00000008u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_server_port(), target); + } - uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; + // optional uint32 server_tv_port = 4; + if (cached_has_bits & 0x00000010u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_server_tv_port(), target); + } - // optional uint32 client_version = 1; - cached_has_bits = _impl_._has_bits_[0]; + // optional string server_key = 5; if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_client_version()); + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_server_key().data(), static_cast(this->_internal_server_key().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgGameServerInfo.server_key"); + target = stream->WriteStringMaybeAliased( + 5, this->_internal_server_key(), target); } - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCClientVersionUpdated::_class_data_ = { - ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCClientVersionUpdated::MergeImpl -}; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCClientVersionUpdated::GetClassData() const { return &_class_data_; } + // optional bool server_hibernation = 6; + if (cached_has_bits & 0x00000020u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteBoolToArray(6, this->_internal_server_hibernation(), target); + } + // optional .CMsgGameServerInfo.ServerType server_type = 7 [default = UNSPECIFIED]; + if (cached_has_bits & 0x00000040u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteEnumToArray( + 7, this->_internal_server_type(), target); + } -void CMsgGCClientVersionUpdated::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCClientVersionUpdated) - GOOGLE_DCHECK_NE(&from, _this); - uint32_t cached_has_bits = 0; - (void) cached_has_bits; + // optional uint32 server_region = 8; + if (cached_has_bits & 0x00000080u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(8, this->_internal_server_region(), target); + } - if (from._internal_has_client_version()) { - _this->_internal_set_client_version(from._internal_client_version()); + // optional float server_loadavg = 9; + if (cached_has_bits & 0x00000100u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(9, this->_internal_server_loadavg(), target); } - _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); -} -void CMsgGCClientVersionUpdated::CopyFrom(const CMsgGCClientVersionUpdated& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCClientVersionUpdated) - if (&from == this) return; - Clear(); - MergeFrom(from); -} + // optional float server_tv_broadcast_time = 10; + if (cached_has_bits & 0x00000200u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(10, this->_internal_server_tv_broadcast_time(), target); + } -bool CMsgGCClientVersionUpdated::IsInitialized() const { - return true; -} + // optional float server_game_time = 11; + if (cached_has_bits & 0x00000400u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(11, this->_internal_server_game_time(), target); + } -void CMsgGCClientVersionUpdated::InternalSwap(CMsgGCClientVersionUpdated* other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.client_version_, other->_impl_.client_version_); -} + // optional fixed64 server_relay_connected_steam_id = 12; + if (cached_has_bits & 0x00000800u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed64ToArray(12, this->_internal_server_relay_connected_steam_id(), target); + } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCClientVersionUpdated::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[76]); -} + // optional uint32 relay_slots_max = 13; + if (cached_has_bits & 0x00001000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(13, this->_internal_relay_slots_max(), target); + } -// =================================================================== + // optional int32 relays_connected = 14; + if (cached_has_bits & 0x00002000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(14, this->_internal_relays_connected(), target); + } -class CMsgGCToGCWebAPIAccountChanged::_Internal { - public: -}; + // optional int32 relay_clients_connected = 15; + if (cached_has_bits & 0x00008000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(15, this->_internal_relay_clients_connected(), target); + } -CMsgGCToGCWebAPIAccountChanged::CMsgGCToGCWebAPIAccountChanged(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned) - : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase(arena, is_message_owned) { - // @@protoc_insertion_point(arena_constructor:CMsgGCToGCWebAPIAccountChanged) -} -CMsgGCToGCWebAPIAccountChanged::CMsgGCToGCWebAPIAccountChanged(const CMsgGCToGCWebAPIAccountChanged& from) - : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase() { - CMsgGCToGCWebAPIAccountChanged* const _this = this; (void)_this; - _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - // @@protoc_insertion_point(copy_constructor:CMsgGCToGCWebAPIAccountChanged) -} + // optional fixed64 relayed_game_server_steam_id = 16; + if (cached_has_bits & 0x00004000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed64ToArray(16, this->_internal_relayed_game_server_steam_id(), target); + } + // optional uint32 parent_relay_count = 17; + if (cached_has_bits & 0x00010000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(17, this->_internal_parent_relay_count(), target); + } + // optional fixed64 tv_secret_code = 18; + if (cached_has_bits & 0x00020000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed64ToArray(18, this->_internal_tv_secret_code(), target); + } + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:CMsgGameServerInfo) + return target; +} +size_t CMsgGameServerInfo::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgGameServerInfo) + size_t total_size = 0; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCWebAPIAccountChanged::_class_data_ = { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl, - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl, -}; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCWebAPIAccountChanged::GetClassData() const { return &_class_data_; } + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x000000ffu) { + // optional string server_key = 5; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_server_key()); + } + // optional fixed32 server_public_ip_addr = 1; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + 4; + } + // optional fixed32 server_private_ip_addr = 2; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + 4; + } + // optional uint32 server_port = 3; + if (cached_has_bits & 0x00000008u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_server_port()); + } + // optional uint32 server_tv_port = 4; + if (cached_has_bits & 0x00000010u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_server_tv_port()); + } + // optional bool server_hibernation = 6; + if (cached_has_bits & 0x00000020u) { + total_size += 1 + 1; + } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCWebAPIAccountChanged::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[77]); -} + // optional .CMsgGameServerInfo.ServerType server_type = 7 [default = UNSPECIFIED]; + if (cached_has_bits & 0x00000040u) { + total_size += 1 + + ::_pbi::WireFormatLite::EnumSize(this->_internal_server_type()); + } -// =================================================================== + // optional uint32 server_region = 8; + if (cached_has_bits & 0x00000080u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_server_region()); + } -class CMsgGCToGCRequestPassportItemGrant::_Internal { - public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_steam_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static void set_has_league_id(HasBits* has_bits) { - (*has_bits)[0] |= 2u; } - static void set_has_reward_flag(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } -}; - -CMsgGCToGCRequestPassportItemGrant::CMsgGCToGCRequestPassportItemGrant(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned) - : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { - SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGCToGCRequestPassportItemGrant) -} -CMsgGCToGCRequestPassportItemGrant::CMsgGCToGCRequestPassportItemGrant(const CMsgGCToGCRequestPassportItemGrant& from) - : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGCToGCRequestPassportItemGrant* const _this = this; (void)_this; - new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){from._impl_._has_bits_} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.steam_id_){} - , decltype(_impl_.league_id_){} - , decltype(_impl_.reward_flag_){}}; + if (cached_has_bits & 0x0000ff00u) { + // optional float server_loadavg = 9; + if (cached_has_bits & 0x00000100u) { + total_size += 1 + 4; + } - _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.steam_id_, &from._impl_.steam_id_, - static_cast(reinterpret_cast(&_impl_.reward_flag_) - - reinterpret_cast(&_impl_.steam_id_)) + sizeof(_impl_.reward_flag_)); - // @@protoc_insertion_point(copy_constructor:CMsgGCToGCRequestPassportItemGrant) -} + // optional float server_tv_broadcast_time = 10; + if (cached_has_bits & 0x00000200u) { + total_size += 1 + 4; + } -inline void CMsgGCToGCRequestPassportItemGrant::SharedCtor( + // optional float server_game_time = 11; + if (cached_has_bits & 0x00000400u) { + total_size += 1 + 4; + } + + // optional fixed64 server_relay_connected_steam_id = 12; + if (cached_has_bits & 0x00000800u) { + total_size += 1 + 8; + } + + // optional uint32 relay_slots_max = 13; + if (cached_has_bits & 0x00001000u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_relay_slots_max()); + } + + // optional int32 relays_connected = 14; + if (cached_has_bits & 0x00002000u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_relays_connected()); + } + + // optional fixed64 relayed_game_server_steam_id = 16; + if (cached_has_bits & 0x00004000u) { + total_size += 2 + 8; + } + + // optional int32 relay_clients_connected = 15; + if (cached_has_bits & 0x00008000u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_relay_clients_connected()); + } + + } + if (cached_has_bits & 0x00030000u) { + // optional uint32 parent_relay_count = 17; + if (cached_has_bits & 0x00010000u) { + total_size += 2 + + ::_pbi::WireFormatLite::UInt32Size( + this->_internal_parent_relay_count()); + } + + // optional fixed64 tv_secret_code = 18; + if (cached_has_bits & 0x00020000u) { + total_size += 2 + 8; + } + + } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGameServerInfo::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, + CMsgGameServerInfo::MergeImpl +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGameServerInfo::GetClassData() const { return &_class_data_; } + + +void CMsgGameServerInfo::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGameServerInfo) + GOOGLE_DCHECK_NE(&from, _this); + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x000000ffu) { + if (cached_has_bits & 0x00000001u) { + _this->_internal_set_server_key(from._internal_server_key()); + } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.server_public_ip_addr_ = from._impl_.server_public_ip_addr_; + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.server_private_ip_addr_ = from._impl_.server_private_ip_addr_; + } + if (cached_has_bits & 0x00000008u) { + _this->_impl_.server_port_ = from._impl_.server_port_; + } + if (cached_has_bits & 0x00000010u) { + _this->_impl_.server_tv_port_ = from._impl_.server_tv_port_; + } + if (cached_has_bits & 0x00000020u) { + _this->_impl_.server_hibernation_ = from._impl_.server_hibernation_; + } + if (cached_has_bits & 0x00000040u) { + _this->_impl_.server_type_ = from._impl_.server_type_; + } + if (cached_has_bits & 0x00000080u) { + _this->_impl_.server_region_ = from._impl_.server_region_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } + if (cached_has_bits & 0x0000ff00u) { + if (cached_has_bits & 0x00000100u) { + _this->_impl_.server_loadavg_ = from._impl_.server_loadavg_; + } + if (cached_has_bits & 0x00000200u) { + _this->_impl_.server_tv_broadcast_time_ = from._impl_.server_tv_broadcast_time_; + } + if (cached_has_bits & 0x00000400u) { + _this->_impl_.server_game_time_ = from._impl_.server_game_time_; + } + if (cached_has_bits & 0x00000800u) { + _this->_impl_.server_relay_connected_steam_id_ = from._impl_.server_relay_connected_steam_id_; + } + if (cached_has_bits & 0x00001000u) { + _this->_impl_.relay_slots_max_ = from._impl_.relay_slots_max_; + } + if (cached_has_bits & 0x00002000u) { + _this->_impl_.relays_connected_ = from._impl_.relays_connected_; + } + if (cached_has_bits & 0x00004000u) { + _this->_impl_.relayed_game_server_steam_id_ = from._impl_.relayed_game_server_steam_id_; + } + if (cached_has_bits & 0x00008000u) { + _this->_impl_.relay_clients_connected_ = from._impl_.relay_clients_connected_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } + if (cached_has_bits & 0x00030000u) { + if (cached_has_bits & 0x00010000u) { + _this->_impl_.parent_relay_count_ = from._impl_.parent_relay_count_; + } + if (cached_has_bits & 0x00020000u) { + _this->_impl_.tv_secret_code_ = from._impl_.tv_secret_code_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } + _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); +} + +void CMsgGameServerInfo::CopyFrom(const CMsgGameServerInfo& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGameServerInfo) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool CMsgGameServerInfo::IsInitialized() const { + return true; +} + +void CMsgGameServerInfo::InternalSwap(CMsgGameServerInfo* other) { + using std::swap; + auto* lhs_arena = GetArenaForAllocation(); + auto* rhs_arena = other->GetArenaForAllocation(); + _internal_metadata_.InternalSwap(&other->_internal_metadata_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.server_key_, lhs_arena, + &other->_impl_.server_key_, rhs_arena + ); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgGameServerInfo, _impl_.tv_secret_code_) + + sizeof(CMsgGameServerInfo::_impl_.tv_secret_code_) + - PROTOBUF_FIELD_OFFSET(CMsgGameServerInfo, _impl_.server_public_ip_addr_)>( + reinterpret_cast(&_impl_.server_public_ip_addr_), + reinterpret_cast(&other->_impl_.server_public_ip_addr_)); +} + +::PROTOBUF_NAMESPACE_ID::Metadata CMsgGameServerInfo::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[76]); +} + +// =================================================================== + +class CSOEconEquipSlot::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_account_id(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } + static void set_has_class_id(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_slot_id(HasBits* has_bits) { + (*has_bits)[0] |= 8u; + } + static void set_has_item_id(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } + static void set_has_item_definition(HasBits* has_bits) { + (*has_bits)[0] |= 16u; + } +}; + +CSOEconEquipSlot::CSOEconEquipSlot(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { + SharedCtor(arena, is_message_owned); + // @@protoc_insertion_point(arena_constructor:CSOEconEquipSlot) +} +CSOEconEquipSlot::CSOEconEquipSlot(const CSOEconEquipSlot& from) + : ::PROTOBUF_NAMESPACE_ID::Message() { + CSOEconEquipSlot* const _this = this; (void)_this; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.account_id_){} + , decltype(_impl_.class_id_){} + , decltype(_impl_.item_id_){} + , decltype(_impl_.slot_id_){} + , decltype(_impl_.item_definition_){}}; + + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, + static_cast(reinterpret_cast(&_impl_.item_definition_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_definition_)); + // @@protoc_insertion_point(copy_constructor:CSOEconEquipSlot) +} + +inline void CSOEconEquipSlot::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.steam_id_){uint64_t{0u}} - , decltype(_impl_.league_id_){0u} - , decltype(_impl_.reward_flag_){0} + , decltype(_impl_.account_id_){0u} + , decltype(_impl_.class_id_){0u} + , decltype(_impl_.item_id_){uint64_t{0u}} + , decltype(_impl_.slot_id_){0u} + , decltype(_impl_.item_definition_){0u} }; } -CMsgGCToGCRequestPassportItemGrant::~CMsgGCToGCRequestPassportItemGrant() { - // @@protoc_insertion_point(destructor:CMsgGCToGCRequestPassportItemGrant) +CSOEconEquipSlot::~CSOEconEquipSlot() { + // @@protoc_insertion_point(destructor:CSOEconEquipSlot) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -23658,60 +24098,78 @@ CMsgGCToGCRequestPassportItemGrant::~CMsgGCToGCRequestPassportItemGrant() { SharedDtor(); } -inline void CMsgGCToGCRequestPassportItemGrant::SharedDtor() { +inline void CSOEconEquipSlot::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgGCToGCRequestPassportItemGrant::SetCachedSize(int size) const { +void CSOEconEquipSlot::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgGCToGCRequestPassportItemGrant::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGCToGCRequestPassportItemGrant) +void CSOEconEquipSlot::Clear() { +// @@protoc_insertion_point(message_clear_start:CSOEconEquipSlot) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - ::memset(&_impl_.steam_id_, 0, static_cast( - reinterpret_cast(&_impl_.reward_flag_) - - reinterpret_cast(&_impl_.steam_id_)) + sizeof(_impl_.reward_flag_)); + if (cached_has_bits & 0x0000001fu) { + ::memset(&_impl_.account_id_, 0, static_cast( + reinterpret_cast(&_impl_.item_definition_) - + reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_definition_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgGCToGCRequestPassportItemGrant::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CSOEconEquipSlot::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional fixed64 steam_id = 1; + // optional uint32 account_id = 1 [(.key_field) = true]; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 9)) { - _Internal::set_has_steam_id(&has_bits); - _impl_.steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint64_t); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_account_id(&has_bits); + _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 league_id = 2; + // optional uint32 class_id = 2 [(.key_field) = true]; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_league_id(&has_bits); - _impl_.league_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); + _Internal::set_has_class_id(&has_bits); + _impl_.class_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); } else goto handle_unusual; continue; - // optional int32 reward_flag = 3; + // optional uint32 slot_id = 3 [(.key_field) = true]; case 3: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_reward_flag(&has_bits); - _impl_.reward_flag_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_slot_id(&has_bits); + _impl_.slot_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint64 item_id = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { + _Internal::set_has_item_id(&has_bits); + _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint32 item_definition = 5; + case 5: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 40)) { + _Internal::set_has_item_definition(&has_bits); + _impl_.item_definition_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -23740,41 +24198,53 @@ const char* CMsgGCToGCRequestPassportItemGrant::_InternalParse(const char* ptr, #undef CHK_ } -uint8_t* CMsgGCToGCRequestPassportItemGrant::_InternalSerialize( +uint8_t* CSOEconEquipSlot::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGCToGCRequestPassportItemGrant) + // @@protoc_insertion_point(serialize_to_array_start:CSOEconEquipSlot) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional fixed64 steam_id = 1; + // optional uint32 account_id = 1 [(.key_field) = true]; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed64ToArray(1, this->_internal_steam_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); } - // optional uint32 league_id = 2; + // optional uint32 class_id = 2 [(.key_field) = true]; if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_league_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_class_id(), target); } - // optional int32 reward_flag = 3; + // optional uint32 slot_id = 3 [(.key_field) = true]; + if (cached_has_bits & 0x00000008u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_slot_id(), target); + } + + // optional uint64 item_id = 4; if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(3, this->_internal_reward_flag(), target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(4, this->_internal_item_id(), target); + } + + // optional uint32 item_definition = 5; + if (cached_has_bits & 0x00000010u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(5, this->_internal_item_definition(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGCToGCRequestPassportItemGrant) + // @@protoc_insertion_point(serialize_to_array_end:CSOEconEquipSlot) return target; } -size_t CMsgGCToGCRequestPassportItemGrant::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGCToGCRequestPassportItemGrant) +size_t CSOEconEquipSlot::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CSOEconEquipSlot) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -23782,448 +24252,221 @@ size_t CMsgGCToGCRequestPassportItemGrant::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - // optional fixed64 steam_id = 1; + if (cached_has_bits & 0x0000001fu) { + // optional uint32 account_id = 1 [(.key_field) = true]; if (cached_has_bits & 0x00000001u) { - total_size += 1 + 8; + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); } - // optional uint32 league_id = 2; + // optional uint32 class_id = 2 [(.key_field) = true]; if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_league_id()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_class_id()); } - // optional int32 reward_flag = 3; + // optional uint64 item_id = 4; if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_reward_flag()); + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); + } + + // optional uint32 slot_id = 3 [(.key_field) = true]; + if (cached_has_bits & 0x00000008u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_slot_id()); + } + + // optional uint32 item_definition = 5; + if (cached_has_bits & 0x00000010u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_item_definition()); } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGCToGCRequestPassportItemGrant::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconEquipSlot::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGCToGCRequestPassportItemGrant::MergeImpl + CSOEconEquipSlot::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCToGCRequestPassportItemGrant::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconEquipSlot::GetClassData() const { return &_class_data_; } -void CMsgGCToGCRequestPassportItemGrant::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGCToGCRequestPassportItemGrant) +void CSOEconEquipSlot::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconEquipSlot) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x0000001fu) { if (cached_has_bits & 0x00000001u) { - _this->_impl_.steam_id_ = from._impl_.steam_id_; + _this->_impl_.account_id_ = from._impl_.account_id_; } if (cached_has_bits & 0x00000002u) { - _this->_impl_.league_id_ = from._impl_.league_id_; + _this->_impl_.class_id_ = from._impl_.class_id_; } if (cached_has_bits & 0x00000004u) { - _this->_impl_.reward_flag_ = from._impl_.reward_flag_; + _this->_impl_.item_id_ = from._impl_.item_id_; + } + if (cached_has_bits & 0x00000008u) { + _this->_impl_.slot_id_ = from._impl_.slot_id_; + } + if (cached_has_bits & 0x00000010u) { + _this->_impl_.item_definition_ = from._impl_.item_definition_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGCToGCRequestPassportItemGrant::CopyFrom(const CMsgGCToGCRequestPassportItemGrant& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGCToGCRequestPassportItemGrant) +void CSOEconEquipSlot::CopyFrom(const CSOEconEquipSlot& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconEquipSlot) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGCToGCRequestPassportItemGrant::IsInitialized() const { +bool CSOEconEquipSlot::IsInitialized() const { return true; } -void CMsgGCToGCRequestPassportItemGrant::InternalSwap(CMsgGCToGCRequestPassportItemGrant* other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgGCToGCRequestPassportItemGrant, _impl_.reward_flag_) - + sizeof(CMsgGCToGCRequestPassportItemGrant::_impl_.reward_flag_) - - PROTOBUF_FIELD_OFFSET(CMsgGCToGCRequestPassportItemGrant, _impl_.steam_id_)>( - reinterpret_cast(&_impl_.steam_id_), - reinterpret_cast(&other->_impl_.steam_id_)); -} - -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToGCRequestPassportItemGrant::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[78]); -} - -// =================================================================== - -class CMsgGameServerInfo::_Internal { - public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_server_public_ip_addr(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_server_private_ip_addr(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_server_port(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } - static void set_has_server_tv_port(HasBits* has_bits) { - (*has_bits)[0] |= 16u; - } - static void set_has_server_key(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static void set_has_server_hibernation(HasBits* has_bits) { - (*has_bits)[0] |= 32u; - } - static void set_has_server_type(HasBits* has_bits) { - (*has_bits)[0] |= 64u; - } - static void set_has_server_region(HasBits* has_bits) { - (*has_bits)[0] |= 128u; - } - static void set_has_server_loadavg(HasBits* has_bits) { - (*has_bits)[0] |= 256u; - } - static void set_has_server_tv_broadcast_time(HasBits* has_bits) { - (*has_bits)[0] |= 512u; - } - static void set_has_server_game_time(HasBits* has_bits) { - (*has_bits)[0] |= 1024u; - } - static void set_has_server_relay_connected_steam_id(HasBits* has_bits) { - (*has_bits)[0] |= 2048u; - } - static void set_has_relay_slots_max(HasBits* has_bits) { - (*has_bits)[0] |= 4096u; - } - static void set_has_relays_connected(HasBits* has_bits) { - (*has_bits)[0] |= 8192u; - } - static void set_has_relay_clients_connected(HasBits* has_bits) { - (*has_bits)[0] |= 32768u; - } - static void set_has_relayed_game_server_steam_id(HasBits* has_bits) { - (*has_bits)[0] |= 16384u; - } - static void set_has_parent_relay_count(HasBits* has_bits) { - (*has_bits)[0] |= 65536u; - } - static void set_has_tv_secret_code(HasBits* has_bits) { - (*has_bits)[0] |= 131072u; - } -}; - -CMsgGameServerInfo::CMsgGameServerInfo(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned) - : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { - SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgGameServerInfo) -} -CMsgGameServerInfo::CMsgGameServerInfo(const CMsgGameServerInfo& from) - : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgGameServerInfo* const _this = this; (void)_this; - new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){from._impl_._has_bits_} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.server_key_){} - , decltype(_impl_.server_public_ip_addr_){} - , decltype(_impl_.server_private_ip_addr_){} - , decltype(_impl_.server_port_){} - , decltype(_impl_.server_tv_port_){} - , decltype(_impl_.server_hibernation_){} - , decltype(_impl_.server_type_){} - , decltype(_impl_.server_region_){} - , decltype(_impl_.server_loadavg_){} - , decltype(_impl_.server_tv_broadcast_time_){} - , decltype(_impl_.server_game_time_){} - , decltype(_impl_.server_relay_connected_steam_id_){} - , decltype(_impl_.relay_slots_max_){} - , decltype(_impl_.relays_connected_){} - , decltype(_impl_.relayed_game_server_steam_id_){} - , decltype(_impl_.relay_clients_connected_){} - , decltype(_impl_.parent_relay_count_){} - , decltype(_impl_.tv_secret_code_){}}; - - _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.server_key_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.server_key_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_server_key()) { - _this->_impl_.server_key_.Set(from._internal_server_key(), - _this->GetArenaForAllocation()); - } - ::memcpy(&_impl_.server_public_ip_addr_, &from._impl_.server_public_ip_addr_, - static_cast(reinterpret_cast(&_impl_.tv_secret_code_) - - reinterpret_cast(&_impl_.server_public_ip_addr_)) + sizeof(_impl_.tv_secret_code_)); - // @@protoc_insertion_point(copy_constructor:CMsgGameServerInfo) -} - -inline void CMsgGameServerInfo::SharedCtor( - ::_pb::Arena* arena, bool is_message_owned) { - (void)arena; - (void)is_message_owned; - new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.server_key_){} - , decltype(_impl_.server_public_ip_addr_){0u} - , decltype(_impl_.server_private_ip_addr_){0u} - , decltype(_impl_.server_port_){0u} - , decltype(_impl_.server_tv_port_){0u} - , decltype(_impl_.server_hibernation_){false} - , decltype(_impl_.server_type_){0} - , decltype(_impl_.server_region_){0u} - , decltype(_impl_.server_loadavg_){0} - , decltype(_impl_.server_tv_broadcast_time_){0} - , decltype(_impl_.server_game_time_){0} - , decltype(_impl_.server_relay_connected_steam_id_){uint64_t{0u}} - , decltype(_impl_.relay_slots_max_){0u} - , decltype(_impl_.relays_connected_){0} - , decltype(_impl_.relayed_game_server_steam_id_){uint64_t{0u}} - , decltype(_impl_.relay_clients_connected_){0} - , decltype(_impl_.parent_relay_count_){0u} - , decltype(_impl_.tv_secret_code_){uint64_t{0u}} - }; - _impl_.server_key_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.server_key_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING -} - -CMsgGameServerInfo::~CMsgGameServerInfo() { - // @@protoc_insertion_point(destructor:CMsgGameServerInfo) - if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { - (void)arena; - return; - } - SharedDtor(); -} - -inline void CMsgGameServerInfo::SharedDtor() { - GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.server_key_.Destroy(); -} - -void CMsgGameServerInfo::SetCachedSize(int size) const { - _impl_._cached_size_.Set(size); -} - -void CMsgGameServerInfo::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgGameServerInfo) - uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - _impl_.server_key_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x000000feu) { - ::memset(&_impl_.server_public_ip_addr_, 0, static_cast( - reinterpret_cast(&_impl_.server_region_) - - reinterpret_cast(&_impl_.server_public_ip_addr_)) + sizeof(_impl_.server_region_)); - } - if (cached_has_bits & 0x0000ff00u) { - ::memset(&_impl_.server_loadavg_, 0, static_cast( - reinterpret_cast(&_impl_.relay_clients_connected_) - - reinterpret_cast(&_impl_.server_loadavg_)) + sizeof(_impl_.relay_clients_connected_)); - } - if (cached_has_bits & 0x00030000u) { - ::memset(&_impl_.parent_relay_count_, 0, static_cast( - reinterpret_cast(&_impl_.tv_secret_code_) - - reinterpret_cast(&_impl_.parent_relay_count_)) + sizeof(_impl_.tv_secret_code_)); - } - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); -} - -const char* CMsgGameServerInfo::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { -#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure - _Internal::HasBits has_bits{}; - while (!ctx->Done(&ptr)) { - uint32_t tag; - ptr = ::_pbi::ReadTag(ptr, &tag); - switch (tag >> 3) { - // optional fixed32 server_public_ip_addr = 1; - case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 13)) { - _Internal::set_has_server_public_ip_addr(&has_bits); - _impl_.server_public_ip_addr_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint32_t); - } else - goto handle_unusual; - continue; - // optional fixed32 server_private_ip_addr = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 21)) { - _Internal::set_has_server_private_ip_addr(&has_bits); - _impl_.server_private_ip_addr_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint32_t); - } else - goto handle_unusual; - continue; - // optional uint32 server_port = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_server_port(&has_bits); - _impl_.server_port_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 server_tv_port = 4; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { - _Internal::set_has_server_tv_port(&has_bits); - _impl_.server_tv_port_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional string server_key = 5; - case 5: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 42)) { - auto str = _internal_mutable_server_key(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); - CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CMsgGameServerInfo.server_key"); - #endif // !NDEBUG - } else - goto handle_unusual; - continue; - // optional bool server_hibernation = 6; - case 6: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 48)) { - _Internal::set_has_server_hibernation(&has_bits); - _impl_.server_hibernation_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional .CMsgGameServerInfo.ServerType server_type = 7 [default = UNSPECIFIED]; - case 7: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 56)) { - uint64_t val = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); - CHK_(ptr); - if (PROTOBUF_PREDICT_TRUE(::CMsgGameServerInfo_ServerType_IsValid(val))) { - _internal_set_server_type(static_cast<::CMsgGameServerInfo_ServerType>(val)); - } else { - ::PROTOBUF_NAMESPACE_ID::internal::WriteVarint(7, val, mutable_unknown_fields()); - } - } else - goto handle_unusual; - continue; - // optional uint32 server_region = 8; - case 8: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 64)) { - _Internal::set_has_server_region(&has_bits); - _impl_.server_region_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional float server_loadavg = 9; - case 9: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 77)) { - _Internal::set_has_server_loadavg(&has_bits); - _impl_.server_loadavg_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(float); - } else - goto handle_unusual; - continue; - // optional float server_tv_broadcast_time = 10; - case 10: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 85)) { - _Internal::set_has_server_tv_broadcast_time(&has_bits); - _impl_.server_tv_broadcast_time_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(float); - } else - goto handle_unusual; - continue; - // optional float server_game_time = 11; - case 11: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 93)) { - _Internal::set_has_server_game_time(&has_bits); - _impl_.server_game_time_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(float); - } else - goto handle_unusual; - continue; - // optional fixed64 server_relay_connected_steam_id = 12; - case 12: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 97)) { - _Internal::set_has_server_relay_connected_steam_id(&has_bits); - _impl_.server_relay_connected_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint64_t); - } else - goto handle_unusual; - continue; - // optional uint32 relay_slots_max = 13; - case 13: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 104)) { - _Internal::set_has_relay_slots_max(&has_bits); - _impl_.relay_slots_max_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional int32 relays_connected = 14; - case 14: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 112)) { - _Internal::set_has_relays_connected(&has_bits); - _impl_.relays_connected_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); +void CSOEconEquipSlot::InternalSwap(CSOEconEquipSlot* other) { + using std::swap; + _internal_metadata_.InternalSwap(&other->_internal_metadata_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CSOEconEquipSlot, _impl_.item_definition_) + + sizeof(CSOEconEquipSlot::_impl_.item_definition_) + - PROTOBUF_FIELD_OFFSET(CSOEconEquipSlot, _impl_.account_id_)>( + reinterpret_cast(&_impl_.account_id_), + reinterpret_cast(&other->_impl_.account_id_)); +} + +::PROTOBUF_NAMESPACE_ID::Metadata CSOEconEquipSlot::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[77]); +} + +// =================================================================== + +class CMsgAdjustEquipSlot::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_class_id(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } + static void set_has_slot_id(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_item_id(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } +}; + +CMsgAdjustEquipSlot::CMsgAdjustEquipSlot(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { + SharedCtor(arena, is_message_owned); + // @@protoc_insertion_point(arena_constructor:CMsgAdjustEquipSlot) +} +CMsgAdjustEquipSlot::CMsgAdjustEquipSlot(const CMsgAdjustEquipSlot& from) + : ::PROTOBUF_NAMESPACE_ID::Message() { + CMsgAdjustEquipSlot* const _this = this; (void)_this; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.class_id_){} + , decltype(_impl_.slot_id_){} + , decltype(_impl_.item_id_){}}; + + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + ::memcpy(&_impl_.class_id_, &from._impl_.class_id_, + static_cast(reinterpret_cast(&_impl_.item_id_) - + reinterpret_cast(&_impl_.class_id_)) + sizeof(_impl_.item_id_)); + // @@protoc_insertion_point(copy_constructor:CMsgAdjustEquipSlot) +} + +inline void CMsgAdjustEquipSlot::SharedCtor( + ::_pb::Arena* arena, bool is_message_owned) { + (void)arena; + (void)is_message_owned; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.class_id_){0u} + , decltype(_impl_.slot_id_){0u} + , decltype(_impl_.item_id_){uint64_t{0u}} + }; +} + +CMsgAdjustEquipSlot::~CMsgAdjustEquipSlot() { + // @@protoc_insertion_point(destructor:CMsgAdjustEquipSlot) + if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { + (void)arena; + return; + } + SharedDtor(); +} + +inline void CMsgAdjustEquipSlot::SharedDtor() { + GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); +} + +void CMsgAdjustEquipSlot::SetCachedSize(int size) const { + _impl_._cached_size_.Set(size); +} + +void CMsgAdjustEquipSlot::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgAdjustEquipSlot) + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + ::memset(&_impl_.class_id_, 0, static_cast( + reinterpret_cast(&_impl_.item_id_) - + reinterpret_cast(&_impl_.class_id_)) + sizeof(_impl_.item_id_)); + } + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); +} + +const char* CMsgAdjustEquipSlot::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; + while (!ctx->Done(&ptr)) { + uint32_t tag; + ptr = ::_pbi::ReadTag(ptr, &tag); + switch (tag >> 3) { + // optional uint32 class_id = 1; + case 1: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_class_id(&has_bits); + _impl_.class_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional int32 relay_clients_connected = 15; - case 15: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 120)) { - _Internal::set_has_relay_clients_connected(&has_bits); - _impl_.relay_clients_connected_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + // optional uint32 slot_id = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_slot_id(&has_bits); + _impl_.slot_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional fixed64 relayed_game_server_steam_id = 16; - case 16: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 129)) { - _Internal::set_has_relayed_game_server_steam_id(&has_bits); - _impl_.relayed_game_server_steam_id_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint64_t); - } else - goto handle_unusual; - continue; - // optional uint32 parent_relay_count = 17; - case 17: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 136)) { - _Internal::set_has_parent_relay_count(&has_bits); - _impl_.parent_relay_count_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + // optional uint64 item_id = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { + _Internal::set_has_item_id(&has_bits); + _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional fixed64 tv_secret_code = 18; - case 18: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 145)) { - _Internal::set_has_tv_secret_code(&has_bits); - _impl_.tv_secret_code_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint64_t); - } else - goto handle_unusual; - continue; default: goto handle_unusual; } // switch @@ -24248,136 +24491,41 @@ const char* CMsgGameServerInfo::_InternalParse(const char* ptr, ::_pbi::ParseCon #undef CHK_ } -uint8_t* CMsgGameServerInfo::_InternalSerialize( +uint8_t* CMsgAdjustEquipSlot::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgGameServerInfo) + // @@protoc_insertion_point(serialize_to_array_start:CMsgAdjustEquipSlot) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional fixed32 server_public_ip_addr = 1; - if (cached_has_bits & 0x00000002u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed32ToArray(1, this->_internal_server_public_ip_addr(), target); - } - - // optional fixed32 server_private_ip_addr = 2; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed32ToArray(2, this->_internal_server_private_ip_addr(), target); - } - - // optional uint32 server_port = 3; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_server_port(), target); - } - - // optional uint32 server_tv_port = 4; - if (cached_has_bits & 0x00000010u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_server_tv_port(), target); - } - - // optional string server_key = 5; + // optional uint32 class_id = 1; if (cached_has_bits & 0x00000001u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_server_key().data(), static_cast(this->_internal_server_key().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CMsgGameServerInfo.server_key"); - target = stream->WriteStringMaybeAliased( - 5, this->_internal_server_key(), target); - } - - // optional bool server_hibernation = 6; - if (cached_has_bits & 0x00000020u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteBoolToArray(6, this->_internal_server_hibernation(), target); - } - - // optional .CMsgGameServerInfo.ServerType server_type = 7 [default = UNSPECIFIED]; - if (cached_has_bits & 0x00000040u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteEnumToArray( - 7, this->_internal_server_type(), target); - } - - // optional uint32 server_region = 8; - if (cached_has_bits & 0x00000080u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(8, this->_internal_server_region(), target); - } - - // optional float server_loadavg = 9; - if (cached_has_bits & 0x00000100u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFloatToArray(9, this->_internal_server_loadavg(), target); - } - - // optional float server_tv_broadcast_time = 10; - if (cached_has_bits & 0x00000200u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFloatToArray(10, this->_internal_server_tv_broadcast_time(), target); - } - - // optional float server_game_time = 11; - if (cached_has_bits & 0x00000400u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFloatToArray(11, this->_internal_server_game_time(), target); - } - - // optional fixed64 server_relay_connected_steam_id = 12; - if (cached_has_bits & 0x00000800u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed64ToArray(12, this->_internal_server_relay_connected_steam_id(), target); - } - - // optional uint32 relay_slots_max = 13; - if (cached_has_bits & 0x00001000u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(13, this->_internal_relay_slots_max(), target); - } - - // optional int32 relays_connected = 14; - if (cached_has_bits & 0x00002000u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(14, this->_internal_relays_connected(), target); - } - - // optional int32 relay_clients_connected = 15; - if (cached_has_bits & 0x00008000u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(15, this->_internal_relay_clients_connected(), target); - } - - // optional fixed64 relayed_game_server_steam_id = 16; - if (cached_has_bits & 0x00004000u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed64ToArray(16, this->_internal_relayed_game_server_steam_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_class_id(), target); } - - // optional uint32 parent_relay_count = 17; - if (cached_has_bits & 0x00010000u) { + + // optional uint32 slot_id = 2; + if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(17, this->_internal_parent_relay_count(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_slot_id(), target); } - // optional fixed64 tv_secret_code = 18; - if (cached_has_bits & 0x00020000u) { + // optional uint64 item_id = 3; + if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed64ToArray(18, this->_internal_tv_secret_code(), target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(3, this->_internal_item_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgGameServerInfo) + // @@protoc_insertion_point(serialize_to_array_end:CMsgAdjustEquipSlot) return target; } -size_t CMsgGameServerInfo::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgGameServerInfo) +size_t CMsgAdjustEquipSlot::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgAdjustEquipSlot) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -24385,291 +24533,370 @@ size_t CMsgGameServerInfo::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x000000ffu) { - // optional string server_key = 5; + if (cached_has_bits & 0x00000007u) { + // optional uint32 class_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_server_key()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_class_id()); } - // optional fixed32 server_public_ip_addr = 1; + // optional uint32 slot_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += 1 + 4; + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_slot_id()); } - // optional fixed32 server_private_ip_addr = 2; + // optional uint64 item_id = 3; if (cached_has_bits & 0x00000004u) { - total_size += 1 + 4; + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); } - // optional uint32 server_port = 3; - if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_server_port()); - } + } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} - // optional uint32 server_tv_port = 4; - if (cached_has_bits & 0x00000010u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_server_tv_port()); - } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgAdjustEquipSlot::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, + CMsgAdjustEquipSlot::MergeImpl +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgAdjustEquipSlot::GetClassData() const { return &_class_data_; } - // optional bool server_hibernation = 6; - if (cached_has_bits & 0x00000020u) { - total_size += 1 + 1; - } - // optional .CMsgGameServerInfo.ServerType server_type = 7 [default = UNSPECIFIED]; - if (cached_has_bits & 0x00000040u) { - total_size += 1 + - ::_pbi::WireFormatLite::EnumSize(this->_internal_server_type()); - } +void CMsgAdjustEquipSlot::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgAdjustEquipSlot) + GOOGLE_DCHECK_NE(&from, _this); + uint32_t cached_has_bits = 0; + (void) cached_has_bits; - // optional uint32 server_region = 8; - if (cached_has_bits & 0x00000080u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_server_region()); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x00000001u) { + _this->_impl_.class_id_ = from._impl_.class_id_; } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.slot_id_ = from._impl_.slot_id_; + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.item_id_ = from._impl_.item_id_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } + _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); +} + +void CMsgAdjustEquipSlot::CopyFrom(const CMsgAdjustEquipSlot& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgAdjustEquipSlot) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool CMsgAdjustEquipSlot::IsInitialized() const { + return true; +} + +void CMsgAdjustEquipSlot::InternalSwap(CMsgAdjustEquipSlot* other) { + using std::swap; + _internal_metadata_.InternalSwap(&other->_internal_metadata_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgAdjustEquipSlot, _impl_.item_id_) + + sizeof(CMsgAdjustEquipSlot::_impl_.item_id_) + - PROTOBUF_FIELD_OFFSET(CMsgAdjustEquipSlot, _impl_.class_id_)>( + reinterpret_cast(&_impl_.class_id_), + reinterpret_cast(&other->_impl_.class_id_)); +} + +::PROTOBUF_NAMESPACE_ID::Metadata CMsgAdjustEquipSlot::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[78]); +} + +// =================================================================== +class CMsgAdjustEquipSlots::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_change_num(HasBits* has_bits) { + (*has_bits)[0] |= 1u; } - if (cached_has_bits & 0x0000ff00u) { - // optional float server_loadavg = 9; - if (cached_has_bits & 0x00000100u) { - total_size += 1 + 4; - } +}; - // optional float server_tv_broadcast_time = 10; - if (cached_has_bits & 0x00000200u) { - total_size += 1 + 4; - } +CMsgAdjustEquipSlots::CMsgAdjustEquipSlots(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { + SharedCtor(arena, is_message_owned); + // @@protoc_insertion_point(arena_constructor:CMsgAdjustEquipSlots) +} +CMsgAdjustEquipSlots::CMsgAdjustEquipSlots(const CMsgAdjustEquipSlots& from) + : ::PROTOBUF_NAMESPACE_ID::Message() { + CMsgAdjustEquipSlots* const _this = this; (void)_this; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.slots_){from._impl_.slots_} + , decltype(_impl_.change_num_){}}; - // optional float server_game_time = 11; - if (cached_has_bits & 0x00000400u) { - total_size += 1 + 4; - } + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + _this->_impl_.change_num_ = from._impl_.change_num_; + // @@protoc_insertion_point(copy_constructor:CMsgAdjustEquipSlots) +} - // optional fixed64 server_relay_connected_steam_id = 12; - if (cached_has_bits & 0x00000800u) { - total_size += 1 + 8; - } +inline void CMsgAdjustEquipSlots::SharedCtor( + ::_pb::Arena* arena, bool is_message_owned) { + (void)arena; + (void)is_message_owned; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.slots_){arena} + , decltype(_impl_.change_num_){0u} + }; +} - // optional uint32 relay_slots_max = 13; - if (cached_has_bits & 0x00001000u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_relay_slots_max()); - } +CMsgAdjustEquipSlots::~CMsgAdjustEquipSlots() { + // @@protoc_insertion_point(destructor:CMsgAdjustEquipSlots) + if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { + (void)arena; + return; + } + SharedDtor(); +} - // optional int32 relays_connected = 14; - if (cached_has_bits & 0x00002000u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_relays_connected()); - } +inline void CMsgAdjustEquipSlots::SharedDtor() { + GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.slots_.~RepeatedPtrField(); +} - // optional fixed64 relayed_game_server_steam_id = 16; - if (cached_has_bits & 0x00004000u) { - total_size += 2 + 8; +void CMsgAdjustEquipSlots::SetCachedSize(int size) const { + _impl_._cached_size_.Set(size); +} + +void CMsgAdjustEquipSlots::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgAdjustEquipSlots) + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + _impl_.slots_.Clear(); + _impl_.change_num_ = 0u; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); +} + +const char* CMsgAdjustEquipSlots::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; + while (!ctx->Done(&ptr)) { + uint32_t tag; + ptr = ::_pbi::ReadTag(ptr, &tag); + switch (tag >> 3) { + // repeated .CMsgAdjustEquipSlot slots = 1; + case 1: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { + ptr -= 1; + do { + ptr += 1; + ptr = ctx->ParseMessage(_internal_add_slots(), ptr); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<10>(ptr)); + } else + goto handle_unusual; + continue; + // optional uint32 change_num = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_change_num(&has_bits); + _impl_.change_num_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + default: + goto handle_unusual; + } // switch + handle_unusual: + if ((tag == 0) || ((tag & 7) == 4)) { + CHK_(ptr); + ctx->SetLastTag(tag); + goto message_done; } + ptr = UnknownFieldParse( + tag, + _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), + ptr, ctx); + CHK_(ptr != nullptr); + } // while +message_done: + _impl_._has_bits_.Or(has_bits); + return ptr; +failure: + ptr = nullptr; + goto message_done; +#undef CHK_ +} + +uint8_t* CMsgAdjustEquipSlots::_InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:CMsgAdjustEquipSlots) + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + // repeated .CMsgAdjustEquipSlot slots = 1; + for (unsigned i = 0, + n = static_cast(this->_internal_slots_size()); i < n; i++) { + const auto& repfield = this->_internal_slots(i); + target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: + InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); + } - // optional int32 relay_clients_connected = 15; - if (cached_has_bits & 0x00008000u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_relay_clients_connected()); - } + cached_has_bits = _impl_._has_bits_[0]; + // optional uint32 change_num = 2; + if (cached_has_bits & 0x00000001u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_change_num(), target); + } + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - if (cached_has_bits & 0x00030000u) { - // optional uint32 parent_relay_count = 17; - if (cached_has_bits & 0x00010000u) { - total_size += 2 + - ::_pbi::WireFormatLite::UInt32Size( - this->_internal_parent_relay_count()); - } + // @@protoc_insertion_point(serialize_to_array_end:CMsgAdjustEquipSlots) + return target; +} - // optional fixed64 tv_secret_code = 18; - if (cached_has_bits & 0x00020000u) { - total_size += 2 + 8; - } +size_t CMsgAdjustEquipSlots::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgAdjustEquipSlots) + size_t total_size = 0; + + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + // repeated .CMsgAdjustEquipSlot slots = 1; + total_size += 1UL * this->_internal_slots_size(); + for (const auto& msg : this->_impl_.slots_) { + total_size += + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); + } + + // optional uint32 change_num = 2; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_change_num()); } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgGameServerInfo::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgAdjustEquipSlots::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgGameServerInfo::MergeImpl + CMsgAdjustEquipSlots::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGameServerInfo::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgAdjustEquipSlots::GetClassData() const { return &_class_data_; } -void CMsgGameServerInfo::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgGameServerInfo) +void CMsgAdjustEquipSlots::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgAdjustEquipSlots) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x000000ffu) { - if (cached_has_bits & 0x00000001u) { - _this->_internal_set_server_key(from._internal_server_key()); - } - if (cached_has_bits & 0x00000002u) { - _this->_impl_.server_public_ip_addr_ = from._impl_.server_public_ip_addr_; - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.server_private_ip_addr_ = from._impl_.server_private_ip_addr_; - } - if (cached_has_bits & 0x00000008u) { - _this->_impl_.server_port_ = from._impl_.server_port_; - } - if (cached_has_bits & 0x00000010u) { - _this->_impl_.server_tv_port_ = from._impl_.server_tv_port_; - } - if (cached_has_bits & 0x00000020u) { - _this->_impl_.server_hibernation_ = from._impl_.server_hibernation_; - } - if (cached_has_bits & 0x00000040u) { - _this->_impl_.server_type_ = from._impl_.server_type_; - } - if (cached_has_bits & 0x00000080u) { - _this->_impl_.server_region_ = from._impl_.server_region_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - } - if (cached_has_bits & 0x0000ff00u) { - if (cached_has_bits & 0x00000100u) { - _this->_impl_.server_loadavg_ = from._impl_.server_loadavg_; - } - if (cached_has_bits & 0x00000200u) { - _this->_impl_.server_tv_broadcast_time_ = from._impl_.server_tv_broadcast_time_; - } - if (cached_has_bits & 0x00000400u) { - _this->_impl_.server_game_time_ = from._impl_.server_game_time_; - } - if (cached_has_bits & 0x00000800u) { - _this->_impl_.server_relay_connected_steam_id_ = from._impl_.server_relay_connected_steam_id_; - } - if (cached_has_bits & 0x00001000u) { - _this->_impl_.relay_slots_max_ = from._impl_.relay_slots_max_; - } - if (cached_has_bits & 0x00002000u) { - _this->_impl_.relays_connected_ = from._impl_.relays_connected_; - } - if (cached_has_bits & 0x00004000u) { - _this->_impl_.relayed_game_server_steam_id_ = from._impl_.relayed_game_server_steam_id_; - } - if (cached_has_bits & 0x00008000u) { - _this->_impl_.relay_clients_connected_ = from._impl_.relay_clients_connected_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; - } - if (cached_has_bits & 0x00030000u) { - if (cached_has_bits & 0x00010000u) { - _this->_impl_.parent_relay_count_ = from._impl_.parent_relay_count_; - } - if (cached_has_bits & 0x00020000u) { - _this->_impl_.tv_secret_code_ = from._impl_.tv_secret_code_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; + _this->_impl_.slots_.MergeFrom(from._impl_.slots_); + if (from._internal_has_change_num()) { + _this->_internal_set_change_num(from._internal_change_num()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgGameServerInfo::CopyFrom(const CMsgGameServerInfo& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgGameServerInfo) +void CMsgAdjustEquipSlots::CopyFrom(const CMsgAdjustEquipSlots& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgAdjustEquipSlots) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgGameServerInfo::IsInitialized() const { +bool CMsgAdjustEquipSlots::IsInitialized() const { return true; } -void CMsgGameServerInfo::InternalSwap(CMsgGameServerInfo* other) { +void CMsgAdjustEquipSlots::InternalSwap(CMsgAdjustEquipSlots* other) { using std::swap; - auto* lhs_arena = GetArenaForAllocation(); - auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.server_key_, lhs_arena, - &other->_impl_.server_key_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgGameServerInfo, _impl_.tv_secret_code_) - + sizeof(CMsgGameServerInfo::_impl_.tv_secret_code_) - - PROTOBUF_FIELD_OFFSET(CMsgGameServerInfo, _impl_.server_public_ip_addr_)>( - reinterpret_cast(&_impl_.server_public_ip_addr_), - reinterpret_cast(&other->_impl_.server_public_ip_addr_)); + _impl_.slots_.InternalSwap(&other->_impl_.slots_); + swap(_impl_.change_num_, other->_impl_.change_num_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgGameServerInfo::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgAdjustEquipSlots::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[79]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[79]); } // =================================================================== -class CSOEconEquipSlot::_Internal { +class CMsgOpenCrate::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_account_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_tool_item_id(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_class_id(HasBits* has_bits) { + static void set_has_subject_item_id(HasBits* has_bits) { (*has_bits)[0] |= 2u; } - static void set_has_slot_id(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } - static void set_has_item_id(HasBits* has_bits) { + static void set_has_for_rental(HasBits* has_bits) { (*has_bits)[0] |= 4u; } - static void set_has_item_definition(HasBits* has_bits) { - (*has_bits)[0] |= 16u; + static void set_has_points_remaining(HasBits* has_bits) { + (*has_bits)[0] |= 8u; } }; -CSOEconEquipSlot::CSOEconEquipSlot(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgOpenCrate::CMsgOpenCrate(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CSOEconEquipSlot) + // @@protoc_insertion_point(arena_constructor:CMsgOpenCrate) } -CSOEconEquipSlot::CSOEconEquipSlot(const CSOEconEquipSlot& from) +CMsgOpenCrate::CMsgOpenCrate(const CMsgOpenCrate& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CSOEconEquipSlot* const _this = this; (void)_this; + CMsgOpenCrate* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.account_id_){} - , decltype(_impl_.class_id_){} - , decltype(_impl_.item_id_){} - , decltype(_impl_.slot_id_){} - , decltype(_impl_.item_definition_){}}; + , decltype(_impl_.tool_item_id_){} + , decltype(_impl_.subject_item_id_){} + , decltype(_impl_.for_rental_){} + , decltype(_impl_.points_remaining_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.account_id_, &from._impl_.account_id_, - static_cast(reinterpret_cast(&_impl_.item_definition_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_definition_)); - // @@protoc_insertion_point(copy_constructor:CSOEconEquipSlot) + ::memcpy(&_impl_.tool_item_id_, &from._impl_.tool_item_id_, + static_cast(reinterpret_cast(&_impl_.points_remaining_) - + reinterpret_cast(&_impl_.tool_item_id_)) + sizeof(_impl_.points_remaining_)); + // @@protoc_insertion_point(copy_constructor:CMsgOpenCrate) } -inline void CSOEconEquipSlot::SharedCtor( +inline void CMsgOpenCrate::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.account_id_){0u} - , decltype(_impl_.class_id_){0u} - , decltype(_impl_.item_id_){uint64_t{0u}} - , decltype(_impl_.slot_id_){0u} - , decltype(_impl_.item_definition_){0u} + , decltype(_impl_.tool_item_id_){uint64_t{0u}} + , decltype(_impl_.subject_item_id_){uint64_t{0u}} + , decltype(_impl_.for_rental_){false} + , decltype(_impl_.points_remaining_){0u} }; } -CSOEconEquipSlot::~CSOEconEquipSlot() { - // @@protoc_insertion_point(destructor:CSOEconEquipSlot) +CMsgOpenCrate::~CMsgOpenCrate() { + // @@protoc_insertion_point(destructor:CMsgOpenCrate) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -24677,78 +24904,69 @@ CSOEconEquipSlot::~CSOEconEquipSlot() { SharedDtor(); } -inline void CSOEconEquipSlot::SharedDtor() { +inline void CMsgOpenCrate::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CSOEconEquipSlot::SetCachedSize(int size) const { +void CMsgOpenCrate::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CSOEconEquipSlot::Clear() { -// @@protoc_insertion_point(message_clear_start:CSOEconEquipSlot) +void CMsgOpenCrate::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgOpenCrate) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { - ::memset(&_impl_.account_id_, 0, static_cast( - reinterpret_cast(&_impl_.item_definition_) - - reinterpret_cast(&_impl_.account_id_)) + sizeof(_impl_.item_definition_)); + if (cached_has_bits & 0x0000000fu) { + ::memset(&_impl_.tool_item_id_, 0, static_cast( + reinterpret_cast(&_impl_.points_remaining_) - + reinterpret_cast(&_impl_.tool_item_id_)) + sizeof(_impl_.points_remaining_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CSOEconEquipSlot::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgOpenCrate::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 account_id = 1 [(.key_field) = true]; + // optional uint64 tool_item_id = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_account_id(&has_bits); - _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_tool_item_id(&has_bits); + _impl_.tool_item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 class_id = 2 [(.key_field) = true]; + // optional uint64 subject_item_id = 2; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_class_id(&has_bits); - _impl_.class_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_subject_item_id(&has_bits); + _impl_.subject_item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 slot_id = 3 [(.key_field) = true]; + // optional bool for_rental = 3; case 3: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_slot_id(&has_bits); - _impl_.slot_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_for_rental(&has_bits); + _impl_.for_rental_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint64 item_id = 4; + // optional uint32 points_remaining = 4; case 4: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { - _Internal::set_has_item_id(&has_bits); - _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional uint32 item_definition = 5; - case 5: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 40)) { - _Internal::set_has_item_definition(&has_bits); - _impl_.item_definition_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_points_remaining(&has_bits); + _impl_.points_remaining_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -24777,53 +24995,47 @@ const char* CSOEconEquipSlot::_InternalParse(const char* ptr, ::_pbi::ParseConte #undef CHK_ } -uint8_t* CSOEconEquipSlot::_InternalSerialize( +uint8_t* CMsgOpenCrate::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CSOEconEquipSlot) + // @@protoc_insertion_point(serialize_to_array_start:CMsgOpenCrate) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 account_id = 1 [(.key_field) = true]; + // optional uint64 tool_item_id = 1; if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(1, this->_internal_tool_item_id(), target); } - // optional uint32 class_id = 2 [(.key_field) = true]; + // optional uint64 subject_item_id = 2; if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_class_id(), target); - } - - // optional uint32 slot_id = 3 [(.key_field) = true]; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_slot_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_subject_item_id(), target); } - // optional uint64 item_id = 4; + // optional bool for_rental = 3; if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(4, this->_internal_item_id(), target); + target = ::_pbi::WireFormatLite::WriteBoolToArray(3, this->_internal_for_rental(), target); } - // optional uint32 item_definition = 5; - if (cached_has_bits & 0x00000010u) { + // optional uint32 points_remaining = 4; + if (cached_has_bits & 0x00000008u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(5, this->_internal_item_definition(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_points_remaining(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CSOEconEquipSlot) + // @@protoc_insertion_point(serialize_to_array_end:CMsgOpenCrate) return target; } -size_t CSOEconEquipSlot::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CSOEconEquipSlot) +size_t CMsgOpenCrate::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgOpenCrate) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -24831,156 +25043,158 @@ size_t CSOEconEquipSlot::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { - // optional uint32 account_id = 1 [(.key_field) = true]; + if (cached_has_bits & 0x0000000fu) { + // optional uint64 tool_item_id = 1; if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_tool_item_id()); } - // optional uint32 class_id = 2 [(.key_field) = true]; + // optional uint64 subject_item_id = 2; if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_class_id()); + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_subject_item_id()); } - // optional uint64 item_id = 4; + // optional bool for_rental = 3; if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); + total_size += 1 + 1; } - // optional uint32 slot_id = 3 [(.key_field) = true]; + // optional uint32 points_remaining = 4; if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_slot_id()); - } - - // optional uint32 item_definition = 5; - if (cached_has_bits & 0x00000010u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_item_definition()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_points_remaining()); } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconEquipSlot::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgOpenCrate::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CSOEconEquipSlot::MergeImpl + CMsgOpenCrate::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconEquipSlot::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgOpenCrate::GetClassData() const { return &_class_data_; } -void CSOEconEquipSlot::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconEquipSlot) +void CMsgOpenCrate::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgOpenCrate) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { + if (cached_has_bits & 0x0000000fu) { if (cached_has_bits & 0x00000001u) { - _this->_impl_.account_id_ = from._impl_.account_id_; + _this->_impl_.tool_item_id_ = from._impl_.tool_item_id_; } if (cached_has_bits & 0x00000002u) { - _this->_impl_.class_id_ = from._impl_.class_id_; + _this->_impl_.subject_item_id_ = from._impl_.subject_item_id_; } if (cached_has_bits & 0x00000004u) { - _this->_impl_.item_id_ = from._impl_.item_id_; + _this->_impl_.for_rental_ = from._impl_.for_rental_; } if (cached_has_bits & 0x00000008u) { - _this->_impl_.slot_id_ = from._impl_.slot_id_; - } - if (cached_has_bits & 0x00000010u) { - _this->_impl_.item_definition_ = from._impl_.item_definition_; + _this->_impl_.points_remaining_ = from._impl_.points_remaining_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CSOEconEquipSlot::CopyFrom(const CSOEconEquipSlot& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconEquipSlot) +void CMsgOpenCrate::CopyFrom(const CMsgOpenCrate& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgOpenCrate) if (&from == this) return; Clear(); MergeFrom(from); } -bool CSOEconEquipSlot::IsInitialized() const { +bool CMsgOpenCrate::IsInitialized() const { return true; } -void CSOEconEquipSlot::InternalSwap(CSOEconEquipSlot* other) { +void CMsgOpenCrate::InternalSwap(CMsgOpenCrate* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CSOEconEquipSlot, _impl_.item_definition_) - + sizeof(CSOEconEquipSlot::_impl_.item_definition_) - - PROTOBUF_FIELD_OFFSET(CSOEconEquipSlot, _impl_.account_id_)>( - reinterpret_cast(&_impl_.account_id_), - reinterpret_cast(&other->_impl_.account_id_)); + PROTOBUF_FIELD_OFFSET(CMsgOpenCrate, _impl_.points_remaining_) + + sizeof(CMsgOpenCrate::_impl_.points_remaining_) + - PROTOBUF_FIELD_OFFSET(CMsgOpenCrate, _impl_.tool_item_id_)>( + reinterpret_cast(&_impl_.tool_item_id_), + reinterpret_cast(&other->_impl_.tool_item_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CSOEconEquipSlot::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgOpenCrate::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[80]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[80]); } // =================================================================== -class CMsgAdjustEquipSlot::_Internal { +class CSOEconRentalHistory::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_class_id(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } - static void set_has_slot_id(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_account_id(HasBits* has_bits) { (*has_bits)[0] |= 2u; } - static void set_has_item_id(HasBits* has_bits) { + static void set_has_crate_item_id(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } + static void set_has_crate_def_index(HasBits* has_bits) { (*has_bits)[0] |= 4u; } + static void set_has_issue_date(HasBits* has_bits) { + (*has_bits)[0] |= 8u; + } + static void set_has_expiration_date(HasBits* has_bits) { + (*has_bits)[0] |= 16u; + } }; -CMsgAdjustEquipSlot::CMsgAdjustEquipSlot(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CSOEconRentalHistory::CSOEconRentalHistory(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgAdjustEquipSlot) + // @@protoc_insertion_point(arena_constructor:CSOEconRentalHistory) } -CMsgAdjustEquipSlot::CMsgAdjustEquipSlot(const CMsgAdjustEquipSlot& from) +CSOEconRentalHistory::CSOEconRentalHistory(const CSOEconRentalHistory& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgAdjustEquipSlot* const _this = this; (void)_this; + CSOEconRentalHistory* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.class_id_){} - , decltype(_impl_.slot_id_){} - , decltype(_impl_.item_id_){}}; + , decltype(_impl_.crate_item_id_){} + , decltype(_impl_.account_id_){} + , decltype(_impl_.crate_def_index_){} + , decltype(_impl_.issue_date_){} + , decltype(_impl_.expiration_date_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - ::memcpy(&_impl_.class_id_, &from._impl_.class_id_, - static_cast(reinterpret_cast(&_impl_.item_id_) - - reinterpret_cast(&_impl_.class_id_)) + sizeof(_impl_.item_id_)); - // @@protoc_insertion_point(copy_constructor:CMsgAdjustEquipSlot) + ::memcpy(&_impl_.crate_item_id_, &from._impl_.crate_item_id_, + static_cast(reinterpret_cast(&_impl_.expiration_date_) - + reinterpret_cast(&_impl_.crate_item_id_)) + sizeof(_impl_.expiration_date_)); + // @@protoc_insertion_point(copy_constructor:CSOEconRentalHistory) } -inline void CMsgAdjustEquipSlot::SharedCtor( +inline void CSOEconRentalHistory::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.class_id_){0u} - , decltype(_impl_.slot_id_){0u} - , decltype(_impl_.item_id_){uint64_t{0u}} + , decltype(_impl_.crate_item_id_){uint64_t{0u}} + , decltype(_impl_.account_id_){0u} + , decltype(_impl_.crate_def_index_){0u} + , decltype(_impl_.issue_date_){0u} + , decltype(_impl_.expiration_date_){0u} }; } -CMsgAdjustEquipSlot::~CMsgAdjustEquipSlot() { - // @@protoc_insertion_point(destructor:CMsgAdjustEquipSlot) +CSOEconRentalHistory::~CSOEconRentalHistory() { + // @@protoc_insertion_point(destructor:CSOEconRentalHistory) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -24988,60 +25202,78 @@ CMsgAdjustEquipSlot::~CMsgAdjustEquipSlot() { SharedDtor(); } -inline void CMsgAdjustEquipSlot::SharedDtor() { +inline void CSOEconRentalHistory::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } -void CMsgAdjustEquipSlot::SetCachedSize(int size) const { +void CSOEconRentalHistory::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgAdjustEquipSlot::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgAdjustEquipSlot) +void CSOEconRentalHistory::Clear() { +// @@protoc_insertion_point(message_clear_start:CSOEconRentalHistory) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - ::memset(&_impl_.class_id_, 0, static_cast( - reinterpret_cast(&_impl_.item_id_) - - reinterpret_cast(&_impl_.class_id_)) + sizeof(_impl_.item_id_)); + if (cached_has_bits & 0x0000001fu) { + ::memset(&_impl_.crate_item_id_, 0, static_cast( + reinterpret_cast(&_impl_.expiration_date_) - + reinterpret_cast(&_impl_.crate_item_id_)) + sizeof(_impl_.expiration_date_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgAdjustEquipSlot::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CSOEconRentalHistory::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional uint32 class_id = 1; + // optional uint32 account_id = 1 [(.key_field) = true]; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_class_id(&has_bits); - _impl_.class_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_account_id(&has_bits); + _impl_.account_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint32 slot_id = 2; + // optional uint64 crate_item_id = 2 [(.key_field) = true]; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { - _Internal::set_has_slot_id(&has_bits); - _impl_.slot_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + _Internal::set_has_crate_item_id(&has_bits); + _impl_.crate_item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); CHK_(ptr); } else goto handle_unusual; continue; - // optional uint64 item_id = 3; + // optional uint32 crate_def_index = 3; case 3: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_item_id(&has_bits); - _impl_.item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + _Internal::set_has_crate_def_index(&has_bits); + _impl_.crate_def_index_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint32 issue_date = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { + _Internal::set_has_issue_date(&has_bits); + _impl_.issue_date_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint32 expiration_date = 5; + case 5: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 40)) { + _Internal::set_has_expiration_date(&has_bits); + _impl_.expiration_date_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); } else goto handle_unusual; @@ -25070,41 +25302,53 @@ const char* CMsgAdjustEquipSlot::_InternalParse(const char* ptr, ::_pbi::ParseCo #undef CHK_ } -uint8_t* CMsgAdjustEquipSlot::_InternalSerialize( +uint8_t* CSOEconRentalHistory::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgAdjustEquipSlot) + // @@protoc_insertion_point(serialize_to_array_start:CSOEconRentalHistory) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional uint32 class_id = 1; - if (cached_has_bits & 0x00000001u) { + // optional uint32 account_id = 1 [(.key_field) = true]; + if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_class_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_account_id(), target); } - // optional uint32 slot_id = 2; - if (cached_has_bits & 0x00000002u) { + // optional uint64 crate_item_id = 2 [(.key_field) = true]; + if (cached_has_bits & 0x00000001u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_slot_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_crate_item_id(), target); } - // optional uint64 item_id = 3; + // optional uint32 crate_def_index = 3; if (cached_has_bits & 0x00000004u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteUInt64ToArray(3, this->_internal_item_id(), target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_crate_def_index(), target); + } + + // optional uint32 issue_date = 4; + if (cached_has_bits & 0x00000008u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(4, this->_internal_issue_date(), target); + } + + // optional uint32 expiration_date = 5; + if (cached_has_bits & 0x00000010u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(5, this->_internal_expiration_date(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgAdjustEquipSlot) + // @@protoc_insertion_point(serialize_to_array_end:CSOEconRentalHistory) return target; } -size_t CMsgAdjustEquipSlot::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgAdjustEquipSlot) +size_t CSOEconRentalHistory::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CSOEconRentalHistory) size_t total_size = 0; uint32_t cached_has_bits = 0; @@ -25112,121 +25356,144 @@ size_t CMsgAdjustEquipSlot::ByteSizeLong() const { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { - // optional uint32 class_id = 1; + if (cached_has_bits & 0x0000001fu) { + // optional uint64 crate_item_id = 2 [(.key_field) = true]; if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_class_id()); + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_crate_item_id()); } - // optional uint32 slot_id = 2; + // optional uint32 account_id = 1 [(.key_field) = true]; if (cached_has_bits & 0x00000002u) { - total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_slot_id()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_account_id()); } - // optional uint64 item_id = 3; + // optional uint32 crate_def_index = 3; if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_item_id()); + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_crate_def_index()); + } + + // optional uint32 issue_date = 4; + if (cached_has_bits & 0x00000008u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_issue_date()); + } + + // optional uint32 expiration_date = 5; + if (cached_has_bits & 0x00000010u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_expiration_date()); } } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgAdjustEquipSlot::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOEconRentalHistory::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgAdjustEquipSlot::MergeImpl + CSOEconRentalHistory::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgAdjustEquipSlot::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOEconRentalHistory::GetClassData() const { return &_class_data_; } -void CMsgAdjustEquipSlot::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgAdjustEquipSlot) +void CSOEconRentalHistory::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CSOEconRentalHistory) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x0000001fu) { if (cached_has_bits & 0x00000001u) { - _this->_impl_.class_id_ = from._impl_.class_id_; + _this->_impl_.crate_item_id_ = from._impl_.crate_item_id_; } if (cached_has_bits & 0x00000002u) { - _this->_impl_.slot_id_ = from._impl_.slot_id_; + _this->_impl_.account_id_ = from._impl_.account_id_; } if (cached_has_bits & 0x00000004u) { - _this->_impl_.item_id_ = from._impl_.item_id_; + _this->_impl_.crate_def_index_ = from._impl_.crate_def_index_; + } + if (cached_has_bits & 0x00000008u) { + _this->_impl_.issue_date_ = from._impl_.issue_date_; + } + if (cached_has_bits & 0x00000010u) { + _this->_impl_.expiration_date_ = from._impl_.expiration_date_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgAdjustEquipSlot::CopyFrom(const CMsgAdjustEquipSlot& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgAdjustEquipSlot) +void CSOEconRentalHistory::CopyFrom(const CSOEconRentalHistory& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CSOEconRentalHistory) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgAdjustEquipSlot::IsInitialized() const { +bool CSOEconRentalHistory::IsInitialized() const { return true; } -void CMsgAdjustEquipSlot::InternalSwap(CMsgAdjustEquipSlot* other) { +void CSOEconRentalHistory::InternalSwap(CSOEconRentalHistory* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgAdjustEquipSlot, _impl_.item_id_) - + sizeof(CMsgAdjustEquipSlot::_impl_.item_id_) - - PROTOBUF_FIELD_OFFSET(CMsgAdjustEquipSlot, _impl_.class_id_)>( - reinterpret_cast(&_impl_.class_id_), - reinterpret_cast(&other->_impl_.class_id_)); + PROTOBUF_FIELD_OFFSET(CSOEconRentalHistory, _impl_.expiration_date_) + + sizeof(CSOEconRentalHistory::_impl_.expiration_date_) + - PROTOBUF_FIELD_OFFSET(CSOEconRentalHistory, _impl_.crate_item_id_)>( + reinterpret_cast(&_impl_.crate_item_id_), + reinterpret_cast(&other->_impl_.crate_item_id_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgAdjustEquipSlot::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CSOEconRentalHistory::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[81]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[81]); } // =================================================================== -class CMsgAdjustEquipSlots::_Internal { +class CMsgAcknowledgeRentalExpiration::_Internal { public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_crate_item_id(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } }; -CMsgAdjustEquipSlots::CMsgAdjustEquipSlots(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CMsgAcknowledgeRentalExpiration::CMsgAcknowledgeRentalExpiration(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CMsgAdjustEquipSlots) + // @@protoc_insertion_point(arena_constructor:CMsgAcknowledgeRentalExpiration) } -CMsgAdjustEquipSlots::CMsgAdjustEquipSlots(const CMsgAdjustEquipSlots& from) +CMsgAcknowledgeRentalExpiration::CMsgAcknowledgeRentalExpiration(const CMsgAcknowledgeRentalExpiration& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CMsgAdjustEquipSlots* const _this = this; (void)_this; + CMsgAcknowledgeRentalExpiration* const _this = this; (void)_this; new (&_impl_) Impl_{ - decltype(_impl_.slots_){from._impl_.slots_} - , /*decltype(_impl_._cached_size_)*/{}}; + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.crate_item_id_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - // @@protoc_insertion_point(copy_constructor:CMsgAdjustEquipSlots) + _this->_impl_.crate_item_id_ = from._impl_.crate_item_id_; + // @@protoc_insertion_point(copy_constructor:CMsgAcknowledgeRentalExpiration) } -inline void CMsgAdjustEquipSlots::SharedCtor( +inline void CMsgAcknowledgeRentalExpiration::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ - decltype(_impl_.slots_){arena} + decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.crate_item_id_){uint64_t{0u}} }; } -CMsgAdjustEquipSlots::~CMsgAdjustEquipSlots() { - // @@protoc_insertion_point(destructor:CMsgAdjustEquipSlots) +CMsgAcknowledgeRentalExpiration::~CMsgAcknowledgeRentalExpiration() { + // @@protoc_insertion_point(destructor:CMsgAcknowledgeRentalExpiration) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -25234,41 +25501,38 @@ CMsgAdjustEquipSlots::~CMsgAdjustEquipSlots() { SharedDtor(); } -inline void CMsgAdjustEquipSlots::SharedDtor() { +inline void CMsgAcknowledgeRentalExpiration::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.slots_.~RepeatedPtrField(); } -void CMsgAdjustEquipSlots::SetCachedSize(int size) const { +void CMsgAcknowledgeRentalExpiration::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CMsgAdjustEquipSlots::Clear() { -// @@protoc_insertion_point(message_clear_start:CMsgAdjustEquipSlots) +void CMsgAcknowledgeRentalExpiration::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgAcknowledgeRentalExpiration) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.slots_.Clear(); + _impl_.crate_item_id_ = uint64_t{0u}; + _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CMsgAdjustEquipSlots::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CMsgAcknowledgeRentalExpiration::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // repeated .CMsgAdjustEquipSlot slots = 1; + // optional uint64 crate_item_id = 1; case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { - ptr -= 1; - do { - ptr += 1; - ptr = ctx->ParseMessage(_internal_add_slots(), ptr); - CHK_(ptr); - if (!ctx->DataAvailable(ptr)) break; - } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<10>(ptr)); + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_crate_item_id(&has_bits); + _impl_.crate_item_id_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr); + CHK_(ptr); } else goto handle_unusual; continue; @@ -25288,6 +25552,7 @@ const char* CMsgAdjustEquipSlots::_InternalParse(const char* ptr, ::_pbi::ParseC CHK_(ptr != nullptr); } // while message_done: + _impl_._has_bits_.Or(has_bits); return ptr; failure: ptr = nullptr; @@ -25295,86 +25560,87 @@ const char* CMsgAdjustEquipSlots::_InternalParse(const char* ptr, ::_pbi::ParseC #undef CHK_ } -uint8_t* CMsgAdjustEquipSlots::_InternalSerialize( +uint8_t* CMsgAcknowledgeRentalExpiration::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CMsgAdjustEquipSlots) + // @@protoc_insertion_point(serialize_to_array_start:CMsgAcknowledgeRentalExpiration) uint32_t cached_has_bits = 0; (void) cached_has_bits; - // repeated .CMsgAdjustEquipSlot slots = 1; - for (unsigned i = 0, - n = static_cast(this->_internal_slots_size()); i < n; i++) { - const auto& repfield = this->_internal_slots(i); - target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: - InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); + cached_has_bits = _impl_._has_bits_[0]; + // optional uint64 crate_item_id = 1; + if (cached_has_bits & 0x00000001u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(1, this->_internal_crate_item_id(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CMsgAdjustEquipSlots) + // @@protoc_insertion_point(serialize_to_array_end:CMsgAcknowledgeRentalExpiration) return target; } -size_t CMsgAdjustEquipSlots::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CMsgAdjustEquipSlots) +size_t CMsgAcknowledgeRentalExpiration::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgAcknowledgeRentalExpiration) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // repeated .CMsgAdjustEquipSlot slots = 1; - total_size += 1UL * this->_internal_slots_size(); - for (const auto& msg : this->_impl_.slots_) { - total_size += - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); + // optional uint64 crate_item_id = 1; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_crate_item_id()); } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgAdjustEquipSlots::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgAcknowledgeRentalExpiration::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CMsgAdjustEquipSlots::MergeImpl + CMsgAcknowledgeRentalExpiration::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgAdjustEquipSlots::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgAcknowledgeRentalExpiration::GetClassData() const { return &_class_data_; } -void CMsgAdjustEquipSlots::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CMsgAdjustEquipSlots) +void CMsgAcknowledgeRentalExpiration::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgAcknowledgeRentalExpiration) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - _this->_impl_.slots_.MergeFrom(from._impl_.slots_); + if (from._internal_has_crate_item_id()) { + _this->_internal_set_crate_item_id(from._internal_crate_item_id()); + } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgAdjustEquipSlots::CopyFrom(const CMsgAdjustEquipSlots& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgAdjustEquipSlots) +void CMsgAcknowledgeRentalExpiration::CopyFrom(const CMsgAcknowledgeRentalExpiration& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgAcknowledgeRentalExpiration) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgAdjustEquipSlots::IsInitialized() const { +bool CMsgAcknowledgeRentalExpiration::IsInitialized() const { return true; } -void CMsgAdjustEquipSlots::InternalSwap(CMsgAdjustEquipSlots* other) { +void CMsgAcknowledgeRentalExpiration::InternalSwap(CMsgAcknowledgeRentalExpiration* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); - _impl_.slots_.InternalSwap(&other->_impl_.slots_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + swap(_impl_.crate_item_id_, other->_impl_.crate_item_id_); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgAdjustEquipSlots::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgAcknowledgeRentalExpiration::GetMetadata() const { return ::_pbi::AssignDescriptors( - &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_getter, &descriptor_table_base_5fgcmessages_5fcsgo_2eproto_once, - file_level_metadata_base_5fgcmessages_5fcsgo_2eproto[82]); + &descriptor_table_base_5fgcmessages_2eproto_getter, &descriptor_table_base_5fgcmessages_2eproto_once, + file_level_metadata_base_5fgcmessages_2eproto[82]); } // @@protoc_insertion_point(namespace_scope) @@ -25491,14 +25757,6 @@ template<> PROTOBUF_NOINLINE ::CSOEconItem* Arena::CreateMaybeMessage< ::CSOEconItem >(Arena* arena) { return Arena::CreateMessageInternal< ::CSOEconItem >(arena); } -template<> PROTOBUF_NOINLINE ::CMsgAdjustItemEquippedState* -Arena::CreateMaybeMessage< ::CMsgAdjustItemEquippedState >(Arena* arena) { - return Arena::CreateMessageInternal< ::CMsgAdjustItemEquippedState >(arena); -} -template<> PROTOBUF_NOINLINE ::CMsgAdjustItemEquippedStateMulti* -Arena::CreateMaybeMessage< ::CMsgAdjustItemEquippedStateMulti >(Arena* arena) { - return Arena::CreateMessageInternal< ::CMsgAdjustItemEquippedStateMulti >(arena); -} template<> PROTOBUF_NOINLINE ::CMsgSortItems* Arena::CreateMaybeMessage< ::CMsgSortItems >(Arena* arena) { return Arena::CreateMessageInternal< ::CMsgSortItems >(arena); @@ -25643,10 +25901,6 @@ template<> PROTOBUF_NOINLINE ::CMsgGCToGCBannedWordListUpdated* Arena::CreateMaybeMessage< ::CMsgGCToGCBannedWordListUpdated >(Arena* arena) { return Arena::CreateMessageInternal< ::CMsgGCToGCBannedWordListUpdated >(arena); } -template<> PROTOBUF_NOINLINE ::CSOEconDefaultEquippedDefinitionInstanceClient* -Arena::CreateMaybeMessage< ::CSOEconDefaultEquippedDefinitionInstanceClient >(Arena* arena) { - return Arena::CreateMessageInternal< ::CSOEconDefaultEquippedDefinitionInstanceClient >(arena); -} template<> PROTOBUF_NOINLINE ::CMsgGCToGCDirtySDOCache* Arena::CreateMaybeMessage< ::CMsgGCToGCDirtySDOCache >(Arena* arena) { return Arena::CreateMessageInternal< ::CMsgGCToGCDirtySDOCache >(arena); @@ -25711,6 +25965,18 @@ template<> PROTOBUF_NOINLINE ::CMsgAdjustEquipSlots* Arena::CreateMaybeMessage< ::CMsgAdjustEquipSlots >(Arena* arena) { return Arena::CreateMessageInternal< ::CMsgAdjustEquipSlots >(arena); } +template<> PROTOBUF_NOINLINE ::CMsgOpenCrate* +Arena::CreateMaybeMessage< ::CMsgOpenCrate >(Arena* arena) { + return Arena::CreateMessageInternal< ::CMsgOpenCrate >(arena); +} +template<> PROTOBUF_NOINLINE ::CSOEconRentalHistory* +Arena::CreateMaybeMessage< ::CSOEconRentalHistory >(Arena* arena) { + return Arena::CreateMessageInternal< ::CSOEconRentalHistory >(arena); +} +template<> PROTOBUF_NOINLINE ::CMsgAcknowledgeRentalExpiration* +Arena::CreateMaybeMessage< ::CMsgAcknowledgeRentalExpiration >(Arena* arena) { + return Arena::CreateMessageInternal< ::CMsgAcknowledgeRentalExpiration >(arena); +} PROTOBUF_NAMESPACE_CLOSE // @@protoc_insertion_point(global_scope) diff --git a/protobuf/generated/base_gcmessages_csgo.pb.h b/protobuf/generated/base_gcmessages.pb.h similarity index 96% rename from protobuf/generated/base_gcmessages_csgo.pb.h rename to protobuf/generated/base_gcmessages.pb.h index 980546e94..9136803ec 100644 --- a/protobuf/generated/base_gcmessages_csgo.pb.h +++ b/protobuf/generated/base_gcmessages.pb.h @@ -1,8 +1,8 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! -// source: base_gcmessages_csgo.proto +// source: base_gcmessages.proto -#ifndef GOOGLE_PROTOBUF_INCLUDED_base_5fgcmessages_5fcsgo_2eproto -#define GOOGLE_PROTOBUF_INCLUDED_base_5fgcmessages_5fcsgo_2eproto +#ifndef GOOGLE_PROTOBUF_INCLUDED_base_5fgcmessages_2eproto +#define GOOGLE_PROTOBUF_INCLUDED_base_5fgcmessages_2eproto #include #include @@ -35,7 +35,7 @@ #include "steammessages.pb.h" // @@protoc_insertion_point(includes) #include -#define PROTOBUF_INTERNAL_EXPORT_base_5fgcmessages_5fcsgo_2eproto +#define PROTOBUF_INTERNAL_EXPORT_base_5fgcmessages_2eproto PROTOBUF_NAMESPACE_OPEN namespace internal { class AnyMetadata; @@ -43,25 +43,22 @@ class AnyMetadata; PROTOBUF_NAMESPACE_CLOSE // Internal implementation detail -- do not use these members. -struct TableStruct_base_5fgcmessages_5fcsgo_2eproto { +struct TableStruct_base_5fgcmessages_2eproto { static const uint32_t offsets[]; }; -extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_base_5fgcmessages_5fcsgo_2eproto; +extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_base_5fgcmessages_2eproto; class CGCStorePurchaseInit_LineItem; struct CGCStorePurchaseInit_LineItemDefaultTypeInternal; extern CGCStorePurchaseInit_LineItemDefaultTypeInternal _CGCStorePurchaseInit_LineItem_default_instance_; +class CMsgAcknowledgeRentalExpiration; +struct CMsgAcknowledgeRentalExpirationDefaultTypeInternal; +extern CMsgAcknowledgeRentalExpirationDefaultTypeInternal _CMsgAcknowledgeRentalExpiration_default_instance_; class CMsgAdjustEquipSlot; struct CMsgAdjustEquipSlotDefaultTypeInternal; extern CMsgAdjustEquipSlotDefaultTypeInternal _CMsgAdjustEquipSlot_default_instance_; class CMsgAdjustEquipSlots; struct CMsgAdjustEquipSlotsDefaultTypeInternal; extern CMsgAdjustEquipSlotsDefaultTypeInternal _CMsgAdjustEquipSlots_default_instance_; -class CMsgAdjustItemEquippedState; -struct CMsgAdjustItemEquippedStateDefaultTypeInternal; -extern CMsgAdjustItemEquippedStateDefaultTypeInternal _CMsgAdjustItemEquippedState_default_instance_; -class CMsgAdjustItemEquippedStateMulti; -struct CMsgAdjustItemEquippedStateMultiDefaultTypeInternal; -extern CMsgAdjustItemEquippedStateMultiDefaultTypeInternal _CMsgAdjustItemEquippedStateMulti_default_instance_; class CMsgApplyEggEssence; struct CMsgApplyEggEssenceDefaultTypeInternal; extern CMsgApplyEggEssenceDefaultTypeInternal _CMsgApplyEggEssence_default_instance_; @@ -209,6 +206,9 @@ extern CMsgLeavePartyDefaultTypeInternal _CMsgLeaveParty_default_instance_; class CMsgModifyItemAttribute; struct CMsgModifyItemAttributeDefaultTypeInternal; extern CMsgModifyItemAttributeDefaultTypeInternal _CMsgModifyItemAttribute_default_instance_; +class CMsgOpenCrate; +struct CMsgOpenCrateDefaultTypeInternal; +extern CMsgOpenCrateDefaultTypeInternal _CMsgOpenCrate_default_instance_; class CMsgPartyInviteResponse; struct CMsgPartyInviteResponseDefaultTypeInternal; extern CMsgPartyInviteResponseDefaultTypeInternal _CMsgPartyInviteResponse_default_instance_; @@ -254,9 +254,6 @@ extern CMsgUseItemDefaultTypeInternal _CMsgUseItem_default_instance_; class CSOEconClaimCode; struct CSOEconClaimCodeDefaultTypeInternal; extern CSOEconClaimCodeDefaultTypeInternal _CSOEconClaimCode_default_instance_; -class CSOEconDefaultEquippedDefinitionInstanceClient; -struct CSOEconDefaultEquippedDefinitionInstanceClientDefaultTypeInternal; -extern CSOEconDefaultEquippedDefinitionInstanceClientDefaultTypeInternal _CSOEconDefaultEquippedDefinitionInstanceClient_default_instance_; class CSOEconEquipSlot; struct CSOEconEquipSlotDefaultTypeInternal; extern CSOEconEquipSlotDefaultTypeInternal _CSOEconEquipSlot_default_instance_; @@ -281,6 +278,9 @@ extern CSOEconItemEventTicketDefaultTypeInternal _CSOEconItemEventTicket_default class CSOEconItemLeagueViewPass; struct CSOEconItemLeagueViewPassDefaultTypeInternal; extern CSOEconItemLeagueViewPassDefaultTypeInternal _CSOEconItemLeagueViewPass_default_instance_; +class CSOEconRentalHistory; +struct CSOEconRentalHistoryDefaultTypeInternal; +extern CSOEconRentalHistoryDefaultTypeInternal _CSOEconRentalHistory_default_instance_; class CSOItemCriteria; struct CSOItemCriteriaDefaultTypeInternal; extern CSOItemCriteriaDefaultTypeInternal _CSOItemCriteria_default_instance_; @@ -298,10 +298,9 @@ struct CSOPartyInviteDefaultTypeInternal; extern CSOPartyInviteDefaultTypeInternal _CSOPartyInvite_default_instance_; PROTOBUF_NAMESPACE_OPEN template<> ::CGCStorePurchaseInit_LineItem* Arena::CreateMaybeMessage<::CGCStorePurchaseInit_LineItem>(Arena*); +template<> ::CMsgAcknowledgeRentalExpiration* Arena::CreateMaybeMessage<::CMsgAcknowledgeRentalExpiration>(Arena*); template<> ::CMsgAdjustEquipSlot* Arena::CreateMaybeMessage<::CMsgAdjustEquipSlot>(Arena*); template<> ::CMsgAdjustEquipSlots* Arena::CreateMaybeMessage<::CMsgAdjustEquipSlots>(Arena*); -template<> ::CMsgAdjustItemEquippedState* Arena::CreateMaybeMessage<::CMsgAdjustItemEquippedState>(Arena*); -template<> ::CMsgAdjustItemEquippedStateMulti* Arena::CreateMaybeMessage<::CMsgAdjustItemEquippedStateMulti>(Arena*); template<> ::CMsgApplyEggEssence* Arena::CreateMaybeMessage<::CMsgApplyEggEssence>(Arena*); template<> ::CMsgApplyPennantUpgrade* Arena::CreateMaybeMessage<::CMsgApplyPennantUpgrade>(Arena*); template<> ::CMsgApplyStatTrakSwap* Arena::CreateMaybeMessage<::CMsgApplyStatTrakSwap>(Arena*); @@ -351,6 +350,7 @@ template<> ::CMsgKickFromParty* Arena::CreateMaybeMessage<::CMsgKickFromParty>(A template<> ::CMsgLANServerAvailable* Arena::CreateMaybeMessage<::CMsgLANServerAvailable>(Arena*); template<> ::CMsgLeaveParty* Arena::CreateMaybeMessage<::CMsgLeaveParty>(Arena*); template<> ::CMsgModifyItemAttribute* Arena::CreateMaybeMessage<::CMsgModifyItemAttribute>(Arena*); +template<> ::CMsgOpenCrate* Arena::CreateMaybeMessage<::CMsgOpenCrate>(Arena*); template<> ::CMsgPartyInviteResponse* Arena::CreateMaybeMessage<::CMsgPartyInviteResponse>(Arena*); template<> ::CMsgReplayUploadedToYouTube* Arena::CreateMaybeMessage<::CMsgReplayUploadedToYouTube>(Arena*); template<> ::CMsgReplicateConVars* Arena::CreateMaybeMessage<::CMsgReplicateConVars>(Arena*); @@ -366,7 +366,6 @@ template<> ::CMsgSystemBroadcast* Arena::CreateMaybeMessage<::CMsgSystemBroadcas template<> ::CMsgUpdateItemSchema* Arena::CreateMaybeMessage<::CMsgUpdateItemSchema>(Arena*); template<> ::CMsgUseItem* Arena::CreateMaybeMessage<::CMsgUseItem>(Arena*); template<> ::CSOEconClaimCode* Arena::CreateMaybeMessage<::CSOEconClaimCode>(Arena*); -template<> ::CSOEconDefaultEquippedDefinitionInstanceClient* Arena::CreateMaybeMessage<::CSOEconDefaultEquippedDefinitionInstanceClient>(Arena*); template<> ::CSOEconEquipSlot* Arena::CreateMaybeMessage<::CSOEconEquipSlot>(Arena*); template<> ::CSOEconGameAccountClient* Arena::CreateMaybeMessage<::CSOEconGameAccountClient>(Arena*); template<> ::CSOEconItem* Arena::CreateMaybeMessage<::CSOEconItem>(Arena*); @@ -375,6 +374,7 @@ template<> ::CSOEconItemDropRateBonus* Arena::CreateMaybeMessage<::CSOEconItemDr template<> ::CSOEconItemEquipped* Arena::CreateMaybeMessage<::CSOEconItemEquipped>(Arena*); template<> ::CSOEconItemEventTicket* Arena::CreateMaybeMessage<::CSOEconItemEventTicket>(Arena*); template<> ::CSOEconItemLeagueViewPass* Arena::CreateMaybeMessage<::CSOEconItemLeagueViewPass>(Arena*); +template<> ::CSOEconRentalHistory* Arena::CreateMaybeMessage<::CSOEconRentalHistory>(Arena*); template<> ::CSOItemCriteria* Arena::CreateMaybeMessage<::CSOItemCriteria>(Arena*); template<> ::CSOItemCriteriaCondition* Arena::CreateMaybeMessage<::CSOItemCriteriaCondition>(Arena*); template<> ::CSOItemRecipe* Arena::CreateMaybeMessage<::CSOItemRecipe>(Arena*); @@ -622,6 +622,7 @@ class CGCStorePurchaseInit_LineItem : kQuantityFieldNumber = 2, kCostInLocalCurrencyFieldNumber = 3, kPurchaseTypeFieldNumber = 4, + kSupplementalDataFieldNumber = 5, }; // optional uint32 item_def_id = 1; bool has_item_def_id() const; @@ -675,6 +676,19 @@ class CGCStorePurchaseInit_LineItem : void _internal_set_purchase_type(uint32_t value); public: + // optional uint64 supplemental_data = 5; + bool has_supplemental_data() const; + private: + bool _internal_has_supplemental_data() const; + public: + void clear_supplemental_data(); + uint64_t supplemental_data() const; + void set_supplemental_data(uint64_t value); + private: + uint64_t _internal_supplemental_data() const; + void _internal_set_supplemental_data(uint64_t value); + public: + // @@protoc_insertion_point(class_scope:CGCStorePurchaseInit_LineItem) private: class _Internal; @@ -689,9 +703,10 @@ class CGCStorePurchaseInit_LineItem : uint32_t quantity_; uint32_t cost_in_local_currency_; uint32_t purchase_type_; + uint64_t supplemental_data_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -906,7 +921,7 @@ class CMsgGCStorePurchaseInit : int32_t currency_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -1125,7 +1140,7 @@ class CMsgGCStorePurchaseInitResponse : int32_t result_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -1320,7 +1335,7 @@ class CSOPartyInvite : uint64_t sender_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -1515,7 +1530,7 @@ class CSOLobbyInvite : uint64_t sender_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -1680,7 +1695,7 @@ class CMsgSystemBroadcast : ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr message_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -1870,7 +1885,7 @@ class CMsgInviteToParty : uint32_t team_invite_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -2045,7 +2060,7 @@ class CMsgInvitationCreated : uint64_t steam_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -2250,7 +2265,7 @@ class CMsgPartyInviteResponse : uint32_t team_invite_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -2410,7 +2425,7 @@ class CMsgKickFromParty : uint64_t steam_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -2535,7 +2550,7 @@ class CMsgLeaveParty : typedef void DestructorSkippable_; struct Impl_ { }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -2660,7 +2675,7 @@ class CMsgServerAvailable : typedef void DestructorSkippable_; struct Impl_ { }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -2820,7 +2835,7 @@ class CMsgLANServerAvailable : uint64_t lobby_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -2953,6 +2968,7 @@ class CSOEconGameAccountClient : enum : int { kAdditionalBackpackSlotsFieldNumber = 1, + kTradeBanExpirationFieldNumber = 6, kBonusXpTimestampRefreshFieldNumber = 12, kBonusXpUsedflagsFieldNumber = 13, kElevatedStateFieldNumber = 14, @@ -2971,6 +2987,19 @@ class CSOEconGameAccountClient : void _internal_set_additional_backpack_slots(uint32_t value); public: + // optional fixed32 trade_ban_expiration = 6; + bool has_trade_ban_expiration() const; + private: + bool _internal_has_trade_ban_expiration() const; + public: + void clear_trade_ban_expiration(); + uint32_t trade_ban_expiration() const; + void set_trade_ban_expiration(uint32_t value); + private: + uint32_t _internal_trade_ban_expiration() const; + void _internal_set_trade_ban_expiration(uint32_t value); + public: + // optional fixed32 bonus_xp_timestamp_refresh = 12; bool has_bonus_xp_timestamp_refresh() const; private: @@ -3034,13 +3063,14 @@ class CSOEconGameAccountClient : ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; uint32_t additional_backpack_slots_; + uint32_t trade_ban_expiration_; uint32_t bonus_xp_timestamp_refresh_; uint32_t bonus_xp_usedflags_; uint32_t elevated_state_; uint32_t elevated_timestamp_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -3270,7 +3300,7 @@ class CSOItemCriteriaCondition : float float_value_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -3585,7 +3615,7 @@ class CSOItemCriteria : bool recent_only_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -4084,7 +4114,7 @@ class CSOItemRecipe : int32_t set_for_output_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -4264,7 +4294,7 @@ class CMsgDevNewItemRequest : uint64_t receiver_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -4484,7 +4514,7 @@ class CMsgIncrementKillCountAttribute : uint32_t amount_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -4621,6 +4651,12 @@ class CMsgApplySticker : kStickerSlotFieldNumber = 3, kBaseitemDefidxFieldNumber = 4, kStickerWearFieldNumber = 5, + kStickerRotationFieldNumber = 6, + kStickerScaleFieldNumber = 7, + kStickerOffsetXFieldNumber = 8, + kStickerOffsetYFieldNumber = 9, + kStickerOffsetZFieldNumber = 10, + kStickerWearTargetFieldNumber = 11, }; // optional uint64 sticker_item_id = 1; bool has_sticker_item_id() const; @@ -4687,6 +4723,84 @@ class CMsgApplySticker : void _internal_set_sticker_wear(float value); public: + // optional float sticker_rotation = 6; + bool has_sticker_rotation() const; + private: + bool _internal_has_sticker_rotation() const; + public: + void clear_sticker_rotation(); + float sticker_rotation() const; + void set_sticker_rotation(float value); + private: + float _internal_sticker_rotation() const; + void _internal_set_sticker_rotation(float value); + public: + + // optional float sticker_scale = 7; + bool has_sticker_scale() const; + private: + bool _internal_has_sticker_scale() const; + public: + void clear_sticker_scale(); + float sticker_scale() const; + void set_sticker_scale(float value); + private: + float _internal_sticker_scale() const; + void _internal_set_sticker_scale(float value); + public: + + // optional float sticker_offset_x = 8; + bool has_sticker_offset_x() const; + private: + bool _internal_has_sticker_offset_x() const; + public: + void clear_sticker_offset_x(); + float sticker_offset_x() const; + void set_sticker_offset_x(float value); + private: + float _internal_sticker_offset_x() const; + void _internal_set_sticker_offset_x(float value); + public: + + // optional float sticker_offset_y = 9; + bool has_sticker_offset_y() const; + private: + bool _internal_has_sticker_offset_y() const; + public: + void clear_sticker_offset_y(); + float sticker_offset_y() const; + void set_sticker_offset_y(float value); + private: + float _internal_sticker_offset_y() const; + void _internal_set_sticker_offset_y(float value); + public: + + // optional float sticker_offset_z = 10; + bool has_sticker_offset_z() const; + private: + bool _internal_has_sticker_offset_z() const; + public: + void clear_sticker_offset_z(); + float sticker_offset_z() const; + void set_sticker_offset_z(float value); + private: + float _internal_sticker_offset_z() const; + void _internal_set_sticker_offset_z(float value); + public: + + // optional float sticker_wear_target = 11; + bool has_sticker_wear_target() const; + private: + bool _internal_has_sticker_wear_target() const; + public: + void clear_sticker_wear_target(); + float sticker_wear_target() const; + void set_sticker_wear_target(float value); + private: + float _internal_sticker_wear_target() const; + void _internal_set_sticker_wear_target(float value); + public: + // @@protoc_insertion_point(class_scope:CMsgApplySticker) private: class _Internal; @@ -4702,9 +4816,15 @@ class CMsgApplySticker : uint32_t sticker_slot_; uint32_t baseitem_defidx_; float sticker_wear_; + float sticker_rotation_; + float sticker_scale_; + float sticker_offset_x_; + float sticker_offset_y_; + float sticker_offset_z_; + float sticker_wear_target_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -4894,7 +5014,7 @@ class CMsgModifyItemAttribute : uint32_t attr_value_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -5084,7 +5204,7 @@ class CMsgApplyStatTrakSwap : uint64_t item_2_item_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -5259,7 +5379,7 @@ class CMsgApplyStrangePart : uint64_t item_item_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -5434,7 +5554,7 @@ class CMsgApplyPennantUpgrade : uint64_t pennant_item_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -5609,7 +5729,7 @@ class CMsgApplyEggEssence : uint64_t egg_item_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -5804,7 +5924,7 @@ class CSOEconItemAttribute : uint32_t value_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -5979,7 +6099,7 @@ class CSOEconItemEquipped : uint32_t new_slot_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- @@ -6419,28 +6539,28 @@ class CSOEconItem : uint32_t rarity_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgAdjustItemEquippedState : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgAdjustItemEquippedState) */ { +class CMsgSortItems : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgSortItems) */ { public: - inline CMsgAdjustItemEquippedState() : CMsgAdjustItemEquippedState(nullptr) {} - ~CMsgAdjustItemEquippedState() override; - explicit PROTOBUF_CONSTEXPR CMsgAdjustItemEquippedState(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgSortItems() : CMsgSortItems(nullptr) {} + ~CMsgSortItems() override; + explicit PROTOBUF_CONSTEXPR CMsgSortItems(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgAdjustItemEquippedState(const CMsgAdjustItemEquippedState& from); - CMsgAdjustItemEquippedState(CMsgAdjustItemEquippedState&& from) noexcept - : CMsgAdjustItemEquippedState() { + CMsgSortItems(const CMsgSortItems& from); + CMsgSortItems(CMsgSortItems&& from) noexcept + : CMsgSortItems() { *this = ::std::move(from); } - inline CMsgAdjustItemEquippedState& operator=(const CMsgAdjustItemEquippedState& from) { + inline CMsgSortItems& operator=(const CMsgSortItems& from) { CopyFrom(from); return *this; } - inline CMsgAdjustItemEquippedState& operator=(CMsgAdjustItemEquippedState&& from) noexcept { + inline CMsgSortItems& operator=(CMsgSortItems&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -6470,20 +6590,20 @@ class CMsgAdjustItemEquippedState : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgAdjustItemEquippedState& default_instance() { + static const CMsgSortItems& default_instance() { return *internal_default_instance(); } - static inline const CMsgAdjustItemEquippedState* internal_default_instance() { - return reinterpret_cast( - &_CMsgAdjustItemEquippedState_default_instance_); + static inline const CMsgSortItems* internal_default_instance() { + return reinterpret_cast( + &_CMsgSortItems_default_instance_); } static constexpr int kIndexInFileMessages = 28; - friend void swap(CMsgAdjustItemEquippedState& a, CMsgAdjustItemEquippedState& b) { + friend void swap(CMsgSortItems& a, CMsgSortItems& b) { a.Swap(&b); } - inline void Swap(CMsgAdjustItemEquippedState* other) { + inline void Swap(CMsgSortItems* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -6496,7 +6616,7 @@ class CMsgAdjustItemEquippedState : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgAdjustItemEquippedState* other) { + void UnsafeArenaSwap(CMsgSortItems* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -6504,14 +6624,14 @@ class CMsgAdjustItemEquippedState : // implements Message ---------------------------------------------- - CMsgAdjustItemEquippedState* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgSortItems* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgAdjustItemEquippedState& from); + void CopyFrom(const CMsgSortItems& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgAdjustItemEquippedState& from) { - CMsgAdjustItemEquippedState::MergeImpl(*this, from); + void MergeFrom( const CMsgSortItems& from) { + CMsgSortItems::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -6529,15 +6649,15 @@ class CMsgAdjustItemEquippedState : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgAdjustItemEquippedState* other); + void InternalSwap(CMsgSortItems* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgAdjustItemEquippedState"; + return "CMsgSortItems"; } protected: - explicit CMsgAdjustItemEquippedState(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgSortItems(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -6551,64 +6671,22 @@ class CMsgAdjustItemEquippedState : // accessors ------------------------------------------------------- enum : int { - kItemIdFieldNumber = 1, - kNewClassFieldNumber = 2, - kNewSlotFieldNumber = 3, - kSwapFieldNumber = 4, + kSortTypeFieldNumber = 1, }; - // optional uint64 item_id = 1; - bool has_item_id() const; - private: - bool _internal_has_item_id() const; - public: - void clear_item_id(); - uint64_t item_id() const; - void set_item_id(uint64_t value); - private: - uint64_t _internal_item_id() const; - void _internal_set_item_id(uint64_t value); - public: - - // optional uint32 new_class = 2; - bool has_new_class() const; - private: - bool _internal_has_new_class() const; - public: - void clear_new_class(); - uint32_t new_class() const; - void set_new_class(uint32_t value); - private: - uint32_t _internal_new_class() const; - void _internal_set_new_class(uint32_t value); - public: - - // optional uint32 new_slot = 3; - bool has_new_slot() const; - private: - bool _internal_has_new_slot() const; - public: - void clear_new_slot(); - uint32_t new_slot() const; - void set_new_slot(uint32_t value); - private: - uint32_t _internal_new_slot() const; - void _internal_set_new_slot(uint32_t value); - public: - - // optional bool swap = 4; - bool has_swap() const; + // optional uint32 sort_type = 1; + bool has_sort_type() const; private: - bool _internal_has_swap() const; + bool _internal_has_sort_type() const; public: - void clear_swap(); - bool swap() const; - void set_swap(bool value); + void clear_sort_type(); + uint32_t sort_type() const; + void set_sort_type(uint32_t value); private: - bool _internal_swap() const; - void _internal_set_swap(bool value); + uint32_t _internal_sort_type() const; + void _internal_set_sort_type(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgAdjustItemEquippedState) + // @@protoc_insertion_point(class_scope:CMsgSortItems) private: class _Internal; @@ -6618,34 +6696,31 @@ class CMsgAdjustItemEquippedState : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint64_t item_id_; - uint32_t new_class_; - uint32_t new_slot_; - bool swap_; + uint32_t sort_type_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgAdjustItemEquippedStateMulti : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgAdjustItemEquippedStateMulti) */ { +class CSOEconClaimCode : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconClaimCode) */ { public: - inline CMsgAdjustItemEquippedStateMulti() : CMsgAdjustItemEquippedStateMulti(nullptr) {} - ~CMsgAdjustItemEquippedStateMulti() override; - explicit PROTOBUF_CONSTEXPR CMsgAdjustItemEquippedStateMulti(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CSOEconClaimCode() : CSOEconClaimCode(nullptr) {} + ~CSOEconClaimCode() override; + explicit PROTOBUF_CONSTEXPR CSOEconClaimCode(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgAdjustItemEquippedStateMulti(const CMsgAdjustItemEquippedStateMulti& from); - CMsgAdjustItemEquippedStateMulti(CMsgAdjustItemEquippedStateMulti&& from) noexcept - : CMsgAdjustItemEquippedStateMulti() { + CSOEconClaimCode(const CSOEconClaimCode& from); + CSOEconClaimCode(CSOEconClaimCode&& from) noexcept + : CSOEconClaimCode() { *this = ::std::move(from); } - inline CMsgAdjustItemEquippedStateMulti& operator=(const CMsgAdjustItemEquippedStateMulti& from) { + inline CSOEconClaimCode& operator=(const CSOEconClaimCode& from) { CopyFrom(from); return *this; } - inline CMsgAdjustItemEquippedStateMulti& operator=(CMsgAdjustItemEquippedStateMulti&& from) noexcept { + inline CSOEconClaimCode& operator=(CSOEconClaimCode&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -6675,20 +6750,20 @@ class CMsgAdjustItemEquippedStateMulti : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgAdjustItemEquippedStateMulti& default_instance() { + static const CSOEconClaimCode& default_instance() { return *internal_default_instance(); } - static inline const CMsgAdjustItemEquippedStateMulti* internal_default_instance() { - return reinterpret_cast( - &_CMsgAdjustItemEquippedStateMulti_default_instance_); + static inline const CSOEconClaimCode* internal_default_instance() { + return reinterpret_cast( + &_CSOEconClaimCode_default_instance_); } static constexpr int kIndexInFileMessages = 29; - friend void swap(CMsgAdjustItemEquippedStateMulti& a, CMsgAdjustItemEquippedStateMulti& b) { + friend void swap(CSOEconClaimCode& a, CSOEconClaimCode& b) { a.Swap(&b); } - inline void Swap(CMsgAdjustItemEquippedStateMulti* other) { + inline void Swap(CSOEconClaimCode* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -6701,7 +6776,7 @@ class CMsgAdjustItemEquippedStateMulti : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgAdjustItemEquippedStateMulti* other) { + void UnsafeArenaSwap(CSOEconClaimCode* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -6709,14 +6784,14 @@ class CMsgAdjustItemEquippedStateMulti : // implements Message ---------------------------------------------- - CMsgAdjustItemEquippedStateMulti* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CSOEconClaimCode* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgAdjustItemEquippedStateMulti& from); + void CopyFrom(const CSOEconClaimCode& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgAdjustItemEquippedStateMulti& from) { - CMsgAdjustItemEquippedStateMulti::MergeImpl(*this, from); + void MergeFrom( const CSOEconClaimCode& from) { + CSOEconClaimCode::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -6734,15 +6809,15 @@ class CMsgAdjustItemEquippedStateMulti : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgAdjustItemEquippedStateMulti* other); + void InternalSwap(CSOEconClaimCode* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgAdjustItemEquippedStateMulti"; + return "CSOEconClaimCode"; } protected: - explicit CMsgAdjustItemEquippedStateMulti(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CSOEconClaimCode(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -6756,77 +6831,69 @@ class CMsgAdjustItemEquippedStateMulti : // accessors ------------------------------------------------------- enum : int { - kTEquipsFieldNumber = 1, - kCtEquipsFieldNumber = 2, - kNoteamEquipsFieldNumber = 3, + kCodeFieldNumber = 4, + kAccountIdFieldNumber = 1, + kCodeTypeFieldNumber = 2, + kTimeAcquiredFieldNumber = 3, }; - // repeated uint64 t_equips = 1; - int t_equips_size() const; + // optional string code = 4; + bool has_code() const; private: - int _internal_t_equips_size() const; + bool _internal_has_code() const; public: - void clear_t_equips(); + void clear_code(); + const std::string& code() const; + template + void set_code(ArgT0&& arg0, ArgT... args); + std::string* mutable_code(); + PROTOBUF_NODISCARD std::string* release_code(); + void set_allocated_code(std::string* code); private: - uint64_t _internal_t_equips(int index) const; - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& - _internal_t_equips() const; - void _internal_add_t_equips(uint64_t value); - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* - _internal_mutable_t_equips(); + const std::string& _internal_code() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_code(const std::string& value); + std::string* _internal_mutable_code(); public: - uint64_t t_equips(int index) const; - void set_t_equips(int index, uint64_t value); - void add_t_equips(uint64_t value); - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& - t_equips() const; - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* - mutable_t_equips(); - // repeated uint64 ct_equips = 2; - int ct_equips_size() const; + // optional uint32 account_id = 1; + bool has_account_id() const; private: - int _internal_ct_equips_size() const; + bool _internal_has_account_id() const; public: - void clear_ct_equips(); + void clear_account_id(); + uint32_t account_id() const; + void set_account_id(uint32_t value); private: - uint64_t _internal_ct_equips(int index) const; - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& - _internal_ct_equips() const; - void _internal_add_ct_equips(uint64_t value); - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* - _internal_mutable_ct_equips(); + uint32_t _internal_account_id() const; + void _internal_set_account_id(uint32_t value); public: - uint64_t ct_equips(int index) const; - void set_ct_equips(int index, uint64_t value); - void add_ct_equips(uint64_t value); - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& - ct_equips() const; - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* - mutable_ct_equips(); - // repeated uint64 noteam_equips = 3; - int noteam_equips_size() const; + // optional uint32 code_type = 2; + bool has_code_type() const; private: - int _internal_noteam_equips_size() const; + bool _internal_has_code_type() const; public: - void clear_noteam_equips(); + void clear_code_type(); + uint32_t code_type() const; + void set_code_type(uint32_t value); private: - uint64_t _internal_noteam_equips(int index) const; - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& - _internal_noteam_equips() const; - void _internal_add_noteam_equips(uint64_t value); - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* - _internal_mutable_noteam_equips(); + uint32_t _internal_code_type() const; + void _internal_set_code_type(uint32_t value); + public: + + // optional uint32 time_acquired = 3; + bool has_time_acquired() const; + private: + bool _internal_has_time_acquired() const; + public: + void clear_time_acquired(); + uint32_t time_acquired() const; + void set_time_acquired(uint32_t value); + private: + uint32_t _internal_time_acquired() const; + void _internal_set_time_acquired(uint32_t value); public: - uint64_t noteam_equips(int index) const; - void set_noteam_equips(int index, uint64_t value); - void add_noteam_equips(uint64_t value); - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& - noteam_equips() const; - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* - mutable_noteam_equips(); - // @@protoc_insertion_point(class_scope:CMsgAdjustItemEquippedStateMulti) + // @@protoc_insertion_point(class_scope:CSOEconClaimCode) private: class _Internal; @@ -6834,34 +6901,36 @@ class CMsgAdjustItemEquippedStateMulti : typedef void InternalArenaConstructable_; typedef void DestructorSkippable_; struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t > t_equips_; - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t > ct_equips_; - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t > noteam_equips_; + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr code_; + uint32_t account_id_; + uint32_t code_type_; + uint32_t time_acquired_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgSortItems : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgSortItems) */ { +class CMsgStoreGetUserData : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgStoreGetUserData) */ { public: - inline CMsgSortItems() : CMsgSortItems(nullptr) {} - ~CMsgSortItems() override; - explicit PROTOBUF_CONSTEXPR CMsgSortItems(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgStoreGetUserData() : CMsgStoreGetUserData(nullptr) {} + ~CMsgStoreGetUserData() override; + explicit PROTOBUF_CONSTEXPR CMsgStoreGetUserData(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgSortItems(const CMsgSortItems& from); - CMsgSortItems(CMsgSortItems&& from) noexcept - : CMsgSortItems() { + CMsgStoreGetUserData(const CMsgStoreGetUserData& from); + CMsgStoreGetUserData(CMsgStoreGetUserData&& from) noexcept + : CMsgStoreGetUserData() { *this = ::std::move(from); } - inline CMsgSortItems& operator=(const CMsgSortItems& from) { + inline CMsgStoreGetUserData& operator=(const CMsgStoreGetUserData& from) { CopyFrom(from); return *this; } - inline CMsgSortItems& operator=(CMsgSortItems&& from) noexcept { + inline CMsgStoreGetUserData& operator=(CMsgStoreGetUserData&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -6891,20 +6960,20 @@ class CMsgSortItems : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgSortItems& default_instance() { + static const CMsgStoreGetUserData& default_instance() { return *internal_default_instance(); } - static inline const CMsgSortItems* internal_default_instance() { - return reinterpret_cast( - &_CMsgSortItems_default_instance_); + static inline const CMsgStoreGetUserData* internal_default_instance() { + return reinterpret_cast( + &_CMsgStoreGetUserData_default_instance_); } static constexpr int kIndexInFileMessages = 30; - friend void swap(CMsgSortItems& a, CMsgSortItems& b) { + friend void swap(CMsgStoreGetUserData& a, CMsgStoreGetUserData& b) { a.Swap(&b); } - inline void Swap(CMsgSortItems* other) { + inline void Swap(CMsgStoreGetUserData* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -6917,7 +6986,7 @@ class CMsgSortItems : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgSortItems* other) { + void UnsafeArenaSwap(CMsgStoreGetUserData* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -6925,14 +6994,14 @@ class CMsgSortItems : // implements Message ---------------------------------------------- - CMsgSortItems* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgStoreGetUserData* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgSortItems& from); + void CopyFrom(const CMsgStoreGetUserData& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgSortItems& from) { - CMsgSortItems::MergeImpl(*this, from); + void MergeFrom( const CMsgStoreGetUserData& from) { + CMsgStoreGetUserData::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -6950,15 +7019,15 @@ class CMsgSortItems : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgSortItems* other); + void InternalSwap(CMsgStoreGetUserData* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgSortItems"; + return "CMsgStoreGetUserData"; } protected: - explicit CMsgSortItems(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgStoreGetUserData(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -6972,22 +7041,36 @@ class CMsgSortItems : // accessors ------------------------------------------------------- enum : int { - kSortTypeFieldNumber = 1, + kPriceSheetVersionFieldNumber = 1, + kCurrencyFieldNumber = 2, }; - // optional uint32 sort_type = 1; - bool has_sort_type() const; + // optional fixed32 price_sheet_version = 1; + bool has_price_sheet_version() const; private: - bool _internal_has_sort_type() const; + bool _internal_has_price_sheet_version() const; public: - void clear_sort_type(); - uint32_t sort_type() const; - void set_sort_type(uint32_t value); + void clear_price_sheet_version(); + uint32_t price_sheet_version() const; + void set_price_sheet_version(uint32_t value); private: - uint32_t _internal_sort_type() const; - void _internal_set_sort_type(uint32_t value); + uint32_t _internal_price_sheet_version() const; + void _internal_set_price_sheet_version(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgSortItems) + // optional int32 currency = 2; + bool has_currency() const; + private: + bool _internal_has_currency() const; + public: + void clear_currency(); + int32_t currency() const; + void set_currency(int32_t value); + private: + int32_t _internal_currency() const; + void _internal_set_currency(int32_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgStoreGetUserData) private: class _Internal; @@ -6997,31 +7080,32 @@ class CMsgSortItems : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t sort_type_; + uint32_t price_sheet_version_; + int32_t currency_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CSOEconClaimCode : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconClaimCode) */ { +class CMsgStoreGetUserDataResponse : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgStoreGetUserDataResponse) */ { public: - inline CSOEconClaimCode() : CSOEconClaimCode(nullptr) {} - ~CSOEconClaimCode() override; - explicit PROTOBUF_CONSTEXPR CSOEconClaimCode(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgStoreGetUserDataResponse() : CMsgStoreGetUserDataResponse(nullptr) {} + ~CMsgStoreGetUserDataResponse() override; + explicit PROTOBUF_CONSTEXPR CMsgStoreGetUserDataResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CSOEconClaimCode(const CSOEconClaimCode& from); - CSOEconClaimCode(CSOEconClaimCode&& from) noexcept - : CSOEconClaimCode() { + CMsgStoreGetUserDataResponse(const CMsgStoreGetUserDataResponse& from); + CMsgStoreGetUserDataResponse(CMsgStoreGetUserDataResponse&& from) noexcept + : CMsgStoreGetUserDataResponse() { *this = ::std::move(from); } - inline CSOEconClaimCode& operator=(const CSOEconClaimCode& from) { + inline CMsgStoreGetUserDataResponse& operator=(const CMsgStoreGetUserDataResponse& from) { CopyFrom(from); return *this; } - inline CSOEconClaimCode& operator=(CSOEconClaimCode&& from) noexcept { + inline CMsgStoreGetUserDataResponse& operator=(CMsgStoreGetUserDataResponse&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -7051,20 +7135,20 @@ class CSOEconClaimCode : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CSOEconClaimCode& default_instance() { + static const CMsgStoreGetUserDataResponse& default_instance() { return *internal_default_instance(); } - static inline const CSOEconClaimCode* internal_default_instance() { - return reinterpret_cast( - &_CSOEconClaimCode_default_instance_); + static inline const CMsgStoreGetUserDataResponse* internal_default_instance() { + return reinterpret_cast( + &_CMsgStoreGetUserDataResponse_default_instance_); } static constexpr int kIndexInFileMessages = 31; - friend void swap(CSOEconClaimCode& a, CSOEconClaimCode& b) { + friend void swap(CMsgStoreGetUserDataResponse& a, CMsgStoreGetUserDataResponse& b) { a.Swap(&b); } - inline void Swap(CSOEconClaimCode* other) { + inline void Swap(CMsgStoreGetUserDataResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -7077,7 +7161,7 @@ class CSOEconClaimCode : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CSOEconClaimCode* other) { + void UnsafeArenaSwap(CMsgStoreGetUserDataResponse* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -7085,14 +7169,14 @@ class CSOEconClaimCode : // implements Message ---------------------------------------------- - CSOEconClaimCode* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgStoreGetUserDataResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CSOEconClaimCode& from); + void CopyFrom(const CMsgStoreGetUserDataResponse& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CSOEconClaimCode& from) { - CSOEconClaimCode::MergeImpl(*this, from); + void MergeFrom( const CMsgStoreGetUserDataResponse& from) { + CMsgStoreGetUserDataResponse::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -7110,15 +7194,15 @@ class CSOEconClaimCode : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CSOEconClaimCode* other); + void InternalSwap(CMsgStoreGetUserDataResponse* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CSOEconClaimCode"; + return "CMsgStoreGetUserDataResponse"; } protected: - explicit CSOEconClaimCode(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgStoreGetUserDataResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -7132,69 +7216,88 @@ class CSOEconClaimCode : // accessors ------------------------------------------------------- enum : int { - kCodeFieldNumber = 4, - kAccountIdFieldNumber = 1, - kCodeTypeFieldNumber = 2, - kTimeAcquiredFieldNumber = 3, + kCountryDeprecatedFieldNumber = 3, + kPriceSheetFieldNumber = 8, + kResultFieldNumber = 1, + kCurrencyDeprecatedFieldNumber = 2, + kPriceSheetVersionFieldNumber = 4, }; - // optional string code = 4; - bool has_code() const; + // optional string country_deprecated = 3; + bool has_country_deprecated() const; private: - bool _internal_has_code() const; + bool _internal_has_country_deprecated() const; public: - void clear_code(); - const std::string& code() const; + void clear_country_deprecated(); + const std::string& country_deprecated() const; template - void set_code(ArgT0&& arg0, ArgT... args); - std::string* mutable_code(); - PROTOBUF_NODISCARD std::string* release_code(); - void set_allocated_code(std::string* code); + void set_country_deprecated(ArgT0&& arg0, ArgT... args); + std::string* mutable_country_deprecated(); + PROTOBUF_NODISCARD std::string* release_country_deprecated(); + void set_allocated_country_deprecated(std::string* country_deprecated); private: - const std::string& _internal_code() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_code(const std::string& value); - std::string* _internal_mutable_code(); + const std::string& _internal_country_deprecated() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_country_deprecated(const std::string& value); + std::string* _internal_mutable_country_deprecated(); public: - // optional uint32 account_id = 1; - bool has_account_id() const; + // optional bytes price_sheet = 8; + bool has_price_sheet() const; private: - bool _internal_has_account_id() const; + bool _internal_has_price_sheet() const; public: - void clear_account_id(); - uint32_t account_id() const; - void set_account_id(uint32_t value); + void clear_price_sheet(); + const std::string& price_sheet() const; + template + void set_price_sheet(ArgT0&& arg0, ArgT... args); + std::string* mutable_price_sheet(); + PROTOBUF_NODISCARD std::string* release_price_sheet(); + void set_allocated_price_sheet(std::string* price_sheet); private: - uint32_t _internal_account_id() const; - void _internal_set_account_id(uint32_t value); + const std::string& _internal_price_sheet() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_price_sheet(const std::string& value); + std::string* _internal_mutable_price_sheet(); public: - // optional uint32 code_type = 2; - bool has_code_type() const; + // optional int32 result = 1; + bool has_result() const; private: - bool _internal_has_code_type() const; + bool _internal_has_result() const; public: - void clear_code_type(); - uint32_t code_type() const; - void set_code_type(uint32_t value); + void clear_result(); + int32_t result() const; + void set_result(int32_t value); private: - uint32_t _internal_code_type() const; - void _internal_set_code_type(uint32_t value); + int32_t _internal_result() const; + void _internal_set_result(int32_t value); public: - // optional uint32 time_acquired = 3; - bool has_time_acquired() const; + // optional int32 currency_deprecated = 2; + bool has_currency_deprecated() const; private: - bool _internal_has_time_acquired() const; + bool _internal_has_currency_deprecated() const; public: - void clear_time_acquired(); - uint32_t time_acquired() const; - void set_time_acquired(uint32_t value); + void clear_currency_deprecated(); + int32_t currency_deprecated() const; + void set_currency_deprecated(int32_t value); private: - uint32_t _internal_time_acquired() const; - void _internal_set_time_acquired(uint32_t value); + int32_t _internal_currency_deprecated() const; + void _internal_set_currency_deprecated(int32_t value); public: - // @@protoc_insertion_point(class_scope:CSOEconClaimCode) + // optional fixed32 price_sheet_version = 4; + bool has_price_sheet_version() const; + private: + bool _internal_has_price_sheet_version() const; + public: + void clear_price_sheet_version(); + uint32_t price_sheet_version() const; + void set_price_sheet_version(uint32_t value); + private: + uint32_t _internal_price_sheet_version() const; + void _internal_set_price_sheet_version(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgStoreGetUserDataResponse) private: class _Internal; @@ -7204,34 +7307,35 @@ class CSOEconClaimCode : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr code_; - uint32_t account_id_; - uint32_t code_type_; - uint32_t time_acquired_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr country_deprecated_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr price_sheet_; + int32_t result_; + int32_t currency_deprecated_; + uint32_t price_sheet_version_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgStoreGetUserData : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgStoreGetUserData) */ { +class CMsgUpdateItemSchema : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgUpdateItemSchema) */ { public: - inline CMsgStoreGetUserData() : CMsgStoreGetUserData(nullptr) {} - ~CMsgStoreGetUserData() override; - explicit PROTOBUF_CONSTEXPR CMsgStoreGetUserData(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgUpdateItemSchema() : CMsgUpdateItemSchema(nullptr) {} + ~CMsgUpdateItemSchema() override; + explicit PROTOBUF_CONSTEXPR CMsgUpdateItemSchema(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgStoreGetUserData(const CMsgStoreGetUserData& from); - CMsgStoreGetUserData(CMsgStoreGetUserData&& from) noexcept - : CMsgStoreGetUserData() { + CMsgUpdateItemSchema(const CMsgUpdateItemSchema& from); + CMsgUpdateItemSchema(CMsgUpdateItemSchema&& from) noexcept + : CMsgUpdateItemSchema() { *this = ::std::move(from); } - inline CMsgStoreGetUserData& operator=(const CMsgStoreGetUserData& from) { + inline CMsgUpdateItemSchema& operator=(const CMsgUpdateItemSchema& from) { CopyFrom(from); return *this; } - inline CMsgStoreGetUserData& operator=(CMsgStoreGetUserData&& from) noexcept { + inline CMsgUpdateItemSchema& operator=(CMsgUpdateItemSchema&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -7261,20 +7365,20 @@ class CMsgStoreGetUserData : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgStoreGetUserData& default_instance() { + static const CMsgUpdateItemSchema& default_instance() { return *internal_default_instance(); } - static inline const CMsgStoreGetUserData* internal_default_instance() { - return reinterpret_cast( - &_CMsgStoreGetUserData_default_instance_); + static inline const CMsgUpdateItemSchema* internal_default_instance() { + return reinterpret_cast( + &_CMsgUpdateItemSchema_default_instance_); } static constexpr int kIndexInFileMessages = 32; - friend void swap(CMsgStoreGetUserData& a, CMsgStoreGetUserData& b) { + friend void swap(CMsgUpdateItemSchema& a, CMsgUpdateItemSchema& b) { a.Swap(&b); } - inline void Swap(CMsgStoreGetUserData* other) { + inline void Swap(CMsgUpdateItemSchema* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -7287,7 +7391,7 @@ class CMsgStoreGetUserData : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgStoreGetUserData* other) { + void UnsafeArenaSwap(CMsgUpdateItemSchema* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -7295,14 +7399,14 @@ class CMsgStoreGetUserData : // implements Message ---------------------------------------------- - CMsgStoreGetUserData* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgUpdateItemSchema* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgStoreGetUserData& from); + void CopyFrom(const CMsgUpdateItemSchema& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgStoreGetUserData& from) { - CMsgStoreGetUserData::MergeImpl(*this, from); + void MergeFrom( const CMsgUpdateItemSchema& from) { + CMsgUpdateItemSchema::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -7320,15 +7424,15 @@ class CMsgStoreGetUserData : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgStoreGetUserData* other); + void InternalSwap(CMsgUpdateItemSchema* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgStoreGetUserData"; + return "CMsgUpdateItemSchema"; } protected: - explicit CMsgStoreGetUserData(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgUpdateItemSchema(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -7342,36 +7446,60 @@ class CMsgStoreGetUserData : // accessors ------------------------------------------------------- enum : int { - kPriceSheetVersionFieldNumber = 1, - kCurrencyFieldNumber = 2, + kItemsGameFieldNumber = 1, + kItemsGameUrlFieldNumber = 4, + kItemSchemaVersionFieldNumber = 2, }; - // optional fixed32 price_sheet_version = 1; - bool has_price_sheet_version() const; + // optional bytes items_game = 1; + bool has_items_game() const; private: - bool _internal_has_price_sheet_version() const; + bool _internal_has_items_game() const; public: - void clear_price_sheet_version(); - uint32_t price_sheet_version() const; - void set_price_sheet_version(uint32_t value); + void clear_items_game(); + const std::string& items_game() const; + template + void set_items_game(ArgT0&& arg0, ArgT... args); + std::string* mutable_items_game(); + PROTOBUF_NODISCARD std::string* release_items_game(); + void set_allocated_items_game(std::string* items_game); private: - uint32_t _internal_price_sheet_version() const; - void _internal_set_price_sheet_version(uint32_t value); + const std::string& _internal_items_game() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_items_game(const std::string& value); + std::string* _internal_mutable_items_game(); public: - // optional int32 currency = 2; - bool has_currency() const; + // optional string items_game_url = 4; + bool has_items_game_url() const; private: - bool _internal_has_currency() const; + bool _internal_has_items_game_url() const; public: - void clear_currency(); - int32_t currency() const; - void set_currency(int32_t value); + void clear_items_game_url(); + const std::string& items_game_url() const; + template + void set_items_game_url(ArgT0&& arg0, ArgT... args); + std::string* mutable_items_game_url(); + PROTOBUF_NODISCARD std::string* release_items_game_url(); + void set_allocated_items_game_url(std::string* items_game_url); private: - int32_t _internal_currency() const; - void _internal_set_currency(int32_t value); + const std::string& _internal_items_game_url() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_items_game_url(const std::string& value); + std::string* _internal_mutable_items_game_url(); public: - // @@protoc_insertion_point(class_scope:CMsgStoreGetUserData) + // optional fixed32 item_schema_version = 2; + bool has_item_schema_version() const; + private: + bool _internal_has_item_schema_version() const; + public: + void clear_item_schema_version(); + uint32_t item_schema_version() const; + void set_item_schema_version(uint32_t value); + private: + uint32_t _internal_item_schema_version() const; + void _internal_set_item_schema_version(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgUpdateItemSchema) private: class _Internal; @@ -7381,32 +7509,33 @@ class CMsgStoreGetUserData : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t price_sheet_version_; - int32_t currency_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr items_game_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr items_game_url_; + uint32_t item_schema_version_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgStoreGetUserDataResponse : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgStoreGetUserDataResponse) */ { +class CMsgGCError : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCError) */ { public: - inline CMsgStoreGetUserDataResponse() : CMsgStoreGetUserDataResponse(nullptr) {} - ~CMsgStoreGetUserDataResponse() override; - explicit PROTOBUF_CONSTEXPR CMsgStoreGetUserDataResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCError() : CMsgGCError(nullptr) {} + ~CMsgGCError() override; + explicit PROTOBUF_CONSTEXPR CMsgGCError(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgStoreGetUserDataResponse(const CMsgStoreGetUserDataResponse& from); - CMsgStoreGetUserDataResponse(CMsgStoreGetUserDataResponse&& from) noexcept - : CMsgStoreGetUserDataResponse() { + CMsgGCError(const CMsgGCError& from); + CMsgGCError(CMsgGCError&& from) noexcept + : CMsgGCError() { *this = ::std::move(from); } - inline CMsgStoreGetUserDataResponse& operator=(const CMsgStoreGetUserDataResponse& from) { + inline CMsgGCError& operator=(const CMsgGCError& from) { CopyFrom(from); return *this; } - inline CMsgStoreGetUserDataResponse& operator=(CMsgStoreGetUserDataResponse&& from) noexcept { + inline CMsgGCError& operator=(CMsgGCError&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -7436,20 +7565,20 @@ class CMsgStoreGetUserDataResponse : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgStoreGetUserDataResponse& default_instance() { + static const CMsgGCError& default_instance() { return *internal_default_instance(); } - static inline const CMsgStoreGetUserDataResponse* internal_default_instance() { - return reinterpret_cast( - &_CMsgStoreGetUserDataResponse_default_instance_); + static inline const CMsgGCError* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCError_default_instance_); } static constexpr int kIndexInFileMessages = 33; - friend void swap(CMsgStoreGetUserDataResponse& a, CMsgStoreGetUserDataResponse& b) { + friend void swap(CMsgGCError& a, CMsgGCError& b) { a.Swap(&b); } - inline void Swap(CMsgStoreGetUserDataResponse* other) { + inline void Swap(CMsgGCError* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -7462,7 +7591,7 @@ class CMsgStoreGetUserDataResponse : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgStoreGetUserDataResponse* other) { + void UnsafeArenaSwap(CMsgGCError* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -7470,14 +7599,14 @@ class CMsgStoreGetUserDataResponse : // implements Message ---------------------------------------------- - CMsgStoreGetUserDataResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCError* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgStoreGetUserDataResponse& from); + void CopyFrom(const CMsgGCError& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgStoreGetUserDataResponse& from) { - CMsgStoreGetUserDataResponse::MergeImpl(*this, from); + void MergeFrom( const CMsgGCError& from) { + CMsgGCError::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -7495,15 +7624,15 @@ class CMsgStoreGetUserDataResponse : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgStoreGetUserDataResponse* other); + void InternalSwap(CMsgGCError* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgStoreGetUserDataResponse"; + return "CMsgGCError"; } protected: - explicit CMsgStoreGetUserDataResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCError(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -7517,88 +7646,27 @@ class CMsgStoreGetUserDataResponse : // accessors ------------------------------------------------------- enum : int { - kCountryDeprecatedFieldNumber = 3, - kPriceSheetFieldNumber = 8, - kResultFieldNumber = 1, - kCurrencyDeprecatedFieldNumber = 2, - kPriceSheetVersionFieldNumber = 4, + kErrorTextFieldNumber = 1, }; - // optional string country_deprecated = 3; - bool has_country_deprecated() const; - private: - bool _internal_has_country_deprecated() const; - public: - void clear_country_deprecated(); - const std::string& country_deprecated() const; - template - void set_country_deprecated(ArgT0&& arg0, ArgT... args); - std::string* mutable_country_deprecated(); - PROTOBUF_NODISCARD std::string* release_country_deprecated(); - void set_allocated_country_deprecated(std::string* country_deprecated); - private: - const std::string& _internal_country_deprecated() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_country_deprecated(const std::string& value); - std::string* _internal_mutable_country_deprecated(); - public: - - // optional bytes price_sheet = 8; - bool has_price_sheet() const; + // optional string error_text = 1; + bool has_error_text() const; private: - bool _internal_has_price_sheet() const; + bool _internal_has_error_text() const; public: - void clear_price_sheet(); - const std::string& price_sheet() const; + void clear_error_text(); + const std::string& error_text() const; template - void set_price_sheet(ArgT0&& arg0, ArgT... args); - std::string* mutable_price_sheet(); - PROTOBUF_NODISCARD std::string* release_price_sheet(); - void set_allocated_price_sheet(std::string* price_sheet); - private: - const std::string& _internal_price_sheet() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_price_sheet(const std::string& value); - std::string* _internal_mutable_price_sheet(); - public: - - // optional int32 result = 1; - bool has_result() const; - private: - bool _internal_has_result() const; - public: - void clear_result(); - int32_t result() const; - void set_result(int32_t value); - private: - int32_t _internal_result() const; - void _internal_set_result(int32_t value); - public: - - // optional int32 currency_deprecated = 2; - bool has_currency_deprecated() const; - private: - bool _internal_has_currency_deprecated() const; - public: - void clear_currency_deprecated(); - int32_t currency_deprecated() const; - void set_currency_deprecated(int32_t value); - private: - int32_t _internal_currency_deprecated() const; - void _internal_set_currency_deprecated(int32_t value); - public: - - // optional fixed32 price_sheet_version = 4; - bool has_price_sheet_version() const; - private: - bool _internal_has_price_sheet_version() const; - public: - void clear_price_sheet_version(); - uint32_t price_sheet_version() const; - void set_price_sheet_version(uint32_t value); + void set_error_text(ArgT0&& arg0, ArgT... args); + std::string* mutable_error_text(); + PROTOBUF_NODISCARD std::string* release_error_text(); + void set_allocated_error_text(std::string* error_text); private: - uint32_t _internal_price_sheet_version() const; - void _internal_set_price_sheet_version(uint32_t value); + const std::string& _internal_error_text() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_error_text(const std::string& value); + std::string* _internal_mutable_error_text(); public: - // @@protoc_insertion_point(class_scope:CMsgStoreGetUserDataResponse) + // @@protoc_insertion_point(class_scope:CMsgGCError) private: class _Internal; @@ -7608,35 +7676,30 @@ class CMsgStoreGetUserDataResponse : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr country_deprecated_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr price_sheet_; - int32_t result_; - int32_t currency_deprecated_; - uint32_t price_sheet_version_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr error_text_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgUpdateItemSchema : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgUpdateItemSchema) */ { +class CMsgRequestInventoryRefresh : + public ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:CMsgRequestInventoryRefresh) */ { public: - inline CMsgUpdateItemSchema() : CMsgUpdateItemSchema(nullptr) {} - ~CMsgUpdateItemSchema() override; - explicit PROTOBUF_CONSTEXPR CMsgUpdateItemSchema(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgRequestInventoryRefresh() : CMsgRequestInventoryRefresh(nullptr) {} + explicit PROTOBUF_CONSTEXPR CMsgRequestInventoryRefresh(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgUpdateItemSchema(const CMsgUpdateItemSchema& from); - CMsgUpdateItemSchema(CMsgUpdateItemSchema&& from) noexcept - : CMsgUpdateItemSchema() { + CMsgRequestInventoryRefresh(const CMsgRequestInventoryRefresh& from); + CMsgRequestInventoryRefresh(CMsgRequestInventoryRefresh&& from) noexcept + : CMsgRequestInventoryRefresh() { *this = ::std::move(from); } - inline CMsgUpdateItemSchema& operator=(const CMsgUpdateItemSchema& from) { + inline CMsgRequestInventoryRefresh& operator=(const CMsgRequestInventoryRefresh& from) { CopyFrom(from); return *this; } - inline CMsgUpdateItemSchema& operator=(CMsgUpdateItemSchema&& from) noexcept { + inline CMsgRequestInventoryRefresh& operator=(CMsgRequestInventoryRefresh&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -7666,20 +7729,20 @@ class CMsgUpdateItemSchema : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgUpdateItemSchema& default_instance() { + static const CMsgRequestInventoryRefresh& default_instance() { return *internal_default_instance(); } - static inline const CMsgUpdateItemSchema* internal_default_instance() { - return reinterpret_cast( - &_CMsgUpdateItemSchema_default_instance_); + static inline const CMsgRequestInventoryRefresh* internal_default_instance() { + return reinterpret_cast( + &_CMsgRequestInventoryRefresh_default_instance_); } static constexpr int kIndexInFileMessages = 34; - friend void swap(CMsgUpdateItemSchema& a, CMsgUpdateItemSchema& b) { + friend void swap(CMsgRequestInventoryRefresh& a, CMsgRequestInventoryRefresh& b) { a.Swap(&b); } - inline void Swap(CMsgUpdateItemSchema* other) { + inline void Swap(CMsgRequestInventoryRefresh* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -7692,7 +7755,7 @@ class CMsgUpdateItemSchema : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgUpdateItemSchema* other) { + void UnsafeArenaSwap(CMsgRequestInventoryRefresh* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -7700,40 +7763,26 @@ class CMsgUpdateItemSchema : // implements Message ---------------------------------------------- - CMsgUpdateItemSchema* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgRequestInventoryRefresh* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } - using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgUpdateItemSchema& from); - using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgUpdateItemSchema& from) { - CMsgUpdateItemSchema::MergeImpl(*this, from); + using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyFrom; + inline void CopyFrom(const CMsgRequestInventoryRefresh& from) { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl(*this, from); + } + using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeFrom; + void MergeFrom(const CMsgRequestInventoryRefresh& from) { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl(*this, from); } - private: - static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; - - size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; - uint8_t* _InternalSerialize( - uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; - int GetCachedSize() const final { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); - void SharedDtor(); - void SetCachedSize(int size) const final; - void InternalSwap(CMsgUpdateItemSchema* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgUpdateItemSchema"; + return "CMsgRequestInventoryRefresh"; } protected: - explicit CMsgUpdateItemSchema(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgRequestInventoryRefresh(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -7746,61 +7795,7 @@ class CMsgUpdateItemSchema : // accessors ------------------------------------------------------- - enum : int { - kItemsGameFieldNumber = 1, - kItemsGameUrlFieldNumber = 4, - kItemSchemaVersionFieldNumber = 2, - }; - // optional bytes items_game = 1; - bool has_items_game() const; - private: - bool _internal_has_items_game() const; - public: - void clear_items_game(); - const std::string& items_game() const; - template - void set_items_game(ArgT0&& arg0, ArgT... args); - std::string* mutable_items_game(); - PROTOBUF_NODISCARD std::string* release_items_game(); - void set_allocated_items_game(std::string* items_game); - private: - const std::string& _internal_items_game() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_items_game(const std::string& value); - std::string* _internal_mutable_items_game(); - public: - - // optional string items_game_url = 4; - bool has_items_game_url() const; - private: - bool _internal_has_items_game_url() const; - public: - void clear_items_game_url(); - const std::string& items_game_url() const; - template - void set_items_game_url(ArgT0&& arg0, ArgT... args); - std::string* mutable_items_game_url(); - PROTOBUF_NODISCARD std::string* release_items_game_url(); - void set_allocated_items_game_url(std::string* items_game_url); - private: - const std::string& _internal_items_game_url() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_items_game_url(const std::string& value); - std::string* _internal_mutable_items_game_url(); - public: - - // optional fixed32 item_schema_version = 2; - bool has_item_schema_version() const; - private: - bool _internal_has_item_schema_version() const; - public: - void clear_item_schema_version(); - uint32_t item_schema_version() const; - void set_item_schema_version(uint32_t value); - private: - uint32_t _internal_item_schema_version() const; - void _internal_set_item_schema_version(uint32_t value); - public: - - // @@protoc_insertion_point(class_scope:CMsgUpdateItemSchema) + // @@protoc_insertion_point(class_scope:CMsgRequestInventoryRefresh) private: class _Internal; @@ -7808,35 +7803,29 @@ class CMsgUpdateItemSchema : typedef void InternalArenaConstructable_; typedef void DestructorSkippable_; struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; - mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr items_game_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr items_game_url_; - uint32_t item_schema_version_; }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCError : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCError) */ { +class CMsgConVarValue : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgConVarValue) */ { public: - inline CMsgGCError() : CMsgGCError(nullptr) {} - ~CMsgGCError() override; - explicit PROTOBUF_CONSTEXPR CMsgGCError(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgConVarValue() : CMsgConVarValue(nullptr) {} + ~CMsgConVarValue() override; + explicit PROTOBUF_CONSTEXPR CMsgConVarValue(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCError(const CMsgGCError& from); - CMsgGCError(CMsgGCError&& from) noexcept - : CMsgGCError() { + CMsgConVarValue(const CMsgConVarValue& from); + CMsgConVarValue(CMsgConVarValue&& from) noexcept + : CMsgConVarValue() { *this = ::std::move(from); } - inline CMsgGCError& operator=(const CMsgGCError& from) { + inline CMsgConVarValue& operator=(const CMsgConVarValue& from) { CopyFrom(from); return *this; } - inline CMsgGCError& operator=(CMsgGCError&& from) noexcept { + inline CMsgConVarValue& operator=(CMsgConVarValue&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -7866,20 +7855,20 @@ class CMsgGCError : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCError& default_instance() { + static const CMsgConVarValue& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCError* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCError_default_instance_); + static inline const CMsgConVarValue* internal_default_instance() { + return reinterpret_cast( + &_CMsgConVarValue_default_instance_); } static constexpr int kIndexInFileMessages = 35; - friend void swap(CMsgGCError& a, CMsgGCError& b) { + friend void swap(CMsgConVarValue& a, CMsgConVarValue& b) { a.Swap(&b); } - inline void Swap(CMsgGCError* other) { + inline void Swap(CMsgConVarValue* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -7892,7 +7881,7 @@ class CMsgGCError : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCError* other) { + void UnsafeArenaSwap(CMsgConVarValue* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -7900,14 +7889,14 @@ class CMsgGCError : // implements Message ---------------------------------------------- - CMsgGCError* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgConVarValue* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCError& from); + void CopyFrom(const CMsgConVarValue& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCError& from) { - CMsgGCError::MergeImpl(*this, from); + void MergeFrom( const CMsgConVarValue& from) { + CMsgConVarValue::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -7925,15 +7914,15 @@ class CMsgGCError : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCError* other); + void InternalSwap(CMsgConVarValue* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCError"; + return "CMsgConVarValue"; } protected: - explicit CMsgGCError(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgConVarValue(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -7947,27 +7936,46 @@ class CMsgGCError : // accessors ------------------------------------------------------- enum : int { - kErrorTextFieldNumber = 1, + kNameFieldNumber = 1, + kValueFieldNumber = 2, }; - // optional string error_text = 1; - bool has_error_text() const; + // optional string name = 1; + bool has_name() const; private: - bool _internal_has_error_text() const; + bool _internal_has_name() const; public: - void clear_error_text(); - const std::string& error_text() const; + void clear_name(); + const std::string& name() const; template - void set_error_text(ArgT0&& arg0, ArgT... args); - std::string* mutable_error_text(); - PROTOBUF_NODISCARD std::string* release_error_text(); - void set_allocated_error_text(std::string* error_text); + void set_name(ArgT0&& arg0, ArgT... args); + std::string* mutable_name(); + PROTOBUF_NODISCARD std::string* release_name(); + void set_allocated_name(std::string* name); private: - const std::string& _internal_error_text() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_error_text(const std::string& value); - std::string* _internal_mutable_error_text(); + const std::string& _internal_name() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_name(const std::string& value); + std::string* _internal_mutable_name(); public: - // @@protoc_insertion_point(class_scope:CMsgGCError) + // optional string value = 2; + bool has_value() const; + private: + bool _internal_has_value() const; + public: + void clear_value(); + const std::string& value() const; + template + void set_value(ArgT0&& arg0, ArgT... args); + std::string* mutable_value(); + PROTOBUF_NODISCARD std::string* release_value(); + void set_allocated_value(std::string* value); + private: + const std::string& _internal_value() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_value(const std::string& value); + std::string* _internal_mutable_value(); + public: + + // @@protoc_insertion_point(class_scope:CMsgConVarValue) private: class _Internal; @@ -7977,30 +7985,32 @@ class CMsgGCError : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr error_text_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr name_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr value_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgRequestInventoryRefresh : - public ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:CMsgRequestInventoryRefresh) */ { +class CMsgReplicateConVars : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgReplicateConVars) */ { public: - inline CMsgRequestInventoryRefresh() : CMsgRequestInventoryRefresh(nullptr) {} - explicit PROTOBUF_CONSTEXPR CMsgRequestInventoryRefresh(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgReplicateConVars() : CMsgReplicateConVars(nullptr) {} + ~CMsgReplicateConVars() override; + explicit PROTOBUF_CONSTEXPR CMsgReplicateConVars(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgRequestInventoryRefresh(const CMsgRequestInventoryRefresh& from); - CMsgRequestInventoryRefresh(CMsgRequestInventoryRefresh&& from) noexcept - : CMsgRequestInventoryRefresh() { + CMsgReplicateConVars(const CMsgReplicateConVars& from); + CMsgReplicateConVars(CMsgReplicateConVars&& from) noexcept + : CMsgReplicateConVars() { *this = ::std::move(from); } - inline CMsgRequestInventoryRefresh& operator=(const CMsgRequestInventoryRefresh& from) { + inline CMsgReplicateConVars& operator=(const CMsgReplicateConVars& from) { CopyFrom(from); return *this; } - inline CMsgRequestInventoryRefresh& operator=(CMsgRequestInventoryRefresh&& from) noexcept { + inline CMsgReplicateConVars& operator=(CMsgReplicateConVars&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -8030,20 +8040,20 @@ class CMsgRequestInventoryRefresh : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgRequestInventoryRefresh& default_instance() { + static const CMsgReplicateConVars& default_instance() { return *internal_default_instance(); } - static inline const CMsgRequestInventoryRefresh* internal_default_instance() { - return reinterpret_cast( - &_CMsgRequestInventoryRefresh_default_instance_); + static inline const CMsgReplicateConVars* internal_default_instance() { + return reinterpret_cast( + &_CMsgReplicateConVars_default_instance_); } static constexpr int kIndexInFileMessages = 36; - friend void swap(CMsgRequestInventoryRefresh& a, CMsgRequestInventoryRefresh& b) { + friend void swap(CMsgReplicateConVars& a, CMsgReplicateConVars& b) { a.Swap(&b); } - inline void Swap(CMsgRequestInventoryRefresh* other) { + inline void Swap(CMsgReplicateConVars* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -8056,7 +8066,7 @@ class CMsgRequestInventoryRefresh : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgRequestInventoryRefresh* other) { + void UnsafeArenaSwap(CMsgReplicateConVars* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -8064,26 +8074,40 @@ class CMsgRequestInventoryRefresh : // implements Message ---------------------------------------------- - CMsgRequestInventoryRefresh* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); - } - using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyFrom; - inline void CopyFrom(const CMsgRequestInventoryRefresh& from) { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl(*this, from); + CMsgReplicateConVars* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } - using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const CMsgRequestInventoryRefresh& from) { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl(*this, from); + using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; + void CopyFrom(const CMsgReplicateConVars& from); + using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; + void MergeFrom( const CMsgReplicateConVars& from) { + CMsgReplicateConVars::MergeImpl(*this, from); } + private: + static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); public: + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; + uint8_t* _InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const final { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(CMsgReplicateConVars* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgRequestInventoryRefresh"; + return "CMsgReplicateConVars"; } protected: - explicit CMsgRequestInventoryRefresh(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgReplicateConVars(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -8096,37 +8120,61 @@ class CMsgRequestInventoryRefresh : // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:CMsgRequestInventoryRefresh) - private: - class _Internal; - - template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; - typedef void InternalArenaConstructable_; - typedef void DestructorSkippable_; - struct Impl_ { - }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + enum : int { + kConvarsFieldNumber = 1, + }; + // repeated .CMsgConVarValue convars = 1; + int convars_size() const; + private: + int _internal_convars_size() const; + public: + void clear_convars(); + ::CMsgConVarValue* mutable_convars(int index); + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgConVarValue >* + mutable_convars(); + private: + const ::CMsgConVarValue& _internal_convars(int index) const; + ::CMsgConVarValue* _internal_add_convars(); + public: + const ::CMsgConVarValue& convars(int index) const; + ::CMsgConVarValue* add_convars(); + const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgConVarValue >& + convars() const; + + // @@protoc_insertion_point(class_scope:CMsgReplicateConVars) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; + struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgConVarValue > convars_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgConVarValue : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgConVarValue) */ { +class CMsgUseItem : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgUseItem) */ { public: - inline CMsgConVarValue() : CMsgConVarValue(nullptr) {} - ~CMsgConVarValue() override; - explicit PROTOBUF_CONSTEXPR CMsgConVarValue(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgUseItem() : CMsgUseItem(nullptr) {} + ~CMsgUseItem() override; + explicit PROTOBUF_CONSTEXPR CMsgUseItem(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgConVarValue(const CMsgConVarValue& from); - CMsgConVarValue(CMsgConVarValue&& from) noexcept - : CMsgConVarValue() { + CMsgUseItem(const CMsgUseItem& from); + CMsgUseItem(CMsgUseItem&& from) noexcept + : CMsgUseItem() { *this = ::std::move(from); } - inline CMsgConVarValue& operator=(const CMsgConVarValue& from) { + inline CMsgUseItem& operator=(const CMsgUseItem& from) { CopyFrom(from); return *this; } - inline CMsgConVarValue& operator=(CMsgConVarValue&& from) noexcept { + inline CMsgUseItem& operator=(CMsgUseItem&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -8156,20 +8204,20 @@ class CMsgConVarValue : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgConVarValue& default_instance() { + static const CMsgUseItem& default_instance() { return *internal_default_instance(); } - static inline const CMsgConVarValue* internal_default_instance() { - return reinterpret_cast( - &_CMsgConVarValue_default_instance_); + static inline const CMsgUseItem* internal_default_instance() { + return reinterpret_cast( + &_CMsgUseItem_default_instance_); } static constexpr int kIndexInFileMessages = 37; - friend void swap(CMsgConVarValue& a, CMsgConVarValue& b) { + friend void swap(CMsgUseItem& a, CMsgUseItem& b) { a.Swap(&b); } - inline void Swap(CMsgConVarValue* other) { + inline void Swap(CMsgUseItem* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -8182,7 +8230,7 @@ class CMsgConVarValue : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgConVarValue* other) { + void UnsafeArenaSwap(CMsgUseItem* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -8190,14 +8238,14 @@ class CMsgConVarValue : // implements Message ---------------------------------------------- - CMsgConVarValue* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgUseItem* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgConVarValue& from); + void CopyFrom(const CMsgUseItem& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgConVarValue& from) { - CMsgConVarValue::MergeImpl(*this, from); + void MergeFrom( const CMsgUseItem& from) { + CMsgUseItem::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -8215,15 +8263,15 @@ class CMsgConVarValue : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgConVarValue* other); + void InternalSwap(CMsgUseItem* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgConVarValue"; + return "CMsgUseItem"; } protected: - explicit CMsgConVarValue(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgUseItem(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -8237,46 +8285,87 @@ class CMsgConVarValue : // accessors ------------------------------------------------------- enum : int { - kNameFieldNumber = 1, - kValueFieldNumber = 2, + kGiftPotentialTargetsFieldNumber = 3, + kItemIdFieldNumber = 1, + kTargetSteamIdFieldNumber = 2, + kInitiatorSteamIdFieldNumber = 5, + kDuelClassLockFieldNumber = 4, }; - // optional string name = 1; - bool has_name() const; + // repeated uint32 gift__potential_targets = 3; + int gift__potential_targets_size() const; private: - bool _internal_has_name() const; + int _internal_gift__potential_targets_size() const; public: - void clear_name(); - const std::string& name() const; - template - void set_name(ArgT0&& arg0, ArgT... args); - std::string* mutable_name(); - PROTOBUF_NODISCARD std::string* release_name(); - void set_allocated_name(std::string* name); + void clear_gift__potential_targets(); private: - const std::string& _internal_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_name(const std::string& value); - std::string* _internal_mutable_name(); + uint32_t _internal_gift__potential_targets(int index) const; + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& + _internal_gift__potential_targets() const; + void _internal_add_gift__potential_targets(uint32_t value); + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* + _internal_mutable_gift__potential_targets(); public: + uint32_t gift__potential_targets(int index) const; + void set_gift__potential_targets(int index, uint32_t value); + void add_gift__potential_targets(uint32_t value); + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& + gift__potential_targets() const; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* + mutable_gift__potential_targets(); - // optional string value = 2; - bool has_value() const; + // optional uint64 item_id = 1; + bool has_item_id() const; private: - bool _internal_has_value() const; + bool _internal_has_item_id() const; public: - void clear_value(); - const std::string& value() const; - template - void set_value(ArgT0&& arg0, ArgT... args); - std::string* mutable_value(); - PROTOBUF_NODISCARD std::string* release_value(); - void set_allocated_value(std::string* value); + void clear_item_id(); + uint64_t item_id() const; + void set_item_id(uint64_t value); private: - const std::string& _internal_value() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_value(const std::string& value); - std::string* _internal_mutable_value(); + uint64_t _internal_item_id() const; + void _internal_set_item_id(uint64_t value); public: - // @@protoc_insertion_point(class_scope:CMsgConVarValue) + // optional fixed64 target_steam_id = 2; + bool has_target_steam_id() const; + private: + bool _internal_has_target_steam_id() const; + public: + void clear_target_steam_id(); + uint64_t target_steam_id() const; + void set_target_steam_id(uint64_t value); + private: + uint64_t _internal_target_steam_id() const; + void _internal_set_target_steam_id(uint64_t value); + public: + + // optional fixed64 initiator_steam_id = 5; + bool has_initiator_steam_id() const; + private: + bool _internal_has_initiator_steam_id() const; + public: + void clear_initiator_steam_id(); + uint64_t initiator_steam_id() const; + void set_initiator_steam_id(uint64_t value); + private: + uint64_t _internal_initiator_steam_id() const; + void _internal_set_initiator_steam_id(uint64_t value); + public: + + // optional uint32 duel__class_lock = 4; + bool has_duel__class_lock() const; + private: + bool _internal_has_duel__class_lock() const; + public: + void clear_duel__class_lock(); + uint32_t duel__class_lock() const; + void set_duel__class_lock(uint32_t value); + private: + uint32_t _internal_duel__class_lock() const; + void _internal_set_duel__class_lock(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgUseItem) private: class _Internal; @@ -8286,32 +8375,35 @@ class CMsgConVarValue : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr name_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr value_; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t > gift__potential_targets_; + uint64_t item_id_; + uint64_t target_steam_id_; + uint64_t initiator_steam_id_; + uint32_t duel__class_lock_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgReplicateConVars : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgReplicateConVars) */ { +class CMsgReplayUploadedToYouTube : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgReplayUploadedToYouTube) */ { public: - inline CMsgReplicateConVars() : CMsgReplicateConVars(nullptr) {} - ~CMsgReplicateConVars() override; - explicit PROTOBUF_CONSTEXPR CMsgReplicateConVars(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgReplayUploadedToYouTube() : CMsgReplayUploadedToYouTube(nullptr) {} + ~CMsgReplayUploadedToYouTube() override; + explicit PROTOBUF_CONSTEXPR CMsgReplayUploadedToYouTube(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgReplicateConVars(const CMsgReplicateConVars& from); - CMsgReplicateConVars(CMsgReplicateConVars&& from) noexcept - : CMsgReplicateConVars() { + CMsgReplayUploadedToYouTube(const CMsgReplayUploadedToYouTube& from); + CMsgReplayUploadedToYouTube(CMsgReplayUploadedToYouTube&& from) noexcept + : CMsgReplayUploadedToYouTube() { *this = ::std::move(from); } - inline CMsgReplicateConVars& operator=(const CMsgReplicateConVars& from) { + inline CMsgReplayUploadedToYouTube& operator=(const CMsgReplayUploadedToYouTube& from) { CopyFrom(from); return *this; } - inline CMsgReplicateConVars& operator=(CMsgReplicateConVars&& from) noexcept { + inline CMsgReplayUploadedToYouTube& operator=(CMsgReplayUploadedToYouTube&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -8341,20 +8433,20 @@ class CMsgReplicateConVars : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgReplicateConVars& default_instance() { + static const CMsgReplayUploadedToYouTube& default_instance() { return *internal_default_instance(); } - static inline const CMsgReplicateConVars* internal_default_instance() { - return reinterpret_cast( - &_CMsgReplicateConVars_default_instance_); + static inline const CMsgReplayUploadedToYouTube* internal_default_instance() { + return reinterpret_cast( + &_CMsgReplayUploadedToYouTube_default_instance_); } static constexpr int kIndexInFileMessages = 38; - friend void swap(CMsgReplicateConVars& a, CMsgReplicateConVars& b) { + friend void swap(CMsgReplayUploadedToYouTube& a, CMsgReplayUploadedToYouTube& b) { a.Swap(&b); } - inline void Swap(CMsgReplicateConVars* other) { + inline void Swap(CMsgReplayUploadedToYouTube* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -8367,7 +8459,7 @@ class CMsgReplicateConVars : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgReplicateConVars* other) { + void UnsafeArenaSwap(CMsgReplayUploadedToYouTube* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -8375,14 +8467,14 @@ class CMsgReplicateConVars : // implements Message ---------------------------------------------- - CMsgReplicateConVars* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgReplayUploadedToYouTube* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgReplicateConVars& from); + void CopyFrom(const CMsgReplayUploadedToYouTube& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgReplicateConVars& from) { - CMsgReplicateConVars::MergeImpl(*this, from); + void MergeFrom( const CMsgReplayUploadedToYouTube& from) { + CMsgReplayUploadedToYouTube::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -8400,15 +8492,15 @@ class CMsgReplicateConVars : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgReplicateConVars* other); + void InternalSwap(CMsgReplayUploadedToYouTube* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgReplicateConVars"; + return "CMsgReplayUploadedToYouTube"; } protected: - explicit CMsgReplicateConVars(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgReplayUploadedToYouTube(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -8422,27 +8514,60 @@ class CMsgReplicateConVars : // accessors ------------------------------------------------------- enum : int { - kConvarsFieldNumber = 1, + kYoutubeUrlFieldNumber = 1, + kYoutubeAccountNameFieldNumber = 2, + kSessionIdFieldNumber = 3, }; - // repeated .CMsgConVarValue convars = 1; - int convars_size() const; + // optional string youtube_url = 1; + bool has_youtube_url() const; private: - int _internal_convars_size() const; + bool _internal_has_youtube_url() const; public: - void clear_convars(); - ::CMsgConVarValue* mutable_convars(int index); - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgConVarValue >* - mutable_convars(); - private: - const ::CMsgConVarValue& _internal_convars(int index) const; - ::CMsgConVarValue* _internal_add_convars(); + void clear_youtube_url(); + const std::string& youtube_url() const; + template + void set_youtube_url(ArgT0&& arg0, ArgT... args); + std::string* mutable_youtube_url(); + PROTOBUF_NODISCARD std::string* release_youtube_url(); + void set_allocated_youtube_url(std::string* youtube_url); + private: + const std::string& _internal_youtube_url() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_youtube_url(const std::string& value); + std::string* _internal_mutable_youtube_url(); public: - const ::CMsgConVarValue& convars(int index) const; - ::CMsgConVarValue* add_convars(); - const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgConVarValue >& - convars() const; - // @@protoc_insertion_point(class_scope:CMsgReplicateConVars) + // optional string youtube_account_name = 2; + bool has_youtube_account_name() const; + private: + bool _internal_has_youtube_account_name() const; + public: + void clear_youtube_account_name(); + const std::string& youtube_account_name() const; + template + void set_youtube_account_name(ArgT0&& arg0, ArgT... args); + std::string* mutable_youtube_account_name(); + PROTOBUF_NODISCARD std::string* release_youtube_account_name(); + void set_allocated_youtube_account_name(std::string* youtube_account_name); + private: + const std::string& _internal_youtube_account_name() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_youtube_account_name(const std::string& value); + std::string* _internal_mutable_youtube_account_name(); + public: + + // optional uint64 session_id = 3; + bool has_session_id() const; + private: + bool _internal_has_session_id() const; + public: + void clear_session_id(); + uint64_t session_id() const; + void set_session_id(uint64_t value); + private: + uint64_t _internal_session_id() const; + void _internal_set_session_id(uint64_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgReplayUploadedToYouTube) private: class _Internal; @@ -8450,32 +8575,35 @@ class CMsgReplicateConVars : typedef void InternalArenaConstructable_; typedef void DestructorSkippable_; struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgConVarValue > convars_; + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr youtube_url_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr youtube_account_name_; + uint64_t session_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgUseItem : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgUseItem) */ { +class CMsgConsumableExhausted : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgConsumableExhausted) */ { public: - inline CMsgUseItem() : CMsgUseItem(nullptr) {} - ~CMsgUseItem() override; - explicit PROTOBUF_CONSTEXPR CMsgUseItem(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgConsumableExhausted() : CMsgConsumableExhausted(nullptr) {} + ~CMsgConsumableExhausted() override; + explicit PROTOBUF_CONSTEXPR CMsgConsumableExhausted(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgUseItem(const CMsgUseItem& from); - CMsgUseItem(CMsgUseItem&& from) noexcept - : CMsgUseItem() { + CMsgConsumableExhausted(const CMsgConsumableExhausted& from); + CMsgConsumableExhausted(CMsgConsumableExhausted&& from) noexcept + : CMsgConsumableExhausted() { *this = ::std::move(from); } - inline CMsgUseItem& operator=(const CMsgUseItem& from) { + inline CMsgConsumableExhausted& operator=(const CMsgConsumableExhausted& from) { CopyFrom(from); return *this; } - inline CMsgUseItem& operator=(CMsgUseItem&& from) noexcept { + inline CMsgConsumableExhausted& operator=(CMsgConsumableExhausted&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -8505,20 +8633,20 @@ class CMsgUseItem : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgUseItem& default_instance() { + static const CMsgConsumableExhausted& default_instance() { return *internal_default_instance(); } - static inline const CMsgUseItem* internal_default_instance() { - return reinterpret_cast( - &_CMsgUseItem_default_instance_); + static inline const CMsgConsumableExhausted* internal_default_instance() { + return reinterpret_cast( + &_CMsgConsumableExhausted_default_instance_); } static constexpr int kIndexInFileMessages = 39; - friend void swap(CMsgUseItem& a, CMsgUseItem& b) { + friend void swap(CMsgConsumableExhausted& a, CMsgConsumableExhausted& b) { a.Swap(&b); } - inline void Swap(CMsgUseItem* other) { + inline void Swap(CMsgConsumableExhausted* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -8531,7 +8659,7 @@ class CMsgUseItem : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgUseItem* other) { + void UnsafeArenaSwap(CMsgConsumableExhausted* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -8539,14 +8667,14 @@ class CMsgUseItem : // implements Message ---------------------------------------------- - CMsgUseItem* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgConsumableExhausted* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgUseItem& from); + void CopyFrom(const CMsgConsumableExhausted& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgUseItem& from) { - CMsgUseItem::MergeImpl(*this, from); + void MergeFrom( const CMsgConsumableExhausted& from) { + CMsgConsumableExhausted::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -8564,15 +8692,15 @@ class CMsgUseItem : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgUseItem* other); + void InternalSwap(CMsgConsumableExhausted* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgUseItem"; + return "CMsgConsumableExhausted"; } protected: - explicit CMsgUseItem(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgConsumableExhausted(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -8586,87 +8714,22 @@ class CMsgUseItem : // accessors ------------------------------------------------------- enum : int { - kGiftPotentialTargetsFieldNumber = 3, - kItemIdFieldNumber = 1, - kTargetSteamIdFieldNumber = 2, - kInitiatorSteamIdFieldNumber = 5, - kDuelClassLockFieldNumber = 4, + kItemDefIdFieldNumber = 1, }; - // repeated uint32 gift__potential_targets = 3; - int gift__potential_targets_size() const; - private: - int _internal_gift__potential_targets_size() const; - public: - void clear_gift__potential_targets(); - private: - uint32_t _internal_gift__potential_targets(int index) const; - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& - _internal_gift__potential_targets() const; - void _internal_add_gift__potential_targets(uint32_t value); - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* - _internal_mutable_gift__potential_targets(); - public: - uint32_t gift__potential_targets(int index) const; - void set_gift__potential_targets(int index, uint32_t value); - void add_gift__potential_targets(uint32_t value); - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& - gift__potential_targets() const; - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* - mutable_gift__potential_targets(); - - // optional uint64 item_id = 1; - bool has_item_id() const; - private: - bool _internal_has_item_id() const; - public: - void clear_item_id(); - uint64_t item_id() const; - void set_item_id(uint64_t value); - private: - uint64_t _internal_item_id() const; - void _internal_set_item_id(uint64_t value); - public: - - // optional fixed64 target_steam_id = 2; - bool has_target_steam_id() const; - private: - bool _internal_has_target_steam_id() const; - public: - void clear_target_steam_id(); - uint64_t target_steam_id() const; - void set_target_steam_id(uint64_t value); - private: - uint64_t _internal_target_steam_id() const; - void _internal_set_target_steam_id(uint64_t value); - public: - - // optional fixed64 initiator_steam_id = 5; - bool has_initiator_steam_id() const; - private: - bool _internal_has_initiator_steam_id() const; - public: - void clear_initiator_steam_id(); - uint64_t initiator_steam_id() const; - void set_initiator_steam_id(uint64_t value); - private: - uint64_t _internal_initiator_steam_id() const; - void _internal_set_initiator_steam_id(uint64_t value); - public: - - // optional uint32 duel__class_lock = 4; - bool has_duel__class_lock() const; + // optional int32 item_def_id = 1; + bool has_item_def_id() const; private: - bool _internal_has_duel__class_lock() const; + bool _internal_has_item_def_id() const; public: - void clear_duel__class_lock(); - uint32_t duel__class_lock() const; - void set_duel__class_lock(uint32_t value); + void clear_item_def_id(); + int32_t item_def_id() const; + void set_item_def_id(int32_t value); private: - uint32_t _internal_duel__class_lock() const; - void _internal_set_duel__class_lock(uint32_t value); + int32_t _internal_item_def_id() const; + void _internal_set_item_def_id(int32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgUseItem) + // @@protoc_insertion_point(class_scope:CMsgConsumableExhausted) private: class _Internal; @@ -8676,35 +8739,31 @@ class CMsgUseItem : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t > gift__potential_targets_; - uint64_t item_id_; - uint64_t target_steam_id_; - uint64_t initiator_steam_id_; - uint32_t duel__class_lock_; + int32_t item_def_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgReplayUploadedToYouTube : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgReplayUploadedToYouTube) */ { +class CMsgItemAcknowledged__DEPRECATED : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgItemAcknowledged__DEPRECATED) */ { public: - inline CMsgReplayUploadedToYouTube() : CMsgReplayUploadedToYouTube(nullptr) {} - ~CMsgReplayUploadedToYouTube() override; - explicit PROTOBUF_CONSTEXPR CMsgReplayUploadedToYouTube(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgItemAcknowledged__DEPRECATED() : CMsgItemAcknowledged__DEPRECATED(nullptr) {} + ~CMsgItemAcknowledged__DEPRECATED() override; + explicit PROTOBUF_CONSTEXPR CMsgItemAcknowledged__DEPRECATED(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgReplayUploadedToYouTube(const CMsgReplayUploadedToYouTube& from); - CMsgReplayUploadedToYouTube(CMsgReplayUploadedToYouTube&& from) noexcept - : CMsgReplayUploadedToYouTube() { + CMsgItemAcknowledged__DEPRECATED(const CMsgItemAcknowledged__DEPRECATED& from); + CMsgItemAcknowledged__DEPRECATED(CMsgItemAcknowledged__DEPRECATED&& from) noexcept + : CMsgItemAcknowledged__DEPRECATED() { *this = ::std::move(from); } - inline CMsgReplayUploadedToYouTube& operator=(const CMsgReplayUploadedToYouTube& from) { + inline CMsgItemAcknowledged__DEPRECATED& operator=(const CMsgItemAcknowledged__DEPRECATED& from) { CopyFrom(from); return *this; } - inline CMsgReplayUploadedToYouTube& operator=(CMsgReplayUploadedToYouTube&& from) noexcept { + inline CMsgItemAcknowledged__DEPRECATED& operator=(CMsgItemAcknowledged__DEPRECATED&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -8734,20 +8793,20 @@ class CMsgReplayUploadedToYouTube : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgReplayUploadedToYouTube& default_instance() { + static const CMsgItemAcknowledged__DEPRECATED& default_instance() { return *internal_default_instance(); } - static inline const CMsgReplayUploadedToYouTube* internal_default_instance() { - return reinterpret_cast( - &_CMsgReplayUploadedToYouTube_default_instance_); + static inline const CMsgItemAcknowledged__DEPRECATED* internal_default_instance() { + return reinterpret_cast( + &_CMsgItemAcknowledged__DEPRECATED_default_instance_); } static constexpr int kIndexInFileMessages = 40; - friend void swap(CMsgReplayUploadedToYouTube& a, CMsgReplayUploadedToYouTube& b) { + friend void swap(CMsgItemAcknowledged__DEPRECATED& a, CMsgItemAcknowledged__DEPRECATED& b) { a.Swap(&b); } - inline void Swap(CMsgReplayUploadedToYouTube* other) { + inline void Swap(CMsgItemAcknowledged__DEPRECATED* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -8760,7 +8819,7 @@ class CMsgReplayUploadedToYouTube : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgReplayUploadedToYouTube* other) { + void UnsafeArenaSwap(CMsgItemAcknowledged__DEPRECATED* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -8768,14 +8827,14 @@ class CMsgReplayUploadedToYouTube : // implements Message ---------------------------------------------- - CMsgReplayUploadedToYouTube* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgItemAcknowledged__DEPRECATED* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgReplayUploadedToYouTube& from); + void CopyFrom(const CMsgItemAcknowledged__DEPRECATED& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgReplayUploadedToYouTube& from) { - CMsgReplayUploadedToYouTube::MergeImpl(*this, from); + void MergeFrom( const CMsgItemAcknowledged__DEPRECATED& from) { + CMsgItemAcknowledged__DEPRECATED::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -8793,15 +8852,15 @@ class CMsgReplayUploadedToYouTube : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgReplayUploadedToYouTube* other); + void InternalSwap(CMsgItemAcknowledged__DEPRECATED* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgReplayUploadedToYouTube"; + return "CMsgItemAcknowledged__DEPRECATED"; } protected: - explicit CMsgReplayUploadedToYouTube(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgItemAcknowledged__DEPRECATED(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -8815,60 +8874,106 @@ class CMsgReplayUploadedToYouTube : // accessors ------------------------------------------------------- enum : int { - kYoutubeUrlFieldNumber = 1, - kYoutubeAccountNameFieldNumber = 2, - kSessionIdFieldNumber = 3, + kAccountIdFieldNumber = 1, + kInventoryFieldNumber = 2, + kDefIndexFieldNumber = 3, + kQualityFieldNumber = 4, + kRarityFieldNumber = 5, + kOriginFieldNumber = 6, + kItemIdFieldNumber = 7, }; - // optional string youtube_url = 1; - bool has_youtube_url() const; + // optional uint32 account_id = 1; + bool has_account_id() const; private: - bool _internal_has_youtube_url() const; + bool _internal_has_account_id() const; public: - void clear_youtube_url(); - const std::string& youtube_url() const; - template - void set_youtube_url(ArgT0&& arg0, ArgT... args); - std::string* mutable_youtube_url(); - PROTOBUF_NODISCARD std::string* release_youtube_url(); - void set_allocated_youtube_url(std::string* youtube_url); + void clear_account_id(); + uint32_t account_id() const; + void set_account_id(uint32_t value); private: - const std::string& _internal_youtube_url() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_youtube_url(const std::string& value); - std::string* _internal_mutable_youtube_url(); + uint32_t _internal_account_id() const; + void _internal_set_account_id(uint32_t value); public: - // optional string youtube_account_name = 2; - bool has_youtube_account_name() const; + // optional uint32 inventory = 2; + bool has_inventory() const; private: - bool _internal_has_youtube_account_name() const; + bool _internal_has_inventory() const; public: - void clear_youtube_account_name(); - const std::string& youtube_account_name() const; - template - void set_youtube_account_name(ArgT0&& arg0, ArgT... args); - std::string* mutable_youtube_account_name(); - PROTOBUF_NODISCARD std::string* release_youtube_account_name(); - void set_allocated_youtube_account_name(std::string* youtube_account_name); + void clear_inventory(); + uint32_t inventory() const; + void set_inventory(uint32_t value); private: - const std::string& _internal_youtube_account_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_youtube_account_name(const std::string& value); - std::string* _internal_mutable_youtube_account_name(); + uint32_t _internal_inventory() const; + void _internal_set_inventory(uint32_t value); public: - // optional uint64 session_id = 3; - bool has_session_id() const; + // optional uint32 def_index = 3; + bool has_def_index() const; private: - bool _internal_has_session_id() const; + bool _internal_has_def_index() const; public: - void clear_session_id(); - uint64_t session_id() const; - void set_session_id(uint64_t value); + void clear_def_index(); + uint32_t def_index() const; + void set_def_index(uint32_t value); private: - uint64_t _internal_session_id() const; - void _internal_set_session_id(uint64_t value); + uint32_t _internal_def_index() const; + void _internal_set_def_index(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgReplayUploadedToYouTube) + // optional uint32 quality = 4; + bool has_quality() const; + private: + bool _internal_has_quality() const; + public: + void clear_quality(); + uint32_t quality() const; + void set_quality(uint32_t value); + private: + uint32_t _internal_quality() const; + void _internal_set_quality(uint32_t value); + public: + + // optional uint32 rarity = 5; + bool has_rarity() const; + private: + bool _internal_has_rarity() const; + public: + void clear_rarity(); + uint32_t rarity() const; + void set_rarity(uint32_t value); + private: + uint32_t _internal_rarity() const; + void _internal_set_rarity(uint32_t value); + public: + + // optional uint32 origin = 6; + bool has_origin() const; + private: + bool _internal_has_origin() const; + public: + void clear_origin(); + uint32_t origin() const; + void set_origin(uint32_t value); + private: + uint32_t _internal_origin() const; + void _internal_set_origin(uint32_t value); + public: + + // optional uint64 item_id = 7; + bool has_item_id() const; + private: + bool _internal_has_item_id() const; + public: + void clear_item_id(); + uint64_t item_id() const; + void set_item_id(uint64_t value); + private: + uint64_t _internal_item_id() const; + void _internal_set_item_id(uint64_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgItemAcknowledged__DEPRECATED) private: class _Internal; @@ -8878,33 +8983,37 @@ class CMsgReplayUploadedToYouTube : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr youtube_url_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr youtube_account_name_; - uint64_t session_id_; + uint32_t account_id_; + uint32_t inventory_; + uint32_t def_index_; + uint32_t quality_; + uint32_t rarity_; + uint32_t origin_; + uint64_t item_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgConsumableExhausted : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgConsumableExhausted) */ { +class CMsgSetItemPositions_ItemPosition : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgSetItemPositions.ItemPosition) */ { public: - inline CMsgConsumableExhausted() : CMsgConsumableExhausted(nullptr) {} - ~CMsgConsumableExhausted() override; - explicit PROTOBUF_CONSTEXPR CMsgConsumableExhausted(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgSetItemPositions_ItemPosition() : CMsgSetItemPositions_ItemPosition(nullptr) {} + ~CMsgSetItemPositions_ItemPosition() override; + explicit PROTOBUF_CONSTEXPR CMsgSetItemPositions_ItemPosition(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgConsumableExhausted(const CMsgConsumableExhausted& from); - CMsgConsumableExhausted(CMsgConsumableExhausted&& from) noexcept - : CMsgConsumableExhausted() { + CMsgSetItemPositions_ItemPosition(const CMsgSetItemPositions_ItemPosition& from); + CMsgSetItemPositions_ItemPosition(CMsgSetItemPositions_ItemPosition&& from) noexcept + : CMsgSetItemPositions_ItemPosition() { *this = ::std::move(from); } - inline CMsgConsumableExhausted& operator=(const CMsgConsumableExhausted& from) { + inline CMsgSetItemPositions_ItemPosition& operator=(const CMsgSetItemPositions_ItemPosition& from) { CopyFrom(from); return *this; } - inline CMsgConsumableExhausted& operator=(CMsgConsumableExhausted&& from) noexcept { + inline CMsgSetItemPositions_ItemPosition& operator=(CMsgSetItemPositions_ItemPosition&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -8934,20 +9043,20 @@ class CMsgConsumableExhausted : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgConsumableExhausted& default_instance() { + static const CMsgSetItemPositions_ItemPosition& default_instance() { return *internal_default_instance(); } - static inline const CMsgConsumableExhausted* internal_default_instance() { - return reinterpret_cast( - &_CMsgConsumableExhausted_default_instance_); + static inline const CMsgSetItemPositions_ItemPosition* internal_default_instance() { + return reinterpret_cast( + &_CMsgSetItemPositions_ItemPosition_default_instance_); } static constexpr int kIndexInFileMessages = 41; - friend void swap(CMsgConsumableExhausted& a, CMsgConsumableExhausted& b) { + friend void swap(CMsgSetItemPositions_ItemPosition& a, CMsgSetItemPositions_ItemPosition& b) { a.Swap(&b); } - inline void Swap(CMsgConsumableExhausted* other) { + inline void Swap(CMsgSetItemPositions_ItemPosition* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -8960,7 +9069,7 @@ class CMsgConsumableExhausted : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgConsumableExhausted* other) { + void UnsafeArenaSwap(CMsgSetItemPositions_ItemPosition* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -8968,14 +9077,14 @@ class CMsgConsumableExhausted : // implements Message ---------------------------------------------- - CMsgConsumableExhausted* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgSetItemPositions_ItemPosition* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgConsumableExhausted& from); + void CopyFrom(const CMsgSetItemPositions_ItemPosition& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgConsumableExhausted& from) { - CMsgConsumableExhausted::MergeImpl(*this, from); + void MergeFrom( const CMsgSetItemPositions_ItemPosition& from) { + CMsgSetItemPositions_ItemPosition::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -8993,15 +9102,15 @@ class CMsgConsumableExhausted : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgConsumableExhausted* other); + void InternalSwap(CMsgSetItemPositions_ItemPosition* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgConsumableExhausted"; + return "CMsgSetItemPositions.ItemPosition"; } protected: - explicit CMsgConsumableExhausted(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgSetItemPositions_ItemPosition(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -9015,22 +9124,50 @@ class CMsgConsumableExhausted : // accessors ------------------------------------------------------- enum : int { - kItemDefIdFieldNumber = 1, + kLegacyItemIdFieldNumber = 1, + kPositionFieldNumber = 2, + kItemIdFieldNumber = 3, }; - // optional int32 item_def_id = 1; - bool has_item_def_id() const; + // optional uint32 legacy_item_id = 1; + bool has_legacy_item_id() const; private: - bool _internal_has_item_def_id() const; + bool _internal_has_legacy_item_id() const; public: - void clear_item_def_id(); - int32_t item_def_id() const; - void set_item_def_id(int32_t value); + void clear_legacy_item_id(); + uint32_t legacy_item_id() const; + void set_legacy_item_id(uint32_t value); private: - int32_t _internal_item_def_id() const; - void _internal_set_item_def_id(int32_t value); + uint32_t _internal_legacy_item_id() const; + void _internal_set_legacy_item_id(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgConsumableExhausted) + // optional uint32 position = 2; + bool has_position() const; + private: + bool _internal_has_position() const; + public: + void clear_position(); + uint32_t position() const; + void set_position(uint32_t value); + private: + uint32_t _internal_position() const; + void _internal_set_position(uint32_t value); + public: + + // optional uint64 item_id = 3; + bool has_item_id() const; + private: + bool _internal_has_item_id() const; + public: + void clear_item_id(); + uint64_t item_id() const; + void set_item_id(uint64_t value); + private: + uint64_t _internal_item_id() const; + void _internal_set_item_id(uint64_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgSetItemPositions.ItemPosition) private: class _Internal; @@ -9040,31 +9177,33 @@ class CMsgConsumableExhausted : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - int32_t item_def_id_; + uint32_t legacy_item_id_; + uint32_t position_; + uint64_t item_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgItemAcknowledged__DEPRECATED : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgItemAcknowledged__DEPRECATED) */ { +class CMsgSetItemPositions : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgSetItemPositions) */ { public: - inline CMsgItemAcknowledged__DEPRECATED() : CMsgItemAcknowledged__DEPRECATED(nullptr) {} - ~CMsgItemAcknowledged__DEPRECATED() override; - explicit PROTOBUF_CONSTEXPR CMsgItemAcknowledged__DEPRECATED(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgSetItemPositions() : CMsgSetItemPositions(nullptr) {} + ~CMsgSetItemPositions() override; + explicit PROTOBUF_CONSTEXPR CMsgSetItemPositions(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgItemAcknowledged__DEPRECATED(const CMsgItemAcknowledged__DEPRECATED& from); - CMsgItemAcknowledged__DEPRECATED(CMsgItemAcknowledged__DEPRECATED&& from) noexcept - : CMsgItemAcknowledged__DEPRECATED() { + CMsgSetItemPositions(const CMsgSetItemPositions& from); + CMsgSetItemPositions(CMsgSetItemPositions&& from) noexcept + : CMsgSetItemPositions() { *this = ::std::move(from); } - inline CMsgItemAcknowledged__DEPRECATED& operator=(const CMsgItemAcknowledged__DEPRECATED& from) { + inline CMsgSetItemPositions& operator=(const CMsgSetItemPositions& from) { CopyFrom(from); return *this; } - inline CMsgItemAcknowledged__DEPRECATED& operator=(CMsgItemAcknowledged__DEPRECATED&& from) noexcept { + inline CMsgSetItemPositions& operator=(CMsgSetItemPositions&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -9094,20 +9233,20 @@ class CMsgItemAcknowledged__DEPRECATED : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgItemAcknowledged__DEPRECATED& default_instance() { + static const CMsgSetItemPositions& default_instance() { return *internal_default_instance(); } - static inline const CMsgItemAcknowledged__DEPRECATED* internal_default_instance() { - return reinterpret_cast( - &_CMsgItemAcknowledged__DEPRECATED_default_instance_); + static inline const CMsgSetItemPositions* internal_default_instance() { + return reinterpret_cast( + &_CMsgSetItemPositions_default_instance_); } static constexpr int kIndexInFileMessages = 42; - friend void swap(CMsgItemAcknowledged__DEPRECATED& a, CMsgItemAcknowledged__DEPRECATED& b) { + friend void swap(CMsgSetItemPositions& a, CMsgSetItemPositions& b) { a.Swap(&b); } - inline void Swap(CMsgItemAcknowledged__DEPRECATED* other) { + inline void Swap(CMsgSetItemPositions* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -9120,7 +9259,7 @@ class CMsgItemAcknowledged__DEPRECATED : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgItemAcknowledged__DEPRECATED* other) { + void UnsafeArenaSwap(CMsgSetItemPositions* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -9128,14 +9267,14 @@ class CMsgItemAcknowledged__DEPRECATED : // implements Message ---------------------------------------------- - CMsgItemAcknowledged__DEPRECATED* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgSetItemPositions* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgItemAcknowledged__DEPRECATED& from); + void CopyFrom(const CMsgSetItemPositions& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgItemAcknowledged__DEPRECATED& from) { - CMsgItemAcknowledged__DEPRECATED::MergeImpl(*this, from); + void MergeFrom( const CMsgSetItemPositions& from) { + CMsgSetItemPositions::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -9153,15 +9292,15 @@ class CMsgItemAcknowledged__DEPRECATED : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgItemAcknowledged__DEPRECATED* other); + void InternalSwap(CMsgSetItemPositions* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgItemAcknowledged__DEPRECATED"; + return "CMsgSetItemPositions"; } protected: - explicit CMsgItemAcknowledged__DEPRECATED(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgSetItemPositions(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -9172,109 +9311,32 @@ class CMsgItemAcknowledged__DEPRECATED : // nested types ---------------------------------------------------- + typedef CMsgSetItemPositions_ItemPosition ItemPosition; + // accessors ------------------------------------------------------- enum : int { - kAccountIdFieldNumber = 1, - kInventoryFieldNumber = 2, - kDefIndexFieldNumber = 3, - kQualityFieldNumber = 4, - kRarityFieldNumber = 5, - kOriginFieldNumber = 6, - kItemIdFieldNumber = 7, + kItemPositionsFieldNumber = 1, }; - // optional uint32 account_id = 1; - bool has_account_id() const; - private: - bool _internal_has_account_id() const; - public: - void clear_account_id(); - uint32_t account_id() const; - void set_account_id(uint32_t value); - private: - uint32_t _internal_account_id() const; - void _internal_set_account_id(uint32_t value); - public: - - // optional uint32 inventory = 2; - bool has_inventory() const; - private: - bool _internal_has_inventory() const; - public: - void clear_inventory(); - uint32_t inventory() const; - void set_inventory(uint32_t value); - private: - uint32_t _internal_inventory() const; - void _internal_set_inventory(uint32_t value); - public: - - // optional uint32 def_index = 3; - bool has_def_index() const; - private: - bool _internal_has_def_index() const; - public: - void clear_def_index(); - uint32_t def_index() const; - void set_def_index(uint32_t value); - private: - uint32_t _internal_def_index() const; - void _internal_set_def_index(uint32_t value); - public: - - // optional uint32 quality = 4; - bool has_quality() const; - private: - bool _internal_has_quality() const; - public: - void clear_quality(); - uint32_t quality() const; - void set_quality(uint32_t value); - private: - uint32_t _internal_quality() const; - void _internal_set_quality(uint32_t value); - public: - - // optional uint32 rarity = 5; - bool has_rarity() const; - private: - bool _internal_has_rarity() const; - public: - void clear_rarity(); - uint32_t rarity() const; - void set_rarity(uint32_t value); - private: - uint32_t _internal_rarity() const; - void _internal_set_rarity(uint32_t value); - public: - - // optional uint32 origin = 6; - bool has_origin() const; - private: - bool _internal_has_origin() const; - public: - void clear_origin(); - uint32_t origin() const; - void set_origin(uint32_t value); - private: - uint32_t _internal_origin() const; - void _internal_set_origin(uint32_t value); - public: - - // optional uint64 item_id = 7; - bool has_item_id() const; + // repeated .CMsgSetItemPositions.ItemPosition item_positions = 1; + int item_positions_size() const; private: - bool _internal_has_item_id() const; + int _internal_item_positions_size() const; public: - void clear_item_id(); - uint64_t item_id() const; - void set_item_id(uint64_t value); + void clear_item_positions(); + ::CMsgSetItemPositions_ItemPosition* mutable_item_positions(int index); + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSetItemPositions_ItemPosition >* + mutable_item_positions(); private: - uint64_t _internal_item_id() const; - void _internal_set_item_id(uint64_t value); + const ::CMsgSetItemPositions_ItemPosition& _internal_item_positions(int index) const; + ::CMsgSetItemPositions_ItemPosition* _internal_add_item_positions(); public: + const ::CMsgSetItemPositions_ItemPosition& item_positions(int index) const; + ::CMsgSetItemPositions_ItemPosition* add_item_positions(); + const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSetItemPositions_ItemPosition >& + item_positions() const; - // @@protoc_insertion_point(class_scope:CMsgItemAcknowledged__DEPRECATED) + // @@protoc_insertion_point(class_scope:CMsgSetItemPositions) private: class _Internal; @@ -9282,39 +9344,32 @@ class CMsgItemAcknowledged__DEPRECATED : typedef void InternalArenaConstructable_; typedef void DestructorSkippable_; struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSetItemPositions_ItemPosition > item_positions_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t account_id_; - uint32_t inventory_; - uint32_t def_index_; - uint32_t quality_; - uint32_t rarity_; - uint32_t origin_; - uint64_t item_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgSetItemPositions_ItemPosition : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgSetItemPositions.ItemPosition) */ { +class CMsgGCReportAbuse : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCReportAbuse) */ { public: - inline CMsgSetItemPositions_ItemPosition() : CMsgSetItemPositions_ItemPosition(nullptr) {} - ~CMsgSetItemPositions_ItemPosition() override; - explicit PROTOBUF_CONSTEXPR CMsgSetItemPositions_ItemPosition(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCReportAbuse() : CMsgGCReportAbuse(nullptr) {} + ~CMsgGCReportAbuse() override; + explicit PROTOBUF_CONSTEXPR CMsgGCReportAbuse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgSetItemPositions_ItemPosition(const CMsgSetItemPositions_ItemPosition& from); - CMsgSetItemPositions_ItemPosition(CMsgSetItemPositions_ItemPosition&& from) noexcept - : CMsgSetItemPositions_ItemPosition() { + CMsgGCReportAbuse(const CMsgGCReportAbuse& from); + CMsgGCReportAbuse(CMsgGCReportAbuse&& from) noexcept + : CMsgGCReportAbuse() { *this = ::std::move(from); } - inline CMsgSetItemPositions_ItemPosition& operator=(const CMsgSetItemPositions_ItemPosition& from) { + inline CMsgGCReportAbuse& operator=(const CMsgGCReportAbuse& from) { CopyFrom(from); return *this; } - inline CMsgSetItemPositions_ItemPosition& operator=(CMsgSetItemPositions_ItemPosition&& from) noexcept { + inline CMsgGCReportAbuse& operator=(CMsgGCReportAbuse&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -9344,20 +9399,20 @@ class CMsgSetItemPositions_ItemPosition : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgSetItemPositions_ItemPosition& default_instance() { + static const CMsgGCReportAbuse& default_instance() { return *internal_default_instance(); } - static inline const CMsgSetItemPositions_ItemPosition* internal_default_instance() { - return reinterpret_cast( - &_CMsgSetItemPositions_ItemPosition_default_instance_); + static inline const CMsgGCReportAbuse* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCReportAbuse_default_instance_); } static constexpr int kIndexInFileMessages = 43; - friend void swap(CMsgSetItemPositions_ItemPosition& a, CMsgSetItemPositions_ItemPosition& b) { + friend void swap(CMsgGCReportAbuse& a, CMsgGCReportAbuse& b) { a.Swap(&b); } - inline void Swap(CMsgSetItemPositions_ItemPosition* other) { + inline void Swap(CMsgGCReportAbuse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -9370,7 +9425,7 @@ class CMsgSetItemPositions_ItemPosition : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgSetItemPositions_ItemPosition* other) { + void UnsafeArenaSwap(CMsgGCReportAbuse* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -9378,14 +9433,14 @@ class CMsgSetItemPositions_ItemPosition : // implements Message ---------------------------------------------- - CMsgSetItemPositions_ItemPosition* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCReportAbuse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgSetItemPositions_ItemPosition& from); + void CopyFrom(const CMsgGCReportAbuse& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgSetItemPositions_ItemPosition& from) { - CMsgSetItemPositions_ItemPosition::MergeImpl(*this, from); + void MergeFrom( const CMsgGCReportAbuse& from) { + CMsgGCReportAbuse::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -9403,15 +9458,15 @@ class CMsgSetItemPositions_ItemPosition : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgSetItemPositions_ItemPosition* other); + void InternalSwap(CMsgGCReportAbuse* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgSetItemPositions.ItemPosition"; + return "CMsgGCReportAbuse"; } protected: - explicit CMsgSetItemPositions_ItemPosition(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCReportAbuse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -9425,86 +9480,151 @@ class CMsgSetItemPositions_ItemPosition : // accessors ------------------------------------------------------- enum : int { - kLegacyItemIdFieldNumber = 1, - kPositionFieldNumber = 2, - kItemIdFieldNumber = 3, + kDescriptionFieldNumber = 4, + kTargetSteamIdFieldNumber = 1, + kAbuseTypeFieldNumber = 2, + kContentTypeFieldNumber = 3, + kGidFieldNumber = 5, + kTargetGameServerIpFieldNumber = 6, + kTargetGameServerPortFieldNumber = 7, }; - // optional uint32 legacy_item_id = 1; - bool has_legacy_item_id() const; + // optional string description = 4; + bool has_description() const; private: - bool _internal_has_legacy_item_id() const; + bool _internal_has_description() const; public: - void clear_legacy_item_id(); - uint32_t legacy_item_id() const; - void set_legacy_item_id(uint32_t value); + void clear_description(); + const std::string& description() const; + template + void set_description(ArgT0&& arg0, ArgT... args); + std::string* mutable_description(); + PROTOBUF_NODISCARD std::string* release_description(); + void set_allocated_description(std::string* description); private: - uint32_t _internal_legacy_item_id() const; - void _internal_set_legacy_item_id(uint32_t value); + const std::string& _internal_description() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_description(const std::string& value); + std::string* _internal_mutable_description(); public: - // optional uint32 position = 2; - bool has_position() const; + // optional fixed64 target_steam_id = 1; + bool has_target_steam_id() const; private: - bool _internal_has_position() const; + bool _internal_has_target_steam_id() const; public: - void clear_position(); - uint32_t position() const; - void set_position(uint32_t value); + void clear_target_steam_id(); + uint64_t target_steam_id() const; + void set_target_steam_id(uint64_t value); private: - uint32_t _internal_position() const; - void _internal_set_position(uint32_t value); + uint64_t _internal_target_steam_id() const; + void _internal_set_target_steam_id(uint64_t value); public: - // optional uint64 item_id = 3; - bool has_item_id() const; + // optional uint32 abuse_type = 2; + bool has_abuse_type() const; private: - bool _internal_has_item_id() const; + bool _internal_has_abuse_type() const; public: - void clear_item_id(); - uint64_t item_id() const; - void set_item_id(uint64_t value); + void clear_abuse_type(); + uint32_t abuse_type() const; + void set_abuse_type(uint32_t value); private: - uint64_t _internal_item_id() const; - void _internal_set_item_id(uint64_t value); + uint32_t _internal_abuse_type() const; + void _internal_set_abuse_type(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgSetItemPositions.ItemPosition) - private: - class _Internal; - - template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; - typedef void InternalArenaConstructable_; - typedef void DestructorSkippable_; + // optional uint32 content_type = 3; + bool has_content_type() const; + private: + bool _internal_has_content_type() const; + public: + void clear_content_type(); + uint32_t content_type() const; + void set_content_type(uint32_t value); + private: + uint32_t _internal_content_type() const; + void _internal_set_content_type(uint32_t value); + public: + + // optional uint64 gid = 5; + bool has_gid() const; + private: + bool _internal_has_gid() const; + public: + void clear_gid(); + uint64_t gid() const; + void set_gid(uint64_t value); + private: + uint64_t _internal_gid() const; + void _internal_set_gid(uint64_t value); + public: + + // optional fixed32 target_game_server_ip = 6; + bool has_target_game_server_ip() const; + private: + bool _internal_has_target_game_server_ip() const; + public: + void clear_target_game_server_ip(); + uint32_t target_game_server_ip() const; + void set_target_game_server_ip(uint32_t value); + private: + uint32_t _internal_target_game_server_ip() const; + void _internal_set_target_game_server_ip(uint32_t value); + public: + + // optional uint32 target_game_server_port = 7; + bool has_target_game_server_port() const; + private: + bool _internal_has_target_game_server_port() const; + public: + void clear_target_game_server_port(); + uint32_t target_game_server_port() const; + void set_target_game_server_port(uint32_t value); + private: + uint32_t _internal_target_game_server_port() const; + void _internal_set_target_game_server_port(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgGCReportAbuse) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t legacy_item_id_; - uint32_t position_; - uint64_t item_id_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr description_; + uint64_t target_steam_id_; + uint32_t abuse_type_; + uint32_t content_type_; + uint64_t gid_; + uint32_t target_game_server_ip_; + uint32_t target_game_server_port_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgSetItemPositions : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgSetItemPositions) */ { +class CMsgGCReportAbuseResponse : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCReportAbuseResponse) */ { public: - inline CMsgSetItemPositions() : CMsgSetItemPositions(nullptr) {} - ~CMsgSetItemPositions() override; - explicit PROTOBUF_CONSTEXPR CMsgSetItemPositions(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCReportAbuseResponse() : CMsgGCReportAbuseResponse(nullptr) {} + ~CMsgGCReportAbuseResponse() override; + explicit PROTOBUF_CONSTEXPR CMsgGCReportAbuseResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgSetItemPositions(const CMsgSetItemPositions& from); - CMsgSetItemPositions(CMsgSetItemPositions&& from) noexcept - : CMsgSetItemPositions() { + CMsgGCReportAbuseResponse(const CMsgGCReportAbuseResponse& from); + CMsgGCReportAbuseResponse(CMsgGCReportAbuseResponse&& from) noexcept + : CMsgGCReportAbuseResponse() { *this = ::std::move(from); } - inline CMsgSetItemPositions& operator=(const CMsgSetItemPositions& from) { + inline CMsgGCReportAbuseResponse& operator=(const CMsgGCReportAbuseResponse& from) { CopyFrom(from); return *this; } - inline CMsgSetItemPositions& operator=(CMsgSetItemPositions&& from) noexcept { + inline CMsgGCReportAbuseResponse& operator=(CMsgGCReportAbuseResponse&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -9534,20 +9654,20 @@ class CMsgSetItemPositions : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgSetItemPositions& default_instance() { + static const CMsgGCReportAbuseResponse& default_instance() { return *internal_default_instance(); } - static inline const CMsgSetItemPositions* internal_default_instance() { - return reinterpret_cast( - &_CMsgSetItemPositions_default_instance_); + static inline const CMsgGCReportAbuseResponse* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCReportAbuseResponse_default_instance_); } static constexpr int kIndexInFileMessages = 44; - friend void swap(CMsgSetItemPositions& a, CMsgSetItemPositions& b) { + friend void swap(CMsgGCReportAbuseResponse& a, CMsgGCReportAbuseResponse& b) { a.Swap(&b); } - inline void Swap(CMsgSetItemPositions* other) { + inline void Swap(CMsgGCReportAbuseResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -9560,7 +9680,7 @@ class CMsgSetItemPositions : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgSetItemPositions* other) { + void UnsafeArenaSwap(CMsgGCReportAbuseResponse* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -9568,14 +9688,14 @@ class CMsgSetItemPositions : // implements Message ---------------------------------------------- - CMsgSetItemPositions* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCReportAbuseResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgSetItemPositions& from); + void CopyFrom(const CMsgGCReportAbuseResponse& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgSetItemPositions& from) { - CMsgSetItemPositions::MergeImpl(*this, from); + void MergeFrom( const CMsgGCReportAbuseResponse& from) { + CMsgGCReportAbuseResponse::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -9593,15 +9713,15 @@ class CMsgSetItemPositions : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgSetItemPositions* other); + void InternalSwap(CMsgGCReportAbuseResponse* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgSetItemPositions"; + return "CMsgGCReportAbuseResponse"; } protected: - explicit CMsgSetItemPositions(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCReportAbuseResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -9612,32 +9732,58 @@ class CMsgSetItemPositions : // nested types ---------------------------------------------------- - typedef CMsgSetItemPositions_ItemPosition ItemPosition; - // accessors ------------------------------------------------------- enum : int { - kItemPositionsFieldNumber = 1, + kErrorMessageFieldNumber = 3, + kTargetSteamIdFieldNumber = 1, + kResultFieldNumber = 2, }; - // repeated .CMsgSetItemPositions.ItemPosition item_positions = 1; - int item_positions_size() const; + // optional string error_message = 3; + bool has_error_message() const; private: - int _internal_item_positions_size() const; + bool _internal_has_error_message() const; public: - void clear_item_positions(); - ::CMsgSetItemPositions_ItemPosition* mutable_item_positions(int index); - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSetItemPositions_ItemPosition >* - mutable_item_positions(); + void clear_error_message(); + const std::string& error_message() const; + template + void set_error_message(ArgT0&& arg0, ArgT... args); + std::string* mutable_error_message(); + PROTOBUF_NODISCARD std::string* release_error_message(); + void set_allocated_error_message(std::string* error_message); private: - const ::CMsgSetItemPositions_ItemPosition& _internal_item_positions(int index) const; - ::CMsgSetItemPositions_ItemPosition* _internal_add_item_positions(); + const std::string& _internal_error_message() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_error_message(const std::string& value); + std::string* _internal_mutable_error_message(); public: - const ::CMsgSetItemPositions_ItemPosition& item_positions(int index) const; - ::CMsgSetItemPositions_ItemPosition* add_item_positions(); - const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSetItemPositions_ItemPosition >& - item_positions() const; - // @@protoc_insertion_point(class_scope:CMsgSetItemPositions) + // optional fixed64 target_steam_id = 1; + bool has_target_steam_id() const; + private: + bool _internal_has_target_steam_id() const; + public: + void clear_target_steam_id(); + uint64_t target_steam_id() const; + void set_target_steam_id(uint64_t value); + private: + uint64_t _internal_target_steam_id() const; + void _internal_set_target_steam_id(uint64_t value); + public: + + // optional uint32 result = 2; + bool has_result() const; + private: + bool _internal_has_result() const; + public: + void clear_result(); + uint32_t result() const; + void set_result(uint32_t value); + private: + uint32_t _internal_result() const; + void _internal_set_result(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgGCReportAbuseResponse) private: class _Internal; @@ -9645,32 +9791,35 @@ class CMsgSetItemPositions : typedef void InternalArenaConstructable_; typedef void DestructorSkippable_; struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSetItemPositions_ItemPosition > item_positions_; + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr error_message_; + uint64_t target_steam_id_; + uint32_t result_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCReportAbuse : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCReportAbuse) */ { +class CMsgGCNameItemNotification : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCNameItemNotification) */ { public: - inline CMsgGCReportAbuse() : CMsgGCReportAbuse(nullptr) {} - ~CMsgGCReportAbuse() override; - explicit PROTOBUF_CONSTEXPR CMsgGCReportAbuse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCNameItemNotification() : CMsgGCNameItemNotification(nullptr) {} + ~CMsgGCNameItemNotification() override; + explicit PROTOBUF_CONSTEXPR CMsgGCNameItemNotification(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCReportAbuse(const CMsgGCReportAbuse& from); - CMsgGCReportAbuse(CMsgGCReportAbuse&& from) noexcept - : CMsgGCReportAbuse() { + CMsgGCNameItemNotification(const CMsgGCNameItemNotification& from); + CMsgGCNameItemNotification(CMsgGCNameItemNotification&& from) noexcept + : CMsgGCNameItemNotification() { *this = ::std::move(from); } - inline CMsgGCReportAbuse& operator=(const CMsgGCReportAbuse& from) { + inline CMsgGCNameItemNotification& operator=(const CMsgGCNameItemNotification& from) { CopyFrom(from); return *this; } - inline CMsgGCReportAbuse& operator=(CMsgGCReportAbuse&& from) noexcept { + inline CMsgGCNameItemNotification& operator=(CMsgGCNameItemNotification&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -9700,20 +9849,20 @@ class CMsgGCReportAbuse : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCReportAbuse& default_instance() { + static const CMsgGCNameItemNotification& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCReportAbuse* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCReportAbuse_default_instance_); + static inline const CMsgGCNameItemNotification* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCNameItemNotification_default_instance_); } static constexpr int kIndexInFileMessages = 45; - friend void swap(CMsgGCReportAbuse& a, CMsgGCReportAbuse& b) { + friend void swap(CMsgGCNameItemNotification& a, CMsgGCNameItemNotification& b) { a.Swap(&b); } - inline void Swap(CMsgGCReportAbuse* other) { + inline void Swap(CMsgGCNameItemNotification* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -9726,7 +9875,7 @@ class CMsgGCReportAbuse : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCReportAbuse* other) { + void UnsafeArenaSwap(CMsgGCNameItemNotification* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -9734,14 +9883,14 @@ class CMsgGCReportAbuse : // implements Message ---------------------------------------------- - CMsgGCReportAbuse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCNameItemNotification* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCReportAbuse& from); + void CopyFrom(const CMsgGCNameItemNotification& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCReportAbuse& from) { - CMsgGCReportAbuse::MergeImpl(*this, from); + void MergeFrom( const CMsgGCNameItemNotification& from) { + CMsgGCNameItemNotification::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -9759,15 +9908,15 @@ class CMsgGCReportAbuse : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCReportAbuse* other); + void InternalSwap(CMsgGCNameItemNotification* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCReportAbuse"; + return "CMsgGCNameItemNotification"; } protected: - explicit CMsgGCReportAbuse(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCNameItemNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -9781,111 +9930,55 @@ class CMsgGCReportAbuse : // accessors ------------------------------------------------------- enum : int { - kDescriptionFieldNumber = 4, - kTargetSteamIdFieldNumber = 1, - kAbuseTypeFieldNumber = 2, - kContentTypeFieldNumber = 3, - kGidFieldNumber = 5, - kTargetGameServerIpFieldNumber = 6, - kTargetGameServerPortFieldNumber = 7, + kItemNameCustomFieldNumber = 3, + kPlayerSteamidFieldNumber = 1, + kItemDefIndexFieldNumber = 2, }; - // optional string description = 4; - bool has_description() const; + // optional string item_name_custom = 3; + bool has_item_name_custom() const; private: - bool _internal_has_description() const; + bool _internal_has_item_name_custom() const; public: - void clear_description(); - const std::string& description() const; + void clear_item_name_custom(); + const std::string& item_name_custom() const; template - void set_description(ArgT0&& arg0, ArgT... args); - std::string* mutable_description(); - PROTOBUF_NODISCARD std::string* release_description(); - void set_allocated_description(std::string* description); - private: - const std::string& _internal_description() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_description(const std::string& value); - std::string* _internal_mutable_description(); - public: - - // optional fixed64 target_steam_id = 1; - bool has_target_steam_id() const; - private: - bool _internal_has_target_steam_id() const; - public: - void clear_target_steam_id(); - uint64_t target_steam_id() const; - void set_target_steam_id(uint64_t value); - private: - uint64_t _internal_target_steam_id() const; - void _internal_set_target_steam_id(uint64_t value); - public: - - // optional uint32 abuse_type = 2; - bool has_abuse_type() const; - private: - bool _internal_has_abuse_type() const; - public: - void clear_abuse_type(); - uint32_t abuse_type() const; - void set_abuse_type(uint32_t value); - private: - uint32_t _internal_abuse_type() const; - void _internal_set_abuse_type(uint32_t value); - public: - - // optional uint32 content_type = 3; - bool has_content_type() const; - private: - bool _internal_has_content_type() const; - public: - void clear_content_type(); - uint32_t content_type() const; - void set_content_type(uint32_t value); - private: - uint32_t _internal_content_type() const; - void _internal_set_content_type(uint32_t value); - public: - - // optional uint64 gid = 5; - bool has_gid() const; - private: - bool _internal_has_gid() const; - public: - void clear_gid(); - uint64_t gid() const; - void set_gid(uint64_t value); + void set_item_name_custom(ArgT0&& arg0, ArgT... args); + std::string* mutable_item_name_custom(); + PROTOBUF_NODISCARD std::string* release_item_name_custom(); + void set_allocated_item_name_custom(std::string* item_name_custom); private: - uint64_t _internal_gid() const; - void _internal_set_gid(uint64_t value); + const std::string& _internal_item_name_custom() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_item_name_custom(const std::string& value); + std::string* _internal_mutable_item_name_custom(); public: - // optional fixed32 target_game_server_ip = 6; - bool has_target_game_server_ip() const; + // optional fixed64 player_steamid = 1; + bool has_player_steamid() const; private: - bool _internal_has_target_game_server_ip() const; + bool _internal_has_player_steamid() const; public: - void clear_target_game_server_ip(); - uint32_t target_game_server_ip() const; - void set_target_game_server_ip(uint32_t value); + void clear_player_steamid(); + uint64_t player_steamid() const; + void set_player_steamid(uint64_t value); private: - uint32_t _internal_target_game_server_ip() const; - void _internal_set_target_game_server_ip(uint32_t value); + uint64_t _internal_player_steamid() const; + void _internal_set_player_steamid(uint64_t value); public: - // optional uint32 target_game_server_port = 7; - bool has_target_game_server_port() const; + // optional uint32 item_def_index = 2; + bool has_item_def_index() const; private: - bool _internal_has_target_game_server_port() const; + bool _internal_has_item_def_index() const; public: - void clear_target_game_server_port(); - uint32_t target_game_server_port() const; - void set_target_game_server_port(uint32_t value); + void clear_item_def_index(); + uint32_t item_def_index() const; + void set_item_def_index(uint32_t value); private: - uint32_t _internal_target_game_server_port() const; - void _internal_set_target_game_server_port(uint32_t value); + uint32_t _internal_item_def_index() const; + void _internal_set_item_def_index(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCReportAbuse) + // @@protoc_insertion_point(class_scope:CMsgGCNameItemNotification) private: class _Internal; @@ -9895,37 +9988,33 @@ class CMsgGCReportAbuse : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr description_; - uint64_t target_steam_id_; - uint32_t abuse_type_; - uint32_t content_type_; - uint64_t gid_; - uint32_t target_game_server_ip_; - uint32_t target_game_server_port_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr item_name_custom_; + uint64_t player_steamid_; + uint32_t item_def_index_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCReportAbuseResponse : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCReportAbuseResponse) */ { +class CMsgGCClientDisplayNotification : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCClientDisplayNotification) */ { public: - inline CMsgGCReportAbuseResponse() : CMsgGCReportAbuseResponse(nullptr) {} - ~CMsgGCReportAbuseResponse() override; - explicit PROTOBUF_CONSTEXPR CMsgGCReportAbuseResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCClientDisplayNotification() : CMsgGCClientDisplayNotification(nullptr) {} + ~CMsgGCClientDisplayNotification() override; + explicit PROTOBUF_CONSTEXPR CMsgGCClientDisplayNotification(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCReportAbuseResponse(const CMsgGCReportAbuseResponse& from); - CMsgGCReportAbuseResponse(CMsgGCReportAbuseResponse&& from) noexcept - : CMsgGCReportAbuseResponse() { + CMsgGCClientDisplayNotification(const CMsgGCClientDisplayNotification& from); + CMsgGCClientDisplayNotification(CMsgGCClientDisplayNotification&& from) noexcept + : CMsgGCClientDisplayNotification() { *this = ::std::move(from); } - inline CMsgGCReportAbuseResponse& operator=(const CMsgGCReportAbuseResponse& from) { + inline CMsgGCClientDisplayNotification& operator=(const CMsgGCClientDisplayNotification& from) { CopyFrom(from); return *this; } - inline CMsgGCReportAbuseResponse& operator=(CMsgGCReportAbuseResponse&& from) noexcept { + inline CMsgGCClientDisplayNotification& operator=(CMsgGCClientDisplayNotification&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -9955,20 +10044,20 @@ class CMsgGCReportAbuseResponse : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCReportAbuseResponse& default_instance() { + static const CMsgGCClientDisplayNotification& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCReportAbuseResponse* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCReportAbuseResponse_default_instance_); + static inline const CMsgGCClientDisplayNotification* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCClientDisplayNotification_default_instance_); } static constexpr int kIndexInFileMessages = 46; - friend void swap(CMsgGCReportAbuseResponse& a, CMsgGCReportAbuseResponse& b) { + friend void swap(CMsgGCClientDisplayNotification& a, CMsgGCClientDisplayNotification& b) { a.Swap(&b); } - inline void Swap(CMsgGCReportAbuseResponse* other) { + inline void Swap(CMsgGCClientDisplayNotification* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -9981,7 +10070,7 @@ class CMsgGCReportAbuseResponse : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCReportAbuseResponse* other) { + void UnsafeArenaSwap(CMsgGCClientDisplayNotification* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -9989,14 +10078,14 @@ class CMsgGCReportAbuseResponse : // implements Message ---------------------------------------------- - CMsgGCReportAbuseResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCClientDisplayNotification* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCReportAbuseResponse& from); + void CopyFrom(const CMsgGCClientDisplayNotification& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCReportAbuseResponse& from) { - CMsgGCReportAbuseResponse::MergeImpl(*this, from); + void MergeFrom( const CMsgGCClientDisplayNotification& from) { + CMsgGCClientDisplayNotification::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -10014,15 +10103,15 @@ class CMsgGCReportAbuseResponse : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCReportAbuseResponse* other); + void InternalSwap(CMsgGCClientDisplayNotification* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCReportAbuseResponse"; + return "CMsgGCClientDisplayNotification"; } protected: - explicit CMsgGCReportAbuseResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCClientDisplayNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -10036,91 +10125,133 @@ class CMsgGCReportAbuseResponse : // accessors ------------------------------------------------------- enum : int { - kErrorMessageFieldNumber = 3, - kTargetSteamIdFieldNumber = 1, - kResultFieldNumber = 2, + kBodySubstringKeysFieldNumber = 3, + kBodySubstringValuesFieldNumber = 4, + kNotificationTitleLocalizationKeyFieldNumber = 1, + kNotificationBodyLocalizationKeyFieldNumber = 2, }; - // optional string error_message = 3; - bool has_error_message() const; + // repeated string body_substring_keys = 3; + int body_substring_keys_size() const; private: - bool _internal_has_error_message() const; + int _internal_body_substring_keys_size() const; public: - void clear_error_message(); - const std::string& error_message() const; - template - void set_error_message(ArgT0&& arg0, ArgT... args); - std::string* mutable_error_message(); - PROTOBUF_NODISCARD std::string* release_error_message(); - void set_allocated_error_message(std::string* error_message); + void clear_body_substring_keys(); + const std::string& body_substring_keys(int index) const; + std::string* mutable_body_substring_keys(int index); + void set_body_substring_keys(int index, const std::string& value); + void set_body_substring_keys(int index, std::string&& value); + void set_body_substring_keys(int index, const char* value); + void set_body_substring_keys(int index, const char* value, size_t size); + std::string* add_body_substring_keys(); + void add_body_substring_keys(const std::string& value); + void add_body_substring_keys(std::string&& value); + void add_body_substring_keys(const char* value); + void add_body_substring_keys(const char* value, size_t size); + const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField& body_substring_keys() const; + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField* mutable_body_substring_keys(); private: - const std::string& _internal_error_message() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_error_message(const std::string& value); - std::string* _internal_mutable_error_message(); + const std::string& _internal_body_substring_keys(int index) const; + std::string* _internal_add_body_substring_keys(); public: - // optional fixed64 target_steam_id = 1; - bool has_target_steam_id() const; + // repeated string body_substring_values = 4; + int body_substring_values_size() const; private: - bool _internal_has_target_steam_id() const; + int _internal_body_substring_values_size() const; public: - void clear_target_steam_id(); - uint64_t target_steam_id() const; - void set_target_steam_id(uint64_t value); + void clear_body_substring_values(); + const std::string& body_substring_values(int index) const; + std::string* mutable_body_substring_values(int index); + void set_body_substring_values(int index, const std::string& value); + void set_body_substring_values(int index, std::string&& value); + void set_body_substring_values(int index, const char* value); + void set_body_substring_values(int index, const char* value, size_t size); + std::string* add_body_substring_values(); + void add_body_substring_values(const std::string& value); + void add_body_substring_values(std::string&& value); + void add_body_substring_values(const char* value); + void add_body_substring_values(const char* value, size_t size); + const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField& body_substring_values() const; + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField* mutable_body_substring_values(); private: - uint64_t _internal_target_steam_id() const; - void _internal_set_target_steam_id(uint64_t value); + const std::string& _internal_body_substring_values(int index) const; + std::string* _internal_add_body_substring_values(); public: - // optional uint32 result = 2; - bool has_result() const; + // optional string notification_title_localization_key = 1; + bool has_notification_title_localization_key() const; private: - bool _internal_has_result() const; + bool _internal_has_notification_title_localization_key() const; public: - void clear_result(); - uint32_t result() const; - void set_result(uint32_t value); + void clear_notification_title_localization_key(); + const std::string& notification_title_localization_key() const; + template + void set_notification_title_localization_key(ArgT0&& arg0, ArgT... args); + std::string* mutable_notification_title_localization_key(); + PROTOBUF_NODISCARD std::string* release_notification_title_localization_key(); + void set_allocated_notification_title_localization_key(std::string* notification_title_localization_key); private: - uint32_t _internal_result() const; - void _internal_set_result(uint32_t value); + const std::string& _internal_notification_title_localization_key() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_notification_title_localization_key(const std::string& value); + std::string* _internal_mutable_notification_title_localization_key(); public: - // @@protoc_insertion_point(class_scope:CMsgGCReportAbuseResponse) - private: - class _Internal; - - template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; - typedef void InternalArenaConstructable_; - typedef void DestructorSkippable_; - struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; - mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr error_message_; - uint64_t target_steam_id_; - uint32_t result_; + // optional string notification_body_localization_key = 2; + bool has_notification_body_localization_key() const; + private: + bool _internal_has_notification_body_localization_key() const; + public: + void clear_notification_body_localization_key(); + const std::string& notification_body_localization_key() const; + template + void set_notification_body_localization_key(ArgT0&& arg0, ArgT... args); + std::string* mutable_notification_body_localization_key(); + PROTOBUF_NODISCARD std::string* release_notification_body_localization_key(); + void set_allocated_notification_body_localization_key(std::string* notification_body_localization_key); + private: + const std::string& _internal_notification_body_localization_key() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_notification_body_localization_key(const std::string& value); + std::string* _internal_mutable_notification_body_localization_key(); + public: + + // @@protoc_insertion_point(class_scope:CMsgGCClientDisplayNotification) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; + struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField body_substring_keys_; + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField body_substring_values_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr notification_title_localization_key_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr notification_body_localization_key_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCNameItemNotification : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCNameItemNotification) */ { +class CMsgGCShowItemsPickedUp : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCShowItemsPickedUp) */ { public: - inline CMsgGCNameItemNotification() : CMsgGCNameItemNotification(nullptr) {} - ~CMsgGCNameItemNotification() override; - explicit PROTOBUF_CONSTEXPR CMsgGCNameItemNotification(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCShowItemsPickedUp() : CMsgGCShowItemsPickedUp(nullptr) {} + ~CMsgGCShowItemsPickedUp() override; + explicit PROTOBUF_CONSTEXPR CMsgGCShowItemsPickedUp(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCNameItemNotification(const CMsgGCNameItemNotification& from); - CMsgGCNameItemNotification(CMsgGCNameItemNotification&& from) noexcept - : CMsgGCNameItemNotification() { + CMsgGCShowItemsPickedUp(const CMsgGCShowItemsPickedUp& from); + CMsgGCShowItemsPickedUp(CMsgGCShowItemsPickedUp&& from) noexcept + : CMsgGCShowItemsPickedUp() { *this = ::std::move(from); } - inline CMsgGCNameItemNotification& operator=(const CMsgGCNameItemNotification& from) { + inline CMsgGCShowItemsPickedUp& operator=(const CMsgGCShowItemsPickedUp& from) { CopyFrom(from); return *this; } - inline CMsgGCNameItemNotification& operator=(CMsgGCNameItemNotification&& from) noexcept { + inline CMsgGCShowItemsPickedUp& operator=(CMsgGCShowItemsPickedUp&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -10150,20 +10281,20 @@ class CMsgGCNameItemNotification : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCNameItemNotification& default_instance() { + static const CMsgGCShowItemsPickedUp& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCNameItemNotification* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCNameItemNotification_default_instance_); + static inline const CMsgGCShowItemsPickedUp* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCShowItemsPickedUp_default_instance_); } static constexpr int kIndexInFileMessages = 47; - friend void swap(CMsgGCNameItemNotification& a, CMsgGCNameItemNotification& b) { + friend void swap(CMsgGCShowItemsPickedUp& a, CMsgGCShowItemsPickedUp& b) { a.Swap(&b); } - inline void Swap(CMsgGCNameItemNotification* other) { + inline void Swap(CMsgGCShowItemsPickedUp* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -10176,7 +10307,7 @@ class CMsgGCNameItemNotification : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCNameItemNotification* other) { + void UnsafeArenaSwap(CMsgGCShowItemsPickedUp* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -10184,14 +10315,14 @@ class CMsgGCNameItemNotification : // implements Message ---------------------------------------------- - CMsgGCNameItemNotification* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCShowItemsPickedUp* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCNameItemNotification& from); + void CopyFrom(const CMsgGCShowItemsPickedUp& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCNameItemNotification& from) { - CMsgGCNameItemNotification::MergeImpl(*this, from); + void MergeFrom( const CMsgGCShowItemsPickedUp& from) { + CMsgGCShowItemsPickedUp::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -10209,15 +10340,15 @@ class CMsgGCNameItemNotification : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCNameItemNotification* other); + void InternalSwap(CMsgGCShowItemsPickedUp* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCNameItemNotification"; + return "CMsgGCShowItemsPickedUp"; } protected: - explicit CMsgGCNameItemNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCShowItemsPickedUp(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -10231,28 +10362,8 @@ class CMsgGCNameItemNotification : // accessors ------------------------------------------------------- enum : int { - kItemNameCustomFieldNumber = 3, kPlayerSteamidFieldNumber = 1, - kItemDefIndexFieldNumber = 2, }; - // optional string item_name_custom = 3; - bool has_item_name_custom() const; - private: - bool _internal_has_item_name_custom() const; - public: - void clear_item_name_custom(); - const std::string& item_name_custom() const; - template - void set_item_name_custom(ArgT0&& arg0, ArgT... args); - std::string* mutable_item_name_custom(); - PROTOBUF_NODISCARD std::string* release_item_name_custom(); - void set_allocated_item_name_custom(std::string* item_name_custom); - private: - const std::string& _internal_item_name_custom() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_item_name_custom(const std::string& value); - std::string* _internal_mutable_item_name_custom(); - public: - // optional fixed64 player_steamid = 1; bool has_player_steamid() const; private: @@ -10266,20 +10377,7 @@ class CMsgGCNameItemNotification : void _internal_set_player_steamid(uint64_t value); public: - // optional uint32 item_def_index = 2; - bool has_item_def_index() const; - private: - bool _internal_has_item_def_index() const; - public: - void clear_item_def_index(); - uint32_t item_def_index() const; - void set_item_def_index(uint32_t value); - private: - uint32_t _internal_item_def_index() const; - void _internal_set_item_def_index(uint32_t value); - public: - - // @@protoc_insertion_point(class_scope:CMsgGCNameItemNotification) + // @@protoc_insertion_point(class_scope:CMsgGCShowItemsPickedUp) private: class _Internal; @@ -10289,33 +10387,31 @@ class CMsgGCNameItemNotification : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr item_name_custom_; uint64_t player_steamid_; - uint32_t item_def_index_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCClientDisplayNotification : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCClientDisplayNotification) */ { +class CMsgGCIncrementKillCountResponse : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCIncrementKillCountResponse) */ { public: - inline CMsgGCClientDisplayNotification() : CMsgGCClientDisplayNotification(nullptr) {} - ~CMsgGCClientDisplayNotification() override; - explicit PROTOBUF_CONSTEXPR CMsgGCClientDisplayNotification(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCIncrementKillCountResponse() : CMsgGCIncrementKillCountResponse(nullptr) {} + ~CMsgGCIncrementKillCountResponse() override; + explicit PROTOBUF_CONSTEXPR CMsgGCIncrementKillCountResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCClientDisplayNotification(const CMsgGCClientDisplayNotification& from); - CMsgGCClientDisplayNotification(CMsgGCClientDisplayNotification&& from) noexcept - : CMsgGCClientDisplayNotification() { + CMsgGCIncrementKillCountResponse(const CMsgGCIncrementKillCountResponse& from); + CMsgGCIncrementKillCountResponse(CMsgGCIncrementKillCountResponse&& from) noexcept + : CMsgGCIncrementKillCountResponse() { *this = ::std::move(from); } - inline CMsgGCClientDisplayNotification& operator=(const CMsgGCClientDisplayNotification& from) { + inline CMsgGCIncrementKillCountResponse& operator=(const CMsgGCIncrementKillCountResponse& from) { CopyFrom(from); return *this; } - inline CMsgGCClientDisplayNotification& operator=(CMsgGCClientDisplayNotification&& from) noexcept { + inline CMsgGCIncrementKillCountResponse& operator=(CMsgGCIncrementKillCountResponse&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -10345,20 +10441,20 @@ class CMsgGCClientDisplayNotification : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCClientDisplayNotification& default_instance() { + static const CMsgGCIncrementKillCountResponse& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCClientDisplayNotification* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCClientDisplayNotification_default_instance_); + static inline const CMsgGCIncrementKillCountResponse* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCIncrementKillCountResponse_default_instance_); } static constexpr int kIndexInFileMessages = 48; - friend void swap(CMsgGCClientDisplayNotification& a, CMsgGCClientDisplayNotification& b) { + friend void swap(CMsgGCIncrementKillCountResponse& a, CMsgGCIncrementKillCountResponse& b) { a.Swap(&b); } - inline void Swap(CMsgGCClientDisplayNotification* other) { + inline void Swap(CMsgGCIncrementKillCountResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -10371,7 +10467,7 @@ class CMsgGCClientDisplayNotification : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCClientDisplayNotification* other) { + void UnsafeArenaSwap(CMsgGCIncrementKillCountResponse* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -10379,14 +10475,14 @@ class CMsgGCClientDisplayNotification : // implements Message ---------------------------------------------- - CMsgGCClientDisplayNotification* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCIncrementKillCountResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCClientDisplayNotification& from); + void CopyFrom(const CMsgGCIncrementKillCountResponse& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCClientDisplayNotification& from) { - CMsgGCClientDisplayNotification::MergeImpl(*this, from); + void MergeFrom( const CMsgGCIncrementKillCountResponse& from) { + CMsgGCIncrementKillCountResponse::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -10404,15 +10500,15 @@ class CMsgGCClientDisplayNotification : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCClientDisplayNotification* other); + void InternalSwap(CMsgGCIncrementKillCountResponse* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCClientDisplayNotification"; + return "CMsgGCIncrementKillCountResponse"; } protected: - explicit CMsgGCClientDisplayNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCIncrementKillCountResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -10426,96 +10522,64 @@ class CMsgGCClientDisplayNotification : // accessors ------------------------------------------------------- enum : int { - kBodySubstringKeysFieldNumber = 3, - kBodySubstringValuesFieldNumber = 4, - kNotificationTitleLocalizationKeyFieldNumber = 1, - kNotificationBodyLocalizationKeyFieldNumber = 2, + kKillerAccountIdFieldNumber = 1, + kNumKillsFieldNumber = 2, + kItemDefFieldNumber = 3, + kLevelTypeFieldNumber = 4, }; - // repeated string body_substring_keys = 3; - int body_substring_keys_size() const; + // optional uint32 killer_account_id = 1 [(.key_field) = true]; + bool has_killer_account_id() const; private: - int _internal_body_substring_keys_size() const; + bool _internal_has_killer_account_id() const; public: - void clear_body_substring_keys(); - const std::string& body_substring_keys(int index) const; - std::string* mutable_body_substring_keys(int index); - void set_body_substring_keys(int index, const std::string& value); - void set_body_substring_keys(int index, std::string&& value); - void set_body_substring_keys(int index, const char* value); - void set_body_substring_keys(int index, const char* value, size_t size); - std::string* add_body_substring_keys(); - void add_body_substring_keys(const std::string& value); - void add_body_substring_keys(std::string&& value); - void add_body_substring_keys(const char* value); - void add_body_substring_keys(const char* value, size_t size); - const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField& body_substring_keys() const; - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField* mutable_body_substring_keys(); + void clear_killer_account_id(); + uint32_t killer_account_id() const; + void set_killer_account_id(uint32_t value); private: - const std::string& _internal_body_substring_keys(int index) const; - std::string* _internal_add_body_substring_keys(); + uint32_t _internal_killer_account_id() const; + void _internal_set_killer_account_id(uint32_t value); public: - // repeated string body_substring_values = 4; - int body_substring_values_size() const; + // optional uint32 num_kills = 2; + bool has_num_kills() const; private: - int _internal_body_substring_values_size() const; + bool _internal_has_num_kills() const; public: - void clear_body_substring_values(); - const std::string& body_substring_values(int index) const; - std::string* mutable_body_substring_values(int index); - void set_body_substring_values(int index, const std::string& value); - void set_body_substring_values(int index, std::string&& value); - void set_body_substring_values(int index, const char* value); - void set_body_substring_values(int index, const char* value, size_t size); - std::string* add_body_substring_values(); - void add_body_substring_values(const std::string& value); - void add_body_substring_values(std::string&& value); - void add_body_substring_values(const char* value); - void add_body_substring_values(const char* value, size_t size); - const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField& body_substring_values() const; - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField* mutable_body_substring_values(); + void clear_num_kills(); + uint32_t num_kills() const; + void set_num_kills(uint32_t value); private: - const std::string& _internal_body_substring_values(int index) const; - std::string* _internal_add_body_substring_values(); + uint32_t _internal_num_kills() const; + void _internal_set_num_kills(uint32_t value); public: - // optional string notification_title_localization_key = 1; - bool has_notification_title_localization_key() const; + // optional uint32 item_def = 3; + bool has_item_def() const; private: - bool _internal_has_notification_title_localization_key() const; + bool _internal_has_item_def() const; public: - void clear_notification_title_localization_key(); - const std::string& notification_title_localization_key() const; - template - void set_notification_title_localization_key(ArgT0&& arg0, ArgT... args); - std::string* mutable_notification_title_localization_key(); - PROTOBUF_NODISCARD std::string* release_notification_title_localization_key(); - void set_allocated_notification_title_localization_key(std::string* notification_title_localization_key); + void clear_item_def(); + uint32_t item_def() const; + void set_item_def(uint32_t value); private: - const std::string& _internal_notification_title_localization_key() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_notification_title_localization_key(const std::string& value); - std::string* _internal_mutable_notification_title_localization_key(); + uint32_t _internal_item_def() const; + void _internal_set_item_def(uint32_t value); public: - // optional string notification_body_localization_key = 2; - bool has_notification_body_localization_key() const; + // optional uint32 level_type = 4; + bool has_level_type() const; private: - bool _internal_has_notification_body_localization_key() const; + bool _internal_has_level_type() const; public: - void clear_notification_body_localization_key(); - const std::string& notification_body_localization_key() const; - template - void set_notification_body_localization_key(ArgT0&& arg0, ArgT... args); - std::string* mutable_notification_body_localization_key(); - PROTOBUF_NODISCARD std::string* release_notification_body_localization_key(); - void set_allocated_notification_body_localization_key(std::string* notification_body_localization_key); + void clear_level_type(); + uint32_t level_type() const; + void set_level_type(uint32_t value); private: - const std::string& _internal_notification_body_localization_key() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_notification_body_localization_key(const std::string& value); - std::string* _internal_mutable_notification_body_localization_key(); + uint32_t _internal_level_type() const; + void _internal_set_level_type(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCClientDisplayNotification) + // @@protoc_insertion_point(class_scope:CMsgGCIncrementKillCountResponse) private: class _Internal; @@ -10525,34 +10589,34 @@ class CMsgGCClientDisplayNotification : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField body_substring_keys_; - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField body_substring_values_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr notification_title_localization_key_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr notification_body_localization_key_; + uint32_t killer_account_id_; + uint32_t num_kills_; + uint32_t item_def_; + uint32_t level_type_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCShowItemsPickedUp : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCShowItemsPickedUp) */ { +class CSOEconItemDropRateBonus : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconItemDropRateBonus) */ { public: - inline CMsgGCShowItemsPickedUp() : CMsgGCShowItemsPickedUp(nullptr) {} - ~CMsgGCShowItemsPickedUp() override; - explicit PROTOBUF_CONSTEXPR CMsgGCShowItemsPickedUp(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CSOEconItemDropRateBonus() : CSOEconItemDropRateBonus(nullptr) {} + ~CSOEconItemDropRateBonus() override; + explicit PROTOBUF_CONSTEXPR CSOEconItemDropRateBonus(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCShowItemsPickedUp(const CMsgGCShowItemsPickedUp& from); - CMsgGCShowItemsPickedUp(CMsgGCShowItemsPickedUp&& from) noexcept - : CMsgGCShowItemsPickedUp() { + CSOEconItemDropRateBonus(const CSOEconItemDropRateBonus& from); + CSOEconItemDropRateBonus(CSOEconItemDropRateBonus&& from) noexcept + : CSOEconItemDropRateBonus() { *this = ::std::move(from); } - inline CMsgGCShowItemsPickedUp& operator=(const CMsgGCShowItemsPickedUp& from) { + inline CSOEconItemDropRateBonus& operator=(const CSOEconItemDropRateBonus& from) { CopyFrom(from); return *this; } - inline CMsgGCShowItemsPickedUp& operator=(CMsgGCShowItemsPickedUp&& from) noexcept { + inline CSOEconItemDropRateBonus& operator=(CSOEconItemDropRateBonus&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -10582,20 +10646,20 @@ class CMsgGCShowItemsPickedUp : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCShowItemsPickedUp& default_instance() { + static const CSOEconItemDropRateBonus& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCShowItemsPickedUp* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCShowItemsPickedUp_default_instance_); + static inline const CSOEconItemDropRateBonus* internal_default_instance() { + return reinterpret_cast( + &_CSOEconItemDropRateBonus_default_instance_); } static constexpr int kIndexInFileMessages = 49; - friend void swap(CMsgGCShowItemsPickedUp& a, CMsgGCShowItemsPickedUp& b) { + friend void swap(CSOEconItemDropRateBonus& a, CSOEconItemDropRateBonus& b) { a.Swap(&b); } - inline void Swap(CMsgGCShowItemsPickedUp* other) { + inline void Swap(CSOEconItemDropRateBonus* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -10608,7 +10672,7 @@ class CMsgGCShowItemsPickedUp : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCShowItemsPickedUp* other) { + void UnsafeArenaSwap(CSOEconItemDropRateBonus* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -10616,14 +10680,14 @@ class CMsgGCShowItemsPickedUp : // implements Message ---------------------------------------------- - CMsgGCShowItemsPickedUp* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CSOEconItemDropRateBonus* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCShowItemsPickedUp& from); + void CopyFrom(const CSOEconItemDropRateBonus& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCShowItemsPickedUp& from) { - CMsgGCShowItemsPickedUp::MergeImpl(*this, from); + void MergeFrom( const CSOEconItemDropRateBonus& from) { + CSOEconItemDropRateBonus::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -10641,15 +10705,15 @@ class CMsgGCShowItemsPickedUp : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCShowItemsPickedUp* other); + void InternalSwap(CSOEconItemDropRateBonus* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCShowItemsPickedUp"; + return "CSOEconItemDropRateBonus"; } protected: - explicit CMsgGCShowItemsPickedUp(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CSOEconItemDropRateBonus(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -10663,22 +10727,92 @@ class CMsgGCShowItemsPickedUp : // accessors ------------------------------------------------------- enum : int { - kPlayerSteamidFieldNumber = 1, + kAccountIdFieldNumber = 1, + kExpirationDateFieldNumber = 2, + kBonusFieldNumber = 3, + kBonusCountFieldNumber = 4, + kItemIdFieldNumber = 5, + kDefIndexFieldNumber = 6, }; - // optional fixed64 player_steamid = 1; - bool has_player_steamid() const; + // optional uint32 account_id = 1; + bool has_account_id() const; private: - bool _internal_has_player_steamid() const; + bool _internal_has_account_id() const; public: - void clear_player_steamid(); - uint64_t player_steamid() const; - void set_player_steamid(uint64_t value); + void clear_account_id(); + uint32_t account_id() const; + void set_account_id(uint32_t value); private: - uint64_t _internal_player_steamid() const; - void _internal_set_player_steamid(uint64_t value); + uint32_t _internal_account_id() const; + void _internal_set_account_id(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCShowItemsPickedUp) + // optional fixed32 expiration_date = 2; + bool has_expiration_date() const; + private: + bool _internal_has_expiration_date() const; + public: + void clear_expiration_date(); + uint32_t expiration_date() const; + void set_expiration_date(uint32_t value); + private: + uint32_t _internal_expiration_date() const; + void _internal_set_expiration_date(uint32_t value); + public: + + // optional float bonus = 3; + bool has_bonus() const; + private: + bool _internal_has_bonus() const; + public: + void clear_bonus(); + float bonus() const; + void set_bonus(float value); + private: + float _internal_bonus() const; + void _internal_set_bonus(float value); + public: + + // optional uint32 bonus_count = 4; + bool has_bonus_count() const; + private: + bool _internal_has_bonus_count() const; + public: + void clear_bonus_count(); + uint32_t bonus_count() const; + void set_bonus_count(uint32_t value); + private: + uint32_t _internal_bonus_count() const; + void _internal_set_bonus_count(uint32_t value); + public: + + // optional uint64 item_id = 5; + bool has_item_id() const; + private: + bool _internal_has_item_id() const; + public: + void clear_item_id(); + uint64_t item_id() const; + void set_item_id(uint64_t value); + private: + uint64_t _internal_item_id() const; + void _internal_set_item_id(uint64_t value); + public: + + // optional uint32 def_index = 6; + bool has_def_index() const; + private: + bool _internal_has_def_index() const; + public: + void clear_def_index(); + uint32_t def_index() const; + void set_def_index(uint32_t value); + private: + uint32_t _internal_def_index() const; + void _internal_set_def_index(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CSOEconItemDropRateBonus) private: class _Internal; @@ -10688,31 +10822,36 @@ class CMsgGCShowItemsPickedUp : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint64_t player_steamid_; + uint32_t account_id_; + uint32_t expiration_date_; + float bonus_; + uint32_t bonus_count_; + uint64_t item_id_; + uint32_t def_index_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCIncrementKillCountResponse : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCIncrementKillCountResponse) */ { +class CSOEconItemLeagueViewPass : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconItemLeagueViewPass) */ { public: - inline CMsgGCIncrementKillCountResponse() : CMsgGCIncrementKillCountResponse(nullptr) {} - ~CMsgGCIncrementKillCountResponse() override; - explicit PROTOBUF_CONSTEXPR CMsgGCIncrementKillCountResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CSOEconItemLeagueViewPass() : CSOEconItemLeagueViewPass(nullptr) {} + ~CSOEconItemLeagueViewPass() override; + explicit PROTOBUF_CONSTEXPR CSOEconItemLeagueViewPass(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCIncrementKillCountResponse(const CMsgGCIncrementKillCountResponse& from); - CMsgGCIncrementKillCountResponse(CMsgGCIncrementKillCountResponse&& from) noexcept - : CMsgGCIncrementKillCountResponse() { + CSOEconItemLeagueViewPass(const CSOEconItemLeagueViewPass& from); + CSOEconItemLeagueViewPass(CSOEconItemLeagueViewPass&& from) noexcept + : CSOEconItemLeagueViewPass() { *this = ::std::move(from); } - inline CMsgGCIncrementKillCountResponse& operator=(const CMsgGCIncrementKillCountResponse& from) { + inline CSOEconItemLeagueViewPass& operator=(const CSOEconItemLeagueViewPass& from) { CopyFrom(from); return *this; } - inline CMsgGCIncrementKillCountResponse& operator=(CMsgGCIncrementKillCountResponse&& from) noexcept { + inline CSOEconItemLeagueViewPass& operator=(CSOEconItemLeagueViewPass&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -10742,20 +10881,20 @@ class CMsgGCIncrementKillCountResponse : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCIncrementKillCountResponse& default_instance() { + static const CSOEconItemLeagueViewPass& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCIncrementKillCountResponse* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCIncrementKillCountResponse_default_instance_); + static inline const CSOEconItemLeagueViewPass* internal_default_instance() { + return reinterpret_cast( + &_CSOEconItemLeagueViewPass_default_instance_); } static constexpr int kIndexInFileMessages = 50; - friend void swap(CMsgGCIncrementKillCountResponse& a, CMsgGCIncrementKillCountResponse& b) { + friend void swap(CSOEconItemLeagueViewPass& a, CSOEconItemLeagueViewPass& b) { a.Swap(&b); } - inline void Swap(CMsgGCIncrementKillCountResponse* other) { + inline void Swap(CSOEconItemLeagueViewPass* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -10768,7 +10907,7 @@ class CMsgGCIncrementKillCountResponse : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCIncrementKillCountResponse* other) { + void UnsafeArenaSwap(CSOEconItemLeagueViewPass* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -10776,14 +10915,14 @@ class CMsgGCIncrementKillCountResponse : // implements Message ---------------------------------------------- - CMsgGCIncrementKillCountResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CSOEconItemLeagueViewPass* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCIncrementKillCountResponse& from); + void CopyFrom(const CSOEconItemLeagueViewPass& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCIncrementKillCountResponse& from) { - CMsgGCIncrementKillCountResponse::MergeImpl(*this, from); + void MergeFrom( const CSOEconItemLeagueViewPass& from) { + CSOEconItemLeagueViewPass::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -10801,15 +10940,15 @@ class CMsgGCIncrementKillCountResponse : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCIncrementKillCountResponse* other); + void InternalSwap(CSOEconItemLeagueViewPass* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCIncrementKillCountResponse"; + return "CSOEconItemLeagueViewPass"; } protected: - explicit CMsgGCIncrementKillCountResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CSOEconItemLeagueViewPass(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -10823,64 +10962,64 @@ class CMsgGCIncrementKillCountResponse : // accessors ------------------------------------------------------- enum : int { - kKillerAccountIdFieldNumber = 1, - kNumKillsFieldNumber = 2, - kItemDefFieldNumber = 3, - kLevelTypeFieldNumber = 4, + kAccountIdFieldNumber = 1, + kLeagueIdFieldNumber = 2, + kAdminFieldNumber = 3, + kItemindexFieldNumber = 4, }; - // optional uint32 killer_account_id = 1 [(.key_field) = true]; - bool has_killer_account_id() const; + // optional uint32 account_id = 1 [(.key_field) = true]; + bool has_account_id() const; private: - bool _internal_has_killer_account_id() const; + bool _internal_has_account_id() const; public: - void clear_killer_account_id(); - uint32_t killer_account_id() const; - void set_killer_account_id(uint32_t value); + void clear_account_id(); + uint32_t account_id() const; + void set_account_id(uint32_t value); private: - uint32_t _internal_killer_account_id() const; - void _internal_set_killer_account_id(uint32_t value); + uint32_t _internal_account_id() const; + void _internal_set_account_id(uint32_t value); public: - // optional uint32 num_kills = 2; - bool has_num_kills() const; + // optional uint32 league_id = 2 [(.key_field) = true]; + bool has_league_id() const; private: - bool _internal_has_num_kills() const; + bool _internal_has_league_id() const; public: - void clear_num_kills(); - uint32_t num_kills() const; - void set_num_kills(uint32_t value); + void clear_league_id(); + uint32_t league_id() const; + void set_league_id(uint32_t value); private: - uint32_t _internal_num_kills() const; - void _internal_set_num_kills(uint32_t value); + uint32_t _internal_league_id() const; + void _internal_set_league_id(uint32_t value); public: - // optional uint32 item_def = 3; - bool has_item_def() const; + // optional uint32 admin = 3; + bool has_admin() const; private: - bool _internal_has_item_def() const; + bool _internal_has_admin() const; public: - void clear_item_def(); - uint32_t item_def() const; - void set_item_def(uint32_t value); + void clear_admin(); + uint32_t admin() const; + void set_admin(uint32_t value); private: - uint32_t _internal_item_def() const; - void _internal_set_item_def(uint32_t value); + uint32_t _internal_admin() const; + void _internal_set_admin(uint32_t value); public: - // optional uint32 level_type = 4; - bool has_level_type() const; + // optional uint32 itemindex = 4; + bool has_itemindex() const; private: - bool _internal_has_level_type() const; + bool _internal_has_itemindex() const; public: - void clear_level_type(); - uint32_t level_type() const; - void set_level_type(uint32_t value); + void clear_itemindex(); + uint32_t itemindex() const; + void set_itemindex(uint32_t value); private: - uint32_t _internal_level_type() const; - void _internal_set_level_type(uint32_t value); + uint32_t _internal_itemindex() const; + void _internal_set_itemindex(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCIncrementKillCountResponse) + // @@protoc_insertion_point(class_scope:CSOEconItemLeagueViewPass) private: class _Internal; @@ -10890,34 +11029,34 @@ class CMsgGCIncrementKillCountResponse : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t killer_account_id_; - uint32_t num_kills_; - uint32_t item_def_; - uint32_t level_type_; + uint32_t account_id_; + uint32_t league_id_; + uint32_t admin_; + uint32_t itemindex_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CSOEconItemDropRateBonus : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconItemDropRateBonus) */ { +class CSOEconItemEventTicket : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconItemEventTicket) */ { public: - inline CSOEconItemDropRateBonus() : CSOEconItemDropRateBonus(nullptr) {} - ~CSOEconItemDropRateBonus() override; - explicit PROTOBUF_CONSTEXPR CSOEconItemDropRateBonus(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CSOEconItemEventTicket() : CSOEconItemEventTicket(nullptr) {} + ~CSOEconItemEventTicket() override; + explicit PROTOBUF_CONSTEXPR CSOEconItemEventTicket(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CSOEconItemDropRateBonus(const CSOEconItemDropRateBonus& from); - CSOEconItemDropRateBonus(CSOEconItemDropRateBonus&& from) noexcept - : CSOEconItemDropRateBonus() { + CSOEconItemEventTicket(const CSOEconItemEventTicket& from); + CSOEconItemEventTicket(CSOEconItemEventTicket&& from) noexcept + : CSOEconItemEventTicket() { *this = ::std::move(from); } - inline CSOEconItemDropRateBonus& operator=(const CSOEconItemDropRateBonus& from) { + inline CSOEconItemEventTicket& operator=(const CSOEconItemEventTicket& from) { CopyFrom(from); return *this; } - inline CSOEconItemDropRateBonus& operator=(CSOEconItemDropRateBonus&& from) noexcept { + inline CSOEconItemEventTicket& operator=(CSOEconItemEventTicket&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -10947,20 +11086,20 @@ class CSOEconItemDropRateBonus : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CSOEconItemDropRateBonus& default_instance() { + static const CSOEconItemEventTicket& default_instance() { return *internal_default_instance(); } - static inline const CSOEconItemDropRateBonus* internal_default_instance() { - return reinterpret_cast( - &_CSOEconItemDropRateBonus_default_instance_); + static inline const CSOEconItemEventTicket* internal_default_instance() { + return reinterpret_cast( + &_CSOEconItemEventTicket_default_instance_); } static constexpr int kIndexInFileMessages = 51; - friend void swap(CSOEconItemDropRateBonus& a, CSOEconItemDropRateBonus& b) { + friend void swap(CSOEconItemEventTicket& a, CSOEconItemEventTicket& b) { a.Swap(&b); } - inline void Swap(CSOEconItemDropRateBonus* other) { + inline void Swap(CSOEconItemEventTicket* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -10973,7 +11112,7 @@ class CSOEconItemDropRateBonus : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CSOEconItemDropRateBonus* other) { + void UnsafeArenaSwap(CSOEconItemEventTicket* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -10981,14 +11120,14 @@ class CSOEconItemDropRateBonus : // implements Message ---------------------------------------------- - CSOEconItemDropRateBonus* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CSOEconItemEventTicket* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CSOEconItemDropRateBonus& from); + void CopyFrom(const CSOEconItemEventTicket& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CSOEconItemDropRateBonus& from) { - CSOEconItemDropRateBonus::MergeImpl(*this, from); + void MergeFrom( const CSOEconItemEventTicket& from) { + CSOEconItemEventTicket::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -11006,15 +11145,15 @@ class CSOEconItemDropRateBonus : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CSOEconItemDropRateBonus* other); + void InternalSwap(CSOEconItemEventTicket* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CSOEconItemDropRateBonus"; + return "CSOEconItemEventTicket"; } protected: - explicit CSOEconItemDropRateBonus(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CSOEconItemEventTicket(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -11029,11 +11168,8 @@ class CSOEconItemDropRateBonus : enum : int { kAccountIdFieldNumber = 1, - kExpirationDateFieldNumber = 2, - kBonusFieldNumber = 3, - kBonusCountFieldNumber = 4, - kItemIdFieldNumber = 5, - kDefIndexFieldNumber = 6, + kEventIdFieldNumber = 2, + kItemIdFieldNumber = 3, }; // optional uint32 account_id = 1; bool has_account_id() const; @@ -11048,46 +11184,20 @@ class CSOEconItemDropRateBonus : void _internal_set_account_id(uint32_t value); public: - // optional fixed32 expiration_date = 2; - bool has_expiration_date() const; - private: - bool _internal_has_expiration_date() const; - public: - void clear_expiration_date(); - uint32_t expiration_date() const; - void set_expiration_date(uint32_t value); - private: - uint32_t _internal_expiration_date() const; - void _internal_set_expiration_date(uint32_t value); - public: - - // optional float bonus = 3; - bool has_bonus() const; - private: - bool _internal_has_bonus() const; - public: - void clear_bonus(); - float bonus() const; - void set_bonus(float value); - private: - float _internal_bonus() const; - void _internal_set_bonus(float value); - public: - - // optional uint32 bonus_count = 4; - bool has_bonus_count() const; + // optional uint32 event_id = 2; + bool has_event_id() const; private: - bool _internal_has_bonus_count() const; + bool _internal_has_event_id() const; public: - void clear_bonus_count(); - uint32_t bonus_count() const; - void set_bonus_count(uint32_t value); + void clear_event_id(); + uint32_t event_id() const; + void set_event_id(uint32_t value); private: - uint32_t _internal_bonus_count() const; - void _internal_set_bonus_count(uint32_t value); + uint32_t _internal_event_id() const; + void _internal_set_event_id(uint32_t value); public: - // optional uint64 item_id = 5; + // optional uint64 item_id = 3; bool has_item_id() const; private: bool _internal_has_item_id() const; @@ -11100,20 +11210,7 @@ class CSOEconItemDropRateBonus : void _internal_set_item_id(uint64_t value); public: - // optional uint32 def_index = 6; - bool has_def_index() const; - private: - bool _internal_has_def_index() const; - public: - void clear_def_index(); - uint32_t def_index() const; - void set_def_index(uint32_t value); - private: - uint32_t _internal_def_index() const; - void _internal_set_def_index(uint32_t value); - public: - - // @@protoc_insertion_point(class_scope:CSOEconItemDropRateBonus) + // @@protoc_insertion_point(class_scope:CSOEconItemEventTicket) private: class _Internal; @@ -11124,35 +11221,32 @@ class CSOEconItemDropRateBonus : ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; uint32_t account_id_; - uint32_t expiration_date_; - float bonus_; - uint32_t bonus_count_; + uint32_t event_id_; uint64_t item_id_; - uint32_t def_index_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CSOEconItemLeagueViewPass : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconItemLeagueViewPass) */ { +class CMsgGCItemPreviewItemBoughtNotification : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCItemPreviewItemBoughtNotification) */ { public: - inline CSOEconItemLeagueViewPass() : CSOEconItemLeagueViewPass(nullptr) {} - ~CSOEconItemLeagueViewPass() override; - explicit PROTOBUF_CONSTEXPR CSOEconItemLeagueViewPass(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCItemPreviewItemBoughtNotification() : CMsgGCItemPreviewItemBoughtNotification(nullptr) {} + ~CMsgGCItemPreviewItemBoughtNotification() override; + explicit PROTOBUF_CONSTEXPR CMsgGCItemPreviewItemBoughtNotification(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CSOEconItemLeagueViewPass(const CSOEconItemLeagueViewPass& from); - CSOEconItemLeagueViewPass(CSOEconItemLeagueViewPass&& from) noexcept - : CSOEconItemLeagueViewPass() { + CMsgGCItemPreviewItemBoughtNotification(const CMsgGCItemPreviewItemBoughtNotification& from); + CMsgGCItemPreviewItemBoughtNotification(CMsgGCItemPreviewItemBoughtNotification&& from) noexcept + : CMsgGCItemPreviewItemBoughtNotification() { *this = ::std::move(from); } - inline CSOEconItemLeagueViewPass& operator=(const CSOEconItemLeagueViewPass& from) { + inline CMsgGCItemPreviewItemBoughtNotification& operator=(const CMsgGCItemPreviewItemBoughtNotification& from) { CopyFrom(from); return *this; } - inline CSOEconItemLeagueViewPass& operator=(CSOEconItemLeagueViewPass&& from) noexcept { + inline CMsgGCItemPreviewItemBoughtNotification& operator=(CMsgGCItemPreviewItemBoughtNotification&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -11182,20 +11276,20 @@ class CSOEconItemLeagueViewPass : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CSOEconItemLeagueViewPass& default_instance() { + static const CMsgGCItemPreviewItemBoughtNotification& default_instance() { return *internal_default_instance(); } - static inline const CSOEconItemLeagueViewPass* internal_default_instance() { - return reinterpret_cast( - &_CSOEconItemLeagueViewPass_default_instance_); + static inline const CMsgGCItemPreviewItemBoughtNotification* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCItemPreviewItemBoughtNotification_default_instance_); } static constexpr int kIndexInFileMessages = 52; - friend void swap(CSOEconItemLeagueViewPass& a, CSOEconItemLeagueViewPass& b) { + friend void swap(CMsgGCItemPreviewItemBoughtNotification& a, CMsgGCItemPreviewItemBoughtNotification& b) { a.Swap(&b); } - inline void Swap(CSOEconItemLeagueViewPass* other) { + inline void Swap(CMsgGCItemPreviewItemBoughtNotification* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -11208,7 +11302,7 @@ class CSOEconItemLeagueViewPass : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CSOEconItemLeagueViewPass* other) { + void UnsafeArenaSwap(CMsgGCItemPreviewItemBoughtNotification* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -11216,14 +11310,14 @@ class CSOEconItemLeagueViewPass : // implements Message ---------------------------------------------- - CSOEconItemLeagueViewPass* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCItemPreviewItemBoughtNotification* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CSOEconItemLeagueViewPass& from); + void CopyFrom(const CMsgGCItemPreviewItemBoughtNotification& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CSOEconItemLeagueViewPass& from) { - CSOEconItemLeagueViewPass::MergeImpl(*this, from); + void MergeFrom( const CMsgGCItemPreviewItemBoughtNotification& from) { + CMsgGCItemPreviewItemBoughtNotification::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -11241,15 +11335,15 @@ class CSOEconItemLeagueViewPass : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CSOEconItemLeagueViewPass* other); + void InternalSwap(CMsgGCItemPreviewItemBoughtNotification* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CSOEconItemLeagueViewPass"; + return "CMsgGCItemPreviewItemBoughtNotification"; } protected: - explicit CSOEconItemLeagueViewPass(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCItemPreviewItemBoughtNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -11263,64 +11357,22 @@ class CSOEconItemLeagueViewPass : // accessors ------------------------------------------------------- enum : int { - kAccountIdFieldNumber = 1, - kLeagueIdFieldNumber = 2, - kAdminFieldNumber = 3, - kItemindexFieldNumber = 4, + kItemDefIndexFieldNumber = 1, }; - // optional uint32 account_id = 1 [(.key_field) = true]; - bool has_account_id() const; + // optional uint32 item_def_index = 1; + bool has_item_def_index() const; private: - bool _internal_has_account_id() const; + bool _internal_has_item_def_index() const; public: - void clear_account_id(); - uint32_t account_id() const; - void set_account_id(uint32_t value); + void clear_item_def_index(); + uint32_t item_def_index() const; + void set_item_def_index(uint32_t value); private: - uint32_t _internal_account_id() const; - void _internal_set_account_id(uint32_t value); + uint32_t _internal_item_def_index() const; + void _internal_set_item_def_index(uint32_t value); public: - // optional uint32 league_id = 2 [(.key_field) = true]; - bool has_league_id() const; - private: - bool _internal_has_league_id() const; - public: - void clear_league_id(); - uint32_t league_id() const; - void set_league_id(uint32_t value); - private: - uint32_t _internal_league_id() const; - void _internal_set_league_id(uint32_t value); - public: - - // optional uint32 admin = 3; - bool has_admin() const; - private: - bool _internal_has_admin() const; - public: - void clear_admin(); - uint32_t admin() const; - void set_admin(uint32_t value); - private: - uint32_t _internal_admin() const; - void _internal_set_admin(uint32_t value); - public: - - // optional uint32 itemindex = 4; - bool has_itemindex() const; - private: - bool _internal_has_itemindex() const; - public: - void clear_itemindex(); - uint32_t itemindex() const; - void set_itemindex(uint32_t value); - private: - uint32_t _internal_itemindex() const; - void _internal_set_itemindex(uint32_t value); - public: - - // @@protoc_insertion_point(class_scope:CSOEconItemLeagueViewPass) + // @@protoc_insertion_point(class_scope:CMsgGCItemPreviewItemBoughtNotification) private: class _Internal; @@ -11330,34 +11382,31 @@ class CSOEconItemLeagueViewPass : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t account_id_; - uint32_t league_id_; - uint32_t admin_; - uint32_t itemindex_; + uint32_t item_def_index_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CSOEconItemEventTicket : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconItemEventTicket) */ { +class CMsgGCStorePurchaseCancel : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCStorePurchaseCancel) */ { public: - inline CSOEconItemEventTicket() : CSOEconItemEventTicket(nullptr) {} - ~CSOEconItemEventTicket() override; - explicit PROTOBUF_CONSTEXPR CSOEconItemEventTicket(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCStorePurchaseCancel() : CMsgGCStorePurchaseCancel(nullptr) {} + ~CMsgGCStorePurchaseCancel() override; + explicit PROTOBUF_CONSTEXPR CMsgGCStorePurchaseCancel(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CSOEconItemEventTicket(const CSOEconItemEventTicket& from); - CSOEconItemEventTicket(CSOEconItemEventTicket&& from) noexcept - : CSOEconItemEventTicket() { + CMsgGCStorePurchaseCancel(const CMsgGCStorePurchaseCancel& from); + CMsgGCStorePurchaseCancel(CMsgGCStorePurchaseCancel&& from) noexcept + : CMsgGCStorePurchaseCancel() { *this = ::std::move(from); } - inline CSOEconItemEventTicket& operator=(const CSOEconItemEventTicket& from) { + inline CMsgGCStorePurchaseCancel& operator=(const CMsgGCStorePurchaseCancel& from) { CopyFrom(from); return *this; } - inline CSOEconItemEventTicket& operator=(CSOEconItemEventTicket&& from) noexcept { + inline CMsgGCStorePurchaseCancel& operator=(CMsgGCStorePurchaseCancel&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -11387,20 +11436,20 @@ class CSOEconItemEventTicket : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CSOEconItemEventTicket& default_instance() { + static const CMsgGCStorePurchaseCancel& default_instance() { return *internal_default_instance(); } - static inline const CSOEconItemEventTicket* internal_default_instance() { - return reinterpret_cast( - &_CSOEconItemEventTicket_default_instance_); + static inline const CMsgGCStorePurchaseCancel* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCStorePurchaseCancel_default_instance_); } static constexpr int kIndexInFileMessages = 53; - friend void swap(CSOEconItemEventTicket& a, CSOEconItemEventTicket& b) { + friend void swap(CMsgGCStorePurchaseCancel& a, CMsgGCStorePurchaseCancel& b) { a.Swap(&b); } - inline void Swap(CSOEconItemEventTicket* other) { + inline void Swap(CMsgGCStorePurchaseCancel* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -11413,7 +11462,7 @@ class CSOEconItemEventTicket : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CSOEconItemEventTicket* other) { + void UnsafeArenaSwap(CMsgGCStorePurchaseCancel* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -11421,14 +11470,14 @@ class CSOEconItemEventTicket : // implements Message ---------------------------------------------- - CSOEconItemEventTicket* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCStorePurchaseCancel* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CSOEconItemEventTicket& from); + void CopyFrom(const CMsgGCStorePurchaseCancel& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CSOEconItemEventTicket& from) { - CSOEconItemEventTicket::MergeImpl(*this, from); + void MergeFrom( const CMsgGCStorePurchaseCancel& from) { + CMsgGCStorePurchaseCancel::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -11446,15 +11495,15 @@ class CSOEconItemEventTicket : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CSOEconItemEventTicket* other); + void InternalSwap(CMsgGCStorePurchaseCancel* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CSOEconItemEventTicket"; + return "CMsgGCStorePurchaseCancel"; } protected: - explicit CSOEconItemEventTicket(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCStorePurchaseCancel(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -11468,50 +11517,22 @@ class CSOEconItemEventTicket : // accessors ------------------------------------------------------- enum : int { - kAccountIdFieldNumber = 1, - kEventIdFieldNumber = 2, - kItemIdFieldNumber = 3, + kTxnIdFieldNumber = 1, }; - // optional uint32 account_id = 1; - bool has_account_id() const; - private: - bool _internal_has_account_id() const; - public: - void clear_account_id(); - uint32_t account_id() const; - void set_account_id(uint32_t value); - private: - uint32_t _internal_account_id() const; - void _internal_set_account_id(uint32_t value); - public: - - // optional uint32 event_id = 2; - bool has_event_id() const; - private: - bool _internal_has_event_id() const; - public: - void clear_event_id(); - uint32_t event_id() const; - void set_event_id(uint32_t value); - private: - uint32_t _internal_event_id() const; - void _internal_set_event_id(uint32_t value); - public: - - // optional uint64 item_id = 3; - bool has_item_id() const; + // optional uint64 txn_id = 1; + bool has_txn_id() const; private: - bool _internal_has_item_id() const; + bool _internal_has_txn_id() const; public: - void clear_item_id(); - uint64_t item_id() const; - void set_item_id(uint64_t value); + void clear_txn_id(); + uint64_t txn_id() const; + void set_txn_id(uint64_t value); private: - uint64_t _internal_item_id() const; - void _internal_set_item_id(uint64_t value); + uint64_t _internal_txn_id() const; + void _internal_set_txn_id(uint64_t value); public: - // @@protoc_insertion_point(class_scope:CSOEconItemEventTicket) + // @@protoc_insertion_point(class_scope:CMsgGCStorePurchaseCancel) private: class _Internal; @@ -11521,33 +11542,31 @@ class CSOEconItemEventTicket : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t account_id_; - uint32_t event_id_; - uint64_t item_id_; + uint64_t txn_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCItemPreviewItemBoughtNotification : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCItemPreviewItemBoughtNotification) */ { +class CMsgGCStorePurchaseCancelResponse : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCStorePurchaseCancelResponse) */ { public: - inline CMsgGCItemPreviewItemBoughtNotification() : CMsgGCItemPreviewItemBoughtNotification(nullptr) {} - ~CMsgGCItemPreviewItemBoughtNotification() override; - explicit PROTOBUF_CONSTEXPR CMsgGCItemPreviewItemBoughtNotification(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCStorePurchaseCancelResponse() : CMsgGCStorePurchaseCancelResponse(nullptr) {} + ~CMsgGCStorePurchaseCancelResponse() override; + explicit PROTOBUF_CONSTEXPR CMsgGCStorePurchaseCancelResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCItemPreviewItemBoughtNotification(const CMsgGCItemPreviewItemBoughtNotification& from); - CMsgGCItemPreviewItemBoughtNotification(CMsgGCItemPreviewItemBoughtNotification&& from) noexcept - : CMsgGCItemPreviewItemBoughtNotification() { + CMsgGCStorePurchaseCancelResponse(const CMsgGCStorePurchaseCancelResponse& from); + CMsgGCStorePurchaseCancelResponse(CMsgGCStorePurchaseCancelResponse&& from) noexcept + : CMsgGCStorePurchaseCancelResponse() { *this = ::std::move(from); } - inline CMsgGCItemPreviewItemBoughtNotification& operator=(const CMsgGCItemPreviewItemBoughtNotification& from) { + inline CMsgGCStorePurchaseCancelResponse& operator=(const CMsgGCStorePurchaseCancelResponse& from) { CopyFrom(from); return *this; } - inline CMsgGCItemPreviewItemBoughtNotification& operator=(CMsgGCItemPreviewItemBoughtNotification&& from) noexcept { + inline CMsgGCStorePurchaseCancelResponse& operator=(CMsgGCStorePurchaseCancelResponse&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -11577,20 +11596,20 @@ class CMsgGCItemPreviewItemBoughtNotification : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCItemPreviewItemBoughtNotification& default_instance() { + static const CMsgGCStorePurchaseCancelResponse& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCItemPreviewItemBoughtNotification* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCItemPreviewItemBoughtNotification_default_instance_); + static inline const CMsgGCStorePurchaseCancelResponse* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCStorePurchaseCancelResponse_default_instance_); } static constexpr int kIndexInFileMessages = 54; - friend void swap(CMsgGCItemPreviewItemBoughtNotification& a, CMsgGCItemPreviewItemBoughtNotification& b) { + friend void swap(CMsgGCStorePurchaseCancelResponse& a, CMsgGCStorePurchaseCancelResponse& b) { a.Swap(&b); } - inline void Swap(CMsgGCItemPreviewItemBoughtNotification* other) { + inline void Swap(CMsgGCStorePurchaseCancelResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -11603,7 +11622,7 @@ class CMsgGCItemPreviewItemBoughtNotification : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCItemPreviewItemBoughtNotification* other) { + void UnsafeArenaSwap(CMsgGCStorePurchaseCancelResponse* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -11611,14 +11630,14 @@ class CMsgGCItemPreviewItemBoughtNotification : // implements Message ---------------------------------------------- - CMsgGCItemPreviewItemBoughtNotification* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCStorePurchaseCancelResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCItemPreviewItemBoughtNotification& from); + void CopyFrom(const CMsgGCStorePurchaseCancelResponse& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCItemPreviewItemBoughtNotification& from) { - CMsgGCItemPreviewItemBoughtNotification::MergeImpl(*this, from); + void MergeFrom( const CMsgGCStorePurchaseCancelResponse& from) { + CMsgGCStorePurchaseCancelResponse::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -11636,15 +11655,15 @@ class CMsgGCItemPreviewItemBoughtNotification : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCItemPreviewItemBoughtNotification* other); + void InternalSwap(CMsgGCStorePurchaseCancelResponse* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCItemPreviewItemBoughtNotification"; + return "CMsgGCStorePurchaseCancelResponse"; } protected: - explicit CMsgGCItemPreviewItemBoughtNotification(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCStorePurchaseCancelResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -11658,22 +11677,22 @@ class CMsgGCItemPreviewItemBoughtNotification : // accessors ------------------------------------------------------- enum : int { - kItemDefIndexFieldNumber = 1, + kResultFieldNumber = 1, }; - // optional uint32 item_def_index = 1; - bool has_item_def_index() const; + // optional uint32 result = 1; + bool has_result() const; private: - bool _internal_has_item_def_index() const; + bool _internal_has_result() const; public: - void clear_item_def_index(); - uint32_t item_def_index() const; - void set_item_def_index(uint32_t value); + void clear_result(); + uint32_t result() const; + void set_result(uint32_t value); private: - uint32_t _internal_item_def_index() const; - void _internal_set_item_def_index(uint32_t value); + uint32_t _internal_result() const; + void _internal_set_result(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCItemPreviewItemBoughtNotification) + // @@protoc_insertion_point(class_scope:CMsgGCStorePurchaseCancelResponse) private: class _Internal; @@ -11683,31 +11702,31 @@ class CMsgGCItemPreviewItemBoughtNotification : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t item_def_index_; + uint32_t result_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCStorePurchaseCancel : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCStorePurchaseCancel) */ { +class CMsgGCStorePurchaseFinalize : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCStorePurchaseFinalize) */ { public: - inline CMsgGCStorePurchaseCancel() : CMsgGCStorePurchaseCancel(nullptr) {} - ~CMsgGCStorePurchaseCancel() override; - explicit PROTOBUF_CONSTEXPR CMsgGCStorePurchaseCancel(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCStorePurchaseFinalize() : CMsgGCStorePurchaseFinalize(nullptr) {} + ~CMsgGCStorePurchaseFinalize() override; + explicit PROTOBUF_CONSTEXPR CMsgGCStorePurchaseFinalize(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCStorePurchaseCancel(const CMsgGCStorePurchaseCancel& from); - CMsgGCStorePurchaseCancel(CMsgGCStorePurchaseCancel&& from) noexcept - : CMsgGCStorePurchaseCancel() { + CMsgGCStorePurchaseFinalize(const CMsgGCStorePurchaseFinalize& from); + CMsgGCStorePurchaseFinalize(CMsgGCStorePurchaseFinalize&& from) noexcept + : CMsgGCStorePurchaseFinalize() { *this = ::std::move(from); } - inline CMsgGCStorePurchaseCancel& operator=(const CMsgGCStorePurchaseCancel& from) { + inline CMsgGCStorePurchaseFinalize& operator=(const CMsgGCStorePurchaseFinalize& from) { CopyFrom(from); return *this; } - inline CMsgGCStorePurchaseCancel& operator=(CMsgGCStorePurchaseCancel&& from) noexcept { + inline CMsgGCStorePurchaseFinalize& operator=(CMsgGCStorePurchaseFinalize&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -11737,20 +11756,20 @@ class CMsgGCStorePurchaseCancel : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCStorePurchaseCancel& default_instance() { + static const CMsgGCStorePurchaseFinalize& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCStorePurchaseCancel* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCStorePurchaseCancel_default_instance_); + static inline const CMsgGCStorePurchaseFinalize* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCStorePurchaseFinalize_default_instance_); } static constexpr int kIndexInFileMessages = 55; - friend void swap(CMsgGCStorePurchaseCancel& a, CMsgGCStorePurchaseCancel& b) { + friend void swap(CMsgGCStorePurchaseFinalize& a, CMsgGCStorePurchaseFinalize& b) { a.Swap(&b); } - inline void Swap(CMsgGCStorePurchaseCancel* other) { + inline void Swap(CMsgGCStorePurchaseFinalize* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -11763,7 +11782,7 @@ class CMsgGCStorePurchaseCancel : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCStorePurchaseCancel* other) { + void UnsafeArenaSwap(CMsgGCStorePurchaseFinalize* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -11771,14 +11790,14 @@ class CMsgGCStorePurchaseCancel : // implements Message ---------------------------------------------- - CMsgGCStorePurchaseCancel* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCStorePurchaseFinalize* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCStorePurchaseCancel& from); + void CopyFrom(const CMsgGCStorePurchaseFinalize& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCStorePurchaseCancel& from) { - CMsgGCStorePurchaseCancel::MergeImpl(*this, from); + void MergeFrom( const CMsgGCStorePurchaseFinalize& from) { + CMsgGCStorePurchaseFinalize::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -11796,15 +11815,15 @@ class CMsgGCStorePurchaseCancel : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCStorePurchaseCancel* other); + void InternalSwap(CMsgGCStorePurchaseFinalize* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCStorePurchaseCancel"; + return "CMsgGCStorePurchaseFinalize"; } protected: - explicit CMsgGCStorePurchaseCancel(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCStorePurchaseFinalize(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -11833,7 +11852,7 @@ class CMsgGCStorePurchaseCancel : void _internal_set_txn_id(uint64_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCStorePurchaseCancel) + // @@protoc_insertion_point(class_scope:CMsgGCStorePurchaseFinalize) private: class _Internal; @@ -11846,28 +11865,28 @@ class CMsgGCStorePurchaseCancel : uint64_t txn_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCStorePurchaseCancelResponse : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCStorePurchaseCancelResponse) */ { +class CMsgGCStorePurchaseFinalizeResponse : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCStorePurchaseFinalizeResponse) */ { public: - inline CMsgGCStorePurchaseCancelResponse() : CMsgGCStorePurchaseCancelResponse(nullptr) {} - ~CMsgGCStorePurchaseCancelResponse() override; - explicit PROTOBUF_CONSTEXPR CMsgGCStorePurchaseCancelResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCStorePurchaseFinalizeResponse() : CMsgGCStorePurchaseFinalizeResponse(nullptr) {} + ~CMsgGCStorePurchaseFinalizeResponse() override; + explicit PROTOBUF_CONSTEXPR CMsgGCStorePurchaseFinalizeResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCStorePurchaseCancelResponse(const CMsgGCStorePurchaseCancelResponse& from); - CMsgGCStorePurchaseCancelResponse(CMsgGCStorePurchaseCancelResponse&& from) noexcept - : CMsgGCStorePurchaseCancelResponse() { + CMsgGCStorePurchaseFinalizeResponse(const CMsgGCStorePurchaseFinalizeResponse& from); + CMsgGCStorePurchaseFinalizeResponse(CMsgGCStorePurchaseFinalizeResponse&& from) noexcept + : CMsgGCStorePurchaseFinalizeResponse() { *this = ::std::move(from); } - inline CMsgGCStorePurchaseCancelResponse& operator=(const CMsgGCStorePurchaseCancelResponse& from) { + inline CMsgGCStorePurchaseFinalizeResponse& operator=(const CMsgGCStorePurchaseFinalizeResponse& from) { CopyFrom(from); return *this; } - inline CMsgGCStorePurchaseCancelResponse& operator=(CMsgGCStorePurchaseCancelResponse&& from) noexcept { + inline CMsgGCStorePurchaseFinalizeResponse& operator=(CMsgGCStorePurchaseFinalizeResponse&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -11897,20 +11916,20 @@ class CMsgGCStorePurchaseCancelResponse : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCStorePurchaseCancelResponse& default_instance() { + static const CMsgGCStorePurchaseFinalizeResponse& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCStorePurchaseCancelResponse* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCStorePurchaseCancelResponse_default_instance_); + static inline const CMsgGCStorePurchaseFinalizeResponse* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCStorePurchaseFinalizeResponse_default_instance_); } static constexpr int kIndexInFileMessages = 56; - friend void swap(CMsgGCStorePurchaseCancelResponse& a, CMsgGCStorePurchaseCancelResponse& b) { + friend void swap(CMsgGCStorePurchaseFinalizeResponse& a, CMsgGCStorePurchaseFinalizeResponse& b) { a.Swap(&b); } - inline void Swap(CMsgGCStorePurchaseCancelResponse* other) { + inline void Swap(CMsgGCStorePurchaseFinalizeResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -11923,7 +11942,7 @@ class CMsgGCStorePurchaseCancelResponse : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCStorePurchaseCancelResponse* other) { + void UnsafeArenaSwap(CMsgGCStorePurchaseFinalizeResponse* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -11931,14 +11950,14 @@ class CMsgGCStorePurchaseCancelResponse : // implements Message ---------------------------------------------- - CMsgGCStorePurchaseCancelResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCStorePurchaseFinalizeResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCStorePurchaseCancelResponse& from); + void CopyFrom(const CMsgGCStorePurchaseFinalizeResponse& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCStorePurchaseCancelResponse& from) { - CMsgGCStorePurchaseCancelResponse::MergeImpl(*this, from); + void MergeFrom( const CMsgGCStorePurchaseFinalizeResponse& from) { + CMsgGCStorePurchaseFinalizeResponse::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -11956,15 +11975,15 @@ class CMsgGCStorePurchaseCancelResponse : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCStorePurchaseCancelResponse* other); + void InternalSwap(CMsgGCStorePurchaseFinalizeResponse* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCStorePurchaseCancelResponse"; + return "CMsgGCStorePurchaseFinalizeResponse"; } protected: - explicit CMsgGCStorePurchaseCancelResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCStorePurchaseFinalizeResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -11978,8 +11997,31 @@ class CMsgGCStorePurchaseCancelResponse : // accessors ------------------------------------------------------- enum : int { + kItemIdsFieldNumber = 2, kResultFieldNumber = 1, }; + // repeated uint64 item_ids = 2; + int item_ids_size() const; + private: + int _internal_item_ids_size() const; + public: + void clear_item_ids(); + private: + uint64_t _internal_item_ids(int index) const; + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& + _internal_item_ids() const; + void _internal_add_item_ids(uint64_t value); + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* + _internal_mutable_item_ids(); + public: + uint64_t item_ids(int index) const; + void set_item_ids(int index, uint64_t value); + void add_item_ids(uint64_t value); + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& + item_ids() const; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* + mutable_item_ids(); + // optional uint32 result = 1; bool has_result() const; private: @@ -11993,7 +12035,7 @@ class CMsgGCStorePurchaseCancelResponse : void _internal_set_result(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCStorePurchaseCancelResponse) + // @@protoc_insertion_point(class_scope:CMsgGCStorePurchaseFinalizeResponse) private: class _Internal; @@ -12003,31 +12045,32 @@ class CMsgGCStorePurchaseCancelResponse : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t > item_ids_; uint32_t result_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCStorePurchaseFinalize : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCStorePurchaseFinalize) */ { +class CMsgGCBannedWordListRequest : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCBannedWordListRequest) */ { public: - inline CMsgGCStorePurchaseFinalize() : CMsgGCStorePurchaseFinalize(nullptr) {} - ~CMsgGCStorePurchaseFinalize() override; - explicit PROTOBUF_CONSTEXPR CMsgGCStorePurchaseFinalize(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCBannedWordListRequest() : CMsgGCBannedWordListRequest(nullptr) {} + ~CMsgGCBannedWordListRequest() override; + explicit PROTOBUF_CONSTEXPR CMsgGCBannedWordListRequest(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCStorePurchaseFinalize(const CMsgGCStorePurchaseFinalize& from); - CMsgGCStorePurchaseFinalize(CMsgGCStorePurchaseFinalize&& from) noexcept - : CMsgGCStorePurchaseFinalize() { + CMsgGCBannedWordListRequest(const CMsgGCBannedWordListRequest& from); + CMsgGCBannedWordListRequest(CMsgGCBannedWordListRequest&& from) noexcept + : CMsgGCBannedWordListRequest() { *this = ::std::move(from); } - inline CMsgGCStorePurchaseFinalize& operator=(const CMsgGCStorePurchaseFinalize& from) { + inline CMsgGCBannedWordListRequest& operator=(const CMsgGCBannedWordListRequest& from) { CopyFrom(from); return *this; } - inline CMsgGCStorePurchaseFinalize& operator=(CMsgGCStorePurchaseFinalize&& from) noexcept { + inline CMsgGCBannedWordListRequest& operator=(CMsgGCBannedWordListRequest&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -12057,20 +12100,20 @@ class CMsgGCStorePurchaseFinalize : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCStorePurchaseFinalize& default_instance() { + static const CMsgGCBannedWordListRequest& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCStorePurchaseFinalize* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCStorePurchaseFinalize_default_instance_); + static inline const CMsgGCBannedWordListRequest* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCBannedWordListRequest_default_instance_); } static constexpr int kIndexInFileMessages = 57; - friend void swap(CMsgGCStorePurchaseFinalize& a, CMsgGCStorePurchaseFinalize& b) { + friend void swap(CMsgGCBannedWordListRequest& a, CMsgGCBannedWordListRequest& b) { a.Swap(&b); } - inline void Swap(CMsgGCStorePurchaseFinalize* other) { + inline void Swap(CMsgGCBannedWordListRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -12083,7 +12126,7 @@ class CMsgGCStorePurchaseFinalize : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCStorePurchaseFinalize* other) { + void UnsafeArenaSwap(CMsgGCBannedWordListRequest* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -12091,14 +12134,14 @@ class CMsgGCStorePurchaseFinalize : // implements Message ---------------------------------------------- - CMsgGCStorePurchaseFinalize* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCBannedWordListRequest* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCStorePurchaseFinalize& from); + void CopyFrom(const CMsgGCBannedWordListRequest& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCStorePurchaseFinalize& from) { - CMsgGCStorePurchaseFinalize::MergeImpl(*this, from); + void MergeFrom( const CMsgGCBannedWordListRequest& from) { + CMsgGCBannedWordListRequest::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -12116,15 +12159,15 @@ class CMsgGCStorePurchaseFinalize : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCStorePurchaseFinalize* other); + void InternalSwap(CMsgGCBannedWordListRequest* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCStorePurchaseFinalize"; + return "CMsgGCBannedWordListRequest"; } protected: - explicit CMsgGCStorePurchaseFinalize(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCBannedWordListRequest(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -12138,22 +12181,36 @@ class CMsgGCStorePurchaseFinalize : // accessors ------------------------------------------------------- enum : int { - kTxnIdFieldNumber = 1, + kBanListGroupIdFieldNumber = 1, + kWordIdFieldNumber = 2, }; - // optional uint64 txn_id = 1; - bool has_txn_id() const; + // optional uint32 ban_list_group_id = 1; + bool has_ban_list_group_id() const; private: - bool _internal_has_txn_id() const; + bool _internal_has_ban_list_group_id() const; public: - void clear_txn_id(); - uint64_t txn_id() const; - void set_txn_id(uint64_t value); + void clear_ban_list_group_id(); + uint32_t ban_list_group_id() const; + void set_ban_list_group_id(uint32_t value); private: - uint64_t _internal_txn_id() const; - void _internal_set_txn_id(uint64_t value); + uint32_t _internal_ban_list_group_id() const; + void _internal_set_ban_list_group_id(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCStorePurchaseFinalize) + // optional uint32 word_id = 2; + bool has_word_id() const; + private: + bool _internal_has_word_id() const; + public: + void clear_word_id(); + uint32_t word_id() const; + void set_word_id(uint32_t value); + private: + uint32_t _internal_word_id() const; + void _internal_set_word_id(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgGCBannedWordListRequest) private: class _Internal; @@ -12163,31 +12220,31 @@ class CMsgGCStorePurchaseFinalize : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint64_t txn_id_; + uint32_t ban_list_group_id_; + uint32_t word_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCStorePurchaseFinalizeResponse : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCStorePurchaseFinalizeResponse) */ { +class CMsgGCRequestAnnouncements : + public ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:CMsgGCRequestAnnouncements) */ { public: - inline CMsgGCStorePurchaseFinalizeResponse() : CMsgGCStorePurchaseFinalizeResponse(nullptr) {} - ~CMsgGCStorePurchaseFinalizeResponse() override; - explicit PROTOBUF_CONSTEXPR CMsgGCStorePurchaseFinalizeResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCRequestAnnouncements() : CMsgGCRequestAnnouncements(nullptr) {} + explicit PROTOBUF_CONSTEXPR CMsgGCRequestAnnouncements(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCStorePurchaseFinalizeResponse(const CMsgGCStorePurchaseFinalizeResponse& from); - CMsgGCStorePurchaseFinalizeResponse(CMsgGCStorePurchaseFinalizeResponse&& from) noexcept - : CMsgGCStorePurchaseFinalizeResponse() { + CMsgGCRequestAnnouncements(const CMsgGCRequestAnnouncements& from); + CMsgGCRequestAnnouncements(CMsgGCRequestAnnouncements&& from) noexcept + : CMsgGCRequestAnnouncements() { *this = ::std::move(from); } - inline CMsgGCStorePurchaseFinalizeResponse& operator=(const CMsgGCStorePurchaseFinalizeResponse& from) { + inline CMsgGCRequestAnnouncements& operator=(const CMsgGCRequestAnnouncements& from) { CopyFrom(from); return *this; } - inline CMsgGCStorePurchaseFinalizeResponse& operator=(CMsgGCStorePurchaseFinalizeResponse&& from) noexcept { + inline CMsgGCRequestAnnouncements& operator=(CMsgGCRequestAnnouncements&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -12217,20 +12274,20 @@ class CMsgGCStorePurchaseFinalizeResponse : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCStorePurchaseFinalizeResponse& default_instance() { + static const CMsgGCRequestAnnouncements& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCStorePurchaseFinalizeResponse* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCStorePurchaseFinalizeResponse_default_instance_); + static inline const CMsgGCRequestAnnouncements* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCRequestAnnouncements_default_instance_); } static constexpr int kIndexInFileMessages = 58; - friend void swap(CMsgGCStorePurchaseFinalizeResponse& a, CMsgGCStorePurchaseFinalizeResponse& b) { + friend void swap(CMsgGCRequestAnnouncements& a, CMsgGCRequestAnnouncements& b) { a.Swap(&b); } - inline void Swap(CMsgGCStorePurchaseFinalizeResponse* other) { + inline void Swap(CMsgGCRequestAnnouncements* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -12243,7 +12300,7 @@ class CMsgGCStorePurchaseFinalizeResponse : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCStorePurchaseFinalizeResponse* other) { + void UnsafeArenaSwap(CMsgGCRequestAnnouncements* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -12251,40 +12308,26 @@ class CMsgGCStorePurchaseFinalizeResponse : // implements Message ---------------------------------------------- - CMsgGCStorePurchaseFinalizeResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCRequestAnnouncements* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } - using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCStorePurchaseFinalizeResponse& from); - using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCStorePurchaseFinalizeResponse& from) { - CMsgGCStorePurchaseFinalizeResponse::MergeImpl(*this, from); + using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyFrom; + inline void CopyFrom(const CMsgGCRequestAnnouncements& from) { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl(*this, from); + } + using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeFrom; + void MergeFrom(const CMsgGCRequestAnnouncements& from) { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl(*this, from); } - private: - static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; - - size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; - uint8_t* _InternalSerialize( - uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; - int GetCachedSize() const final { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); - void SharedDtor(); - void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCStorePurchaseFinalizeResponse* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCStorePurchaseFinalizeResponse"; + return "CMsgGCRequestAnnouncements"; } protected: - explicit CMsgGCStorePurchaseFinalizeResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCRequestAnnouncements(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -12297,81 +12340,37 @@ class CMsgGCStorePurchaseFinalizeResponse : // accessors ------------------------------------------------------- - enum : int { - kItemIdsFieldNumber = 2, - kResultFieldNumber = 1, + // @@protoc_insertion_point(class_scope:CMsgGCRequestAnnouncements) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; + struct Impl_ { }; - // repeated uint64 item_ids = 2; - int item_ids_size() const; - private: - int _internal_item_ids_size() const; - public: - void clear_item_ids(); - private: - uint64_t _internal_item_ids(int index) const; - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& - _internal_item_ids() const; - void _internal_add_item_ids(uint64_t value); - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* - _internal_mutable_item_ids(); - public: - uint64_t item_ids(int index) const; - void set_item_ids(int index, uint64_t value); - void add_item_ids(uint64_t value); - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& - item_ids() const; - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* - mutable_item_ids(); - - // optional uint32 result = 1; - bool has_result() const; - private: - bool _internal_has_result() const; - public: - void clear_result(); - uint32_t result() const; - void set_result(uint32_t value); - private: - uint32_t _internal_result() const; - void _internal_set_result(uint32_t value); - public: - - // @@protoc_insertion_point(class_scope:CMsgGCStorePurchaseFinalizeResponse) - private: - class _Internal; - - template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; - typedef void InternalArenaConstructable_; - typedef void DestructorSkippable_; - struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; - mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t > item_ids_; - uint32_t result_; - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCBannedWordListRequest : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCBannedWordListRequest) */ { +class CMsgGCRequestAnnouncementsResponse : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCRequestAnnouncementsResponse) */ { public: - inline CMsgGCBannedWordListRequest() : CMsgGCBannedWordListRequest(nullptr) {} - ~CMsgGCBannedWordListRequest() override; - explicit PROTOBUF_CONSTEXPR CMsgGCBannedWordListRequest(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCRequestAnnouncementsResponse() : CMsgGCRequestAnnouncementsResponse(nullptr) {} + ~CMsgGCRequestAnnouncementsResponse() override; + explicit PROTOBUF_CONSTEXPR CMsgGCRequestAnnouncementsResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCBannedWordListRequest(const CMsgGCBannedWordListRequest& from); - CMsgGCBannedWordListRequest(CMsgGCBannedWordListRequest&& from) noexcept - : CMsgGCBannedWordListRequest() { + CMsgGCRequestAnnouncementsResponse(const CMsgGCRequestAnnouncementsResponse& from); + CMsgGCRequestAnnouncementsResponse(CMsgGCRequestAnnouncementsResponse&& from) noexcept + : CMsgGCRequestAnnouncementsResponse() { *this = ::std::move(from); } - inline CMsgGCBannedWordListRequest& operator=(const CMsgGCBannedWordListRequest& from) { + inline CMsgGCRequestAnnouncementsResponse& operator=(const CMsgGCRequestAnnouncementsResponse& from) { CopyFrom(from); return *this; } - inline CMsgGCBannedWordListRequest& operator=(CMsgGCBannedWordListRequest&& from) noexcept { + inline CMsgGCRequestAnnouncementsResponse& operator=(CMsgGCRequestAnnouncementsResponse&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -12401,20 +12400,20 @@ class CMsgGCBannedWordListRequest : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCBannedWordListRequest& default_instance() { + static const CMsgGCRequestAnnouncementsResponse& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCBannedWordListRequest* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCBannedWordListRequest_default_instance_); + static inline const CMsgGCRequestAnnouncementsResponse* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCRequestAnnouncementsResponse_default_instance_); } static constexpr int kIndexInFileMessages = 59; - friend void swap(CMsgGCBannedWordListRequest& a, CMsgGCBannedWordListRequest& b) { + friend void swap(CMsgGCRequestAnnouncementsResponse& a, CMsgGCRequestAnnouncementsResponse& b) { a.Swap(&b); } - inline void Swap(CMsgGCBannedWordListRequest* other) { + inline void Swap(CMsgGCRequestAnnouncementsResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -12427,7 +12426,7 @@ class CMsgGCBannedWordListRequest : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCBannedWordListRequest* other) { + void UnsafeArenaSwap(CMsgGCRequestAnnouncementsResponse* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -12435,14 +12434,14 @@ class CMsgGCBannedWordListRequest : // implements Message ---------------------------------------------- - CMsgGCBannedWordListRequest* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCRequestAnnouncementsResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCBannedWordListRequest& from); + void CopyFrom(const CMsgGCRequestAnnouncementsResponse& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCBannedWordListRequest& from) { - CMsgGCBannedWordListRequest::MergeImpl(*this, from); + void MergeFrom( const CMsgGCRequestAnnouncementsResponse& from) { + CMsgGCRequestAnnouncementsResponse::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -12460,15 +12459,15 @@ class CMsgGCBannedWordListRequest : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCBannedWordListRequest* other); + void InternalSwap(CMsgGCRequestAnnouncementsResponse* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCBannedWordListRequest"; + return "CMsgGCRequestAnnouncementsResponse"; } protected: - explicit CMsgGCBannedWordListRequest(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCRequestAnnouncementsResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -12482,36 +12481,84 @@ class CMsgGCBannedWordListRequest : // accessors ------------------------------------------------------- enum : int { - kBanListGroupIdFieldNumber = 1, - kWordIdFieldNumber = 2, + kAnnouncementTitleFieldNumber = 1, + kAnnouncementFieldNumber = 2, + kNextmatchTitleFieldNumber = 3, + kNextmatchFieldNumber = 4, }; - // optional uint32 ban_list_group_id = 1; - bool has_ban_list_group_id() const; + // optional string announcement_title = 1; + bool has_announcement_title() const; private: - bool _internal_has_ban_list_group_id() const; + bool _internal_has_announcement_title() const; public: - void clear_ban_list_group_id(); - uint32_t ban_list_group_id() const; - void set_ban_list_group_id(uint32_t value); + void clear_announcement_title(); + const std::string& announcement_title() const; + template + void set_announcement_title(ArgT0&& arg0, ArgT... args); + std::string* mutable_announcement_title(); + PROTOBUF_NODISCARD std::string* release_announcement_title(); + void set_allocated_announcement_title(std::string* announcement_title); private: - uint32_t _internal_ban_list_group_id() const; - void _internal_set_ban_list_group_id(uint32_t value); + const std::string& _internal_announcement_title() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_announcement_title(const std::string& value); + std::string* _internal_mutable_announcement_title(); public: - // optional uint32 word_id = 2; - bool has_word_id() const; + // optional string announcement = 2; + bool has_announcement() const; private: - bool _internal_has_word_id() const; + bool _internal_has_announcement() const; public: - void clear_word_id(); - uint32_t word_id() const; - void set_word_id(uint32_t value); + void clear_announcement(); + const std::string& announcement() const; + template + void set_announcement(ArgT0&& arg0, ArgT... args); + std::string* mutable_announcement(); + PROTOBUF_NODISCARD std::string* release_announcement(); + void set_allocated_announcement(std::string* announcement); private: - uint32_t _internal_word_id() const; - void _internal_set_word_id(uint32_t value); + const std::string& _internal_announcement() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_announcement(const std::string& value); + std::string* _internal_mutable_announcement(); public: - // @@protoc_insertion_point(class_scope:CMsgGCBannedWordListRequest) + // optional string nextmatch_title = 3; + bool has_nextmatch_title() const; + private: + bool _internal_has_nextmatch_title() const; + public: + void clear_nextmatch_title(); + const std::string& nextmatch_title() const; + template + void set_nextmatch_title(ArgT0&& arg0, ArgT... args); + std::string* mutable_nextmatch_title(); + PROTOBUF_NODISCARD std::string* release_nextmatch_title(); + void set_allocated_nextmatch_title(std::string* nextmatch_title); + private: + const std::string& _internal_nextmatch_title() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_nextmatch_title(const std::string& value); + std::string* _internal_mutable_nextmatch_title(); + public: + + // optional string nextmatch = 4; + bool has_nextmatch() const; + private: + bool _internal_has_nextmatch() const; + public: + void clear_nextmatch(); + const std::string& nextmatch() const; + template + void set_nextmatch(ArgT0&& arg0, ArgT... args); + std::string* mutable_nextmatch(); + PROTOBUF_NODISCARD std::string* release_nextmatch(); + void set_allocated_nextmatch(std::string* nextmatch); + private: + const std::string& _internal_nextmatch() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_nextmatch(const std::string& value); + std::string* _internal_mutable_nextmatch(); + public: + + // @@protoc_insertion_point(class_scope:CMsgGCRequestAnnouncementsResponse) private: class _Internal; @@ -12521,31 +12568,34 @@ class CMsgGCBannedWordListRequest : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t ban_list_group_id_; - uint32_t word_id_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr announcement_title_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr announcement_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr nextmatch_title_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr nextmatch_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCRequestAnnouncements : - public ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:CMsgGCRequestAnnouncements) */ { +class CMsgGCBannedWord : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCBannedWord) */ { public: - inline CMsgGCRequestAnnouncements() : CMsgGCRequestAnnouncements(nullptr) {} - explicit PROTOBUF_CONSTEXPR CMsgGCRequestAnnouncements(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCBannedWord() : CMsgGCBannedWord(nullptr) {} + ~CMsgGCBannedWord() override; + explicit PROTOBUF_CONSTEXPR CMsgGCBannedWord(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCRequestAnnouncements(const CMsgGCRequestAnnouncements& from); - CMsgGCRequestAnnouncements(CMsgGCRequestAnnouncements&& from) noexcept - : CMsgGCRequestAnnouncements() { + CMsgGCBannedWord(const CMsgGCBannedWord& from); + CMsgGCBannedWord(CMsgGCBannedWord&& from) noexcept + : CMsgGCBannedWord() { *this = ::std::move(from); } - inline CMsgGCRequestAnnouncements& operator=(const CMsgGCRequestAnnouncements& from) { + inline CMsgGCBannedWord& operator=(const CMsgGCBannedWord& from) { CopyFrom(from); return *this; } - inline CMsgGCRequestAnnouncements& operator=(CMsgGCRequestAnnouncements&& from) noexcept { + inline CMsgGCBannedWord& operator=(CMsgGCBannedWord&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -12575,20 +12625,20 @@ class CMsgGCRequestAnnouncements : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCRequestAnnouncements& default_instance() { + static const CMsgGCBannedWord& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCRequestAnnouncements* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCRequestAnnouncements_default_instance_); + static inline const CMsgGCBannedWord* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCBannedWord_default_instance_); } static constexpr int kIndexInFileMessages = 60; - friend void swap(CMsgGCRequestAnnouncements& a, CMsgGCRequestAnnouncements& b) { + friend void swap(CMsgGCBannedWord& a, CMsgGCBannedWord& b) { a.Swap(&b); } - inline void Swap(CMsgGCRequestAnnouncements* other) { + inline void Swap(CMsgGCBannedWord* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -12601,7 +12651,7 @@ class CMsgGCRequestAnnouncements : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCRequestAnnouncements* other) { + void UnsafeArenaSwap(CMsgGCBannedWord* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -12609,26 +12659,40 @@ class CMsgGCRequestAnnouncements : // implements Message ---------------------------------------------- - CMsgGCRequestAnnouncements* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); - } - using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyFrom; - inline void CopyFrom(const CMsgGCRequestAnnouncements& from) { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl(*this, from); + CMsgGCBannedWord* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } - using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const CMsgGCRequestAnnouncements& from) { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl(*this, from); + using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; + void CopyFrom(const CMsgGCBannedWord& from); + using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; + void MergeFrom( const CMsgGCBannedWord& from) { + CMsgGCBannedWord::MergeImpl(*this, from); } + private: + static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); public: + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; + uint8_t* _InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const final { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(CMsgGCBannedWord* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCRequestAnnouncements"; + return "CMsgGCBannedWord"; } protected: - explicit CMsgGCRequestAnnouncements(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCBannedWord(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -12641,37 +12705,92 @@ class CMsgGCRequestAnnouncements : // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:CMsgGCRequestAnnouncements) - private: - class _Internal; - - template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + enum : int { + kWordFieldNumber = 3, + kWordIdFieldNumber = 1, + kWordTypeFieldNumber = 2, + }; + // optional string word = 3; + bool has_word() const; + private: + bool _internal_has_word() const; + public: + void clear_word(); + const std::string& word() const; + template + void set_word(ArgT0&& arg0, ArgT... args); + std::string* mutable_word(); + PROTOBUF_NODISCARD std::string* release_word(); + void set_allocated_word(std::string* word); + private: + const std::string& _internal_word() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_word(const std::string& value); + std::string* _internal_mutable_word(); + public: + + // optional uint32 word_id = 1; + bool has_word_id() const; + private: + bool _internal_has_word_id() const; + public: + void clear_word_id(); + uint32_t word_id() const; + void set_word_id(uint32_t value); + private: + uint32_t _internal_word_id() const; + void _internal_set_word_id(uint32_t value); + public: + + // optional .GC_BannedWordType word_type = 2 [default = GC_BANNED_WORD_DISABLE_WORD]; + bool has_word_type() const; + private: + bool _internal_has_word_type() const; + public: + void clear_word_type(); + ::GC_BannedWordType word_type() const; + void set_word_type(::GC_BannedWordType value); + private: + ::GC_BannedWordType _internal_word_type() const; + void _internal_set_word_type(::GC_BannedWordType value); + public: + + // @@protoc_insertion_point(class_scope:CMsgGCBannedWord) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; typedef void InternalArenaConstructable_; typedef void DestructorSkippable_; struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr word_; + uint32_t word_id_; + int word_type_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + union { Impl_ _impl_; }; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCRequestAnnouncementsResponse : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCRequestAnnouncementsResponse) */ { +class CMsgGCBannedWordListResponse : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCBannedWordListResponse) */ { public: - inline CMsgGCRequestAnnouncementsResponse() : CMsgGCRequestAnnouncementsResponse(nullptr) {} - ~CMsgGCRequestAnnouncementsResponse() override; - explicit PROTOBUF_CONSTEXPR CMsgGCRequestAnnouncementsResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCBannedWordListResponse() : CMsgGCBannedWordListResponse(nullptr) {} + ~CMsgGCBannedWordListResponse() override; + explicit PROTOBUF_CONSTEXPR CMsgGCBannedWordListResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCRequestAnnouncementsResponse(const CMsgGCRequestAnnouncementsResponse& from); - CMsgGCRequestAnnouncementsResponse(CMsgGCRequestAnnouncementsResponse&& from) noexcept - : CMsgGCRequestAnnouncementsResponse() { + CMsgGCBannedWordListResponse(const CMsgGCBannedWordListResponse& from); + CMsgGCBannedWordListResponse(CMsgGCBannedWordListResponse&& from) noexcept + : CMsgGCBannedWordListResponse() { *this = ::std::move(from); } - inline CMsgGCRequestAnnouncementsResponse& operator=(const CMsgGCRequestAnnouncementsResponse& from) { + inline CMsgGCBannedWordListResponse& operator=(const CMsgGCBannedWordListResponse& from) { CopyFrom(from); return *this; } - inline CMsgGCRequestAnnouncementsResponse& operator=(CMsgGCRequestAnnouncementsResponse&& from) noexcept { + inline CMsgGCBannedWordListResponse& operator=(CMsgGCBannedWordListResponse&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -12701,20 +12820,20 @@ class CMsgGCRequestAnnouncementsResponse : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCRequestAnnouncementsResponse& default_instance() { + static const CMsgGCBannedWordListResponse& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCRequestAnnouncementsResponse* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCRequestAnnouncementsResponse_default_instance_); + static inline const CMsgGCBannedWordListResponse* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCBannedWordListResponse_default_instance_); } static constexpr int kIndexInFileMessages = 61; - friend void swap(CMsgGCRequestAnnouncementsResponse& a, CMsgGCRequestAnnouncementsResponse& b) { + friend void swap(CMsgGCBannedWordListResponse& a, CMsgGCBannedWordListResponse& b) { a.Swap(&b); } - inline void Swap(CMsgGCRequestAnnouncementsResponse* other) { + inline void Swap(CMsgGCBannedWordListResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -12727,7 +12846,7 @@ class CMsgGCRequestAnnouncementsResponse : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCRequestAnnouncementsResponse* other) { + void UnsafeArenaSwap(CMsgGCBannedWordListResponse* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -12735,14 +12854,14 @@ class CMsgGCRequestAnnouncementsResponse : // implements Message ---------------------------------------------- - CMsgGCRequestAnnouncementsResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCBannedWordListResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCRequestAnnouncementsResponse& from); + void CopyFrom(const CMsgGCBannedWordListResponse& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCRequestAnnouncementsResponse& from) { - CMsgGCRequestAnnouncementsResponse::MergeImpl(*this, from); + void MergeFrom( const CMsgGCBannedWordListResponse& from) { + CMsgGCBannedWordListResponse::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -12760,15 +12879,15 @@ class CMsgGCRequestAnnouncementsResponse : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCRequestAnnouncementsResponse* other); + void InternalSwap(CMsgGCBannedWordListResponse* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCRequestAnnouncementsResponse"; + return "CMsgGCBannedWordListResponse"; } protected: - explicit CMsgGCRequestAnnouncementsResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCBannedWordListResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -12782,84 +12901,41 @@ class CMsgGCRequestAnnouncementsResponse : // accessors ------------------------------------------------------- enum : int { - kAnnouncementTitleFieldNumber = 1, - kAnnouncementFieldNumber = 2, - kNextmatchTitleFieldNumber = 3, - kNextmatchFieldNumber = 4, + kWordListFieldNumber = 2, + kBanListGroupIdFieldNumber = 1, }; - // optional string announcement_title = 1; - bool has_announcement_title() const; - private: - bool _internal_has_announcement_title() const; - public: - void clear_announcement_title(); - const std::string& announcement_title() const; - template - void set_announcement_title(ArgT0&& arg0, ArgT... args); - std::string* mutable_announcement_title(); - PROTOBUF_NODISCARD std::string* release_announcement_title(); - void set_allocated_announcement_title(std::string* announcement_title); - private: - const std::string& _internal_announcement_title() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_announcement_title(const std::string& value); - std::string* _internal_mutable_announcement_title(); - public: - - // optional string announcement = 2; - bool has_announcement() const; - private: - bool _internal_has_announcement() const; - public: - void clear_announcement(); - const std::string& announcement() const; - template - void set_announcement(ArgT0&& arg0, ArgT... args); - std::string* mutable_announcement(); - PROTOBUF_NODISCARD std::string* release_announcement(); - void set_allocated_announcement(std::string* announcement); - private: - const std::string& _internal_announcement() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_announcement(const std::string& value); - std::string* _internal_mutable_announcement(); - public: - - // optional string nextmatch_title = 3; - bool has_nextmatch_title() const; + // repeated .CMsgGCBannedWord word_list = 2; + int word_list_size() const; private: - bool _internal_has_nextmatch_title() const; + int _internal_word_list_size() const; public: - void clear_nextmatch_title(); - const std::string& nextmatch_title() const; - template - void set_nextmatch_title(ArgT0&& arg0, ArgT... args); - std::string* mutable_nextmatch_title(); - PROTOBUF_NODISCARD std::string* release_nextmatch_title(); - void set_allocated_nextmatch_title(std::string* nextmatch_title); + void clear_word_list(); + ::CMsgGCBannedWord* mutable_word_list(int index); + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgGCBannedWord >* + mutable_word_list(); private: - const std::string& _internal_nextmatch_title() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_nextmatch_title(const std::string& value); - std::string* _internal_mutable_nextmatch_title(); + const ::CMsgGCBannedWord& _internal_word_list(int index) const; + ::CMsgGCBannedWord* _internal_add_word_list(); public: + const ::CMsgGCBannedWord& word_list(int index) const; + ::CMsgGCBannedWord* add_word_list(); + const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgGCBannedWord >& + word_list() const; - // optional string nextmatch = 4; - bool has_nextmatch() const; + // optional uint32 ban_list_group_id = 1; + bool has_ban_list_group_id() const; private: - bool _internal_has_nextmatch() const; + bool _internal_has_ban_list_group_id() const; public: - void clear_nextmatch(); - const std::string& nextmatch() const; - template - void set_nextmatch(ArgT0&& arg0, ArgT... args); - std::string* mutable_nextmatch(); - PROTOBUF_NODISCARD std::string* release_nextmatch(); - void set_allocated_nextmatch(std::string* nextmatch); + void clear_ban_list_group_id(); + uint32_t ban_list_group_id() const; + void set_ban_list_group_id(uint32_t value); private: - const std::string& _internal_nextmatch() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_nextmatch(const std::string& value); - std::string* _internal_mutable_nextmatch(); + uint32_t _internal_ban_list_group_id() const; + void _internal_set_ban_list_group_id(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCRequestAnnouncementsResponse) + // @@protoc_insertion_point(class_scope:CMsgGCBannedWordListResponse) private: class _Internal; @@ -12869,34 +12945,32 @@ class CMsgGCRequestAnnouncementsResponse : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr announcement_title_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr announcement_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr nextmatch_title_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr nextmatch_; + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgGCBannedWord > word_list_; + uint32_t ban_list_group_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCBannedWord : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCBannedWord) */ { +class CMsgGCToGCBannedWordListBroadcast : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCBannedWordListBroadcast) */ { public: - inline CMsgGCBannedWord() : CMsgGCBannedWord(nullptr) {} - ~CMsgGCBannedWord() override; - explicit PROTOBUF_CONSTEXPR CMsgGCBannedWord(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCToGCBannedWordListBroadcast() : CMsgGCToGCBannedWordListBroadcast(nullptr) {} + ~CMsgGCToGCBannedWordListBroadcast() override; + explicit PROTOBUF_CONSTEXPR CMsgGCToGCBannedWordListBroadcast(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCBannedWord(const CMsgGCBannedWord& from); - CMsgGCBannedWord(CMsgGCBannedWord&& from) noexcept - : CMsgGCBannedWord() { + CMsgGCToGCBannedWordListBroadcast(const CMsgGCToGCBannedWordListBroadcast& from); + CMsgGCToGCBannedWordListBroadcast(CMsgGCToGCBannedWordListBroadcast&& from) noexcept + : CMsgGCToGCBannedWordListBroadcast() { *this = ::std::move(from); } - inline CMsgGCBannedWord& operator=(const CMsgGCBannedWord& from) { + inline CMsgGCToGCBannedWordListBroadcast& operator=(const CMsgGCToGCBannedWordListBroadcast& from) { CopyFrom(from); return *this; } - inline CMsgGCBannedWord& operator=(CMsgGCBannedWord&& from) noexcept { + inline CMsgGCToGCBannedWordListBroadcast& operator=(CMsgGCToGCBannedWordListBroadcast&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -12926,20 +13000,20 @@ class CMsgGCBannedWord : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCBannedWord& default_instance() { + static const CMsgGCToGCBannedWordListBroadcast& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCBannedWord* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCBannedWord_default_instance_); + static inline const CMsgGCToGCBannedWordListBroadcast* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCToGCBannedWordListBroadcast_default_instance_); } static constexpr int kIndexInFileMessages = 62; - friend void swap(CMsgGCBannedWord& a, CMsgGCBannedWord& b) { + friend void swap(CMsgGCToGCBannedWordListBroadcast& a, CMsgGCToGCBannedWordListBroadcast& b) { a.Swap(&b); } - inline void Swap(CMsgGCBannedWord* other) { + inline void Swap(CMsgGCToGCBannedWordListBroadcast* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -12952,7 +13026,7 @@ class CMsgGCBannedWord : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCBannedWord* other) { + void UnsafeArenaSwap(CMsgGCToGCBannedWordListBroadcast* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -12960,14 +13034,14 @@ class CMsgGCBannedWord : // implements Message ---------------------------------------------- - CMsgGCBannedWord* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCToGCBannedWordListBroadcast* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCBannedWord& from); + void CopyFrom(const CMsgGCToGCBannedWordListBroadcast& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCBannedWord& from) { - CMsgGCBannedWord::MergeImpl(*this, from); + void MergeFrom( const CMsgGCToGCBannedWordListBroadcast& from) { + CMsgGCToGCBannedWordListBroadcast::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -12985,15 +13059,15 @@ class CMsgGCBannedWord : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCBannedWord* other); + void InternalSwap(CMsgGCToGCBannedWordListBroadcast* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCBannedWord"; + return "CMsgGCToGCBannedWordListBroadcast"; } protected: - explicit CMsgGCBannedWord(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCToGCBannedWordListBroadcast(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -13007,55 +13081,27 @@ class CMsgGCBannedWord : // accessors ------------------------------------------------------- enum : int { - kWordFieldNumber = 3, - kWordIdFieldNumber = 1, - kWordTypeFieldNumber = 2, + kBroadcastFieldNumber = 1, }; - // optional string word = 3; - bool has_word() const; - private: - bool _internal_has_word() const; - public: - void clear_word(); - const std::string& word() const; - template - void set_word(ArgT0&& arg0, ArgT... args); - std::string* mutable_word(); - PROTOBUF_NODISCARD std::string* release_word(); - void set_allocated_word(std::string* word); - private: - const std::string& _internal_word() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_word(const std::string& value); - std::string* _internal_mutable_word(); - public: - - // optional uint32 word_id = 1; - bool has_word_id() const; - private: - bool _internal_has_word_id() const; - public: - void clear_word_id(); - uint32_t word_id() const; - void set_word_id(uint32_t value); - private: - uint32_t _internal_word_id() const; - void _internal_set_word_id(uint32_t value); - public: - - // optional .GC_BannedWordType word_type = 2 [default = GC_BANNED_WORD_DISABLE_WORD]; - bool has_word_type() const; + // optional .CMsgGCBannedWordListResponse broadcast = 1; + bool has_broadcast() const; private: - bool _internal_has_word_type() const; + bool _internal_has_broadcast() const; public: - void clear_word_type(); - ::GC_BannedWordType word_type() const; - void set_word_type(::GC_BannedWordType value); + void clear_broadcast(); + const ::CMsgGCBannedWordListResponse& broadcast() const; + PROTOBUF_NODISCARD ::CMsgGCBannedWordListResponse* release_broadcast(); + ::CMsgGCBannedWordListResponse* mutable_broadcast(); + void set_allocated_broadcast(::CMsgGCBannedWordListResponse* broadcast); private: - ::GC_BannedWordType _internal_word_type() const; - void _internal_set_word_type(::GC_BannedWordType value); + const ::CMsgGCBannedWordListResponse& _internal_broadcast() const; + ::CMsgGCBannedWordListResponse* _internal_mutable_broadcast(); public: + void unsafe_arena_set_allocated_broadcast( + ::CMsgGCBannedWordListResponse* broadcast); + ::CMsgGCBannedWordListResponse* unsafe_arena_release_broadcast(); - // @@protoc_insertion_point(class_scope:CMsgGCBannedWord) + // @@protoc_insertion_point(class_scope:CMsgGCToGCBannedWordListBroadcast) private: class _Internal; @@ -13065,33 +13111,31 @@ class CMsgGCBannedWord : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr word_; - uint32_t word_id_; - int word_type_; + ::CMsgGCBannedWordListResponse* broadcast_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCBannedWordListResponse : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCBannedWordListResponse) */ { +class CMsgGCToGCBannedWordListUpdated : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCBannedWordListUpdated) */ { public: - inline CMsgGCBannedWordListResponse() : CMsgGCBannedWordListResponse(nullptr) {} - ~CMsgGCBannedWordListResponse() override; - explicit PROTOBUF_CONSTEXPR CMsgGCBannedWordListResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCToGCBannedWordListUpdated() : CMsgGCToGCBannedWordListUpdated(nullptr) {} + ~CMsgGCToGCBannedWordListUpdated() override; + explicit PROTOBUF_CONSTEXPR CMsgGCToGCBannedWordListUpdated(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCBannedWordListResponse(const CMsgGCBannedWordListResponse& from); - CMsgGCBannedWordListResponse(CMsgGCBannedWordListResponse&& from) noexcept - : CMsgGCBannedWordListResponse() { + CMsgGCToGCBannedWordListUpdated(const CMsgGCToGCBannedWordListUpdated& from); + CMsgGCToGCBannedWordListUpdated(CMsgGCToGCBannedWordListUpdated&& from) noexcept + : CMsgGCToGCBannedWordListUpdated() { *this = ::std::move(from); } - inline CMsgGCBannedWordListResponse& operator=(const CMsgGCBannedWordListResponse& from) { + inline CMsgGCToGCBannedWordListUpdated& operator=(const CMsgGCToGCBannedWordListUpdated& from) { CopyFrom(from); return *this; } - inline CMsgGCBannedWordListResponse& operator=(CMsgGCBannedWordListResponse&& from) noexcept { + inline CMsgGCToGCBannedWordListUpdated& operator=(CMsgGCToGCBannedWordListUpdated&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -13121,20 +13165,20 @@ class CMsgGCBannedWordListResponse : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCBannedWordListResponse& default_instance() { + static const CMsgGCToGCBannedWordListUpdated& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCBannedWordListResponse* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCBannedWordListResponse_default_instance_); + static inline const CMsgGCToGCBannedWordListUpdated* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCToGCBannedWordListUpdated_default_instance_); } static constexpr int kIndexInFileMessages = 63; - friend void swap(CMsgGCBannedWordListResponse& a, CMsgGCBannedWordListResponse& b) { + friend void swap(CMsgGCToGCBannedWordListUpdated& a, CMsgGCToGCBannedWordListUpdated& b) { a.Swap(&b); } - inline void Swap(CMsgGCBannedWordListResponse* other) { + inline void Swap(CMsgGCToGCBannedWordListUpdated* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -13147,7 +13191,7 @@ class CMsgGCBannedWordListResponse : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCBannedWordListResponse* other) { + void UnsafeArenaSwap(CMsgGCToGCBannedWordListUpdated* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -13155,14 +13199,14 @@ class CMsgGCBannedWordListResponse : // implements Message ---------------------------------------------- - CMsgGCBannedWordListResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCToGCBannedWordListUpdated* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCBannedWordListResponse& from); + void CopyFrom(const CMsgGCToGCBannedWordListUpdated& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCBannedWordListResponse& from) { - CMsgGCBannedWordListResponse::MergeImpl(*this, from); + void MergeFrom( const CMsgGCToGCBannedWordListUpdated& from) { + CMsgGCToGCBannedWordListUpdated::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -13180,15 +13224,15 @@ class CMsgGCBannedWordListResponse : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCBannedWordListResponse* other); + void InternalSwap(CMsgGCToGCBannedWordListUpdated* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCBannedWordListResponse"; + return "CMsgGCToGCBannedWordListUpdated"; } protected: - explicit CMsgGCBannedWordListResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCToGCBannedWordListUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -13202,41 +13246,22 @@ class CMsgGCBannedWordListResponse : // accessors ------------------------------------------------------- enum : int { - kWordListFieldNumber = 2, - kBanListGroupIdFieldNumber = 1, + kGroupIdFieldNumber = 1, }; - // repeated .CMsgGCBannedWord word_list = 2; - int word_list_size() const; - private: - int _internal_word_list_size() const; - public: - void clear_word_list(); - ::CMsgGCBannedWord* mutable_word_list(int index); - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgGCBannedWord >* - mutable_word_list(); - private: - const ::CMsgGCBannedWord& _internal_word_list(int index) const; - ::CMsgGCBannedWord* _internal_add_word_list(); - public: - const ::CMsgGCBannedWord& word_list(int index) const; - ::CMsgGCBannedWord* add_word_list(); - const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgGCBannedWord >& - word_list() const; - - // optional uint32 ban_list_group_id = 1; - bool has_ban_list_group_id() const; + // optional uint32 group_id = 1; + bool has_group_id() const; private: - bool _internal_has_ban_list_group_id() const; + bool _internal_has_group_id() const; public: - void clear_ban_list_group_id(); - uint32_t ban_list_group_id() const; - void set_ban_list_group_id(uint32_t value); + void clear_group_id(); + uint32_t group_id() const; + void set_group_id(uint32_t value); private: - uint32_t _internal_ban_list_group_id() const; - void _internal_set_ban_list_group_id(uint32_t value); + uint32_t _internal_group_id() const; + void _internal_set_group_id(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCBannedWordListResponse) + // @@protoc_insertion_point(class_scope:CMsgGCToGCBannedWordListUpdated) private: class _Internal; @@ -13246,32 +13271,31 @@ class CMsgGCBannedWordListResponse : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgGCBannedWord > word_list_; - uint32_t ban_list_group_id_; + uint32_t group_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCToGCBannedWordListBroadcast : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCBannedWordListBroadcast) */ { +class CMsgGCToGCDirtySDOCache : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCDirtySDOCache) */ { public: - inline CMsgGCToGCBannedWordListBroadcast() : CMsgGCToGCBannedWordListBroadcast(nullptr) {} - ~CMsgGCToGCBannedWordListBroadcast() override; - explicit PROTOBUF_CONSTEXPR CMsgGCToGCBannedWordListBroadcast(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCToGCDirtySDOCache() : CMsgGCToGCDirtySDOCache(nullptr) {} + ~CMsgGCToGCDirtySDOCache() override; + explicit PROTOBUF_CONSTEXPR CMsgGCToGCDirtySDOCache(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCToGCBannedWordListBroadcast(const CMsgGCToGCBannedWordListBroadcast& from); - CMsgGCToGCBannedWordListBroadcast(CMsgGCToGCBannedWordListBroadcast&& from) noexcept - : CMsgGCToGCBannedWordListBroadcast() { + CMsgGCToGCDirtySDOCache(const CMsgGCToGCDirtySDOCache& from); + CMsgGCToGCDirtySDOCache(CMsgGCToGCDirtySDOCache&& from) noexcept + : CMsgGCToGCDirtySDOCache() { *this = ::std::move(from); } - inline CMsgGCToGCBannedWordListBroadcast& operator=(const CMsgGCToGCBannedWordListBroadcast& from) { + inline CMsgGCToGCDirtySDOCache& operator=(const CMsgGCToGCDirtySDOCache& from) { CopyFrom(from); return *this; } - inline CMsgGCToGCBannedWordListBroadcast& operator=(CMsgGCToGCBannedWordListBroadcast&& from) noexcept { + inline CMsgGCToGCDirtySDOCache& operator=(CMsgGCToGCDirtySDOCache&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -13301,20 +13325,20 @@ class CMsgGCToGCBannedWordListBroadcast : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCToGCBannedWordListBroadcast& default_instance() { + static const CMsgGCToGCDirtySDOCache& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCToGCBannedWordListBroadcast* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCToGCBannedWordListBroadcast_default_instance_); + static inline const CMsgGCToGCDirtySDOCache* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCToGCDirtySDOCache_default_instance_); } static constexpr int kIndexInFileMessages = 64; - friend void swap(CMsgGCToGCBannedWordListBroadcast& a, CMsgGCToGCBannedWordListBroadcast& b) { + friend void swap(CMsgGCToGCDirtySDOCache& a, CMsgGCToGCDirtySDOCache& b) { a.Swap(&b); } - inline void Swap(CMsgGCToGCBannedWordListBroadcast* other) { + inline void Swap(CMsgGCToGCDirtySDOCache* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -13327,7 +13351,7 @@ class CMsgGCToGCBannedWordListBroadcast : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCToGCBannedWordListBroadcast* other) { + void UnsafeArenaSwap(CMsgGCToGCDirtySDOCache* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -13335,14 +13359,14 @@ class CMsgGCToGCBannedWordListBroadcast : // implements Message ---------------------------------------------- - CMsgGCToGCBannedWordListBroadcast* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCToGCDirtySDOCache* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCToGCBannedWordListBroadcast& from); + void CopyFrom(const CMsgGCToGCDirtySDOCache& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCToGCBannedWordListBroadcast& from) { - CMsgGCToGCBannedWordListBroadcast::MergeImpl(*this, from); + void MergeFrom( const CMsgGCToGCDirtySDOCache& from) { + CMsgGCToGCDirtySDOCache::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -13360,15 +13384,15 @@ class CMsgGCToGCBannedWordListBroadcast : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCToGCBannedWordListBroadcast* other); + void InternalSwap(CMsgGCToGCDirtySDOCache* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCToGCBannedWordListBroadcast"; + return "CMsgGCToGCDirtySDOCache"; } protected: - explicit CMsgGCToGCBannedWordListBroadcast(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCToGCDirtySDOCache(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -13382,27 +13406,36 @@ class CMsgGCToGCBannedWordListBroadcast : // accessors ------------------------------------------------------- enum : int { - kBroadcastFieldNumber = 1, + kKeyUint64FieldNumber = 2, + kSdoTypeFieldNumber = 1, }; - // optional .CMsgGCBannedWordListResponse broadcast = 1; - bool has_broadcast() const; + // optional uint64 key_uint64 = 2; + bool has_key_uint64() const; private: - bool _internal_has_broadcast() const; + bool _internal_has_key_uint64() const; public: - void clear_broadcast(); - const ::CMsgGCBannedWordListResponse& broadcast() const; - PROTOBUF_NODISCARD ::CMsgGCBannedWordListResponse* release_broadcast(); - ::CMsgGCBannedWordListResponse* mutable_broadcast(); - void set_allocated_broadcast(::CMsgGCBannedWordListResponse* broadcast); + void clear_key_uint64(); + uint64_t key_uint64() const; + void set_key_uint64(uint64_t value); private: - const ::CMsgGCBannedWordListResponse& _internal_broadcast() const; - ::CMsgGCBannedWordListResponse* _internal_mutable_broadcast(); + uint64_t _internal_key_uint64() const; + void _internal_set_key_uint64(uint64_t value); public: - void unsafe_arena_set_allocated_broadcast( - ::CMsgGCBannedWordListResponse* broadcast); - ::CMsgGCBannedWordListResponse* unsafe_arena_release_broadcast(); - // @@protoc_insertion_point(class_scope:CMsgGCToGCBannedWordListBroadcast) + // optional uint32 sdo_type = 1; + bool has_sdo_type() const; + private: + bool _internal_has_sdo_type() const; + public: + void clear_sdo_type(); + uint32_t sdo_type() const; + void set_sdo_type(uint32_t value); + private: + uint32_t _internal_sdo_type() const; + void _internal_set_sdo_type(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgGCToGCDirtySDOCache) private: class _Internal; @@ -13412,31 +13445,32 @@ class CMsgGCToGCBannedWordListBroadcast : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::CMsgGCBannedWordListResponse* broadcast_; + uint64_t key_uint64_; + uint32_t sdo_type_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCToGCBannedWordListUpdated : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCBannedWordListUpdated) */ { +class CMsgGCToGCDirtyMultipleSDOCache : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCDirtyMultipleSDOCache) */ { public: - inline CMsgGCToGCBannedWordListUpdated() : CMsgGCToGCBannedWordListUpdated(nullptr) {} - ~CMsgGCToGCBannedWordListUpdated() override; - explicit PROTOBUF_CONSTEXPR CMsgGCToGCBannedWordListUpdated(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - - CMsgGCToGCBannedWordListUpdated(const CMsgGCToGCBannedWordListUpdated& from); - CMsgGCToGCBannedWordListUpdated(CMsgGCToGCBannedWordListUpdated&& from) noexcept - : CMsgGCToGCBannedWordListUpdated() { + inline CMsgGCToGCDirtyMultipleSDOCache() : CMsgGCToGCDirtyMultipleSDOCache(nullptr) {} + ~CMsgGCToGCDirtyMultipleSDOCache() override; + explicit PROTOBUF_CONSTEXPR CMsgGCToGCDirtyMultipleSDOCache(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + + CMsgGCToGCDirtyMultipleSDOCache(const CMsgGCToGCDirtyMultipleSDOCache& from); + CMsgGCToGCDirtyMultipleSDOCache(CMsgGCToGCDirtyMultipleSDOCache&& from) noexcept + : CMsgGCToGCDirtyMultipleSDOCache() { *this = ::std::move(from); } - inline CMsgGCToGCBannedWordListUpdated& operator=(const CMsgGCToGCBannedWordListUpdated& from) { + inline CMsgGCToGCDirtyMultipleSDOCache& operator=(const CMsgGCToGCDirtyMultipleSDOCache& from) { CopyFrom(from); return *this; } - inline CMsgGCToGCBannedWordListUpdated& operator=(CMsgGCToGCBannedWordListUpdated&& from) noexcept { + inline CMsgGCToGCDirtyMultipleSDOCache& operator=(CMsgGCToGCDirtyMultipleSDOCache&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -13466,20 +13500,20 @@ class CMsgGCToGCBannedWordListUpdated : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCToGCBannedWordListUpdated& default_instance() { + static const CMsgGCToGCDirtyMultipleSDOCache& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCToGCBannedWordListUpdated* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCToGCBannedWordListUpdated_default_instance_); + static inline const CMsgGCToGCDirtyMultipleSDOCache* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCToGCDirtyMultipleSDOCache_default_instance_); } static constexpr int kIndexInFileMessages = 65; - friend void swap(CMsgGCToGCBannedWordListUpdated& a, CMsgGCToGCBannedWordListUpdated& b) { + friend void swap(CMsgGCToGCDirtyMultipleSDOCache& a, CMsgGCToGCDirtyMultipleSDOCache& b) { a.Swap(&b); } - inline void Swap(CMsgGCToGCBannedWordListUpdated* other) { + inline void Swap(CMsgGCToGCDirtyMultipleSDOCache* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -13492,7 +13526,7 @@ class CMsgGCToGCBannedWordListUpdated : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCToGCBannedWordListUpdated* other) { + void UnsafeArenaSwap(CMsgGCToGCDirtyMultipleSDOCache* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -13500,14 +13534,14 @@ class CMsgGCToGCBannedWordListUpdated : // implements Message ---------------------------------------------- - CMsgGCToGCBannedWordListUpdated* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCToGCDirtyMultipleSDOCache* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCToGCBannedWordListUpdated& from); + void CopyFrom(const CMsgGCToGCDirtyMultipleSDOCache& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCToGCBannedWordListUpdated& from) { - CMsgGCToGCBannedWordListUpdated::MergeImpl(*this, from); + void MergeFrom( const CMsgGCToGCDirtyMultipleSDOCache& from) { + CMsgGCToGCDirtyMultipleSDOCache::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -13525,15 +13559,15 @@ class CMsgGCToGCBannedWordListUpdated : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCToGCBannedWordListUpdated* other); + void InternalSwap(CMsgGCToGCDirtyMultipleSDOCache* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCToGCBannedWordListUpdated"; + return "CMsgGCToGCDirtyMultipleSDOCache"; } protected: - explicit CMsgGCToGCBannedWordListUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCToGCDirtyMultipleSDOCache(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -13547,22 +13581,45 @@ class CMsgGCToGCBannedWordListUpdated : // accessors ------------------------------------------------------- enum : int { - kGroupIdFieldNumber = 1, + kKeyUint64FieldNumber = 2, + kSdoTypeFieldNumber = 1, }; - // optional uint32 group_id = 1; - bool has_group_id() const; + // repeated uint64 key_uint64 = 2; + int key_uint64_size() const; private: - bool _internal_has_group_id() const; + int _internal_key_uint64_size() const; public: - void clear_group_id(); - uint32_t group_id() const; - void set_group_id(uint32_t value); + void clear_key_uint64(); private: - uint32_t _internal_group_id() const; - void _internal_set_group_id(uint32_t value); + uint64_t _internal_key_uint64(int index) const; + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& + _internal_key_uint64() const; + void _internal_add_key_uint64(uint64_t value); + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* + _internal_mutable_key_uint64(); public: + uint64_t key_uint64(int index) const; + void set_key_uint64(int index, uint64_t value); + void add_key_uint64(uint64_t value); + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& + key_uint64() const; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* + mutable_key_uint64(); - // @@protoc_insertion_point(class_scope:CMsgGCToGCBannedWordListUpdated) + // optional uint32 sdo_type = 1; + bool has_sdo_type() const; + private: + bool _internal_has_sdo_type() const; + public: + void clear_sdo_type(); + uint32_t sdo_type() const; + void set_sdo_type(uint32_t value); + private: + uint32_t _internal_sdo_type() const; + void _internal_set_sdo_type(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgGCToGCDirtyMultipleSDOCache) private: class _Internal; @@ -13572,31 +13629,32 @@ class CMsgGCToGCBannedWordListUpdated : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t group_id_; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t > key_uint64_; + uint32_t sdo_type_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CSOEconDefaultEquippedDefinitionInstanceClient : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconDefaultEquippedDefinitionInstanceClient) */ { +class CMsgGCCollectItem : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCCollectItem) */ { public: - inline CSOEconDefaultEquippedDefinitionInstanceClient() : CSOEconDefaultEquippedDefinitionInstanceClient(nullptr) {} - ~CSOEconDefaultEquippedDefinitionInstanceClient() override; - explicit PROTOBUF_CONSTEXPR CSOEconDefaultEquippedDefinitionInstanceClient(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCCollectItem() : CMsgGCCollectItem(nullptr) {} + ~CMsgGCCollectItem() override; + explicit PROTOBUF_CONSTEXPR CMsgGCCollectItem(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CSOEconDefaultEquippedDefinitionInstanceClient(const CSOEconDefaultEquippedDefinitionInstanceClient& from); - CSOEconDefaultEquippedDefinitionInstanceClient(CSOEconDefaultEquippedDefinitionInstanceClient&& from) noexcept - : CSOEconDefaultEquippedDefinitionInstanceClient() { + CMsgGCCollectItem(const CMsgGCCollectItem& from); + CMsgGCCollectItem(CMsgGCCollectItem&& from) noexcept + : CMsgGCCollectItem() { *this = ::std::move(from); } - inline CSOEconDefaultEquippedDefinitionInstanceClient& operator=(const CSOEconDefaultEquippedDefinitionInstanceClient& from) { + inline CMsgGCCollectItem& operator=(const CMsgGCCollectItem& from) { CopyFrom(from); return *this; } - inline CSOEconDefaultEquippedDefinitionInstanceClient& operator=(CSOEconDefaultEquippedDefinitionInstanceClient&& from) noexcept { + inline CMsgGCCollectItem& operator=(CMsgGCCollectItem&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -13626,20 +13684,20 @@ class CSOEconDefaultEquippedDefinitionInstanceClient : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CSOEconDefaultEquippedDefinitionInstanceClient& default_instance() { + static const CMsgGCCollectItem& default_instance() { return *internal_default_instance(); } - static inline const CSOEconDefaultEquippedDefinitionInstanceClient* internal_default_instance() { - return reinterpret_cast( - &_CSOEconDefaultEquippedDefinitionInstanceClient_default_instance_); + static inline const CMsgGCCollectItem* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCCollectItem_default_instance_); } static constexpr int kIndexInFileMessages = 66; - friend void swap(CSOEconDefaultEquippedDefinitionInstanceClient& a, CSOEconDefaultEquippedDefinitionInstanceClient& b) { + friend void swap(CMsgGCCollectItem& a, CMsgGCCollectItem& b) { a.Swap(&b); } - inline void Swap(CSOEconDefaultEquippedDefinitionInstanceClient* other) { + inline void Swap(CMsgGCCollectItem* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -13652,7 +13710,7 @@ class CSOEconDefaultEquippedDefinitionInstanceClient : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CSOEconDefaultEquippedDefinitionInstanceClient* other) { + void UnsafeArenaSwap(CMsgGCCollectItem* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -13660,14 +13718,14 @@ class CSOEconDefaultEquippedDefinitionInstanceClient : // implements Message ---------------------------------------------- - CSOEconDefaultEquippedDefinitionInstanceClient* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCCollectItem* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CSOEconDefaultEquippedDefinitionInstanceClient& from); + void CopyFrom(const CMsgGCCollectItem& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CSOEconDefaultEquippedDefinitionInstanceClient& from) { - CSOEconDefaultEquippedDefinitionInstanceClient::MergeImpl(*this, from); + void MergeFrom( const CMsgGCCollectItem& from) { + CMsgGCCollectItem::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -13685,15 +13743,15 @@ class CSOEconDefaultEquippedDefinitionInstanceClient : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CSOEconDefaultEquippedDefinitionInstanceClient* other); + void InternalSwap(CMsgGCCollectItem* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CSOEconDefaultEquippedDefinitionInstanceClient"; + return "CMsgGCCollectItem"; } protected: - explicit CSOEconDefaultEquippedDefinitionInstanceClient(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCCollectItem(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -13707,64 +13765,36 @@ class CSOEconDefaultEquippedDefinitionInstanceClient : // accessors ------------------------------------------------------- enum : int { - kAccountIdFieldNumber = 1, - kItemDefinitionFieldNumber = 2, - kClassIdFieldNumber = 3, - kSlotIdFieldNumber = 4, + kCollectionItemIdFieldNumber = 1, + kSubjectItemIdFieldNumber = 2, }; - // optional uint32 account_id = 1 [(.key_field) = true]; - bool has_account_id() const; - private: - bool _internal_has_account_id() const; - public: - void clear_account_id(); - uint32_t account_id() const; - void set_account_id(uint32_t value); - private: - uint32_t _internal_account_id() const; - void _internal_set_account_id(uint32_t value); - public: - - // optional uint32 item_definition = 2; - bool has_item_definition() const; - private: - bool _internal_has_item_definition() const; - public: - void clear_item_definition(); - uint32_t item_definition() const; - void set_item_definition(uint32_t value); - private: - uint32_t _internal_item_definition() const; - void _internal_set_item_definition(uint32_t value); - public: - - // optional uint32 class_id = 3 [(.key_field) = true]; - bool has_class_id() const; + // optional uint64 collection_item_id = 1; + bool has_collection_item_id() const; private: - bool _internal_has_class_id() const; + bool _internal_has_collection_item_id() const; public: - void clear_class_id(); - uint32_t class_id() const; - void set_class_id(uint32_t value); + void clear_collection_item_id(); + uint64_t collection_item_id() const; + void set_collection_item_id(uint64_t value); private: - uint32_t _internal_class_id() const; - void _internal_set_class_id(uint32_t value); + uint64_t _internal_collection_item_id() const; + void _internal_set_collection_item_id(uint64_t value); public: - // optional uint32 slot_id = 4 [(.key_field) = true]; - bool has_slot_id() const; + // optional uint64 subject_item_id = 2; + bool has_subject_item_id() const; private: - bool _internal_has_slot_id() const; + bool _internal_has_subject_item_id() const; public: - void clear_slot_id(); - uint32_t slot_id() const; - void set_slot_id(uint32_t value); + void clear_subject_item_id(); + uint64_t subject_item_id() const; + void set_subject_item_id(uint64_t value); private: - uint32_t _internal_slot_id() const; - void _internal_set_slot_id(uint32_t value); + uint64_t _internal_subject_item_id() const; + void _internal_set_subject_item_id(uint64_t value); public: - // @@protoc_insertion_point(class_scope:CSOEconDefaultEquippedDefinitionInstanceClient) + // @@protoc_insertion_point(class_scope:CMsgGCCollectItem) private: class _Internal; @@ -13774,34 +13804,31 @@ class CSOEconDefaultEquippedDefinitionInstanceClient : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t account_id_; - uint32_t item_definition_; - uint32_t class_id_; - uint32_t slot_id_; + uint64_t collection_item_id_; + uint64_t subject_item_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCToGCDirtySDOCache : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCDirtySDOCache) */ { +class CMsgSDONoMemcached : + public ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:CMsgSDONoMemcached) */ { public: - inline CMsgGCToGCDirtySDOCache() : CMsgGCToGCDirtySDOCache(nullptr) {} - ~CMsgGCToGCDirtySDOCache() override; - explicit PROTOBUF_CONSTEXPR CMsgGCToGCDirtySDOCache(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgSDONoMemcached() : CMsgSDONoMemcached(nullptr) {} + explicit PROTOBUF_CONSTEXPR CMsgSDONoMemcached(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCToGCDirtySDOCache(const CMsgGCToGCDirtySDOCache& from); - CMsgGCToGCDirtySDOCache(CMsgGCToGCDirtySDOCache&& from) noexcept - : CMsgGCToGCDirtySDOCache() { + CMsgSDONoMemcached(const CMsgSDONoMemcached& from); + CMsgSDONoMemcached(CMsgSDONoMemcached&& from) noexcept + : CMsgSDONoMemcached() { *this = ::std::move(from); } - inline CMsgGCToGCDirtySDOCache& operator=(const CMsgGCToGCDirtySDOCache& from) { + inline CMsgSDONoMemcached& operator=(const CMsgSDONoMemcached& from) { CopyFrom(from); return *this; } - inline CMsgGCToGCDirtySDOCache& operator=(CMsgGCToGCDirtySDOCache&& from) noexcept { + inline CMsgSDONoMemcached& operator=(CMsgSDONoMemcached&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -13831,20 +13858,20 @@ class CMsgGCToGCDirtySDOCache : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCToGCDirtySDOCache& default_instance() { + static const CMsgSDONoMemcached& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCToGCDirtySDOCache* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCToGCDirtySDOCache_default_instance_); + static inline const CMsgSDONoMemcached* internal_default_instance() { + return reinterpret_cast( + &_CMsgSDONoMemcached_default_instance_); } static constexpr int kIndexInFileMessages = 67; - friend void swap(CMsgGCToGCDirtySDOCache& a, CMsgGCToGCDirtySDOCache& b) { + friend void swap(CMsgSDONoMemcached& a, CMsgSDONoMemcached& b) { a.Swap(&b); } - inline void Swap(CMsgGCToGCDirtySDOCache* other) { + inline void Swap(CMsgSDONoMemcached* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -13857,7 +13884,7 @@ class CMsgGCToGCDirtySDOCache : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCToGCDirtySDOCache* other) { + void UnsafeArenaSwap(CMsgSDONoMemcached* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -13865,40 +13892,26 @@ class CMsgGCToGCDirtySDOCache : // implements Message ---------------------------------------------- - CMsgGCToGCDirtySDOCache* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgSDONoMemcached* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } - using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCToGCDirtySDOCache& from); - using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCToGCDirtySDOCache& from) { - CMsgGCToGCDirtySDOCache::MergeImpl(*this, from); + using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyFrom; + inline void CopyFrom(const CMsgSDONoMemcached& from) { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl(*this, from); + } + using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeFrom; + void MergeFrom(const CMsgSDONoMemcached& from) { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl(*this, from); } - private: - static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; - - size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; - uint8_t* _InternalSerialize( - uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; - int GetCachedSize() const final { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); - void SharedDtor(); - void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCToGCDirtySDOCache* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCToGCDirtySDOCache"; + return "CMsgSDONoMemcached"; } protected: - explicit CMsgGCToGCDirtySDOCache(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgSDONoMemcached(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -13911,37 +13924,7 @@ class CMsgGCToGCDirtySDOCache : // accessors ------------------------------------------------------- - enum : int { - kKeyUint64FieldNumber = 2, - kSdoTypeFieldNumber = 1, - }; - // optional uint64 key_uint64 = 2; - bool has_key_uint64() const; - private: - bool _internal_has_key_uint64() const; - public: - void clear_key_uint64(); - uint64_t key_uint64() const; - void set_key_uint64(uint64_t value); - private: - uint64_t _internal_key_uint64() const; - void _internal_set_key_uint64(uint64_t value); - public: - - // optional uint32 sdo_type = 1; - bool has_sdo_type() const; - private: - bool _internal_has_sdo_type() const; - public: - void clear_sdo_type(); - uint32_t sdo_type() const; - void set_sdo_type(uint32_t value); - private: - uint32_t _internal_sdo_type() const; - void _internal_set_sdo_type(uint32_t value); - public: - - // @@protoc_insertion_point(class_scope:CMsgGCToGCDirtySDOCache) + // @@protoc_insertion_point(class_scope:CMsgSDONoMemcached) private: class _Internal; @@ -13949,34 +13932,29 @@ class CMsgGCToGCDirtySDOCache : typedef void InternalArenaConstructable_; typedef void DestructorSkippable_; struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; - mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint64_t key_uint64_; - uint32_t sdo_type_; }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCToGCDirtyMultipleSDOCache : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCDirtyMultipleSDOCache) */ { +class CMsgGCToGCUpdateSQLKeyValue : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCUpdateSQLKeyValue) */ { public: - inline CMsgGCToGCDirtyMultipleSDOCache() : CMsgGCToGCDirtyMultipleSDOCache(nullptr) {} - ~CMsgGCToGCDirtyMultipleSDOCache() override; - explicit PROTOBUF_CONSTEXPR CMsgGCToGCDirtyMultipleSDOCache(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCToGCUpdateSQLKeyValue() : CMsgGCToGCUpdateSQLKeyValue(nullptr) {} + ~CMsgGCToGCUpdateSQLKeyValue() override; + explicit PROTOBUF_CONSTEXPR CMsgGCToGCUpdateSQLKeyValue(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCToGCDirtyMultipleSDOCache(const CMsgGCToGCDirtyMultipleSDOCache& from); - CMsgGCToGCDirtyMultipleSDOCache(CMsgGCToGCDirtyMultipleSDOCache&& from) noexcept - : CMsgGCToGCDirtyMultipleSDOCache() { + CMsgGCToGCUpdateSQLKeyValue(const CMsgGCToGCUpdateSQLKeyValue& from); + CMsgGCToGCUpdateSQLKeyValue(CMsgGCToGCUpdateSQLKeyValue&& from) noexcept + : CMsgGCToGCUpdateSQLKeyValue() { *this = ::std::move(from); } - inline CMsgGCToGCDirtyMultipleSDOCache& operator=(const CMsgGCToGCDirtyMultipleSDOCache& from) { + inline CMsgGCToGCUpdateSQLKeyValue& operator=(const CMsgGCToGCUpdateSQLKeyValue& from) { CopyFrom(from); return *this; } - inline CMsgGCToGCDirtyMultipleSDOCache& operator=(CMsgGCToGCDirtyMultipleSDOCache&& from) noexcept { + inline CMsgGCToGCUpdateSQLKeyValue& operator=(CMsgGCToGCUpdateSQLKeyValue&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -14006,20 +13984,20 @@ class CMsgGCToGCDirtyMultipleSDOCache : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCToGCDirtyMultipleSDOCache& default_instance() { + static const CMsgGCToGCUpdateSQLKeyValue& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCToGCDirtyMultipleSDOCache* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCToGCDirtyMultipleSDOCache_default_instance_); + static inline const CMsgGCToGCUpdateSQLKeyValue* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCToGCUpdateSQLKeyValue_default_instance_); } static constexpr int kIndexInFileMessages = 68; - friend void swap(CMsgGCToGCDirtyMultipleSDOCache& a, CMsgGCToGCDirtyMultipleSDOCache& b) { + friend void swap(CMsgGCToGCUpdateSQLKeyValue& a, CMsgGCToGCUpdateSQLKeyValue& b) { a.Swap(&b); } - inline void Swap(CMsgGCToGCDirtyMultipleSDOCache* other) { + inline void Swap(CMsgGCToGCUpdateSQLKeyValue* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -14032,7 +14010,7 @@ class CMsgGCToGCDirtyMultipleSDOCache : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCToGCDirtyMultipleSDOCache* other) { + void UnsafeArenaSwap(CMsgGCToGCUpdateSQLKeyValue* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -14040,14 +14018,14 @@ class CMsgGCToGCDirtyMultipleSDOCache : // implements Message ---------------------------------------------- - CMsgGCToGCDirtyMultipleSDOCache* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCToGCUpdateSQLKeyValue* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCToGCDirtyMultipleSDOCache& from); + void CopyFrom(const CMsgGCToGCUpdateSQLKeyValue& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCToGCDirtyMultipleSDOCache& from) { - CMsgGCToGCDirtyMultipleSDOCache::MergeImpl(*this, from); + void MergeFrom( const CMsgGCToGCUpdateSQLKeyValue& from) { + CMsgGCToGCUpdateSQLKeyValue::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -14065,15 +14043,15 @@ class CMsgGCToGCDirtyMultipleSDOCache : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCToGCDirtyMultipleSDOCache* other); + void InternalSwap(CMsgGCToGCUpdateSQLKeyValue* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCToGCDirtyMultipleSDOCache"; + return "CMsgGCToGCUpdateSQLKeyValue"; } protected: - explicit CMsgGCToGCDirtyMultipleSDOCache(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCToGCUpdateSQLKeyValue(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -14087,45 +14065,27 @@ class CMsgGCToGCDirtyMultipleSDOCache : // accessors ------------------------------------------------------- enum : int { - kKeyUint64FieldNumber = 2, - kSdoTypeFieldNumber = 1, + kKeyNameFieldNumber = 1, }; - // repeated uint64 key_uint64 = 2; - int key_uint64_size() const; - private: - int _internal_key_uint64_size() const; - public: - void clear_key_uint64(); - private: - uint64_t _internal_key_uint64(int index) const; - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& - _internal_key_uint64() const; - void _internal_add_key_uint64(uint64_t value); - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* - _internal_mutable_key_uint64(); - public: - uint64_t key_uint64(int index) const; - void set_key_uint64(int index, uint64_t value); - void add_key_uint64(uint64_t value); - const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& - key_uint64() const; - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* - mutable_key_uint64(); - - // optional uint32 sdo_type = 1; - bool has_sdo_type() const; + // optional string key_name = 1; + bool has_key_name() const; private: - bool _internal_has_sdo_type() const; + bool _internal_has_key_name() const; public: - void clear_sdo_type(); - uint32_t sdo_type() const; - void set_sdo_type(uint32_t value); + void clear_key_name(); + const std::string& key_name() const; + template + void set_key_name(ArgT0&& arg0, ArgT... args); + std::string* mutable_key_name(); + PROTOBUF_NODISCARD std::string* release_key_name(); + void set_allocated_key_name(std::string* key_name); private: - uint32_t _internal_sdo_type() const; - void _internal_set_sdo_type(uint32_t value); + const std::string& _internal_key_name() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_key_name(const std::string& value); + std::string* _internal_mutable_key_name(); public: - // @@protoc_insertion_point(class_scope:CMsgGCToGCDirtyMultipleSDOCache) + // @@protoc_insertion_point(class_scope:CMsgGCToGCUpdateSQLKeyValue) private: class _Internal; @@ -14135,32 +14095,31 @@ class CMsgGCToGCDirtyMultipleSDOCache : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t > key_uint64_; - uint32_t sdo_type_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr key_name_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCCollectItem : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCCollectItem) */ { +class CMsgGCToGCIsTrustedServer : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCIsTrustedServer) */ { public: - inline CMsgGCCollectItem() : CMsgGCCollectItem(nullptr) {} - ~CMsgGCCollectItem() override; - explicit PROTOBUF_CONSTEXPR CMsgGCCollectItem(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCToGCIsTrustedServer() : CMsgGCToGCIsTrustedServer(nullptr) {} + ~CMsgGCToGCIsTrustedServer() override; + explicit PROTOBUF_CONSTEXPR CMsgGCToGCIsTrustedServer(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCCollectItem(const CMsgGCCollectItem& from); - CMsgGCCollectItem(CMsgGCCollectItem&& from) noexcept - : CMsgGCCollectItem() { + CMsgGCToGCIsTrustedServer(const CMsgGCToGCIsTrustedServer& from); + CMsgGCToGCIsTrustedServer(CMsgGCToGCIsTrustedServer&& from) noexcept + : CMsgGCToGCIsTrustedServer() { *this = ::std::move(from); } - inline CMsgGCCollectItem& operator=(const CMsgGCCollectItem& from) { + inline CMsgGCToGCIsTrustedServer& operator=(const CMsgGCToGCIsTrustedServer& from) { CopyFrom(from); return *this; } - inline CMsgGCCollectItem& operator=(CMsgGCCollectItem&& from) noexcept { + inline CMsgGCToGCIsTrustedServer& operator=(CMsgGCToGCIsTrustedServer&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -14190,20 +14149,20 @@ class CMsgGCCollectItem : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCCollectItem& default_instance() { + static const CMsgGCToGCIsTrustedServer& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCCollectItem* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCCollectItem_default_instance_); + static inline const CMsgGCToGCIsTrustedServer* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCToGCIsTrustedServer_default_instance_); } static constexpr int kIndexInFileMessages = 69; - friend void swap(CMsgGCCollectItem& a, CMsgGCCollectItem& b) { + friend void swap(CMsgGCToGCIsTrustedServer& a, CMsgGCToGCIsTrustedServer& b) { a.Swap(&b); } - inline void Swap(CMsgGCCollectItem* other) { + inline void Swap(CMsgGCToGCIsTrustedServer* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -14216,7 +14175,7 @@ class CMsgGCCollectItem : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCCollectItem* other) { + void UnsafeArenaSwap(CMsgGCToGCIsTrustedServer* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -14224,14 +14183,14 @@ class CMsgGCCollectItem : // implements Message ---------------------------------------------- - CMsgGCCollectItem* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCToGCIsTrustedServer* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCCollectItem& from); + void CopyFrom(const CMsgGCToGCIsTrustedServer& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCCollectItem& from) { - CMsgGCCollectItem::MergeImpl(*this, from); + void MergeFrom( const CMsgGCToGCIsTrustedServer& from) { + CMsgGCToGCIsTrustedServer::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -14249,15 +14208,15 @@ class CMsgGCCollectItem : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCCollectItem* other); + void InternalSwap(CMsgGCToGCIsTrustedServer* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCCollectItem"; + return "CMsgGCToGCIsTrustedServer"; } protected: - explicit CMsgGCCollectItem(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCToGCIsTrustedServer(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -14271,36 +14230,22 @@ class CMsgGCCollectItem : // accessors ------------------------------------------------------- enum : int { - kCollectionItemIdFieldNumber = 1, - kSubjectItemIdFieldNumber = 2, + kSteamIdFieldNumber = 1, }; - // optional uint64 collection_item_id = 1; - bool has_collection_item_id() const; - private: - bool _internal_has_collection_item_id() const; - public: - void clear_collection_item_id(); - uint64_t collection_item_id() const; - void set_collection_item_id(uint64_t value); - private: - uint64_t _internal_collection_item_id() const; - void _internal_set_collection_item_id(uint64_t value); - public: - - // optional uint64 subject_item_id = 2; - bool has_subject_item_id() const; + // optional fixed64 steam_id = 1; + bool has_steam_id() const; private: - bool _internal_has_subject_item_id() const; + bool _internal_has_steam_id() const; public: - void clear_subject_item_id(); - uint64_t subject_item_id() const; - void set_subject_item_id(uint64_t value); + void clear_steam_id(); + uint64_t steam_id() const; + void set_steam_id(uint64_t value); private: - uint64_t _internal_subject_item_id() const; - void _internal_set_subject_item_id(uint64_t value); + uint64_t _internal_steam_id() const; + void _internal_set_steam_id(uint64_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCCollectItem) + // @@protoc_insertion_point(class_scope:CMsgGCToGCIsTrustedServer) private: class _Internal; @@ -14310,31 +14255,31 @@ class CMsgGCCollectItem : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint64_t collection_item_id_; - uint64_t subject_item_id_; + uint64_t steam_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgSDONoMemcached : - public ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:CMsgSDONoMemcached) */ { +class CMsgGCToGCIsTrustedServerResponse : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCIsTrustedServerResponse) */ { public: - inline CMsgSDONoMemcached() : CMsgSDONoMemcached(nullptr) {} - explicit PROTOBUF_CONSTEXPR CMsgSDONoMemcached(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCToGCIsTrustedServerResponse() : CMsgGCToGCIsTrustedServerResponse(nullptr) {} + ~CMsgGCToGCIsTrustedServerResponse() override; + explicit PROTOBUF_CONSTEXPR CMsgGCToGCIsTrustedServerResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgSDONoMemcached(const CMsgSDONoMemcached& from); - CMsgSDONoMemcached(CMsgSDONoMemcached&& from) noexcept - : CMsgSDONoMemcached() { + CMsgGCToGCIsTrustedServerResponse(const CMsgGCToGCIsTrustedServerResponse& from); + CMsgGCToGCIsTrustedServerResponse(CMsgGCToGCIsTrustedServerResponse&& from) noexcept + : CMsgGCToGCIsTrustedServerResponse() { *this = ::std::move(from); } - inline CMsgSDONoMemcached& operator=(const CMsgSDONoMemcached& from) { + inline CMsgGCToGCIsTrustedServerResponse& operator=(const CMsgGCToGCIsTrustedServerResponse& from) { CopyFrom(from); return *this; } - inline CMsgSDONoMemcached& operator=(CMsgSDONoMemcached&& from) noexcept { + inline CMsgGCToGCIsTrustedServerResponse& operator=(CMsgGCToGCIsTrustedServerResponse&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -14364,20 +14309,20 @@ class CMsgSDONoMemcached : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgSDONoMemcached& default_instance() { + static const CMsgGCToGCIsTrustedServerResponse& default_instance() { return *internal_default_instance(); } - static inline const CMsgSDONoMemcached* internal_default_instance() { - return reinterpret_cast( - &_CMsgSDONoMemcached_default_instance_); + static inline const CMsgGCToGCIsTrustedServerResponse* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCToGCIsTrustedServerResponse_default_instance_); } static constexpr int kIndexInFileMessages = 70; - friend void swap(CMsgSDONoMemcached& a, CMsgSDONoMemcached& b) { + friend void swap(CMsgGCToGCIsTrustedServerResponse& a, CMsgGCToGCIsTrustedServerResponse& b) { a.Swap(&b); } - inline void Swap(CMsgSDONoMemcached* other) { + inline void Swap(CMsgGCToGCIsTrustedServerResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -14390,7 +14335,7 @@ class CMsgSDONoMemcached : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgSDONoMemcached* other) { + void UnsafeArenaSwap(CMsgGCToGCIsTrustedServerResponse* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -14398,26 +14343,40 @@ class CMsgSDONoMemcached : // implements Message ---------------------------------------------- - CMsgSDONoMemcached* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCToGCIsTrustedServerResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } - using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyFrom; - inline void CopyFrom(const CMsgSDONoMemcached& from) { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const CMsgSDONoMemcached& from) { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl(*this, from); + using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; + void CopyFrom(const CMsgGCToGCIsTrustedServerResponse& from); + using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; + void MergeFrom( const CMsgGCToGCIsTrustedServerResponse& from) { + CMsgGCToGCIsTrustedServerResponse::MergeImpl(*this, from); } + private: + static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); public: + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; + uint8_t* _InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const final { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(CMsgGCToGCIsTrustedServerResponse* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgSDONoMemcached"; + return "CMsgGCToGCIsTrustedServerResponse"; } protected: - explicit CMsgSDONoMemcached(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCToGCIsTrustedServerResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -14430,7 +14389,23 @@ class CMsgSDONoMemcached : // accessors ------------------------------------------------------- - // @@protoc_insertion_point(class_scope:CMsgSDONoMemcached) + enum : int { + kIsTrustedFieldNumber = 1, + }; + // optional bool is_trusted = 1; + bool has_is_trusted() const; + private: + bool _internal_has_is_trusted() const; + public: + void clear_is_trusted(); + bool is_trusted() const; + void set_is_trusted(bool value); + private: + bool _internal_is_trusted() const; + void _internal_set_is_trusted(bool value); + public: + + // @@protoc_insertion_point(class_scope:CMsgGCToGCIsTrustedServerResponse) private: class _Internal; @@ -14438,29 +14413,33 @@ class CMsgSDONoMemcached : typedef void InternalArenaConstructable_; typedef void DestructorSkippable_; struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + bool is_trusted_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + union { Impl_ _impl_; }; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCToGCUpdateSQLKeyValue : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCUpdateSQLKeyValue) */ { +class CMsgGCToGCBroadcastConsoleCommand : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCBroadcastConsoleCommand) */ { public: - inline CMsgGCToGCUpdateSQLKeyValue() : CMsgGCToGCUpdateSQLKeyValue(nullptr) {} - ~CMsgGCToGCUpdateSQLKeyValue() override; - explicit PROTOBUF_CONSTEXPR CMsgGCToGCUpdateSQLKeyValue(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCToGCBroadcastConsoleCommand() : CMsgGCToGCBroadcastConsoleCommand(nullptr) {} + ~CMsgGCToGCBroadcastConsoleCommand() override; + explicit PROTOBUF_CONSTEXPR CMsgGCToGCBroadcastConsoleCommand(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCToGCUpdateSQLKeyValue(const CMsgGCToGCUpdateSQLKeyValue& from); - CMsgGCToGCUpdateSQLKeyValue(CMsgGCToGCUpdateSQLKeyValue&& from) noexcept - : CMsgGCToGCUpdateSQLKeyValue() { + CMsgGCToGCBroadcastConsoleCommand(const CMsgGCToGCBroadcastConsoleCommand& from); + CMsgGCToGCBroadcastConsoleCommand(CMsgGCToGCBroadcastConsoleCommand&& from) noexcept + : CMsgGCToGCBroadcastConsoleCommand() { *this = ::std::move(from); } - inline CMsgGCToGCUpdateSQLKeyValue& operator=(const CMsgGCToGCUpdateSQLKeyValue& from) { + inline CMsgGCToGCBroadcastConsoleCommand& operator=(const CMsgGCToGCBroadcastConsoleCommand& from) { CopyFrom(from); return *this; } - inline CMsgGCToGCUpdateSQLKeyValue& operator=(CMsgGCToGCUpdateSQLKeyValue&& from) noexcept { + inline CMsgGCToGCBroadcastConsoleCommand& operator=(CMsgGCToGCBroadcastConsoleCommand&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -14490,20 +14469,20 @@ class CMsgGCToGCUpdateSQLKeyValue : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCToGCUpdateSQLKeyValue& default_instance() { + static const CMsgGCToGCBroadcastConsoleCommand& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCToGCUpdateSQLKeyValue* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCToGCUpdateSQLKeyValue_default_instance_); + static inline const CMsgGCToGCBroadcastConsoleCommand* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCToGCBroadcastConsoleCommand_default_instance_); } static constexpr int kIndexInFileMessages = 71; - friend void swap(CMsgGCToGCUpdateSQLKeyValue& a, CMsgGCToGCUpdateSQLKeyValue& b) { + friend void swap(CMsgGCToGCBroadcastConsoleCommand& a, CMsgGCToGCBroadcastConsoleCommand& b) { a.Swap(&b); } - inline void Swap(CMsgGCToGCUpdateSQLKeyValue* other) { + inline void Swap(CMsgGCToGCBroadcastConsoleCommand* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -14516,7 +14495,7 @@ class CMsgGCToGCUpdateSQLKeyValue : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCToGCUpdateSQLKeyValue* other) { + void UnsafeArenaSwap(CMsgGCToGCBroadcastConsoleCommand* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -14524,14 +14503,14 @@ class CMsgGCToGCUpdateSQLKeyValue : // implements Message ---------------------------------------------- - CMsgGCToGCUpdateSQLKeyValue* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCToGCBroadcastConsoleCommand* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCToGCUpdateSQLKeyValue& from); + void CopyFrom(const CMsgGCToGCBroadcastConsoleCommand& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCToGCUpdateSQLKeyValue& from) { - CMsgGCToGCUpdateSQLKeyValue::MergeImpl(*this, from); + void MergeFrom( const CMsgGCToGCBroadcastConsoleCommand& from) { + CMsgGCToGCBroadcastConsoleCommand::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -14549,15 +14528,15 @@ class CMsgGCToGCUpdateSQLKeyValue : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCToGCUpdateSQLKeyValue* other); + void InternalSwap(CMsgGCToGCBroadcastConsoleCommand* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCToGCUpdateSQLKeyValue"; + return "CMsgGCToGCBroadcastConsoleCommand"; } protected: - explicit CMsgGCToGCUpdateSQLKeyValue(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCToGCBroadcastConsoleCommand(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -14571,27 +14550,27 @@ class CMsgGCToGCUpdateSQLKeyValue : // accessors ------------------------------------------------------- enum : int { - kKeyNameFieldNumber = 1, + kConCommandFieldNumber = 1, }; - // optional string key_name = 1; - bool has_key_name() const; + // optional string con_command = 1; + bool has_con_command() const; private: - bool _internal_has_key_name() const; + bool _internal_has_con_command() const; public: - void clear_key_name(); - const std::string& key_name() const; + void clear_con_command(); + const std::string& con_command() const; template - void set_key_name(ArgT0&& arg0, ArgT... args); - std::string* mutable_key_name(); - PROTOBUF_NODISCARD std::string* release_key_name(); - void set_allocated_key_name(std::string* key_name); + void set_con_command(ArgT0&& arg0, ArgT... args); + std::string* mutable_con_command(); + PROTOBUF_NODISCARD std::string* release_con_command(); + void set_allocated_con_command(std::string* con_command); private: - const std::string& _internal_key_name() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_key_name(const std::string& value); - std::string* _internal_mutable_key_name(); + const std::string& _internal_con_command() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_con_command(const std::string& value); + std::string* _internal_mutable_con_command(); public: - // @@protoc_insertion_point(class_scope:CMsgGCToGCUpdateSQLKeyValue) + // @@protoc_insertion_point(class_scope:CMsgGCToGCBroadcastConsoleCommand) private: class _Internal; @@ -14601,31 +14580,31 @@ class CMsgGCToGCUpdateSQLKeyValue : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr key_name_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr con_command_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCToGCIsTrustedServer : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCIsTrustedServer) */ { +class CMsgGCServerVersionUpdated : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCServerVersionUpdated) */ { public: - inline CMsgGCToGCIsTrustedServer() : CMsgGCToGCIsTrustedServer(nullptr) {} - ~CMsgGCToGCIsTrustedServer() override; - explicit PROTOBUF_CONSTEXPR CMsgGCToGCIsTrustedServer(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCServerVersionUpdated() : CMsgGCServerVersionUpdated(nullptr) {} + ~CMsgGCServerVersionUpdated() override; + explicit PROTOBUF_CONSTEXPR CMsgGCServerVersionUpdated(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCToGCIsTrustedServer(const CMsgGCToGCIsTrustedServer& from); - CMsgGCToGCIsTrustedServer(CMsgGCToGCIsTrustedServer&& from) noexcept - : CMsgGCToGCIsTrustedServer() { + CMsgGCServerVersionUpdated(const CMsgGCServerVersionUpdated& from); + CMsgGCServerVersionUpdated(CMsgGCServerVersionUpdated&& from) noexcept + : CMsgGCServerVersionUpdated() { *this = ::std::move(from); } - inline CMsgGCToGCIsTrustedServer& operator=(const CMsgGCToGCIsTrustedServer& from) { + inline CMsgGCServerVersionUpdated& operator=(const CMsgGCServerVersionUpdated& from) { CopyFrom(from); return *this; } - inline CMsgGCToGCIsTrustedServer& operator=(CMsgGCToGCIsTrustedServer&& from) noexcept { + inline CMsgGCServerVersionUpdated& operator=(CMsgGCServerVersionUpdated&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -14655,20 +14634,20 @@ class CMsgGCToGCIsTrustedServer : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCToGCIsTrustedServer& default_instance() { + static const CMsgGCServerVersionUpdated& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCToGCIsTrustedServer* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCToGCIsTrustedServer_default_instance_); + static inline const CMsgGCServerVersionUpdated* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCServerVersionUpdated_default_instance_); } static constexpr int kIndexInFileMessages = 72; - friend void swap(CMsgGCToGCIsTrustedServer& a, CMsgGCToGCIsTrustedServer& b) { + friend void swap(CMsgGCServerVersionUpdated& a, CMsgGCServerVersionUpdated& b) { a.Swap(&b); } - inline void Swap(CMsgGCToGCIsTrustedServer* other) { + inline void Swap(CMsgGCServerVersionUpdated* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -14681,7 +14660,7 @@ class CMsgGCToGCIsTrustedServer : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCToGCIsTrustedServer* other) { + void UnsafeArenaSwap(CMsgGCServerVersionUpdated* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -14689,14 +14668,14 @@ class CMsgGCToGCIsTrustedServer : // implements Message ---------------------------------------------- - CMsgGCToGCIsTrustedServer* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCServerVersionUpdated* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCToGCIsTrustedServer& from); + void CopyFrom(const CMsgGCServerVersionUpdated& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCToGCIsTrustedServer& from) { - CMsgGCToGCIsTrustedServer::MergeImpl(*this, from); + void MergeFrom( const CMsgGCServerVersionUpdated& from) { + CMsgGCServerVersionUpdated::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -14714,15 +14693,15 @@ class CMsgGCToGCIsTrustedServer : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCToGCIsTrustedServer* other); + void InternalSwap(CMsgGCServerVersionUpdated* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCToGCIsTrustedServer"; + return "CMsgGCServerVersionUpdated"; } protected: - explicit CMsgGCToGCIsTrustedServer(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCServerVersionUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -14736,22 +14715,22 @@ class CMsgGCToGCIsTrustedServer : // accessors ------------------------------------------------------- enum : int { - kSteamIdFieldNumber = 1, + kServerVersionFieldNumber = 1, }; - // optional fixed64 steam_id = 1; - bool has_steam_id() const; + // optional uint32 server_version = 1; + bool has_server_version() const; private: - bool _internal_has_steam_id() const; + bool _internal_has_server_version() const; public: - void clear_steam_id(); - uint64_t steam_id() const; - void set_steam_id(uint64_t value); + void clear_server_version(); + uint32_t server_version() const; + void set_server_version(uint32_t value); private: - uint64_t _internal_steam_id() const; - void _internal_set_steam_id(uint64_t value); + uint32_t _internal_server_version() const; + void _internal_set_server_version(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCToGCIsTrustedServer) + // @@protoc_insertion_point(class_scope:CMsgGCServerVersionUpdated) private: class _Internal; @@ -14761,31 +14740,31 @@ class CMsgGCToGCIsTrustedServer : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint64_t steam_id_; + uint32_t server_version_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCToGCIsTrustedServerResponse : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCIsTrustedServerResponse) */ { +class CMsgGCClientVersionUpdated : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCClientVersionUpdated) */ { public: - inline CMsgGCToGCIsTrustedServerResponse() : CMsgGCToGCIsTrustedServerResponse(nullptr) {} - ~CMsgGCToGCIsTrustedServerResponse() override; - explicit PROTOBUF_CONSTEXPR CMsgGCToGCIsTrustedServerResponse(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCClientVersionUpdated() : CMsgGCClientVersionUpdated(nullptr) {} + ~CMsgGCClientVersionUpdated() override; + explicit PROTOBUF_CONSTEXPR CMsgGCClientVersionUpdated(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCToGCIsTrustedServerResponse(const CMsgGCToGCIsTrustedServerResponse& from); - CMsgGCToGCIsTrustedServerResponse(CMsgGCToGCIsTrustedServerResponse&& from) noexcept - : CMsgGCToGCIsTrustedServerResponse() { + CMsgGCClientVersionUpdated(const CMsgGCClientVersionUpdated& from); + CMsgGCClientVersionUpdated(CMsgGCClientVersionUpdated&& from) noexcept + : CMsgGCClientVersionUpdated() { *this = ::std::move(from); } - inline CMsgGCToGCIsTrustedServerResponse& operator=(const CMsgGCToGCIsTrustedServerResponse& from) { + inline CMsgGCClientVersionUpdated& operator=(const CMsgGCClientVersionUpdated& from) { CopyFrom(from); return *this; } - inline CMsgGCToGCIsTrustedServerResponse& operator=(CMsgGCToGCIsTrustedServerResponse&& from) noexcept { + inline CMsgGCClientVersionUpdated& operator=(CMsgGCClientVersionUpdated&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -14815,20 +14794,20 @@ class CMsgGCToGCIsTrustedServerResponse : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCToGCIsTrustedServerResponse& default_instance() { + static const CMsgGCClientVersionUpdated& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCToGCIsTrustedServerResponse* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCToGCIsTrustedServerResponse_default_instance_); + static inline const CMsgGCClientVersionUpdated* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCClientVersionUpdated_default_instance_); } static constexpr int kIndexInFileMessages = 73; - friend void swap(CMsgGCToGCIsTrustedServerResponse& a, CMsgGCToGCIsTrustedServerResponse& b) { + friend void swap(CMsgGCClientVersionUpdated& a, CMsgGCClientVersionUpdated& b) { a.Swap(&b); } - inline void Swap(CMsgGCToGCIsTrustedServerResponse* other) { + inline void Swap(CMsgGCClientVersionUpdated* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -14841,7 +14820,7 @@ class CMsgGCToGCIsTrustedServerResponse : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCToGCIsTrustedServerResponse* other) { + void UnsafeArenaSwap(CMsgGCClientVersionUpdated* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -14849,14 +14828,14 @@ class CMsgGCToGCIsTrustedServerResponse : // implements Message ---------------------------------------------- - CMsgGCToGCIsTrustedServerResponse* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCClientVersionUpdated* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCToGCIsTrustedServerResponse& from); + void CopyFrom(const CMsgGCClientVersionUpdated& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCToGCIsTrustedServerResponse& from) { - CMsgGCToGCIsTrustedServerResponse::MergeImpl(*this, from); + void MergeFrom( const CMsgGCClientVersionUpdated& from) { + CMsgGCClientVersionUpdated::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -14874,15 +14853,15 @@ class CMsgGCToGCIsTrustedServerResponse : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCToGCIsTrustedServerResponse* other); + void InternalSwap(CMsgGCClientVersionUpdated* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCToGCIsTrustedServerResponse"; + return "CMsgGCClientVersionUpdated"; } protected: - explicit CMsgGCToGCIsTrustedServerResponse(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCClientVersionUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -14896,22 +14875,22 @@ class CMsgGCToGCIsTrustedServerResponse : // accessors ------------------------------------------------------- enum : int { - kIsTrustedFieldNumber = 1, + kClientVersionFieldNumber = 1, }; - // optional bool is_trusted = 1; - bool has_is_trusted() const; + // optional uint32 client_version = 1; + bool has_client_version() const; private: - bool _internal_has_is_trusted() const; + bool _internal_has_client_version() const; public: - void clear_is_trusted(); - bool is_trusted() const; - void set_is_trusted(bool value); + void clear_client_version(); + uint32_t client_version() const; + void set_client_version(uint32_t value); private: - bool _internal_is_trusted() const; - void _internal_set_is_trusted(bool value); + uint32_t _internal_client_version() const; + void _internal_set_client_version(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCToGCIsTrustedServerResponse) + // @@protoc_insertion_point(class_scope:CMsgGCClientVersionUpdated) private: class _Internal; @@ -14921,31 +14900,30 @@ class CMsgGCToGCIsTrustedServerResponse : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - bool is_trusted_; + uint32_t client_version_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCToGCBroadcastConsoleCommand : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCBroadcastConsoleCommand) */ { +class CMsgGCToGCWebAPIAccountChanged : + public ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:CMsgGCToGCWebAPIAccountChanged) */ { public: - inline CMsgGCToGCBroadcastConsoleCommand() : CMsgGCToGCBroadcastConsoleCommand(nullptr) {} - ~CMsgGCToGCBroadcastConsoleCommand() override; - explicit PROTOBUF_CONSTEXPR CMsgGCToGCBroadcastConsoleCommand(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCToGCWebAPIAccountChanged() : CMsgGCToGCWebAPIAccountChanged(nullptr) {} + explicit PROTOBUF_CONSTEXPR CMsgGCToGCWebAPIAccountChanged(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCToGCBroadcastConsoleCommand(const CMsgGCToGCBroadcastConsoleCommand& from); - CMsgGCToGCBroadcastConsoleCommand(CMsgGCToGCBroadcastConsoleCommand&& from) noexcept - : CMsgGCToGCBroadcastConsoleCommand() { + CMsgGCToGCWebAPIAccountChanged(const CMsgGCToGCWebAPIAccountChanged& from); + CMsgGCToGCWebAPIAccountChanged(CMsgGCToGCWebAPIAccountChanged&& from) noexcept + : CMsgGCToGCWebAPIAccountChanged() { *this = ::std::move(from); } - inline CMsgGCToGCBroadcastConsoleCommand& operator=(const CMsgGCToGCBroadcastConsoleCommand& from) { + inline CMsgGCToGCWebAPIAccountChanged& operator=(const CMsgGCToGCWebAPIAccountChanged& from) { CopyFrom(from); return *this; } - inline CMsgGCToGCBroadcastConsoleCommand& operator=(CMsgGCToGCBroadcastConsoleCommand&& from) noexcept { + inline CMsgGCToGCWebAPIAccountChanged& operator=(CMsgGCToGCWebAPIAccountChanged&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -14975,20 +14953,20 @@ class CMsgGCToGCBroadcastConsoleCommand : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCToGCBroadcastConsoleCommand& default_instance() { + static const CMsgGCToGCWebAPIAccountChanged& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCToGCBroadcastConsoleCommand* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCToGCBroadcastConsoleCommand_default_instance_); + static inline const CMsgGCToGCWebAPIAccountChanged* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCToGCWebAPIAccountChanged_default_instance_); } static constexpr int kIndexInFileMessages = 74; - friend void swap(CMsgGCToGCBroadcastConsoleCommand& a, CMsgGCToGCBroadcastConsoleCommand& b) { + friend void swap(CMsgGCToGCWebAPIAccountChanged& a, CMsgGCToGCWebAPIAccountChanged& b) { a.Swap(&b); } - inline void Swap(CMsgGCToGCBroadcastConsoleCommand* other) { + inline void Swap(CMsgGCToGCWebAPIAccountChanged* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -15001,7 +14979,7 @@ class CMsgGCToGCBroadcastConsoleCommand : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCToGCBroadcastConsoleCommand* other) { + void UnsafeArenaSwap(CMsgGCToGCWebAPIAccountChanged* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -15009,40 +14987,26 @@ class CMsgGCToGCBroadcastConsoleCommand : // implements Message ---------------------------------------------- - CMsgGCToGCBroadcastConsoleCommand* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCToGCWebAPIAccountChanged* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } - using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCToGCBroadcastConsoleCommand& from); - using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCToGCBroadcastConsoleCommand& from) { - CMsgGCToGCBroadcastConsoleCommand::MergeImpl(*this, from); + using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyFrom; + inline void CopyFrom(const CMsgGCToGCWebAPIAccountChanged& from) { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl(*this, from); + } + using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeFrom; + void MergeFrom(const CMsgGCToGCWebAPIAccountChanged& from) { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl(*this, from); } - private: - static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; - - size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; - uint8_t* _InternalSerialize( - uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; - int GetCachedSize() const final { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); - void SharedDtor(); - void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCToGCBroadcastConsoleCommand* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCToGCBroadcastConsoleCommand"; + return "CMsgGCToGCWebAPIAccountChanged"; } protected: - explicit CMsgGCToGCBroadcastConsoleCommand(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCToGCWebAPIAccountChanged(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -15055,28 +15019,7 @@ class CMsgGCToGCBroadcastConsoleCommand : // accessors ------------------------------------------------------- - enum : int { - kConCommandFieldNumber = 1, - }; - // optional string con_command = 1; - bool has_con_command() const; - private: - bool _internal_has_con_command() const; - public: - void clear_con_command(); - const std::string& con_command() const; - template - void set_con_command(ArgT0&& arg0, ArgT... args); - std::string* mutable_con_command(); - PROTOBUF_NODISCARD std::string* release_con_command(); - void set_allocated_con_command(std::string* con_command); - private: - const std::string& _internal_con_command() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_con_command(const std::string& value); - std::string* _internal_mutable_con_command(); - public: - - // @@protoc_insertion_point(class_scope:CMsgGCToGCBroadcastConsoleCommand) + // @@protoc_insertion_point(class_scope:CMsgGCToGCWebAPIAccountChanged) private: class _Internal; @@ -15084,33 +15027,29 @@ class CMsgGCToGCBroadcastConsoleCommand : typedef void InternalArenaConstructable_; typedef void DestructorSkippable_; struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; - mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr con_command_; }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCServerVersionUpdated : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCServerVersionUpdated) */ { +class CMsgGCToGCRequestPassportItemGrant : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCRequestPassportItemGrant) */ { public: - inline CMsgGCServerVersionUpdated() : CMsgGCServerVersionUpdated(nullptr) {} - ~CMsgGCServerVersionUpdated() override; - explicit PROTOBUF_CONSTEXPR CMsgGCServerVersionUpdated(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGCToGCRequestPassportItemGrant() : CMsgGCToGCRequestPassportItemGrant(nullptr) {} + ~CMsgGCToGCRequestPassportItemGrant() override; + explicit PROTOBUF_CONSTEXPR CMsgGCToGCRequestPassportItemGrant(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCServerVersionUpdated(const CMsgGCServerVersionUpdated& from); - CMsgGCServerVersionUpdated(CMsgGCServerVersionUpdated&& from) noexcept - : CMsgGCServerVersionUpdated() { + CMsgGCToGCRequestPassportItemGrant(const CMsgGCToGCRequestPassportItemGrant& from); + CMsgGCToGCRequestPassportItemGrant(CMsgGCToGCRequestPassportItemGrant&& from) noexcept + : CMsgGCToGCRequestPassportItemGrant() { *this = ::std::move(from); } - inline CMsgGCServerVersionUpdated& operator=(const CMsgGCServerVersionUpdated& from) { + inline CMsgGCToGCRequestPassportItemGrant& operator=(const CMsgGCToGCRequestPassportItemGrant& from) { CopyFrom(from); return *this; } - inline CMsgGCServerVersionUpdated& operator=(CMsgGCServerVersionUpdated&& from) noexcept { + inline CMsgGCToGCRequestPassportItemGrant& operator=(CMsgGCToGCRequestPassportItemGrant&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -15140,20 +15079,20 @@ class CMsgGCServerVersionUpdated : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCServerVersionUpdated& default_instance() { + static const CMsgGCToGCRequestPassportItemGrant& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCServerVersionUpdated* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCServerVersionUpdated_default_instance_); + static inline const CMsgGCToGCRequestPassportItemGrant* internal_default_instance() { + return reinterpret_cast( + &_CMsgGCToGCRequestPassportItemGrant_default_instance_); } static constexpr int kIndexInFileMessages = 75; - friend void swap(CMsgGCServerVersionUpdated& a, CMsgGCServerVersionUpdated& b) { + friend void swap(CMsgGCToGCRequestPassportItemGrant& a, CMsgGCToGCRequestPassportItemGrant& b) { a.Swap(&b); } - inline void Swap(CMsgGCServerVersionUpdated* other) { + inline void Swap(CMsgGCToGCRequestPassportItemGrant* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -15166,7 +15105,7 @@ class CMsgGCServerVersionUpdated : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCServerVersionUpdated* other) { + void UnsafeArenaSwap(CMsgGCToGCRequestPassportItemGrant* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -15174,14 +15113,14 @@ class CMsgGCServerVersionUpdated : // implements Message ---------------------------------------------- - CMsgGCServerVersionUpdated* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGCToGCRequestPassportItemGrant* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCServerVersionUpdated& from); + void CopyFrom(const CMsgGCToGCRequestPassportItemGrant& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCServerVersionUpdated& from) { - CMsgGCServerVersionUpdated::MergeImpl(*this, from); + void MergeFrom( const CMsgGCToGCRequestPassportItemGrant& from) { + CMsgGCToGCRequestPassportItemGrant::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -15199,15 +15138,15 @@ class CMsgGCServerVersionUpdated : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCServerVersionUpdated* other); + void InternalSwap(CMsgGCToGCRequestPassportItemGrant* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCServerVersionUpdated"; + return "CMsgGCToGCRequestPassportItemGrant"; } protected: - explicit CMsgGCServerVersionUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGCToGCRequestPassportItemGrant(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -15221,22 +15160,50 @@ class CMsgGCServerVersionUpdated : // accessors ------------------------------------------------------- enum : int { - kServerVersionFieldNumber = 1, + kSteamIdFieldNumber = 1, + kLeagueIdFieldNumber = 2, + kRewardFlagFieldNumber = 3, }; - // optional uint32 server_version = 1; - bool has_server_version() const; + // optional fixed64 steam_id = 1; + bool has_steam_id() const; private: - bool _internal_has_server_version() const; + bool _internal_has_steam_id() const; public: - void clear_server_version(); - uint32_t server_version() const; - void set_server_version(uint32_t value); + void clear_steam_id(); + uint64_t steam_id() const; + void set_steam_id(uint64_t value); private: - uint32_t _internal_server_version() const; - void _internal_set_server_version(uint32_t value); + uint64_t _internal_steam_id() const; + void _internal_set_steam_id(uint64_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCServerVersionUpdated) + // optional uint32 league_id = 2; + bool has_league_id() const; + private: + bool _internal_has_league_id() const; + public: + void clear_league_id(); + uint32_t league_id() const; + void set_league_id(uint32_t value); + private: + uint32_t _internal_league_id() const; + void _internal_set_league_id(uint32_t value); + public: + + // optional int32 reward_flag = 3; + bool has_reward_flag() const; + private: + bool _internal_has_reward_flag() const; + public: + void clear_reward_flag(); + int32_t reward_flag() const; + void set_reward_flag(int32_t value); + private: + int32_t _internal_reward_flag() const; + void _internal_set_reward_flag(int32_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgGCToGCRequestPassportItemGrant) private: class _Internal; @@ -15246,31 +15213,33 @@ class CMsgGCServerVersionUpdated : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t server_version_; + uint64_t steam_id_; + uint32_t league_id_; + int32_t reward_flag_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCClientVersionUpdated : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCClientVersionUpdated) */ { +class CMsgGameServerInfo : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGameServerInfo) */ { public: - inline CMsgGCClientVersionUpdated() : CMsgGCClientVersionUpdated(nullptr) {} - ~CMsgGCClientVersionUpdated() override; - explicit PROTOBUF_CONSTEXPR CMsgGCClientVersionUpdated(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgGameServerInfo() : CMsgGameServerInfo(nullptr) {} + ~CMsgGameServerInfo() override; + explicit PROTOBUF_CONSTEXPR CMsgGameServerInfo(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCClientVersionUpdated(const CMsgGCClientVersionUpdated& from); - CMsgGCClientVersionUpdated(CMsgGCClientVersionUpdated&& from) noexcept - : CMsgGCClientVersionUpdated() { + CMsgGameServerInfo(const CMsgGameServerInfo& from); + CMsgGameServerInfo(CMsgGameServerInfo&& from) noexcept + : CMsgGameServerInfo() { *this = ::std::move(from); } - inline CMsgGCClientVersionUpdated& operator=(const CMsgGCClientVersionUpdated& from) { + inline CMsgGameServerInfo& operator=(const CMsgGameServerInfo& from) { CopyFrom(from); return *this; } - inline CMsgGCClientVersionUpdated& operator=(CMsgGCClientVersionUpdated&& from) noexcept { + inline CMsgGameServerInfo& operator=(CMsgGameServerInfo&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -15300,20 +15269,20 @@ class CMsgGCClientVersionUpdated : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCClientVersionUpdated& default_instance() { + static const CMsgGameServerInfo& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCClientVersionUpdated* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCClientVersionUpdated_default_instance_); + static inline const CMsgGameServerInfo* internal_default_instance() { + return reinterpret_cast( + &_CMsgGameServerInfo_default_instance_); } static constexpr int kIndexInFileMessages = 76; - friend void swap(CMsgGCClientVersionUpdated& a, CMsgGCClientVersionUpdated& b) { + friend void swap(CMsgGameServerInfo& a, CMsgGameServerInfo& b) { a.Swap(&b); } - inline void Swap(CMsgGCClientVersionUpdated* other) { + inline void Swap(CMsgGameServerInfo* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -15326,7 +15295,7 @@ class CMsgGCClientVersionUpdated : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCClientVersionUpdated* other) { + void UnsafeArenaSwap(CMsgGameServerInfo* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -15334,14 +15303,14 @@ class CMsgGCClientVersionUpdated : // implements Message ---------------------------------------------- - CMsgGCClientVersionUpdated* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgGameServerInfo* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCClientVersionUpdated& from); + void CopyFrom(const CMsgGameServerInfo& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCClientVersionUpdated& from) { - CMsgGCClientVersionUpdated::MergeImpl(*this, from); + void MergeFrom( const CMsgGameServerInfo& from) { + CMsgGameServerInfo::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -15359,15 +15328,15 @@ class CMsgGCClientVersionUpdated : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCClientVersionUpdated* other); + void InternalSwap(CMsgGameServerInfo* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCClientVersionUpdated"; + return "CMsgGameServerInfo"; } protected: - explicit CMsgGCClientVersionUpdated(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgGameServerInfo(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -15378,154 +15347,300 @@ class CMsgGCClientVersionUpdated : // nested types ---------------------------------------------------- + typedef CMsgGameServerInfo_ServerType ServerType; + static constexpr ServerType UNSPECIFIED = + CMsgGameServerInfo_ServerType_UNSPECIFIED; + static constexpr ServerType GAME = + CMsgGameServerInfo_ServerType_GAME; + static constexpr ServerType PROXY = + CMsgGameServerInfo_ServerType_PROXY; + static inline bool ServerType_IsValid(int value) { + return CMsgGameServerInfo_ServerType_IsValid(value); + } + static constexpr ServerType ServerType_MIN = + CMsgGameServerInfo_ServerType_ServerType_MIN; + static constexpr ServerType ServerType_MAX = + CMsgGameServerInfo_ServerType_ServerType_MAX; + static constexpr int ServerType_ARRAYSIZE = + CMsgGameServerInfo_ServerType_ServerType_ARRAYSIZE; + static inline const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* + ServerType_descriptor() { + return CMsgGameServerInfo_ServerType_descriptor(); + } + template + static inline const std::string& ServerType_Name(T enum_t_value) { + static_assert(::std::is_same::value || + ::std::is_integral::value, + "Incorrect type passed to function ServerType_Name."); + return CMsgGameServerInfo_ServerType_Name(enum_t_value); + } + static inline bool ServerType_Parse(::PROTOBUF_NAMESPACE_ID::ConstStringParam name, + ServerType* value) { + return CMsgGameServerInfo_ServerType_Parse(name, value); + } + // accessors ------------------------------------------------------- enum : int { - kClientVersionFieldNumber = 1, + kServerKeyFieldNumber = 5, + kServerPublicIpAddrFieldNumber = 1, + kServerPrivateIpAddrFieldNumber = 2, + kServerPortFieldNumber = 3, + kServerTvPortFieldNumber = 4, + kServerHibernationFieldNumber = 6, + kServerTypeFieldNumber = 7, + kServerRegionFieldNumber = 8, + kServerLoadavgFieldNumber = 9, + kServerTvBroadcastTimeFieldNumber = 10, + kServerGameTimeFieldNumber = 11, + kServerRelayConnectedSteamIdFieldNumber = 12, + kRelaySlotsMaxFieldNumber = 13, + kRelaysConnectedFieldNumber = 14, + kRelayedGameServerSteamIdFieldNumber = 16, + kRelayClientsConnectedFieldNumber = 15, + kParentRelayCountFieldNumber = 17, + kTvSecretCodeFieldNumber = 18, }; - // optional uint32 client_version = 1; - bool has_client_version() const; + // optional string server_key = 5; + bool has_server_key() const; private: - bool _internal_has_client_version() const; + bool _internal_has_server_key() const; public: - void clear_client_version(); - uint32_t client_version() const; - void set_client_version(uint32_t value); + void clear_server_key(); + const std::string& server_key() const; + template + void set_server_key(ArgT0&& arg0, ArgT... args); + std::string* mutable_server_key(); + PROTOBUF_NODISCARD std::string* release_server_key(); + void set_allocated_server_key(std::string* server_key); private: - uint32_t _internal_client_version() const; - void _internal_set_client_version(uint32_t value); + const std::string& _internal_server_key() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_server_key(const std::string& value); + std::string* _internal_mutable_server_key(); public: - // @@protoc_insertion_point(class_scope:CMsgGCClientVersionUpdated) - private: - class _Internal; - - template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; - typedef void InternalArenaConstructable_; - typedef void DestructorSkippable_; - struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; - mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t client_version_; - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; -}; -// ------------------------------------------------------------------- - -class CMsgGCToGCWebAPIAccountChanged : - public ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:CMsgGCToGCWebAPIAccountChanged) */ { - public: - inline CMsgGCToGCWebAPIAccountChanged() : CMsgGCToGCWebAPIAccountChanged(nullptr) {} - explicit PROTOBUF_CONSTEXPR CMsgGCToGCWebAPIAccountChanged(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - - CMsgGCToGCWebAPIAccountChanged(const CMsgGCToGCWebAPIAccountChanged& from); - CMsgGCToGCWebAPIAccountChanged(CMsgGCToGCWebAPIAccountChanged&& from) noexcept - : CMsgGCToGCWebAPIAccountChanged() { - *this = ::std::move(from); - } - - inline CMsgGCToGCWebAPIAccountChanged& operator=(const CMsgGCToGCWebAPIAccountChanged& from) { - CopyFrom(from); - return *this; - } - inline CMsgGCToGCWebAPIAccountChanged& operator=(CMsgGCToGCWebAPIAccountChanged&& from) noexcept { - if (this == &from) return *this; - if (GetOwningArena() == from.GetOwningArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE - && GetOwningArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE - ) { - InternalSwap(&from); - } else { - CopyFrom(from); - } - return *this; - } - - inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { - return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); - } - inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { - return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); - } - - static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { - return GetDescriptor(); - } - static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { - return default_instance().GetMetadata().descriptor; - } - static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { - return default_instance().GetMetadata().reflection; - } - static const CMsgGCToGCWebAPIAccountChanged& default_instance() { - return *internal_default_instance(); - } - static inline const CMsgGCToGCWebAPIAccountChanged* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCToGCWebAPIAccountChanged_default_instance_); - } - static constexpr int kIndexInFileMessages = - 77; - - friend void swap(CMsgGCToGCWebAPIAccountChanged& a, CMsgGCToGCWebAPIAccountChanged& b) { - a.Swap(&b); - } - inline void Swap(CMsgGCToGCWebAPIAccountChanged* other) { - if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetOwningArena() != nullptr && - GetOwningArena() == other->GetOwningArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP - if (GetOwningArena() == other->GetOwningArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CMsgGCToGCWebAPIAccountChanged* other) { - if (other == this) return; - GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); - InternalSwap(other); - } + // optional fixed32 server_public_ip_addr = 1; + bool has_server_public_ip_addr() const; + private: + bool _internal_has_server_public_ip_addr() const; + public: + void clear_server_public_ip_addr(); + uint32_t server_public_ip_addr() const; + void set_server_public_ip_addr(uint32_t value); + private: + uint32_t _internal_server_public_ip_addr() const; + void _internal_set_server_public_ip_addr(uint32_t value); + public: - // implements Message ---------------------------------------------- + // optional fixed32 server_private_ip_addr = 2; + bool has_server_private_ip_addr() const; + private: + bool _internal_has_server_private_ip_addr() const; + public: + void clear_server_private_ip_addr(); + uint32_t server_private_ip_addr() const; + void set_server_private_ip_addr(uint32_t value); + private: + uint32_t _internal_server_private_ip_addr() const; + void _internal_set_server_private_ip_addr(uint32_t value); + public: - CMsgGCToGCWebAPIAccountChanged* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); - } - using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyFrom; - inline void CopyFrom(const CMsgGCToGCWebAPIAccountChanged& from) { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl(*this, from); - } - using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeFrom; - void MergeFrom(const CMsgGCToGCWebAPIAccountChanged& from) { - ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl(*this, from); - } + // optional uint32 server_port = 3; + bool has_server_port() const; + private: + bool _internal_has_server_port() const; + public: + void clear_server_port(); + uint32_t server_port() const; + void set_server_port(uint32_t value); + private: + uint32_t _internal_server_port() const; + void _internal_set_server_port(uint32_t value); public: + // optional uint32 server_tv_port = 4; + bool has_server_tv_port() const; private: - friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; - static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCToGCWebAPIAccountChanged"; - } - protected: - explicit CMsgGCToGCWebAPIAccountChanged(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned = false); + bool _internal_has_server_tv_port() const; + public: + void clear_server_tv_port(); + uint32_t server_tv_port() const; + void set_server_tv_port(uint32_t value); + private: + uint32_t _internal_server_tv_port() const; + void _internal_set_server_tv_port(uint32_t value); public: - static const ClassData _class_data_; - const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; + // optional bool server_hibernation = 6; + bool has_server_hibernation() const; + private: + bool _internal_has_server_hibernation() const; + public: + void clear_server_hibernation(); + bool server_hibernation() const; + void set_server_hibernation(bool value); + private: + bool _internal_server_hibernation() const; + void _internal_set_server_hibernation(bool value); + public: - ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; + // optional .CMsgGameServerInfo.ServerType server_type = 7 [default = UNSPECIFIED]; + bool has_server_type() const; + private: + bool _internal_has_server_type() const; + public: + void clear_server_type(); + ::CMsgGameServerInfo_ServerType server_type() const; + void set_server_type(::CMsgGameServerInfo_ServerType value); + private: + ::CMsgGameServerInfo_ServerType _internal_server_type() const; + void _internal_set_server_type(::CMsgGameServerInfo_ServerType value); + public: - // nested types ---------------------------------------------------- + // optional uint32 server_region = 8; + bool has_server_region() const; + private: + bool _internal_has_server_region() const; + public: + void clear_server_region(); + uint32_t server_region() const; + void set_server_region(uint32_t value); + private: + uint32_t _internal_server_region() const; + void _internal_set_server_region(uint32_t value); + public: - // accessors ------------------------------------------------------- + // optional float server_loadavg = 9; + bool has_server_loadavg() const; + private: + bool _internal_has_server_loadavg() const; + public: + void clear_server_loadavg(); + float server_loadavg() const; + void set_server_loadavg(float value); + private: + float _internal_server_loadavg() const; + void _internal_set_server_loadavg(float value); + public: - // @@protoc_insertion_point(class_scope:CMsgGCToGCWebAPIAccountChanged) + // optional float server_tv_broadcast_time = 10; + bool has_server_tv_broadcast_time() const; + private: + bool _internal_has_server_tv_broadcast_time() const; + public: + void clear_server_tv_broadcast_time(); + float server_tv_broadcast_time() const; + void set_server_tv_broadcast_time(float value); + private: + float _internal_server_tv_broadcast_time() const; + void _internal_set_server_tv_broadcast_time(float value); + public: + + // optional float server_game_time = 11; + bool has_server_game_time() const; + private: + bool _internal_has_server_game_time() const; + public: + void clear_server_game_time(); + float server_game_time() const; + void set_server_game_time(float value); + private: + float _internal_server_game_time() const; + void _internal_set_server_game_time(float value); + public: + + // optional fixed64 server_relay_connected_steam_id = 12; + bool has_server_relay_connected_steam_id() const; + private: + bool _internal_has_server_relay_connected_steam_id() const; + public: + void clear_server_relay_connected_steam_id(); + uint64_t server_relay_connected_steam_id() const; + void set_server_relay_connected_steam_id(uint64_t value); + private: + uint64_t _internal_server_relay_connected_steam_id() const; + void _internal_set_server_relay_connected_steam_id(uint64_t value); + public: + + // optional uint32 relay_slots_max = 13; + bool has_relay_slots_max() const; + private: + bool _internal_has_relay_slots_max() const; + public: + void clear_relay_slots_max(); + uint32_t relay_slots_max() const; + void set_relay_slots_max(uint32_t value); + private: + uint32_t _internal_relay_slots_max() const; + void _internal_set_relay_slots_max(uint32_t value); + public: + + // optional int32 relays_connected = 14; + bool has_relays_connected() const; + private: + bool _internal_has_relays_connected() const; + public: + void clear_relays_connected(); + int32_t relays_connected() const; + void set_relays_connected(int32_t value); + private: + int32_t _internal_relays_connected() const; + void _internal_set_relays_connected(int32_t value); + public: + + // optional fixed64 relayed_game_server_steam_id = 16; + bool has_relayed_game_server_steam_id() const; + private: + bool _internal_has_relayed_game_server_steam_id() const; + public: + void clear_relayed_game_server_steam_id(); + uint64_t relayed_game_server_steam_id() const; + void set_relayed_game_server_steam_id(uint64_t value); + private: + uint64_t _internal_relayed_game_server_steam_id() const; + void _internal_set_relayed_game_server_steam_id(uint64_t value); + public: + + // optional int32 relay_clients_connected = 15; + bool has_relay_clients_connected() const; + private: + bool _internal_has_relay_clients_connected() const; + public: + void clear_relay_clients_connected(); + int32_t relay_clients_connected() const; + void set_relay_clients_connected(int32_t value); + private: + int32_t _internal_relay_clients_connected() const; + void _internal_set_relay_clients_connected(int32_t value); + public: + + // optional uint32 parent_relay_count = 17; + bool has_parent_relay_count() const; + private: + bool _internal_has_parent_relay_count() const; + public: + void clear_parent_relay_count(); + uint32_t parent_relay_count() const; + void set_parent_relay_count(uint32_t value); + private: + uint32_t _internal_parent_relay_count() const; + void _internal_set_parent_relay_count(uint32_t value); + public: + + // optional fixed64 tv_secret_code = 18; + bool has_tv_secret_code() const; + private: + bool _internal_has_tv_secret_code() const; + public: + void clear_tv_secret_code(); + uint64_t tv_secret_code() const; + void set_tv_secret_code(uint64_t value); + private: + uint64_t _internal_tv_secret_code() const; + void _internal_set_tv_secret_code(uint64_t value); + public: + + // @@protoc_insertion_point(class_scope:CMsgGameServerInfo) private: class _Internal; @@ -15533,29 +15648,50 @@ class CMsgGCToGCWebAPIAccountChanged : typedef void InternalArenaConstructable_; typedef void DestructorSkippable_; struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr server_key_; + uint32_t server_public_ip_addr_; + uint32_t server_private_ip_addr_; + uint32_t server_port_; + uint32_t server_tv_port_; + bool server_hibernation_; + int server_type_; + uint32_t server_region_; + float server_loadavg_; + float server_tv_broadcast_time_; + float server_game_time_; + uint64_t server_relay_connected_steam_id_; + uint32_t relay_slots_max_; + int32_t relays_connected_; + uint64_t relayed_game_server_steam_id_; + int32_t relay_clients_connected_; + uint32_t parent_relay_count_; + uint64_t tv_secret_code_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + union { Impl_ _impl_; }; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGCToGCRequestPassportItemGrant : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGCToGCRequestPassportItemGrant) */ { +class CSOEconEquipSlot : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconEquipSlot) */ { public: - inline CMsgGCToGCRequestPassportItemGrant() : CMsgGCToGCRequestPassportItemGrant(nullptr) {} - ~CMsgGCToGCRequestPassportItemGrant() override; - explicit PROTOBUF_CONSTEXPR CMsgGCToGCRequestPassportItemGrant(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CSOEconEquipSlot() : CSOEconEquipSlot(nullptr) {} + ~CSOEconEquipSlot() override; + explicit PROTOBUF_CONSTEXPR CSOEconEquipSlot(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGCToGCRequestPassportItemGrant(const CMsgGCToGCRequestPassportItemGrant& from); - CMsgGCToGCRequestPassportItemGrant(CMsgGCToGCRequestPassportItemGrant&& from) noexcept - : CMsgGCToGCRequestPassportItemGrant() { + CSOEconEquipSlot(const CSOEconEquipSlot& from); + CSOEconEquipSlot(CSOEconEquipSlot&& from) noexcept + : CSOEconEquipSlot() { *this = ::std::move(from); } - inline CMsgGCToGCRequestPassportItemGrant& operator=(const CMsgGCToGCRequestPassportItemGrant& from) { + inline CSOEconEquipSlot& operator=(const CSOEconEquipSlot& from) { CopyFrom(from); return *this; } - inline CMsgGCToGCRequestPassportItemGrant& operator=(CMsgGCToGCRequestPassportItemGrant&& from) noexcept { + inline CSOEconEquipSlot& operator=(CSOEconEquipSlot&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -15585,20 +15721,20 @@ class CMsgGCToGCRequestPassportItemGrant : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGCToGCRequestPassportItemGrant& default_instance() { + static const CSOEconEquipSlot& default_instance() { return *internal_default_instance(); } - static inline const CMsgGCToGCRequestPassportItemGrant* internal_default_instance() { - return reinterpret_cast( - &_CMsgGCToGCRequestPassportItemGrant_default_instance_); + static inline const CSOEconEquipSlot* internal_default_instance() { + return reinterpret_cast( + &_CSOEconEquipSlot_default_instance_); } static constexpr int kIndexInFileMessages = - 78; + 77; - friend void swap(CMsgGCToGCRequestPassportItemGrant& a, CMsgGCToGCRequestPassportItemGrant& b) { + friend void swap(CSOEconEquipSlot& a, CSOEconEquipSlot& b) { a.Swap(&b); } - inline void Swap(CMsgGCToGCRequestPassportItemGrant* other) { + inline void Swap(CSOEconEquipSlot* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -15611,7 +15747,7 @@ class CMsgGCToGCRequestPassportItemGrant : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGCToGCRequestPassportItemGrant* other) { + void UnsafeArenaSwap(CSOEconEquipSlot* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -15619,14 +15755,14 @@ class CMsgGCToGCRequestPassportItemGrant : // implements Message ---------------------------------------------- - CMsgGCToGCRequestPassportItemGrant* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CSOEconEquipSlot* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGCToGCRequestPassportItemGrant& from); + void CopyFrom(const CSOEconEquipSlot& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGCToGCRequestPassportItemGrant& from) { - CMsgGCToGCRequestPassportItemGrant::MergeImpl(*this, from); + void MergeFrom( const CSOEconEquipSlot& from) { + CSOEconEquipSlot::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -15644,15 +15780,15 @@ class CMsgGCToGCRequestPassportItemGrant : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGCToGCRequestPassportItemGrant* other); + void InternalSwap(CSOEconEquipSlot* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGCToGCRequestPassportItemGrant"; + return "CSOEconEquipSlot"; } protected: - explicit CMsgGCToGCRequestPassportItemGrant(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CSOEconEquipSlot(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -15666,50 +15802,78 @@ class CMsgGCToGCRequestPassportItemGrant : // accessors ------------------------------------------------------- enum : int { - kSteamIdFieldNumber = 1, - kLeagueIdFieldNumber = 2, - kRewardFlagFieldNumber = 3, + kAccountIdFieldNumber = 1, + kClassIdFieldNumber = 2, + kItemIdFieldNumber = 4, + kSlotIdFieldNumber = 3, + kItemDefinitionFieldNumber = 5, }; - // optional fixed64 steam_id = 1; - bool has_steam_id() const; + // optional uint32 account_id = 1 [(.key_field) = true]; + bool has_account_id() const; private: - bool _internal_has_steam_id() const; + bool _internal_has_account_id() const; public: - void clear_steam_id(); - uint64_t steam_id() const; - void set_steam_id(uint64_t value); + void clear_account_id(); + uint32_t account_id() const; + void set_account_id(uint32_t value); private: - uint64_t _internal_steam_id() const; - void _internal_set_steam_id(uint64_t value); + uint32_t _internal_account_id() const; + void _internal_set_account_id(uint32_t value); public: - // optional uint32 league_id = 2; - bool has_league_id() const; + // optional uint32 class_id = 2 [(.key_field) = true]; + bool has_class_id() const; private: - bool _internal_has_league_id() const; + bool _internal_has_class_id() const; public: - void clear_league_id(); - uint32_t league_id() const; - void set_league_id(uint32_t value); + void clear_class_id(); + uint32_t class_id() const; + void set_class_id(uint32_t value); private: - uint32_t _internal_league_id() const; - void _internal_set_league_id(uint32_t value); + uint32_t _internal_class_id() const; + void _internal_set_class_id(uint32_t value); public: - // optional int32 reward_flag = 3; - bool has_reward_flag() const; + // optional uint64 item_id = 4; + bool has_item_id() const; private: - bool _internal_has_reward_flag() const; + bool _internal_has_item_id() const; public: - void clear_reward_flag(); - int32_t reward_flag() const; - void set_reward_flag(int32_t value); + void clear_item_id(); + uint64_t item_id() const; + void set_item_id(uint64_t value); private: - int32_t _internal_reward_flag() const; - void _internal_set_reward_flag(int32_t value); + uint64_t _internal_item_id() const; + void _internal_set_item_id(uint64_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGCToGCRequestPassportItemGrant) + // optional uint32 slot_id = 3 [(.key_field) = true]; + bool has_slot_id() const; + private: + bool _internal_has_slot_id() const; + public: + void clear_slot_id(); + uint32_t slot_id() const; + void set_slot_id(uint32_t value); + private: + uint32_t _internal_slot_id() const; + void _internal_set_slot_id(uint32_t value); + public: + + // optional uint32 item_definition = 5; + bool has_item_definition() const; + private: + bool _internal_has_item_definition() const; + public: + void clear_item_definition(); + uint32_t item_definition() const; + void set_item_definition(uint32_t value); + private: + uint32_t _internal_item_definition() const; + void _internal_set_item_definition(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CSOEconEquipSlot) private: class _Internal; @@ -15719,33 +15883,35 @@ class CMsgGCToGCRequestPassportItemGrant : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint64_t steam_id_; - uint32_t league_id_; - int32_t reward_flag_; + uint32_t account_id_; + uint32_t class_id_; + uint64_t item_id_; + uint32_t slot_id_; + uint32_t item_definition_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgGameServerInfo : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgGameServerInfo) */ { +class CMsgAdjustEquipSlot : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgAdjustEquipSlot) */ { public: - inline CMsgGameServerInfo() : CMsgGameServerInfo(nullptr) {} - ~CMsgGameServerInfo() override; - explicit PROTOBUF_CONSTEXPR CMsgGameServerInfo(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgAdjustEquipSlot() : CMsgAdjustEquipSlot(nullptr) {} + ~CMsgAdjustEquipSlot() override; + explicit PROTOBUF_CONSTEXPR CMsgAdjustEquipSlot(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgGameServerInfo(const CMsgGameServerInfo& from); - CMsgGameServerInfo(CMsgGameServerInfo&& from) noexcept - : CMsgGameServerInfo() { + CMsgAdjustEquipSlot(const CMsgAdjustEquipSlot& from); + CMsgAdjustEquipSlot(CMsgAdjustEquipSlot&& from) noexcept + : CMsgAdjustEquipSlot() { *this = ::std::move(from); } - inline CMsgGameServerInfo& operator=(const CMsgGameServerInfo& from) { + inline CMsgAdjustEquipSlot& operator=(const CMsgAdjustEquipSlot& from) { CopyFrom(from); return *this; } - inline CMsgGameServerInfo& operator=(CMsgGameServerInfo&& from) noexcept { + inline CMsgAdjustEquipSlot& operator=(CMsgAdjustEquipSlot&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -15775,20 +15941,20 @@ class CMsgGameServerInfo : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgGameServerInfo& default_instance() { + static const CMsgAdjustEquipSlot& default_instance() { return *internal_default_instance(); } - static inline const CMsgGameServerInfo* internal_default_instance() { - return reinterpret_cast( - &_CMsgGameServerInfo_default_instance_); + static inline const CMsgAdjustEquipSlot* internal_default_instance() { + return reinterpret_cast( + &_CMsgAdjustEquipSlot_default_instance_); } static constexpr int kIndexInFileMessages = - 79; + 78; - friend void swap(CMsgGameServerInfo& a, CMsgGameServerInfo& b) { + friend void swap(CMsgAdjustEquipSlot& a, CMsgAdjustEquipSlot& b) { a.Swap(&b); } - inline void Swap(CMsgGameServerInfo* other) { + inline void Swap(CMsgAdjustEquipSlot* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -15801,7 +15967,7 @@ class CMsgGameServerInfo : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgGameServerInfo* other) { + void UnsafeArenaSwap(CMsgAdjustEquipSlot* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -15809,14 +15975,14 @@ class CMsgGameServerInfo : // implements Message ---------------------------------------------- - CMsgGameServerInfo* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgAdjustEquipSlot* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgGameServerInfo& from); + void CopyFrom(const CMsgAdjustEquipSlot& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgGameServerInfo& from) { - CMsgGameServerInfo::MergeImpl(*this, from); + void MergeFrom( const CMsgAdjustEquipSlot& from) { + CMsgAdjustEquipSlot::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -15834,15 +16000,15 @@ class CMsgGameServerInfo : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgGameServerInfo* other); + void InternalSwap(CMsgAdjustEquipSlot* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgGameServerInfo"; + return "CMsgAdjustEquipSlot"; } protected: - explicit CMsgGameServerInfo(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgAdjustEquipSlot(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -15853,300 +16019,234 @@ class CMsgGameServerInfo : // nested types ---------------------------------------------------- - typedef CMsgGameServerInfo_ServerType ServerType; - static constexpr ServerType UNSPECIFIED = - CMsgGameServerInfo_ServerType_UNSPECIFIED; - static constexpr ServerType GAME = - CMsgGameServerInfo_ServerType_GAME; - static constexpr ServerType PROXY = - CMsgGameServerInfo_ServerType_PROXY; - static inline bool ServerType_IsValid(int value) { - return CMsgGameServerInfo_ServerType_IsValid(value); - } - static constexpr ServerType ServerType_MIN = - CMsgGameServerInfo_ServerType_ServerType_MIN; - static constexpr ServerType ServerType_MAX = - CMsgGameServerInfo_ServerType_ServerType_MAX; - static constexpr int ServerType_ARRAYSIZE = - CMsgGameServerInfo_ServerType_ServerType_ARRAYSIZE; - static inline const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* - ServerType_descriptor() { - return CMsgGameServerInfo_ServerType_descriptor(); - } - template - static inline const std::string& ServerType_Name(T enum_t_value) { - static_assert(::std::is_same::value || - ::std::is_integral::value, - "Incorrect type passed to function ServerType_Name."); - return CMsgGameServerInfo_ServerType_Name(enum_t_value); - } - static inline bool ServerType_Parse(::PROTOBUF_NAMESPACE_ID::ConstStringParam name, - ServerType* value) { - return CMsgGameServerInfo_ServerType_Parse(name, value); - } - // accessors ------------------------------------------------------- enum : int { - kServerKeyFieldNumber = 5, - kServerPublicIpAddrFieldNumber = 1, - kServerPrivateIpAddrFieldNumber = 2, - kServerPortFieldNumber = 3, - kServerTvPortFieldNumber = 4, - kServerHibernationFieldNumber = 6, - kServerTypeFieldNumber = 7, - kServerRegionFieldNumber = 8, - kServerLoadavgFieldNumber = 9, - kServerTvBroadcastTimeFieldNumber = 10, - kServerGameTimeFieldNumber = 11, - kServerRelayConnectedSteamIdFieldNumber = 12, - kRelaySlotsMaxFieldNumber = 13, - kRelaysConnectedFieldNumber = 14, - kRelayedGameServerSteamIdFieldNumber = 16, - kRelayClientsConnectedFieldNumber = 15, - kParentRelayCountFieldNumber = 17, - kTvSecretCodeFieldNumber = 18, + kClassIdFieldNumber = 1, + kSlotIdFieldNumber = 2, + kItemIdFieldNumber = 3, }; - // optional string server_key = 5; - bool has_server_key() const; - private: - bool _internal_has_server_key() const; - public: - void clear_server_key(); - const std::string& server_key() const; - template - void set_server_key(ArgT0&& arg0, ArgT... args); - std::string* mutable_server_key(); - PROTOBUF_NODISCARD std::string* release_server_key(); - void set_allocated_server_key(std::string* server_key); - private: - const std::string& _internal_server_key() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_server_key(const std::string& value); - std::string* _internal_mutable_server_key(); - public: - - // optional fixed32 server_public_ip_addr = 1; - bool has_server_public_ip_addr() const; + // optional uint32 class_id = 1; + bool has_class_id() const; private: - bool _internal_has_server_public_ip_addr() const; + bool _internal_has_class_id() const; public: - void clear_server_public_ip_addr(); - uint32_t server_public_ip_addr() const; - void set_server_public_ip_addr(uint32_t value); + void clear_class_id(); + uint32_t class_id() const; + void set_class_id(uint32_t value); private: - uint32_t _internal_server_public_ip_addr() const; - void _internal_set_server_public_ip_addr(uint32_t value); + uint32_t _internal_class_id() const; + void _internal_set_class_id(uint32_t value); public: - // optional fixed32 server_private_ip_addr = 2; - bool has_server_private_ip_addr() const; + // optional uint32 slot_id = 2; + bool has_slot_id() const; private: - bool _internal_has_server_private_ip_addr() const; + bool _internal_has_slot_id() const; public: - void clear_server_private_ip_addr(); - uint32_t server_private_ip_addr() const; - void set_server_private_ip_addr(uint32_t value); + void clear_slot_id(); + uint32_t slot_id() const; + void set_slot_id(uint32_t value); private: - uint32_t _internal_server_private_ip_addr() const; - void _internal_set_server_private_ip_addr(uint32_t value); + uint32_t _internal_slot_id() const; + void _internal_set_slot_id(uint32_t value); public: - // optional uint32 server_port = 3; - bool has_server_port() const; + // optional uint64 item_id = 3; + bool has_item_id() const; private: - bool _internal_has_server_port() const; + bool _internal_has_item_id() const; public: - void clear_server_port(); - uint32_t server_port() const; - void set_server_port(uint32_t value); + void clear_item_id(); + uint64_t item_id() const; + void set_item_id(uint64_t value); private: - uint32_t _internal_server_port() const; - void _internal_set_server_port(uint32_t value); + uint64_t _internal_item_id() const; + void _internal_set_item_id(uint64_t value); public: - // optional uint32 server_tv_port = 4; - bool has_server_tv_port() const; - private: - bool _internal_has_server_tv_port() const; - public: - void clear_server_tv_port(); - uint32_t server_tv_port() const; - void set_server_tv_port(uint32_t value); - private: - uint32_t _internal_server_tv_port() const; - void _internal_set_server_tv_port(uint32_t value); - public: + // @@protoc_insertion_point(class_scope:CMsgAdjustEquipSlot) + private: + class _Internal; - // optional bool server_hibernation = 6; - bool has_server_hibernation() const; - private: - bool _internal_has_server_hibernation() const; - public: - void clear_server_hibernation(); - bool server_hibernation() const; - void set_server_hibernation(bool value); - private: - bool _internal_server_hibernation() const; - void _internal_set_server_hibernation(bool value); - public: + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; + struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + uint32_t class_id_; + uint32_t slot_id_; + uint64_t item_id_; + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_base_5fgcmessages_2eproto; +}; +// ------------------------------------------------------------------- - // optional .CMsgGameServerInfo.ServerType server_type = 7 [default = UNSPECIFIED]; - bool has_server_type() const; - private: - bool _internal_has_server_type() const; - public: - void clear_server_type(); - ::CMsgGameServerInfo_ServerType server_type() const; - void set_server_type(::CMsgGameServerInfo_ServerType value); - private: - ::CMsgGameServerInfo_ServerType _internal_server_type() const; - void _internal_set_server_type(::CMsgGameServerInfo_ServerType value); - public: +class CMsgAdjustEquipSlots : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgAdjustEquipSlots) */ { + public: + inline CMsgAdjustEquipSlots() : CMsgAdjustEquipSlots(nullptr) {} + ~CMsgAdjustEquipSlots() override; + explicit PROTOBUF_CONSTEXPR CMsgAdjustEquipSlots(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - // optional uint32 server_region = 8; - bool has_server_region() const; - private: - bool _internal_has_server_region() const; - public: - void clear_server_region(); - uint32_t server_region() const; - void set_server_region(uint32_t value); - private: - uint32_t _internal_server_region() const; - void _internal_set_server_region(uint32_t value); - public: + CMsgAdjustEquipSlots(const CMsgAdjustEquipSlots& from); + CMsgAdjustEquipSlots(CMsgAdjustEquipSlots&& from) noexcept + : CMsgAdjustEquipSlots() { + *this = ::std::move(from); + } - // optional float server_loadavg = 9; - bool has_server_loadavg() const; - private: - bool _internal_has_server_loadavg() const; - public: - void clear_server_loadavg(); - float server_loadavg() const; - void set_server_loadavg(float value); - private: - float _internal_server_loadavg() const; - void _internal_set_server_loadavg(float value); - public: + inline CMsgAdjustEquipSlots& operator=(const CMsgAdjustEquipSlots& from) { + CopyFrom(from); + return *this; + } + inline CMsgAdjustEquipSlots& operator=(CMsgAdjustEquipSlots&& from) noexcept { + if (this == &from) return *this; + if (GetOwningArena() == from.GetOwningArena() + #ifdef PROTOBUF_FORCE_COPY_IN_MOVE + && GetOwningArena() != nullptr + #endif // !PROTOBUF_FORCE_COPY_IN_MOVE + ) { + InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } - // optional float server_tv_broadcast_time = 10; - bool has_server_tv_broadcast_time() const; - private: - bool _internal_has_server_tv_broadcast_time() const; - public: - void clear_server_tv_broadcast_time(); - float server_tv_broadcast_time() const; - void set_server_tv_broadcast_time(float value); - private: - float _internal_server_tv_broadcast_time() const; - void _internal_set_server_tv_broadcast_time(float value); - public: + inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { + return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); + } + inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { + return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); + } - // optional float server_game_time = 11; - bool has_server_game_time() const; - private: - bool _internal_has_server_game_time() const; - public: - void clear_server_game_time(); - float server_game_time() const; - void set_server_game_time(float value); - private: - float _internal_server_game_time() const; - void _internal_set_server_game_time(float value); - public: + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { + return GetDescriptor(); + } + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { + return default_instance().GetMetadata().descriptor; + } + static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { + return default_instance().GetMetadata().reflection; + } + static const CMsgAdjustEquipSlots& default_instance() { + return *internal_default_instance(); + } + static inline const CMsgAdjustEquipSlots* internal_default_instance() { + return reinterpret_cast( + &_CMsgAdjustEquipSlots_default_instance_); + } + static constexpr int kIndexInFileMessages = + 79; - // optional fixed64 server_relay_connected_steam_id = 12; - bool has_server_relay_connected_steam_id() const; - private: - bool _internal_has_server_relay_connected_steam_id() const; - public: - void clear_server_relay_connected_steam_id(); - uint64_t server_relay_connected_steam_id() const; - void set_server_relay_connected_steam_id(uint64_t value); - private: - uint64_t _internal_server_relay_connected_steam_id() const; - void _internal_set_server_relay_connected_steam_id(uint64_t value); - public: + friend void swap(CMsgAdjustEquipSlots& a, CMsgAdjustEquipSlots& b) { + a.Swap(&b); + } + inline void Swap(CMsgAdjustEquipSlots* other) { + if (other == this) return; + #ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() != nullptr && + GetOwningArena() == other->GetOwningArena()) { + #else // PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() == other->GetOwningArena()) { + #endif // !PROTOBUF_FORCE_COPY_IN_SWAP + InternalSwap(other); + } else { + ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); + } + } + void UnsafeArenaSwap(CMsgAdjustEquipSlots* other) { + if (other == this) return; + GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); + InternalSwap(other); + } - // optional uint32 relay_slots_max = 13; - bool has_relay_slots_max() const; - private: - bool _internal_has_relay_slots_max() const; - public: - void clear_relay_slots_max(); - uint32_t relay_slots_max() const; - void set_relay_slots_max(uint32_t value); - private: - uint32_t _internal_relay_slots_max() const; - void _internal_set_relay_slots_max(uint32_t value); - public: + // implements Message ---------------------------------------------- - // optional int32 relays_connected = 14; - bool has_relays_connected() const; - private: - bool _internal_has_relays_connected() const; - public: - void clear_relays_connected(); - int32_t relays_connected() const; - void set_relays_connected(int32_t value); + CMsgAdjustEquipSlots* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); + } + using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; + void CopyFrom(const CMsgAdjustEquipSlots& from); + using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; + void MergeFrom( const CMsgAdjustEquipSlots& from) { + CMsgAdjustEquipSlots::MergeImpl(*this, from); + } private: - int32_t _internal_relays_connected() const; - void _internal_set_relays_connected(int32_t value); + static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); public: + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; - // optional fixed64 relayed_game_server_steam_id = 16; - bool has_relayed_game_server_steam_id() const; - private: - bool _internal_has_relayed_game_server_steam_id() const; - public: - void clear_relayed_game_server_steam_id(); - uint64_t relayed_game_server_steam_id() const; - void set_relayed_game_server_steam_id(uint64_t value); - private: - uint64_t _internal_relayed_game_server_steam_id() const; - void _internal_set_relayed_game_server_steam_id(uint64_t value); - public: + size_t ByteSizeLong() const final; + const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; + uint8_t* _InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const final { return _impl_._cached_size_.Get(); } - // optional int32 relay_clients_connected = 15; - bool has_relay_clients_connected() const; private: - bool _internal_has_relay_clients_connected() const; - public: - void clear_relay_clients_connected(); - int32_t relay_clients_connected() const; - void set_relay_clients_connected(int32_t value); + void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(CMsgAdjustEquipSlots* other); + private: - int32_t _internal_relay_clients_connected() const; - void _internal_set_relay_clients_connected(int32_t value); + friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; + static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { + return "CMsgAdjustEquipSlots"; + } + protected: + explicit CMsgAdjustEquipSlots(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned = false); public: - // optional uint32 parent_relay_count = 17; - bool has_parent_relay_count() const; + static const ClassData _class_data_; + const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; + + ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + enum : int { + kSlotsFieldNumber = 1, + kChangeNumFieldNumber = 2, + }; + // repeated .CMsgAdjustEquipSlot slots = 1; + int slots_size() const; private: - bool _internal_has_parent_relay_count() const; + int _internal_slots_size() const; public: - void clear_parent_relay_count(); - uint32_t parent_relay_count() const; - void set_parent_relay_count(uint32_t value); + void clear_slots(); + ::CMsgAdjustEquipSlot* mutable_slots(int index); + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgAdjustEquipSlot >* + mutable_slots(); private: - uint32_t _internal_parent_relay_count() const; - void _internal_set_parent_relay_count(uint32_t value); + const ::CMsgAdjustEquipSlot& _internal_slots(int index) const; + ::CMsgAdjustEquipSlot* _internal_add_slots(); public: + const ::CMsgAdjustEquipSlot& slots(int index) const; + ::CMsgAdjustEquipSlot* add_slots(); + const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgAdjustEquipSlot >& + slots() const; - // optional fixed64 tv_secret_code = 18; - bool has_tv_secret_code() const; + // optional uint32 change_num = 2; + bool has_change_num() const; private: - bool _internal_has_tv_secret_code() const; + bool _internal_has_change_num() const; public: - void clear_tv_secret_code(); - uint64_t tv_secret_code() const; - void set_tv_secret_code(uint64_t value); + void clear_change_num(); + uint32_t change_num() const; + void set_change_num(uint32_t value); private: - uint64_t _internal_tv_secret_code() const; - void _internal_set_tv_secret_code(uint64_t value); + uint32_t _internal_change_num() const; + void _internal_set_change_num(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgGameServerInfo) + // @@protoc_insertion_point(class_scope:CMsgAdjustEquipSlots) private: class _Internal; @@ -16156,48 +16256,32 @@ class CMsgGameServerInfo : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr server_key_; - uint32_t server_public_ip_addr_; - uint32_t server_private_ip_addr_; - uint32_t server_port_; - uint32_t server_tv_port_; - bool server_hibernation_; - int server_type_; - uint32_t server_region_; - float server_loadavg_; - float server_tv_broadcast_time_; - float server_game_time_; - uint64_t server_relay_connected_steam_id_; - uint32_t relay_slots_max_; - int32_t relays_connected_; - uint64_t relayed_game_server_steam_id_; - int32_t relay_clients_connected_; - uint32_t parent_relay_count_; - uint64_t tv_secret_code_; + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgAdjustEquipSlot > slots_; + uint32_t change_num_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CSOEconEquipSlot : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconEquipSlot) */ { +class CMsgOpenCrate : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgOpenCrate) */ { public: - inline CSOEconEquipSlot() : CSOEconEquipSlot(nullptr) {} - ~CSOEconEquipSlot() override; - explicit PROTOBUF_CONSTEXPR CSOEconEquipSlot(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgOpenCrate() : CMsgOpenCrate(nullptr) {} + ~CMsgOpenCrate() override; + explicit PROTOBUF_CONSTEXPR CMsgOpenCrate(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CSOEconEquipSlot(const CSOEconEquipSlot& from); - CSOEconEquipSlot(CSOEconEquipSlot&& from) noexcept - : CSOEconEquipSlot() { + CMsgOpenCrate(const CMsgOpenCrate& from); + CMsgOpenCrate(CMsgOpenCrate&& from) noexcept + : CMsgOpenCrate() { *this = ::std::move(from); } - inline CSOEconEquipSlot& operator=(const CSOEconEquipSlot& from) { + inline CMsgOpenCrate& operator=(const CMsgOpenCrate& from) { CopyFrom(from); return *this; } - inline CSOEconEquipSlot& operator=(CSOEconEquipSlot&& from) noexcept { + inline CMsgOpenCrate& operator=(CMsgOpenCrate&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -16227,20 +16311,20 @@ class CSOEconEquipSlot : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CSOEconEquipSlot& default_instance() { + static const CMsgOpenCrate& default_instance() { return *internal_default_instance(); } - static inline const CSOEconEquipSlot* internal_default_instance() { - return reinterpret_cast( - &_CSOEconEquipSlot_default_instance_); + static inline const CMsgOpenCrate* internal_default_instance() { + return reinterpret_cast( + &_CMsgOpenCrate_default_instance_); } static constexpr int kIndexInFileMessages = 80; - friend void swap(CSOEconEquipSlot& a, CSOEconEquipSlot& b) { + friend void swap(CMsgOpenCrate& a, CMsgOpenCrate& b) { a.Swap(&b); } - inline void Swap(CSOEconEquipSlot* other) { + inline void Swap(CMsgOpenCrate* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -16253,7 +16337,7 @@ class CSOEconEquipSlot : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CSOEconEquipSlot* other) { + void UnsafeArenaSwap(CMsgOpenCrate* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -16261,14 +16345,14 @@ class CSOEconEquipSlot : // implements Message ---------------------------------------------- - CSOEconEquipSlot* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgOpenCrate* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CSOEconEquipSlot& from); + void CopyFrom(const CMsgOpenCrate& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CSOEconEquipSlot& from) { - CSOEconEquipSlot::MergeImpl(*this, from); + void MergeFrom( const CMsgOpenCrate& from) { + CMsgOpenCrate::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -16286,15 +16370,15 @@ class CSOEconEquipSlot : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CSOEconEquipSlot* other); + void InternalSwap(CMsgOpenCrate* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CSOEconEquipSlot"; + return "CMsgOpenCrate"; } protected: - explicit CSOEconEquipSlot(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgOpenCrate(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -16308,78 +16392,64 @@ class CSOEconEquipSlot : // accessors ------------------------------------------------------- enum : int { - kAccountIdFieldNumber = 1, - kClassIdFieldNumber = 2, - kItemIdFieldNumber = 4, - kSlotIdFieldNumber = 3, - kItemDefinitionFieldNumber = 5, + kToolItemIdFieldNumber = 1, + kSubjectItemIdFieldNumber = 2, + kForRentalFieldNumber = 3, + kPointsRemainingFieldNumber = 4, }; - // optional uint32 account_id = 1 [(.key_field) = true]; - bool has_account_id() const; - private: - bool _internal_has_account_id() const; - public: - void clear_account_id(); - uint32_t account_id() const; - void set_account_id(uint32_t value); - private: - uint32_t _internal_account_id() const; - void _internal_set_account_id(uint32_t value); - public: - - // optional uint32 class_id = 2 [(.key_field) = true]; - bool has_class_id() const; + // optional uint64 tool_item_id = 1; + bool has_tool_item_id() const; private: - bool _internal_has_class_id() const; + bool _internal_has_tool_item_id() const; public: - void clear_class_id(); - uint32_t class_id() const; - void set_class_id(uint32_t value); + void clear_tool_item_id(); + uint64_t tool_item_id() const; + void set_tool_item_id(uint64_t value); private: - uint32_t _internal_class_id() const; - void _internal_set_class_id(uint32_t value); + uint64_t _internal_tool_item_id() const; + void _internal_set_tool_item_id(uint64_t value); public: - // optional uint64 item_id = 4; - bool has_item_id() const; + // optional uint64 subject_item_id = 2; + bool has_subject_item_id() const; private: - bool _internal_has_item_id() const; + bool _internal_has_subject_item_id() const; public: - void clear_item_id(); - uint64_t item_id() const; - void set_item_id(uint64_t value); + void clear_subject_item_id(); + uint64_t subject_item_id() const; + void set_subject_item_id(uint64_t value); private: - uint64_t _internal_item_id() const; - void _internal_set_item_id(uint64_t value); + uint64_t _internal_subject_item_id() const; + void _internal_set_subject_item_id(uint64_t value); public: - // optional uint32 slot_id = 3 [(.key_field) = true]; - bool has_slot_id() const; + // optional bool for_rental = 3; + bool has_for_rental() const; private: - bool _internal_has_slot_id() const; + bool _internal_has_for_rental() const; public: - void clear_slot_id(); - uint32_t slot_id() const; - void set_slot_id(uint32_t value); + void clear_for_rental(); + bool for_rental() const; + void set_for_rental(bool value); private: - uint32_t _internal_slot_id() const; - void _internal_set_slot_id(uint32_t value); + bool _internal_for_rental() const; + void _internal_set_for_rental(bool value); public: - // optional uint32 item_definition = 5; - bool has_item_definition() const; + // optional uint32 points_remaining = 4; + bool has_points_remaining() const; private: - bool _internal_has_item_definition() const; + bool _internal_has_points_remaining() const; public: - void clear_item_definition(); - uint32_t item_definition() const; - void set_item_definition(uint32_t value); + void clear_points_remaining(); + uint32_t points_remaining() const; + void set_points_remaining(uint32_t value); private: - uint32_t _internal_item_definition() const; - void _internal_set_item_definition(uint32_t value); + uint32_t _internal_points_remaining() const; + void _internal_set_points_remaining(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CSOEconEquipSlot) + // @@protoc_insertion_point(class_scope:CMsgOpenCrate) private: class _Internal; @@ -16389,35 +16459,34 @@ class CSOEconEquipSlot : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t account_id_; - uint32_t class_id_; - uint64_t item_id_; - uint32_t slot_id_; - uint32_t item_definition_; + uint64_t tool_item_id_; + uint64_t subject_item_id_; + bool for_rental_; + uint32_t points_remaining_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgAdjustEquipSlot : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgAdjustEquipSlot) */ { +class CSOEconRentalHistory : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOEconRentalHistory) */ { public: - inline CMsgAdjustEquipSlot() : CMsgAdjustEquipSlot(nullptr) {} - ~CMsgAdjustEquipSlot() override; - explicit PROTOBUF_CONSTEXPR CMsgAdjustEquipSlot(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CSOEconRentalHistory() : CSOEconRentalHistory(nullptr) {} + ~CSOEconRentalHistory() override; + explicit PROTOBUF_CONSTEXPR CSOEconRentalHistory(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgAdjustEquipSlot(const CMsgAdjustEquipSlot& from); - CMsgAdjustEquipSlot(CMsgAdjustEquipSlot&& from) noexcept - : CMsgAdjustEquipSlot() { + CSOEconRentalHistory(const CSOEconRentalHistory& from); + CSOEconRentalHistory(CSOEconRentalHistory&& from) noexcept + : CSOEconRentalHistory() { *this = ::std::move(from); } - inline CMsgAdjustEquipSlot& operator=(const CMsgAdjustEquipSlot& from) { + inline CSOEconRentalHistory& operator=(const CSOEconRentalHistory& from) { CopyFrom(from); return *this; } - inline CMsgAdjustEquipSlot& operator=(CMsgAdjustEquipSlot&& from) noexcept { + inline CSOEconRentalHistory& operator=(CSOEconRentalHistory&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -16447,20 +16516,20 @@ class CMsgAdjustEquipSlot : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgAdjustEquipSlot& default_instance() { + static const CSOEconRentalHistory& default_instance() { return *internal_default_instance(); } - static inline const CMsgAdjustEquipSlot* internal_default_instance() { - return reinterpret_cast( - &_CMsgAdjustEquipSlot_default_instance_); + static inline const CSOEconRentalHistory* internal_default_instance() { + return reinterpret_cast( + &_CSOEconRentalHistory_default_instance_); } static constexpr int kIndexInFileMessages = 81; - friend void swap(CMsgAdjustEquipSlot& a, CMsgAdjustEquipSlot& b) { + friend void swap(CSOEconRentalHistory& a, CSOEconRentalHistory& b) { a.Swap(&b); } - inline void Swap(CMsgAdjustEquipSlot* other) { + inline void Swap(CSOEconRentalHistory* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -16473,7 +16542,7 @@ class CMsgAdjustEquipSlot : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgAdjustEquipSlot* other) { + void UnsafeArenaSwap(CSOEconRentalHistory* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -16481,14 +16550,14 @@ class CMsgAdjustEquipSlot : // implements Message ---------------------------------------------- - CMsgAdjustEquipSlot* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CSOEconRentalHistory* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgAdjustEquipSlot& from); + void CopyFrom(const CSOEconRentalHistory& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgAdjustEquipSlot& from) { - CMsgAdjustEquipSlot::MergeImpl(*this, from); + void MergeFrom( const CSOEconRentalHistory& from) { + CSOEconRentalHistory::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -16506,15 +16575,15 @@ class CMsgAdjustEquipSlot : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgAdjustEquipSlot* other); + void InternalSwap(CSOEconRentalHistory* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgAdjustEquipSlot"; + return "CSOEconRentalHistory"; } protected: - explicit CMsgAdjustEquipSlot(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CSOEconRentalHistory(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -16528,50 +16597,78 @@ class CMsgAdjustEquipSlot : // accessors ------------------------------------------------------- enum : int { - kClassIdFieldNumber = 1, - kSlotIdFieldNumber = 2, - kItemIdFieldNumber = 3, + kCrateItemIdFieldNumber = 2, + kAccountIdFieldNumber = 1, + kCrateDefIndexFieldNumber = 3, + kIssueDateFieldNumber = 4, + kExpirationDateFieldNumber = 5, }; - // optional uint32 class_id = 1; - bool has_class_id() const; + // optional uint64 crate_item_id = 2 [(.key_field) = true]; + bool has_crate_item_id() const; private: - bool _internal_has_class_id() const; + bool _internal_has_crate_item_id() const; public: - void clear_class_id(); - uint32_t class_id() const; - void set_class_id(uint32_t value); + void clear_crate_item_id(); + uint64_t crate_item_id() const; + void set_crate_item_id(uint64_t value); private: - uint32_t _internal_class_id() const; - void _internal_set_class_id(uint32_t value); + uint64_t _internal_crate_item_id() const; + void _internal_set_crate_item_id(uint64_t value); public: - // optional uint32 slot_id = 2; - bool has_slot_id() const; + // optional uint32 account_id = 1 [(.key_field) = true]; + bool has_account_id() const; private: - bool _internal_has_slot_id() const; + bool _internal_has_account_id() const; public: - void clear_slot_id(); - uint32_t slot_id() const; - void set_slot_id(uint32_t value); + void clear_account_id(); + uint32_t account_id() const; + void set_account_id(uint32_t value); private: - uint32_t _internal_slot_id() const; - void _internal_set_slot_id(uint32_t value); + uint32_t _internal_account_id() const; + void _internal_set_account_id(uint32_t value); public: - // optional uint64 item_id = 3; - bool has_item_id() const; + // optional uint32 crate_def_index = 3; + bool has_crate_def_index() const; private: - bool _internal_has_item_id() const; + bool _internal_has_crate_def_index() const; public: - void clear_item_id(); - uint64_t item_id() const; - void set_item_id(uint64_t value); + void clear_crate_def_index(); + uint32_t crate_def_index() const; + void set_crate_def_index(uint32_t value); private: - uint64_t _internal_item_id() const; - void _internal_set_item_id(uint64_t value); + uint32_t _internal_crate_def_index() const; + void _internal_set_crate_def_index(uint32_t value); public: - // @@protoc_insertion_point(class_scope:CMsgAdjustEquipSlot) + // optional uint32 issue_date = 4; + bool has_issue_date() const; + private: + bool _internal_has_issue_date() const; + public: + void clear_issue_date(); + uint32_t issue_date() const; + void set_issue_date(uint32_t value); + private: + uint32_t _internal_issue_date() const; + void _internal_set_issue_date(uint32_t value); + public: + + // optional uint32 expiration_date = 5; + bool has_expiration_date() const; + private: + bool _internal_has_expiration_date() const; + public: + void clear_expiration_date(); + uint32_t expiration_date() const; + void set_expiration_date(uint32_t value); + private: + uint32_t _internal_expiration_date() const; + void _internal_set_expiration_date(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CSOEconRentalHistory) private: class _Internal; @@ -16581,33 +16678,35 @@ class CMsgAdjustEquipSlot : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - uint32_t class_id_; - uint32_t slot_id_; - uint64_t item_id_; + uint64_t crate_item_id_; + uint32_t account_id_; + uint32_t crate_def_index_; + uint32_t issue_date_; + uint32_t expiration_date_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // ------------------------------------------------------------------- -class CMsgAdjustEquipSlots : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgAdjustEquipSlots) */ { +class CMsgAcknowledgeRentalExpiration : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgAcknowledgeRentalExpiration) */ { public: - inline CMsgAdjustEquipSlots() : CMsgAdjustEquipSlots(nullptr) {} - ~CMsgAdjustEquipSlots() override; - explicit PROTOBUF_CONSTEXPR CMsgAdjustEquipSlots(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgAcknowledgeRentalExpiration() : CMsgAcknowledgeRentalExpiration(nullptr) {} + ~CMsgAcknowledgeRentalExpiration() override; + explicit PROTOBUF_CONSTEXPR CMsgAcknowledgeRentalExpiration(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CMsgAdjustEquipSlots(const CMsgAdjustEquipSlots& from); - CMsgAdjustEquipSlots(CMsgAdjustEquipSlots&& from) noexcept - : CMsgAdjustEquipSlots() { + CMsgAcknowledgeRentalExpiration(const CMsgAcknowledgeRentalExpiration& from); + CMsgAcknowledgeRentalExpiration(CMsgAcknowledgeRentalExpiration&& from) noexcept + : CMsgAcknowledgeRentalExpiration() { *this = ::std::move(from); } - inline CMsgAdjustEquipSlots& operator=(const CMsgAdjustEquipSlots& from) { + inline CMsgAcknowledgeRentalExpiration& operator=(const CMsgAcknowledgeRentalExpiration& from) { CopyFrom(from); return *this; } - inline CMsgAdjustEquipSlots& operator=(CMsgAdjustEquipSlots&& from) noexcept { + inline CMsgAcknowledgeRentalExpiration& operator=(CMsgAcknowledgeRentalExpiration&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -16637,20 +16736,20 @@ class CMsgAdjustEquipSlots : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CMsgAdjustEquipSlots& default_instance() { + static const CMsgAcknowledgeRentalExpiration& default_instance() { return *internal_default_instance(); } - static inline const CMsgAdjustEquipSlots* internal_default_instance() { - return reinterpret_cast( - &_CMsgAdjustEquipSlots_default_instance_); + static inline const CMsgAcknowledgeRentalExpiration* internal_default_instance() { + return reinterpret_cast( + &_CMsgAcknowledgeRentalExpiration_default_instance_); } static constexpr int kIndexInFileMessages = 82; - friend void swap(CMsgAdjustEquipSlots& a, CMsgAdjustEquipSlots& b) { + friend void swap(CMsgAcknowledgeRentalExpiration& a, CMsgAcknowledgeRentalExpiration& b) { a.Swap(&b); } - inline void Swap(CMsgAdjustEquipSlots* other) { + inline void Swap(CMsgAcknowledgeRentalExpiration* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -16663,7 +16762,7 @@ class CMsgAdjustEquipSlots : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CMsgAdjustEquipSlots* other) { + void UnsafeArenaSwap(CMsgAcknowledgeRentalExpiration* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -16671,14 +16770,14 @@ class CMsgAdjustEquipSlots : // implements Message ---------------------------------------------- - CMsgAdjustEquipSlots* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgAcknowledgeRentalExpiration* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CMsgAdjustEquipSlots& from); + void CopyFrom(const CMsgAcknowledgeRentalExpiration& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CMsgAdjustEquipSlots& from) { - CMsgAdjustEquipSlots::MergeImpl(*this, from); + void MergeFrom( const CMsgAcknowledgeRentalExpiration& from) { + CMsgAcknowledgeRentalExpiration::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -16696,15 +16795,15 @@ class CMsgAdjustEquipSlots : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CMsgAdjustEquipSlots* other); + void InternalSwap(CMsgAcknowledgeRentalExpiration* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CMsgAdjustEquipSlots"; + return "CMsgAcknowledgeRentalExpiration"; } protected: - explicit CMsgAdjustEquipSlots(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgAcknowledgeRentalExpiration(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -16718,27 +16817,22 @@ class CMsgAdjustEquipSlots : // accessors ------------------------------------------------------- enum : int { - kSlotsFieldNumber = 1, + kCrateItemIdFieldNumber = 1, }; - // repeated .CMsgAdjustEquipSlot slots = 1; - int slots_size() const; - private: - int _internal_slots_size() const; - public: - void clear_slots(); - ::CMsgAdjustEquipSlot* mutable_slots(int index); - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgAdjustEquipSlot >* - mutable_slots(); + // optional uint64 crate_item_id = 1; + bool has_crate_item_id() const; private: - const ::CMsgAdjustEquipSlot& _internal_slots(int index) const; - ::CMsgAdjustEquipSlot* _internal_add_slots(); - public: - const ::CMsgAdjustEquipSlot& slots(int index) const; - ::CMsgAdjustEquipSlot* add_slots(); - const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgAdjustEquipSlot >& - slots() const; + bool _internal_has_crate_item_id() const; + public: + void clear_crate_item_id(); + uint64_t crate_item_id() const; + void set_crate_item_id(uint64_t value); + private: + uint64_t _internal_crate_item_id() const; + void _internal_set_crate_item_id(uint64_t value); + public: - // @@protoc_insertion_point(class_scope:CMsgAdjustEquipSlots) + // @@protoc_insertion_point(class_scope:CMsgAcknowledgeRentalExpiration) private: class _Internal; @@ -16746,11 +16840,12 @@ class CMsgAdjustEquipSlots : typedef void InternalArenaConstructable_; typedef void DestructorSkippable_; struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgAdjustEquipSlot > slots_; + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + uint64_t crate_item_id_; }; union { Impl_ _impl_; }; - friend struct ::TableStruct_base_5fgcmessages_5fcsgo_2eproto; + friend struct ::TableStruct_base_5fgcmessages_2eproto; }; // =================================================================== @@ -16875,6 +16970,34 @@ inline void CGCStorePurchaseInit_LineItem::set_purchase_type(uint32_t value) { // @@protoc_insertion_point(field_set:CGCStorePurchaseInit_LineItem.purchase_type) } +// optional uint64 supplemental_data = 5; +inline bool CGCStorePurchaseInit_LineItem::_internal_has_supplemental_data() const { + bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; + return value; +} +inline bool CGCStorePurchaseInit_LineItem::has_supplemental_data() const { + return _internal_has_supplemental_data(); +} +inline void CGCStorePurchaseInit_LineItem::clear_supplemental_data() { + _impl_.supplemental_data_ = uint64_t{0u}; + _impl_._has_bits_[0] &= ~0x00000010u; +} +inline uint64_t CGCStorePurchaseInit_LineItem::_internal_supplemental_data() const { + return _impl_.supplemental_data_; +} +inline uint64_t CGCStorePurchaseInit_LineItem::supplemental_data() const { + // @@protoc_insertion_point(field_get:CGCStorePurchaseInit_LineItem.supplemental_data) + return _internal_supplemental_data(); +} +inline void CGCStorePurchaseInit_LineItem::_internal_set_supplemental_data(uint64_t value) { + _impl_._has_bits_[0] |= 0x00000010u; + _impl_.supplemental_data_ = value; +} +inline void CGCStorePurchaseInit_LineItem::set_supplemental_data(uint64_t value) { + _internal_set_supplemental_data(value); + // @@protoc_insertion_point(field_set:CGCStorePurchaseInit_LineItem.supplemental_data) +} + // ------------------------------------------------------------------- // CMsgGCStorePurchaseInit @@ -17914,9 +18037,37 @@ inline void CSOEconGameAccountClient::set_additional_backpack_slots(uint32_t val // @@protoc_insertion_point(field_set:CSOEconGameAccountClient.additional_backpack_slots) } +// optional fixed32 trade_ban_expiration = 6; +inline bool CSOEconGameAccountClient::_internal_has_trade_ban_expiration() const { + bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; + return value; +} +inline bool CSOEconGameAccountClient::has_trade_ban_expiration() const { + return _internal_has_trade_ban_expiration(); +} +inline void CSOEconGameAccountClient::clear_trade_ban_expiration() { + _impl_.trade_ban_expiration_ = 0u; + _impl_._has_bits_[0] &= ~0x00000002u; +} +inline uint32_t CSOEconGameAccountClient::_internal_trade_ban_expiration() const { + return _impl_.trade_ban_expiration_; +} +inline uint32_t CSOEconGameAccountClient::trade_ban_expiration() const { + // @@protoc_insertion_point(field_get:CSOEconGameAccountClient.trade_ban_expiration) + return _internal_trade_ban_expiration(); +} +inline void CSOEconGameAccountClient::_internal_set_trade_ban_expiration(uint32_t value) { + _impl_._has_bits_[0] |= 0x00000002u; + _impl_.trade_ban_expiration_ = value; +} +inline void CSOEconGameAccountClient::set_trade_ban_expiration(uint32_t value) { + _internal_set_trade_ban_expiration(value); + // @@protoc_insertion_point(field_set:CSOEconGameAccountClient.trade_ban_expiration) +} + // optional fixed32 bonus_xp_timestamp_refresh = 12; inline bool CSOEconGameAccountClient::_internal_has_bonus_xp_timestamp_refresh() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; return value; } inline bool CSOEconGameAccountClient::has_bonus_xp_timestamp_refresh() const { @@ -17924,7 +18075,7 @@ inline bool CSOEconGameAccountClient::has_bonus_xp_timestamp_refresh() const { } inline void CSOEconGameAccountClient::clear_bonus_xp_timestamp_refresh() { _impl_.bonus_xp_timestamp_refresh_ = 0u; - _impl_._has_bits_[0] &= ~0x00000002u; + _impl_._has_bits_[0] &= ~0x00000004u; } inline uint32_t CSOEconGameAccountClient::_internal_bonus_xp_timestamp_refresh() const { return _impl_.bonus_xp_timestamp_refresh_; @@ -17934,7 +18085,7 @@ inline uint32_t CSOEconGameAccountClient::bonus_xp_timestamp_refresh() const { return _internal_bonus_xp_timestamp_refresh(); } inline void CSOEconGameAccountClient::_internal_set_bonus_xp_timestamp_refresh(uint32_t value) { - _impl_._has_bits_[0] |= 0x00000002u; + _impl_._has_bits_[0] |= 0x00000004u; _impl_.bonus_xp_timestamp_refresh_ = value; } inline void CSOEconGameAccountClient::set_bonus_xp_timestamp_refresh(uint32_t value) { @@ -17944,7 +18095,7 @@ inline void CSOEconGameAccountClient::set_bonus_xp_timestamp_refresh(uint32_t va // optional uint32 bonus_xp_usedflags = 13; inline bool CSOEconGameAccountClient::_internal_has_bonus_xp_usedflags() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; return value; } inline bool CSOEconGameAccountClient::has_bonus_xp_usedflags() const { @@ -17952,7 +18103,7 @@ inline bool CSOEconGameAccountClient::has_bonus_xp_usedflags() const { } inline void CSOEconGameAccountClient::clear_bonus_xp_usedflags() { _impl_.bonus_xp_usedflags_ = 0u; - _impl_._has_bits_[0] &= ~0x00000004u; + _impl_._has_bits_[0] &= ~0x00000008u; } inline uint32_t CSOEconGameAccountClient::_internal_bonus_xp_usedflags() const { return _impl_.bonus_xp_usedflags_; @@ -17962,7 +18113,7 @@ inline uint32_t CSOEconGameAccountClient::bonus_xp_usedflags() const { return _internal_bonus_xp_usedflags(); } inline void CSOEconGameAccountClient::_internal_set_bonus_xp_usedflags(uint32_t value) { - _impl_._has_bits_[0] |= 0x00000004u; + _impl_._has_bits_[0] |= 0x00000008u; _impl_.bonus_xp_usedflags_ = value; } inline void CSOEconGameAccountClient::set_bonus_xp_usedflags(uint32_t value) { @@ -17972,7 +18123,7 @@ inline void CSOEconGameAccountClient::set_bonus_xp_usedflags(uint32_t value) { // optional uint32 elevated_state = 14; inline bool CSOEconGameAccountClient::_internal_has_elevated_state() const { - bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; return value; } inline bool CSOEconGameAccountClient::has_elevated_state() const { @@ -17980,7 +18131,7 @@ inline bool CSOEconGameAccountClient::has_elevated_state() const { } inline void CSOEconGameAccountClient::clear_elevated_state() { _impl_.elevated_state_ = 0u; - _impl_._has_bits_[0] &= ~0x00000008u; + _impl_._has_bits_[0] &= ~0x00000010u; } inline uint32_t CSOEconGameAccountClient::_internal_elevated_state() const { return _impl_.elevated_state_; @@ -17990,7 +18141,7 @@ inline uint32_t CSOEconGameAccountClient::elevated_state() const { return _internal_elevated_state(); } inline void CSOEconGameAccountClient::_internal_set_elevated_state(uint32_t value) { - _impl_._has_bits_[0] |= 0x00000008u; + _impl_._has_bits_[0] |= 0x00000010u; _impl_.elevated_state_ = value; } inline void CSOEconGameAccountClient::set_elevated_state(uint32_t value) { @@ -18000,7 +18151,7 @@ inline void CSOEconGameAccountClient::set_elevated_state(uint32_t value) { // optional uint32 elevated_timestamp = 15; inline bool CSOEconGameAccountClient::_internal_has_elevated_timestamp() const { - bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000020u) != 0; return value; } inline bool CSOEconGameAccountClient::has_elevated_timestamp() const { @@ -18008,7 +18159,7 @@ inline bool CSOEconGameAccountClient::has_elevated_timestamp() const { } inline void CSOEconGameAccountClient::clear_elevated_timestamp() { _impl_.elevated_timestamp_ = 0u; - _impl_._has_bits_[0] &= ~0x00000010u; + _impl_._has_bits_[0] &= ~0x00000020u; } inline uint32_t CSOEconGameAccountClient::_internal_elevated_timestamp() const { return _impl_.elevated_timestamp_; @@ -18018,7 +18169,7 @@ inline uint32_t CSOEconGameAccountClient::elevated_timestamp() const { return _internal_elevated_timestamp(); } inline void CSOEconGameAccountClient::_internal_set_elevated_timestamp(uint32_t value) { - _impl_._has_bits_[0] |= 0x00000010u; + _impl_._has_bits_[0] |= 0x00000020u; _impl_.elevated_timestamp_ = value; } inline void CSOEconGameAccountClient::set_elevated_timestamp(uint32_t value) { @@ -19963,6 +20114,174 @@ inline void CMsgApplySticker::set_sticker_wear(float value) { // @@protoc_insertion_point(field_set:CMsgApplySticker.sticker_wear) } +// optional float sticker_rotation = 6; +inline bool CMsgApplySticker::_internal_has_sticker_rotation() const { + bool value = (_impl_._has_bits_[0] & 0x00000020u) != 0; + return value; +} +inline bool CMsgApplySticker::has_sticker_rotation() const { + return _internal_has_sticker_rotation(); +} +inline void CMsgApplySticker::clear_sticker_rotation() { + _impl_.sticker_rotation_ = 0; + _impl_._has_bits_[0] &= ~0x00000020u; +} +inline float CMsgApplySticker::_internal_sticker_rotation() const { + return _impl_.sticker_rotation_; +} +inline float CMsgApplySticker::sticker_rotation() const { + // @@protoc_insertion_point(field_get:CMsgApplySticker.sticker_rotation) + return _internal_sticker_rotation(); +} +inline void CMsgApplySticker::_internal_set_sticker_rotation(float value) { + _impl_._has_bits_[0] |= 0x00000020u; + _impl_.sticker_rotation_ = value; +} +inline void CMsgApplySticker::set_sticker_rotation(float value) { + _internal_set_sticker_rotation(value); + // @@protoc_insertion_point(field_set:CMsgApplySticker.sticker_rotation) +} + +// optional float sticker_scale = 7; +inline bool CMsgApplySticker::_internal_has_sticker_scale() const { + bool value = (_impl_._has_bits_[0] & 0x00000040u) != 0; + return value; +} +inline bool CMsgApplySticker::has_sticker_scale() const { + return _internal_has_sticker_scale(); +} +inline void CMsgApplySticker::clear_sticker_scale() { + _impl_.sticker_scale_ = 0; + _impl_._has_bits_[0] &= ~0x00000040u; +} +inline float CMsgApplySticker::_internal_sticker_scale() const { + return _impl_.sticker_scale_; +} +inline float CMsgApplySticker::sticker_scale() const { + // @@protoc_insertion_point(field_get:CMsgApplySticker.sticker_scale) + return _internal_sticker_scale(); +} +inline void CMsgApplySticker::_internal_set_sticker_scale(float value) { + _impl_._has_bits_[0] |= 0x00000040u; + _impl_.sticker_scale_ = value; +} +inline void CMsgApplySticker::set_sticker_scale(float value) { + _internal_set_sticker_scale(value); + // @@protoc_insertion_point(field_set:CMsgApplySticker.sticker_scale) +} + +// optional float sticker_offset_x = 8; +inline bool CMsgApplySticker::_internal_has_sticker_offset_x() const { + bool value = (_impl_._has_bits_[0] & 0x00000080u) != 0; + return value; +} +inline bool CMsgApplySticker::has_sticker_offset_x() const { + return _internal_has_sticker_offset_x(); +} +inline void CMsgApplySticker::clear_sticker_offset_x() { + _impl_.sticker_offset_x_ = 0; + _impl_._has_bits_[0] &= ~0x00000080u; +} +inline float CMsgApplySticker::_internal_sticker_offset_x() const { + return _impl_.sticker_offset_x_; +} +inline float CMsgApplySticker::sticker_offset_x() const { + // @@protoc_insertion_point(field_get:CMsgApplySticker.sticker_offset_x) + return _internal_sticker_offset_x(); +} +inline void CMsgApplySticker::_internal_set_sticker_offset_x(float value) { + _impl_._has_bits_[0] |= 0x00000080u; + _impl_.sticker_offset_x_ = value; +} +inline void CMsgApplySticker::set_sticker_offset_x(float value) { + _internal_set_sticker_offset_x(value); + // @@protoc_insertion_point(field_set:CMsgApplySticker.sticker_offset_x) +} + +// optional float sticker_offset_y = 9; +inline bool CMsgApplySticker::_internal_has_sticker_offset_y() const { + bool value = (_impl_._has_bits_[0] & 0x00000100u) != 0; + return value; +} +inline bool CMsgApplySticker::has_sticker_offset_y() const { + return _internal_has_sticker_offset_y(); +} +inline void CMsgApplySticker::clear_sticker_offset_y() { + _impl_.sticker_offset_y_ = 0; + _impl_._has_bits_[0] &= ~0x00000100u; +} +inline float CMsgApplySticker::_internal_sticker_offset_y() const { + return _impl_.sticker_offset_y_; +} +inline float CMsgApplySticker::sticker_offset_y() const { + // @@protoc_insertion_point(field_get:CMsgApplySticker.sticker_offset_y) + return _internal_sticker_offset_y(); +} +inline void CMsgApplySticker::_internal_set_sticker_offset_y(float value) { + _impl_._has_bits_[0] |= 0x00000100u; + _impl_.sticker_offset_y_ = value; +} +inline void CMsgApplySticker::set_sticker_offset_y(float value) { + _internal_set_sticker_offset_y(value); + // @@protoc_insertion_point(field_set:CMsgApplySticker.sticker_offset_y) +} + +// optional float sticker_offset_z = 10; +inline bool CMsgApplySticker::_internal_has_sticker_offset_z() const { + bool value = (_impl_._has_bits_[0] & 0x00000200u) != 0; + return value; +} +inline bool CMsgApplySticker::has_sticker_offset_z() const { + return _internal_has_sticker_offset_z(); +} +inline void CMsgApplySticker::clear_sticker_offset_z() { + _impl_.sticker_offset_z_ = 0; + _impl_._has_bits_[0] &= ~0x00000200u; +} +inline float CMsgApplySticker::_internal_sticker_offset_z() const { + return _impl_.sticker_offset_z_; +} +inline float CMsgApplySticker::sticker_offset_z() const { + // @@protoc_insertion_point(field_get:CMsgApplySticker.sticker_offset_z) + return _internal_sticker_offset_z(); +} +inline void CMsgApplySticker::_internal_set_sticker_offset_z(float value) { + _impl_._has_bits_[0] |= 0x00000200u; + _impl_.sticker_offset_z_ = value; +} +inline void CMsgApplySticker::set_sticker_offset_z(float value) { + _internal_set_sticker_offset_z(value); + // @@protoc_insertion_point(field_set:CMsgApplySticker.sticker_offset_z) +} + +// optional float sticker_wear_target = 11; +inline bool CMsgApplySticker::_internal_has_sticker_wear_target() const { + bool value = (_impl_._has_bits_[0] & 0x00000400u) != 0; + return value; +} +inline bool CMsgApplySticker::has_sticker_wear_target() const { + return _internal_has_sticker_wear_target(); +} +inline void CMsgApplySticker::clear_sticker_wear_target() { + _impl_.sticker_wear_target_ = 0; + _impl_._has_bits_[0] &= ~0x00000400u; +} +inline float CMsgApplySticker::_internal_sticker_wear_target() const { + return _impl_.sticker_wear_target_; +} +inline float CMsgApplySticker::sticker_wear_target() const { + // @@protoc_insertion_point(field_get:CMsgApplySticker.sticker_wear_target) + return _internal_sticker_wear_target(); +} +inline void CMsgApplySticker::_internal_set_sticker_wear_target(float value) { + _impl_._has_bits_[0] |= 0x00000400u; + _impl_.sticker_wear_target_ = value; +} +inline void CMsgApplySticker::set_sticker_wear_target(float value) { + _internal_set_sticker_wear_target(value); + // @@protoc_insertion_point(field_set:CMsgApplySticker.sticker_wear_target) +} + // ------------------------------------------------------------------- // CMsgModifyItemAttribute @@ -21168,278 +21487,17 @@ inline void CSOEconItem::clear_rarity() { inline uint32_t CSOEconItem::_internal_rarity() const { return _impl_.rarity_; } -inline uint32_t CSOEconItem::rarity() const { - // @@protoc_insertion_point(field_get:CSOEconItem.rarity) - return _internal_rarity(); -} -inline void CSOEconItem::_internal_set_rarity(uint32_t value) { - _impl_._has_bits_[0] |= 0x00008000u; - _impl_.rarity_ = value; -} -inline void CSOEconItem::set_rarity(uint32_t value) { - _internal_set_rarity(value); - // @@protoc_insertion_point(field_set:CSOEconItem.rarity) -} - -// ------------------------------------------------------------------- - -// CMsgAdjustItemEquippedState - -// optional uint64 item_id = 1; -inline bool CMsgAdjustItemEquippedState::_internal_has_item_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline bool CMsgAdjustItemEquippedState::has_item_id() const { - return _internal_has_item_id(); -} -inline void CMsgAdjustItemEquippedState::clear_item_id() { - _impl_.item_id_ = uint64_t{0u}; - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline uint64_t CMsgAdjustItemEquippedState::_internal_item_id() const { - return _impl_.item_id_; -} -inline uint64_t CMsgAdjustItemEquippedState::item_id() const { - // @@protoc_insertion_point(field_get:CMsgAdjustItemEquippedState.item_id) - return _internal_item_id(); -} -inline void CMsgAdjustItemEquippedState::_internal_set_item_id(uint64_t value) { - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.item_id_ = value; -} -inline void CMsgAdjustItemEquippedState::set_item_id(uint64_t value) { - _internal_set_item_id(value); - // @@protoc_insertion_point(field_set:CMsgAdjustItemEquippedState.item_id) -} - -// optional uint32 new_class = 2; -inline bool CMsgAdjustItemEquippedState::_internal_has_new_class() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - return value; -} -inline bool CMsgAdjustItemEquippedState::has_new_class() const { - return _internal_has_new_class(); -} -inline void CMsgAdjustItemEquippedState::clear_new_class() { - _impl_.new_class_ = 0u; - _impl_._has_bits_[0] &= ~0x00000002u; -} -inline uint32_t CMsgAdjustItemEquippedState::_internal_new_class() const { - return _impl_.new_class_; -} -inline uint32_t CMsgAdjustItemEquippedState::new_class() const { - // @@protoc_insertion_point(field_get:CMsgAdjustItemEquippedState.new_class) - return _internal_new_class(); -} -inline void CMsgAdjustItemEquippedState::_internal_set_new_class(uint32_t value) { - _impl_._has_bits_[0] |= 0x00000002u; - _impl_.new_class_ = value; -} -inline void CMsgAdjustItemEquippedState::set_new_class(uint32_t value) { - _internal_set_new_class(value); - // @@protoc_insertion_point(field_set:CMsgAdjustItemEquippedState.new_class) -} - -// optional uint32 new_slot = 3; -inline bool CMsgAdjustItemEquippedState::_internal_has_new_slot() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - return value; -} -inline bool CMsgAdjustItemEquippedState::has_new_slot() const { - return _internal_has_new_slot(); -} -inline void CMsgAdjustItemEquippedState::clear_new_slot() { - _impl_.new_slot_ = 0u; - _impl_._has_bits_[0] &= ~0x00000004u; -} -inline uint32_t CMsgAdjustItemEquippedState::_internal_new_slot() const { - return _impl_.new_slot_; -} -inline uint32_t CMsgAdjustItemEquippedState::new_slot() const { - // @@protoc_insertion_point(field_get:CMsgAdjustItemEquippedState.new_slot) - return _internal_new_slot(); -} -inline void CMsgAdjustItemEquippedState::_internal_set_new_slot(uint32_t value) { - _impl_._has_bits_[0] |= 0x00000004u; - _impl_.new_slot_ = value; -} -inline void CMsgAdjustItemEquippedState::set_new_slot(uint32_t value) { - _internal_set_new_slot(value); - // @@protoc_insertion_point(field_set:CMsgAdjustItemEquippedState.new_slot) -} - -// optional bool swap = 4; -inline bool CMsgAdjustItemEquippedState::_internal_has_swap() const { - bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; - return value; -} -inline bool CMsgAdjustItemEquippedState::has_swap() const { - return _internal_has_swap(); -} -inline void CMsgAdjustItemEquippedState::clear_swap() { - _impl_.swap_ = false; - _impl_._has_bits_[0] &= ~0x00000008u; -} -inline bool CMsgAdjustItemEquippedState::_internal_swap() const { - return _impl_.swap_; -} -inline bool CMsgAdjustItemEquippedState::swap() const { - // @@protoc_insertion_point(field_get:CMsgAdjustItemEquippedState.swap) - return _internal_swap(); -} -inline void CMsgAdjustItemEquippedState::_internal_set_swap(bool value) { - _impl_._has_bits_[0] |= 0x00000008u; - _impl_.swap_ = value; -} -inline void CMsgAdjustItemEquippedState::set_swap(bool value) { - _internal_set_swap(value); - // @@protoc_insertion_point(field_set:CMsgAdjustItemEquippedState.swap) -} - -// ------------------------------------------------------------------- - -// CMsgAdjustItemEquippedStateMulti - -// repeated uint64 t_equips = 1; -inline int CMsgAdjustItemEquippedStateMulti::_internal_t_equips_size() const { - return _impl_.t_equips_.size(); -} -inline int CMsgAdjustItemEquippedStateMulti::t_equips_size() const { - return _internal_t_equips_size(); -} -inline void CMsgAdjustItemEquippedStateMulti::clear_t_equips() { - _impl_.t_equips_.Clear(); -} -inline uint64_t CMsgAdjustItemEquippedStateMulti::_internal_t_equips(int index) const { - return _impl_.t_equips_.Get(index); -} -inline uint64_t CMsgAdjustItemEquippedStateMulti::t_equips(int index) const { - // @@protoc_insertion_point(field_get:CMsgAdjustItemEquippedStateMulti.t_equips) - return _internal_t_equips(index); -} -inline void CMsgAdjustItemEquippedStateMulti::set_t_equips(int index, uint64_t value) { - _impl_.t_equips_.Set(index, value); - // @@protoc_insertion_point(field_set:CMsgAdjustItemEquippedStateMulti.t_equips) -} -inline void CMsgAdjustItemEquippedStateMulti::_internal_add_t_equips(uint64_t value) { - _impl_.t_equips_.Add(value); -} -inline void CMsgAdjustItemEquippedStateMulti::add_t_equips(uint64_t value) { - _internal_add_t_equips(value); - // @@protoc_insertion_point(field_add:CMsgAdjustItemEquippedStateMulti.t_equips) -} -inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& -CMsgAdjustItemEquippedStateMulti::_internal_t_equips() const { - return _impl_.t_equips_; -} -inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& -CMsgAdjustItemEquippedStateMulti::t_equips() const { - // @@protoc_insertion_point(field_list:CMsgAdjustItemEquippedStateMulti.t_equips) - return _internal_t_equips(); -} -inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* -CMsgAdjustItemEquippedStateMulti::_internal_mutable_t_equips() { - return &_impl_.t_equips_; -} -inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* -CMsgAdjustItemEquippedStateMulti::mutable_t_equips() { - // @@protoc_insertion_point(field_mutable_list:CMsgAdjustItemEquippedStateMulti.t_equips) - return _internal_mutable_t_equips(); -} - -// repeated uint64 ct_equips = 2; -inline int CMsgAdjustItemEquippedStateMulti::_internal_ct_equips_size() const { - return _impl_.ct_equips_.size(); -} -inline int CMsgAdjustItemEquippedStateMulti::ct_equips_size() const { - return _internal_ct_equips_size(); -} -inline void CMsgAdjustItemEquippedStateMulti::clear_ct_equips() { - _impl_.ct_equips_.Clear(); -} -inline uint64_t CMsgAdjustItemEquippedStateMulti::_internal_ct_equips(int index) const { - return _impl_.ct_equips_.Get(index); -} -inline uint64_t CMsgAdjustItemEquippedStateMulti::ct_equips(int index) const { - // @@protoc_insertion_point(field_get:CMsgAdjustItemEquippedStateMulti.ct_equips) - return _internal_ct_equips(index); -} -inline void CMsgAdjustItemEquippedStateMulti::set_ct_equips(int index, uint64_t value) { - _impl_.ct_equips_.Set(index, value); - // @@protoc_insertion_point(field_set:CMsgAdjustItemEquippedStateMulti.ct_equips) -} -inline void CMsgAdjustItemEquippedStateMulti::_internal_add_ct_equips(uint64_t value) { - _impl_.ct_equips_.Add(value); -} -inline void CMsgAdjustItemEquippedStateMulti::add_ct_equips(uint64_t value) { - _internal_add_ct_equips(value); - // @@protoc_insertion_point(field_add:CMsgAdjustItemEquippedStateMulti.ct_equips) -} -inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& -CMsgAdjustItemEquippedStateMulti::_internal_ct_equips() const { - return _impl_.ct_equips_; -} -inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& -CMsgAdjustItemEquippedStateMulti::ct_equips() const { - // @@protoc_insertion_point(field_list:CMsgAdjustItemEquippedStateMulti.ct_equips) - return _internal_ct_equips(); -} -inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* -CMsgAdjustItemEquippedStateMulti::_internal_mutable_ct_equips() { - return &_impl_.ct_equips_; -} -inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* -CMsgAdjustItemEquippedStateMulti::mutable_ct_equips() { - // @@protoc_insertion_point(field_mutable_list:CMsgAdjustItemEquippedStateMulti.ct_equips) - return _internal_mutable_ct_equips(); -} - -// repeated uint64 noteam_equips = 3; -inline int CMsgAdjustItemEquippedStateMulti::_internal_noteam_equips_size() const { - return _impl_.noteam_equips_.size(); -} -inline int CMsgAdjustItemEquippedStateMulti::noteam_equips_size() const { - return _internal_noteam_equips_size(); -} -inline void CMsgAdjustItemEquippedStateMulti::clear_noteam_equips() { - _impl_.noteam_equips_.Clear(); -} -inline uint64_t CMsgAdjustItemEquippedStateMulti::_internal_noteam_equips(int index) const { - return _impl_.noteam_equips_.Get(index); -} -inline uint64_t CMsgAdjustItemEquippedStateMulti::noteam_equips(int index) const { - // @@protoc_insertion_point(field_get:CMsgAdjustItemEquippedStateMulti.noteam_equips) - return _internal_noteam_equips(index); -} -inline void CMsgAdjustItemEquippedStateMulti::set_noteam_equips(int index, uint64_t value) { - _impl_.noteam_equips_.Set(index, value); - // @@protoc_insertion_point(field_set:CMsgAdjustItemEquippedStateMulti.noteam_equips) -} -inline void CMsgAdjustItemEquippedStateMulti::_internal_add_noteam_equips(uint64_t value) { - _impl_.noteam_equips_.Add(value); -} -inline void CMsgAdjustItemEquippedStateMulti::add_noteam_equips(uint64_t value) { - _internal_add_noteam_equips(value); - // @@protoc_insertion_point(field_add:CMsgAdjustItemEquippedStateMulti.noteam_equips) -} -inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& -CMsgAdjustItemEquippedStateMulti::_internal_noteam_equips() const { - return _impl_.noteam_equips_; -} -inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& -CMsgAdjustItemEquippedStateMulti::noteam_equips() const { - // @@protoc_insertion_point(field_list:CMsgAdjustItemEquippedStateMulti.noteam_equips) - return _internal_noteam_equips(); +inline uint32_t CSOEconItem::rarity() const { + // @@protoc_insertion_point(field_get:CSOEconItem.rarity) + return _internal_rarity(); } -inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* -CMsgAdjustItemEquippedStateMulti::_internal_mutable_noteam_equips() { - return &_impl_.noteam_equips_; +inline void CSOEconItem::_internal_set_rarity(uint32_t value) { + _impl_._has_bits_[0] |= 0x00008000u; + _impl_.rarity_ = value; } -inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* -CMsgAdjustItemEquippedStateMulti::mutable_noteam_equips() { - // @@protoc_insertion_point(field_mutable_list:CMsgAdjustItemEquippedStateMulti.noteam_equips) - return _internal_mutable_noteam_equips(); +inline void CSOEconItem::set_rarity(uint32_t value) { + _internal_set_rarity(value); + // @@protoc_insertion_point(field_set:CSOEconItem.rarity) } // ------------------------------------------------------------------- @@ -25223,122 +25281,6 @@ inline void CMsgGCToGCBannedWordListUpdated::set_group_id(uint32_t value) { // ------------------------------------------------------------------- -// CSOEconDefaultEquippedDefinitionInstanceClient - -// optional uint32 account_id = 1 [(.key_field) = true]; -inline bool CSOEconDefaultEquippedDefinitionInstanceClient::_internal_has_account_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline bool CSOEconDefaultEquippedDefinitionInstanceClient::has_account_id() const { - return _internal_has_account_id(); -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::clear_account_id() { - _impl_.account_id_ = 0u; - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline uint32_t CSOEconDefaultEquippedDefinitionInstanceClient::_internal_account_id() const { - return _impl_.account_id_; -} -inline uint32_t CSOEconDefaultEquippedDefinitionInstanceClient::account_id() const { - // @@protoc_insertion_point(field_get:CSOEconDefaultEquippedDefinitionInstanceClient.account_id) - return _internal_account_id(); -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::_internal_set_account_id(uint32_t value) { - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.account_id_ = value; -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::set_account_id(uint32_t value) { - _internal_set_account_id(value); - // @@protoc_insertion_point(field_set:CSOEconDefaultEquippedDefinitionInstanceClient.account_id) -} - -// optional uint32 item_definition = 2; -inline bool CSOEconDefaultEquippedDefinitionInstanceClient::_internal_has_item_definition() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - return value; -} -inline bool CSOEconDefaultEquippedDefinitionInstanceClient::has_item_definition() const { - return _internal_has_item_definition(); -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::clear_item_definition() { - _impl_.item_definition_ = 0u; - _impl_._has_bits_[0] &= ~0x00000002u; -} -inline uint32_t CSOEconDefaultEquippedDefinitionInstanceClient::_internal_item_definition() const { - return _impl_.item_definition_; -} -inline uint32_t CSOEconDefaultEquippedDefinitionInstanceClient::item_definition() const { - // @@protoc_insertion_point(field_get:CSOEconDefaultEquippedDefinitionInstanceClient.item_definition) - return _internal_item_definition(); -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::_internal_set_item_definition(uint32_t value) { - _impl_._has_bits_[0] |= 0x00000002u; - _impl_.item_definition_ = value; -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::set_item_definition(uint32_t value) { - _internal_set_item_definition(value); - // @@protoc_insertion_point(field_set:CSOEconDefaultEquippedDefinitionInstanceClient.item_definition) -} - -// optional uint32 class_id = 3 [(.key_field) = true]; -inline bool CSOEconDefaultEquippedDefinitionInstanceClient::_internal_has_class_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - return value; -} -inline bool CSOEconDefaultEquippedDefinitionInstanceClient::has_class_id() const { - return _internal_has_class_id(); -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::clear_class_id() { - _impl_.class_id_ = 0u; - _impl_._has_bits_[0] &= ~0x00000004u; -} -inline uint32_t CSOEconDefaultEquippedDefinitionInstanceClient::_internal_class_id() const { - return _impl_.class_id_; -} -inline uint32_t CSOEconDefaultEquippedDefinitionInstanceClient::class_id() const { - // @@protoc_insertion_point(field_get:CSOEconDefaultEquippedDefinitionInstanceClient.class_id) - return _internal_class_id(); -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::_internal_set_class_id(uint32_t value) { - _impl_._has_bits_[0] |= 0x00000004u; - _impl_.class_id_ = value; -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::set_class_id(uint32_t value) { - _internal_set_class_id(value); - // @@protoc_insertion_point(field_set:CSOEconDefaultEquippedDefinitionInstanceClient.class_id) -} - -// optional uint32 slot_id = 4 [(.key_field) = true]; -inline bool CSOEconDefaultEquippedDefinitionInstanceClient::_internal_has_slot_id() const { - bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; - return value; -} -inline bool CSOEconDefaultEquippedDefinitionInstanceClient::has_slot_id() const { - return _internal_has_slot_id(); -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::clear_slot_id() { - _impl_.slot_id_ = 0u; - _impl_._has_bits_[0] &= ~0x00000008u; -} -inline uint32_t CSOEconDefaultEquippedDefinitionInstanceClient::_internal_slot_id() const { - return _impl_.slot_id_; -} -inline uint32_t CSOEconDefaultEquippedDefinitionInstanceClient::slot_id() const { - // @@protoc_insertion_point(field_get:CSOEconDefaultEquippedDefinitionInstanceClient.slot_id) - return _internal_slot_id(); -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::_internal_set_slot_id(uint32_t value) { - _impl_._has_bits_[0] |= 0x00000008u; - _impl_.slot_id_ = value; -} -inline void CSOEconDefaultEquippedDefinitionInstanceClient::set_slot_id(uint32_t value) { - _internal_set_slot_id(value); - // @@protoc_insertion_point(field_set:CSOEconDefaultEquippedDefinitionInstanceClient.slot_id) -} - -// ------------------------------------------------------------------- - // CMsgGCToGCDirtySDOCache // optional uint32 sdo_type = 1; @@ -26729,6 +26671,326 @@ CMsgAdjustEquipSlots::slots() const { return _impl_.slots_; } +// optional uint32 change_num = 2; +inline bool CMsgAdjustEquipSlots::_internal_has_change_num() const { + bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; + return value; +} +inline bool CMsgAdjustEquipSlots::has_change_num() const { + return _internal_has_change_num(); +} +inline void CMsgAdjustEquipSlots::clear_change_num() { + _impl_.change_num_ = 0u; + _impl_._has_bits_[0] &= ~0x00000001u; +} +inline uint32_t CMsgAdjustEquipSlots::_internal_change_num() const { + return _impl_.change_num_; +} +inline uint32_t CMsgAdjustEquipSlots::change_num() const { + // @@protoc_insertion_point(field_get:CMsgAdjustEquipSlots.change_num) + return _internal_change_num(); +} +inline void CMsgAdjustEquipSlots::_internal_set_change_num(uint32_t value) { + _impl_._has_bits_[0] |= 0x00000001u; + _impl_.change_num_ = value; +} +inline void CMsgAdjustEquipSlots::set_change_num(uint32_t value) { + _internal_set_change_num(value); + // @@protoc_insertion_point(field_set:CMsgAdjustEquipSlots.change_num) +} + +// ------------------------------------------------------------------- + +// CMsgOpenCrate + +// optional uint64 tool_item_id = 1; +inline bool CMsgOpenCrate::_internal_has_tool_item_id() const { + bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; + return value; +} +inline bool CMsgOpenCrate::has_tool_item_id() const { + return _internal_has_tool_item_id(); +} +inline void CMsgOpenCrate::clear_tool_item_id() { + _impl_.tool_item_id_ = uint64_t{0u}; + _impl_._has_bits_[0] &= ~0x00000001u; +} +inline uint64_t CMsgOpenCrate::_internal_tool_item_id() const { + return _impl_.tool_item_id_; +} +inline uint64_t CMsgOpenCrate::tool_item_id() const { + // @@protoc_insertion_point(field_get:CMsgOpenCrate.tool_item_id) + return _internal_tool_item_id(); +} +inline void CMsgOpenCrate::_internal_set_tool_item_id(uint64_t value) { + _impl_._has_bits_[0] |= 0x00000001u; + _impl_.tool_item_id_ = value; +} +inline void CMsgOpenCrate::set_tool_item_id(uint64_t value) { + _internal_set_tool_item_id(value); + // @@protoc_insertion_point(field_set:CMsgOpenCrate.tool_item_id) +} + +// optional uint64 subject_item_id = 2; +inline bool CMsgOpenCrate::_internal_has_subject_item_id() const { + bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; + return value; +} +inline bool CMsgOpenCrate::has_subject_item_id() const { + return _internal_has_subject_item_id(); +} +inline void CMsgOpenCrate::clear_subject_item_id() { + _impl_.subject_item_id_ = uint64_t{0u}; + _impl_._has_bits_[0] &= ~0x00000002u; +} +inline uint64_t CMsgOpenCrate::_internal_subject_item_id() const { + return _impl_.subject_item_id_; +} +inline uint64_t CMsgOpenCrate::subject_item_id() const { + // @@protoc_insertion_point(field_get:CMsgOpenCrate.subject_item_id) + return _internal_subject_item_id(); +} +inline void CMsgOpenCrate::_internal_set_subject_item_id(uint64_t value) { + _impl_._has_bits_[0] |= 0x00000002u; + _impl_.subject_item_id_ = value; +} +inline void CMsgOpenCrate::set_subject_item_id(uint64_t value) { + _internal_set_subject_item_id(value); + // @@protoc_insertion_point(field_set:CMsgOpenCrate.subject_item_id) +} + +// optional bool for_rental = 3; +inline bool CMsgOpenCrate::_internal_has_for_rental() const { + bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; + return value; +} +inline bool CMsgOpenCrate::has_for_rental() const { + return _internal_has_for_rental(); +} +inline void CMsgOpenCrate::clear_for_rental() { + _impl_.for_rental_ = false; + _impl_._has_bits_[0] &= ~0x00000004u; +} +inline bool CMsgOpenCrate::_internal_for_rental() const { + return _impl_.for_rental_; +} +inline bool CMsgOpenCrate::for_rental() const { + // @@protoc_insertion_point(field_get:CMsgOpenCrate.for_rental) + return _internal_for_rental(); +} +inline void CMsgOpenCrate::_internal_set_for_rental(bool value) { + _impl_._has_bits_[0] |= 0x00000004u; + _impl_.for_rental_ = value; +} +inline void CMsgOpenCrate::set_for_rental(bool value) { + _internal_set_for_rental(value); + // @@protoc_insertion_point(field_set:CMsgOpenCrate.for_rental) +} + +// optional uint32 points_remaining = 4; +inline bool CMsgOpenCrate::_internal_has_points_remaining() const { + bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; + return value; +} +inline bool CMsgOpenCrate::has_points_remaining() const { + return _internal_has_points_remaining(); +} +inline void CMsgOpenCrate::clear_points_remaining() { + _impl_.points_remaining_ = 0u; + _impl_._has_bits_[0] &= ~0x00000008u; +} +inline uint32_t CMsgOpenCrate::_internal_points_remaining() const { + return _impl_.points_remaining_; +} +inline uint32_t CMsgOpenCrate::points_remaining() const { + // @@protoc_insertion_point(field_get:CMsgOpenCrate.points_remaining) + return _internal_points_remaining(); +} +inline void CMsgOpenCrate::_internal_set_points_remaining(uint32_t value) { + _impl_._has_bits_[0] |= 0x00000008u; + _impl_.points_remaining_ = value; +} +inline void CMsgOpenCrate::set_points_remaining(uint32_t value) { + _internal_set_points_remaining(value); + // @@protoc_insertion_point(field_set:CMsgOpenCrate.points_remaining) +} + +// ------------------------------------------------------------------- + +// CSOEconRentalHistory + +// optional uint32 account_id = 1 [(.key_field) = true]; +inline bool CSOEconRentalHistory::_internal_has_account_id() const { + bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; + return value; +} +inline bool CSOEconRentalHistory::has_account_id() const { + return _internal_has_account_id(); +} +inline void CSOEconRentalHistory::clear_account_id() { + _impl_.account_id_ = 0u; + _impl_._has_bits_[0] &= ~0x00000002u; +} +inline uint32_t CSOEconRentalHistory::_internal_account_id() const { + return _impl_.account_id_; +} +inline uint32_t CSOEconRentalHistory::account_id() const { + // @@protoc_insertion_point(field_get:CSOEconRentalHistory.account_id) + return _internal_account_id(); +} +inline void CSOEconRentalHistory::_internal_set_account_id(uint32_t value) { + _impl_._has_bits_[0] |= 0x00000002u; + _impl_.account_id_ = value; +} +inline void CSOEconRentalHistory::set_account_id(uint32_t value) { + _internal_set_account_id(value); + // @@protoc_insertion_point(field_set:CSOEconRentalHistory.account_id) +} + +// optional uint64 crate_item_id = 2 [(.key_field) = true]; +inline bool CSOEconRentalHistory::_internal_has_crate_item_id() const { + bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; + return value; +} +inline bool CSOEconRentalHistory::has_crate_item_id() const { + return _internal_has_crate_item_id(); +} +inline void CSOEconRentalHistory::clear_crate_item_id() { + _impl_.crate_item_id_ = uint64_t{0u}; + _impl_._has_bits_[0] &= ~0x00000001u; +} +inline uint64_t CSOEconRentalHistory::_internal_crate_item_id() const { + return _impl_.crate_item_id_; +} +inline uint64_t CSOEconRentalHistory::crate_item_id() const { + // @@protoc_insertion_point(field_get:CSOEconRentalHistory.crate_item_id) + return _internal_crate_item_id(); +} +inline void CSOEconRentalHistory::_internal_set_crate_item_id(uint64_t value) { + _impl_._has_bits_[0] |= 0x00000001u; + _impl_.crate_item_id_ = value; +} +inline void CSOEconRentalHistory::set_crate_item_id(uint64_t value) { + _internal_set_crate_item_id(value); + // @@protoc_insertion_point(field_set:CSOEconRentalHistory.crate_item_id) +} + +// optional uint32 crate_def_index = 3; +inline bool CSOEconRentalHistory::_internal_has_crate_def_index() const { + bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; + return value; +} +inline bool CSOEconRentalHistory::has_crate_def_index() const { + return _internal_has_crate_def_index(); +} +inline void CSOEconRentalHistory::clear_crate_def_index() { + _impl_.crate_def_index_ = 0u; + _impl_._has_bits_[0] &= ~0x00000004u; +} +inline uint32_t CSOEconRentalHistory::_internal_crate_def_index() const { + return _impl_.crate_def_index_; +} +inline uint32_t CSOEconRentalHistory::crate_def_index() const { + // @@protoc_insertion_point(field_get:CSOEconRentalHistory.crate_def_index) + return _internal_crate_def_index(); +} +inline void CSOEconRentalHistory::_internal_set_crate_def_index(uint32_t value) { + _impl_._has_bits_[0] |= 0x00000004u; + _impl_.crate_def_index_ = value; +} +inline void CSOEconRentalHistory::set_crate_def_index(uint32_t value) { + _internal_set_crate_def_index(value); + // @@protoc_insertion_point(field_set:CSOEconRentalHistory.crate_def_index) +} + +// optional uint32 issue_date = 4; +inline bool CSOEconRentalHistory::_internal_has_issue_date() const { + bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; + return value; +} +inline bool CSOEconRentalHistory::has_issue_date() const { + return _internal_has_issue_date(); +} +inline void CSOEconRentalHistory::clear_issue_date() { + _impl_.issue_date_ = 0u; + _impl_._has_bits_[0] &= ~0x00000008u; +} +inline uint32_t CSOEconRentalHistory::_internal_issue_date() const { + return _impl_.issue_date_; +} +inline uint32_t CSOEconRentalHistory::issue_date() const { + // @@protoc_insertion_point(field_get:CSOEconRentalHistory.issue_date) + return _internal_issue_date(); +} +inline void CSOEconRentalHistory::_internal_set_issue_date(uint32_t value) { + _impl_._has_bits_[0] |= 0x00000008u; + _impl_.issue_date_ = value; +} +inline void CSOEconRentalHistory::set_issue_date(uint32_t value) { + _internal_set_issue_date(value); + // @@protoc_insertion_point(field_set:CSOEconRentalHistory.issue_date) +} + +// optional uint32 expiration_date = 5; +inline bool CSOEconRentalHistory::_internal_has_expiration_date() const { + bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; + return value; +} +inline bool CSOEconRentalHistory::has_expiration_date() const { + return _internal_has_expiration_date(); +} +inline void CSOEconRentalHistory::clear_expiration_date() { + _impl_.expiration_date_ = 0u; + _impl_._has_bits_[0] &= ~0x00000010u; +} +inline uint32_t CSOEconRentalHistory::_internal_expiration_date() const { + return _impl_.expiration_date_; +} +inline uint32_t CSOEconRentalHistory::expiration_date() const { + // @@protoc_insertion_point(field_get:CSOEconRentalHistory.expiration_date) + return _internal_expiration_date(); +} +inline void CSOEconRentalHistory::_internal_set_expiration_date(uint32_t value) { + _impl_._has_bits_[0] |= 0x00000010u; + _impl_.expiration_date_ = value; +} +inline void CSOEconRentalHistory::set_expiration_date(uint32_t value) { + _internal_set_expiration_date(value); + // @@protoc_insertion_point(field_set:CSOEconRentalHistory.expiration_date) +} + +// ------------------------------------------------------------------- + +// CMsgAcknowledgeRentalExpiration + +// optional uint64 crate_item_id = 1; +inline bool CMsgAcknowledgeRentalExpiration::_internal_has_crate_item_id() const { + bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; + return value; +} +inline bool CMsgAcknowledgeRentalExpiration::has_crate_item_id() const { + return _internal_has_crate_item_id(); +} +inline void CMsgAcknowledgeRentalExpiration::clear_crate_item_id() { + _impl_.crate_item_id_ = uint64_t{0u}; + _impl_._has_bits_[0] &= ~0x00000001u; +} +inline uint64_t CMsgAcknowledgeRentalExpiration::_internal_crate_item_id() const { + return _impl_.crate_item_id_; +} +inline uint64_t CMsgAcknowledgeRentalExpiration::crate_item_id() const { + // @@protoc_insertion_point(field_get:CMsgAcknowledgeRentalExpiration.crate_item_id) + return _internal_crate_item_id(); +} +inline void CMsgAcknowledgeRentalExpiration::_internal_set_crate_item_id(uint64_t value) { + _impl_._has_bits_[0] |= 0x00000001u; + _impl_.crate_item_id_ = value; +} +inline void CMsgAcknowledgeRentalExpiration::set_crate_item_id(uint64_t value) { + _internal_set_crate_item_id(value); + // @@protoc_insertion_point(field_set:CMsgAcknowledgeRentalExpiration.crate_item_id) +} + #ifdef __GNUC__ #pragma GCC diagnostic pop #endif // __GNUC__ @@ -26928,4 +27190,4 @@ PROTOBUF_NAMESPACE_CLOSE // @@protoc_insertion_point(global_scope) #include -#endif // GOOGLE_PROTOBUF_INCLUDED_GOOGLE_PROTOBUF_INCLUDED_base_5fgcmessages_5fcsgo_2eproto +#endif // GOOGLE_PROTOBUF_INCLUDED_GOOGLE_PROTOBUF_INCLUDED_base_5fgcmessages_2eproto diff --git a/protobuf/generated/cs_usercmd.pb.cc b/protobuf/generated/cs_usercmd.pb.cc index a50b8db9d..3d1493ba5 100644 --- a/protobuf/generated/cs_usercmd.pb.cc +++ b/protobuf/generated/cs_usercmd.pb.cc @@ -88,7 +88,6 @@ PROTOBUF_CONSTEXPR CSGOUserCmdPB::CSGOUserCmdPB( , /*decltype(_impl_.is_predicting_body_shot_fx_)*/false , /*decltype(_impl_.is_predicting_head_shot_fx_)*/false , /*decltype(_impl_.is_predicting_kill_ragdolls_)*/false - , /*decltype(_impl_.attack3_start_history_index_)*/-1 , /*decltype(_impl_.attack1_start_history_index_)*/-1 , /*decltype(_impl_.attack2_start_history_index_)*/-1} {} struct CSGOUserCmdPBDefaultTypeInternal { @@ -171,16 +170,14 @@ const uint32_t TableStruct_cs_5fusercmd_2eproto::offsets[] PROTOBUF_SECTION_VARI PROTOBUF_FIELD_OFFSET(::CSGOUserCmdPB, _impl_.input_history_), PROTOBUF_FIELD_OFFSET(::CSGOUserCmdPB, _impl_.attack1_start_history_index_), PROTOBUF_FIELD_OFFSET(::CSGOUserCmdPB, _impl_.attack2_start_history_index_), - PROTOBUF_FIELD_OFFSET(::CSGOUserCmdPB, _impl_.attack3_start_history_index_), PROTOBUF_FIELD_OFFSET(::CSGOUserCmdPB, _impl_.left_hand_desired_), PROTOBUF_FIELD_OFFSET(::CSGOUserCmdPB, _impl_.is_predicting_body_shot_fx_), PROTOBUF_FIELD_OFFSET(::CSGOUserCmdPB, _impl_.is_predicting_head_shot_fx_), PROTOBUF_FIELD_OFFSET(::CSGOUserCmdPB, _impl_.is_predicting_kill_ragdolls_), 0, ~0u, - 6, - 7, 5, + 6, 1, 2, 3, @@ -190,7 +187,7 @@ static const ::_pbi::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protode { 0, 9, -1, sizeof(::CSGOInterpolationInfoPB)}, { 12, 19, -1, sizeof(::CSGOInterpolationInfoPB_CL)}, { 20, 41, -1, sizeof(::CSGOInputHistoryEntryPB)}, - { 56, 71, -1, sizeof(::CSGOUserCmdPB)}, + { 56, 70, -1, sizeof(::CSGOUserCmdPB)}, }; static const ::_pb::Message* const file_default_instances[] = { @@ -220,17 +217,15 @@ const char descriptor_table_protodef_cs_5fusercmd_2eproto[] PROTOBUF_SECTION_VAR "Vector\022*\n\025target_head_pos_check\030C \001(\0132\013." "CMsgVector\022)\n\024target_abs_pos_check\030D \001(\013" "2\013.CMsgVector\022)\n\024target_abs_ang_check\030E " - "\001(\0132\013.CMsgQAngle\"\376\002\n\rCSGOUserCmdPB\022\035\n\004ba" + "\001(\0132\013.CMsgQAngle\"\325\002\n\rCSGOUserCmdPB\022\035\n\004ba" "se\030\001 \001(\0132\017.CBaseUserCmdPB\022/\n\rinput_histo" "ry\030\002 \003(\0132\030.CSGOInputHistoryEntryPB\022\'\n\033at" "tack1_start_history_index\030\006 \001(\005:\002-1\022\'\n\033a" - "ttack2_start_history_index\030\007 \001(\005:\002-1\022\'\n\033" - "attack3_start_history_index\030\010 \001(\005:\002-1\022 \n" - "\021left_hand_desired\030\t \001(\010:\005false\022)\n\032is_pr" - "edicting_body_shot_fx\030\013 \001(\010:\005false\022)\n\032is" - "_predicting_head_shot_fx\030\014 \001(\010:\005false\022*\n" - "\033is_predicting_kill_ragdolls\030\r \001(\010:\005fals" - "e" + "ttack2_start_history_index\030\007 \001(\005:\002-1\022 \n\021" + "left_hand_desired\030\t \001(\010:\005false\022)\n\032is_pre" + "dicting_body_shot_fx\030\013 \001(\010:\005false\022)\n\032is_" + "predicting_head_shot_fx\030\014 \001(\010:\005false\022*\n\033" + "is_predicting_kill_ragdolls\030\r \001(\010:\005false" ; static const ::_pbi::DescriptorTable* const descriptor_table_cs_5fusercmd_2eproto_deps[2] = { &::descriptor_table_networkbasetypes_2eproto, @@ -238,7 +233,7 @@ static const ::_pbi::DescriptorTable* const descriptor_table_cs_5fusercmd_2eprot }; static ::_pbi::once_flag descriptor_table_cs_5fusercmd_2eproto_once; const ::_pbi::DescriptorTable descriptor_table_cs_5fusercmd_2eproto = { - false, false, 1161, descriptor_table_protodef_cs_5fusercmd_2eproto, + false, false, 1120, descriptor_table_protodef_cs_5fusercmd_2eproto, "cs_usercmd.proto", &descriptor_table_cs_5fusercmd_2eproto_once, descriptor_table_cs_5fusercmd_2eproto_deps, 2, 4, schemas, file_default_instances, TableStruct_cs_5fusercmd_2eproto::offsets, @@ -1492,13 +1487,10 @@ class CSGOUserCmdPB::_Internal { (*has_bits)[0] |= 1u; } static void set_has_attack1_start_history_index(HasBits* has_bits) { - (*has_bits)[0] |= 64u; + (*has_bits)[0] |= 32u; } static void set_has_attack2_start_history_index(HasBits* has_bits) { - (*has_bits)[0] |= 128u; - } - static void set_has_attack3_start_history_index(HasBits* has_bits) { - (*has_bits)[0] |= 32u; + (*has_bits)[0] |= 64u; } static void set_has_left_hand_desired(HasBits* has_bits) { (*has_bits)[0] |= 2u; @@ -1540,7 +1532,6 @@ CSGOUserCmdPB::CSGOUserCmdPB(const CSGOUserCmdPB& from) , decltype(_impl_.is_predicting_body_shot_fx_){} , decltype(_impl_.is_predicting_head_shot_fx_){} , decltype(_impl_.is_predicting_kill_ragdolls_){} - , decltype(_impl_.attack3_start_history_index_){} , decltype(_impl_.attack1_start_history_index_){} , decltype(_impl_.attack2_start_history_index_){}}; @@ -1567,7 +1558,6 @@ inline void CSGOUserCmdPB::SharedCtor( , decltype(_impl_.is_predicting_body_shot_fx_){false} , decltype(_impl_.is_predicting_head_shot_fx_){false} , decltype(_impl_.is_predicting_kill_ragdolls_){false} - , decltype(_impl_.attack3_start_history_index_){-1} , decltype(_impl_.attack1_start_history_index_){-1} , decltype(_impl_.attack2_start_history_index_){-1} }; @@ -1607,8 +1597,7 @@ void CSGOUserCmdPB::Clear() { ::memset(&_impl_.left_hand_desired_, 0, static_cast( reinterpret_cast(&_impl_.is_predicting_kill_ragdolls_) - reinterpret_cast(&_impl_.left_hand_desired_)) + sizeof(_impl_.is_predicting_kill_ragdolls_)); - if (cached_has_bits & 0x000000e0u) { - _impl_.attack3_start_history_index_ = -1; + if (cached_has_bits & 0x00000060u) { _impl_.attack1_start_history_index_ = -1; _impl_.attack2_start_history_index_ = -1; } @@ -1662,15 +1651,6 @@ const char* CSGOUserCmdPB::_InternalParse(const char* ptr, ::_pbi::ParseContext* } else goto handle_unusual; continue; - // optional int32 attack3_start_history_index = 8 [default = -1]; - case 8: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 64)) { - _Internal::set_has_attack3_start_history_index(&has_bits); - _impl_.attack3_start_history_index_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; // optional bool left_hand_desired = 9 [default = false]; case 9: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 72)) { @@ -1754,23 +1734,17 @@ uint8_t* CSGOUserCmdPB::_InternalSerialize( } // optional int32 attack1_start_history_index = 6 [default = -1]; - if (cached_has_bits & 0x00000040u) { + if (cached_has_bits & 0x00000020u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteInt32ToArray(6, this->_internal_attack1_start_history_index(), target); } // optional int32 attack2_start_history_index = 7 [default = -1]; - if (cached_has_bits & 0x00000080u) { + if (cached_has_bits & 0x00000040u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteInt32ToArray(7, this->_internal_attack2_start_history_index(), target); } - // optional int32 attack3_start_history_index = 8 [default = -1]; - if (cached_has_bits & 0x00000020u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(8, this->_internal_attack3_start_history_index(), target); - } - // optional bool left_hand_desired = 9 [default = false]; if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); @@ -1819,7 +1793,7 @@ size_t CSGOUserCmdPB::ByteSizeLong() const { } cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x000000ffu) { + if (cached_has_bits & 0x0000007fu) { // optional .CBaseUserCmdPB base = 1; if (cached_has_bits & 0x00000001u) { total_size += 1 + @@ -1847,18 +1821,13 @@ size_t CSGOUserCmdPB::ByteSizeLong() const { total_size += 1 + 1; } - // optional int32 attack3_start_history_index = 8 [default = -1]; - if (cached_has_bits & 0x00000020u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_attack3_start_history_index()); - } - // optional int32 attack1_start_history_index = 6 [default = -1]; - if (cached_has_bits & 0x00000040u) { + if (cached_has_bits & 0x00000020u) { total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_attack1_start_history_index()); } // optional int32 attack2_start_history_index = 7 [default = -1]; - if (cached_has_bits & 0x00000080u) { + if (cached_has_bits & 0x00000040u) { total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_attack2_start_history_index()); } @@ -1883,7 +1852,7 @@ void CSGOUserCmdPB::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const :: _this->_impl_.input_history_.MergeFrom(from._impl_.input_history_); cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x000000ffu) { + if (cached_has_bits & 0x0000007fu) { if (cached_has_bits & 0x00000001u) { _this->_internal_mutable_base()->::CBaseUserCmdPB::MergeFrom( from._internal_base()); @@ -1901,12 +1870,9 @@ void CSGOUserCmdPB::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const :: _this->_impl_.is_predicting_kill_ragdolls_ = from._impl_.is_predicting_kill_ragdolls_; } if (cached_has_bits & 0x00000020u) { - _this->_impl_.attack3_start_history_index_ = from._impl_.attack3_start_history_index_; - } - if (cached_has_bits & 0x00000040u) { _this->_impl_.attack1_start_history_index_ = from._impl_.attack1_start_history_index_; } - if (cached_has_bits & 0x00000080u) { + if (cached_has_bits & 0x00000040u) { _this->_impl_.attack2_start_history_index_ = from._impl_.attack2_start_history_index_; } _this->_impl_._has_bits_[0] |= cached_has_bits; @@ -1936,7 +1902,6 @@ void CSGOUserCmdPB::InternalSwap(CSGOUserCmdPB* other) { - PROTOBUF_FIELD_OFFSET(CSGOUserCmdPB, _impl_.base_)>( reinterpret_cast(&_impl_.base_), reinterpret_cast(&other->_impl_.base_)); - swap(_impl_.attack3_start_history_index_, other->_impl_.attack3_start_history_index_); swap(_impl_.attack1_start_history_index_, other->_impl_.attack1_start_history_index_); swap(_impl_.attack2_start_history_index_, other->_impl_.attack2_start_history_index_); } diff --git a/protobuf/generated/cs_usercmd.pb.h b/protobuf/generated/cs_usercmd.pb.h index 5aa41822b..3bd674225 100644 --- a/protobuf/generated/cs_usercmd.pb.h +++ b/protobuf/generated/cs_usercmd.pb.h @@ -966,7 +966,6 @@ class CSGOUserCmdPB : kIsPredictingBodyShotFxFieldNumber = 11, kIsPredictingHeadShotFxFieldNumber = 12, kIsPredictingKillRagdollsFieldNumber = 13, - kAttack3StartHistoryIndexFieldNumber = 8, kAttack1StartHistoryIndexFieldNumber = 6, kAttack2StartHistoryIndexFieldNumber = 7, }; @@ -1058,19 +1057,6 @@ class CSGOUserCmdPB : void _internal_set_is_predicting_kill_ragdolls(bool value); public: - // optional int32 attack3_start_history_index = 8 [default = -1]; - bool has_attack3_start_history_index() const; - private: - bool _internal_has_attack3_start_history_index() const; - public: - void clear_attack3_start_history_index(); - int32_t attack3_start_history_index() const; - void set_attack3_start_history_index(int32_t value); - private: - int32_t _internal_attack3_start_history_index() const; - void _internal_set_attack3_start_history_index(int32_t value); - public: - // optional int32 attack1_start_history_index = 6 [default = -1]; bool has_attack1_start_history_index() const; private: @@ -1113,7 +1099,6 @@ class CSGOUserCmdPB : bool is_predicting_body_shot_fx_; bool is_predicting_head_shot_fx_; bool is_predicting_kill_ragdolls_; - int32_t attack3_start_history_index_; int32_t attack1_start_history_index_; int32_t attack2_start_history_index_; }; @@ -2347,7 +2332,7 @@ CSGOUserCmdPB::input_history() const { // optional int32 attack1_start_history_index = 6 [default = -1]; inline bool CSGOUserCmdPB::_internal_has_attack1_start_history_index() const { - bool value = (_impl_._has_bits_[0] & 0x00000040u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000020u) != 0; return value; } inline bool CSGOUserCmdPB::has_attack1_start_history_index() const { @@ -2355,7 +2340,7 @@ inline bool CSGOUserCmdPB::has_attack1_start_history_index() const { } inline void CSGOUserCmdPB::clear_attack1_start_history_index() { _impl_.attack1_start_history_index_ = -1; - _impl_._has_bits_[0] &= ~0x00000040u; + _impl_._has_bits_[0] &= ~0x00000020u; } inline int32_t CSGOUserCmdPB::_internal_attack1_start_history_index() const { return _impl_.attack1_start_history_index_; @@ -2365,7 +2350,7 @@ inline int32_t CSGOUserCmdPB::attack1_start_history_index() const { return _internal_attack1_start_history_index(); } inline void CSGOUserCmdPB::_internal_set_attack1_start_history_index(int32_t value) { - _impl_._has_bits_[0] |= 0x00000040u; + _impl_._has_bits_[0] |= 0x00000020u; _impl_.attack1_start_history_index_ = value; } inline void CSGOUserCmdPB::set_attack1_start_history_index(int32_t value) { @@ -2375,7 +2360,7 @@ inline void CSGOUserCmdPB::set_attack1_start_history_index(int32_t value) { // optional int32 attack2_start_history_index = 7 [default = -1]; inline bool CSGOUserCmdPB::_internal_has_attack2_start_history_index() const { - bool value = (_impl_._has_bits_[0] & 0x00000080u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000040u) != 0; return value; } inline bool CSGOUserCmdPB::has_attack2_start_history_index() const { @@ -2383,7 +2368,7 @@ inline bool CSGOUserCmdPB::has_attack2_start_history_index() const { } inline void CSGOUserCmdPB::clear_attack2_start_history_index() { _impl_.attack2_start_history_index_ = -1; - _impl_._has_bits_[0] &= ~0x00000080u; + _impl_._has_bits_[0] &= ~0x00000040u; } inline int32_t CSGOUserCmdPB::_internal_attack2_start_history_index() const { return _impl_.attack2_start_history_index_; @@ -2393,7 +2378,7 @@ inline int32_t CSGOUserCmdPB::attack2_start_history_index() const { return _internal_attack2_start_history_index(); } inline void CSGOUserCmdPB::_internal_set_attack2_start_history_index(int32_t value) { - _impl_._has_bits_[0] |= 0x00000080u; + _impl_._has_bits_[0] |= 0x00000040u; _impl_.attack2_start_history_index_ = value; } inline void CSGOUserCmdPB::set_attack2_start_history_index(int32_t value) { @@ -2401,34 +2386,6 @@ inline void CSGOUserCmdPB::set_attack2_start_history_index(int32_t value) { // @@protoc_insertion_point(field_set:CSGOUserCmdPB.attack2_start_history_index) } -// optional int32 attack3_start_history_index = 8 [default = -1]; -inline bool CSGOUserCmdPB::_internal_has_attack3_start_history_index() const { - bool value = (_impl_._has_bits_[0] & 0x00000020u) != 0; - return value; -} -inline bool CSGOUserCmdPB::has_attack3_start_history_index() const { - return _internal_has_attack3_start_history_index(); -} -inline void CSGOUserCmdPB::clear_attack3_start_history_index() { - _impl_.attack3_start_history_index_ = -1; - _impl_._has_bits_[0] &= ~0x00000020u; -} -inline int32_t CSGOUserCmdPB::_internal_attack3_start_history_index() const { - return _impl_.attack3_start_history_index_; -} -inline int32_t CSGOUserCmdPB::attack3_start_history_index() const { - // @@protoc_insertion_point(field_get:CSGOUserCmdPB.attack3_start_history_index) - return _internal_attack3_start_history_index(); -} -inline void CSGOUserCmdPB::_internal_set_attack3_start_history_index(int32_t value) { - _impl_._has_bits_[0] |= 0x00000020u; - _impl_.attack3_start_history_index_ = value; -} -inline void CSGOUserCmdPB::set_attack3_start_history_index(int32_t value) { - _internal_set_attack3_start_history_index(value); - // @@protoc_insertion_point(field_set:CSGOUserCmdPB.attack3_start_history_index) -} - // optional bool left_hand_desired = 9 [default = false]; inline bool CSGOUserCmdPB::_internal_has_left_hand_desired() const { bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; diff --git a/protobuf/generated/cstrike15_gcmessages.pb.cc b/protobuf/generated/cstrike15_gcmessages.pb.cc index ccb378e81..17f7b12c6 100644 --- a/protobuf/generated/cstrike15_gcmessages.pb.cc +++ b/protobuf/generated/cstrike15_gcmessages.pb.cc @@ -2274,6 +2274,38 @@ struct CSOAccountXpShopBidsDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CSOAccountXpShopBidsDefaultTypeInternal _CSOAccountXpShopBids_default_instance_; +PROTOBUF_CONSTEXPR CSOVolatileItemOffer::CSOVolatileItemOffer( + ::_pbi::ConstantInitialized): _impl_{ + /*decltype(_impl_._has_bits_)*/{} + , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.faux_itemid_)*/{} + , /*decltype(_impl_.generation_time_)*/{} + , /*decltype(_impl_.defidx_)*/0u} {} +struct CSOVolatileItemOfferDefaultTypeInternal { + PROTOBUF_CONSTEXPR CSOVolatileItemOfferDefaultTypeInternal() + : _instance(::_pbi::ConstantInitialized{}) {} + ~CSOVolatileItemOfferDefaultTypeInternal() {} + union { + CSOVolatileItemOffer _instance; + }; +}; +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CSOVolatileItemOfferDefaultTypeInternal _CSOVolatileItemOffer_default_instance_; +PROTOBUF_CONSTEXPR CSOVolatileItemClaimedRewards::CSOVolatileItemClaimedRewards( + ::_pbi::ConstantInitialized): _impl_{ + /*decltype(_impl_._has_bits_)*/{} + , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.reward_)*/{} + , /*decltype(_impl_.generation_time_)*/{} + , /*decltype(_impl_.defidx_)*/0u} {} +struct CSOVolatileItemClaimedRewardsDefaultTypeInternal { + PROTOBUF_CONSTEXPR CSOVolatileItemClaimedRewardsDefaultTypeInternal() + : _instance(::_pbi::ConstantInitialized{}) {} + ~CSOVolatileItemClaimedRewardsDefaultTypeInternal() {} + union { + CSOVolatileItemClaimedRewards _instance; + }; +}; +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CSOVolatileItemClaimedRewardsDefaultTypeInternal _CSOVolatileItemClaimedRewards_default_instance_; PROTOBUF_CONSTEXPR CSOAccountKeychainRemoveToolCharges::CSOAccountKeychainRemoveToolCharges( ::_pbi::ConstantInitialized): _impl_{ /*decltype(_impl_._has_bits_)*/{} @@ -3185,7 +3217,7 @@ struct CMsgRecurringMissionSchemaDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CMsgRecurringMissionSchemaDefaultTypeInternal _CMsgRecurringMissionSchema_default_instance_; -static ::_pb::Metadata file_level_metadata_cstrike15_5fgcmessages_2eproto[178]; +static ::_pb::Metadata file_level_metadata_cstrike15_5fgcmessages_2eproto[180]; static const ::_pb::EnumDescriptor* file_level_enum_descriptors_cstrike15_5fgcmessages_2eproto[5]; static constexpr ::_pb::ServiceDescriptor const** file_level_service_descriptors_cstrike15_5fgcmessages_2eproto = nullptr; @@ -5273,6 +5305,30 @@ const uint32_t TableStruct_cstrike15_5fgcmessages_2eproto::offsets[] PROTOBUF_SE 1, 2, 3, + PROTOBUF_FIELD_OFFSET(::CSOVolatileItemOffer, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::CSOVolatileItemOffer, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + PROTOBUF_FIELD_OFFSET(::CSOVolatileItemOffer, _impl_.defidx_), + PROTOBUF_FIELD_OFFSET(::CSOVolatileItemOffer, _impl_.faux_itemid_), + PROTOBUF_FIELD_OFFSET(::CSOVolatileItemOffer, _impl_.generation_time_), + 0, + ~0u, + ~0u, + PROTOBUF_FIELD_OFFSET(::CSOVolatileItemClaimedRewards, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::CSOVolatileItemClaimedRewards, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + PROTOBUF_FIELD_OFFSET(::CSOVolatileItemClaimedRewards, _impl_.defidx_), + PROTOBUF_FIELD_OFFSET(::CSOVolatileItemClaimedRewards, _impl_.reward_), + PROTOBUF_FIELD_OFFSET(::CSOVolatileItemClaimedRewards, _impl_.generation_time_), + 0, + ~0u, + ~0u, PROTOBUF_FIELD_OFFSET(::CSOAccountKeychainRemoveToolCharges, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CSOAccountKeychainRemoveToolCharges, _internal_metadata_), ~0u, // no _extensions_ @@ -6115,62 +6171,64 @@ static const ::_pbi::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protode { 2045, 2054, -1, sizeof(::CSOAccountItemPersonalStore)}, { 2057, 2066, -1, sizeof(::CSOAccountXpShop)}, { 2069, 2079, -1, sizeof(::CSOAccountXpShopBids)}, - { 2083, 2090, -1, sizeof(::CSOAccountKeychainRemoveToolCharges)}, - { 2091, 2100, -1, sizeof(::CSOQuestProgress)}, - { 2103, 2116, -1, sizeof(::CSOAccountSeasonalOperation)}, - { 2123, 2131, -1, sizeof(::CSOAccountRecurringSubscription)}, - { 2133, 2142, -1, sizeof(::CSOGameAccountSteamChina)}, - { 2145, 2156, -1, sizeof(::CSOPersonaDataPublic)}, - { 2161, 2171, -1, sizeof(::CSOAccountRecurringMission)}, - { 2175, 2185, -1, sizeof(::CMsgGCCStrike15_v2_GC2ClientNotifyXPShop)}, - { 2189, -1, -1, sizeof(::CMsgGCCStrike15_v2_Client2GcAckXPShopTracks)}, - { 2195, 2206, -1, sizeof(::CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats)}, - { 2211, 2218, -1, sizeof(::CMsgGC_GlobalGame_Subscribe)}, - { 2219, 2226, -1, sizeof(::CMsgGC_GlobalGame_Unsubscribe)}, - { 2227, 2236, -1, sizeof(::CMsgGC_GlobalGame_Play)}, - { 2239, 2246, -1, sizeof(::CMsgGCCStrike15_v2_AcknowledgePenalty)}, - { 2247, 2257, -1, sizeof(::CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin)}, - { 2261, 2269, -1, sizeof(::CMsgGCCStrike15_v2_Client2GCStreamUnlock)}, - { 2271, 2278, -1, sizeof(::CMsgGCCStrike15_v2_ClientToGCRequestElevate)}, - { 2279, 2287, -1, sizeof(::CMsgGCCStrike15_v2_ClientToGCChat)}, - { 2289, 2297, -1, sizeof(::CMsgGCCStrike15_v2_GCToClientChat)}, - { 2299, 2307, -1, sizeof(::CMsgGCCStrike15_v2_ClientAuthKeyCode)}, - { 2309, 2316, -1, sizeof(::CMsgGCCStrike15_GotvSyncPacket)}, - { 2317, 2337, -1, sizeof(::PlayerDecalDigitalSignature)}, - { 2351, 2359, -1, sizeof(::CMsgGCCStrike15_v2_ClientPlayerDecalSign)}, - { 2361, 2368, -1, sizeof(::CMsgGCCStrike15_v2_BetaEnrollment)}, - { 2369, 2378, -1, sizeof(::CMsgGCCStrike15_v2_ClientLogonFatalError)}, - { 2381, 2390, -1, sizeof(::CMsgGCCStrike15_v2_ClientPollState)}, - { 2393, 2408, -1, sizeof(::CMsgGCCStrike15_v2_Party_Register)}, - { 2417, 2429, -1, sizeof(::CMsgGCCStrike15_v2_Party_Search)}, - { 2435, 2448, -1, sizeof(::CMsgGCCStrike15_v2_Party_SearchResults_Entry)}, - { 2455, -1, -1, sizeof(::CMsgGCCStrike15_v2_Party_SearchResults)}, - { 2462, 2470, -1, sizeof(::CMsgGCCStrike15_v2_Party_Invite)}, - { 2472, 2481, -1, sizeof(::CMsgGCCStrike15_v2_Account_RequestCoPlays_Player)}, - { 2484, 2492, -1, sizeof(::CMsgGCCStrike15_v2_Account_RequestCoPlays)}, - { 2494, 2504, -1, sizeof(::CMsgGCCStrike15_v2_ClientToGCRequestTicket)}, - { 2508, 2515, -1, sizeof(::CMsgGCToClientSteamDatagramTicket)}, - { 2516, -1, -1, sizeof(::CMsgGCCStrike15_v2_ClientRequestOffers)}, - { 2522, 2531, -1, sizeof(::CMsgGCCStrike15_v2_ClientRequestSouvenir)}, - { 2534, 2542, -1, sizeof(::CMsgGCCStrike15_v2_ClientAccountBalance)}, - { 2544, 2552, -1, sizeof(::CMsgGCCStrike15_v2_ClientPartyJoinRelay)}, - { 2554, 2562, -1, sizeof(::CMsgGCCStrike15_v2_ClientPartyWarning_Entry)}, - { 2564, -1, -1, sizeof(::CMsgGCCStrike15_v2_ClientPartyWarning)}, - { 2571, 2579, -1, sizeof(::CMsgGCCStrike15_v2_SetEventFavorite)}, - { 2581, 2588, -1, sizeof(::CMsgGCCStrike15_v2_GetEventFavorites_Request)}, - { 2589, 2598, -1, sizeof(::CMsgGCCStrike15_v2_GetEventFavorites_Response)}, - { 2601, 2613, -1, sizeof(::CMsgGCCStrike15_v2_ClientPerfReport_Entry)}, - { 2619, -1, -1, sizeof(::CMsgGCCStrike15_v2_ClientPerfReport)}, - { 2626, 2636, -1, sizeof(::CVDiagnostic)}, - { 2640, 2666, -1, sizeof(::CMsgGCCStrike15_v2_ClientReportValidation)}, - { 2686, 2701, -1, sizeof(::CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode)}, - { 2710, 2718, -1, sizeof(::CMsgGCCStrike15_v2_GC2ClientRequestValidation)}, - { 2720, 2735, -1, sizeof(::CMsgGCCStrike15_v2_GC2ClientInitSystem)}, - { 2744, 2760, -1, sizeof(::CMsgGCCStrike15_v2_GC2ClientInitSystem_Response)}, - { 2770, 2777, -1, sizeof(::CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName)}, - { 2778, -1, -1, sizeof(::CMsgRequestRecurringMissionSchedule)}, - { 2784, 2792, -1, sizeof(::CMsgRecurringMissionSchema_MissionTemplateList)}, - { 2794, -1, -1, sizeof(::CMsgRecurringMissionSchema)}, + { 2083, 2092, -1, sizeof(::CSOVolatileItemOffer)}, + { 2095, 2104, -1, sizeof(::CSOVolatileItemClaimedRewards)}, + { 2107, 2114, -1, sizeof(::CSOAccountKeychainRemoveToolCharges)}, + { 2115, 2124, -1, sizeof(::CSOQuestProgress)}, + { 2127, 2140, -1, sizeof(::CSOAccountSeasonalOperation)}, + { 2147, 2155, -1, sizeof(::CSOAccountRecurringSubscription)}, + { 2157, 2166, -1, sizeof(::CSOGameAccountSteamChina)}, + { 2169, 2180, -1, sizeof(::CSOPersonaDataPublic)}, + { 2185, 2195, -1, sizeof(::CSOAccountRecurringMission)}, + { 2199, 2209, -1, sizeof(::CMsgGCCStrike15_v2_GC2ClientNotifyXPShop)}, + { 2213, -1, -1, sizeof(::CMsgGCCStrike15_v2_Client2GcAckXPShopTracks)}, + { 2219, 2230, -1, sizeof(::CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats)}, + { 2235, 2242, -1, sizeof(::CMsgGC_GlobalGame_Subscribe)}, + { 2243, 2250, -1, sizeof(::CMsgGC_GlobalGame_Unsubscribe)}, + { 2251, 2260, -1, sizeof(::CMsgGC_GlobalGame_Play)}, + { 2263, 2270, -1, sizeof(::CMsgGCCStrike15_v2_AcknowledgePenalty)}, + { 2271, 2281, -1, sizeof(::CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin)}, + { 2285, 2293, -1, sizeof(::CMsgGCCStrike15_v2_Client2GCStreamUnlock)}, + { 2295, 2302, -1, sizeof(::CMsgGCCStrike15_v2_ClientToGCRequestElevate)}, + { 2303, 2311, -1, sizeof(::CMsgGCCStrike15_v2_ClientToGCChat)}, + { 2313, 2321, -1, sizeof(::CMsgGCCStrike15_v2_GCToClientChat)}, + { 2323, 2331, -1, sizeof(::CMsgGCCStrike15_v2_ClientAuthKeyCode)}, + { 2333, 2340, -1, sizeof(::CMsgGCCStrike15_GotvSyncPacket)}, + { 2341, 2361, -1, sizeof(::PlayerDecalDigitalSignature)}, + { 2375, 2383, -1, sizeof(::CMsgGCCStrike15_v2_ClientPlayerDecalSign)}, + { 2385, 2392, -1, sizeof(::CMsgGCCStrike15_v2_BetaEnrollment)}, + { 2393, 2402, -1, sizeof(::CMsgGCCStrike15_v2_ClientLogonFatalError)}, + { 2405, 2414, -1, sizeof(::CMsgGCCStrike15_v2_ClientPollState)}, + { 2417, 2432, -1, sizeof(::CMsgGCCStrike15_v2_Party_Register)}, + { 2441, 2453, -1, sizeof(::CMsgGCCStrike15_v2_Party_Search)}, + { 2459, 2472, -1, sizeof(::CMsgGCCStrike15_v2_Party_SearchResults_Entry)}, + { 2479, -1, -1, sizeof(::CMsgGCCStrike15_v2_Party_SearchResults)}, + { 2486, 2494, -1, sizeof(::CMsgGCCStrike15_v2_Party_Invite)}, + { 2496, 2505, -1, sizeof(::CMsgGCCStrike15_v2_Account_RequestCoPlays_Player)}, + { 2508, 2516, -1, sizeof(::CMsgGCCStrike15_v2_Account_RequestCoPlays)}, + { 2518, 2528, -1, sizeof(::CMsgGCCStrike15_v2_ClientToGCRequestTicket)}, + { 2532, 2539, -1, sizeof(::CMsgGCToClientSteamDatagramTicket)}, + { 2540, -1, -1, sizeof(::CMsgGCCStrike15_v2_ClientRequestOffers)}, + { 2546, 2555, -1, sizeof(::CMsgGCCStrike15_v2_ClientRequestSouvenir)}, + { 2558, 2566, -1, sizeof(::CMsgGCCStrike15_v2_ClientAccountBalance)}, + { 2568, 2576, -1, sizeof(::CMsgGCCStrike15_v2_ClientPartyJoinRelay)}, + { 2578, 2586, -1, sizeof(::CMsgGCCStrike15_v2_ClientPartyWarning_Entry)}, + { 2588, -1, -1, sizeof(::CMsgGCCStrike15_v2_ClientPartyWarning)}, + { 2595, 2603, -1, sizeof(::CMsgGCCStrike15_v2_SetEventFavorite)}, + { 2605, 2612, -1, sizeof(::CMsgGCCStrike15_v2_GetEventFavorites_Request)}, + { 2613, 2622, -1, sizeof(::CMsgGCCStrike15_v2_GetEventFavorites_Response)}, + { 2625, 2637, -1, sizeof(::CMsgGCCStrike15_v2_ClientPerfReport_Entry)}, + { 2643, -1, -1, sizeof(::CMsgGCCStrike15_v2_ClientPerfReport)}, + { 2650, 2660, -1, sizeof(::CVDiagnostic)}, + { 2664, 2690, -1, sizeof(::CMsgGCCStrike15_v2_ClientReportValidation)}, + { 2710, 2725, -1, sizeof(::CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode)}, + { 2734, 2742, -1, sizeof(::CMsgGCCStrike15_v2_GC2ClientRequestValidation)}, + { 2744, 2759, -1, sizeof(::CMsgGCCStrike15_v2_GC2ClientInitSystem)}, + { 2768, 2784, -1, sizeof(::CMsgGCCStrike15_v2_GC2ClientInitSystem_Response)}, + { 2794, 2801, -1, sizeof(::CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName)}, + { 2802, -1, -1, sizeof(::CMsgRequestRecurringMissionSchedule)}, + { 2808, 2816, -1, sizeof(::CMsgRecurringMissionSchema_MissionTemplateList)}, + { 2818, -1, -1, sizeof(::CMsgRecurringMissionSchema)}, }; static const ::_pb::Message* const file_default_instances[] = { @@ -6296,6 +6354,8 @@ static const ::_pb::Message* const file_default_instances[] = { &::_CSOAccountItemPersonalStore_default_instance_._instance, &::_CSOAccountXpShop_default_instance_._instance, &::_CSOAccountXpShopBids_default_instance_._instance, + &::_CSOVolatileItemOffer_default_instance_._instance, + &::_CSOVolatileItemClaimedRewards_default_instance_._instance, &::_CSOAccountKeychainRemoveToolCharges_default_instance_._instance, &::_CSOQuestProgress_default_instance_._instance, &::_CSOAccountSeasonalOperation_default_instance_._instance, @@ -6898,317 +6958,323 @@ const char descriptor_table_protodef_cstrike15_5fgcmessages_2eproto[] PROTOBUF_S "(\r\"z\n\024CSOAccountXpShopBids\022\031\n\013campaign_i" "d\030\001 \001(\rB\004\200\246\035\001\022\027\n\tredeem_id\030\002 \001(\rB\004\200\246\035\001\022\025" "\n\rexpected_cost\030\003 \001(\r\022\027\n\017generation_time" - "\030\004 \001(\r\"6\n#CSOAccountKeychainRemoveToolCh" - "arges\022\017\n\007charges\030\001 \001(\r\"Y\n\020CSOQuestProgre" - "ss\022\025\n\007questid\030\001 \001(\rB\004\200\246\035\001\022\030\n\020points_rema" - "ining\030\002 \001(\r\022\024\n\014bonus_points\030\003 \001(\r\"\315\001\n\033CS" - "OAccountSeasonalOperation\022\032\n\014season_valu" - "e\030\001 \001(\rB\004\200\246\035\001\022\025\n\rtier_unlocked\030\002 \001(\r\022\025\n\r" - "premium_tiers\030\003 \001(\r\022\022\n\nmission_id\030\004 \001(\r\022" - "\032\n\022missions_completed\030\005 \001(\r\022\032\n\022redeemabl" - "e_balance\030\006 \001(\r\022\030\n\020season_pass_time\030\007 \001(" - "\r\"R\n\037CSOAccountRecurringSubscription\022\027\n\017" - "time_next_cycle\030\001 \001(\r\022\026\n\016time_initiated\030" - "\002 \001(\r\"c\n\030CSOGameAccountSteamChina\022\030\n\020tim" - "e_last_update\030\001 \001(\r\022\026\n\016time_comms_ban\030\002 " - "\001(\r\022\025\n\rtime_play_ban\030\003 \001(\r\"\257\001\n\024CSOPerson" - "aDataPublic\022\024\n\014player_level\030\001 \001(\005\022-\n\014com" - "mendation\030\002 \001(\0132\027.PlayerCommendationInfo" - "\022\026\n\016elevated_state\030\003 \001(\010\022\"\n\032xp_trail_tim" - "estamp_refresh\030\004 \001(\r\022\026\n\016xp_trail_level\030\005" - " \001(\r\"f\n\032CSOAccountRecurringMission\022\022\n\nac" - "count_id\030\001 \001(\r\022\022\n\nmission_id\030\002 \001(\r\022\016\n\006pe" - "riod\030\003 \001(\r\022\020\n\010progress\030\004 \001(\r\"\240\001\n(CMsgGCC" - "Strike15_v2_GC2ClientNotifyXPShop\022#\n\010pre" - "match\030\001 \001(\0132\021.CSOAccountXpShop\022$\n\tpostma" - "tch\030\002 \001(\0132\021.CSOAccountXpShop\022\022\n\ncurrent_" - "xp\030\003 \001(\r\022\025\n\rcurrent_level\030\004 \001(\r\"-\n+CMsgG" - "CCStrike15_v2_Client2GcAckXPShopTracks\"\251" - "\001\n2CMsgGCCStrike15_v2_MatchmakingGC2Clie" - "ntSearchStats\022\026\n\016gs_location_id\030\001 \001(\r\022\026\n" - "\016data_center_id\030\002 \001(\r\022\025\n\rnum_locked_in\030\003" - " \001(\r\022\030\n\020num_found_nearby\030\004 \001(\r\022\022\n\nnote_l" - "evel\030\005 \001(\r\"-\n\033CMsgGC_GlobalGame_Subscrib" - "e\022\016\n\006ticket\030\001 \001(\004\"1\n\035CMsgGC_GlobalGame_U" - "nsubscribe\022\020\n\010timeleft\030\001 \001(\005\"P\n\026CMsgGC_G" - "lobalGame_Play\022\016\n\006ticket\030\001 \001(\004\022\022\n\ngameti" - "mems\030\002 \001(\r\022\022\n\nmsperpoint\030\003 \001(\r\"=\n%CMsgGC" - "CStrike15_v2_AcknowledgePenalty\022\024\n\014ackno" - "wledged\030\001 \001(\005\"{\n/CMsgGCCStrike15_v2_Clie" - "nt2GCRequestPrestigeCoin\022\020\n\010defindex\030\001 \001" - "(\r\022\021\n\tupgradeid\030\002 \001(\004\022\r\n\005hours\030\003 \001(\r\022\024\n\014" - "prestigetime\030\004 \001(\r\"F\n(CMsgGCCStrike15_v2" - "_Client2GCStreamUnlock\022\016\n\006ticket\030\001 \001(\004\022\n" - "\n\002os\030\002 \001(\005\"<\n+CMsgGCCStrike15_v2_ClientT" - "oGCRequestElevate\022\r\n\005stage\030\001 \001(\r\"C\n!CMsg" - "GCCStrike15_v2_ClientToGCChat\022\020\n\010match_i" - "d\030\001 \001(\004\022\014\n\004text\030\002 \001(\t\"E\n!CMsgGCCStrike15" - "_v2_GCToClientChat\022\022\n\naccount_id\030\001 \001(\r\022\014" - "\n\004text\030\002 \001(\t\"E\n$CMsgGCCStrike15_v2_Clien" - "tAuthKeyCode\022\017\n\007eventid\030\001 \001(\r\022\014\n\004code\030\002 " - "\001(\t\"F\n\036CMsgGCCStrike15_GotvSyncPacket\022$\n" - "\004data\030\001 \001(\0132\026.CEngineGotvSyncPacket\"\223\002\n\033" - "PlayerDecalDigitalSignature\022\021\n\tsignature" - "\030\001 \001(\014\022\021\n\taccountid\030\002 \001(\r\022\r\n\005rtime\030\003 \001(\r" - "\022\016\n\006endpos\030\004 \003(\002\022\020\n\010startpos\030\005 \003(\002\022\014\n\004le" - "ft\030\006 \003(\002\022\021\n\ttx_defidx\030\007 \001(\r\022\020\n\010entindex\030" - "\010 \001(\005\022\016\n\006hitbox\030\t \001(\r\022\024\n\014creationtime\030\n " - "\001(\002\022\021\n\tequipslot\030\013 \001(\r\022\020\n\010trace_id\030\014 \001(\r" - "\022\016\n\006normal\030\r \003(\002\022\017\n\007tint_id\030\016 \001(\r\"f\n(CMs" - "gGCCStrike15_v2_ClientPlayerDecalSign\022*\n" - "\004data\030\001 \001(\0132\034.PlayerDecalDigitalSignatur" - "e\022\016\n\006itemid\030\002 \001(\004\"4\n!CMsgGCCStrike15_v2_" - "BetaEnrollment\022\017\n\007eresult\030\001 \001(\r\"_\n(CMsgG" - "CCStrike15_v2_ClientLogonFatalError\022\021\n\te" - "rrorcode\030\001 \001(\r\022\017\n\007message\030\002 \001(\t\022\017\n\007count" - "ry\030\003 \001(\t\"S\n\"CMsgGCCStrike15_v2_ClientPol" - "lState\022\016\n\006pollid\030\001 \001(\r\022\r\n\005names\030\002 \003(\t\022\016\n" - "\006values\030\003 \003(\005\"\244\001\n!CMsgGCCStrike15_v2_Par" - "ty_Register\022\n\n\002id\030\001 \001(\r\022\013\n\003ver\030\002 \001(\r\022\013\n\003" - "apr\030\003 \001(\r\022\013\n\003ark\030\004 \001(\r\022\013\n\003nby\030\005 \001(\r\022\013\n\003g" - "rp\030\006 \001(\r\022\r\n\005slots\030\007 \001(\r\022\020\n\010launcher\030\010 \001(" - "\r\022\021\n\tgame_type\030\t \001(\r\"{\n\037CMsgGCCStrike15_" - "v2_Party_Search\022\013\n\003ver\030\001 \001(\r\022\013\n\003apr\030\002 \001(" - "\r\022\013\n\003ark\030\003 \001(\r\022\014\n\004grps\030\004 \003(\r\022\020\n\010launcher" - "\030\005 \001(\r\022\021\n\tgame_type\030\006 \001(\r\"\327\001\n&CMsgGCCStr" - "ike15_v2_Party_SearchResults\022>\n\007entries\030" - "\001 \003(\0132-.CMsgGCCStrike15_v2_Party_SearchR" - "esults.Entry\032m\n\005Entry\022\n\n\002id\030\001 \001(\r\022\013\n\003grp" - "\030\002 \001(\r\022\021\n\tgame_type\030\003 \001(\r\022\013\n\003apr\030\004 \001(\r\022\013" - "\n\003ark\030\005 \001(\r\022\013\n\003loc\030\006 \001(\r\022\021\n\taccountid\030\007 " - "\001(\r\"E\n\037CMsgGCCStrike15_v2_Party_Invite\022\021" - "\n\taccountid\030\001 \001(\r\022\017\n\007lobbyid\030\002 \001(\r\"\302\001\n)C" - "MsgGCCStrike15_v2_Account_RequestCoPlays" - "\022B\n\007players\030\001 \003(\01321.CMsgGCCStrike15_v2_A" - "ccount_RequestCoPlays.Player\022\022\n\nserverti" - "me\030\002 \001(\r\032=\n\006Player\022\021\n\taccountid\030\001 \001(\r\022\020\n" - "\010rtcoplay\030\002 \001(\r\022\016\n\006online\030\003 \001(\010\"\244\001\n*CMsg" - "GCCStrike15_v2_ClientToGCRequestTicket\022\033" - "\n\023authorized_steam_id\030\001 \001(\006\022\034\n\024authorize" - "d_public_ip\030\002 \001(\007\022\033\n\023gameserver_steam_id" - "\030\003 \001(\006\022\036\n\026gameserver_sdr_routing\030\005 \001(\t\">" - "\n!CMsgGCToClientSteamDatagramTicket\022\031\n\021s" - "erialized_ticket\030\020 \001(\014\"(\n&CMsgGCCStrike1" - "5_v2_ClientRequestOffers\"\\\n(CMsgGCCStrik" - "e15_v2_ClientRequestSouvenir\022\016\n\006itemid\030\001" - " \001(\004\022\017\n\007matchid\030\002 \001(\004\022\017\n\007eventid\030\003 \001(\005\"F" - "\n\'CMsgGCCStrike15_v2_ClientAccountBalanc" - "e\022\016\n\006amount\030\001 \001(\004\022\013\n\003url\030\002 \001(\t\"M\n\'CMsgGC" - "CStrike15_v2_ClientPartyJoinRelay\022\021\n\tacc" - "ountid\030\001 \001(\r\022\017\n\007lobbyid\030\002 \001(\004\"\224\001\n%CMsgGC" - "CStrike15_v2_ClientPartyWarning\022=\n\007entri" - "es\030\001 \003(\0132,.CMsgGCCStrike15_v2_ClientPart" - "yWarning.Entry\032,\n\005Entry\022\021\n\taccountid\030\001 \001" - "(\r\022\020\n\010warntype\030\002 \001(\r\"K\n#CMsgGCCStrike15_" - "v2_SetEventFavorite\022\017\n\007eventid\030\001 \001(\004\022\023\n\013" - "is_favorite\030\002 \001(\010\"B\n,CMsgGCCStrike15_v2_" - "GetEventFavorites_Request\022\022\n\nall_events\030" - "\001 \001(\010\"r\n-CMsgGCCStrike15_v2_GetEventFavo" - "rites_Response\022\022\n\nall_events\030\001 \001(\010\022\026\n\016js" - "on_favorites\030\002 \001(\t\022\025\n\rjson_featured\030\003 \001(" - "\t\"\325\001\n#CMsgGCCStrike15_v2_ClientPerfRepor" - "t\022;\n\007entries\030\001 \003(\0132*.CMsgGCCStrike15_v2_" - "ClientPerfReport.Entry\032q\n\005Entry\022\023\n\013perfc" - "ounter\030\001 \001(\r\022\016\n\006length\030\002 \001(\r\022\021\n\treferenc" - "e\030\003 \001(\014\022\016\n\006actual\030\004 \001(\014\022\020\n\010sourceid\030\005 \001(" - "\r\022\016\n\006status\030\006 \001(\r\"Q\n\014CVDiagnostic\022\n\n\002id\030" - "\001 \001(\r\022\020\n\010extended\030\002 \001(\r\022\r\n\005value\030\003 \001(\004\022\024" - "\n\014string_value\030\004 \001(\t\"\360\003\n)CMsgGCCStrike15" - "_v2_ClientReportValidation\022\023\n\013file_repor" - "t\030\001 \001(\t\022\024\n\014command_line\030\002 \001(\t\022\023\n\013total_f" - "iles\030\003 \001(\r\022\026\n\016internal_error\030\004 \001(\r\022\022\n\ntr" - "ust_time\030\005 \001(\r\022\025\n\rcount_pending\030\006 \001(\r\022\027\n" - "\017count_completed\030\007 \001(\r\022\022\n\nprocess_id\030\010 \001" - "(\r\022\021\n\tosversion\030\t \001(\005\022\033\n\023clientreportver" - "sion\030\n \001(\r\022\021\n\tstatus_id\030\013 \001(\r\022\023\n\013diagnos" - "tic1\030\014 \001(\r\022\023\n\013diagnostic2\030\r \001(\004\022\023\n\013diagn" - "ostic3\030\016 \001(\004\022\030\n\020last_launch_data\030\017 \001(\t\022\024" - "\n\014report_count\030\020 \001(\r\022\023\n\013client_time\030\021 \001(" - "\004\022\023\n\013diagnostic4\030\022 \001(\004\022\023\n\013diagnostic5\030\023 " - "\001(\004\022\"\n\013diagnostics\030\024 \003(\0132\r.CVDiagnostic\"" - "\250\002\n,CMsgGCCStrike15_v2_GC2ClientRefuseSe" - "cureMode\022\023\n\013file_report\030\001 \001(\t\022\033\n\023offer_i" - "nsecure_mode\030\002 \001(\010\022\031\n\021offer_secure_mode\030" - "\003 \001(\010\022\030\n\020show_unsigned_ui\030\004 \001(\010\022\021\n\tkick_" - "user\030\005 \001(\010\022\027\n\017show_trusted_ui\030\006 \001(\010\022 \n\030s" - "how_warning_not_trusted\030\007 \001(\010\022\"\n\032show_wa" - "rning_not_trusted_2\030\010 \001(\010\022\037\n\027files_preve" - "nted_trusted\030\t \001(\t\"T\n-CMsgGCCStrike15_v2" - "_GC2ClientRequestValidation\022\023\n\013full_repo" - "rt\030\001 \001(\010\022\016\n\006module\030\002 \001(\t\"\313\001\n&CMsgGCCStri" - "ke15_v2_GC2ClientInitSystem\022\014\n\004load\030\001 \001(" - "\010\022\014\n\004name\030\002 \001(\t\022\022\n\noutputname\030\003 \001(\t\022\020\n\010k" - "ey_data\030\004 \001(\014\022\020\n\010sha_hash\030\005 \001(\014\022\016\n\006cooki" - "e\030\006 \001(\005\022\020\n\010manifest\030\007 \001(\t\022\026\n\016system_pack" - "age\030\010 \001(\014\022\023\n\013load_system\030\t \001(\010\"\245\002\n/CMsgG" - "CCStrike15_v2_GC2ClientInitSystem_Respon" - "se\022\017\n\007success\030\001 \001(\010\022\022\n\ndiagnostic\030\002 \001(\t\022" - "\020\n\010sha_hash\030\003 \001(\014\022\020\n\010response\030\004 \001(\005\022\023\n\013e" - "rror_code1\030\005 \001(\005\022\023\n\013error_code2\030\006 \001(\005\022\016\n" - "\006handle\030\007 \001(\003\022E\n\014einit_result\030\010 \001(\0162\022.EI" - "nitSystemResult:\033k_EInitSystemResult_Inv" - "alid\022\023\n\013aux_system1\030\t \001(\005\022\023\n\013aux_system2" - "\030\n \001(\005\"P\n/CMsgGCCStrike15_v2_SetPlayerLe" - "aderboardSafeName\022\035\n\025leaderboard_safe_na" - "me\030\001 \001(\t\"%\n#CMsgRequestRecurringMissionS" - "chedule\"\241\001\n\032CMsgRecurringMissionSchema\022A" - "\n\010missions\030\001 \003(\0132/.CMsgRecurringMissionS" - "chema.MissionTemplateList\032@\n\023MissionTemp" - "lateList\022\016\n\006period\030\001 \001(\r\022\031\n\021mission_temp" - "lates\030\002 \003(\014*\226*\n\nECsgoGCMsg\022\036\n\031k_EMsgGCCS" - "trike15_v2_Base\020\214G\022*\n%k_EMsgGCCStrike15_" - "v2_MatchmakingStart\020\215G\022)\n$k_EMsgGCCStrik" - "e15_v2_MatchmakingStop\020\216G\0226\n1k_EMsgGCCSt" - "rike15_v2_MatchmakingClient2ServerPing\020\217" - "G\0224\n/k_EMsgGCCStrike15_v2_MatchmakingGC2" - "ClientUpdate\020\220G\022>\n9k_EMsgGCCStrike15_v2_" - "MatchmakingServerReservationResponse\020\222G\022" - "5\n0k_EMsgGCCStrike15_v2_MatchmakingGC2Cl" - "ientReserve\020\223G\0223\n.k_EMsgGCCStrike15_v2_M" - "atchmakingClient2GCHello\020\225G\0223\n.k_EMsgGCC" - "Strike15_v2_MatchmakingGC2ClientHello\020\226G" - "\0225\n0k_EMsgGCCStrike15_v2_MatchmakingGC2C" - "lientAbandon\020\230G\022:\n5k_EMsgGCCStrike15_v2_" - "MatchmakingOperator2GCBlogUpdate\020\235G\022:\n5k" - "_EMsgGCCStrike15_v2_ServerNotificationFo" - "rUserPenalty\020\236G\022,\n\'k_EMsgGCCStrike15_v2_" - "ClientReportPlayer\020\237G\022,\n\'k_EMsgGCCStrike" - "15_v2_ClientReportServer\020\240G\022-\n(k_EMsgGCC" - "Strike15_v2_ClientCommendPlayer\020\241G\022.\n)k_" - "EMsgGCCStrike15_v2_ClientReportResponse\020" - "\242G\0222\n-k_EMsgGCCStrike15_v2_ClientCommend" - "PlayerQuery\020\243G\022:\n5k_EMsgGCCStrike15_v2_C" - "lientCommendPlayerQueryResponse\020\244G\022(\n#k_" - "EMsgGCCStrike15_v2_WatchInfoUsers\020\246G\0225\n0" - "k_EMsgGCCStrike15_v2_ClientRequestPlayer" - "sProfile\020\247G\022(\n#k_EMsgGCCStrike15_v2_Play" - "ersProfile\020\250G\0223\n.k_EMsgGCCStrike15_v2_Pl" - "ayerOverwatchCaseUpdate\020\253G\0227\n2k_EMsgGCCS" - "trike15_v2_PlayerOverwatchCaseAssignment" - "\020\254G\0223\n.k_EMsgGCCStrike15_v2_PlayerOverwa" - "tchCaseStatus\020\255G\022*\n%k_EMsgGCCStrike15_v2" - "_GC2ClientTextMsg\020\256G\022*\n%k_EMsgGCCStrike1" - "5_v2_Client2GCTextMsg\020\257G\0220\n+k_EMsgGCCStr" - "ike15_v2_MatchEndRunRewardDrops\020\260G\0229\n4k_" - "EMsgGCCStrike15_v2_MatchEndRewardDropsNo" - "tification\020\261G\0228\n3k_EMsgGCCStrike15_v2_Cl" - "ientRequestWatchInfoFriends2\020\262G\022#\n\036k_EMs" - "gGCCStrike15_v2_MatchList\020\263G\022:\n5k_EMsgGC" - "CStrike15_v2_MatchListRequestCurrentLive" - "Games\020\264G\0229\n4k_EMsgGCCStrike15_v2_MatchLi" - "stRequestRecentUserGames\020\265G\0224\n/k_EMsgGCC" - "Strike15_v2_GC2ServerReservationUpdate\020\266" - "G\0228\n3k_EMsgGCCStrike15_v2_ClientVarValue" - "NotificationInfo\020\270G\0229\n4k_EMsgGCCStrike15" - "_v2_MatchListRequestTournamentGames\020\272G\0226" - "\n1k_EMsgGCCStrike15_v2_MatchListRequestF" - "ullGameInfo\020\273G\0221\n,k_EMsgGCCStrike15_v2_G" - "iftsLeaderboardRequest\020\274G\0222\n-k_EMsgGCCSt" - "rike15_v2_GiftsLeaderboardResponse\020\275G\0228\n" - "3k_EMsgGCCStrike15_v2_ServerVarValueNoti" - "ficationInfo\020\276G\0220\n+k_EMsgGCCStrike15_v2_" - "ClientSubmitSurveyVote\020\300G\0221\n,k_EMsgGCCSt" - "rike15_v2_Server2GCClientValidate\020\301G\0229\n4" - "k_EMsgGCCStrike15_v2_MatchListRequestLiv" - "eGameForUser\020\302G\022>\n9k_EMsgGCCStrike15_v2_" - "Client2GCEconPreviewDataBlockRequest\020\304G\022" - "\?\n:k_EMsgGCCStrike15_v2_Client2GCEconPre" - "viewDataBlockResponse\020\305G\0220\n+k_EMsgGCCStr" - "ike15_v2_AccountPrivacySettings\020\306G\022+\n&k_" - "EMsgGCCStrike15_v2_SetMyActivityInfo\020\307G\022" - "\?\n:k_EMsgGCCStrike15_v2_MatchListRequest" - "TournamentPredictions\020\310G\022>\n9k_EMsgGCCStr" - "ike15_v2_MatchListUploadTournamentPredic" - "tions\020\311G\022&\n!k_EMsgGCCStrike15_v2_DraftSu" - "mmary\020\312G\0225\n0k_EMsgGCCStrike15_v2_ClientR" - "equestJoinFriendData\020\313G\0225\n0k_EMsgGCCStri" - "ke15_v2_ClientRequestJoinServerData\020\314G\0221" - "\n,k_EMsgGCCStrike15_v2_GC2ClientTourname" - "ntInfo\020\317G\022\"\n\035k_EMsgGC_GlobalGame_Subscri" - "be\020\320G\022$\n\037k_EMsgGC_GlobalGame_Unsubscribe" - "\020\321G\022\035\n\030k_EMsgGC_GlobalGame_Play\020\322G\022,\n\'k_" - "EMsgGCCStrike15_v2_AcknowledgePenalty\020\323G" - "\0226\n1k_EMsgGCCStrike15_v2_Client2GCReques" - "tPrestigeCoin\020\324G\022.\n)k_EMsgGCCStrike15_v2" - "_GC2ClientGlobalStats\020\325G\022/\n*k_EMsgGCCStr" - "ike15_v2_Client2GCStreamUnlock\020\326G\0222\n-k_E" - "MsgGCCStrike15_v2_FantasyRequestClientDa" - "ta\020\327G\0221\n,k_EMsgGCCStrike15_v2_FantasyUpd" - "ateClientData\020\330G\0227\n2k_EMsgGCCStrike15_v2" - "_GCToClientSteamdatagramTicket\020\331G\0221\n,k_E" - "MsgGCCStrike15_v2_ClientToGCRequestTicke" - "t\020\332G\0222\n-k_EMsgGCCStrike15_v2_ClientToGCR" - "equestElevate\020\333G\022$\n\037k_EMsgGCCStrike15_v2" - "_GlobalChat\020\334G\022.\n)k_EMsgGCCStrike15_v2_G" - "lobalChat_Subscribe\020\335G\0220\n+k_EMsgGCCStrik" - "e15_v2_GlobalChat_Unsubscribe\020\336G\022+\n&k_EM" - "sgGCCStrike15_v2_ClientAuthKeyCode\020\337G\022(\n" - "#k_EMsgGCCStrike15_v2_GotvSyncPacket\020\340G\022" - "/\n*k_EMsgGCCStrike15_v2_ClientPlayerDeca" - "lSign\020\341G\022/\n*k_EMsgGCCStrike15_v2_ClientL" - "ogonFatalError\020\343G\022)\n$k_EMsgGCCStrike15_v" - "2_ClientPollState\020\344G\022(\n#k_EMsgGCCStrike1" - "5_v2_Party_Register\020\345G\022*\n%k_EMsgGCCStrik" - "e15_v2_Party_Unregister\020\346G\022&\n!k_EMsgGCCS" - "trike15_v2_Party_Search\020\347G\022&\n!k_EMsgGCCS" - "trike15_v2_Party_Invite\020\350G\0220\n+k_EMsgGCCS" - "trike15_v2_Account_RequestCoPlays\020\351G\022,\n\'" - "k_EMsgGCCStrike15_v2_ClientGCRankUpdate\020" - "\352G\022-\n(k_EMsgGCCStrike15_v2_ClientRequest" - "Offers\020\353G\022.\n)k_EMsgGCCStrike15_v2_Client" - "AccountBalance\020\354G\022.\n)k_EMsgGCCStrike15_v" - "2_ClientPartyJoinRelay\020\355G\022,\n\'k_EMsgGCCSt" - "rike15_v2_ClientPartyWarning\020\356G\022*\n%k_EMs" - "gGCCStrike15_v2_SetEventFavorite\020\360G\0223\n.k" - "_EMsgGCCStrike15_v2_GetEventFavorites_Re" - "quest\020\361G\022*\n%k_EMsgGCCStrike15_v2_ClientP" - "erfReport\020\362G\0224\n/k_EMsgGCCStrike15_v2_Get" - "EventFavorites_Response\020\363G\022/\n*k_EMsgGCCS" - "trike15_v2_ClientRequestSouvenir\020\364G\0220\n+k" - "_EMsgGCCStrike15_v2_ClientReportValidati" - "on\020\365G\0223\n.k_EMsgGCCStrike15_v2_GC2ClientR" - "efuseSecureMode\020\366G\0224\n/k_EMsgGCCStrike15_" - "v2_GC2ClientRequestValidation\020\367G\0223\n.k_EM" - "sgGCCStrike15_v2_ClientRedeemMissionRewa" - "rd\020\371G\022&\n!k_EMsgGCCStrike15_ClientDeepSta" - "ts\020\372G\0222\n-k_EMsgGCCStrike15_StartAgreemen" - "tSessionInGame\020\373G\022-\n(k_EMsgGCCStrike15_v" - "2_GC2ClientInitSystem\020\374G\0226\n1k_EMsgGCCStr" - "ike15_v2_GC2ClientInitSystem_Response\020\375G" - "\022\'\n\"k_EMsgGCCStrike15_v2_PrivateQueues\020\376" - "G\0229\n4k_EMsgGCCStrike15_v2_MatchListTourn" - "amentOperatorMgmt\020\377G\022(\n#k_EMsgGCCStrike1" - "5_v2_BetaEnrollment\020\201H\0226\n1k_EMsgGCCStrik" - "e15_v2_SetPlayerLeaderboardSafeName\020\202H\0220" - "\n+k_EMsgGCCStrike15_v2_ClientRedeemFreeR" - "eward\020\203H\022-\n(k_EMsgGCCStrike15_v2_ClientN" - "etworkConfig\020\204H\022/\n*k_EMsgGCCStrike15_v2_" - "GC2ClientNotifyXPShop\020\205H\0222\n-k_EMsgGCCStr" - "ike15_v2_Client2GcAckXPShopTracks\020\206H\0229\n4" - "k_EMsgGCCStrike15_v2_MatchmakingGC2Clien" - "tSearchStats\020\207H\022.\n)k_EMsgGCCStrike15_v2_" - "PremierSeasonSummary\020\210H\0229\n4k_EMsgGCCStri" - "ke15_v2_RequestRecurringMissionSchedule\020" - "\211H\0220\n+k_EMsgGCCStrike15_v2_RecurringMiss" - "ionSchema\020\212H*\230\001\n\022ECsgoSteamUserStat\022&\n\"k" - "_ECsgoSteamUserStat_XpEarnedGames\020\001\022-\n)k" - "_ECsgoSteamUserStat_MatchWinsCompetitive" - "\020\002\022+\n\'k_ECsgoSteamUserStat_SurvivedDange" - "rZone\020\003*J\n\tQuestType\022\032\n\026k_EQuestType_Ope" - "ration\020\001\022!\n\035k_EQuestType_RecurringMissio" - "n\020\002*\241\001\n\027EClientReportingVersion\022(\n$k_ECl" - "ientReportingVersion_OldVersion\020\000\022)\n%k_E" - "ClientReportingVersion_BetaVersion\020\001\0221\n-" - "k_EClientReportingVersion_SupportsTruste" - "dMode\020\002*\276\002\n\021EInitSystemResult\022\037\n\033k_EInit" - "SystemResult_Invalid\020\000\022\037\n\033k_EInitSystemR" - "esult_Success\020\001\022\034\n\030k_EInitSystemResult_N" - "one\020\002\022 \n\034k_EInitSystemResult_NotFound\020\003\022" - " \n\034k_EInitSystemResult_Existing\020\004\022\"\n\036k_E" - "InitSystemResult_FailedOpen\020\005\022 \n\034k_EInit" - "SystemResult_Mismatch\020\006\022\"\n\036k_EInitSystem" - "Result_FailedInit\020\007\022\033\n\027k_EInitSystemResu" - "lt_Max\020\010" + "\030\004 \001(\r\"Z\n\024CSOVolatileItemOffer\022\024\n\006defidx" + "\030\001 \001(\rB\004\200\246\035\001\022\023\n\013faux_itemid\030\002 \003(\004\022\027\n\017gen" + "eration_time\030\003 \003(\r\"^\n\035CSOVolatileItemCla" + "imedRewards\022\024\n\006defidx\030\001 \001(\rB\004\200\246\035\001\022\016\n\006rew" + "ard\030\002 \003(\r\022\027\n\017generation_time\030\003 \003(\r\"6\n#CS" + "OAccountKeychainRemoveToolCharges\022\017\n\007cha" + "rges\030\001 \001(\r\"Y\n\020CSOQuestProgress\022\025\n\007questi" + "d\030\001 \001(\rB\004\200\246\035\001\022\030\n\020points_remaining\030\002 \001(\r\022" + "\024\n\014bonus_points\030\003 \001(\r\"\315\001\n\033CSOAccountSeas" + "onalOperation\022\032\n\014season_value\030\001 \001(\rB\004\200\246\035" + "\001\022\025\n\rtier_unlocked\030\002 \001(\r\022\025\n\rpremium_tier" + "s\030\003 \001(\r\022\022\n\nmission_id\030\004 \001(\r\022\032\n\022missions_" + "completed\030\005 \001(\r\022\032\n\022redeemable_balance\030\006 " + "\001(\r\022\030\n\020season_pass_time\030\007 \001(\r\"R\n\037CSOAcco" + "untRecurringSubscription\022\027\n\017time_next_cy" + "cle\030\001 \001(\r\022\026\n\016time_initiated\030\002 \001(\r\"c\n\030CSO" + "GameAccountSteamChina\022\030\n\020time_last_updat" + "e\030\001 \001(\r\022\026\n\016time_comms_ban\030\002 \001(\r\022\025\n\rtime_" + "play_ban\030\003 \001(\r\"\257\001\n\024CSOPersonaDataPublic\022" + "\024\n\014player_level\030\001 \001(\005\022-\n\014commendation\030\002 " + "\001(\0132\027.PlayerCommendationInfo\022\026\n\016elevated" + "_state\030\003 \001(\010\022\"\n\032xp_trail_timestamp_refre" + "sh\030\004 \001(\r\022\026\n\016xp_trail_level\030\005 \001(\r\"f\n\032CSOA" + "ccountRecurringMission\022\022\n\naccount_id\030\001 \001" + "(\r\022\022\n\nmission_id\030\002 \001(\r\022\016\n\006period\030\003 \001(\r\022\020" + "\n\010progress\030\004 \001(\r\"\240\001\n(CMsgGCCStrike15_v2_" + "GC2ClientNotifyXPShop\022#\n\010prematch\030\001 \001(\0132" + "\021.CSOAccountXpShop\022$\n\tpostmatch\030\002 \001(\0132\021." + "CSOAccountXpShop\022\022\n\ncurrent_xp\030\003 \001(\r\022\025\n\r" + "current_level\030\004 \001(\r\"-\n+CMsgGCCStrike15_v" + "2_Client2GcAckXPShopTracks\"\251\001\n2CMsgGCCSt" + "rike15_v2_MatchmakingGC2ClientSearchStat" + "s\022\026\n\016gs_location_id\030\001 \001(\r\022\026\n\016data_center" + "_id\030\002 \001(\r\022\025\n\rnum_locked_in\030\003 \001(\r\022\030\n\020num_" + "found_nearby\030\004 \001(\r\022\022\n\nnote_level\030\005 \001(\r\"-" + "\n\033CMsgGC_GlobalGame_Subscribe\022\016\n\006ticket\030" + "\001 \001(\004\"1\n\035CMsgGC_GlobalGame_Unsubscribe\022\020" + "\n\010timeleft\030\001 \001(\005\"P\n\026CMsgGC_GlobalGame_Pl" + "ay\022\016\n\006ticket\030\001 \001(\004\022\022\n\ngametimems\030\002 \001(\r\022\022" + "\n\nmsperpoint\030\003 \001(\r\"=\n%CMsgGCCStrike15_v2" + "_AcknowledgePenalty\022\024\n\014acknowledged\030\001 \001(" + "\005\"{\n/CMsgGCCStrike15_v2_Client2GCRequest" + "PrestigeCoin\022\020\n\010defindex\030\001 \001(\r\022\021\n\tupgrad" + "eid\030\002 \001(\004\022\r\n\005hours\030\003 \001(\r\022\024\n\014prestigetime" + "\030\004 \001(\r\"F\n(CMsgGCCStrike15_v2_Client2GCSt" + "reamUnlock\022\016\n\006ticket\030\001 \001(\004\022\n\n\002os\030\002 \001(\005\"<" + "\n+CMsgGCCStrike15_v2_ClientToGCRequestEl" + "evate\022\r\n\005stage\030\001 \001(\r\"C\n!CMsgGCCStrike15_" + "v2_ClientToGCChat\022\020\n\010match_id\030\001 \001(\004\022\014\n\004t" + "ext\030\002 \001(\t\"E\n!CMsgGCCStrike15_v2_GCToClie" + "ntChat\022\022\n\naccount_id\030\001 \001(\r\022\014\n\004text\030\002 \001(\t" + "\"E\n$CMsgGCCStrike15_v2_ClientAuthKeyCode" + "\022\017\n\007eventid\030\001 \001(\r\022\014\n\004code\030\002 \001(\t\"F\n\036CMsgG" + "CCStrike15_GotvSyncPacket\022$\n\004data\030\001 \001(\0132" + "\026.CEngineGotvSyncPacket\"\223\002\n\033PlayerDecalD" + "igitalSignature\022\021\n\tsignature\030\001 \001(\014\022\021\n\tac" + "countid\030\002 \001(\r\022\r\n\005rtime\030\003 \001(\r\022\016\n\006endpos\030\004" + " \003(\002\022\020\n\010startpos\030\005 \003(\002\022\014\n\004left\030\006 \003(\002\022\021\n\t" + "tx_defidx\030\007 \001(\r\022\020\n\010entindex\030\010 \001(\005\022\016\n\006hit" + "box\030\t \001(\r\022\024\n\014creationtime\030\n \001(\002\022\021\n\tequip" + "slot\030\013 \001(\r\022\020\n\010trace_id\030\014 \001(\r\022\016\n\006normal\030\r" + " \003(\002\022\017\n\007tint_id\030\016 \001(\r\"f\n(CMsgGCCStrike15" + "_v2_ClientPlayerDecalSign\022*\n\004data\030\001 \001(\0132" + "\034.PlayerDecalDigitalSignature\022\016\n\006itemid\030" + "\002 \001(\004\"4\n!CMsgGCCStrike15_v2_BetaEnrollme" + "nt\022\017\n\007eresult\030\001 \001(\r\"_\n(CMsgGCCStrike15_v" + "2_ClientLogonFatalError\022\021\n\terrorcode\030\001 \001" + "(\r\022\017\n\007message\030\002 \001(\t\022\017\n\007country\030\003 \001(\t\"S\n\"" + "CMsgGCCStrike15_v2_ClientPollState\022\016\n\006po" + "llid\030\001 \001(\r\022\r\n\005names\030\002 \003(\t\022\016\n\006values\030\003 \003(" + "\005\"\244\001\n!CMsgGCCStrike15_v2_Party_Register\022" + "\n\n\002id\030\001 \001(\r\022\013\n\003ver\030\002 \001(\r\022\013\n\003apr\030\003 \001(\r\022\013\n" + "\003ark\030\004 \001(\r\022\013\n\003nby\030\005 \001(\r\022\013\n\003grp\030\006 \001(\r\022\r\n\005" + "slots\030\007 \001(\r\022\020\n\010launcher\030\010 \001(\r\022\021\n\tgame_ty" + "pe\030\t \001(\r\"{\n\037CMsgGCCStrike15_v2_Party_Sea" + "rch\022\013\n\003ver\030\001 \001(\r\022\013\n\003apr\030\002 \001(\r\022\013\n\003ark\030\003 \001" + "(\r\022\014\n\004grps\030\004 \003(\r\022\020\n\010launcher\030\005 \001(\r\022\021\n\tga" + "me_type\030\006 \001(\r\"\327\001\n&CMsgGCCStrike15_v2_Par" + "ty_SearchResults\022>\n\007entries\030\001 \003(\0132-.CMsg" + "GCCStrike15_v2_Party_SearchResults.Entry" + "\032m\n\005Entry\022\n\n\002id\030\001 \001(\r\022\013\n\003grp\030\002 \001(\r\022\021\n\tga" + "me_type\030\003 \001(\r\022\013\n\003apr\030\004 \001(\r\022\013\n\003ark\030\005 \001(\r\022" + "\013\n\003loc\030\006 \001(\r\022\021\n\taccountid\030\007 \001(\r\"E\n\037CMsgG" + "CCStrike15_v2_Party_Invite\022\021\n\taccountid\030" + "\001 \001(\r\022\017\n\007lobbyid\030\002 \001(\r\"\302\001\n)CMsgGCCStrike" + "15_v2_Account_RequestCoPlays\022B\n\007players\030" + "\001 \003(\01321.CMsgGCCStrike15_v2_Account_Reque" + "stCoPlays.Player\022\022\n\nservertime\030\002 \001(\r\032=\n\006" + "Player\022\021\n\taccountid\030\001 \001(\r\022\020\n\010rtcoplay\030\002 " + "\001(\r\022\016\n\006online\030\003 \001(\010\"\244\001\n*CMsgGCCStrike15_" + "v2_ClientToGCRequestTicket\022\033\n\023authorized" + "_steam_id\030\001 \001(\006\022\034\n\024authorized_public_ip\030" + "\002 \001(\007\022\033\n\023gameserver_steam_id\030\003 \001(\006\022\036\n\026ga" + "meserver_sdr_routing\030\005 \001(\t\">\n!CMsgGCToCl" + "ientSteamDatagramTicket\022\031\n\021serialized_ti" + "cket\030\020 \001(\014\"(\n&CMsgGCCStrike15_v2_ClientR" + "equestOffers\"\\\n(CMsgGCCStrike15_v2_Clien" + "tRequestSouvenir\022\016\n\006itemid\030\001 \001(\004\022\017\n\007matc" + "hid\030\002 \001(\004\022\017\n\007eventid\030\003 \001(\005\"F\n\'CMsgGCCStr" + "ike15_v2_ClientAccountBalance\022\016\n\006amount\030" + "\001 \001(\004\022\013\n\003url\030\002 \001(\t\"M\n\'CMsgGCCStrike15_v2" + "_ClientPartyJoinRelay\022\021\n\taccountid\030\001 \001(\r" + "\022\017\n\007lobbyid\030\002 \001(\004\"\224\001\n%CMsgGCCStrike15_v2" + "_ClientPartyWarning\022=\n\007entries\030\001 \003(\0132,.C" + "MsgGCCStrike15_v2_ClientPartyWarning.Ent" + "ry\032,\n\005Entry\022\021\n\taccountid\030\001 \001(\r\022\020\n\010warnty" + "pe\030\002 \001(\r\"K\n#CMsgGCCStrike15_v2_SetEventF" + "avorite\022\017\n\007eventid\030\001 \001(\004\022\023\n\013is_favorite\030" + "\002 \001(\010\"B\n,CMsgGCCStrike15_v2_GetEventFavo" + "rites_Request\022\022\n\nall_events\030\001 \001(\010\"r\n-CMs" + "gGCCStrike15_v2_GetEventFavorites_Respon" + "se\022\022\n\nall_events\030\001 \001(\010\022\026\n\016json_favorites" + "\030\002 \001(\t\022\025\n\rjson_featured\030\003 \001(\t\"\325\001\n#CMsgGC" + "CStrike15_v2_ClientPerfReport\022;\n\007entries" + "\030\001 \003(\0132*.CMsgGCCStrike15_v2_ClientPerfRe" + "port.Entry\032q\n\005Entry\022\023\n\013perfcounter\030\001 \001(\r" + "\022\016\n\006length\030\002 \001(\r\022\021\n\treference\030\003 \001(\014\022\016\n\006a" + "ctual\030\004 \001(\014\022\020\n\010sourceid\030\005 \001(\r\022\016\n\006status\030" + "\006 \001(\r\"Q\n\014CVDiagnostic\022\n\n\002id\030\001 \001(\r\022\020\n\010ext" + "ended\030\002 \001(\r\022\r\n\005value\030\003 \001(\004\022\024\n\014string_val" + "ue\030\004 \001(\t\"\360\003\n)CMsgGCCStrike15_v2_ClientRe" + "portValidation\022\023\n\013file_report\030\001 \001(\t\022\024\n\014c" + "ommand_line\030\002 \001(\t\022\023\n\013total_files\030\003 \001(\r\022\026" + "\n\016internal_error\030\004 \001(\r\022\022\n\ntrust_time\030\005 \001" + "(\r\022\025\n\rcount_pending\030\006 \001(\r\022\027\n\017count_compl" + "eted\030\007 \001(\r\022\022\n\nprocess_id\030\010 \001(\r\022\021\n\tosvers" + "ion\030\t \001(\005\022\033\n\023clientreportversion\030\n \001(\r\022\021" + "\n\tstatus_id\030\013 \001(\r\022\023\n\013diagnostic1\030\014 \001(\r\022\023" + "\n\013diagnostic2\030\r \001(\004\022\023\n\013diagnostic3\030\016 \001(\004" + "\022\030\n\020last_launch_data\030\017 \001(\t\022\024\n\014report_cou" + "nt\030\020 \001(\r\022\023\n\013client_time\030\021 \001(\004\022\023\n\013diagnos" + "tic4\030\022 \001(\004\022\023\n\013diagnostic5\030\023 \001(\004\022\"\n\013diagn" + "ostics\030\024 \003(\0132\r.CVDiagnostic\"\250\002\n,CMsgGCCS" + "trike15_v2_GC2ClientRefuseSecureMode\022\023\n\013" + "file_report\030\001 \001(\t\022\033\n\023offer_insecure_mode" + "\030\002 \001(\010\022\031\n\021offer_secure_mode\030\003 \001(\010\022\030\n\020sho" + "w_unsigned_ui\030\004 \001(\010\022\021\n\tkick_user\030\005 \001(\010\022\027" + "\n\017show_trusted_ui\030\006 \001(\010\022 \n\030show_warning_" + "not_trusted\030\007 \001(\010\022\"\n\032show_warning_not_tr" + "usted_2\030\010 \001(\010\022\037\n\027files_prevented_trusted" + "\030\t \001(\t\"T\n-CMsgGCCStrike15_v2_GC2ClientRe" + "questValidation\022\023\n\013full_report\030\001 \001(\010\022\016\n\006" + "module\030\002 \001(\t\"\313\001\n&CMsgGCCStrike15_v2_GC2C" + "lientInitSystem\022\014\n\004load\030\001 \001(\010\022\014\n\004name\030\002 " + "\001(\t\022\022\n\noutputname\030\003 \001(\t\022\020\n\010key_data\030\004 \001(" + "\014\022\020\n\010sha_hash\030\005 \001(\014\022\016\n\006cookie\030\006 \001(\005\022\020\n\010m" + "anifest\030\007 \001(\t\022\026\n\016system_package\030\010 \001(\014\022\023\n" + "\013load_system\030\t \001(\010\"\245\002\n/CMsgGCCStrike15_v" + "2_GC2ClientInitSystem_Response\022\017\n\007succes" + "s\030\001 \001(\010\022\022\n\ndiagnostic\030\002 \001(\t\022\020\n\010sha_hash\030" + "\003 \001(\014\022\020\n\010response\030\004 \001(\005\022\023\n\013error_code1\030\005" + " \001(\005\022\023\n\013error_code2\030\006 \001(\005\022\016\n\006handle\030\007 \001(" + "\003\022E\n\014einit_result\030\010 \001(\0162\022.EInitSystemRes" + "ult:\033k_EInitSystemResult_Invalid\022\023\n\013aux_" + "system1\030\t \001(\005\022\023\n\013aux_system2\030\n \001(\005\"P\n/CM" + "sgGCCStrike15_v2_SetPlayerLeaderboardSaf" + "eName\022\035\n\025leaderboard_safe_name\030\001 \001(\t\"%\n#" + "CMsgRequestRecurringMissionSchedule\"\241\001\n\032" + "CMsgRecurringMissionSchema\022A\n\010missions\030\001" + " \003(\0132/.CMsgRecurringMissionSchema.Missio" + "nTemplateList\032@\n\023MissionTemplateList\022\016\n\006" + "period\030\001 \001(\r\022\031\n\021mission_templates\030\002 \003(\014*" + "\311*\n\nECsgoGCMsg\022\036\n\031k_EMsgGCCStrike15_v2_B" + "ase\020\214G\022*\n%k_EMsgGCCStrike15_v2_Matchmaki" + "ngStart\020\215G\022)\n$k_EMsgGCCStrike15_v2_Match" + "makingStop\020\216G\0226\n1k_EMsgGCCStrike15_v2_Ma" + "tchmakingClient2ServerPing\020\217G\0224\n/k_EMsgG" + "CCStrike15_v2_MatchmakingGC2ClientUpdate" + "\020\220G\022>\n9k_EMsgGCCStrike15_v2_MatchmakingS" + "erverReservationResponse\020\222G\0225\n0k_EMsgGCC" + "Strike15_v2_MatchmakingGC2ClientReserve\020" + "\223G\0223\n.k_EMsgGCCStrike15_v2_MatchmakingCl" + "ient2GCHello\020\225G\0223\n.k_EMsgGCCStrike15_v2_" + "MatchmakingGC2ClientHello\020\226G\0225\n0k_EMsgGC" + "CStrike15_v2_MatchmakingGC2ClientAbandon" + "\020\230G\022:\n5k_EMsgGCCStrike15_v2_MatchmakingO" + "perator2GCBlogUpdate\020\235G\022:\n5k_EMsgGCCStri" + "ke15_v2_ServerNotificationForUserPenalty" + "\020\236G\022,\n\'k_EMsgGCCStrike15_v2_ClientReport" + "Player\020\237G\022,\n\'k_EMsgGCCStrike15_v2_Client" + "ReportServer\020\240G\022-\n(k_EMsgGCCStrike15_v2_" + "ClientCommendPlayer\020\241G\022.\n)k_EMsgGCCStrik" + "e15_v2_ClientReportResponse\020\242G\0222\n-k_EMsg" + "GCCStrike15_v2_ClientCommendPlayerQuery\020" + "\243G\022:\n5k_EMsgGCCStrike15_v2_ClientCommend" + "PlayerQueryResponse\020\244G\022(\n#k_EMsgGCCStrik" + "e15_v2_WatchInfoUsers\020\246G\0225\n0k_EMsgGCCStr" + "ike15_v2_ClientRequestPlayersProfile\020\247G\022" + "(\n#k_EMsgGCCStrike15_v2_PlayersProfile\020\250" + "G\0223\n.k_EMsgGCCStrike15_v2_PlayerOverwatc" + "hCaseUpdate\020\253G\0227\n2k_EMsgGCCStrike15_v2_P" + "layerOverwatchCaseAssignment\020\254G\0223\n.k_EMs" + "gGCCStrike15_v2_PlayerOverwatchCaseStatu" + "s\020\255G\022*\n%k_EMsgGCCStrike15_v2_GC2ClientTe" + "xtMsg\020\256G\022*\n%k_EMsgGCCStrike15_v2_Client2" + "GCTextMsg\020\257G\0220\n+k_EMsgGCCStrike15_v2_Mat" + "chEndRunRewardDrops\020\260G\0229\n4k_EMsgGCCStrik" + "e15_v2_MatchEndRewardDropsNotification\020\261" + "G\0228\n3k_EMsgGCCStrike15_v2_ClientRequestW" + "atchInfoFriends2\020\262G\022#\n\036k_EMsgGCCStrike15" + "_v2_MatchList\020\263G\022:\n5k_EMsgGCCStrike15_v2" + "_MatchListRequestCurrentLiveGames\020\264G\0229\n4" + "k_EMsgGCCStrike15_v2_MatchListRequestRec" + "entUserGames\020\265G\0224\n/k_EMsgGCCStrike15_v2_" + "GC2ServerReservationUpdate\020\266G\0228\n3k_EMsgG" + "CCStrike15_v2_ClientVarValueNotification" + "Info\020\270G\0229\n4k_EMsgGCCStrike15_v2_MatchLis" + "tRequestTournamentGames\020\272G\0226\n1k_EMsgGCCS" + "trike15_v2_MatchListRequestFullGameInfo\020" + "\273G\0221\n,k_EMsgGCCStrike15_v2_GiftsLeaderbo" + "ardRequest\020\274G\0222\n-k_EMsgGCCStrike15_v2_Gi" + "ftsLeaderboardResponse\020\275G\0228\n3k_EMsgGCCSt" + "rike15_v2_ServerVarValueNotificationInfo" + "\020\276G\0220\n+k_EMsgGCCStrike15_v2_ClientSubmit" + "SurveyVote\020\300G\0221\n,k_EMsgGCCStrike15_v2_Se" + "rver2GCClientValidate\020\301G\0229\n4k_EMsgGCCStr" + "ike15_v2_MatchListRequestLiveGameForUser" + "\020\302G\022>\n9k_EMsgGCCStrike15_v2_Client2GCEco" + "nPreviewDataBlockRequest\020\304G\022\?\n:k_EMsgGCC" + "Strike15_v2_Client2GCEconPreviewDataBloc" + "kResponse\020\305G\0220\n+k_EMsgGCCStrike15_v2_Acc" + "ountPrivacySettings\020\306G\022+\n&k_EMsgGCCStrik" + "e15_v2_SetMyActivityInfo\020\307G\022\?\n:k_EMsgGCC" + "Strike15_v2_MatchListRequestTournamentPr" + "edictions\020\310G\022>\n9k_EMsgGCCStrike15_v2_Mat" + "chListUploadTournamentPredictions\020\311G\022&\n!" + "k_EMsgGCCStrike15_v2_DraftSummary\020\312G\0225\n0" + "k_EMsgGCCStrike15_v2_ClientRequestJoinFr" + "iendData\020\313G\0225\n0k_EMsgGCCStrike15_v2_Clie" + "ntRequestJoinServerData\020\314G\0221\n,k_EMsgGCCS" + "trike15_v2_GC2ClientTournamentInfo\020\317G\022\"\n" + "\035k_EMsgGC_GlobalGame_Subscribe\020\320G\022$\n\037k_E" + "MsgGC_GlobalGame_Unsubscribe\020\321G\022\035\n\030k_EMs" + "gGC_GlobalGame_Play\020\322G\022,\n\'k_EMsgGCCStrik" + "e15_v2_AcknowledgePenalty\020\323G\0226\n1k_EMsgGC" + "CStrike15_v2_Client2GCRequestPrestigeCoi" + "n\020\324G\022.\n)k_EMsgGCCStrike15_v2_GC2ClientGl" + "obalStats\020\325G\022/\n*k_EMsgGCCStrike15_v2_Cli" + "ent2GCStreamUnlock\020\326G\0222\n-k_EMsgGCCStrike" + "15_v2_FantasyRequestClientData\020\327G\0221\n,k_E" + "MsgGCCStrike15_v2_FantasyUpdateClientDat" + "a\020\330G\0227\n2k_EMsgGCCStrike15_v2_GCToClientS" + "teamdatagramTicket\020\331G\0221\n,k_EMsgGCCStrike" + "15_v2_ClientToGCRequestTicket\020\332G\0222\n-k_EM" + "sgGCCStrike15_v2_ClientToGCRequestElevat" + "e\020\333G\022$\n\037k_EMsgGCCStrike15_v2_GlobalChat\020" + "\334G\022.\n)k_EMsgGCCStrike15_v2_GlobalChat_Su" + "bscribe\020\335G\0220\n+k_EMsgGCCStrike15_v2_Globa" + "lChat_Unsubscribe\020\336G\022+\n&k_EMsgGCCStrike1" + "5_v2_ClientAuthKeyCode\020\337G\022(\n#k_EMsgGCCSt" + "rike15_v2_GotvSyncPacket\020\340G\022/\n*k_EMsgGCC" + "Strike15_v2_ClientPlayerDecalSign\020\341G\022/\n*" + "k_EMsgGCCStrike15_v2_ClientLogonFatalErr" + "or\020\343G\022)\n$k_EMsgGCCStrike15_v2_ClientPoll" + "State\020\344G\022(\n#k_EMsgGCCStrike15_v2_Party_R" + "egister\020\345G\022*\n%k_EMsgGCCStrike15_v2_Party" + "_Unregister\020\346G\022&\n!k_EMsgGCCStrike15_v2_P" + "arty_Search\020\347G\022&\n!k_EMsgGCCStrike15_v2_P" + "arty_Invite\020\350G\0220\n+k_EMsgGCCStrike15_v2_A" + "ccount_RequestCoPlays\020\351G\022,\n\'k_EMsgGCCStr" + "ike15_v2_ClientGCRankUpdate\020\352G\022-\n(k_EMsg" + "GCCStrike15_v2_ClientRequestOffers\020\353G\022.\n" + ")k_EMsgGCCStrike15_v2_ClientAccountBalan" + "ce\020\354G\022.\n)k_EMsgGCCStrike15_v2_ClientPart" + "yJoinRelay\020\355G\022,\n\'k_EMsgGCCStrike15_v2_Cl" + "ientPartyWarning\020\356G\022*\n%k_EMsgGCCStrike15" + "_v2_SetEventFavorite\020\360G\0223\n.k_EMsgGCCStri" + "ke15_v2_GetEventFavorites_Request\020\361G\022*\n%" + "k_EMsgGCCStrike15_v2_ClientPerfReport\020\362G" + "\0224\n/k_EMsgGCCStrike15_v2_GetEventFavorit" + "es_Response\020\363G\022/\n*k_EMsgGCCStrike15_v2_C" + "lientRequestSouvenir\020\364G\0220\n+k_EMsgGCCStri" + "ke15_v2_ClientReportValidation\020\365G\0223\n.k_E" + "MsgGCCStrike15_v2_GC2ClientRefuseSecureM" + "ode\020\366G\0224\n/k_EMsgGCCStrike15_v2_GC2Client" + "RequestValidation\020\367G\0223\n.k_EMsgGCCStrike1" + "5_v2_ClientRedeemMissionReward\020\371G\022&\n!k_E" + "MsgGCCStrike15_ClientDeepStats\020\372G\0222\n-k_E" + "MsgGCCStrike15_StartAgreementSessionInGa" + "me\020\373G\022-\n(k_EMsgGCCStrike15_v2_GC2ClientI" + "nitSystem\020\374G\0226\n1k_EMsgGCCStrike15_v2_GC2" + "ClientInitSystem_Response\020\375G\022\'\n\"k_EMsgGC" + "CStrike15_v2_PrivateQueues\020\376G\0229\n4k_EMsgG" + "CCStrike15_v2_MatchListTournamentOperato" + "rMgmt\020\377G\022(\n#k_EMsgGCCStrike15_v2_BetaEnr" + "ollment\020\201H\0226\n1k_EMsgGCCStrike15_v2_SetPl" + "ayerLeaderboardSafeName\020\202H\0220\n+k_EMsgGCCS" + "trike15_v2_ClientRedeemFreeReward\020\203H\022-\n(" + "k_EMsgGCCStrike15_v2_ClientNetworkConfig" + "\020\204H\022/\n*k_EMsgGCCStrike15_v2_GC2ClientNot" + "ifyXPShop\020\205H\0222\n-k_EMsgGCCStrike15_v2_Cli" + "ent2GcAckXPShopTracks\020\206H\0229\n4k_EMsgGCCStr" + "ike15_v2_MatchmakingGC2ClientSearchStats" + "\020\207H\022.\n)k_EMsgGCCStrike15_v2_PremierSeaso" + "nSummary\020\210H\0229\n4k_EMsgGCCStrike15_v2_Requ" + "estRecurringMissionSchedule\020\211H\0220\n+k_EMsg" + "GCCStrike15_v2_RecurringMissionSchema\020\212H" + "\0221\n,k_EMsgGCCStrike15_v2_VolatileItemCla" + "imReward\020\213H*\230\001\n\022ECsgoSteamUserStat\022&\n\"k_" + "ECsgoSteamUserStat_XpEarnedGames\020\001\022-\n)k_" + "ECsgoSteamUserStat_MatchWinsCompetitive\020" + "\002\022+\n\'k_ECsgoSteamUserStat_SurvivedDanger" + "Zone\020\003*J\n\tQuestType\022\032\n\026k_EQuestType_Oper" + "ation\020\001\022!\n\035k_EQuestType_RecurringMission" + "\020\002*\241\001\n\027EClientReportingVersion\022(\n$k_ECli" + "entReportingVersion_OldVersion\020\000\022)\n%k_EC" + "lientReportingVersion_BetaVersion\020\001\0221\n-k" + "_EClientReportingVersion_SupportsTrusted" + "Mode\020\002*\276\002\n\021EInitSystemResult\022\037\n\033k_EInitS" + "ystemResult_Invalid\020\000\022\037\n\033k_EInitSystemRe" + "sult_Success\020\001\022\034\n\030k_EInitSystemResult_No" + "ne\020\002\022 \n\034k_EInitSystemResult_NotFound\020\003\022 " + "\n\034k_EInitSystemResult_Existing\020\004\022\"\n\036k_EI" + "nitSystemResult_FailedOpen\020\005\022 \n\034k_EInitS" + "ystemResult_Mismatch\020\006\022\"\n\036k_EInitSystemR" + "esult_FailedInit\020\007\022\033\n\027k_EInitSystemResul" + "t_Max\020\010" ; static const ::_pbi::DescriptorTable* const descriptor_table_cstrike15_5fgcmessages_2eproto_deps[3] = { &::descriptor_table_engine_5fgcmessages_2eproto, @@ -7217,9 +7283,9 @@ static const ::_pbi::DescriptorTable* const descriptor_table_cstrike15_5fgcmessa }; static ::_pbi::once_flag descriptor_table_cstrike15_5fgcmessages_2eproto_once; const ::_pbi::DescriptorTable descriptor_table_cstrike15_5fgcmessages_2eproto = { - false, false, 34128, descriptor_table_protodef_cstrike15_5fgcmessages_2eproto, + false, false, 34367, descriptor_table_protodef_cstrike15_5fgcmessages_2eproto, "cstrike15_gcmessages.proto", - &descriptor_table_cstrike15_5fgcmessages_2eproto_once, descriptor_table_cstrike15_5fgcmessages_2eproto_deps, 3, 178, + &descriptor_table_cstrike15_5fgcmessages_2eproto_once, descriptor_table_cstrike15_5fgcmessages_2eproto_deps, 3, 180, schemas, file_default_instances, TableStruct_cstrike15_5fgcmessages_2eproto::offsets, file_level_metadata_cstrike15_5fgcmessages_2eproto, file_level_enum_descriptors_cstrike15_5fgcmessages_2eproto, file_level_service_descriptors_cstrike15_5fgcmessages_2eproto, @@ -7343,6 +7409,7 @@ bool ECsgoGCMsg_IsValid(int value) { case 9224: case 9225: case 9226: + case 9227: return true; default: return false; @@ -50774,6 +50841,536 @@ ::PROTOBUF_NAMESPACE_ID::Metadata CSOAccountXpShopBids::GetMetadata() const { // =================================================================== +class CSOVolatileItemOffer::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_defidx(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } +}; + +CSOVolatileItemOffer::CSOVolatileItemOffer(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { + SharedCtor(arena, is_message_owned); + // @@protoc_insertion_point(arena_constructor:CSOVolatileItemOffer) +} +CSOVolatileItemOffer::CSOVolatileItemOffer(const CSOVolatileItemOffer& from) + : ::PROTOBUF_NAMESPACE_ID::Message() { + CSOVolatileItemOffer* const _this = this; (void)_this; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.faux_itemid_){from._impl_.faux_itemid_} + , decltype(_impl_.generation_time_){from._impl_.generation_time_} + , decltype(_impl_.defidx_){}}; + + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + _this->_impl_.defidx_ = from._impl_.defidx_; + // @@protoc_insertion_point(copy_constructor:CSOVolatileItemOffer) +} + +inline void CSOVolatileItemOffer::SharedCtor( + ::_pb::Arena* arena, bool is_message_owned) { + (void)arena; + (void)is_message_owned; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.faux_itemid_){arena} + , decltype(_impl_.generation_time_){arena} + , decltype(_impl_.defidx_){0u} + }; +} + +CSOVolatileItemOffer::~CSOVolatileItemOffer() { + // @@protoc_insertion_point(destructor:CSOVolatileItemOffer) + if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { + (void)arena; + return; + } + SharedDtor(); +} + +inline void CSOVolatileItemOffer::SharedDtor() { + GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.faux_itemid_.~RepeatedField(); + _impl_.generation_time_.~RepeatedField(); +} + +void CSOVolatileItemOffer::SetCachedSize(int size) const { + _impl_._cached_size_.Set(size); +} + +void CSOVolatileItemOffer::Clear() { +// @@protoc_insertion_point(message_clear_start:CSOVolatileItemOffer) + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + _impl_.faux_itemid_.Clear(); + _impl_.generation_time_.Clear(); + _impl_.defidx_ = 0u; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); +} + +const char* CSOVolatileItemOffer::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; + while (!ctx->Done(&ptr)) { + uint32_t tag; + ptr = ::_pbi::ReadTag(ptr, &tag); + switch (tag >> 3) { + // optional uint32 defidx = 1 [(.key_field) = true]; + case 1: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_defidx(&has_bits); + _impl_.defidx_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // repeated uint64 faux_itemid = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + ptr -= 1; + do { + ptr += 1; + _internal_add_faux_itemid(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr)); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<16>(ptr)); + } else if (static_cast(tag) == 18) { + ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt64Parser(_internal_mutable_faux_itemid(), ptr, ctx); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // repeated uint32 generation_time = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { + ptr -= 1; + do { + ptr += 1; + _internal_add_generation_time(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr)); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<24>(ptr)); + } else if (static_cast(tag) == 26) { + ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt32Parser(_internal_mutable_generation_time(), ptr, ctx); + CHK_(ptr); + } else + goto handle_unusual; + continue; + default: + goto handle_unusual; + } // switch + handle_unusual: + if ((tag == 0) || ((tag & 7) == 4)) { + CHK_(ptr); + ctx->SetLastTag(tag); + goto message_done; + } + ptr = UnknownFieldParse( + tag, + _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), + ptr, ctx); + CHK_(ptr != nullptr); + } // while +message_done: + _impl_._has_bits_.Or(has_bits); + return ptr; +failure: + ptr = nullptr; + goto message_done; +#undef CHK_ +} + +uint8_t* CSOVolatileItemOffer::_InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:CSOVolatileItemOffer) + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + cached_has_bits = _impl_._has_bits_[0]; + // optional uint32 defidx = 1 [(.key_field) = true]; + if (cached_has_bits & 0x00000001u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_defidx(), target); + } + + // repeated uint64 faux_itemid = 2; + for (int i = 0, n = this->_internal_faux_itemid_size(); i < n; i++) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_faux_itemid(i), target); + } + + // repeated uint32 generation_time = 3; + for (int i = 0, n = this->_internal_generation_time_size(); i < n; i++) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_generation_time(i), target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:CSOVolatileItemOffer) + return target; +} + +size_t CSOVolatileItemOffer::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CSOVolatileItemOffer) + size_t total_size = 0; + + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + // repeated uint64 faux_itemid = 2; + { + size_t data_size = ::_pbi::WireFormatLite:: + UInt64Size(this->_impl_.faux_itemid_); + total_size += 1 * + ::_pbi::FromIntSize(this->_internal_faux_itemid_size()); + total_size += data_size; + } + + // repeated uint32 generation_time = 3; + { + size_t data_size = ::_pbi::WireFormatLite:: + UInt32Size(this->_impl_.generation_time_); + total_size += 1 * + ::_pbi::FromIntSize(this->_internal_generation_time_size()); + total_size += data_size; + } + + // optional uint32 defidx = 1 [(.key_field) = true]; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_defidx()); + } + + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOVolatileItemOffer::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, + CSOVolatileItemOffer::MergeImpl +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOVolatileItemOffer::GetClassData() const { return &_class_data_; } + + +void CSOVolatileItemOffer::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CSOVolatileItemOffer) + GOOGLE_DCHECK_NE(&from, _this); + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + _this->_impl_.faux_itemid_.MergeFrom(from._impl_.faux_itemid_); + _this->_impl_.generation_time_.MergeFrom(from._impl_.generation_time_); + if (from._internal_has_defidx()) { + _this->_internal_set_defidx(from._internal_defidx()); + } + _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); +} + +void CSOVolatileItemOffer::CopyFrom(const CSOVolatileItemOffer& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CSOVolatileItemOffer) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool CSOVolatileItemOffer::IsInitialized() const { + return true; +} + +void CSOVolatileItemOffer::InternalSwap(CSOVolatileItemOffer* other) { + using std::swap; + _internal_metadata_.InternalSwap(&other->_internal_metadata_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + _impl_.faux_itemid_.InternalSwap(&other->_impl_.faux_itemid_); + _impl_.generation_time_.InternalSwap(&other->_impl_.generation_time_); + swap(_impl_.defidx_, other->_impl_.defidx_); +} + +::PROTOBUF_NAMESPACE_ID::Metadata CSOVolatileItemOffer::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, + file_level_metadata_cstrike15_5fgcmessages_2eproto[122]); +} + +// =================================================================== + +class CSOVolatileItemClaimedRewards::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_defidx(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } +}; + +CSOVolatileItemClaimedRewards::CSOVolatileItemClaimedRewards(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { + SharedCtor(arena, is_message_owned); + // @@protoc_insertion_point(arena_constructor:CSOVolatileItemClaimedRewards) +} +CSOVolatileItemClaimedRewards::CSOVolatileItemClaimedRewards(const CSOVolatileItemClaimedRewards& from) + : ::PROTOBUF_NAMESPACE_ID::Message() { + CSOVolatileItemClaimedRewards* const _this = this; (void)_this; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.reward_){from._impl_.reward_} + , decltype(_impl_.generation_time_){from._impl_.generation_time_} + , decltype(_impl_.defidx_){}}; + + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + _this->_impl_.defidx_ = from._impl_.defidx_; + // @@protoc_insertion_point(copy_constructor:CSOVolatileItemClaimedRewards) +} + +inline void CSOVolatileItemClaimedRewards::SharedCtor( + ::_pb::Arena* arena, bool is_message_owned) { + (void)arena; + (void)is_message_owned; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.reward_){arena} + , decltype(_impl_.generation_time_){arena} + , decltype(_impl_.defidx_){0u} + }; +} + +CSOVolatileItemClaimedRewards::~CSOVolatileItemClaimedRewards() { + // @@protoc_insertion_point(destructor:CSOVolatileItemClaimedRewards) + if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { + (void)arena; + return; + } + SharedDtor(); +} + +inline void CSOVolatileItemClaimedRewards::SharedDtor() { + GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.reward_.~RepeatedField(); + _impl_.generation_time_.~RepeatedField(); +} + +void CSOVolatileItemClaimedRewards::SetCachedSize(int size) const { + _impl_._cached_size_.Set(size); +} + +void CSOVolatileItemClaimedRewards::Clear() { +// @@protoc_insertion_point(message_clear_start:CSOVolatileItemClaimedRewards) + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + _impl_.reward_.Clear(); + _impl_.generation_time_.Clear(); + _impl_.defidx_ = 0u; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); +} + +const char* CSOVolatileItemClaimedRewards::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; + while (!ctx->Done(&ptr)) { + uint32_t tag; + ptr = ::_pbi::ReadTag(ptr, &tag); + switch (tag >> 3) { + // optional uint32 defidx = 1 [(.key_field) = true]; + case 1: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { + _Internal::set_has_defidx(&has_bits); + _impl_.defidx_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // repeated uint32 reward = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + ptr -= 1; + do { + ptr += 1; + _internal_add_reward(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr)); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<16>(ptr)); + } else if (static_cast(tag) == 18) { + ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt32Parser(_internal_mutable_reward(), ptr, ctx); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // repeated uint32 generation_time = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { + ptr -= 1; + do { + ptr += 1; + _internal_add_generation_time(::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr)); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<24>(ptr)); + } else if (static_cast(tag) == 26) { + ptr = ::PROTOBUF_NAMESPACE_ID::internal::PackedUInt32Parser(_internal_mutable_generation_time(), ptr, ctx); + CHK_(ptr); + } else + goto handle_unusual; + continue; + default: + goto handle_unusual; + } // switch + handle_unusual: + if ((tag == 0) || ((tag & 7) == 4)) { + CHK_(ptr); + ctx->SetLastTag(tag); + goto message_done; + } + ptr = UnknownFieldParse( + tag, + _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), + ptr, ctx); + CHK_(ptr != nullptr); + } // while +message_done: + _impl_._has_bits_.Or(has_bits); + return ptr; +failure: + ptr = nullptr; + goto message_done; +#undef CHK_ +} + +uint8_t* CSOVolatileItemClaimedRewards::_InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:CSOVolatileItemClaimedRewards) + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + cached_has_bits = _impl_._has_bits_[0]; + // optional uint32 defidx = 1 [(.key_field) = true]; + if (cached_has_bits & 0x00000001u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(1, this->_internal_defidx(), target); + } + + // repeated uint32 reward = 2; + for (int i = 0, n = this->_internal_reward_size(); i < n; i++) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_reward(i), target); + } + + // repeated uint32 generation_time = 3; + for (int i = 0, n = this->_internal_generation_time_size(); i < n; i++) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_generation_time(i), target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:CSOVolatileItemClaimedRewards) + return target; +} + +size_t CSOVolatileItemClaimedRewards::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CSOVolatileItemClaimedRewards) + size_t total_size = 0; + + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + // repeated uint32 reward = 2; + { + size_t data_size = ::_pbi::WireFormatLite:: + UInt32Size(this->_impl_.reward_); + total_size += 1 * + ::_pbi::FromIntSize(this->_internal_reward_size()); + total_size += data_size; + } + + // repeated uint32 generation_time = 3; + { + size_t data_size = ::_pbi::WireFormatLite:: + UInt32Size(this->_impl_.generation_time_); + total_size += 1 * + ::_pbi::FromIntSize(this->_internal_generation_time_size()); + total_size += data_size; + } + + // optional uint32 defidx = 1 [(.key_field) = true]; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_defidx()); + } + + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CSOVolatileItemClaimedRewards::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, + CSOVolatileItemClaimedRewards::MergeImpl +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CSOVolatileItemClaimedRewards::GetClassData() const { return &_class_data_; } + + +void CSOVolatileItemClaimedRewards::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CSOVolatileItemClaimedRewards) + GOOGLE_DCHECK_NE(&from, _this); + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + _this->_impl_.reward_.MergeFrom(from._impl_.reward_); + _this->_impl_.generation_time_.MergeFrom(from._impl_.generation_time_); + if (from._internal_has_defidx()) { + _this->_internal_set_defidx(from._internal_defidx()); + } + _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); +} + +void CSOVolatileItemClaimedRewards::CopyFrom(const CSOVolatileItemClaimedRewards& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CSOVolatileItemClaimedRewards) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool CSOVolatileItemClaimedRewards::IsInitialized() const { + return true; +} + +void CSOVolatileItemClaimedRewards::InternalSwap(CSOVolatileItemClaimedRewards* other) { + using std::swap; + _internal_metadata_.InternalSwap(&other->_internal_metadata_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + _impl_.reward_.InternalSwap(&other->_impl_.reward_); + _impl_.generation_time_.InternalSwap(&other->_impl_.generation_time_); + swap(_impl_.defidx_, other->_impl_.defidx_); +} + +::PROTOBUF_NAMESPACE_ID::Metadata CSOVolatileItemClaimedRewards::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, + file_level_metadata_cstrike15_5fgcmessages_2eproto[123]); +} + +// =================================================================== + class CSOAccountKeychainRemoveToolCharges::_Internal { public: using HasBits = decltype(std::declval()._impl_._has_bits_); @@ -50960,7 +51557,7 @@ void CSOAccountKeychainRemoveToolCharges::InternalSwap(CSOAccountKeychainRemoveT ::PROTOBUF_NAMESPACE_ID::Metadata CSOAccountKeychainRemoveToolCharges::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[122]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[124]); } // =================================================================== @@ -51225,7 +51822,7 @@ void CSOQuestProgress::InternalSwap(CSOQuestProgress* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOQuestProgress::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[123]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[125]); } // =================================================================== @@ -51602,7 +52199,7 @@ void CSOAccountSeasonalOperation::InternalSwap(CSOAccountSeasonalOperation* othe ::PROTOBUF_NAMESPACE_ID::Metadata CSOAccountSeasonalOperation::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[124]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[126]); } // =================================================================== @@ -51839,7 +52436,7 @@ void CSOAccountRecurringSubscription::InternalSwap(CSOAccountRecurringSubscripti ::PROTOBUF_NAMESPACE_ID::Metadata CSOAccountRecurringSubscription::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[125]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[127]); } // =================================================================== @@ -52104,7 +52701,7 @@ void CSOGameAccountSteamChina::InternalSwap(CSOGameAccountSteamChina* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOGameAccountSteamChina::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[126]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[128]); } // =================================================================== @@ -52441,7 +53038,7 @@ void CSOPersonaDataPublic::InternalSwap(CSOPersonaDataPublic* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSOPersonaDataPublic::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[127]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[129]); } // =================================================================== @@ -52734,7 +53331,7 @@ void CSOAccountRecurringMission::InternalSwap(CSOAccountRecurringMission* other) ::PROTOBUF_NAMESPACE_ID::Metadata CSOAccountRecurringMission::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[128]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[130]); } // =================================================================== @@ -53061,7 +53658,7 @@ void CMsgGCCStrike15_v2_GC2ClientNotifyXPShop::InternalSwap(CMsgGCCStrike15_v2_G ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_GC2ClientNotifyXPShop::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[129]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[131]); } // =================================================================== @@ -53101,7 +53698,7 @@ const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCCStrike15_v2_Client2GcAc ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_Client2GcAckXPShopTracks::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[130]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[132]); } // =================================================================== @@ -53422,7 +54019,7 @@ void CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats::InternalSwap(CMsgGCCStr ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[131]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[133]); } // =================================================================== @@ -53613,7 +54210,7 @@ void CMsgGC_GlobalGame_Subscribe::InternalSwap(CMsgGC_GlobalGame_Subscribe* othe ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGC_GlobalGame_Subscribe::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[132]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[134]); } // =================================================================== @@ -53804,7 +54401,7 @@ void CMsgGC_GlobalGame_Unsubscribe::InternalSwap(CMsgGC_GlobalGame_Unsubscribe* ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGC_GlobalGame_Unsubscribe::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[133]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[135]); } // =================================================================== @@ -54069,7 +54666,7 @@ void CMsgGC_GlobalGame_Play::InternalSwap(CMsgGC_GlobalGame_Play* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGC_GlobalGame_Play::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[134]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[136]); } // =================================================================== @@ -54260,7 +54857,7 @@ void CMsgGCCStrike15_v2_AcknowledgePenalty::InternalSwap(CMsgGCCStrike15_v2_Ackn ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_AcknowledgePenalty::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[135]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[137]); } // =================================================================== @@ -54553,7 +55150,7 @@ void CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin::InternalSwap(CMsgGCCStrike ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[136]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[138]); } // =================================================================== @@ -54790,7 +55387,7 @@ void CMsgGCCStrike15_v2_Client2GCStreamUnlock::InternalSwap(CMsgGCCStrike15_v2_C ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_Client2GCStreamUnlock::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[137]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[139]); } // =================================================================== @@ -54981,7 +55578,7 @@ void CMsgGCCStrike15_v2_ClientToGCRequestElevate::InternalSwap(CMsgGCCStrike15_v ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientToGCRequestElevate::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[138]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[140]); } // =================================================================== @@ -55238,7 +55835,7 @@ void CMsgGCCStrike15_v2_ClientToGCChat::InternalSwap(CMsgGCCStrike15_v2_ClientTo ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientToGCChat::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[139]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[141]); } // =================================================================== @@ -55495,7 +56092,7 @@ void CMsgGCCStrike15_v2_GCToClientChat::InternalSwap(CMsgGCCStrike15_v2_GCToClie ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_GCToClientChat::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[140]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[142]); } // =================================================================== @@ -55752,7 +56349,7 @@ void CMsgGCCStrike15_v2_ClientAuthKeyCode::InternalSwap(CMsgGCCStrike15_v2_Clien ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientAuthKeyCode::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[141]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[143]); } // =================================================================== @@ -55962,7 +56559,7 @@ void CMsgGCCStrike15_GotvSyncPacket::InternalSwap(CMsgGCCStrike15_GotvSyncPacket ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_GotvSyncPacket::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[142]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[144]); } // =================================================================== @@ -56605,7 +57202,7 @@ void PlayerDecalDigitalSignature::InternalSwap(PlayerDecalDigitalSignature* othe ::PROTOBUF_NAMESPACE_ID::Metadata PlayerDecalDigitalSignature::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[143]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[145]); } // =================================================================== @@ -56852,7 +57449,7 @@ void CMsgGCCStrike15_v2_ClientPlayerDecalSign::InternalSwap(CMsgGCCStrike15_v2_C ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientPlayerDecalSign::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[144]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[146]); } // =================================================================== @@ -57043,7 +57640,7 @@ void CMsgGCCStrike15_v2_BetaEnrollment::InternalSwap(CMsgGCCStrike15_v2_BetaEnro ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_BetaEnrollment::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[145]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[147]); } // =================================================================== @@ -57359,7 +57956,7 @@ void CMsgGCCStrike15_v2_ClientLogonFatalError::InternalSwap(CMsgGCCStrike15_v2_C ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientLogonFatalError::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[146]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[148]); } // =================================================================== @@ -57628,7 +58225,7 @@ void CMsgGCCStrike15_v2_ClientPollState::InternalSwap(CMsgGCCStrike15_v2_ClientP ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientPollState::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[147]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[149]); } // =================================================================== @@ -58062,7 +58659,7 @@ void CMsgGCCStrike15_v2_Party_Register::InternalSwap(CMsgGCCStrike15_v2_Party_Re ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_Party_Register::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[148]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[150]); } // =================================================================== @@ -58420,7 +59017,7 @@ void CMsgGCCStrike15_v2_Party_Search::InternalSwap(CMsgGCCStrike15_v2_Party_Sear ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_Party_Search::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[149]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[151]); } // =================================================================== @@ -58797,7 +59394,7 @@ void CMsgGCCStrike15_v2_Party_SearchResults_Entry::InternalSwap(CMsgGCCStrike15_ ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_Party_SearchResults_Entry::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[150]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[152]); } // =================================================================== @@ -58982,7 +59579,7 @@ void CMsgGCCStrike15_v2_Party_SearchResults::InternalSwap(CMsgGCCStrike15_v2_Par ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_Party_SearchResults::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[151]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[153]); } // =================================================================== @@ -59219,7 +59816,7 @@ void CMsgGCCStrike15_v2_Party_Invite::InternalSwap(CMsgGCCStrike15_v2_Party_Invi ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_Party_Invite::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[152]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[154]); } // =================================================================== @@ -59484,7 +60081,7 @@ void CMsgGCCStrike15_v2_Account_RequestCoPlays_Player::InternalSwap(CMsgGCCStrik ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_Account_RequestCoPlays_Player::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[153]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[155]); } // =================================================================== @@ -59709,7 +60306,7 @@ void CMsgGCCStrike15_v2_Account_RequestCoPlays::InternalSwap(CMsgGCCStrike15_v2_ ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_Account_RequestCoPlays::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[154]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[156]); } // =================================================================== @@ -60033,7 +60630,7 @@ void CMsgGCCStrike15_v2_ClientToGCRequestTicket::InternalSwap(CMsgGCCStrike15_v2 ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientToGCRequestTicket::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[155]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[157]); } // =================================================================== @@ -60246,7 +60843,7 @@ void CMsgGCToClientSteamDatagramTicket::InternalSwap(CMsgGCToClientSteamDatagram ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCToClientSteamDatagramTicket::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[156]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[158]); } // =================================================================== @@ -60286,7 +60883,7 @@ const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgGCCStrike15_v2_ClientReque ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientRequestOffers::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[157]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[159]); } // =================================================================== @@ -60551,7 +61148,7 @@ void CMsgGCCStrike15_v2_ClientRequestSouvenir::InternalSwap(CMsgGCCStrike15_v2_C ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientRequestSouvenir::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[158]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[160]); } // =================================================================== @@ -60808,7 +61405,7 @@ void CMsgGCCStrike15_v2_ClientAccountBalance::InternalSwap(CMsgGCCStrike15_v2_Cl ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientAccountBalance::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[159]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[161]); } // =================================================================== @@ -61045,7 +61642,7 @@ void CMsgGCCStrike15_v2_ClientPartyJoinRelay::InternalSwap(CMsgGCCStrike15_v2_Cl ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientPartyJoinRelay::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[160]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[162]); } // =================================================================== @@ -61282,7 +61879,7 @@ void CMsgGCCStrike15_v2_ClientPartyWarning_Entry::InternalSwap(CMsgGCCStrike15_v ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientPartyWarning_Entry::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[161]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[163]); } // =================================================================== @@ -61467,7 +62064,7 @@ void CMsgGCCStrike15_v2_ClientPartyWarning::InternalSwap(CMsgGCCStrike15_v2_Clie ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientPartyWarning::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[162]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[164]); } // =================================================================== @@ -61704,7 +62301,7 @@ void CMsgGCCStrike15_v2_SetEventFavorite::InternalSwap(CMsgGCCStrike15_v2_SetEve ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_SetEventFavorite::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[163]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[165]); } // =================================================================== @@ -61895,7 +62492,7 @@ void CMsgGCCStrike15_v2_GetEventFavorites_Request::InternalSwap(CMsgGCCStrike15_ ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_GetEventFavorites_Request::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[164]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[166]); } // =================================================================== @@ -62211,7 +62808,7 @@ void CMsgGCCStrike15_v2_GetEventFavorites_Response::InternalSwap(CMsgGCCStrike15 ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_GetEventFavorites_Response::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[165]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[167]); } // =================================================================== @@ -62608,7 +63205,7 @@ void CMsgGCCStrike15_v2_ClientPerfReport_Entry::InternalSwap(CMsgGCCStrike15_v2_ ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientPerfReport_Entry::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[166]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[168]); } // =================================================================== @@ -62793,7 +63390,7 @@ void CMsgGCCStrike15_v2_ClientPerfReport::InternalSwap(CMsgGCCStrike15_v2_Client ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientPerfReport::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[167]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[169]); } // =================================================================== @@ -63117,7 +63714,7 @@ void CVDiagnostic::InternalSwap(CVDiagnostic* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CVDiagnostic::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[168]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[170]); } // =================================================================== @@ -63983,7 +64580,7 @@ void CMsgGCCStrike15_v2_ClientReportValidation::InternalSwap(CMsgGCCStrike15_v2_ ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_ClientReportValidation::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[169]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[171]); } // =================================================================== @@ -64479,7 +65076,7 @@ void CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode::InternalSwap(CMsgGCCStrike15_ ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[170]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[172]); } // =================================================================== @@ -64736,7 +65333,7 @@ void CMsgGCCStrike15_v2_GC2ClientRequestValidation::InternalSwap(CMsgGCCStrike15 ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_GC2ClientRequestValidation::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[171]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[173]); } // =================================================================== @@ -65327,7 +65924,7 @@ void CMsgGCCStrike15_v2_GC2ClientInitSystem::InternalSwap(CMsgGCCStrike15_v2_GC2 ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_GC2ClientInitSystem::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[172]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[174]); } // =================================================================== @@ -65859,7 +66456,7 @@ void CMsgGCCStrike15_v2_GC2ClientInitSystem_Response::InternalSwap(CMsgGCCStrike ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_GC2ClientInitSystem_Response::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[173]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[175]); } // =================================================================== @@ -66079,7 +66676,7 @@ void CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName::InternalSwap(CMsgGCCStrike ::PROTOBUF_NAMESPACE_ID::Metadata CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[174]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[176]); } // =================================================================== @@ -66119,7 +66716,7 @@ const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgRequestRecurringMissionSch ::PROTOBUF_NAMESPACE_ID::Metadata CMsgRequestRecurringMissionSchedule::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[175]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[177]); } // =================================================================== @@ -66344,7 +66941,7 @@ void CMsgRecurringMissionSchema_MissionTemplateList::InternalSwap(CMsgRecurringM ::PROTOBUF_NAMESPACE_ID::Metadata CMsgRecurringMissionSchema_MissionTemplateList::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[176]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[178]); } // =================================================================== @@ -66529,7 +67126,7 @@ void CMsgRecurringMissionSchema::InternalSwap(CMsgRecurringMissionSchema* other) ::PROTOBUF_NAMESPACE_ID::Metadata CMsgRecurringMissionSchema::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fgcmessages_2eproto_getter, &descriptor_table_cstrike15_5fgcmessages_2eproto_once, - file_level_metadata_cstrike15_5fgcmessages_2eproto[177]); + file_level_metadata_cstrike15_5fgcmessages_2eproto[179]); } // @@protoc_insertion_point(namespace_scope) @@ -67022,6 +67619,14 @@ template<> PROTOBUF_NOINLINE ::CSOAccountXpShopBids* Arena::CreateMaybeMessage< ::CSOAccountXpShopBids >(Arena* arena) { return Arena::CreateMessageInternal< ::CSOAccountXpShopBids >(arena); } +template<> PROTOBUF_NOINLINE ::CSOVolatileItemOffer* +Arena::CreateMaybeMessage< ::CSOVolatileItemOffer >(Arena* arena) { + return Arena::CreateMessageInternal< ::CSOVolatileItemOffer >(arena); +} +template<> PROTOBUF_NOINLINE ::CSOVolatileItemClaimedRewards* +Arena::CreateMaybeMessage< ::CSOVolatileItemClaimedRewards >(Arena* arena) { + return Arena::CreateMessageInternal< ::CSOVolatileItemClaimedRewards >(arena); +} template<> PROTOBUF_NOINLINE ::CSOAccountKeychainRemoveToolCharges* Arena::CreateMaybeMessage< ::CSOAccountKeychainRemoveToolCharges >(Arena* arena) { return Arena::CreateMessageInternal< ::CSOAccountKeychainRemoveToolCharges >(arena); diff --git a/protobuf/generated/cstrike15_gcmessages.pb.h b/protobuf/generated/cstrike15_gcmessages.pb.h index 1907a3fca..ac02236b7 100644 --- a/protobuf/generated/cstrike15_gcmessages.pb.h +++ b/protobuf/generated/cstrike15_gcmessages.pb.h @@ -493,6 +493,12 @@ extern CSOPersonaDataPublicDefaultTypeInternal _CSOPersonaDataPublic_default_ins class CSOQuestProgress; struct CSOQuestProgressDefaultTypeInternal; extern CSOQuestProgressDefaultTypeInternal _CSOQuestProgress_default_instance_; +class CSOVolatileItemClaimedRewards; +struct CSOVolatileItemClaimedRewardsDefaultTypeInternal; +extern CSOVolatileItemClaimedRewardsDefaultTypeInternal _CSOVolatileItemClaimedRewards_default_instance_; +class CSOVolatileItemOffer; +struct CSOVolatileItemOfferDefaultTypeInternal; +extern CSOVolatileItemOfferDefaultTypeInternal _CSOVolatileItemOffer_default_instance_; class CVDiagnostic; struct CVDiagnosticDefaultTypeInternal; extern CVDiagnosticDefaultTypeInternal _CVDiagnostic_default_instance_; @@ -732,6 +738,8 @@ template<> ::CSOEconCoupon* Arena::CreateMaybeMessage<::CSOEconCoupon>(Arena*); template<> ::CSOGameAccountSteamChina* Arena::CreateMaybeMessage<::CSOGameAccountSteamChina>(Arena*); template<> ::CSOPersonaDataPublic* Arena::CreateMaybeMessage<::CSOPersonaDataPublic>(Arena*); template<> ::CSOQuestProgress* Arena::CreateMaybeMessage<::CSOQuestProgress>(Arena*); +template<> ::CSOVolatileItemClaimedRewards* Arena::CreateMaybeMessage<::CSOVolatileItemClaimedRewards>(Arena*); +template<> ::CSOVolatileItemOffer* Arena::CreateMaybeMessage<::CSOVolatileItemOffer>(Arena*); template<> ::CVDiagnostic* Arena::CreateMaybeMessage<::CVDiagnostic>(Arena*); template<> ::DataCenterPing* Arena::CreateMaybeMessage<::DataCenterPing>(Arena*); template<> ::DeepPlayerMatchEvent* Arena::CreateMaybeMessage<::DeepPlayerMatchEvent>(Arena*); @@ -871,11 +879,12 @@ enum ECsgoGCMsg : int { k_EMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats = 9223, k_EMsgGCCStrike15_v2_PremierSeasonSummary = 9224, k_EMsgGCCStrike15_v2_RequestRecurringMissionSchedule = 9225, - k_EMsgGCCStrike15_v2_RecurringMissionSchema = 9226 + k_EMsgGCCStrike15_v2_RecurringMissionSchema = 9226, + k_EMsgGCCStrike15_v2_VolatileItemClaimReward = 9227 }; bool ECsgoGCMsg_IsValid(int value); constexpr ECsgoGCMsg ECsgoGCMsg_MIN = k_EMsgGCCStrike15_v2_Base; -constexpr ECsgoGCMsg ECsgoGCMsg_MAX = k_EMsgGCCStrike15_v2_RecurringMissionSchema; +constexpr ECsgoGCMsg ECsgoGCMsg_MAX = k_EMsgGCCStrike15_v2_VolatileItemClaimReward; constexpr int ECsgoGCMsg_ARRAYSIZE = ECsgoGCMsg_MAX + 1; const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* ECsgoGCMsg_descriptor(); @@ -30076,6 +30085,422 @@ class CSOAccountXpShopBids : }; // ------------------------------------------------------------------- +class CSOVolatileItemOffer : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOVolatileItemOffer) */ { + public: + inline CSOVolatileItemOffer() : CSOVolatileItemOffer(nullptr) {} + ~CSOVolatileItemOffer() override; + explicit PROTOBUF_CONSTEXPR CSOVolatileItemOffer(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + + CSOVolatileItemOffer(const CSOVolatileItemOffer& from); + CSOVolatileItemOffer(CSOVolatileItemOffer&& from) noexcept + : CSOVolatileItemOffer() { + *this = ::std::move(from); + } + + inline CSOVolatileItemOffer& operator=(const CSOVolatileItemOffer& from) { + CopyFrom(from); + return *this; + } + inline CSOVolatileItemOffer& operator=(CSOVolatileItemOffer&& from) noexcept { + if (this == &from) return *this; + if (GetOwningArena() == from.GetOwningArena() + #ifdef PROTOBUF_FORCE_COPY_IN_MOVE + && GetOwningArena() != nullptr + #endif // !PROTOBUF_FORCE_COPY_IN_MOVE + ) { + InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + + inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { + return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); + } + inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { + return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); + } + + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { + return GetDescriptor(); + } + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { + return default_instance().GetMetadata().descriptor; + } + static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { + return default_instance().GetMetadata().reflection; + } + static const CSOVolatileItemOffer& default_instance() { + return *internal_default_instance(); + } + static inline const CSOVolatileItemOffer* internal_default_instance() { + return reinterpret_cast( + &_CSOVolatileItemOffer_default_instance_); + } + static constexpr int kIndexInFileMessages = + 122; + + friend void swap(CSOVolatileItemOffer& a, CSOVolatileItemOffer& b) { + a.Swap(&b); + } + inline void Swap(CSOVolatileItemOffer* other) { + if (other == this) return; + #ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() != nullptr && + GetOwningArena() == other->GetOwningArena()) { + #else // PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() == other->GetOwningArena()) { + #endif // !PROTOBUF_FORCE_COPY_IN_SWAP + InternalSwap(other); + } else { + ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); + } + } + void UnsafeArenaSwap(CSOVolatileItemOffer* other) { + if (other == this) return; + GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + CSOVolatileItemOffer* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); + } + using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; + void CopyFrom(const CSOVolatileItemOffer& from); + using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; + void MergeFrom( const CSOVolatileItemOffer& from) { + CSOVolatileItemOffer::MergeImpl(*this, from); + } + private: + static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); + public: + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; + uint8_t* _InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const final { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(CSOVolatileItemOffer* other); + + private: + friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; + static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { + return "CSOVolatileItemOffer"; + } + protected: + explicit CSOVolatileItemOffer(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned = false); + public: + + static const ClassData _class_data_; + const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; + + ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + enum : int { + kFauxItemidFieldNumber = 2, + kGenerationTimeFieldNumber = 3, + kDefidxFieldNumber = 1, + }; + // repeated uint64 faux_itemid = 2; + int faux_itemid_size() const; + private: + int _internal_faux_itemid_size() const; + public: + void clear_faux_itemid(); + private: + uint64_t _internal_faux_itemid(int index) const; + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& + _internal_faux_itemid() const; + void _internal_add_faux_itemid(uint64_t value); + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* + _internal_mutable_faux_itemid(); + public: + uint64_t faux_itemid(int index) const; + void set_faux_itemid(int index, uint64_t value); + void add_faux_itemid(uint64_t value); + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& + faux_itemid() const; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* + mutable_faux_itemid(); + + // repeated uint32 generation_time = 3; + int generation_time_size() const; + private: + int _internal_generation_time_size() const; + public: + void clear_generation_time(); + private: + uint32_t _internal_generation_time(int index) const; + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& + _internal_generation_time() const; + void _internal_add_generation_time(uint32_t value); + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* + _internal_mutable_generation_time(); + public: + uint32_t generation_time(int index) const; + void set_generation_time(int index, uint32_t value); + void add_generation_time(uint32_t value); + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& + generation_time() const; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* + mutable_generation_time(); + + // optional uint32 defidx = 1 [(.key_field) = true]; + bool has_defidx() const; + private: + bool _internal_has_defidx() const; + public: + void clear_defidx(); + uint32_t defidx() const; + void set_defidx(uint32_t value); + private: + uint32_t _internal_defidx() const; + void _internal_set_defidx(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CSOVolatileItemOffer) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; + struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t > faux_itemid_; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t > generation_time_; + uint32_t defidx_; + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_cstrike15_5fgcmessages_2eproto; +}; +// ------------------------------------------------------------------- + +class CSOVolatileItemClaimedRewards : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOVolatileItemClaimedRewards) */ { + public: + inline CSOVolatileItemClaimedRewards() : CSOVolatileItemClaimedRewards(nullptr) {} + ~CSOVolatileItemClaimedRewards() override; + explicit PROTOBUF_CONSTEXPR CSOVolatileItemClaimedRewards(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + + CSOVolatileItemClaimedRewards(const CSOVolatileItemClaimedRewards& from); + CSOVolatileItemClaimedRewards(CSOVolatileItemClaimedRewards&& from) noexcept + : CSOVolatileItemClaimedRewards() { + *this = ::std::move(from); + } + + inline CSOVolatileItemClaimedRewards& operator=(const CSOVolatileItemClaimedRewards& from) { + CopyFrom(from); + return *this; + } + inline CSOVolatileItemClaimedRewards& operator=(CSOVolatileItemClaimedRewards&& from) noexcept { + if (this == &from) return *this; + if (GetOwningArena() == from.GetOwningArena() + #ifdef PROTOBUF_FORCE_COPY_IN_MOVE + && GetOwningArena() != nullptr + #endif // !PROTOBUF_FORCE_COPY_IN_MOVE + ) { + InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + + inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { + return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); + } + inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { + return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); + } + + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { + return GetDescriptor(); + } + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { + return default_instance().GetMetadata().descriptor; + } + static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { + return default_instance().GetMetadata().reflection; + } + static const CSOVolatileItemClaimedRewards& default_instance() { + return *internal_default_instance(); + } + static inline const CSOVolatileItemClaimedRewards* internal_default_instance() { + return reinterpret_cast( + &_CSOVolatileItemClaimedRewards_default_instance_); + } + static constexpr int kIndexInFileMessages = + 123; + + friend void swap(CSOVolatileItemClaimedRewards& a, CSOVolatileItemClaimedRewards& b) { + a.Swap(&b); + } + inline void Swap(CSOVolatileItemClaimedRewards* other) { + if (other == this) return; + #ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() != nullptr && + GetOwningArena() == other->GetOwningArena()) { + #else // PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() == other->GetOwningArena()) { + #endif // !PROTOBUF_FORCE_COPY_IN_SWAP + InternalSwap(other); + } else { + ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); + } + } + void UnsafeArenaSwap(CSOVolatileItemClaimedRewards* other) { + if (other == this) return; + GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + CSOVolatileItemClaimedRewards* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); + } + using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; + void CopyFrom(const CSOVolatileItemClaimedRewards& from); + using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; + void MergeFrom( const CSOVolatileItemClaimedRewards& from) { + CSOVolatileItemClaimedRewards::MergeImpl(*this, from); + } + private: + static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); + public: + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; + uint8_t* _InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const final { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(CSOVolatileItemClaimedRewards* other); + + private: + friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; + static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { + return "CSOVolatileItemClaimedRewards"; + } + protected: + explicit CSOVolatileItemClaimedRewards(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned = false); + public: + + static const ClassData _class_data_; + const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; + + ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + enum : int { + kRewardFieldNumber = 2, + kGenerationTimeFieldNumber = 3, + kDefidxFieldNumber = 1, + }; + // repeated uint32 reward = 2; + int reward_size() const; + private: + int _internal_reward_size() const; + public: + void clear_reward(); + private: + uint32_t _internal_reward(int index) const; + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& + _internal_reward() const; + void _internal_add_reward(uint32_t value); + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* + _internal_mutable_reward(); + public: + uint32_t reward(int index) const; + void set_reward(int index, uint32_t value); + void add_reward(uint32_t value); + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& + reward() const; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* + mutable_reward(); + + // repeated uint32 generation_time = 3; + int generation_time_size() const; + private: + int _internal_generation_time_size() const; + public: + void clear_generation_time(); + private: + uint32_t _internal_generation_time(int index) const; + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& + _internal_generation_time() const; + void _internal_add_generation_time(uint32_t value); + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* + _internal_mutable_generation_time(); + public: + uint32_t generation_time(int index) const; + void set_generation_time(int index, uint32_t value); + void add_generation_time(uint32_t value); + const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& + generation_time() const; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* + mutable_generation_time(); + + // optional uint32 defidx = 1 [(.key_field) = true]; + bool has_defidx() const; + private: + bool _internal_has_defidx() const; + public: + void clear_defidx(); + uint32_t defidx() const; + void set_defidx(uint32_t value); + private: + uint32_t _internal_defidx() const; + void _internal_set_defidx(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CSOVolatileItemClaimedRewards) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; + struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t > reward_; + ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t > generation_time_; + uint32_t defidx_; + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_cstrike15_5fgcmessages_2eproto; +}; +// ------------------------------------------------------------------- + class CSOAccountKeychainRemoveToolCharges : public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSOAccountKeychainRemoveToolCharges) */ { public: @@ -30131,7 +30556,7 @@ class CSOAccountKeychainRemoveToolCharges : &_CSOAccountKeychainRemoveToolCharges_default_instance_); } static constexpr int kIndexInFileMessages = - 122; + 124; friend void swap(CSOAccountKeychainRemoveToolCharges& a, CSOAccountKeychainRemoveToolCharges& b) { a.Swap(&b); @@ -30291,7 +30716,7 @@ class CSOQuestProgress : &_CSOQuestProgress_default_instance_); } static constexpr int kIndexInFileMessages = - 123; + 125; friend void swap(CSOQuestProgress& a, CSOQuestProgress& b) { a.Swap(&b); @@ -30481,7 +30906,7 @@ class CSOAccountSeasonalOperation : &_CSOAccountSeasonalOperation_default_instance_); } static constexpr int kIndexInFileMessages = - 124; + 126; friend void swap(CSOAccountSeasonalOperation& a, CSOAccountSeasonalOperation& b) { a.Swap(&b); @@ -30731,7 +31156,7 @@ class CSOAccountRecurringSubscription : &_CSOAccountRecurringSubscription_default_instance_); } static constexpr int kIndexInFileMessages = - 125; + 127; friend void swap(CSOAccountRecurringSubscription& a, CSOAccountRecurringSubscription& b) { a.Swap(&b); @@ -30906,7 +31331,7 @@ class CSOGameAccountSteamChina : &_CSOGameAccountSteamChina_default_instance_); } static constexpr int kIndexInFileMessages = - 126; + 128; friend void swap(CSOGameAccountSteamChina& a, CSOGameAccountSteamChina& b) { a.Swap(&b); @@ -31096,7 +31521,7 @@ class CSOPersonaDataPublic : &_CSOPersonaDataPublic_default_instance_); } static constexpr int kIndexInFileMessages = - 127; + 129; friend void swap(CSOPersonaDataPublic& a, CSOPersonaDataPublic& b) { a.Swap(&b); @@ -31321,7 +31746,7 @@ class CSOAccountRecurringMission : &_CSOAccountRecurringMission_default_instance_); } static constexpr int kIndexInFileMessages = - 128; + 130; friend void swap(CSOAccountRecurringMission& a, CSOAccountRecurringMission& b) { a.Swap(&b); @@ -31526,7 +31951,7 @@ class CMsgGCCStrike15_v2_GC2ClientNotifyXPShop : &_CMsgGCCStrike15_v2_GC2ClientNotifyXPShop_default_instance_); } static constexpr int kIndexInFileMessages = - 129; + 131; friend void swap(CMsgGCCStrike15_v2_GC2ClientNotifyXPShop& a, CMsgGCCStrike15_v2_GC2ClientNotifyXPShop& b) { a.Swap(&b); @@ -31740,7 +32165,7 @@ class CMsgGCCStrike15_v2_Client2GcAckXPShopTracks : &_CMsgGCCStrike15_v2_Client2GcAckXPShopTracks_default_instance_); } static constexpr int kIndexInFileMessages = - 130; + 132; friend void swap(CMsgGCCStrike15_v2_Client2GcAckXPShopTracks& a, CMsgGCCStrike15_v2_Client2GcAckXPShopTracks& b) { a.Swap(&b); @@ -31866,7 +32291,7 @@ class CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats : &_CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats_default_instance_); } static constexpr int kIndexInFileMessages = - 131; + 133; friend void swap(CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats& a, CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats& b) { a.Swap(&b); @@ -32086,7 +32511,7 @@ class CMsgGC_GlobalGame_Subscribe : &_CMsgGC_GlobalGame_Subscribe_default_instance_); } static constexpr int kIndexInFileMessages = - 132; + 134; friend void swap(CMsgGC_GlobalGame_Subscribe& a, CMsgGC_GlobalGame_Subscribe& b) { a.Swap(&b); @@ -32246,7 +32671,7 @@ class CMsgGC_GlobalGame_Unsubscribe : &_CMsgGC_GlobalGame_Unsubscribe_default_instance_); } static constexpr int kIndexInFileMessages = - 133; + 135; friend void swap(CMsgGC_GlobalGame_Unsubscribe& a, CMsgGC_GlobalGame_Unsubscribe& b) { a.Swap(&b); @@ -32406,7 +32831,7 @@ class CMsgGC_GlobalGame_Play : &_CMsgGC_GlobalGame_Play_default_instance_); } static constexpr int kIndexInFileMessages = - 134; + 136; friend void swap(CMsgGC_GlobalGame_Play& a, CMsgGC_GlobalGame_Play& b) { a.Swap(&b); @@ -32596,7 +33021,7 @@ class CMsgGCCStrike15_v2_AcknowledgePenalty : &_CMsgGCCStrike15_v2_AcknowledgePenalty_default_instance_); } static constexpr int kIndexInFileMessages = - 135; + 137; friend void swap(CMsgGCCStrike15_v2_AcknowledgePenalty& a, CMsgGCCStrike15_v2_AcknowledgePenalty& b) { a.Swap(&b); @@ -32756,7 +33181,7 @@ class CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin : &_CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin_default_instance_); } static constexpr int kIndexInFileMessages = - 136; + 138; friend void swap(CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin& a, CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin& b) { a.Swap(&b); @@ -32961,7 +33386,7 @@ class CMsgGCCStrike15_v2_Client2GCStreamUnlock : &_CMsgGCCStrike15_v2_Client2GCStreamUnlock_default_instance_); } static constexpr int kIndexInFileMessages = - 137; + 139; friend void swap(CMsgGCCStrike15_v2_Client2GCStreamUnlock& a, CMsgGCCStrike15_v2_Client2GCStreamUnlock& b) { a.Swap(&b); @@ -33136,7 +33561,7 @@ class CMsgGCCStrike15_v2_ClientToGCRequestElevate : &_CMsgGCCStrike15_v2_ClientToGCRequestElevate_default_instance_); } static constexpr int kIndexInFileMessages = - 138; + 140; friend void swap(CMsgGCCStrike15_v2_ClientToGCRequestElevate& a, CMsgGCCStrike15_v2_ClientToGCRequestElevate& b) { a.Swap(&b); @@ -33296,7 +33721,7 @@ class CMsgGCCStrike15_v2_ClientToGCChat : &_CMsgGCCStrike15_v2_ClientToGCChat_default_instance_); } static constexpr int kIndexInFileMessages = - 139; + 141; friend void swap(CMsgGCCStrike15_v2_ClientToGCChat& a, CMsgGCCStrike15_v2_ClientToGCChat& b) { a.Swap(&b); @@ -33476,7 +33901,7 @@ class CMsgGCCStrike15_v2_GCToClientChat : &_CMsgGCCStrike15_v2_GCToClientChat_default_instance_); } static constexpr int kIndexInFileMessages = - 140; + 142; friend void swap(CMsgGCCStrike15_v2_GCToClientChat& a, CMsgGCCStrike15_v2_GCToClientChat& b) { a.Swap(&b); @@ -33656,7 +34081,7 @@ class CMsgGCCStrike15_v2_ClientAuthKeyCode : &_CMsgGCCStrike15_v2_ClientAuthKeyCode_default_instance_); } static constexpr int kIndexInFileMessages = - 141; + 143; friend void swap(CMsgGCCStrike15_v2_ClientAuthKeyCode& a, CMsgGCCStrike15_v2_ClientAuthKeyCode& b) { a.Swap(&b); @@ -33836,7 +34261,7 @@ class CMsgGCCStrike15_GotvSyncPacket : &_CMsgGCCStrike15_GotvSyncPacket_default_instance_); } static constexpr int kIndexInFileMessages = - 142; + 144; friend void swap(CMsgGCCStrike15_GotvSyncPacket& a, CMsgGCCStrike15_GotvSyncPacket& b) { a.Swap(&b); @@ -34001,7 +34426,7 @@ class PlayerDecalDigitalSignature : &_PlayerDecalDigitalSignature_default_instance_); } static constexpr int kIndexInFileMessages = - 143; + 145; friend void swap(PlayerDecalDigitalSignature& a, PlayerDecalDigitalSignature& b) { a.Swap(&b); @@ -34397,7 +34822,7 @@ class CMsgGCCStrike15_v2_ClientPlayerDecalSign : &_CMsgGCCStrike15_v2_ClientPlayerDecalSign_default_instance_); } static constexpr int kIndexInFileMessages = - 144; + 146; friend void swap(CMsgGCCStrike15_v2_ClientPlayerDecalSign& a, CMsgGCCStrike15_v2_ClientPlayerDecalSign& b) { a.Swap(&b); @@ -34577,7 +35002,7 @@ class CMsgGCCStrike15_v2_BetaEnrollment : &_CMsgGCCStrike15_v2_BetaEnrollment_default_instance_); } static constexpr int kIndexInFileMessages = - 145; + 147; friend void swap(CMsgGCCStrike15_v2_BetaEnrollment& a, CMsgGCCStrike15_v2_BetaEnrollment& b) { a.Swap(&b); @@ -34737,7 +35162,7 @@ class CMsgGCCStrike15_v2_ClientLogonFatalError : &_CMsgGCCStrike15_v2_ClientLogonFatalError_default_instance_); } static constexpr int kIndexInFileMessages = - 146; + 148; friend void swap(CMsgGCCStrike15_v2_ClientLogonFatalError& a, CMsgGCCStrike15_v2_ClientLogonFatalError& b) { a.Swap(&b); @@ -34937,7 +35362,7 @@ class CMsgGCCStrike15_v2_ClientPollState : &_CMsgGCCStrike15_v2_ClientPollState_default_instance_); } static constexpr int kIndexInFileMessages = - 147; + 149; friend void swap(CMsgGCCStrike15_v2_ClientPollState& a, CMsgGCCStrike15_v2_ClientPollState& b) { a.Swap(&b); @@ -35147,7 +35572,7 @@ class CMsgGCCStrike15_v2_Party_Register : &_CMsgGCCStrike15_v2_Party_Register_default_instance_); } static constexpr int kIndexInFileMessages = - 148; + 150; friend void swap(CMsgGCCStrike15_v2_Party_Register& a, CMsgGCCStrike15_v2_Party_Register& b) { a.Swap(&b); @@ -35427,7 +35852,7 @@ class CMsgGCCStrike15_v2_Party_Search : &_CMsgGCCStrike15_v2_Party_Search_default_instance_); } static constexpr int kIndexInFileMessages = - 149; + 151; friend void swap(CMsgGCCStrike15_v2_Party_Search& a, CMsgGCCStrike15_v2_Party_Search& b) { a.Swap(&b); @@ -35671,7 +36096,7 @@ class CMsgGCCStrike15_v2_Party_SearchResults_Entry : &_CMsgGCCStrike15_v2_Party_SearchResults_Entry_default_instance_); } static constexpr int kIndexInFileMessages = - 150; + 152; friend void swap(CMsgGCCStrike15_v2_Party_SearchResults_Entry& a, CMsgGCCStrike15_v2_Party_SearchResults_Entry& b) { a.Swap(&b); @@ -35921,7 +36346,7 @@ class CMsgGCCStrike15_v2_Party_SearchResults : &_CMsgGCCStrike15_v2_Party_SearchResults_default_instance_); } static constexpr int kIndexInFileMessages = - 151; + 153; friend void swap(CMsgGCCStrike15_v2_Party_SearchResults& a, CMsgGCCStrike15_v2_Party_SearchResults& b) { a.Swap(&b); @@ -36087,7 +36512,7 @@ class CMsgGCCStrike15_v2_Party_Invite : &_CMsgGCCStrike15_v2_Party_Invite_default_instance_); } static constexpr int kIndexInFileMessages = - 152; + 154; friend void swap(CMsgGCCStrike15_v2_Party_Invite& a, CMsgGCCStrike15_v2_Party_Invite& b) { a.Swap(&b); @@ -36262,7 +36687,7 @@ class CMsgGCCStrike15_v2_Account_RequestCoPlays_Player : &_CMsgGCCStrike15_v2_Account_RequestCoPlays_Player_default_instance_); } static constexpr int kIndexInFileMessages = - 153; + 155; friend void swap(CMsgGCCStrike15_v2_Account_RequestCoPlays_Player& a, CMsgGCCStrike15_v2_Account_RequestCoPlays_Player& b) { a.Swap(&b); @@ -36452,7 +36877,7 @@ class CMsgGCCStrike15_v2_Account_RequestCoPlays : &_CMsgGCCStrike15_v2_Account_RequestCoPlays_default_instance_); } static constexpr int kIndexInFileMessages = - 154; + 156; friend void swap(CMsgGCCStrike15_v2_Account_RequestCoPlays& a, CMsgGCCStrike15_v2_Account_RequestCoPlays& b) { a.Swap(&b); @@ -36634,7 +37059,7 @@ class CMsgGCCStrike15_v2_ClientToGCRequestTicket : &_CMsgGCCStrike15_v2_ClientToGCRequestTicket_default_instance_); } static constexpr int kIndexInFileMessages = - 155; + 157; friend void swap(CMsgGCCStrike15_v2_ClientToGCRequestTicket& a, CMsgGCCStrike15_v2_ClientToGCRequestTicket& b) { a.Swap(&b); @@ -36844,7 +37269,7 @@ class CMsgGCToClientSteamDatagramTicket : &_CMsgGCToClientSteamDatagramTicket_default_instance_); } static constexpr int kIndexInFileMessages = - 156; + 158; friend void swap(CMsgGCToClientSteamDatagramTicket& a, CMsgGCToClientSteamDatagramTicket& b) { a.Swap(&b); @@ -37008,7 +37433,7 @@ class CMsgGCCStrike15_v2_ClientRequestOffers : &_CMsgGCCStrike15_v2_ClientRequestOffers_default_instance_); } static constexpr int kIndexInFileMessages = - 157; + 159; friend void swap(CMsgGCCStrike15_v2_ClientRequestOffers& a, CMsgGCCStrike15_v2_ClientRequestOffers& b) { a.Swap(&b); @@ -37134,7 +37559,7 @@ class CMsgGCCStrike15_v2_ClientRequestSouvenir : &_CMsgGCCStrike15_v2_ClientRequestSouvenir_default_instance_); } static constexpr int kIndexInFileMessages = - 158; + 160; friend void swap(CMsgGCCStrike15_v2_ClientRequestSouvenir& a, CMsgGCCStrike15_v2_ClientRequestSouvenir& b) { a.Swap(&b); @@ -37324,7 +37749,7 @@ class CMsgGCCStrike15_v2_ClientAccountBalance : &_CMsgGCCStrike15_v2_ClientAccountBalance_default_instance_); } static constexpr int kIndexInFileMessages = - 159; + 161; friend void swap(CMsgGCCStrike15_v2_ClientAccountBalance& a, CMsgGCCStrike15_v2_ClientAccountBalance& b) { a.Swap(&b); @@ -37504,7 +37929,7 @@ class CMsgGCCStrike15_v2_ClientPartyJoinRelay : &_CMsgGCCStrike15_v2_ClientPartyJoinRelay_default_instance_); } static constexpr int kIndexInFileMessages = - 160; + 162; friend void swap(CMsgGCCStrike15_v2_ClientPartyJoinRelay& a, CMsgGCCStrike15_v2_ClientPartyJoinRelay& b) { a.Swap(&b); @@ -37679,7 +38104,7 @@ class CMsgGCCStrike15_v2_ClientPartyWarning_Entry : &_CMsgGCCStrike15_v2_ClientPartyWarning_Entry_default_instance_); } static constexpr int kIndexInFileMessages = - 161; + 163; friend void swap(CMsgGCCStrike15_v2_ClientPartyWarning_Entry& a, CMsgGCCStrike15_v2_ClientPartyWarning_Entry& b) { a.Swap(&b); @@ -37854,7 +38279,7 @@ class CMsgGCCStrike15_v2_ClientPartyWarning : &_CMsgGCCStrike15_v2_ClientPartyWarning_default_instance_); } static constexpr int kIndexInFileMessages = - 162; + 164; friend void swap(CMsgGCCStrike15_v2_ClientPartyWarning& a, CMsgGCCStrike15_v2_ClientPartyWarning& b) { a.Swap(&b); @@ -38020,7 +38445,7 @@ class CMsgGCCStrike15_v2_SetEventFavorite : &_CMsgGCCStrike15_v2_SetEventFavorite_default_instance_); } static constexpr int kIndexInFileMessages = - 163; + 165; friend void swap(CMsgGCCStrike15_v2_SetEventFavorite& a, CMsgGCCStrike15_v2_SetEventFavorite& b) { a.Swap(&b); @@ -38195,7 +38620,7 @@ class CMsgGCCStrike15_v2_GetEventFavorites_Request : &_CMsgGCCStrike15_v2_GetEventFavorites_Request_default_instance_); } static constexpr int kIndexInFileMessages = - 164; + 166; friend void swap(CMsgGCCStrike15_v2_GetEventFavorites_Request& a, CMsgGCCStrike15_v2_GetEventFavorites_Request& b) { a.Swap(&b); @@ -38355,7 +38780,7 @@ class CMsgGCCStrike15_v2_GetEventFavorites_Response : &_CMsgGCCStrike15_v2_GetEventFavorites_Response_default_instance_); } static constexpr int kIndexInFileMessages = - 165; + 167; friend void swap(CMsgGCCStrike15_v2_GetEventFavorites_Response& a, CMsgGCCStrike15_v2_GetEventFavorites_Response& b) { a.Swap(&b); @@ -38555,7 +38980,7 @@ class CMsgGCCStrike15_v2_ClientPerfReport_Entry : &_CMsgGCCStrike15_v2_ClientPerfReport_Entry_default_instance_); } static constexpr int kIndexInFileMessages = - 166; + 168; friend void swap(CMsgGCCStrike15_v2_ClientPerfReport_Entry& a, CMsgGCCStrike15_v2_ClientPerfReport_Entry& b) { a.Swap(&b); @@ -38800,7 +39225,7 @@ class CMsgGCCStrike15_v2_ClientPerfReport : &_CMsgGCCStrike15_v2_ClientPerfReport_default_instance_); } static constexpr int kIndexInFileMessages = - 167; + 169; friend void swap(CMsgGCCStrike15_v2_ClientPerfReport& a, CMsgGCCStrike15_v2_ClientPerfReport& b) { a.Swap(&b); @@ -38966,7 +39391,7 @@ class CVDiagnostic : &_CVDiagnostic_default_instance_); } static constexpr int kIndexInFileMessages = - 168; + 170; friend void swap(CVDiagnostic& a, CVDiagnostic& b) { a.Swap(&b); @@ -39176,7 +39601,7 @@ class CMsgGCCStrike15_v2_ClientReportValidation : &_CMsgGCCStrike15_v2_ClientReportValidation_default_instance_); } static constexpr int kIndexInFileMessages = - 169; + 171; friend void swap(CMsgGCCStrike15_v2_ClientReportValidation& a, CMsgGCCStrike15_v2_ClientReportValidation& b) { a.Swap(&b); @@ -39641,7 +40066,7 @@ class CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode : &_CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode_default_instance_); } static constexpr int kIndexInFileMessages = - 170; + 172; friend void swap(CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode& a, CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode& b) { a.Swap(&b); @@ -39931,7 +40356,7 @@ class CMsgGCCStrike15_v2_GC2ClientRequestValidation : &_CMsgGCCStrike15_v2_GC2ClientRequestValidation_default_instance_); } static constexpr int kIndexInFileMessages = - 171; + 173; friend void swap(CMsgGCCStrike15_v2_GC2ClientRequestValidation& a, CMsgGCCStrike15_v2_GC2ClientRequestValidation& b) { a.Swap(&b); @@ -40111,7 +40536,7 @@ class CMsgGCCStrike15_v2_GC2ClientInitSystem : &_CMsgGCCStrike15_v2_GC2ClientInitSystem_default_instance_); } static constexpr int kIndexInFileMessages = - 172; + 174; friend void swap(CMsgGCCStrike15_v2_GC2ClientInitSystem& a, CMsgGCCStrike15_v2_GC2ClientInitSystem& b) { a.Swap(&b); @@ -40421,7 +40846,7 @@ class CMsgGCCStrike15_v2_GC2ClientInitSystem_Response : &_CMsgGCCStrike15_v2_GC2ClientInitSystem_Response_default_instance_); } static constexpr int kIndexInFileMessages = - 173; + 175; friend void swap(CMsgGCCStrike15_v2_GC2ClientInitSystem_Response& a, CMsgGCCStrike15_v2_GC2ClientInitSystem_Response& b) { a.Swap(&b); @@ -40726,7 +41151,7 @@ class CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName : &_CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName_default_instance_); } static constexpr int kIndexInFileMessages = - 174; + 176; friend void swap(CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName& a, CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName& b) { a.Swap(&b); @@ -40890,7 +41315,7 @@ class CMsgRequestRecurringMissionSchedule : &_CMsgRequestRecurringMissionSchedule_default_instance_); } static constexpr int kIndexInFileMessages = - 175; + 177; friend void swap(CMsgRequestRecurringMissionSchedule& a, CMsgRequestRecurringMissionSchedule& b) { a.Swap(&b); @@ -41016,7 +41441,7 @@ class CMsgRecurringMissionSchema_MissionTemplateList : &_CMsgRecurringMissionSchema_MissionTemplateList_default_instance_); } static constexpr int kIndexInFileMessages = - 176; + 178; friend void swap(CMsgRecurringMissionSchema_MissionTemplateList& a, CMsgRecurringMissionSchema_MissionTemplateList& b) { a.Swap(&b); @@ -41202,7 +41627,7 @@ class CMsgRecurringMissionSchema : &_CMsgRecurringMissionSchema_default_instance_); } static constexpr int kIndexInFileMessages = - 177; + 179; friend void swap(CMsgRecurringMissionSchema& a, CMsgRecurringMissionSchema& b) { a.Swap(&b); @@ -67034,6 +67459,258 @@ inline void CSOAccountXpShopBids::set_generation_time(uint32_t value) { // ------------------------------------------------------------------- +// CSOVolatileItemOffer + +// optional uint32 defidx = 1 [(.key_field) = true]; +inline bool CSOVolatileItemOffer::_internal_has_defidx() const { + bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; + return value; +} +inline bool CSOVolatileItemOffer::has_defidx() const { + return _internal_has_defidx(); +} +inline void CSOVolatileItemOffer::clear_defidx() { + _impl_.defidx_ = 0u; + _impl_._has_bits_[0] &= ~0x00000001u; +} +inline uint32_t CSOVolatileItemOffer::_internal_defidx() const { + return _impl_.defidx_; +} +inline uint32_t CSOVolatileItemOffer::defidx() const { + // @@protoc_insertion_point(field_get:CSOVolatileItemOffer.defidx) + return _internal_defidx(); +} +inline void CSOVolatileItemOffer::_internal_set_defidx(uint32_t value) { + _impl_._has_bits_[0] |= 0x00000001u; + _impl_.defidx_ = value; +} +inline void CSOVolatileItemOffer::set_defidx(uint32_t value) { + _internal_set_defidx(value); + // @@protoc_insertion_point(field_set:CSOVolatileItemOffer.defidx) +} + +// repeated uint64 faux_itemid = 2; +inline int CSOVolatileItemOffer::_internal_faux_itemid_size() const { + return _impl_.faux_itemid_.size(); +} +inline int CSOVolatileItemOffer::faux_itemid_size() const { + return _internal_faux_itemid_size(); +} +inline void CSOVolatileItemOffer::clear_faux_itemid() { + _impl_.faux_itemid_.Clear(); +} +inline uint64_t CSOVolatileItemOffer::_internal_faux_itemid(int index) const { + return _impl_.faux_itemid_.Get(index); +} +inline uint64_t CSOVolatileItemOffer::faux_itemid(int index) const { + // @@protoc_insertion_point(field_get:CSOVolatileItemOffer.faux_itemid) + return _internal_faux_itemid(index); +} +inline void CSOVolatileItemOffer::set_faux_itemid(int index, uint64_t value) { + _impl_.faux_itemid_.Set(index, value); + // @@protoc_insertion_point(field_set:CSOVolatileItemOffer.faux_itemid) +} +inline void CSOVolatileItemOffer::_internal_add_faux_itemid(uint64_t value) { + _impl_.faux_itemid_.Add(value); +} +inline void CSOVolatileItemOffer::add_faux_itemid(uint64_t value) { + _internal_add_faux_itemid(value); + // @@protoc_insertion_point(field_add:CSOVolatileItemOffer.faux_itemid) +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& +CSOVolatileItemOffer::_internal_faux_itemid() const { + return _impl_.faux_itemid_; +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >& +CSOVolatileItemOffer::faux_itemid() const { + // @@protoc_insertion_point(field_list:CSOVolatileItemOffer.faux_itemid) + return _internal_faux_itemid(); +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* +CSOVolatileItemOffer::_internal_mutable_faux_itemid() { + return &_impl_.faux_itemid_; +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint64_t >* +CSOVolatileItemOffer::mutable_faux_itemid() { + // @@protoc_insertion_point(field_mutable_list:CSOVolatileItemOffer.faux_itemid) + return _internal_mutable_faux_itemid(); +} + +// repeated uint32 generation_time = 3; +inline int CSOVolatileItemOffer::_internal_generation_time_size() const { + return _impl_.generation_time_.size(); +} +inline int CSOVolatileItemOffer::generation_time_size() const { + return _internal_generation_time_size(); +} +inline void CSOVolatileItemOffer::clear_generation_time() { + _impl_.generation_time_.Clear(); +} +inline uint32_t CSOVolatileItemOffer::_internal_generation_time(int index) const { + return _impl_.generation_time_.Get(index); +} +inline uint32_t CSOVolatileItemOffer::generation_time(int index) const { + // @@protoc_insertion_point(field_get:CSOVolatileItemOffer.generation_time) + return _internal_generation_time(index); +} +inline void CSOVolatileItemOffer::set_generation_time(int index, uint32_t value) { + _impl_.generation_time_.Set(index, value); + // @@protoc_insertion_point(field_set:CSOVolatileItemOffer.generation_time) +} +inline void CSOVolatileItemOffer::_internal_add_generation_time(uint32_t value) { + _impl_.generation_time_.Add(value); +} +inline void CSOVolatileItemOffer::add_generation_time(uint32_t value) { + _internal_add_generation_time(value); + // @@protoc_insertion_point(field_add:CSOVolatileItemOffer.generation_time) +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& +CSOVolatileItemOffer::_internal_generation_time() const { + return _impl_.generation_time_; +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& +CSOVolatileItemOffer::generation_time() const { + // @@protoc_insertion_point(field_list:CSOVolatileItemOffer.generation_time) + return _internal_generation_time(); +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* +CSOVolatileItemOffer::_internal_mutable_generation_time() { + return &_impl_.generation_time_; +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* +CSOVolatileItemOffer::mutable_generation_time() { + // @@protoc_insertion_point(field_mutable_list:CSOVolatileItemOffer.generation_time) + return _internal_mutable_generation_time(); +} + +// ------------------------------------------------------------------- + +// CSOVolatileItemClaimedRewards + +// optional uint32 defidx = 1 [(.key_field) = true]; +inline bool CSOVolatileItemClaimedRewards::_internal_has_defidx() const { + bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; + return value; +} +inline bool CSOVolatileItemClaimedRewards::has_defidx() const { + return _internal_has_defidx(); +} +inline void CSOVolatileItemClaimedRewards::clear_defidx() { + _impl_.defidx_ = 0u; + _impl_._has_bits_[0] &= ~0x00000001u; +} +inline uint32_t CSOVolatileItemClaimedRewards::_internal_defidx() const { + return _impl_.defidx_; +} +inline uint32_t CSOVolatileItemClaimedRewards::defidx() const { + // @@protoc_insertion_point(field_get:CSOVolatileItemClaimedRewards.defidx) + return _internal_defidx(); +} +inline void CSOVolatileItemClaimedRewards::_internal_set_defidx(uint32_t value) { + _impl_._has_bits_[0] |= 0x00000001u; + _impl_.defidx_ = value; +} +inline void CSOVolatileItemClaimedRewards::set_defidx(uint32_t value) { + _internal_set_defidx(value); + // @@protoc_insertion_point(field_set:CSOVolatileItemClaimedRewards.defidx) +} + +// repeated uint32 reward = 2; +inline int CSOVolatileItemClaimedRewards::_internal_reward_size() const { + return _impl_.reward_.size(); +} +inline int CSOVolatileItemClaimedRewards::reward_size() const { + return _internal_reward_size(); +} +inline void CSOVolatileItemClaimedRewards::clear_reward() { + _impl_.reward_.Clear(); +} +inline uint32_t CSOVolatileItemClaimedRewards::_internal_reward(int index) const { + return _impl_.reward_.Get(index); +} +inline uint32_t CSOVolatileItemClaimedRewards::reward(int index) const { + // @@protoc_insertion_point(field_get:CSOVolatileItemClaimedRewards.reward) + return _internal_reward(index); +} +inline void CSOVolatileItemClaimedRewards::set_reward(int index, uint32_t value) { + _impl_.reward_.Set(index, value); + // @@protoc_insertion_point(field_set:CSOVolatileItemClaimedRewards.reward) +} +inline void CSOVolatileItemClaimedRewards::_internal_add_reward(uint32_t value) { + _impl_.reward_.Add(value); +} +inline void CSOVolatileItemClaimedRewards::add_reward(uint32_t value) { + _internal_add_reward(value); + // @@protoc_insertion_point(field_add:CSOVolatileItemClaimedRewards.reward) +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& +CSOVolatileItemClaimedRewards::_internal_reward() const { + return _impl_.reward_; +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& +CSOVolatileItemClaimedRewards::reward() const { + // @@protoc_insertion_point(field_list:CSOVolatileItemClaimedRewards.reward) + return _internal_reward(); +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* +CSOVolatileItemClaimedRewards::_internal_mutable_reward() { + return &_impl_.reward_; +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* +CSOVolatileItemClaimedRewards::mutable_reward() { + // @@protoc_insertion_point(field_mutable_list:CSOVolatileItemClaimedRewards.reward) + return _internal_mutable_reward(); +} + +// repeated uint32 generation_time = 3; +inline int CSOVolatileItemClaimedRewards::_internal_generation_time_size() const { + return _impl_.generation_time_.size(); +} +inline int CSOVolatileItemClaimedRewards::generation_time_size() const { + return _internal_generation_time_size(); +} +inline void CSOVolatileItemClaimedRewards::clear_generation_time() { + _impl_.generation_time_.Clear(); +} +inline uint32_t CSOVolatileItemClaimedRewards::_internal_generation_time(int index) const { + return _impl_.generation_time_.Get(index); +} +inline uint32_t CSOVolatileItemClaimedRewards::generation_time(int index) const { + // @@protoc_insertion_point(field_get:CSOVolatileItemClaimedRewards.generation_time) + return _internal_generation_time(index); +} +inline void CSOVolatileItemClaimedRewards::set_generation_time(int index, uint32_t value) { + _impl_.generation_time_.Set(index, value); + // @@protoc_insertion_point(field_set:CSOVolatileItemClaimedRewards.generation_time) +} +inline void CSOVolatileItemClaimedRewards::_internal_add_generation_time(uint32_t value) { + _impl_.generation_time_.Add(value); +} +inline void CSOVolatileItemClaimedRewards::add_generation_time(uint32_t value) { + _internal_add_generation_time(value); + // @@protoc_insertion_point(field_add:CSOVolatileItemClaimedRewards.generation_time) +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& +CSOVolatileItemClaimedRewards::_internal_generation_time() const { + return _impl_.generation_time_; +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >& +CSOVolatileItemClaimedRewards::generation_time() const { + // @@protoc_insertion_point(field_list:CSOVolatileItemClaimedRewards.generation_time) + return _internal_generation_time(); +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* +CSOVolatileItemClaimedRewards::_internal_mutable_generation_time() { + return &_impl_.generation_time_; +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >* +CSOVolatileItemClaimedRewards::mutable_generation_time() { + // @@protoc_insertion_point(field_mutable_list:CSOVolatileItemClaimedRewards.generation_time) + return _internal_mutable_generation_time(); +} + +// ------------------------------------------------------------------- + // CSOAccountKeychainRemoveToolCharges // optional uint32 charges = 1; @@ -74765,6 +75442,10 @@ CMsgRecurringMissionSchema::missions() const { // ------------------------------------------------------------------- +// ------------------------------------------------------------------- + +// ------------------------------------------------------------------- + // @@protoc_insertion_point(namespace_scope) diff --git a/protobuf/generated/cstrike15_usermessages.pb.cc b/protobuf/generated/cstrike15_usermessages.pb.cc index fe62150d3..d8c7f5d75 100644 --- a/protobuf/generated/cstrike15_usermessages.pb.cc +++ b/protobuf/generated/cstrike15_usermessages.pb.cc @@ -921,20 +921,6 @@ struct CCSUsrMsg_ItemDropDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CCSUsrMsg_ItemDropDefaultTypeInternal _CCSUsrMsg_ItemDrop_default_instance_; -PROTOBUF_CONSTEXPR CCSUsrMsg_GlowPropTurnOff::CCSUsrMsg_GlowPropTurnOff( - ::_pbi::ConstantInitialized): _impl_{ - /*decltype(_impl_._has_bits_)*/{} - , /*decltype(_impl_._cached_size_)*/{} - , /*decltype(_impl_.entidx_)*/-1} {} -struct CCSUsrMsg_GlowPropTurnOffDefaultTypeInternal { - PROTOBUF_CONSTEXPR CCSUsrMsg_GlowPropTurnOffDefaultTypeInternal() - : _instance(::_pbi::ConstantInitialized{}) {} - ~CCSUsrMsg_GlowPropTurnOffDefaultTypeInternal() {} - union { - CCSUsrMsg_GlowPropTurnOff _instance; - }; -}; -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CCSUsrMsg_GlowPropTurnOffDefaultTypeInternal _CCSUsrMsg_GlowPropTurnOff_default_instance_; PROTOBUF_CONSTEXPR CCSUsrMsg_RoundBackupFilenames::CCSUsrMsg_RoundBackupFilenames( ::_pbi::ConstantInitialized): _impl_{ /*decltype(_impl_._has_bits_)*/{} @@ -1327,20 +1313,6 @@ struct CCSUsrMsg_DisconnectToLobbyDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CCSUsrMsg_DisconnectToLobbyDefaultTypeInternal _CCSUsrMsg_DisconnectToLobby_default_instance_; -PROTOBUF_CONSTEXPR CCSUsrMsg_WarmupHasEnded::CCSUsrMsg_WarmupHasEnded( - ::_pbi::ConstantInitialized): _impl_{ - /*decltype(_impl_._has_bits_)*/{} - , /*decltype(_impl_._cached_size_)*/{} - , /*decltype(_impl_.dummy_)*/0} {} -struct CCSUsrMsg_WarmupHasEndedDefaultTypeInternal { - PROTOBUF_CONSTEXPR CCSUsrMsg_WarmupHasEndedDefaultTypeInternal() - : _instance(::_pbi::ConstantInitialized{}) {} - ~CCSUsrMsg_WarmupHasEndedDefaultTypeInternal() {} - union { - CCSUsrMsg_WarmupHasEnded _instance; - }; -}; -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CCSUsrMsg_WarmupHasEndedDefaultTypeInternal _CCSUsrMsg_WarmupHasEnded_default_instance_; PROTOBUF_CONSTEXPR CCSUsrMsg_ClientInfo::CCSUsrMsg_ClientInfo( ::_pbi::ConstantInitialized): _impl_{ /*decltype(_impl_._has_bits_)*/{} @@ -1437,6 +1409,37 @@ struct CCSUsrMsg_RecurringMissionSchemaDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CCSUsrMsg_RecurringMissionSchemaDefaultTypeInternal _CCSUsrMsg_RecurringMissionSchema_default_instance_; +PROTOBUF_CONSTEXPR CCSUsrMsg_SendPlayerLoadout_LoadoutItem::CCSUsrMsg_SendPlayerLoadout_LoadoutItem( + ::_pbi::ConstantInitialized): _impl_{ + /*decltype(_impl_._has_bits_)*/{} + , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.econ_item_)*/nullptr + , /*decltype(_impl_.team_)*/0 + , /*decltype(_impl_.slot_)*/0} {} +struct CCSUsrMsg_SendPlayerLoadout_LoadoutItemDefaultTypeInternal { + PROTOBUF_CONSTEXPR CCSUsrMsg_SendPlayerLoadout_LoadoutItemDefaultTypeInternal() + : _instance(::_pbi::ConstantInitialized{}) {} + ~CCSUsrMsg_SendPlayerLoadout_LoadoutItemDefaultTypeInternal() {} + union { + CCSUsrMsg_SendPlayerLoadout_LoadoutItem _instance; + }; +}; +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CCSUsrMsg_SendPlayerLoadout_LoadoutItemDefaultTypeInternal _CCSUsrMsg_SendPlayerLoadout_LoadoutItem_default_instance_; +PROTOBUF_CONSTEXPR CCSUsrMsg_SendPlayerLoadout::CCSUsrMsg_SendPlayerLoadout( + ::_pbi::ConstantInitialized): _impl_{ + /*decltype(_impl_._has_bits_)*/{} + , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.loadout_)*/{} + , /*decltype(_impl_.playerslot_)*/-1} {} +struct CCSUsrMsg_SendPlayerLoadoutDefaultTypeInternal { + PROTOBUF_CONSTEXPR CCSUsrMsg_SendPlayerLoadoutDefaultTypeInternal() + : _instance(::_pbi::ConstantInitialized{}) {} + ~CCSUsrMsg_SendPlayerLoadoutDefaultTypeInternal() {} + union { + CCSUsrMsg_SendPlayerLoadout _instance; + }; +}; +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CCSUsrMsg_SendPlayerLoadoutDefaultTypeInternal _CCSUsrMsg_SendPlayerLoadout_default_instance_; static ::_pb::Metadata file_level_metadata_cstrike15_5fusermessages_2eproto[89]; static const ::_pb::EnumDescriptor* file_level_enum_descriptors_cstrike15_5fusermessages_2eproto[2]; static constexpr ::_pb::ServiceDescriptor const** file_level_service_descriptors_cstrike15_5fusermessages_2eproto = nullptr; @@ -2108,14 +2111,6 @@ const uint32_t TableStruct_cstrike15_5fusermessages_2eproto::offsets[] PROTOBUF_ PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_ItemDrop, _impl_.death_), 0, 1, - PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_GlowPropTurnOff, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_GlowPropTurnOff, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_GlowPropTurnOff, _impl_.entidx_), - 0, PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_RoundBackupFilenames, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_RoundBackupFilenames, _internal_metadata_), ~0u, // no _extensions_ @@ -2420,14 +2415,6 @@ const uint32_t TableStruct_cstrike15_5fusermessages_2eproto::offsets[] PROTOBUF_ ~0u, // no _inlined_string_donated_ PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_DisconnectToLobby, _impl_.dummy_), 0, - PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_WarmupHasEnded, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_WarmupHasEnded, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_WarmupHasEnded, _impl_.dummy_), - 0, PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_ClientInfo, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_ClientInfo, _internal_metadata_), ~0u, // no _extensions_ @@ -2500,6 +2487,28 @@ const uint32_t TableStruct_cstrike15_5fusermessages_2eproto::offsets[] PROTOBUF_ PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_RecurringMissionSchema, _impl_.mission_schema_), 1, 0, + PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_SendPlayerLoadout_LoadoutItem, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_SendPlayerLoadout_LoadoutItem, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_SendPlayerLoadout_LoadoutItem, _impl_.econ_item_), + PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_SendPlayerLoadout_LoadoutItem, _impl_.team_), + PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_SendPlayerLoadout_LoadoutItem, _impl_.slot_), + 0, + 1, + 2, + PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_SendPlayerLoadout, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_SendPlayerLoadout, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_SendPlayerLoadout, _impl_.loadout_), + PROTOBUF_FIELD_OFFSET(::CCSUsrMsg_SendPlayerLoadout, _impl_.playerslot_), + ~0u, + 0, }; static const ::_pbi::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { { 0, 8, -1, sizeof(::CCSUsrMsg_VGUIMenu_Keys)}, @@ -2559,38 +2568,38 @@ static const ::_pbi::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protode { 640, 647, -1, sizeof(::CCSUsrMsg_MarkAchievement)}, { 648, 655, -1, sizeof(::CCSUsrMsg_MatchStatsUpdate)}, { 656, 664, -1, sizeof(::CCSUsrMsg_ItemDrop)}, - { 666, 673, -1, sizeof(::CCSUsrMsg_GlowPropTurnOff)}, - { 674, 684, -1, sizeof(::CCSUsrMsg_RoundBackupFilenames)}, - { 688, 697, -1, sizeof(::CCSUsrMsg_SSUI)}, - { 700, 710, -1, sizeof(::CCSUsrMsg_SurvivalStats_Fact)}, - { 714, 723, -1, sizeof(::CCSUsrMsg_SurvivalStats_Placement)}, - { 726, 737, -1, sizeof(::CCSUsrMsg_SurvivalStats_Damage)}, - { 742, 753, -1, sizeof(::CCSUsrMsg_SurvivalStats)}, - { 758, 767, -1, sizeof(::CCSUsrMsg_EndOfMatchAllPlayersData_Accolade)}, - { 770, 784, -1, sizeof(::CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData)}, - { 792, 800, -1, sizeof(::CCSUsrMsg_EndOfMatchAllPlayersData)}, - { 802, 814, -1, sizeof(::CCSUsrMsg_RoundEndReportData_RerEvent_Victim)}, - { 820, 827, -1, sizeof(::CCSUsrMsg_RoundEndReportData_RerEvent_Objective)}, - { 828, 840, -1, sizeof(::CCSUsrMsg_RoundEndReportData_RerEvent_Damage)}, - { 846, 859, -1, sizeof(::CCSUsrMsg_RoundEndReportData_RerEvent)}, - { 866, 875, -1, sizeof(::CCSUsrMsg_RoundEndReportData_InitialConditions)}, - { 878, 886, -1, sizeof(::CCSUsrMsg_RoundEndReportData)}, - { 888, 901, -1, sizeof(::CCSUsrMsg_PostRoundDamageReport)}, - { 908, 915, -1, sizeof(::CCSUsrMsg_CurrentRoundOdds)}, - { 916, 923, -1, sizeof(::CCSUsrMsg_DeepStats)}, - { 924, 934, -1, sizeof(::CCSUsrMsg_ShootInfo)}, - { 938, 945, -1, sizeof(::CCSUsrMsg_ResetHud)}, - { 946, 953, -1, sizeof(::CCSUsrMsg_GameTitle)}, - { 954, 961, -1, sizeof(::CCSUsrMsg_RequestState)}, - { 962, 969, -1, sizeof(::CCSUsrMsg_StopSpectatorMode)}, - { 970, 977, -1, sizeof(::CCSUsrMsg_DisconnectToLobby)}, - { 978, 985, -1, sizeof(::CCSUsrMsg_WarmupHasEnded)}, - { 986, 993, -1, sizeof(::CCSUsrMsg_ClientInfo)}, - { 994, 1002, -1, sizeof(::CCSUsrMsg_ServerRankRevealAll)}, - { 1004, 1013, -1, sizeof(::CCSUsrMsgPreMatchSayText)}, - { 1016, 1024, -1, sizeof(::CCSUsrMsg_CounterStrafe)}, - { 1026, 1040, -1, sizeof(::CCSUsrMsg_DamagePrediction)}, - { 1048, 1056, -1, sizeof(::CCSUsrMsg_RecurringMissionSchema)}, + { 666, 676, -1, sizeof(::CCSUsrMsg_RoundBackupFilenames)}, + { 680, 689, -1, sizeof(::CCSUsrMsg_SSUI)}, + { 692, 702, -1, sizeof(::CCSUsrMsg_SurvivalStats_Fact)}, + { 706, 715, -1, sizeof(::CCSUsrMsg_SurvivalStats_Placement)}, + { 718, 729, -1, sizeof(::CCSUsrMsg_SurvivalStats_Damage)}, + { 734, 745, -1, sizeof(::CCSUsrMsg_SurvivalStats)}, + { 750, 759, -1, sizeof(::CCSUsrMsg_EndOfMatchAllPlayersData_Accolade)}, + { 762, 776, -1, sizeof(::CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData)}, + { 784, 792, -1, sizeof(::CCSUsrMsg_EndOfMatchAllPlayersData)}, + { 794, 806, -1, sizeof(::CCSUsrMsg_RoundEndReportData_RerEvent_Victim)}, + { 812, 819, -1, sizeof(::CCSUsrMsg_RoundEndReportData_RerEvent_Objective)}, + { 820, 832, -1, sizeof(::CCSUsrMsg_RoundEndReportData_RerEvent_Damage)}, + { 838, 851, -1, sizeof(::CCSUsrMsg_RoundEndReportData_RerEvent)}, + { 858, 867, -1, sizeof(::CCSUsrMsg_RoundEndReportData_InitialConditions)}, + { 870, 878, -1, sizeof(::CCSUsrMsg_RoundEndReportData)}, + { 880, 893, -1, sizeof(::CCSUsrMsg_PostRoundDamageReport)}, + { 900, 907, -1, sizeof(::CCSUsrMsg_CurrentRoundOdds)}, + { 908, 915, -1, sizeof(::CCSUsrMsg_DeepStats)}, + { 916, 926, -1, sizeof(::CCSUsrMsg_ShootInfo)}, + { 930, 937, -1, sizeof(::CCSUsrMsg_ResetHud)}, + { 938, 945, -1, sizeof(::CCSUsrMsg_GameTitle)}, + { 946, 953, -1, sizeof(::CCSUsrMsg_RequestState)}, + { 954, 961, -1, sizeof(::CCSUsrMsg_StopSpectatorMode)}, + { 962, 969, -1, sizeof(::CCSUsrMsg_DisconnectToLobby)}, + { 970, 977, -1, sizeof(::CCSUsrMsg_ClientInfo)}, + { 978, 986, -1, sizeof(::CCSUsrMsg_ServerRankRevealAll)}, + { 988, 997, -1, sizeof(::CCSUsrMsgPreMatchSayText)}, + { 1000, 1008, -1, sizeof(::CCSUsrMsg_CounterStrafe)}, + { 1010, 1024, -1, sizeof(::CCSUsrMsg_DamagePrediction)}, + { 1032, 1040, -1, sizeof(::CCSUsrMsg_RecurringMissionSchema)}, + { 1042, 1051, -1, sizeof(::CCSUsrMsg_SendPlayerLoadout_LoadoutItem)}, + { 1054, 1062, -1, sizeof(::CCSUsrMsg_SendPlayerLoadout)}, }; static const ::_pb::Message* const file_default_instances[] = { @@ -2651,7 +2660,6 @@ static const ::_pb::Message* const file_default_instances[] = { &::_CCSUsrMsg_MarkAchievement_default_instance_._instance, &::_CCSUsrMsg_MatchStatsUpdate_default_instance_._instance, &::_CCSUsrMsg_ItemDrop_default_instance_._instance, - &::_CCSUsrMsg_GlowPropTurnOff_default_instance_._instance, &::_CCSUsrMsg_RoundBackupFilenames_default_instance_._instance, &::_CCSUsrMsg_SSUI_default_instance_._instance, &::_CCSUsrMsg_SurvivalStats_Fact_default_instance_._instance, @@ -2676,13 +2684,14 @@ static const ::_pb::Message* const file_default_instances[] = { &::_CCSUsrMsg_RequestState_default_instance_._instance, &::_CCSUsrMsg_StopSpectatorMode_default_instance_._instance, &::_CCSUsrMsg_DisconnectToLobby_default_instance_._instance, - &::_CCSUsrMsg_WarmupHasEnded_default_instance_._instance, &::_CCSUsrMsg_ClientInfo_default_instance_._instance, &::_CCSUsrMsg_ServerRankRevealAll_default_instance_._instance, &::_CCSUsrMsgPreMatchSayText_default_instance_._instance, &::_CCSUsrMsg_CounterStrafe_default_instance_._instance, &::_CCSUsrMsg_DamagePrediction_default_instance_._instance, &::_CCSUsrMsg_RecurringMissionSchema_default_instance_._instance, + &::_CCSUsrMsg_SendPlayerLoadout_LoadoutItem_default_instance_._instance, + &::_CCSUsrMsg_SendPlayerLoadout_default_instance_._instance, }; const char descriptor_table_protodef_cstrike15_5fusermessages_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = @@ -2813,144 +2822,147 @@ const char descriptor_table_protodef_cstrike15_5fusermessages_2eproto[] PROTOBUF "vement\022\023\n\013achievement\030\001 \001(\t\",\n\032CCSUsrMsg" "_MatchStatsUpdate\022\016\n\006update\030\001 \001(\t\"3\n\022CCS" "UsrMsg_ItemDrop\022\016\n\006itemid\030\001 \001(\003\022\r\n\005death" - "\030\002 \001(\010\"/\n\031CCSUsrMsg_GlowPropTurnOff\022\022\n\006e" - "ntidx\030\001 \001(\005:\002-1\"b\n\036CCSUsrMsg_RoundBackup" - "Filenames\022\r\n\005count\030\001 \001(\005\022\r\n\005index\030\002 \001(\005\022" - "\020\n\010filename\030\003 \001(\t\022\020\n\010nicename\030\004 \001(\t\"D\n\016C" - "CSUsrMsg_SSUI\022\014\n\004show\030\001 \001(\010\022\022\n\nstart_tim" - "e\030\002 \001(\002\022\020\n\010end_time\030\003 \001(\002\"\265\003\n\027CCSUsrMsg_" - "SurvivalStats\022\014\n\004xuid\030\001 \001(\004\022,\n\005facts\030\002 \003" - "(\0132\035.CCSUsrMsg_SurvivalStats.Fact\0221\n\005use" - "rs\030\003 \003(\0132\".CCSUsrMsg_SurvivalStats.Place" - "ment\0220\n\007damages\030\005 \003(\0132\037.CCSUsrMsg_Surviv" - "alStats.Damage\022\022\n\nticknumber\030\004 \001(\005\032M\n\004Fa" - "ct\022\014\n\004type\030\001 \001(\005\022\017\n\007display\030\002 \001(\005\022\r\n\005val" - "ue\030\003 \001(\005\022\027\n\017interestingness\030\004 \001(\002\032@\n\tPla" - "cement\022\014\n\004xuid\030\001 \001(\004\022\022\n\nteamnumber\030\002 \001(\005" - "\022\021\n\tplacement\030\003 \001(\005\032T\n\006Damage\022\014\n\004xuid\030\001 " - "\001(\004\022\n\n\002to\030\002 \001(\005\022\017\n\007to_hits\030\003 \001(\005\022\014\n\004from" - "\030\004 \001(\005\022\021\n\tfrom_hits\030\005 \001(\005\"\234\003\n\"CCSUsrMsg_" - "EndOfMatchAllPlayersData\022E\n\rallplayerdat" - "a\030\001 \003(\0132..CCSUsrMsg_EndOfMatchAllPlayers" - "Data.PlayerData\022\r\n\005scene\030\002 \001(\005\032>\n\010Accola" - "de\022\021\n\teaccolade\030\001 \001(\005\022\r\n\005value\030\002 \001(\002\022\020\n\010" - "position\030\003 \001(\005\032\337\001\n\nPlayerData\022\020\n\004slot\030\001 " - "\001(\005:\002-1\022\014\n\004xuid\030\002 \001(\004\022\014\n\004name\030\003 \001(\t\022\022\n\nt" - "eamnumber\030\004 \001(\005\022@\n\nnomination\030\005 \001(\0132,.CC" - "SUsrMsg_EndOfMatchAllPlayersData.Accolad" - "e\022)\n\005items\030\006 \003(\0132\032.CEconItemPreviewDataB" - "lock\022\023\n\013playercolor\030\007 \001(\005\022\r\n\005isbot\030\010 \001(\010" - "\"\350\006\n\034CCSUsrMsg_RoundEndReportData\022H\n\017ini" - "t_conditions\030\001 \001(\0132/.CCSUsrMsg_RoundEndR" - "eportData.InitialConditions\022B\n\022all_rer_e" - "vent_data\030\002 \003(\0132&.CCSUsrMsg_RoundEndRepo" - "rtData.RerEvent\032\335\004\n\010RerEvent\022\021\n\ttimestam" - "p\030\001 \001(\002\022\026\n\016terrorist_odds\030\002 \001(\005\022\020\n\010ct_al" - "ive\030\003 \001(\005\022\017\n\007t_alive\030\004 \001(\005\022B\n\013victim_dat" - "a\030\005 \001(\0132-.CCSUsrMsg_RoundEndReportData.R" - "erEvent.Victim\022H\n\016objective_data\030\006 \001(\01320" - ".CCSUsrMsg_RoundEndReportData.RerEvent.O" - "bjective\022F\n\017all_damage_data\030\007 \003(\0132-.CCSU" - "srMsg_RoundEndReportData.RerEvent.Damage" - "\032s\n\006Victim\022\023\n\013team_number\030\001 \001(\005\022\026\n\nplaye" - "rslot\030\002 \001(\005:\002-1\022\014\n\004xuid\030\003 \001(\004\022\r\n\005color\030\004" - " \001(\005\022\016\n\006is_bot\030\005 \001(\010\022\017\n\007is_dead\030\006 \001(\010\032\031\n" - "\tObjective\022\014\n\004type\030\001 \001(\005\032\234\001\n\006Damage\022\034\n\020o" - "ther_playerslot\030\001 \001(\005:\002-1\022\022\n\nother_xuid\030" - "\002 \001(\004\022\026\n\016health_removed\030\003 \001(\005\022\020\n\010num_hit" - "s\030\004 \001(\005\022\035\n\025return_health_removed\030\005 \001(\005\022\027" - "\n\017return_num_hits\030\006 \001(\005\032Z\n\021InitialCondit" - "ions\022\026\n\016ct_equip_value\030\001 \001(\005\022\025\n\rt_equip_" - "value\030\002 \001(\005\022\026\n\016terrorist_odds\030\003 \001(\005\"\323\001\n\037" - "CCSUsrMsg_PostRoundDamageReport\022\022\n\nother" - "_xuid\030\001 \001(\004\022\027\n\017given_kill_type\030\002 \001(\005\022\034\n\024" - "given_health_removed\030\003 \001(\005\022\026\n\016given_num_" - "hits\030\004 \001(\005\022\027\n\017taken_kill_type\030\005 \001(\005\022\034\n\024t" - "aken_health_removed\030\006 \001(\005\022\026\n\016taken_num_h" - "its\030\007 \001(\005\"*\n\032CCSUsrMsg_CurrentRoundOdds\022" - "\014\n\004odds\030\001 \001(\005\"F\n\023CCSUsrMsg_DeepStats\022/\n\005" - "stats\030\001 \001(\0132 .CMsgGCCStrike15_ClientDeep" - "Stats\"\226\001\n\023CCSUsrMsg_ShootInfo\022\024\n\014frame_n" - "umber\030\001 \001(\005\022)\n\021hitbox_transforms\030\002 \003(\0132\016" - ".CMsgTransform\022\036\n\tshoot_pos\030\003 \001(\0132\013.CMsg" - "Vector\022\036\n\tshoot_dir\030\004 \001(\0132\013.CMsgQAngle\"#" - "\n\022CCSUsrMsg_ResetHud\022\r\n\005reset\030\001 \001(\010\"$\n\023C" - "CSUsrMsg_GameTitle\022\r\n\005dummy\030\001 \001(\005\"\'\n\026CCS" - "UsrMsg_RequestState\022\r\n\005dummy\030\001 \001(\005\",\n\033CC" - "SUsrMsg_StopSpectatorMode\022\r\n\005dummy\030\001 \001(\005" - "\",\n\033CCSUsrMsg_DisconnectToLobby\022\r\n\005dummy" - "\030\001 \001(\005\")\n\030CCSUsrMsg_WarmupHasEnded\022\r\n\005du" - "mmy\030\001 \001(\005\"%\n\024CCSUsrMsg_ClientInfo\022\r\n\005dum" - "my\030\001 \001(\005\"\204\001\n\035CCSUsrMsg_ServerRankRevealA" - "ll\022\035\n\025seconds_till_shutdown\030\001 \001(\005\022D\n\013res" - "ervation\030\002 \001(\0132/.CMsgGCCStrike15_v2_Matc" - "hmakingGC2ServerReserve\"N\n\030CCSUsrMsgPreM" - "atchSayText\022\022\n\naccount_id\030\001 \001(\r\022\014\n\004text\030" - "\002 \001(\t\022\020\n\010all_chat\030\003 \001(\010\"O\n\027CCSUsrMsg_Cou" - "nterStrafe\022\033\n\023press_to_release_ns\030\001 \001(\005\022" - "\027\n\017total_keys_down\030\002 \001(\005\"\361\001\n\032CCSUsrMsg_D" - "amagePrediction\022\023\n\013command_num\030\001 \001(\005\022\022\n\n" - "pellet_idx\030\002 \001(\005\022\023\n\013victim_slot\030\003 \001(\005\022\036\n" - "\026victim_starting_health\030\004 \001(\005\022\025\n\rvictim_" - "damage\030\005 \001(\005\022\036\n\tshoot_pos\030\006 \001(\0132\013.CMsgVe" - "ctor\022\036\n\tshoot_dir\030\007 \001(\0132\013.CMsgQAngle\022\036\n\t" - "aim_punch\030\010 \001(\0132\013.CMsgQAngle\"J\n CCSUsrMs" - "g_RecurringMissionSchema\022\016\n\006period\030\001 \001(\r" - "\022\026\n\016mission_schema\030\002 \001(\014*\354\017\n\026ECstrike15U" - "serMessages\022\023\n\016CS_UM_VGUIMenu\020\255\002\022\021\n\014CS_U" - "M_Geiger\020\256\002\022\020\n\013CS_UM_Train\020\257\002\022\022\n\rCS_UM_H" - "udText\020\260\002\022\022\n\rCS_UM_SayText\020\261\002\022\023\n\016CS_UM_S" - "ayText2\020\262\002\022\022\n\rCS_UM_TextMsg\020\263\002\022\021\n\014CS_UM_" - "HudMsg\020\264\002\022\023\n\016CS_UM_ResetHud\020\265\002\022\024\n\017CS_UM_" - "GameTitle\020\266\002\022\020\n\013CS_UM_Shake\020\270\002\022\017\n\nCS_UM_" - "Fade\020\271\002\022\021\n\014CS_UM_Rumble\020\272\002\022\027\n\022CS_UM_Clos" - "eCaption\020\273\002\022\035\n\030CS_UM_CloseCaptionDirect\020" - "\274\002\022\024\n\017CS_UM_SendAudio\020\275\002\022\023\n\016CS_UM_RawAud" - "io\020\276\002\022\024\n\017CS_UM_VoiceMask\020\277\002\022\027\n\022CS_UM_Req" - "uestState\020\300\002\022\021\n\014CS_UM_Damage\020\301\002\022\024\n\017CS_UM" - "_RadioText\020\302\002\022\023\n\016CS_UM_HintText\020\303\002\022\026\n\021CS" - "_UM_KeyHintText\020\304\002\022%\n CS_UM_ProcessSpott" - "edEntityUpdate\020\305\002\022\027\n\022CS_UM_ReloadEffect\020" - "\306\002\022\026\n\021CS_UM_AdjustMoney\020\307\002\022\032\n\025CS_UM_Upda" - "teTeamMoney\020\310\002\022\034\n\027CS_UM_StopSpectatorMod" - "e\020\311\002\022\022\n\rCS_UM_KillCam\020\312\002\022\033\n\026CS_UM_Desire" - "dTimescale\020\313\002\022\033\n\026CS_UM_CurrentTimescale\020" - "\314\002\022\033\n\026CS_UM_AchievementEvent\020\315\002\022\035\n\030CS_UM" - "_MatchEndConditions\020\316\002\022\034\n\027CS_UM_Disconne" - "ctToLobby\020\317\002\022\034\n\027CS_UM_PlayerStatsUpdate\020" - "\320\002\022\031\n\024CS_UM_WarmupHasEnded\020\322\002\022\025\n\020CS_UM_C" - "lientInfo\020\323\002\022\023\n\016CS_UM_XRankGet\020\324\002\022\023\n\016CS_" - "UM_XRankUpd\020\325\002\022\031\n\024CS_UM_CallVoteFailed\020\331" - "\002\022\024\n\017CS_UM_VoteStart\020\332\002\022\023\n\016CS_UM_VotePas" - "s\020\333\002\022\025\n\020CS_UM_VoteFailed\020\334\002\022\024\n\017CS_UM_Vot" - "eSetup\020\335\002\022\036\n\031CS_UM_ServerRankRevealAll\020\336" - "\002\022\'\n\"CS_UM_SendLastKillerDamageToClient\020" - "\337\002\022\033\n\026CS_UM_ServerRankUpdate\020\340\002\022\025\n\020CS_UM" - "_ItemPickup\020\341\002\022\023\n\016CS_UM_ShowMenu\020\342\002\022\022\n\rC" - "S_UM_BarTime\020\343\002\022\025\n\020CS_UM_AmmoDenied\020\344\002\022\032" - "\n\025CS_UM_MarkAchievement\020\345\002\022\033\n\026CS_UM_Matc" - "hStatsUpdate\020\346\002\022\023\n\016CS_UM_ItemDrop\020\347\002\022\032\n\025" - "CS_UM_GlowPropTurnOff\020\350\002\022\036\n\031CS_UM_SendPl" - "ayerItemDrops\020\351\002\022\037\n\032CS_UM_RoundBackupFil" - "enames\020\352\002\022\036\n\031CS_UM_SendPlayerItemFound\020\353" - "\002\022\024\n\017CS_UM_ReportHit\020\354\002\022\023\n\016CS_UM_XpUpdat" - "e\020\355\002\022\030\n\023CS_UM_QuestProgress\020\356\002\022\037\n\032CS_UM_" - "ScoreLeaderboardData\020\357\002\022&\n!CS_UM_PlayerD" - "ecalDigitalSignature\020\360\002\022\026\n\021CS_UM_WeaponS" - "ound\020\361\002\022 \n\033CS_UM_UpdateScreenHealthBar\020\362" - "\002\022!\n\034CS_UM_EntityOutlineHighlight\020\363\002\022\017\n\n" - "CS_UM_SSUI\020\364\002\022\030\n\023CS_UM_SurvivalStats\020\365\002\022" - "\035\n\030CS_UM_DisconnectToLobby2\020\366\002\022#\n\036CS_UM_" - "EndOfMatchAllPlayersData\020\367\002\022 \n\033CS_UM_Pos" - "tRoundDamageReport\020\370\002\022\035\n\030CS_UM_RoundEndR" - "eportData\020\373\002\022\033\n\026CS_UM_CurrentRoundOdds\020\374" - "\002\022\024\n\017CS_UM_DeepStats\020\375\002\022\024\n\017CS_UM_ShootIn" - "fo\020\377\002\022\030\n\023CS_UM_CounterStrafe\020\201\003\022\033\n\026CS_UM" - "_DamagePrediction\020\202\003\022!\n\034CS_UM_RecurringM" - "issionSchema\020\203\003*\210\001\n\"ECSUsrMsg_Disconnect" - "ToLobby_Action\0220\n,k_ECSUsrMsg_Disconnect" - "ToLobby_Action_Default\020\000\0220\n,k_ECSUsrMsg_" - "DisconnectToLobby_Action_GoQueue\020\001" + "\030\002 \001(\010\"b\n\036CCSUsrMsg_RoundBackupFilenames" + "\022\r\n\005count\030\001 \001(\005\022\r\n\005index\030\002 \001(\005\022\020\n\010filena" + "me\030\003 \001(\t\022\020\n\010nicename\030\004 \001(\t\"D\n\016CCSUsrMsg_" + "SSUI\022\014\n\004show\030\001 \001(\010\022\022\n\nstart_time\030\002 \001(\002\022\020" + "\n\010end_time\030\003 \001(\002\"\265\003\n\027CCSUsrMsg_SurvivalS" + "tats\022\014\n\004xuid\030\001 \001(\004\022,\n\005facts\030\002 \003(\0132\035.CCSU" + "srMsg_SurvivalStats.Fact\0221\n\005users\030\003 \003(\0132" + "\".CCSUsrMsg_SurvivalStats.Placement\0220\n\007d" + "amages\030\005 \003(\0132\037.CCSUsrMsg_SurvivalStats.D" + "amage\022\022\n\nticknumber\030\004 \001(\005\032M\n\004Fact\022\014\n\004typ" + "e\030\001 \001(\005\022\017\n\007display\030\002 \001(\005\022\r\n\005value\030\003 \001(\005\022" + "\027\n\017interestingness\030\004 \001(\002\032@\n\tPlacement\022\014\n" + "\004xuid\030\001 \001(\004\022\022\n\nteamnumber\030\002 \001(\005\022\021\n\tplace" + "ment\030\003 \001(\005\032T\n\006Damage\022\014\n\004xuid\030\001 \001(\004\022\n\n\002to" + "\030\002 \001(\005\022\017\n\007to_hits\030\003 \001(\005\022\014\n\004from\030\004 \001(\005\022\021\n" + "\tfrom_hits\030\005 \001(\005\"\234\003\n\"CCSUsrMsg_EndOfMatc" + "hAllPlayersData\022E\n\rallplayerdata\030\001 \003(\0132." + ".CCSUsrMsg_EndOfMatchAllPlayersData.Play" + "erData\022\r\n\005scene\030\002 \001(\005\032>\n\010Accolade\022\021\n\teac" + "colade\030\001 \001(\005\022\r\n\005value\030\002 \001(\002\022\020\n\010position\030" + "\003 \001(\005\032\337\001\n\nPlayerData\022\020\n\004slot\030\001 \001(\005:\002-1\022\014" + "\n\004xuid\030\002 \001(\004\022\014\n\004name\030\003 \001(\t\022\022\n\nteamnumber" + "\030\004 \001(\005\022@\n\nnomination\030\005 \001(\0132,.CCSUsrMsg_E" + "ndOfMatchAllPlayersData.Accolade\022)\n\005item" + "s\030\006 \003(\0132\032.CEconItemPreviewDataBlock\022\023\n\013p" + "layercolor\030\007 \001(\005\022\r\n\005isbot\030\010 \001(\010\"\350\006\n\034CCSU" + "srMsg_RoundEndReportData\022H\n\017init_conditi" + "ons\030\001 \001(\0132/.CCSUsrMsg_RoundEndReportData" + ".InitialConditions\022B\n\022all_rer_event_data" + "\030\002 \003(\0132&.CCSUsrMsg_RoundEndReportData.Re" + "rEvent\032\335\004\n\010RerEvent\022\021\n\ttimestamp\030\001 \001(\002\022\026" + "\n\016terrorist_odds\030\002 \001(\005\022\020\n\010ct_alive\030\003 \001(\005" + "\022\017\n\007t_alive\030\004 \001(\005\022B\n\013victim_data\030\005 \001(\0132-" + ".CCSUsrMsg_RoundEndReportData.RerEvent.V" + "ictim\022H\n\016objective_data\030\006 \001(\01320.CCSUsrMs" + "g_RoundEndReportData.RerEvent.Objective\022" + "F\n\017all_damage_data\030\007 \003(\0132-.CCSUsrMsg_Rou" + "ndEndReportData.RerEvent.Damage\032s\n\006Victi" + "m\022\023\n\013team_number\030\001 \001(\005\022\026\n\nplayerslot\030\002 \001" + "(\005:\002-1\022\014\n\004xuid\030\003 \001(\004\022\r\n\005color\030\004 \001(\005\022\016\n\006i" + "s_bot\030\005 \001(\010\022\017\n\007is_dead\030\006 \001(\010\032\031\n\tObjectiv" + "e\022\014\n\004type\030\001 \001(\005\032\234\001\n\006Damage\022\034\n\020other_play" + "erslot\030\001 \001(\005:\002-1\022\022\n\nother_xuid\030\002 \001(\004\022\026\n\016" + "health_removed\030\003 \001(\005\022\020\n\010num_hits\030\004 \001(\005\022\035" + "\n\025return_health_removed\030\005 \001(\005\022\027\n\017return_" + "num_hits\030\006 \001(\005\032Z\n\021InitialConditions\022\026\n\016c" + "t_equip_value\030\001 \001(\005\022\025\n\rt_equip_value\030\002 \001" + "(\005\022\026\n\016terrorist_odds\030\003 \001(\005\"\323\001\n\037CCSUsrMsg" + "_PostRoundDamageReport\022\022\n\nother_xuid\030\001 \001" + "(\004\022\027\n\017given_kill_type\030\002 \001(\005\022\034\n\024given_hea" + "lth_removed\030\003 \001(\005\022\026\n\016given_num_hits\030\004 \001(" + "\005\022\027\n\017taken_kill_type\030\005 \001(\005\022\034\n\024taken_heal" + "th_removed\030\006 \001(\005\022\026\n\016taken_num_hits\030\007 \001(\005" + "\"*\n\032CCSUsrMsg_CurrentRoundOdds\022\014\n\004odds\030\001" + " \001(\005\"F\n\023CCSUsrMsg_DeepStats\022/\n\005stats\030\001 \001" + "(\0132 .CMsgGCCStrike15_ClientDeepStats\"\226\001\n" + "\023CCSUsrMsg_ShootInfo\022\024\n\014frame_number\030\001 \001" + "(\005\022)\n\021hitbox_transforms\030\002 \003(\0132\016.CMsgTran" + "sform\022\036\n\tshoot_pos\030\003 \001(\0132\013.CMsgVector\022\036\n" + "\tshoot_dir\030\004 \001(\0132\013.CMsgQAngle\"#\n\022CCSUsrM" + "sg_ResetHud\022\r\n\005reset\030\001 \001(\010\"$\n\023CCSUsrMsg_" + "GameTitle\022\r\n\005dummy\030\001 \001(\005\"\'\n\026CCSUsrMsg_Re" + "questState\022\r\n\005dummy\030\001 \001(\005\",\n\033CCSUsrMsg_S" + "topSpectatorMode\022\r\n\005dummy\030\001 \001(\005\",\n\033CCSUs" + "rMsg_DisconnectToLobby\022\r\n\005dummy\030\001 \001(\005\"%\n" + "\024CCSUsrMsg_ClientInfo\022\r\n\005dummy\030\001 \001(\005\"\204\001\n" + "\035CCSUsrMsg_ServerRankRevealAll\022\035\n\025second" + "s_till_shutdown\030\001 \001(\005\022D\n\013reservation\030\002 \001" + "(\0132/.CMsgGCCStrike15_v2_MatchmakingGC2Se" + "rverReserve\"N\n\030CCSUsrMsgPreMatchSayText\022" + "\022\n\naccount_id\030\001 \001(\r\022\014\n\004text\030\002 \001(\t\022\020\n\010all" + "_chat\030\003 \001(\010\"O\n\027CCSUsrMsg_CounterStrafe\022\033" + "\n\023press_to_release_ns\030\001 \001(\005\022\027\n\017total_key" + "s_down\030\002 \001(\005\"\361\001\n\032CCSUsrMsg_DamagePredict" + "ion\022\023\n\013command_num\030\001 \001(\005\022\022\n\npellet_idx\030\002" + " \001(\005\022\023\n\013victim_slot\030\003 \001(\005\022\036\n\026victim_star" + "ting_health\030\004 \001(\005\022\025\n\rvictim_damage\030\005 \001(\005" + "\022\036\n\tshoot_pos\030\006 \001(\0132\013.CMsgVector\022\036\n\tshoo" + "t_dir\030\007 \001(\0132\013.CMsgQAngle\022\036\n\taim_punch\030\010 " + "\001(\0132\013.CMsgQAngle\"J\n CCSUsrMsg_RecurringM" + "issionSchema\022\016\n\006period\030\001 \001(\r\022\026\n\016mission_" + "schema\030\002 \001(\014\"\312\001\n\033CCSUsrMsg_SendPlayerLoa" + "dout\0229\n\007loadout\030\001 \003(\0132(.CCSUsrMsg_SendPl" + "ayerLoadout.LoadoutItem\022\026\n\nplayerslot\030\002 " + "\001(\005:\002-1\032X\n\013LoadoutItem\022-\n\tecon_item\030\001 \001(" + "\0132\032.CEconItemPreviewDataBlock\022\014\n\004team\030\002 " + "\001(\005\022\014\n\004slot\030\003 \001(\005*\323\017\n\026ECstrike15UserMess" + "ages\022\023\n\016CS_UM_VGUIMenu\020\255\002\022\021\n\014CS_UM_Geige" + "r\020\256\002\022\020\n\013CS_UM_Train\020\257\002\022\022\n\rCS_UM_HudText\020" + "\260\002\022\022\n\rCS_UM_SayText\020\261\002\022\023\n\016CS_UM_SayText2" + "\020\262\002\022\022\n\rCS_UM_TextMsg\020\263\002\022\021\n\014CS_UM_HudMsg\020" + "\264\002\022\023\n\016CS_UM_ResetHud\020\265\002\022\024\n\017CS_UM_GameTit" + "le\020\266\002\022\020\n\013CS_UM_Shake\020\270\002\022\017\n\nCS_UM_Fade\020\271\002" + "\022\021\n\014CS_UM_Rumble\020\272\002\022\027\n\022CS_UM_CloseCaptio" + "n\020\273\002\022\035\n\030CS_UM_CloseCaptionDirect\020\274\002\022\024\n\017C" + "S_UM_SendAudio\020\275\002\022\023\n\016CS_UM_RawAudio\020\276\002\022\024" + "\n\017CS_UM_VoiceMask\020\277\002\022\027\n\022CS_UM_RequestSta" + "te\020\300\002\022\021\n\014CS_UM_Damage\020\301\002\022\024\n\017CS_UM_RadioT" + "ext\020\302\002\022\023\n\016CS_UM_HintText\020\303\002\022\026\n\021CS_UM_Key" + "HintText\020\304\002\022%\n CS_UM_ProcessSpottedEntit" + "yUpdate\020\305\002\022\027\n\022CS_UM_ReloadEffect\020\306\002\022\026\n\021C" + "S_UM_AdjustMoney\020\307\002\022\032\n\025CS_UM_UpdateTeamM" + "oney\020\310\002\022\034\n\027CS_UM_StopSpectatorMode\020\311\002\022\022\n" + "\rCS_UM_KillCam\020\312\002\022\033\n\026CS_UM_DesiredTimesc" + "ale\020\313\002\022\033\n\026CS_UM_CurrentTimescale\020\314\002\022\033\n\026C" + "S_UM_AchievementEvent\020\315\002\022\035\n\030CS_UM_MatchE" + "ndConditions\020\316\002\022\034\n\027CS_UM_DisconnectToLob" + "by\020\317\002\022\034\n\027CS_UM_PlayerStatsUpdate\020\320\002\022\025\n\020C" + "S_UM_ClientInfo\020\323\002\022\023\n\016CS_UM_XRankGet\020\324\002\022" + "\023\n\016CS_UM_XRankUpd\020\325\002\022\031\n\024CS_UM_CallVoteFa" + "iled\020\331\002\022\024\n\017CS_UM_VoteStart\020\332\002\022\023\n\016CS_UM_V" + "otePass\020\333\002\022\025\n\020CS_UM_VoteFailed\020\334\002\022\024\n\017CS_" + "UM_VoteSetup\020\335\002\022\036\n\031CS_UM_ServerRankRevea" + "lAll\020\336\002\022\'\n\"CS_UM_SendLastKillerDamageToC" + "lient\020\337\002\022\033\n\026CS_UM_ServerRankUpdate\020\340\002\022\025\n" + "\020CS_UM_ItemPickup\020\341\002\022\023\n\016CS_UM_ShowMenu\020\342" + "\002\022\022\n\rCS_UM_BarTime\020\343\002\022\025\n\020CS_UM_AmmoDenie" + "d\020\344\002\022\032\n\025CS_UM_MarkAchievement\020\345\002\022\033\n\026CS_U" + "M_MatchStatsUpdate\020\346\002\022\023\n\016CS_UM_ItemDrop\020" + "\347\002\022\036\n\031CS_UM_SendPlayerItemDrops\020\351\002\022\037\n\032CS" + "_UM_RoundBackupFilenames\020\352\002\022\036\n\031CS_UM_Sen" + "dPlayerItemFound\020\353\002\022\024\n\017CS_UM_ReportHit\020\354" + "\002\022\023\n\016CS_UM_XpUpdate\020\355\002\022\030\n\023CS_UM_QuestPro" + "gress\020\356\002\022\037\n\032CS_UM_ScoreLeaderboardData\020\357" + "\002\022&\n!CS_UM_PlayerDecalDigitalSignature\020\360" + "\002\022\026\n\021CS_UM_WeaponSound\020\361\002\022 \n\033CS_UM_Updat" + "eScreenHealthBar\020\362\002\022!\n\034CS_UM_EntityOutli" + "neHighlight\020\363\002\022\017\n\nCS_UM_SSUI\020\364\002\022\030\n\023CS_UM" + "_SurvivalStats\020\365\002\022\035\n\030CS_UM_DisconnectToL" + "obby2\020\366\002\022#\n\036CS_UM_EndOfMatchAllPlayersDa" + "ta\020\367\002\022 \n\033CS_UM_PostRoundDamageReport\020\370\002\022" + "\035\n\030CS_UM_RoundEndReportData\020\373\002\022\033\n\026CS_UM_" + "CurrentRoundOdds\020\374\002\022\024\n\017CS_UM_DeepStats\020\375" + "\002\022\024\n\017CS_UM_ShootInfo\020\377\002\022\030\n\023CS_UM_Counter" + "Strafe\020\201\003\022\033\n\026CS_UM_DamagePrediction\020\202\003\022!" + "\n\034CS_UM_RecurringMissionSchema\020\203\003\022\034\n\027CS_" + "UM_SendPlayerLoadout\020\204\003*\210\001\n\"ECSUsrMsg_Di" + "sconnectToLobby_Action\0220\n,k_ECSUsrMsg_Di" + "sconnectToLobby_Action_Default\020\000\0220\n,k_EC" + "SUsrMsg_DisconnectToLobby_Action_GoQueue" + "\020\001" ; static const ::_pbi::DescriptorTable* const descriptor_table_cstrike15_5fusermessages_2eproto_deps[2] = { &::descriptor_table_cstrike15_5fgcmessages_2eproto, @@ -2958,7 +2970,7 @@ static const ::_pbi::DescriptorTable* const descriptor_table_cstrike15_5fusermes }; static ::_pbi::once_flag descriptor_table_cstrike15_5fusermessages_2eproto_once; const ::_pbi::DescriptorTable descriptor_table_cstrike15_5fusermessages_2eproto = { - false, false, 10594, descriptor_table_protodef_cstrike15_5fusermessages_2eproto, + false, false, 10682, descriptor_table_protodef_cstrike15_5fusermessages_2eproto, "cstrike15_usermessages.proto", &descriptor_table_cstrike15_5fusermessages_2eproto_once, descriptor_table_cstrike15_5fusermessages_2eproto_deps, 2, 89, schemas, file_default_instances, TableStruct_cstrike15_5fusermessages_2eproto::offsets, @@ -3012,7 +3024,6 @@ bool ECstrike15UserMessages_IsValid(int value) { case 334: case 335: case 336: - case 338: case 339: case 340: case 341: @@ -3031,7 +3042,6 @@ bool ECstrike15UserMessages_IsValid(int value) { case 357: case 358: case 359: - case 360: case 361: case 362: case 363: @@ -3055,6 +3065,7 @@ bool ECstrike15UserMessages_IsValid(int value) { case 385: case 386: case 387: + case 388: return true; default: return false; @@ -18430,197 +18441,6 @@ ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_ItemDrop::GetMetadata() const { // =================================================================== -class CCSUsrMsg_GlowPropTurnOff::_Internal { - public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_entidx(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } -}; - -CCSUsrMsg_GlowPropTurnOff::CCSUsrMsg_GlowPropTurnOff(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned) - : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { - SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CCSUsrMsg_GlowPropTurnOff) -} -CCSUsrMsg_GlowPropTurnOff::CCSUsrMsg_GlowPropTurnOff(const CCSUsrMsg_GlowPropTurnOff& from) - : ::PROTOBUF_NAMESPACE_ID::Message() { - CCSUsrMsg_GlowPropTurnOff* const _this = this; (void)_this; - new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){from._impl_._has_bits_} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.entidx_){}}; - - _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.entidx_ = from._impl_.entidx_; - // @@protoc_insertion_point(copy_constructor:CCSUsrMsg_GlowPropTurnOff) -} - -inline void CCSUsrMsg_GlowPropTurnOff::SharedCtor( - ::_pb::Arena* arena, bool is_message_owned) { - (void)arena; - (void)is_message_owned; - new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.entidx_){-1} - }; -} - -CCSUsrMsg_GlowPropTurnOff::~CCSUsrMsg_GlowPropTurnOff() { - // @@protoc_insertion_point(destructor:CCSUsrMsg_GlowPropTurnOff) - if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { - (void)arena; - return; - } - SharedDtor(); -} - -inline void CCSUsrMsg_GlowPropTurnOff::SharedDtor() { - GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); -} - -void CCSUsrMsg_GlowPropTurnOff::SetCachedSize(int size) const { - _impl_._cached_size_.Set(size); -} - -void CCSUsrMsg_GlowPropTurnOff::Clear() { -// @@protoc_insertion_point(message_clear_start:CCSUsrMsg_GlowPropTurnOff) - uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.entidx_ = -1; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); -} - -const char* CCSUsrMsg_GlowPropTurnOff::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { -#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure - _Internal::HasBits has_bits{}; - while (!ctx->Done(&ptr)) { - uint32_t tag; - ptr = ::_pbi::ReadTag(ptr, &tag); - switch (tag >> 3) { - // optional int32 entidx = 1 [default = -1]; - case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_entidx(&has_bits); - _impl_.entidx_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - default: - goto handle_unusual; - } // switch - handle_unusual: - if ((tag == 0) || ((tag & 7) == 4)) { - CHK_(ptr); - ctx->SetLastTag(tag); - goto message_done; - } - ptr = UnknownFieldParse( - tag, - _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), - ptr, ctx); - CHK_(ptr != nullptr); - } // while -message_done: - _impl_._has_bits_.Or(has_bits); - return ptr; -failure: - ptr = nullptr; - goto message_done; -#undef CHK_ -} - -uint8_t* CCSUsrMsg_GlowPropTurnOff::_InternalSerialize( - uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CCSUsrMsg_GlowPropTurnOff) - uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional int32 entidx = 1 [default = -1]; - if (cached_has_bits & 0x00000001u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(1, this->_internal_entidx(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:CCSUsrMsg_GlowPropTurnOff) - return target; -} - -size_t CCSUsrMsg_GlowPropTurnOff::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CCSUsrMsg_GlowPropTurnOff) - size_t total_size = 0; - - uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // optional int32 entidx = 1 [default = -1]; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_entidx()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CCSUsrMsg_GlowPropTurnOff::_class_data_ = { - ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CCSUsrMsg_GlowPropTurnOff::MergeImpl -}; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CCSUsrMsg_GlowPropTurnOff::GetClassData() const { return &_class_data_; } - - -void CCSUsrMsg_GlowPropTurnOff::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CCSUsrMsg_GlowPropTurnOff) - GOOGLE_DCHECK_NE(&from, _this); - uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_has_entidx()) { - _this->_internal_set_entidx(from._internal_entidx()); - } - _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); -} - -void CCSUsrMsg_GlowPropTurnOff::CopyFrom(const CCSUsrMsg_GlowPropTurnOff& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CCSUsrMsg_GlowPropTurnOff) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -bool CCSUsrMsg_GlowPropTurnOff::IsInitialized() const { - return true; -} - -void CCSUsrMsg_GlowPropTurnOff::InternalSwap(CCSUsrMsg_GlowPropTurnOff* other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.entidx_, other->_impl_.entidx_); -} - -::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_GlowPropTurnOff::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[57]); -} - -// =================================================================== - class CCSUsrMsg_RoundBackupFilenames::_Internal { public: using HasBits = decltype(std::declval()._impl_._has_bits_); @@ -18971,7 +18791,7 @@ void CCSUsrMsg_RoundBackupFilenames::InternalSwap(CCSUsrMsg_RoundBackupFilenames ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_RoundBackupFilenames::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[58]); + file_level_metadata_cstrike15_5fusermessages_2eproto[57]); } // =================================================================== @@ -19236,7 +19056,7 @@ void CCSUsrMsg_SSUI::InternalSwap(CCSUsrMsg_SSUI* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_SSUI::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[59]); + file_level_metadata_cstrike15_5fusermessages_2eproto[58]); } // =================================================================== @@ -19529,7 +19349,7 @@ void CCSUsrMsg_SurvivalStats_Fact::InternalSwap(CCSUsrMsg_SurvivalStats_Fact* ot ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_SurvivalStats_Fact::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[60]); + file_level_metadata_cstrike15_5fusermessages_2eproto[59]); } // =================================================================== @@ -19794,7 +19614,7 @@ void CCSUsrMsg_SurvivalStats_Placement::InternalSwap(CCSUsrMsg_SurvivalStats_Pla ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_SurvivalStats_Placement::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[61]); + file_level_metadata_cstrike15_5fusermessages_2eproto[60]); } // =================================================================== @@ -20115,7 +19935,7 @@ void CCSUsrMsg_SurvivalStats_Damage::InternalSwap(CCSUsrMsg_SurvivalStats_Damage ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_SurvivalStats_Damage::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[62]); + file_level_metadata_cstrike15_5fusermessages_2eproto[61]); } // =================================================================== @@ -20454,7 +20274,7 @@ void CCSUsrMsg_SurvivalStats::InternalSwap(CCSUsrMsg_SurvivalStats* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_SurvivalStats::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[63]); + file_level_metadata_cstrike15_5fusermessages_2eproto[62]); } // =================================================================== @@ -20719,7 +20539,7 @@ void CCSUsrMsg_EndOfMatchAllPlayersData_Accolade::InternalSwap(CCSUsrMsg_EndOfMa ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_EndOfMatchAllPlayersData_Accolade::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[64]); + file_level_metadata_cstrike15_5fusermessages_2eproto[63]); } // =================================================================== @@ -21184,7 +21004,7 @@ void CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData::InternalSwap(CCSUsrMsg_EndOf ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[65]); + file_level_metadata_cstrike15_5fusermessages_2eproto[64]); } // =================================================================== @@ -21409,7 +21229,7 @@ void CCSUsrMsg_EndOfMatchAllPlayersData::InternalSwap(CCSUsrMsg_EndOfMatchAllPla ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_EndOfMatchAllPlayersData::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[66]); + file_level_metadata_cstrike15_5fusermessages_2eproto[65]); } // =================================================================== @@ -21760,7 +21580,7 @@ void CCSUsrMsg_RoundEndReportData_RerEvent_Victim::InternalSwap(CCSUsrMsg_RoundE ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_RoundEndReportData_RerEvent_Victim::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[67]); + file_level_metadata_cstrike15_5fusermessages_2eproto[66]); } // =================================================================== @@ -21951,7 +21771,7 @@ void CCSUsrMsg_RoundEndReportData_RerEvent_Objective::InternalSwap(CCSUsrMsg_Rou ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_RoundEndReportData_RerEvent_Objective::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[68]); + file_level_metadata_cstrike15_5fusermessages_2eproto[67]); } // =================================================================== @@ -22302,7 +22122,7 @@ void CCSUsrMsg_RoundEndReportData_RerEvent_Damage::InternalSwap(CCSUsrMsg_RoundE ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_RoundEndReportData_RerEvent_Damage::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[69]); + file_level_metadata_cstrike15_5fusermessages_2eproto[68]); } // =================================================================== @@ -22719,7 +22539,7 @@ void CCSUsrMsg_RoundEndReportData_RerEvent::InternalSwap(CCSUsrMsg_RoundEndRepor ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_RoundEndReportData_RerEvent::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[70]); + file_level_metadata_cstrike15_5fusermessages_2eproto[69]); } // =================================================================== @@ -22984,7 +22804,7 @@ void CCSUsrMsg_RoundEndReportData_InitialConditions::InternalSwap(CCSUsrMsg_Roun ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_RoundEndReportData_InitialConditions::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[71]); + file_level_metadata_cstrike15_5fusermessages_2eproto[70]); } // =================================================================== @@ -23224,7 +23044,7 @@ void CCSUsrMsg_RoundEndReportData::InternalSwap(CCSUsrMsg_RoundEndReportData* ot ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_RoundEndReportData::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[72]); + file_level_metadata_cstrike15_5fusermessages_2eproto[71]); } // =================================================================== @@ -23601,7 +23421,7 @@ void CCSUsrMsg_PostRoundDamageReport::InternalSwap(CCSUsrMsg_PostRoundDamageRepo ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_PostRoundDamageReport::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[73]); + file_level_metadata_cstrike15_5fusermessages_2eproto[72]); } // =================================================================== @@ -23792,7 +23612,7 @@ void CCSUsrMsg_CurrentRoundOdds::InternalSwap(CCSUsrMsg_CurrentRoundOdds* other) ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_CurrentRoundOdds::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[74]); + file_level_metadata_cstrike15_5fusermessages_2eproto[73]); } // =================================================================== @@ -24002,7 +23822,7 @@ void CCSUsrMsg_DeepStats::InternalSwap(CCSUsrMsg_DeepStats* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_DeepStats::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[75]); + file_level_metadata_cstrike15_5fusermessages_2eproto[74]); } // =================================================================== @@ -24340,7 +24160,7 @@ void CCSUsrMsg_ShootInfo::InternalSwap(CCSUsrMsg_ShootInfo* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_ShootInfo::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[76]); + file_level_metadata_cstrike15_5fusermessages_2eproto[75]); } // =================================================================== @@ -24531,7 +24351,7 @@ void CCSUsrMsg_ResetHud::InternalSwap(CCSUsrMsg_ResetHud* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_ResetHud::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[77]); + file_level_metadata_cstrike15_5fusermessages_2eproto[76]); } // =================================================================== @@ -24722,7 +24542,7 @@ void CCSUsrMsg_GameTitle::InternalSwap(CCSUsrMsg_GameTitle* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_GameTitle::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[78]); + file_level_metadata_cstrike15_5fusermessages_2eproto[77]); } // =================================================================== @@ -24913,7 +24733,7 @@ void CCSUsrMsg_RequestState::InternalSwap(CCSUsrMsg_RequestState* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_RequestState::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[79]); + file_level_metadata_cstrike15_5fusermessages_2eproto[78]); } // =================================================================== @@ -25104,7 +24924,7 @@ void CCSUsrMsg_StopSpectatorMode::InternalSwap(CCSUsrMsg_StopSpectatorMode* othe ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_StopSpectatorMode::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[80]); + file_level_metadata_cstrike15_5fusermessages_2eproto[79]); } // =================================================================== @@ -25295,198 +25115,7 @@ void CCSUsrMsg_DisconnectToLobby::InternalSwap(CCSUsrMsg_DisconnectToLobby* othe ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_DisconnectToLobby::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[81]); -} - -// =================================================================== - -class CCSUsrMsg_WarmupHasEnded::_Internal { - public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_dummy(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } -}; - -CCSUsrMsg_WarmupHasEnded::CCSUsrMsg_WarmupHasEnded(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned) - : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { - SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CCSUsrMsg_WarmupHasEnded) -} -CCSUsrMsg_WarmupHasEnded::CCSUsrMsg_WarmupHasEnded(const CCSUsrMsg_WarmupHasEnded& from) - : ::PROTOBUF_NAMESPACE_ID::Message() { - CCSUsrMsg_WarmupHasEnded* const _this = this; (void)_this; - new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){from._impl_._has_bits_} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.dummy_){}}; - - _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.dummy_ = from._impl_.dummy_; - // @@protoc_insertion_point(copy_constructor:CCSUsrMsg_WarmupHasEnded) -} - -inline void CCSUsrMsg_WarmupHasEnded::SharedCtor( - ::_pb::Arena* arena, bool is_message_owned) { - (void)arena; - (void)is_message_owned; - new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.dummy_){0} - }; -} - -CCSUsrMsg_WarmupHasEnded::~CCSUsrMsg_WarmupHasEnded() { - // @@protoc_insertion_point(destructor:CCSUsrMsg_WarmupHasEnded) - if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { - (void)arena; - return; - } - SharedDtor(); -} - -inline void CCSUsrMsg_WarmupHasEnded::SharedDtor() { - GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); -} - -void CCSUsrMsg_WarmupHasEnded::SetCachedSize(int size) const { - _impl_._cached_size_.Set(size); -} - -void CCSUsrMsg_WarmupHasEnded::Clear() { -// @@protoc_insertion_point(message_clear_start:CCSUsrMsg_WarmupHasEnded) - uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.dummy_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); -} - -const char* CCSUsrMsg_WarmupHasEnded::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { -#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure - _Internal::HasBits has_bits{}; - while (!ctx->Done(&ptr)) { - uint32_t tag; - ptr = ::_pbi::ReadTag(ptr, &tag); - switch (tag >> 3) { - // optional int32 dummy = 1; - case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_dummy(&has_bits); - _impl_.dummy_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - default: - goto handle_unusual; - } // switch - handle_unusual: - if ((tag == 0) || ((tag & 7) == 4)) { - CHK_(ptr); - ctx->SetLastTag(tag); - goto message_done; - } - ptr = UnknownFieldParse( - tag, - _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), - ptr, ctx); - CHK_(ptr != nullptr); - } // while -message_done: - _impl_._has_bits_.Or(has_bits); - return ptr; -failure: - ptr = nullptr; - goto message_done; -#undef CHK_ -} - -uint8_t* CCSUsrMsg_WarmupHasEnded::_InternalSerialize( - uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CCSUsrMsg_WarmupHasEnded) - uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional int32 dummy = 1; - if (cached_has_bits & 0x00000001u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(1, this->_internal_dummy(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:CCSUsrMsg_WarmupHasEnded) - return target; -} - -size_t CCSUsrMsg_WarmupHasEnded::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CCSUsrMsg_WarmupHasEnded) - size_t total_size = 0; - - uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // optional int32 dummy = 1; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_dummy()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CCSUsrMsg_WarmupHasEnded::_class_data_ = { - ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CCSUsrMsg_WarmupHasEnded::MergeImpl -}; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CCSUsrMsg_WarmupHasEnded::GetClassData() const { return &_class_data_; } - - -void CCSUsrMsg_WarmupHasEnded::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CCSUsrMsg_WarmupHasEnded) - GOOGLE_DCHECK_NE(&from, _this); - uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_has_dummy()) { - _this->_internal_set_dummy(from._internal_dummy()); - } - _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); -} - -void CCSUsrMsg_WarmupHasEnded::CopyFrom(const CCSUsrMsg_WarmupHasEnded& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CCSUsrMsg_WarmupHasEnded) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -bool CCSUsrMsg_WarmupHasEnded::IsInitialized() const { - return true; -} - -void CCSUsrMsg_WarmupHasEnded::InternalSwap(CCSUsrMsg_WarmupHasEnded* other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.dummy_, other->_impl_.dummy_); -} - -::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_WarmupHasEnded::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[82]); + file_level_metadata_cstrike15_5fusermessages_2eproto[80]); } // =================================================================== @@ -25677,7 +25306,7 @@ void CCSUsrMsg_ClientInfo::InternalSwap(CCSUsrMsg_ClientInfo* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_ClientInfo::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[83]); + file_level_metadata_cstrike15_5fusermessages_2eproto[81]); } // =================================================================== @@ -25928,7 +25557,7 @@ void CCSUsrMsg_ServerRankRevealAll::InternalSwap(CCSUsrMsg_ServerRankRevealAll* ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_ServerRankRevealAll::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[84]); + file_level_metadata_cstrike15_5fusermessages_2eproto[82]); } // =================================================================== @@ -26224,7 +25853,7 @@ void CCSUsrMsgPreMatchSayText::InternalSwap(CCSUsrMsgPreMatchSayText* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsgPreMatchSayText::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[85]); + file_level_metadata_cstrike15_5fusermessages_2eproto[83]); } // =================================================================== @@ -26461,7 +26090,7 @@ void CCSUsrMsg_CounterStrafe::InternalSwap(CCSUsrMsg_CounterStrafe* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_CounterStrafe::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[86]); + file_level_metadata_cstrike15_5fusermessages_2eproto[84]); } // =================================================================== @@ -26928,7 +26557,7 @@ void CCSUsrMsg_DamagePrediction::InternalSwap(CCSUsrMsg_DamagePrediction* other) ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_DamagePrediction::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[87]); + file_level_metadata_cstrike15_5fusermessages_2eproto[85]); } // =================================================================== @@ -27178,53 +26807,563 @@ void CCSUsrMsg_RecurringMissionSchema::InternalSwap(CCSUsrMsg_RecurringMissionSc ::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_RecurringMissionSchema::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, - file_level_metadata_cstrike15_5fusermessages_2eproto[88]); + file_level_metadata_cstrike15_5fusermessages_2eproto[86]); } -// @@protoc_insertion_point(namespace_scope) -PROTOBUF_NAMESPACE_OPEN -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_VGUIMenu_Keys* -Arena::CreateMaybeMessage< ::CCSUsrMsg_VGUIMenu_Keys >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_VGUIMenu_Keys >(arena); -} -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_VGUIMenu* -Arena::CreateMaybeMessage< ::CCSUsrMsg_VGUIMenu >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_VGUIMenu >(arena); -} -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_Geiger* -Arena::CreateMaybeMessage< ::CCSUsrMsg_Geiger >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_Geiger >(arena); +// =================================================================== + +class CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static const ::CEconItemPreviewDataBlock& econ_item(const CCSUsrMsg_SendPlayerLoadout_LoadoutItem* msg); + static void set_has_econ_item(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } + static void set_has_team(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_slot(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } +}; + +const ::CEconItemPreviewDataBlock& +CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_Internal::econ_item(const CCSUsrMsg_SendPlayerLoadout_LoadoutItem* msg) { + return *msg->_impl_.econ_item_; } -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_Train* -Arena::CreateMaybeMessage< ::CCSUsrMsg_Train >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_Train >(arena); +void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::clear_econ_item() { + if (_impl_.econ_item_ != nullptr) _impl_.econ_item_->Clear(); + _impl_._has_bits_[0] &= ~0x00000001u; } -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_HudText* -Arena::CreateMaybeMessage< ::CCSUsrMsg_HudText >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_HudText >(arena); +CCSUsrMsg_SendPlayerLoadout_LoadoutItem::CCSUsrMsg_SendPlayerLoadout_LoadoutItem(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { + SharedCtor(arena, is_message_owned); + // @@protoc_insertion_point(arena_constructor:CCSUsrMsg_SendPlayerLoadout.LoadoutItem) } -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_HudMsg* -Arena::CreateMaybeMessage< ::CCSUsrMsg_HudMsg >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_HudMsg >(arena); +CCSUsrMsg_SendPlayerLoadout_LoadoutItem::CCSUsrMsg_SendPlayerLoadout_LoadoutItem(const CCSUsrMsg_SendPlayerLoadout_LoadoutItem& from) + : ::PROTOBUF_NAMESPACE_ID::Message() { + CCSUsrMsg_SendPlayerLoadout_LoadoutItem* const _this = this; (void)_this; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.econ_item_){nullptr} + , decltype(_impl_.team_){} + , decltype(_impl_.slot_){}}; + + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + if (from._internal_has_econ_item()) { + _this->_impl_.econ_item_ = new ::CEconItemPreviewDataBlock(*from._impl_.econ_item_); + } + ::memcpy(&_impl_.team_, &from._impl_.team_, + static_cast(reinterpret_cast(&_impl_.slot_) - + reinterpret_cast(&_impl_.team_)) + sizeof(_impl_.slot_)); + // @@protoc_insertion_point(copy_constructor:CCSUsrMsg_SendPlayerLoadout.LoadoutItem) } -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_Shake* -Arena::CreateMaybeMessage< ::CCSUsrMsg_Shake >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_Shake >(arena); + +inline void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::SharedCtor( + ::_pb::Arena* arena, bool is_message_owned) { + (void)arena; + (void)is_message_owned; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.econ_item_){nullptr} + , decltype(_impl_.team_){0} + , decltype(_impl_.slot_){0} + }; } -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_Fade* -Arena::CreateMaybeMessage< ::CCSUsrMsg_Fade >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_Fade >(arena); + +CCSUsrMsg_SendPlayerLoadout_LoadoutItem::~CCSUsrMsg_SendPlayerLoadout_LoadoutItem() { + // @@protoc_insertion_point(destructor:CCSUsrMsg_SendPlayerLoadout.LoadoutItem) + if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { + (void)arena; + return; + } + SharedDtor(); } -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_Rumble* -Arena::CreateMaybeMessage< ::CCSUsrMsg_Rumble >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_Rumble >(arena); + +inline void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::SharedDtor() { + GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + if (this != internal_default_instance()) delete _impl_.econ_item_; } -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_CloseCaption* -Arena::CreateMaybeMessage< ::CCSUsrMsg_CloseCaption >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_CloseCaption >(arena); + +void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::SetCachedSize(int size) const { + _impl_._cached_size_.Set(size); } -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_CloseCaptionDirect* -Arena::CreateMaybeMessage< ::CCSUsrMsg_CloseCaptionDirect >(Arena* arena) { + +void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::Clear() { +// @@protoc_insertion_point(message_clear_start:CCSUsrMsg_SendPlayerLoadout.LoadoutItem) + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + GOOGLE_DCHECK(_impl_.econ_item_ != nullptr); + _impl_.econ_item_->Clear(); + } + if (cached_has_bits & 0x00000006u) { + ::memset(&_impl_.team_, 0, static_cast( + reinterpret_cast(&_impl_.slot_) - + reinterpret_cast(&_impl_.team_)) + sizeof(_impl_.slot_)); + } + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); +} + +const char* CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; + while (!ctx->Done(&ptr)) { + uint32_t tag; + ptr = ::_pbi::ReadTag(ptr, &tag); + switch (tag >> 3) { + // optional .CEconItemPreviewDataBlock econ_item = 1; + case 1: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { + ptr = ctx->ParseMessage(_internal_mutable_econ_item(), ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional int32 team = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_team(&has_bits); + _impl_.team_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional int32 slot = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { + _Internal::set_has_slot(&has_bits); + _impl_.slot_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + default: + goto handle_unusual; + } // switch + handle_unusual: + if ((tag == 0) || ((tag & 7) == 4)) { + CHK_(ptr); + ctx->SetLastTag(tag); + goto message_done; + } + ptr = UnknownFieldParse( + tag, + _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), + ptr, ctx); + CHK_(ptr != nullptr); + } // while +message_done: + _impl_._has_bits_.Or(has_bits); + return ptr; +failure: + ptr = nullptr; + goto message_done; +#undef CHK_ +} + +uint8_t* CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:CCSUsrMsg_SendPlayerLoadout.LoadoutItem) + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + cached_has_bits = _impl_._has_bits_[0]; + // optional .CEconItemPreviewDataBlock econ_item = 1; + if (cached_has_bits & 0x00000001u) { + target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: + InternalWriteMessage(1, _Internal::econ_item(this), + _Internal::econ_item(this).GetCachedSize(), target, stream); + } + + // optional int32 team = 2; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(2, this->_internal_team(), target); + } + + // optional int32 slot = 3; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(3, this->_internal_slot(), target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:CCSUsrMsg_SendPlayerLoadout.LoadoutItem) + return target; +} + +size_t CCSUsrMsg_SendPlayerLoadout_LoadoutItem::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CCSUsrMsg_SendPlayerLoadout.LoadoutItem) + size_t total_size = 0; + + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + // optional .CEconItemPreviewDataBlock econ_item = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize( + *_impl_.econ_item_); + } + + // optional int32 team = 2; + if (cached_has_bits & 0x00000002u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_team()); + } + + // optional int32 slot = 3; + if (cached_has_bits & 0x00000004u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_slot()); + } + + } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, + CCSUsrMsg_SendPlayerLoadout_LoadoutItem::MergeImpl +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CCSUsrMsg_SendPlayerLoadout_LoadoutItem::GetClassData() const { return &_class_data_; } + + +void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CCSUsrMsg_SendPlayerLoadout.LoadoutItem) + GOOGLE_DCHECK_NE(&from, _this); + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000007u) { + if (cached_has_bits & 0x00000001u) { + _this->_internal_mutable_econ_item()->::CEconItemPreviewDataBlock::MergeFrom( + from._internal_econ_item()); + } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.team_ = from._impl_.team_; + } + if (cached_has_bits & 0x00000004u) { + _this->_impl_.slot_ = from._impl_.slot_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } + _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); +} + +void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::CopyFrom(const CCSUsrMsg_SendPlayerLoadout_LoadoutItem& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CCSUsrMsg_SendPlayerLoadout.LoadoutItem) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool CCSUsrMsg_SendPlayerLoadout_LoadoutItem::IsInitialized() const { + return true; +} + +void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::InternalSwap(CCSUsrMsg_SendPlayerLoadout_LoadoutItem* other) { + using std::swap; + _internal_metadata_.InternalSwap(&other->_internal_metadata_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CCSUsrMsg_SendPlayerLoadout_LoadoutItem, _impl_.slot_) + + sizeof(CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_impl_.slot_) + - PROTOBUF_FIELD_OFFSET(CCSUsrMsg_SendPlayerLoadout_LoadoutItem, _impl_.econ_item_)>( + reinterpret_cast(&_impl_.econ_item_), + reinterpret_cast(&other->_impl_.econ_item_)); +} + +::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_SendPlayerLoadout_LoadoutItem::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, + file_level_metadata_cstrike15_5fusermessages_2eproto[87]); +} + +// =================================================================== + +class CCSUsrMsg_SendPlayerLoadout::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_playerslot(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } +}; + +CCSUsrMsg_SendPlayerLoadout::CCSUsrMsg_SendPlayerLoadout(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { + SharedCtor(arena, is_message_owned); + // @@protoc_insertion_point(arena_constructor:CCSUsrMsg_SendPlayerLoadout) +} +CCSUsrMsg_SendPlayerLoadout::CCSUsrMsg_SendPlayerLoadout(const CCSUsrMsg_SendPlayerLoadout& from) + : ::PROTOBUF_NAMESPACE_ID::Message() { + CCSUsrMsg_SendPlayerLoadout* const _this = this; (void)_this; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.loadout_){from._impl_.loadout_} + , decltype(_impl_.playerslot_){}}; + + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + _this->_impl_.playerslot_ = from._impl_.playerslot_; + // @@protoc_insertion_point(copy_constructor:CCSUsrMsg_SendPlayerLoadout) +} + +inline void CCSUsrMsg_SendPlayerLoadout::SharedCtor( + ::_pb::Arena* arena, bool is_message_owned) { + (void)arena; + (void)is_message_owned; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.loadout_){arena} + , decltype(_impl_.playerslot_){-1} + }; +} + +CCSUsrMsg_SendPlayerLoadout::~CCSUsrMsg_SendPlayerLoadout() { + // @@protoc_insertion_point(destructor:CCSUsrMsg_SendPlayerLoadout) + if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { + (void)arena; + return; + } + SharedDtor(); +} + +inline void CCSUsrMsg_SendPlayerLoadout::SharedDtor() { + GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.loadout_.~RepeatedPtrField(); +} + +void CCSUsrMsg_SendPlayerLoadout::SetCachedSize(int size) const { + _impl_._cached_size_.Set(size); +} + +void CCSUsrMsg_SendPlayerLoadout::Clear() { +// @@protoc_insertion_point(message_clear_start:CCSUsrMsg_SendPlayerLoadout) + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + _impl_.loadout_.Clear(); + _impl_.playerslot_ = -1; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); +} + +const char* CCSUsrMsg_SendPlayerLoadout::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; + while (!ctx->Done(&ptr)) { + uint32_t tag; + ptr = ::_pbi::ReadTag(ptr, &tag); + switch (tag >> 3) { + // repeated .CCSUsrMsg_SendPlayerLoadout.LoadoutItem loadout = 1; + case 1: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { + ptr -= 1; + do { + ptr += 1; + ptr = ctx->ParseMessage(_internal_add_loadout(), ptr); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<10>(ptr)); + } else + goto handle_unusual; + continue; + // optional int32 playerslot = 2 [default = -1]; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_playerslot(&has_bits); + _impl_.playerslot_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + default: + goto handle_unusual; + } // switch + handle_unusual: + if ((tag == 0) || ((tag & 7) == 4)) { + CHK_(ptr); + ctx->SetLastTag(tag); + goto message_done; + } + ptr = UnknownFieldParse( + tag, + _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), + ptr, ctx); + CHK_(ptr != nullptr); + } // while +message_done: + _impl_._has_bits_.Or(has_bits); + return ptr; +failure: + ptr = nullptr; + goto message_done; +#undef CHK_ +} + +uint8_t* CCSUsrMsg_SendPlayerLoadout::_InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:CCSUsrMsg_SendPlayerLoadout) + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + // repeated .CCSUsrMsg_SendPlayerLoadout.LoadoutItem loadout = 1; + for (unsigned i = 0, + n = static_cast(this->_internal_loadout_size()); i < n; i++) { + const auto& repfield = this->_internal_loadout(i); + target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: + InternalWriteMessage(1, repfield, repfield.GetCachedSize(), target, stream); + } + + cached_has_bits = _impl_._has_bits_[0]; + // optional int32 playerslot = 2 [default = -1]; + if (cached_has_bits & 0x00000001u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(2, this->_internal_playerslot(), target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:CCSUsrMsg_SendPlayerLoadout) + return target; +} + +size_t CCSUsrMsg_SendPlayerLoadout::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CCSUsrMsg_SendPlayerLoadout) + size_t total_size = 0; + + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + // repeated .CCSUsrMsg_SendPlayerLoadout.LoadoutItem loadout = 1; + total_size += 1UL * this->_internal_loadout_size(); + for (const auto& msg : this->_impl_.loadout_) { + total_size += + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); + } + + // optional int32 playerslot = 2 [default = -1]; + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_playerslot()); + } + + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CCSUsrMsg_SendPlayerLoadout::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, + CCSUsrMsg_SendPlayerLoadout::MergeImpl +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CCSUsrMsg_SendPlayerLoadout::GetClassData() const { return &_class_data_; } + + +void CCSUsrMsg_SendPlayerLoadout::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CCSUsrMsg_SendPlayerLoadout) + GOOGLE_DCHECK_NE(&from, _this); + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + _this->_impl_.loadout_.MergeFrom(from._impl_.loadout_); + if (from._internal_has_playerslot()) { + _this->_internal_set_playerslot(from._internal_playerslot()); + } + _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); +} + +void CCSUsrMsg_SendPlayerLoadout::CopyFrom(const CCSUsrMsg_SendPlayerLoadout& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CCSUsrMsg_SendPlayerLoadout) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool CCSUsrMsg_SendPlayerLoadout::IsInitialized() const { + return true; +} + +void CCSUsrMsg_SendPlayerLoadout::InternalSwap(CCSUsrMsg_SendPlayerLoadout* other) { + using std::swap; + _internal_metadata_.InternalSwap(&other->_internal_metadata_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + _impl_.loadout_.InternalSwap(&other->_impl_.loadout_); + swap(_impl_.playerslot_, other->_impl_.playerslot_); +} + +::PROTOBUF_NAMESPACE_ID::Metadata CCSUsrMsg_SendPlayerLoadout::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_cstrike15_5fusermessages_2eproto_getter, &descriptor_table_cstrike15_5fusermessages_2eproto_once, + file_level_metadata_cstrike15_5fusermessages_2eproto[88]); +} + +// @@protoc_insertion_point(namespace_scope) +PROTOBUF_NAMESPACE_OPEN +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_VGUIMenu_Keys* +Arena::CreateMaybeMessage< ::CCSUsrMsg_VGUIMenu_Keys >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_VGUIMenu_Keys >(arena); +} +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_VGUIMenu* +Arena::CreateMaybeMessage< ::CCSUsrMsg_VGUIMenu >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_VGUIMenu >(arena); +} +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_Geiger* +Arena::CreateMaybeMessage< ::CCSUsrMsg_Geiger >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_Geiger >(arena); +} +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_Train* +Arena::CreateMaybeMessage< ::CCSUsrMsg_Train >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_Train >(arena); +} +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_HudText* +Arena::CreateMaybeMessage< ::CCSUsrMsg_HudText >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_HudText >(arena); +} +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_HudMsg* +Arena::CreateMaybeMessage< ::CCSUsrMsg_HudMsg >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_HudMsg >(arena); +} +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_Shake* +Arena::CreateMaybeMessage< ::CCSUsrMsg_Shake >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_Shake >(arena); +} +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_Fade* +Arena::CreateMaybeMessage< ::CCSUsrMsg_Fade >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_Fade >(arena); +} +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_Rumble* +Arena::CreateMaybeMessage< ::CCSUsrMsg_Rumble >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_Rumble >(arena); +} +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_CloseCaption* +Arena::CreateMaybeMessage< ::CCSUsrMsg_CloseCaption >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_CloseCaption >(arena); +} +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_CloseCaptionDirect* +Arena::CreateMaybeMessage< ::CCSUsrMsg_CloseCaptionDirect >(Arena* arena) { return Arena::CreateMessageInternal< ::CCSUsrMsg_CloseCaptionDirect >(arena); } template<> PROTOBUF_NOINLINE ::CCSUsrMsg_SendAudio* @@ -27411,10 +27550,6 @@ template<> PROTOBUF_NOINLINE ::CCSUsrMsg_ItemDrop* Arena::CreateMaybeMessage< ::CCSUsrMsg_ItemDrop >(Arena* arena) { return Arena::CreateMessageInternal< ::CCSUsrMsg_ItemDrop >(arena); } -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_GlowPropTurnOff* -Arena::CreateMaybeMessage< ::CCSUsrMsg_GlowPropTurnOff >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_GlowPropTurnOff >(arena); -} template<> PROTOBUF_NOINLINE ::CCSUsrMsg_RoundBackupFilenames* Arena::CreateMaybeMessage< ::CCSUsrMsg_RoundBackupFilenames >(Arena* arena) { return Arena::CreateMessageInternal< ::CCSUsrMsg_RoundBackupFilenames >(arena); @@ -27511,10 +27646,6 @@ template<> PROTOBUF_NOINLINE ::CCSUsrMsg_DisconnectToLobby* Arena::CreateMaybeMessage< ::CCSUsrMsg_DisconnectToLobby >(Arena* arena) { return Arena::CreateMessageInternal< ::CCSUsrMsg_DisconnectToLobby >(arena); } -template<> PROTOBUF_NOINLINE ::CCSUsrMsg_WarmupHasEnded* -Arena::CreateMaybeMessage< ::CCSUsrMsg_WarmupHasEnded >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCSUsrMsg_WarmupHasEnded >(arena); -} template<> PROTOBUF_NOINLINE ::CCSUsrMsg_ClientInfo* Arena::CreateMaybeMessage< ::CCSUsrMsg_ClientInfo >(Arena* arena) { return Arena::CreateMessageInternal< ::CCSUsrMsg_ClientInfo >(arena); @@ -27539,6 +27670,14 @@ template<> PROTOBUF_NOINLINE ::CCSUsrMsg_RecurringMissionSchema* Arena::CreateMaybeMessage< ::CCSUsrMsg_RecurringMissionSchema >(Arena* arena) { return Arena::CreateMessageInternal< ::CCSUsrMsg_RecurringMissionSchema >(arena); } +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem* +Arena::CreateMaybeMessage< ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem >(arena); +} +template<> PROTOBUF_NOINLINE ::CCSUsrMsg_SendPlayerLoadout* +Arena::CreateMaybeMessage< ::CCSUsrMsg_SendPlayerLoadout >(Arena* arena) { + return Arena::CreateMessageInternal< ::CCSUsrMsg_SendPlayerLoadout >(arena); +} PROTOBUF_NAMESPACE_CLOSE // @@protoc_insertion_point(global_scope) diff --git a/protobuf/generated/cstrike15_usermessages.pb.h b/protobuf/generated/cstrike15_usermessages.pb.h index fd96a259b..579d1590e 100644 --- a/protobuf/generated/cstrike15_usermessages.pb.h +++ b/protobuf/generated/cstrike15_usermessages.pb.h @@ -119,9 +119,6 @@ extern CCSUsrMsg_GameTitleDefaultTypeInternal _CCSUsrMsg_GameTitle_default_insta class CCSUsrMsg_Geiger; struct CCSUsrMsg_GeigerDefaultTypeInternal; extern CCSUsrMsg_GeigerDefaultTypeInternal _CCSUsrMsg_Geiger_default_instance_; -class CCSUsrMsg_GlowPropTurnOff; -struct CCSUsrMsg_GlowPropTurnOffDefaultTypeInternal; -extern CCSUsrMsg_GlowPropTurnOffDefaultTypeInternal _CCSUsrMsg_GlowPropTurnOff_default_instance_; class CCSUsrMsg_HintText; struct CCSUsrMsg_HintTextDefaultTypeInternal; extern CCSUsrMsg_HintTextDefaultTypeInternal _CCSUsrMsg_HintText_default_instance_; @@ -236,6 +233,12 @@ extern CCSUsrMsg_SendPlayerItemDropsDefaultTypeInternal _CCSUsrMsg_SendPlayerIte class CCSUsrMsg_SendPlayerItemFound; struct CCSUsrMsg_SendPlayerItemFoundDefaultTypeInternal; extern CCSUsrMsg_SendPlayerItemFoundDefaultTypeInternal _CCSUsrMsg_SendPlayerItemFound_default_instance_; +class CCSUsrMsg_SendPlayerLoadout; +struct CCSUsrMsg_SendPlayerLoadoutDefaultTypeInternal; +extern CCSUsrMsg_SendPlayerLoadoutDefaultTypeInternal _CCSUsrMsg_SendPlayerLoadout_default_instance_; +class CCSUsrMsg_SendPlayerLoadout_LoadoutItem; +struct CCSUsrMsg_SendPlayerLoadout_LoadoutItemDefaultTypeInternal; +extern CCSUsrMsg_SendPlayerLoadout_LoadoutItemDefaultTypeInternal _CCSUsrMsg_SendPlayerLoadout_LoadoutItem_default_instance_; class CCSUsrMsg_ServerRankRevealAll; struct CCSUsrMsg_ServerRankRevealAllDefaultTypeInternal; extern CCSUsrMsg_ServerRankRevealAllDefaultTypeInternal _CCSUsrMsg_ServerRankRevealAll_default_instance_; @@ -299,9 +302,6 @@ extern CCSUsrMsg_VoteSetupDefaultTypeInternal _CCSUsrMsg_VoteSetup_default_insta class CCSUsrMsg_VoteStart; struct CCSUsrMsg_VoteStartDefaultTypeInternal; extern CCSUsrMsg_VoteStartDefaultTypeInternal _CCSUsrMsg_VoteStart_default_instance_; -class CCSUsrMsg_WarmupHasEnded; -struct CCSUsrMsg_WarmupHasEndedDefaultTypeInternal; -extern CCSUsrMsg_WarmupHasEndedDefaultTypeInternal _CCSUsrMsg_WarmupHasEnded_default_instance_; class CCSUsrMsg_WeaponSound; struct CCSUsrMsg_WeaponSoundDefaultTypeInternal; extern CCSUsrMsg_WeaponSoundDefaultTypeInternal _CCSUsrMsg_WeaponSound_default_instance_; @@ -339,7 +339,6 @@ template<> ::CCSUsrMsg_EntityOutlineHighlight* Arena::CreateMaybeMessage<::CCSUs template<> ::CCSUsrMsg_Fade* Arena::CreateMaybeMessage<::CCSUsrMsg_Fade>(Arena*); template<> ::CCSUsrMsg_GameTitle* Arena::CreateMaybeMessage<::CCSUsrMsg_GameTitle>(Arena*); template<> ::CCSUsrMsg_Geiger* Arena::CreateMaybeMessage<::CCSUsrMsg_Geiger>(Arena*); -template<> ::CCSUsrMsg_GlowPropTurnOff* Arena::CreateMaybeMessage<::CCSUsrMsg_GlowPropTurnOff>(Arena*); template<> ::CCSUsrMsg_HintText* Arena::CreateMaybeMessage<::CCSUsrMsg_HintText>(Arena*); template<> ::CCSUsrMsg_HudMsg* Arena::CreateMaybeMessage<::CCSUsrMsg_HudMsg>(Arena*); template<> ::CCSUsrMsg_HudText* Arena::CreateMaybeMessage<::CCSUsrMsg_HudText>(Arena*); @@ -378,6 +377,8 @@ template<> ::CCSUsrMsg_SendAudio* Arena::CreateMaybeMessage<::CCSUsrMsg_SendAudi template<> ::CCSUsrMsg_SendLastKillerDamageToClient* Arena::CreateMaybeMessage<::CCSUsrMsg_SendLastKillerDamageToClient>(Arena*); template<> ::CCSUsrMsg_SendPlayerItemDrops* Arena::CreateMaybeMessage<::CCSUsrMsg_SendPlayerItemDrops>(Arena*); template<> ::CCSUsrMsg_SendPlayerItemFound* Arena::CreateMaybeMessage<::CCSUsrMsg_SendPlayerItemFound>(Arena*); +template<> ::CCSUsrMsg_SendPlayerLoadout* Arena::CreateMaybeMessage<::CCSUsrMsg_SendPlayerLoadout>(Arena*); +template<> ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem* Arena::CreateMaybeMessage<::CCSUsrMsg_SendPlayerLoadout_LoadoutItem>(Arena*); template<> ::CCSUsrMsg_ServerRankRevealAll* Arena::CreateMaybeMessage<::CCSUsrMsg_ServerRankRevealAll>(Arena*); template<> ::CCSUsrMsg_ServerRankUpdate* Arena::CreateMaybeMessage<::CCSUsrMsg_ServerRankUpdate>(Arena*); template<> ::CCSUsrMsg_ServerRankUpdate_RankUpdate* Arena::CreateMaybeMessage<::CCSUsrMsg_ServerRankUpdate_RankUpdate>(Arena*); @@ -399,7 +400,6 @@ template<> ::CCSUsrMsg_VoteFailed* Arena::CreateMaybeMessage<::CCSUsrMsg_VoteFai template<> ::CCSUsrMsg_VotePass* Arena::CreateMaybeMessage<::CCSUsrMsg_VotePass>(Arena*); template<> ::CCSUsrMsg_VoteSetup* Arena::CreateMaybeMessage<::CCSUsrMsg_VoteSetup>(Arena*); template<> ::CCSUsrMsg_VoteStart* Arena::CreateMaybeMessage<::CCSUsrMsg_VoteStart>(Arena*); -template<> ::CCSUsrMsg_WarmupHasEnded* Arena::CreateMaybeMessage<::CCSUsrMsg_WarmupHasEnded>(Arena*); template<> ::CCSUsrMsg_WeaponSound* Arena::CreateMaybeMessage<::CCSUsrMsg_WeaponSound>(Arena*); template<> ::CCSUsrMsg_XRankGet* Arena::CreateMaybeMessage<::CCSUsrMsg_XRankGet>(Arena*); template<> ::CCSUsrMsg_XRankUpd* Arena::CreateMaybeMessage<::CCSUsrMsg_XRankUpd>(Arena*); @@ -442,7 +442,6 @@ enum ECstrike15UserMessages : int { CS_UM_MatchEndConditions = 334, CS_UM_DisconnectToLobby = 335, CS_UM_PlayerStatsUpdate = 336, - CS_UM_WarmupHasEnded = 338, CS_UM_ClientInfo = 339, CS_UM_XRankGet = 340, CS_UM_XRankUpd = 341, @@ -461,7 +460,6 @@ enum ECstrike15UserMessages : int { CS_UM_MarkAchievement = 357, CS_UM_MatchStatsUpdate = 358, CS_UM_ItemDrop = 359, - CS_UM_GlowPropTurnOff = 360, CS_UM_SendPlayerItemDrops = 361, CS_UM_RoundBackupFilenames = 362, CS_UM_SendPlayerItemFound = 363, @@ -484,11 +482,12 @@ enum ECstrike15UserMessages : int { CS_UM_ShootInfo = 383, CS_UM_CounterStrafe = 385, CS_UM_DamagePrediction = 386, - CS_UM_RecurringMissionSchema = 387 + CS_UM_RecurringMissionSchema = 387, + CS_UM_SendPlayerLoadout = 388 }; bool ECstrike15UserMessages_IsValid(int value); constexpr ECstrike15UserMessages ECstrike15UserMessages_MIN = CS_UM_VGUIMenu; -constexpr ECstrike15UserMessages ECstrike15UserMessages_MAX = CS_UM_RecurringMissionSchema; +constexpr ECstrike15UserMessages ECstrike15UserMessages_MAX = CS_UM_SendPlayerLoadout; constexpr int ECstrike15UserMessages_ARRAYSIZE = ECstrike15UserMessages_MAX + 1; const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* ECstrike15UserMessages_descriptor(); @@ -11474,166 +11473,6 @@ class CCSUsrMsg_ItemDrop : }; // ------------------------------------------------------------------- -class CCSUsrMsg_GlowPropTurnOff : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCSUsrMsg_GlowPropTurnOff) */ { - public: - inline CCSUsrMsg_GlowPropTurnOff() : CCSUsrMsg_GlowPropTurnOff(nullptr) {} - ~CCSUsrMsg_GlowPropTurnOff() override; - explicit PROTOBUF_CONSTEXPR CCSUsrMsg_GlowPropTurnOff(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - - CCSUsrMsg_GlowPropTurnOff(const CCSUsrMsg_GlowPropTurnOff& from); - CCSUsrMsg_GlowPropTurnOff(CCSUsrMsg_GlowPropTurnOff&& from) noexcept - : CCSUsrMsg_GlowPropTurnOff() { - *this = ::std::move(from); - } - - inline CCSUsrMsg_GlowPropTurnOff& operator=(const CCSUsrMsg_GlowPropTurnOff& from) { - CopyFrom(from); - return *this; - } - inline CCSUsrMsg_GlowPropTurnOff& operator=(CCSUsrMsg_GlowPropTurnOff&& from) noexcept { - if (this == &from) return *this; - if (GetOwningArena() == from.GetOwningArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE - && GetOwningArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE - ) { - InternalSwap(&from); - } else { - CopyFrom(from); - } - return *this; - } - - inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { - return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); - } - inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { - return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); - } - - static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { - return GetDescriptor(); - } - static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { - return default_instance().GetMetadata().descriptor; - } - static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { - return default_instance().GetMetadata().reflection; - } - static const CCSUsrMsg_GlowPropTurnOff& default_instance() { - return *internal_default_instance(); - } - static inline const CCSUsrMsg_GlowPropTurnOff* internal_default_instance() { - return reinterpret_cast( - &_CCSUsrMsg_GlowPropTurnOff_default_instance_); - } - static constexpr int kIndexInFileMessages = - 57; - - friend void swap(CCSUsrMsg_GlowPropTurnOff& a, CCSUsrMsg_GlowPropTurnOff& b) { - a.Swap(&b); - } - inline void Swap(CCSUsrMsg_GlowPropTurnOff* other) { - if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetOwningArena() != nullptr && - GetOwningArena() == other->GetOwningArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP - if (GetOwningArena() == other->GetOwningArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CCSUsrMsg_GlowPropTurnOff* other) { - if (other == this) return; - GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - CCSUsrMsg_GlowPropTurnOff* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); - } - using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CCSUsrMsg_GlowPropTurnOff& from); - using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CCSUsrMsg_GlowPropTurnOff& from) { - CCSUsrMsg_GlowPropTurnOff::MergeImpl(*this, from); - } - private: - static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); - public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; - - size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; - uint8_t* _InternalSerialize( - uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; - int GetCachedSize() const final { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); - void SharedDtor(); - void SetCachedSize(int size) const final; - void InternalSwap(CCSUsrMsg_GlowPropTurnOff* other); - - private: - friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; - static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CCSUsrMsg_GlowPropTurnOff"; - } - protected: - explicit CCSUsrMsg_GlowPropTurnOff(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned = false); - public: - - static const ClassData _class_data_; - const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; - - ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; - - // nested types ---------------------------------------------------- - - // accessors ------------------------------------------------------- - - enum : int { - kEntidxFieldNumber = 1, - }; - // optional int32 entidx = 1 [default = -1]; - bool has_entidx() const; - private: - bool _internal_has_entidx() const; - public: - void clear_entidx(); - int32_t entidx() const; - void set_entidx(int32_t value); - private: - int32_t _internal_entidx() const; - void _internal_set_entidx(int32_t value); - public: - - // @@protoc_insertion_point(class_scope:CCSUsrMsg_GlowPropTurnOff) - private: - class _Internal; - - template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; - typedef void InternalArenaConstructable_; - typedef void DestructorSkippable_; - struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; - mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - int32_t entidx_; - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_cstrike15_5fusermessages_2eproto; -}; -// ------------------------------------------------------------------- - class CCSUsrMsg_RoundBackupFilenames : public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCSUsrMsg_RoundBackupFilenames) */ { public: @@ -11689,7 +11528,7 @@ class CCSUsrMsg_RoundBackupFilenames : &_CCSUsrMsg_RoundBackupFilenames_default_instance_); } static constexpr int kIndexInFileMessages = - 58; + 57; friend void swap(CCSUsrMsg_RoundBackupFilenames& a, CCSUsrMsg_RoundBackupFilenames& b) { a.Swap(&b); @@ -11904,7 +11743,7 @@ class CCSUsrMsg_SSUI : &_CCSUsrMsg_SSUI_default_instance_); } static constexpr int kIndexInFileMessages = - 59; + 58; friend void swap(CCSUsrMsg_SSUI& a, CCSUsrMsg_SSUI& b) { a.Swap(&b); @@ -12094,7 +11933,7 @@ class CCSUsrMsg_SurvivalStats_Fact : &_CCSUsrMsg_SurvivalStats_Fact_default_instance_); } static constexpr int kIndexInFileMessages = - 60; + 59; friend void swap(CCSUsrMsg_SurvivalStats_Fact& a, CCSUsrMsg_SurvivalStats_Fact& b) { a.Swap(&b); @@ -12299,7 +12138,7 @@ class CCSUsrMsg_SurvivalStats_Placement : &_CCSUsrMsg_SurvivalStats_Placement_default_instance_); } static constexpr int kIndexInFileMessages = - 61; + 60; friend void swap(CCSUsrMsg_SurvivalStats_Placement& a, CCSUsrMsg_SurvivalStats_Placement& b) { a.Swap(&b); @@ -12489,7 +12328,7 @@ class CCSUsrMsg_SurvivalStats_Damage : &_CCSUsrMsg_SurvivalStats_Damage_default_instance_); } static constexpr int kIndexInFileMessages = - 62; + 61; friend void swap(CCSUsrMsg_SurvivalStats_Damage& a, CCSUsrMsg_SurvivalStats_Damage& b) { a.Swap(&b); @@ -12709,7 +12548,7 @@ class CCSUsrMsg_SurvivalStats : &_CCSUsrMsg_SurvivalStats_default_instance_); } static constexpr int kIndexInFileMessages = - 63; + 62; friend void swap(CCSUsrMsg_SurvivalStats& a, CCSUsrMsg_SurvivalStats& b) { a.Swap(&b); @@ -12948,7 +12787,7 @@ class CCSUsrMsg_EndOfMatchAllPlayersData_Accolade : &_CCSUsrMsg_EndOfMatchAllPlayersData_Accolade_default_instance_); } static constexpr int kIndexInFileMessages = - 64; + 63; friend void swap(CCSUsrMsg_EndOfMatchAllPlayersData_Accolade& a, CCSUsrMsg_EndOfMatchAllPlayersData_Accolade& b) { a.Swap(&b); @@ -13138,7 +12977,7 @@ class CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData : &_CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData_default_instance_); } static constexpr int kIndexInFileMessages = - 65; + 64; friend void swap(CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData& a, CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData& b) { a.Swap(&b); @@ -13418,7 +13257,7 @@ class CCSUsrMsg_EndOfMatchAllPlayersData : &_CCSUsrMsg_EndOfMatchAllPlayersData_default_instance_); } static constexpr int kIndexInFileMessages = - 66; + 65; friend void swap(CCSUsrMsg_EndOfMatchAllPlayersData& a, CCSUsrMsg_EndOfMatchAllPlayersData& b) { a.Swap(&b); @@ -13601,7 +13440,7 @@ class CCSUsrMsg_RoundEndReportData_RerEvent_Victim : &_CCSUsrMsg_RoundEndReportData_RerEvent_Victim_default_instance_); } static constexpr int kIndexInFileMessages = - 67; + 66; friend void swap(CCSUsrMsg_RoundEndReportData_RerEvent_Victim& a, CCSUsrMsg_RoundEndReportData_RerEvent_Victim& b) { a.Swap(&b); @@ -13836,7 +13675,7 @@ class CCSUsrMsg_RoundEndReportData_RerEvent_Objective : &_CCSUsrMsg_RoundEndReportData_RerEvent_Objective_default_instance_); } static constexpr int kIndexInFileMessages = - 68; + 67; friend void swap(CCSUsrMsg_RoundEndReportData_RerEvent_Objective& a, CCSUsrMsg_RoundEndReportData_RerEvent_Objective& b) { a.Swap(&b); @@ -13996,7 +13835,7 @@ class CCSUsrMsg_RoundEndReportData_RerEvent_Damage : &_CCSUsrMsg_RoundEndReportData_RerEvent_Damage_default_instance_); } static constexpr int kIndexInFileMessages = - 69; + 68; friend void swap(CCSUsrMsg_RoundEndReportData_RerEvent_Damage& a, CCSUsrMsg_RoundEndReportData_RerEvent_Damage& b) { a.Swap(&b); @@ -14231,7 +14070,7 @@ class CCSUsrMsg_RoundEndReportData_RerEvent : &_CCSUsrMsg_RoundEndReportData_RerEvent_default_instance_); } static constexpr int kIndexInFileMessages = - 70; + 69; friend void swap(CCSUsrMsg_RoundEndReportData_RerEvent& a, CCSUsrMsg_RoundEndReportData_RerEvent& b) { a.Swap(&b); @@ -14500,7 +14339,7 @@ class CCSUsrMsg_RoundEndReportData_InitialConditions : &_CCSUsrMsg_RoundEndReportData_InitialConditions_default_instance_); } static constexpr int kIndexInFileMessages = - 71; + 70; friend void swap(CCSUsrMsg_RoundEndReportData_InitialConditions& a, CCSUsrMsg_RoundEndReportData_InitialConditions& b) { a.Swap(&b); @@ -14690,7 +14529,7 @@ class CCSUsrMsg_RoundEndReportData : &_CCSUsrMsg_RoundEndReportData_default_instance_); } static constexpr int kIndexInFileMessages = - 72; + 71; friend void swap(CCSUsrMsg_RoundEndReportData& a, CCSUsrMsg_RoundEndReportData& b) { a.Swap(&b); @@ -14878,7 +14717,7 @@ class CCSUsrMsg_PostRoundDamageReport : &_CCSUsrMsg_PostRoundDamageReport_default_instance_); } static constexpr int kIndexInFileMessages = - 73; + 72; friend void swap(CCSUsrMsg_PostRoundDamageReport& a, CCSUsrMsg_PostRoundDamageReport& b) { a.Swap(&b); @@ -15128,7 +14967,7 @@ class CCSUsrMsg_CurrentRoundOdds : &_CCSUsrMsg_CurrentRoundOdds_default_instance_); } static constexpr int kIndexInFileMessages = - 74; + 73; friend void swap(CCSUsrMsg_CurrentRoundOdds& a, CCSUsrMsg_CurrentRoundOdds& b) { a.Swap(&b); @@ -15288,7 +15127,7 @@ class CCSUsrMsg_DeepStats : &_CCSUsrMsg_DeepStats_default_instance_); } static constexpr int kIndexInFileMessages = - 75; + 74; friend void swap(CCSUsrMsg_DeepStats& a, CCSUsrMsg_DeepStats& b) { a.Swap(&b); @@ -15453,7 +15292,7 @@ class CCSUsrMsg_ShootInfo : &_CCSUsrMsg_ShootInfo_default_instance_); } static constexpr int kIndexInFileMessages = - 76; + 75; friend void swap(CCSUsrMsg_ShootInfo& a, CCSUsrMsg_ShootInfo& b) { a.Swap(&b); @@ -15673,7 +15512,7 @@ class CCSUsrMsg_ResetHud : &_CCSUsrMsg_ResetHud_default_instance_); } static constexpr int kIndexInFileMessages = - 77; + 76; friend void swap(CCSUsrMsg_ResetHud& a, CCSUsrMsg_ResetHud& b) { a.Swap(&b); @@ -15833,7 +15672,7 @@ class CCSUsrMsg_GameTitle : &_CCSUsrMsg_GameTitle_default_instance_); } static constexpr int kIndexInFileMessages = - 78; + 77; friend void swap(CCSUsrMsg_GameTitle& a, CCSUsrMsg_GameTitle& b) { a.Swap(&b); @@ -15993,7 +15832,7 @@ class CCSUsrMsg_RequestState : &_CCSUsrMsg_RequestState_default_instance_); } static constexpr int kIndexInFileMessages = - 79; + 78; friend void swap(CCSUsrMsg_RequestState& a, CCSUsrMsg_RequestState& b) { a.Swap(&b); @@ -16153,7 +15992,7 @@ class CCSUsrMsg_StopSpectatorMode : &_CCSUsrMsg_StopSpectatorMode_default_instance_); } static constexpr int kIndexInFileMessages = - 80; + 79; friend void swap(CCSUsrMsg_StopSpectatorMode& a, CCSUsrMsg_StopSpectatorMode& b) { a.Swap(&b); @@ -16313,7 +16152,7 @@ class CCSUsrMsg_DisconnectToLobby : &_CCSUsrMsg_DisconnectToLobby_default_instance_); } static constexpr int kIndexInFileMessages = - 81; + 80; friend void swap(CCSUsrMsg_DisconnectToLobby& a, CCSUsrMsg_DisconnectToLobby& b) { a.Swap(&b); @@ -16418,24 +16257,24 @@ class CCSUsrMsg_DisconnectToLobby : }; // ------------------------------------------------------------------- -class CCSUsrMsg_WarmupHasEnded : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCSUsrMsg_WarmupHasEnded) */ { +class CCSUsrMsg_ClientInfo : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCSUsrMsg_ClientInfo) */ { public: - inline CCSUsrMsg_WarmupHasEnded() : CCSUsrMsg_WarmupHasEnded(nullptr) {} - ~CCSUsrMsg_WarmupHasEnded() override; - explicit PROTOBUF_CONSTEXPR CCSUsrMsg_WarmupHasEnded(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CCSUsrMsg_ClientInfo() : CCSUsrMsg_ClientInfo(nullptr) {} + ~CCSUsrMsg_ClientInfo() override; + explicit PROTOBUF_CONSTEXPR CCSUsrMsg_ClientInfo(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CCSUsrMsg_WarmupHasEnded(const CCSUsrMsg_WarmupHasEnded& from); - CCSUsrMsg_WarmupHasEnded(CCSUsrMsg_WarmupHasEnded&& from) noexcept - : CCSUsrMsg_WarmupHasEnded() { + CCSUsrMsg_ClientInfo(const CCSUsrMsg_ClientInfo& from); + CCSUsrMsg_ClientInfo(CCSUsrMsg_ClientInfo&& from) noexcept + : CCSUsrMsg_ClientInfo() { *this = ::std::move(from); } - inline CCSUsrMsg_WarmupHasEnded& operator=(const CCSUsrMsg_WarmupHasEnded& from) { + inline CCSUsrMsg_ClientInfo& operator=(const CCSUsrMsg_ClientInfo& from) { CopyFrom(from); return *this; } - inline CCSUsrMsg_WarmupHasEnded& operator=(CCSUsrMsg_WarmupHasEnded&& from) noexcept { + inline CCSUsrMsg_ClientInfo& operator=(CCSUsrMsg_ClientInfo&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -16465,20 +16304,20 @@ class CCSUsrMsg_WarmupHasEnded : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CCSUsrMsg_WarmupHasEnded& default_instance() { + static const CCSUsrMsg_ClientInfo& default_instance() { return *internal_default_instance(); } - static inline const CCSUsrMsg_WarmupHasEnded* internal_default_instance() { - return reinterpret_cast( - &_CCSUsrMsg_WarmupHasEnded_default_instance_); + static inline const CCSUsrMsg_ClientInfo* internal_default_instance() { + return reinterpret_cast( + &_CCSUsrMsg_ClientInfo_default_instance_); } static constexpr int kIndexInFileMessages = - 82; + 81; - friend void swap(CCSUsrMsg_WarmupHasEnded& a, CCSUsrMsg_WarmupHasEnded& b) { + friend void swap(CCSUsrMsg_ClientInfo& a, CCSUsrMsg_ClientInfo& b) { a.Swap(&b); } - inline void Swap(CCSUsrMsg_WarmupHasEnded* other) { + inline void Swap(CCSUsrMsg_ClientInfo* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -16491,7 +16330,7 @@ class CCSUsrMsg_WarmupHasEnded : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CCSUsrMsg_WarmupHasEnded* other) { + void UnsafeArenaSwap(CCSUsrMsg_ClientInfo* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -16499,14 +16338,14 @@ class CCSUsrMsg_WarmupHasEnded : // implements Message ---------------------------------------------- - CCSUsrMsg_WarmupHasEnded* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CCSUsrMsg_ClientInfo* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CCSUsrMsg_WarmupHasEnded& from); + void CopyFrom(const CCSUsrMsg_ClientInfo& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CCSUsrMsg_WarmupHasEnded& from) { - CCSUsrMsg_WarmupHasEnded::MergeImpl(*this, from); + void MergeFrom( const CCSUsrMsg_ClientInfo& from) { + CCSUsrMsg_ClientInfo::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -16524,15 +16363,15 @@ class CCSUsrMsg_WarmupHasEnded : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CCSUsrMsg_WarmupHasEnded* other); + void InternalSwap(CCSUsrMsg_ClientInfo* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CCSUsrMsg_WarmupHasEnded"; + return "CCSUsrMsg_ClientInfo"; } protected: - explicit CCSUsrMsg_WarmupHasEnded(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CCSUsrMsg_ClientInfo(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -16561,7 +16400,7 @@ class CCSUsrMsg_WarmupHasEnded : void _internal_set_dummy(int32_t value); public: - // @@protoc_insertion_point(class_scope:CCSUsrMsg_WarmupHasEnded) + // @@protoc_insertion_point(class_scope:CCSUsrMsg_ClientInfo) private: class _Internal; @@ -16578,24 +16417,24 @@ class CCSUsrMsg_WarmupHasEnded : }; // ------------------------------------------------------------------- -class CCSUsrMsg_ClientInfo : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCSUsrMsg_ClientInfo) */ { +class CCSUsrMsg_ServerRankRevealAll : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCSUsrMsg_ServerRankRevealAll) */ { public: - inline CCSUsrMsg_ClientInfo() : CCSUsrMsg_ClientInfo(nullptr) {} - ~CCSUsrMsg_ClientInfo() override; - explicit PROTOBUF_CONSTEXPR CCSUsrMsg_ClientInfo(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CCSUsrMsg_ServerRankRevealAll() : CCSUsrMsg_ServerRankRevealAll(nullptr) {} + ~CCSUsrMsg_ServerRankRevealAll() override; + explicit PROTOBUF_CONSTEXPR CCSUsrMsg_ServerRankRevealAll(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CCSUsrMsg_ClientInfo(const CCSUsrMsg_ClientInfo& from); - CCSUsrMsg_ClientInfo(CCSUsrMsg_ClientInfo&& from) noexcept - : CCSUsrMsg_ClientInfo() { + CCSUsrMsg_ServerRankRevealAll(const CCSUsrMsg_ServerRankRevealAll& from); + CCSUsrMsg_ServerRankRevealAll(CCSUsrMsg_ServerRankRevealAll&& from) noexcept + : CCSUsrMsg_ServerRankRevealAll() { *this = ::std::move(from); } - inline CCSUsrMsg_ClientInfo& operator=(const CCSUsrMsg_ClientInfo& from) { + inline CCSUsrMsg_ServerRankRevealAll& operator=(const CCSUsrMsg_ServerRankRevealAll& from) { CopyFrom(from); return *this; } - inline CCSUsrMsg_ClientInfo& operator=(CCSUsrMsg_ClientInfo&& from) noexcept { + inline CCSUsrMsg_ServerRankRevealAll& operator=(CCSUsrMsg_ServerRankRevealAll&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -16625,20 +16464,20 @@ class CCSUsrMsg_ClientInfo : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CCSUsrMsg_ClientInfo& default_instance() { + static const CCSUsrMsg_ServerRankRevealAll& default_instance() { return *internal_default_instance(); } - static inline const CCSUsrMsg_ClientInfo* internal_default_instance() { - return reinterpret_cast( - &_CCSUsrMsg_ClientInfo_default_instance_); + static inline const CCSUsrMsg_ServerRankRevealAll* internal_default_instance() { + return reinterpret_cast( + &_CCSUsrMsg_ServerRankRevealAll_default_instance_); } static constexpr int kIndexInFileMessages = - 83; + 82; - friend void swap(CCSUsrMsg_ClientInfo& a, CCSUsrMsg_ClientInfo& b) { + friend void swap(CCSUsrMsg_ServerRankRevealAll& a, CCSUsrMsg_ServerRankRevealAll& b) { a.Swap(&b); } - inline void Swap(CCSUsrMsg_ClientInfo* other) { + inline void Swap(CCSUsrMsg_ServerRankRevealAll* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -16651,7 +16490,7 @@ class CCSUsrMsg_ClientInfo : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CCSUsrMsg_ClientInfo* other) { + void UnsafeArenaSwap(CCSUsrMsg_ServerRankRevealAll* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -16659,174 +16498,14 @@ class CCSUsrMsg_ClientInfo : // implements Message ---------------------------------------------- - CCSUsrMsg_ClientInfo* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CCSUsrMsg_ServerRankRevealAll* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CCSUsrMsg_ClientInfo& from); + void CopyFrom(const CCSUsrMsg_ServerRankRevealAll& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CCSUsrMsg_ClientInfo& from) { - CCSUsrMsg_ClientInfo::MergeImpl(*this, from); - } - private: - static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); - public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; - - size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; - uint8_t* _InternalSerialize( - uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; - int GetCachedSize() const final { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); - void SharedDtor(); - void SetCachedSize(int size) const final; - void InternalSwap(CCSUsrMsg_ClientInfo* other); - - private: - friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; - static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CCSUsrMsg_ClientInfo"; - } - protected: - explicit CCSUsrMsg_ClientInfo(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned = false); - public: - - static const ClassData _class_data_; - const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; - - ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; - - // nested types ---------------------------------------------------- - - // accessors ------------------------------------------------------- - - enum : int { - kDummyFieldNumber = 1, - }; - // optional int32 dummy = 1; - bool has_dummy() const; - private: - bool _internal_has_dummy() const; - public: - void clear_dummy(); - int32_t dummy() const; - void set_dummy(int32_t value); - private: - int32_t _internal_dummy() const; - void _internal_set_dummy(int32_t value); - public: - - // @@protoc_insertion_point(class_scope:CCSUsrMsg_ClientInfo) - private: - class _Internal; - - template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; - typedef void InternalArenaConstructable_; - typedef void DestructorSkippable_; - struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; - mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - int32_t dummy_; - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_cstrike15_5fusermessages_2eproto; -}; -// ------------------------------------------------------------------- - -class CCSUsrMsg_ServerRankRevealAll : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCSUsrMsg_ServerRankRevealAll) */ { - public: - inline CCSUsrMsg_ServerRankRevealAll() : CCSUsrMsg_ServerRankRevealAll(nullptr) {} - ~CCSUsrMsg_ServerRankRevealAll() override; - explicit PROTOBUF_CONSTEXPR CCSUsrMsg_ServerRankRevealAll(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - - CCSUsrMsg_ServerRankRevealAll(const CCSUsrMsg_ServerRankRevealAll& from); - CCSUsrMsg_ServerRankRevealAll(CCSUsrMsg_ServerRankRevealAll&& from) noexcept - : CCSUsrMsg_ServerRankRevealAll() { - *this = ::std::move(from); - } - - inline CCSUsrMsg_ServerRankRevealAll& operator=(const CCSUsrMsg_ServerRankRevealAll& from) { - CopyFrom(from); - return *this; - } - inline CCSUsrMsg_ServerRankRevealAll& operator=(CCSUsrMsg_ServerRankRevealAll&& from) noexcept { - if (this == &from) return *this; - if (GetOwningArena() == from.GetOwningArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE - && GetOwningArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE - ) { - InternalSwap(&from); - } else { - CopyFrom(from); - } - return *this; - } - - inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { - return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); - } - inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { - return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); - } - - static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { - return GetDescriptor(); - } - static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { - return default_instance().GetMetadata().descriptor; - } - static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { - return default_instance().GetMetadata().reflection; - } - static const CCSUsrMsg_ServerRankRevealAll& default_instance() { - return *internal_default_instance(); - } - static inline const CCSUsrMsg_ServerRankRevealAll* internal_default_instance() { - return reinterpret_cast( - &_CCSUsrMsg_ServerRankRevealAll_default_instance_); - } - static constexpr int kIndexInFileMessages = - 84; - - friend void swap(CCSUsrMsg_ServerRankRevealAll& a, CCSUsrMsg_ServerRankRevealAll& b) { - a.Swap(&b); - } - inline void Swap(CCSUsrMsg_ServerRankRevealAll* other) { - if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetOwningArena() != nullptr && - GetOwningArena() == other->GetOwningArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP - if (GetOwningArena() == other->GetOwningArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CCSUsrMsg_ServerRankRevealAll* other) { - if (other == this) return; - GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - CCSUsrMsg_ServerRankRevealAll* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); - } - using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CCSUsrMsg_ServerRankRevealAll& from); - using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CCSUsrMsg_ServerRankRevealAll& from) { - CCSUsrMsg_ServerRankRevealAll::MergeImpl(*this, from); + void MergeFrom( const CCSUsrMsg_ServerRankRevealAll& from) { + CCSUsrMsg_ServerRankRevealAll::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -16973,7 +16652,7 @@ class CCSUsrMsgPreMatchSayText : &_CCSUsrMsgPreMatchSayText_default_instance_); } static constexpr int kIndexInFileMessages = - 85; + 83; friend void swap(CCSUsrMsgPreMatchSayText& a, CCSUsrMsgPreMatchSayText& b) { a.Swap(&b); @@ -17168,7 +16847,7 @@ class CCSUsrMsg_CounterStrafe : &_CCSUsrMsg_CounterStrafe_default_instance_); } static constexpr int kIndexInFileMessages = - 86; + 84; friend void swap(CCSUsrMsg_CounterStrafe& a, CCSUsrMsg_CounterStrafe& b) { a.Swap(&b); @@ -17343,7 +17022,7 @@ class CCSUsrMsg_DamagePrediction : &_CCSUsrMsg_DamagePrediction_default_instance_); } static constexpr int kIndexInFileMessages = - 87; + 85; friend void swap(CCSUsrMsg_DamagePrediction& a, CCSUsrMsg_DamagePrediction& b) { a.Swap(&b); @@ -17531,20 +17210,400 @@ class CCSUsrMsg_DamagePrediction : void _internal_set_victim_starting_health(int32_t value); public: - // optional int32 victim_damage = 5; - bool has_victim_damage() const; + // optional int32 victim_damage = 5; + bool has_victim_damage() const; + private: + bool _internal_has_victim_damage() const; + public: + void clear_victim_damage(); + int32_t victim_damage() const; + void set_victim_damage(int32_t value); + private: + int32_t _internal_victim_damage() const; + void _internal_set_victim_damage(int32_t value); + public: + + // @@protoc_insertion_point(class_scope:CCSUsrMsg_DamagePrediction) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; + struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::CMsgVector* shoot_pos_; + ::CMsgQAngle* shoot_dir_; + ::CMsgQAngle* aim_punch_; + int32_t command_num_; + int32_t pellet_idx_; + int32_t victim_slot_; + int32_t victim_starting_health_; + int32_t victim_damage_; + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_cstrike15_5fusermessages_2eproto; +}; +// ------------------------------------------------------------------- + +class CCSUsrMsg_RecurringMissionSchema : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCSUsrMsg_RecurringMissionSchema) */ { + public: + inline CCSUsrMsg_RecurringMissionSchema() : CCSUsrMsg_RecurringMissionSchema(nullptr) {} + ~CCSUsrMsg_RecurringMissionSchema() override; + explicit PROTOBUF_CONSTEXPR CCSUsrMsg_RecurringMissionSchema(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + + CCSUsrMsg_RecurringMissionSchema(const CCSUsrMsg_RecurringMissionSchema& from); + CCSUsrMsg_RecurringMissionSchema(CCSUsrMsg_RecurringMissionSchema&& from) noexcept + : CCSUsrMsg_RecurringMissionSchema() { + *this = ::std::move(from); + } + + inline CCSUsrMsg_RecurringMissionSchema& operator=(const CCSUsrMsg_RecurringMissionSchema& from) { + CopyFrom(from); + return *this; + } + inline CCSUsrMsg_RecurringMissionSchema& operator=(CCSUsrMsg_RecurringMissionSchema&& from) noexcept { + if (this == &from) return *this; + if (GetOwningArena() == from.GetOwningArena() + #ifdef PROTOBUF_FORCE_COPY_IN_MOVE + && GetOwningArena() != nullptr + #endif // !PROTOBUF_FORCE_COPY_IN_MOVE + ) { + InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + + inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { + return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); + } + inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { + return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); + } + + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { + return GetDescriptor(); + } + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { + return default_instance().GetMetadata().descriptor; + } + static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { + return default_instance().GetMetadata().reflection; + } + static const CCSUsrMsg_RecurringMissionSchema& default_instance() { + return *internal_default_instance(); + } + static inline const CCSUsrMsg_RecurringMissionSchema* internal_default_instance() { + return reinterpret_cast( + &_CCSUsrMsg_RecurringMissionSchema_default_instance_); + } + static constexpr int kIndexInFileMessages = + 86; + + friend void swap(CCSUsrMsg_RecurringMissionSchema& a, CCSUsrMsg_RecurringMissionSchema& b) { + a.Swap(&b); + } + inline void Swap(CCSUsrMsg_RecurringMissionSchema* other) { + if (other == this) return; + #ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() != nullptr && + GetOwningArena() == other->GetOwningArena()) { + #else // PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() == other->GetOwningArena()) { + #endif // !PROTOBUF_FORCE_COPY_IN_SWAP + InternalSwap(other); + } else { + ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); + } + } + void UnsafeArenaSwap(CCSUsrMsg_RecurringMissionSchema* other) { + if (other == this) return; + GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + CCSUsrMsg_RecurringMissionSchema* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); + } + using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; + void CopyFrom(const CCSUsrMsg_RecurringMissionSchema& from); + using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; + void MergeFrom( const CCSUsrMsg_RecurringMissionSchema& from) { + CCSUsrMsg_RecurringMissionSchema::MergeImpl(*this, from); + } + private: + static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); + public: + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; + uint8_t* _InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const final { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(CCSUsrMsg_RecurringMissionSchema* other); + + private: + friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; + static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { + return "CCSUsrMsg_RecurringMissionSchema"; + } + protected: + explicit CCSUsrMsg_RecurringMissionSchema(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned = false); + public: + + static const ClassData _class_data_; + const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; + + ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + enum : int { + kMissionSchemaFieldNumber = 2, + kPeriodFieldNumber = 1, + }; + // optional bytes mission_schema = 2; + bool has_mission_schema() const; + private: + bool _internal_has_mission_schema() const; + public: + void clear_mission_schema(); + const std::string& mission_schema() const; + template + void set_mission_schema(ArgT0&& arg0, ArgT... args); + std::string* mutable_mission_schema(); + PROTOBUF_NODISCARD std::string* release_mission_schema(); + void set_allocated_mission_schema(std::string* mission_schema); + private: + const std::string& _internal_mission_schema() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mission_schema(const std::string& value); + std::string* _internal_mutable_mission_schema(); + public: + + // optional uint32 period = 1; + bool has_period() const; + private: + bool _internal_has_period() const; + public: + void clear_period(); + uint32_t period() const; + void set_period(uint32_t value); + private: + uint32_t _internal_period() const; + void _internal_set_period(uint32_t value); + public: + + // @@protoc_insertion_point(class_scope:CCSUsrMsg_RecurringMissionSchema) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; + struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr mission_schema_; + uint32_t period_; + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_cstrike15_5fusermessages_2eproto; +}; +// ------------------------------------------------------------------- + +class CCSUsrMsg_SendPlayerLoadout_LoadoutItem : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCSUsrMsg_SendPlayerLoadout.LoadoutItem) */ { + public: + inline CCSUsrMsg_SendPlayerLoadout_LoadoutItem() : CCSUsrMsg_SendPlayerLoadout_LoadoutItem(nullptr) {} + ~CCSUsrMsg_SendPlayerLoadout_LoadoutItem() override; + explicit PROTOBUF_CONSTEXPR CCSUsrMsg_SendPlayerLoadout_LoadoutItem(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + + CCSUsrMsg_SendPlayerLoadout_LoadoutItem(const CCSUsrMsg_SendPlayerLoadout_LoadoutItem& from); + CCSUsrMsg_SendPlayerLoadout_LoadoutItem(CCSUsrMsg_SendPlayerLoadout_LoadoutItem&& from) noexcept + : CCSUsrMsg_SendPlayerLoadout_LoadoutItem() { + *this = ::std::move(from); + } + + inline CCSUsrMsg_SendPlayerLoadout_LoadoutItem& operator=(const CCSUsrMsg_SendPlayerLoadout_LoadoutItem& from) { + CopyFrom(from); + return *this; + } + inline CCSUsrMsg_SendPlayerLoadout_LoadoutItem& operator=(CCSUsrMsg_SendPlayerLoadout_LoadoutItem&& from) noexcept { + if (this == &from) return *this; + if (GetOwningArena() == from.GetOwningArena() + #ifdef PROTOBUF_FORCE_COPY_IN_MOVE + && GetOwningArena() != nullptr + #endif // !PROTOBUF_FORCE_COPY_IN_MOVE + ) { + InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + + inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { + return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); + } + inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { + return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); + } + + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { + return GetDescriptor(); + } + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { + return default_instance().GetMetadata().descriptor; + } + static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { + return default_instance().GetMetadata().reflection; + } + static const CCSUsrMsg_SendPlayerLoadout_LoadoutItem& default_instance() { + return *internal_default_instance(); + } + static inline const CCSUsrMsg_SendPlayerLoadout_LoadoutItem* internal_default_instance() { + return reinterpret_cast( + &_CCSUsrMsg_SendPlayerLoadout_LoadoutItem_default_instance_); + } + static constexpr int kIndexInFileMessages = + 87; + + friend void swap(CCSUsrMsg_SendPlayerLoadout_LoadoutItem& a, CCSUsrMsg_SendPlayerLoadout_LoadoutItem& b) { + a.Swap(&b); + } + inline void Swap(CCSUsrMsg_SendPlayerLoadout_LoadoutItem* other) { + if (other == this) return; + #ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() != nullptr && + GetOwningArena() == other->GetOwningArena()) { + #else // PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() == other->GetOwningArena()) { + #endif // !PROTOBUF_FORCE_COPY_IN_SWAP + InternalSwap(other); + } else { + ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); + } + } + void UnsafeArenaSwap(CCSUsrMsg_SendPlayerLoadout_LoadoutItem* other) { + if (other == this) return; + GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + CCSUsrMsg_SendPlayerLoadout_LoadoutItem* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); + } + using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; + void CopyFrom(const CCSUsrMsg_SendPlayerLoadout_LoadoutItem& from); + using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; + void MergeFrom( const CCSUsrMsg_SendPlayerLoadout_LoadoutItem& from) { + CCSUsrMsg_SendPlayerLoadout_LoadoutItem::MergeImpl(*this, from); + } + private: + static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); + public: + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; + uint8_t* _InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const final { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(CCSUsrMsg_SendPlayerLoadout_LoadoutItem* other); + + private: + friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; + static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { + return "CCSUsrMsg_SendPlayerLoadout.LoadoutItem"; + } + protected: + explicit CCSUsrMsg_SendPlayerLoadout_LoadoutItem(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned = false); + public: + + static const ClassData _class_data_; + const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; + + ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + enum : int { + kEconItemFieldNumber = 1, + kTeamFieldNumber = 2, + kSlotFieldNumber = 3, + }; + // optional .CEconItemPreviewDataBlock econ_item = 1; + bool has_econ_item() const; + private: + bool _internal_has_econ_item() const; + public: + void clear_econ_item(); + const ::CEconItemPreviewDataBlock& econ_item() const; + PROTOBUF_NODISCARD ::CEconItemPreviewDataBlock* release_econ_item(); + ::CEconItemPreviewDataBlock* mutable_econ_item(); + void set_allocated_econ_item(::CEconItemPreviewDataBlock* econ_item); + private: + const ::CEconItemPreviewDataBlock& _internal_econ_item() const; + ::CEconItemPreviewDataBlock* _internal_mutable_econ_item(); + public: + void unsafe_arena_set_allocated_econ_item( + ::CEconItemPreviewDataBlock* econ_item); + ::CEconItemPreviewDataBlock* unsafe_arena_release_econ_item(); + + // optional int32 team = 2; + bool has_team() const; + private: + bool _internal_has_team() const; + public: + void clear_team(); + int32_t team() const; + void set_team(int32_t value); + private: + int32_t _internal_team() const; + void _internal_set_team(int32_t value); + public: + + // optional int32 slot = 3; + bool has_slot() const; private: - bool _internal_has_victim_damage() const; + bool _internal_has_slot() const; public: - void clear_victim_damage(); - int32_t victim_damage() const; - void set_victim_damage(int32_t value); + void clear_slot(); + int32_t slot() const; + void set_slot(int32_t value); private: - int32_t _internal_victim_damage() const; - void _internal_set_victim_damage(int32_t value); + int32_t _internal_slot() const; + void _internal_set_slot(int32_t value); public: - // @@protoc_insertion_point(class_scope:CCSUsrMsg_DamagePrediction) + // @@protoc_insertion_point(class_scope:CCSUsrMsg_SendPlayerLoadout.LoadoutItem) private: class _Internal; @@ -17554,38 +17613,33 @@ class CCSUsrMsg_DamagePrediction : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::CMsgVector* shoot_pos_; - ::CMsgQAngle* shoot_dir_; - ::CMsgQAngle* aim_punch_; - int32_t command_num_; - int32_t pellet_idx_; - int32_t victim_slot_; - int32_t victim_starting_health_; - int32_t victim_damage_; + ::CEconItemPreviewDataBlock* econ_item_; + int32_t team_; + int32_t slot_; }; union { Impl_ _impl_; }; friend struct ::TableStruct_cstrike15_5fusermessages_2eproto; }; // ------------------------------------------------------------------- -class CCSUsrMsg_RecurringMissionSchema : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCSUsrMsg_RecurringMissionSchema) */ { +class CCSUsrMsg_SendPlayerLoadout : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCSUsrMsg_SendPlayerLoadout) */ { public: - inline CCSUsrMsg_RecurringMissionSchema() : CCSUsrMsg_RecurringMissionSchema(nullptr) {} - ~CCSUsrMsg_RecurringMissionSchema() override; - explicit PROTOBUF_CONSTEXPR CCSUsrMsg_RecurringMissionSchema(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CCSUsrMsg_SendPlayerLoadout() : CCSUsrMsg_SendPlayerLoadout(nullptr) {} + ~CCSUsrMsg_SendPlayerLoadout() override; + explicit PROTOBUF_CONSTEXPR CCSUsrMsg_SendPlayerLoadout(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CCSUsrMsg_RecurringMissionSchema(const CCSUsrMsg_RecurringMissionSchema& from); - CCSUsrMsg_RecurringMissionSchema(CCSUsrMsg_RecurringMissionSchema&& from) noexcept - : CCSUsrMsg_RecurringMissionSchema() { + CCSUsrMsg_SendPlayerLoadout(const CCSUsrMsg_SendPlayerLoadout& from); + CCSUsrMsg_SendPlayerLoadout(CCSUsrMsg_SendPlayerLoadout&& from) noexcept + : CCSUsrMsg_SendPlayerLoadout() { *this = ::std::move(from); } - inline CCSUsrMsg_RecurringMissionSchema& operator=(const CCSUsrMsg_RecurringMissionSchema& from) { + inline CCSUsrMsg_SendPlayerLoadout& operator=(const CCSUsrMsg_SendPlayerLoadout& from) { CopyFrom(from); return *this; } - inline CCSUsrMsg_RecurringMissionSchema& operator=(CCSUsrMsg_RecurringMissionSchema&& from) noexcept { + inline CCSUsrMsg_SendPlayerLoadout& operator=(CCSUsrMsg_SendPlayerLoadout&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -17615,20 +17669,20 @@ class CCSUsrMsg_RecurringMissionSchema : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CCSUsrMsg_RecurringMissionSchema& default_instance() { + static const CCSUsrMsg_SendPlayerLoadout& default_instance() { return *internal_default_instance(); } - static inline const CCSUsrMsg_RecurringMissionSchema* internal_default_instance() { - return reinterpret_cast( - &_CCSUsrMsg_RecurringMissionSchema_default_instance_); + static inline const CCSUsrMsg_SendPlayerLoadout* internal_default_instance() { + return reinterpret_cast( + &_CCSUsrMsg_SendPlayerLoadout_default_instance_); } static constexpr int kIndexInFileMessages = 88; - friend void swap(CCSUsrMsg_RecurringMissionSchema& a, CCSUsrMsg_RecurringMissionSchema& b) { + friend void swap(CCSUsrMsg_SendPlayerLoadout& a, CCSUsrMsg_SendPlayerLoadout& b) { a.Swap(&b); } - inline void Swap(CCSUsrMsg_RecurringMissionSchema* other) { + inline void Swap(CCSUsrMsg_SendPlayerLoadout* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -17641,7 +17695,7 @@ class CCSUsrMsg_RecurringMissionSchema : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CCSUsrMsg_RecurringMissionSchema* other) { + void UnsafeArenaSwap(CCSUsrMsg_SendPlayerLoadout* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -17649,14 +17703,14 @@ class CCSUsrMsg_RecurringMissionSchema : // implements Message ---------------------------------------------- - CCSUsrMsg_RecurringMissionSchema* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CCSUsrMsg_SendPlayerLoadout* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CCSUsrMsg_RecurringMissionSchema& from); + void CopyFrom(const CCSUsrMsg_SendPlayerLoadout& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CCSUsrMsg_RecurringMissionSchema& from) { - CCSUsrMsg_RecurringMissionSchema::MergeImpl(*this, from); + void MergeFrom( const CCSUsrMsg_SendPlayerLoadout& from) { + CCSUsrMsg_SendPlayerLoadout::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -17674,15 +17728,15 @@ class CCSUsrMsg_RecurringMissionSchema : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CCSUsrMsg_RecurringMissionSchema* other); + void InternalSwap(CCSUsrMsg_SendPlayerLoadout* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CCSUsrMsg_RecurringMissionSchema"; + return "CCSUsrMsg_SendPlayerLoadout"; } protected: - explicit CCSUsrMsg_RecurringMissionSchema(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CCSUsrMsg_SendPlayerLoadout(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -17693,44 +17747,46 @@ class CCSUsrMsg_RecurringMissionSchema : // nested types ---------------------------------------------------- + typedef CCSUsrMsg_SendPlayerLoadout_LoadoutItem LoadoutItem; + // accessors ------------------------------------------------------- enum : int { - kMissionSchemaFieldNumber = 2, - kPeriodFieldNumber = 1, + kLoadoutFieldNumber = 1, + kPlayerslotFieldNumber = 2, }; - // optional bytes mission_schema = 2; - bool has_mission_schema() const; + // repeated .CCSUsrMsg_SendPlayerLoadout.LoadoutItem loadout = 1; + int loadout_size() const; private: - bool _internal_has_mission_schema() const; + int _internal_loadout_size() const; public: - void clear_mission_schema(); - const std::string& mission_schema() const; - template - void set_mission_schema(ArgT0&& arg0, ArgT... args); - std::string* mutable_mission_schema(); - PROTOBUF_NODISCARD std::string* release_mission_schema(); - void set_allocated_mission_schema(std::string* mission_schema); + void clear_loadout(); + ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem* mutable_loadout(int index); + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem >* + mutable_loadout(); private: - const std::string& _internal_mission_schema() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mission_schema(const std::string& value); - std::string* _internal_mutable_mission_schema(); + const ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem& _internal_loadout(int index) const; + ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem* _internal_add_loadout(); public: + const ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem& loadout(int index) const; + ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem* add_loadout(); + const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem >& + loadout() const; - // optional uint32 period = 1; - bool has_period() const; + // optional int32 playerslot = 2 [default = -1]; + bool has_playerslot() const; private: - bool _internal_has_period() const; + bool _internal_has_playerslot() const; public: - void clear_period(); - uint32_t period() const; - void set_period(uint32_t value); + void clear_playerslot(); + int32_t playerslot() const; + void set_playerslot(int32_t value); private: - uint32_t _internal_period() const; - void _internal_set_period(uint32_t value); + int32_t _internal_playerslot() const; + void _internal_set_playerslot(int32_t value); public: - // @@protoc_insertion_point(class_scope:CCSUsrMsg_RecurringMissionSchema) + // @@protoc_insertion_point(class_scope:CCSUsrMsg_SendPlayerLoadout) private: class _Internal; @@ -17740,8 +17796,8 @@ class CCSUsrMsg_RecurringMissionSchema : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr mission_schema_; - uint32_t period_; + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem > loadout_; + int32_t playerslot_; }; union { Impl_ _impl_; }; friend struct ::TableStruct_cstrike15_5fusermessages_2eproto; @@ -24156,38 +24212,6 @@ inline void CCSUsrMsg_ItemDrop::set_death(bool value) { // ------------------------------------------------------------------- -// CCSUsrMsg_GlowPropTurnOff - -// optional int32 entidx = 1 [default = -1]; -inline bool CCSUsrMsg_GlowPropTurnOff::_internal_has_entidx() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline bool CCSUsrMsg_GlowPropTurnOff::has_entidx() const { - return _internal_has_entidx(); -} -inline void CCSUsrMsg_GlowPropTurnOff::clear_entidx() { - _impl_.entidx_ = -1; - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline int32_t CCSUsrMsg_GlowPropTurnOff::_internal_entidx() const { - return _impl_.entidx_; -} -inline int32_t CCSUsrMsg_GlowPropTurnOff::entidx() const { - // @@protoc_insertion_point(field_get:CCSUsrMsg_GlowPropTurnOff.entidx) - return _internal_entidx(); -} -inline void CCSUsrMsg_GlowPropTurnOff::_internal_set_entidx(int32_t value) { - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.entidx_ = value; -} -inline void CCSUsrMsg_GlowPropTurnOff::set_entidx(int32_t value) { - _internal_set_entidx(value); - // @@protoc_insertion_point(field_set:CCSUsrMsg_GlowPropTurnOff.entidx) -} - -// ------------------------------------------------------------------- - // CCSUsrMsg_RoundBackupFilenames // optional int32 count = 1; @@ -27159,38 +27183,6 @@ inline void CCSUsrMsg_DisconnectToLobby::set_dummy(int32_t value) { // ------------------------------------------------------------------- -// CCSUsrMsg_WarmupHasEnded - -// optional int32 dummy = 1; -inline bool CCSUsrMsg_WarmupHasEnded::_internal_has_dummy() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline bool CCSUsrMsg_WarmupHasEnded::has_dummy() const { - return _internal_has_dummy(); -} -inline void CCSUsrMsg_WarmupHasEnded::clear_dummy() { - _impl_.dummy_ = 0; - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline int32_t CCSUsrMsg_WarmupHasEnded::_internal_dummy() const { - return _impl_.dummy_; -} -inline int32_t CCSUsrMsg_WarmupHasEnded::dummy() const { - // @@protoc_insertion_point(field_get:CCSUsrMsg_WarmupHasEnded.dummy) - return _internal_dummy(); -} -inline void CCSUsrMsg_WarmupHasEnded::_internal_set_dummy(int32_t value) { - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.dummy_ = value; -} -inline void CCSUsrMsg_WarmupHasEnded::set_dummy(int32_t value) { - _internal_set_dummy(value); - // @@protoc_insertion_point(field_set:CCSUsrMsg_WarmupHasEnded.dummy) -} - -// ------------------------------------------------------------------- - // CCSUsrMsg_ClientInfo // optional int32 dummy = 1; @@ -28033,6 +28025,225 @@ inline void CCSUsrMsg_RecurringMissionSchema::set_allocated_mission_schema(std:: // @@protoc_insertion_point(field_set_allocated:CCSUsrMsg_RecurringMissionSchema.mission_schema) } +// ------------------------------------------------------------------- + +// CCSUsrMsg_SendPlayerLoadout_LoadoutItem + +// optional .CEconItemPreviewDataBlock econ_item = 1; +inline bool CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_internal_has_econ_item() const { + bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; + PROTOBUF_ASSUME(!value || _impl_.econ_item_ != nullptr); + return value; +} +inline bool CCSUsrMsg_SendPlayerLoadout_LoadoutItem::has_econ_item() const { + return _internal_has_econ_item(); +} +inline const ::CEconItemPreviewDataBlock& CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_internal_econ_item() const { + const ::CEconItemPreviewDataBlock* p = _impl_.econ_item_; + return p != nullptr ? *p : reinterpret_cast( + ::_CEconItemPreviewDataBlock_default_instance_); +} +inline const ::CEconItemPreviewDataBlock& CCSUsrMsg_SendPlayerLoadout_LoadoutItem::econ_item() const { + // @@protoc_insertion_point(field_get:CCSUsrMsg_SendPlayerLoadout.LoadoutItem.econ_item) + return _internal_econ_item(); +} +inline void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::unsafe_arena_set_allocated_econ_item( + ::CEconItemPreviewDataBlock* econ_item) { + if (GetArenaForAllocation() == nullptr) { + delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(_impl_.econ_item_); + } + _impl_.econ_item_ = econ_item; + if (econ_item) { + _impl_._has_bits_[0] |= 0x00000001u; + } else { + _impl_._has_bits_[0] &= ~0x00000001u; + } + // @@protoc_insertion_point(field_unsafe_arena_set_allocated:CCSUsrMsg_SendPlayerLoadout.LoadoutItem.econ_item) +} +inline ::CEconItemPreviewDataBlock* CCSUsrMsg_SendPlayerLoadout_LoadoutItem::release_econ_item() { + _impl_._has_bits_[0] &= ~0x00000001u; + ::CEconItemPreviewDataBlock* temp = _impl_.econ_item_; + _impl_.econ_item_ = nullptr; +#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE + auto* old = reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(temp); + temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp); + if (GetArenaForAllocation() == nullptr) { delete old; } +#else // PROTOBUF_FORCE_COPY_IN_RELEASE + if (GetArenaForAllocation() != nullptr) { + temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp); + } +#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE + return temp; +} +inline ::CEconItemPreviewDataBlock* CCSUsrMsg_SendPlayerLoadout_LoadoutItem::unsafe_arena_release_econ_item() { + // @@protoc_insertion_point(field_release:CCSUsrMsg_SendPlayerLoadout.LoadoutItem.econ_item) + _impl_._has_bits_[0] &= ~0x00000001u; + ::CEconItemPreviewDataBlock* temp = _impl_.econ_item_; + _impl_.econ_item_ = nullptr; + return temp; +} +inline ::CEconItemPreviewDataBlock* CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_internal_mutable_econ_item() { + _impl_._has_bits_[0] |= 0x00000001u; + if (_impl_.econ_item_ == nullptr) { + auto* p = CreateMaybeMessage<::CEconItemPreviewDataBlock>(GetArenaForAllocation()); + _impl_.econ_item_ = p; + } + return _impl_.econ_item_; +} +inline ::CEconItemPreviewDataBlock* CCSUsrMsg_SendPlayerLoadout_LoadoutItem::mutable_econ_item() { + ::CEconItemPreviewDataBlock* _msg = _internal_mutable_econ_item(); + // @@protoc_insertion_point(field_mutable:CCSUsrMsg_SendPlayerLoadout.LoadoutItem.econ_item) + return _msg; +} +inline void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::set_allocated_econ_item(::CEconItemPreviewDataBlock* econ_item) { + ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArenaForAllocation(); + if (message_arena == nullptr) { + delete reinterpret_cast< ::PROTOBUF_NAMESPACE_ID::MessageLite*>(_impl_.econ_item_); + } + if (econ_item) { + ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena = + ::PROTOBUF_NAMESPACE_ID::Arena::InternalGetOwningArena( + reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(econ_item)); + if (message_arena != submessage_arena) { + econ_item = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage( + message_arena, econ_item, submessage_arena); + } + _impl_._has_bits_[0] |= 0x00000001u; + } else { + _impl_._has_bits_[0] &= ~0x00000001u; + } + _impl_.econ_item_ = econ_item; + // @@protoc_insertion_point(field_set_allocated:CCSUsrMsg_SendPlayerLoadout.LoadoutItem.econ_item) +} + +// optional int32 team = 2; +inline bool CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_internal_has_team() const { + bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; + return value; +} +inline bool CCSUsrMsg_SendPlayerLoadout_LoadoutItem::has_team() const { + return _internal_has_team(); +} +inline void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::clear_team() { + _impl_.team_ = 0; + _impl_._has_bits_[0] &= ~0x00000002u; +} +inline int32_t CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_internal_team() const { + return _impl_.team_; +} +inline int32_t CCSUsrMsg_SendPlayerLoadout_LoadoutItem::team() const { + // @@protoc_insertion_point(field_get:CCSUsrMsg_SendPlayerLoadout.LoadoutItem.team) + return _internal_team(); +} +inline void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_internal_set_team(int32_t value) { + _impl_._has_bits_[0] |= 0x00000002u; + _impl_.team_ = value; +} +inline void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::set_team(int32_t value) { + _internal_set_team(value); + // @@protoc_insertion_point(field_set:CCSUsrMsg_SendPlayerLoadout.LoadoutItem.team) +} + +// optional int32 slot = 3; +inline bool CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_internal_has_slot() const { + bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; + return value; +} +inline bool CCSUsrMsg_SendPlayerLoadout_LoadoutItem::has_slot() const { + return _internal_has_slot(); +} +inline void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::clear_slot() { + _impl_.slot_ = 0; + _impl_._has_bits_[0] &= ~0x00000004u; +} +inline int32_t CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_internal_slot() const { + return _impl_.slot_; +} +inline int32_t CCSUsrMsg_SendPlayerLoadout_LoadoutItem::slot() const { + // @@protoc_insertion_point(field_get:CCSUsrMsg_SendPlayerLoadout.LoadoutItem.slot) + return _internal_slot(); +} +inline void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::_internal_set_slot(int32_t value) { + _impl_._has_bits_[0] |= 0x00000004u; + _impl_.slot_ = value; +} +inline void CCSUsrMsg_SendPlayerLoadout_LoadoutItem::set_slot(int32_t value) { + _internal_set_slot(value); + // @@protoc_insertion_point(field_set:CCSUsrMsg_SendPlayerLoadout.LoadoutItem.slot) +} + +// ------------------------------------------------------------------- + +// CCSUsrMsg_SendPlayerLoadout + +// repeated .CCSUsrMsg_SendPlayerLoadout.LoadoutItem loadout = 1; +inline int CCSUsrMsg_SendPlayerLoadout::_internal_loadout_size() const { + return _impl_.loadout_.size(); +} +inline int CCSUsrMsg_SendPlayerLoadout::loadout_size() const { + return _internal_loadout_size(); +} +inline void CCSUsrMsg_SendPlayerLoadout::clear_loadout() { + _impl_.loadout_.Clear(); +} +inline ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem* CCSUsrMsg_SendPlayerLoadout::mutable_loadout(int index) { + // @@protoc_insertion_point(field_mutable:CCSUsrMsg_SendPlayerLoadout.loadout) + return _impl_.loadout_.Mutable(index); +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem >* +CCSUsrMsg_SendPlayerLoadout::mutable_loadout() { + // @@protoc_insertion_point(field_mutable_list:CCSUsrMsg_SendPlayerLoadout.loadout) + return &_impl_.loadout_; +} +inline const ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem& CCSUsrMsg_SendPlayerLoadout::_internal_loadout(int index) const { + return _impl_.loadout_.Get(index); +} +inline const ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem& CCSUsrMsg_SendPlayerLoadout::loadout(int index) const { + // @@protoc_insertion_point(field_get:CCSUsrMsg_SendPlayerLoadout.loadout) + return _internal_loadout(index); +} +inline ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem* CCSUsrMsg_SendPlayerLoadout::_internal_add_loadout() { + return _impl_.loadout_.Add(); +} +inline ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem* CCSUsrMsg_SendPlayerLoadout::add_loadout() { + ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem* _add = _internal_add_loadout(); + // @@protoc_insertion_point(field_add:CCSUsrMsg_SendPlayerLoadout.loadout) + return _add; +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CCSUsrMsg_SendPlayerLoadout_LoadoutItem >& +CCSUsrMsg_SendPlayerLoadout::loadout() const { + // @@protoc_insertion_point(field_list:CCSUsrMsg_SendPlayerLoadout.loadout) + return _impl_.loadout_; +} + +// optional int32 playerslot = 2 [default = -1]; +inline bool CCSUsrMsg_SendPlayerLoadout::_internal_has_playerslot() const { + bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; + return value; +} +inline bool CCSUsrMsg_SendPlayerLoadout::has_playerslot() const { + return _internal_has_playerslot(); +} +inline void CCSUsrMsg_SendPlayerLoadout::clear_playerslot() { + _impl_.playerslot_ = -1; + _impl_._has_bits_[0] &= ~0x00000001u; +} +inline int32_t CCSUsrMsg_SendPlayerLoadout::_internal_playerslot() const { + return _impl_.playerslot_; +} +inline int32_t CCSUsrMsg_SendPlayerLoadout::playerslot() const { + // @@protoc_insertion_point(field_get:CCSUsrMsg_SendPlayerLoadout.playerslot) + return _internal_playerslot(); +} +inline void CCSUsrMsg_SendPlayerLoadout::_internal_set_playerslot(int32_t value) { + _impl_._has_bits_[0] |= 0x00000001u; + _impl_.playerslot_ = value; +} +inline void CCSUsrMsg_SendPlayerLoadout::set_playerslot(int32_t value) { + _internal_set_playerslot(value); + // @@protoc_insertion_point(field_set:CCSUsrMsg_SendPlayerLoadout.playerslot) +} + #ifdef __GNUC__ #pragma GCC diagnostic pop #endif // __GNUC__ diff --git a/protobuf/generated/netmessages.pb.cc b/protobuf/generated/netmessages.pb.cc index 26bbd18ca..4398801ff 100644 --- a/protobuf/generated/netmessages.pb.cc +++ b/protobuf/generated/netmessages.pb.cc @@ -137,24 +137,6 @@ struct CCLCMsg_RespondCvarValueDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CCLCMsg_RespondCvarValueDefaultTypeInternal _CCLCMsg_RespondCvarValue_default_instance_; -PROTOBUF_CONSTEXPR CCLCMsg_FileCRCCheck::CCLCMsg_FileCRCCheck( - ::_pbi::ConstantInitialized): _impl_{ - /*decltype(_impl_._has_bits_)*/{} - , /*decltype(_impl_._cached_size_)*/{} - , /*decltype(_impl_.path_)*/{&::_pbi::fixed_address_empty_string, ::_pbi::ConstantInitialized{}} - , /*decltype(_impl_.filename_)*/{&::_pbi::fixed_address_empty_string, ::_pbi::ConstantInitialized{}} - , /*decltype(_impl_.code_path_)*/0 - , /*decltype(_impl_.code_filename_)*/0 - , /*decltype(_impl_.crc_)*/0u} {} -struct CCLCMsg_FileCRCCheckDefaultTypeInternal { - PROTOBUF_CONSTEXPR CCLCMsg_FileCRCCheckDefaultTypeInternal() - : _instance(::_pbi::ConstantInitialized{}) {} - ~CCLCMsg_FileCRCCheckDefaultTypeInternal() {} - union { - CCLCMsg_FileCRCCheck _instance; - }; -}; -PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CCLCMsg_FileCRCCheckDefaultTypeInternal _CCLCMsg_FileCRCCheck_default_instance_; PROTOBUF_CONSTEXPR CCLCMsg_LoadingProgress::CCLCMsg_LoadingProgress( ::_pbi::ConstantInitialized): _impl_{ /*decltype(_impl_._has_bits_)*/{} @@ -269,7 +251,9 @@ PROTOBUF_CONSTEXPR CMsgSource2SystemSpecs::CMsgSource2SystemSpecs( , /*decltype(_impl_.gpu_driver_version_high_)*/0u , /*decltype(_impl_.gpu_driver_version_low_)*/0u , /*decltype(_impl_.gpu_dx_support_level_)*/0u - , /*decltype(_impl_.gpu_texture_memory_size_mb_)*/0u} {} + , /*decltype(_impl_.gpu_texture_memory_size_mb_)*/0u + , /*decltype(_impl_.backbuffer_width_)*/0u + , /*decltype(_impl_.backbuffer_height_)*/0u} {} struct CMsgSource2SystemSpecsDefaultTypeInternal { PROTOBUF_CONSTEXPR CMsgSource2SystemSpecsDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} @@ -368,10 +352,45 @@ struct CMsgSource2NetworkFlowQualityDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CMsgSource2NetworkFlowQualityDefaultTypeInternal _CMsgSource2NetworkFlowQuality_default_instance_; +PROTOBUF_CONSTEXPR CMsgSource2PerfIntervalSample_Tag::CMsgSource2PerfIntervalSample_Tag( + ::_pbi::ConstantInitialized): _impl_{ + /*decltype(_impl_._has_bits_)*/{} + , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.tag_)*/{&::_pbi::fixed_address_empty_string, ::_pbi::ConstantInitialized{}} + , /*decltype(_impl_.max_value_)*/0u} {} +struct CMsgSource2PerfIntervalSample_TagDefaultTypeInternal { + PROTOBUF_CONSTEXPR CMsgSource2PerfIntervalSample_TagDefaultTypeInternal() + : _instance(::_pbi::ConstantInitialized{}) {} + ~CMsgSource2PerfIntervalSample_TagDefaultTypeInternal() {} + union { + CMsgSource2PerfIntervalSample_Tag _instance; + }; +}; +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CMsgSource2PerfIntervalSample_TagDefaultTypeInternal _CMsgSource2PerfIntervalSample_Tag_default_instance_; +PROTOBUF_CONSTEXPR CMsgSource2PerfIntervalSample::CMsgSource2PerfIntervalSample( + ::_pbi::ConstantInitialized): _impl_{ + /*decltype(_impl_._has_bits_)*/{} + , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.tags_)*/{} + , /*decltype(_impl_.frame_time_max_ms_)*/0 + , /*decltype(_impl_.frame_time_avg_ms_)*/0 + , /*decltype(_impl_.frame_time_min_ms_)*/0 + , /*decltype(_impl_.frame_count_)*/0 + , /*decltype(_impl_.frame_time_total_ms_)*/0} {} +struct CMsgSource2PerfIntervalSampleDefaultTypeInternal { + PROTOBUF_CONSTEXPR CMsgSource2PerfIntervalSampleDefaultTypeInternal() + : _instance(::_pbi::ConstantInitialized{}) {} + ~CMsgSource2PerfIntervalSampleDefaultTypeInternal() {} + union { + CMsgSource2PerfIntervalSample _instance; + }; +}; +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CMsgSource2PerfIntervalSampleDefaultTypeInternal _CMsgSource2PerfIntervalSample_default_instance_; PROTOBUF_CONSTEXPR CCLCMsg_Diagnostic::CCLCMsg_Diagnostic( ::_pbi::ConstantInitialized): _impl_{ /*decltype(_impl_._has_bits_)*/{} , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.perf_samples_)*/{} , /*decltype(_impl_.system_specs_)*/nullptr , /*decltype(_impl_.vprof_report_)*/nullptr , /*decltype(_impl_.downstream_flow_)*/nullptr @@ -389,6 +408,7 @@ PROTOBUF_CONSTEXPR CSource2Metrics_MatchPerfSummary_Notification_Client::CSource ::_pbi::ConstantInitialized): _impl_{ /*decltype(_impl_._has_bits_)*/{} , /*decltype(_impl_._cached_size_)*/{} + , /*decltype(_impl_.perf_samples_)*/{} , /*decltype(_impl_.system_specs_)*/nullptr , /*decltype(_impl_.profile_)*/nullptr , /*decltype(_impl_.downstream_flow_)*/nullptr @@ -413,7 +433,8 @@ PROTOBUF_CONSTEXPR CSource2Metrics_MatchPerfSummary_Notification::CSource2Metric , /*decltype(_impl_.map_)*/{&::_pbi::fixed_address_empty_string, ::_pbi::ConstantInitialized{}} , /*decltype(_impl_.server_profile_)*/nullptr , /*decltype(_impl_.appid_)*/0u - , /*decltype(_impl_.server_build_id_)*/0u} {} + , /*decltype(_impl_.server_build_id_)*/0u + , /*decltype(_impl_.server_popid_)*/0u} {} struct CSource2Metrics_MatchPerfSummary_NotificationDefaultTypeInternal { PROTOBUF_CONSTEXPR CSource2Metrics_MatchPerfSummary_NotificationDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} @@ -1433,7 +1454,7 @@ struct CSVCMsg_UserCommandsDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CSVCMsg_UserCommandsDefaultTypeInternal _CSVCMsg_UserCommands_default_instance_; -static ::_pb::Metadata file_level_metadata_netmessages_2eproto[80]; +static ::_pb::Metadata file_level_metadata_netmessages_2eproto[81]; static const ::_pb::EnumDescriptor* file_level_enum_descriptors_netmessages_2eproto[13]; static constexpr ::_pb::ServiceDescriptor const** file_level_service_descriptors_netmessages_2eproto = nullptr; @@ -1531,22 +1552,6 @@ const uint32_t TableStruct_netmessages_2eproto::offsets[] PROTOBUF_SECTION_VARIA 3, 0, 1, - PROTOBUF_FIELD_OFFSET(::CCLCMsg_FileCRCCheck, _impl_._has_bits_), - PROTOBUF_FIELD_OFFSET(::CCLCMsg_FileCRCCheck, _internal_metadata_), - ~0u, // no _extensions_ - ~0u, // no _oneof_case_ - ~0u, // no _weak_field_map_ - ~0u, // no _inlined_string_donated_ - PROTOBUF_FIELD_OFFSET(::CCLCMsg_FileCRCCheck, _impl_.code_path_), - PROTOBUF_FIELD_OFFSET(::CCLCMsg_FileCRCCheck, _impl_.path_), - PROTOBUF_FIELD_OFFSET(::CCLCMsg_FileCRCCheck, _impl_.code_filename_), - PROTOBUF_FIELD_OFFSET(::CCLCMsg_FileCRCCheck, _impl_.filename_), - PROTOBUF_FIELD_OFFSET(::CCLCMsg_FileCRCCheck, _impl_.crc_), - 2, - 0, - 3, - 1, - 4, PROTOBUF_FIELD_OFFSET(::CCLCMsg_LoadingProgress, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CCLCMsg_LoadingProgress, _internal_metadata_), ~0u, // no _extensions_ @@ -1623,6 +1628,8 @@ const uint32_t TableStruct_netmessages_2eproto::offsets[] PROTOBUF_SECTION_VARIA PROTOBUF_FIELD_OFFSET(::CMsgSource2SystemSpecs, _impl_.gpu_driver_version_low_), PROTOBUF_FIELD_OFFSET(::CMsgSource2SystemSpecs, _impl_.gpu_dx_support_level_), PROTOBUF_FIELD_OFFSET(::CMsgSource2SystemSpecs, _impl_.gpu_texture_memory_size_mb_), + PROTOBUF_FIELD_OFFSET(::CMsgSource2SystemSpecs, _impl_.backbuffer_width_), + PROTOBUF_FIELD_OFFSET(::CMsgSource2SystemSpecs, _impl_.backbuffer_height_), 0, 1, 4, @@ -1635,6 +1642,8 @@ const uint32_t TableStruct_netmessages_2eproto::offsets[] PROTOBUF_SECTION_VARIA 9, 10, 11, + 12, + 13, PROTOBUF_FIELD_OFFSET(::CMsgSource2VProfLiteReportItem, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CMsgSource2VProfLiteReportItem, _internal_metadata_), ~0u, // no _extensions_ @@ -1753,6 +1762,34 @@ const uint32_t TableStruct_netmessages_2eproto::offsets[] PROTOBUF_SECTION_VARIA 26, 27, 28, + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample_Tag, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample_Tag, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample_Tag, _impl_.tag_), + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample_Tag, _impl_.max_value_), + 0, + 1, + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample, _impl_._has_bits_), + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample, _impl_.frame_time_max_ms_), + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample, _impl_.frame_time_avg_ms_), + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample, _impl_.frame_time_min_ms_), + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample, _impl_.frame_count_), + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample, _impl_.frame_time_total_ms_), + PROTOBUF_FIELD_OFFSET(::CMsgSource2PerfIntervalSample, _impl_.tags_), + 0, + 1, + 2, + 3, + 4, + ~0u, PROTOBUF_FIELD_OFFSET(::CCLCMsg_Diagnostic, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CCLCMsg_Diagnostic, _internal_metadata_), ~0u, // no _extensions_ @@ -1763,10 +1800,12 @@ const uint32_t TableStruct_netmessages_2eproto::offsets[] PROTOBUF_SECTION_VARIA PROTOBUF_FIELD_OFFSET(::CCLCMsg_Diagnostic, _impl_.vprof_report_), PROTOBUF_FIELD_OFFSET(::CCLCMsg_Diagnostic, _impl_.downstream_flow_), PROTOBUF_FIELD_OFFSET(::CCLCMsg_Diagnostic, _impl_.upstream_flow_), + PROTOBUF_FIELD_OFFSET(::CCLCMsg_Diagnostic, _impl_.perf_samples_), 0, 1, 2, 3, + ~0u, PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification_Client, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification_Client, _internal_metadata_), ~0u, // no _extensions_ @@ -1779,12 +1818,14 @@ const uint32_t TableStruct_netmessages_2eproto::offsets[] PROTOBUF_SECTION_VARIA PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification_Client, _impl_.downstream_flow_), PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification_Client, _impl_.upstream_flow_), PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification_Client, _impl_.steamid_), + PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification_Client, _impl_.perf_samples_), 0, 1, 5, 2, 3, 4, + ~0u, PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification, _internal_metadata_), ~0u, // no _extensions_ @@ -1794,12 +1835,14 @@ const uint32_t TableStruct_netmessages_2eproto::offsets[] PROTOBUF_SECTION_VARIA PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification, _impl_.appid_), PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification, _impl_.game_mode_), PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification, _impl_.server_build_id_), + PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification, _impl_.server_popid_), PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification, _impl_.server_profile_), PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification, _impl_.clients_), PROTOBUF_FIELD_OFFSET(::CSource2Metrics_MatchPerfSummary_Notification, _impl_.map_), 3, 0, 4, + 5, 2, ~0u, 1, @@ -2672,79 +2715,80 @@ static const ::_pbi::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protode { 62, 70, -1, sizeof(::CCLCMsg_BaselineAck)}, { 72, -1, -1, sizeof(::CCLCMsg_ListenEvents)}, { 79, 89, -1, sizeof(::CCLCMsg_RespondCvarValue)}, - { 93, 104, -1, sizeof(::CCLCMsg_FileCRCCheck)}, - { 109, 116, -1, sizeof(::CCLCMsg_LoadingProgress)}, - { 117, 124, -1, sizeof(::CCLCMsg_SplitPlayerConnect)}, - { 125, 132, -1, sizeof(::CCLCMsg_SplitPlayerDisconnect)}, - { 133, 140, -1, sizeof(::CCLCMsg_ServerStatus)}, - { 141, 149, -1, sizeof(::CCLCMsg_RequestPause)}, - { 151, 158, -1, sizeof(::CCLCMsg_CmdKeyValues)}, - { 159, 166, -1, sizeof(::CCLCMsg_RconServerDetails)}, - { 167, 185, -1, sizeof(::CMsgSource2SystemSpecs)}, - { 197, 221, -1, sizeof(::CMsgSource2VProfLiteReportItem)}, - { 239, 248, -1, sizeof(::CMsgSource2VProfLiteReport)}, - { 251, 286, -1, sizeof(::CMsgSource2NetworkFlowQuality)}, - { 315, 325, -1, sizeof(::CCLCMsg_Diagnostic)}, - { 329, 341, -1, sizeof(::CSource2Metrics_MatchPerfSummary_Notification_Client)}, - { 347, 359, -1, sizeof(::CSource2Metrics_MatchPerfSummary_Notification)}, - { 365, 387, -1, sizeof(::CSVCMsg_ServerInfo)}, - { 403, 411, -1, sizeof(::CSVCMsg_ClassInfo_class_t)}, - { 413, 421, -1, sizeof(::CSVCMsg_ClassInfo)}, - { 423, 430, -1, sizeof(::CSVCMsg_SetPause)}, - { 431, 440, -1, sizeof(::CSVCMsg_VoiceInit)}, - { 443, 450, -1, sizeof(::CSVCMsg_Print)}, - { 451, 476, -1, sizeof(::CSVCMsg_Sounds_sounddata_t)}, - { 495, 503, -1, sizeof(::CSVCMsg_Sounds)}, - { 505, 513, -1, sizeof(::CSVCMsg_Prefetch)}, - { 515, 523, -1, sizeof(::CSVCMsg_SetView)}, - { 525, 533, -1, sizeof(::CSVCMsg_FixAngle)}, - { 535, 542, -1, sizeof(::CSVCMsg_CrosshairAngle)}, - { 543, 554, -1, sizeof(::CSVCMsg_BSPDecal)}, - { 559, 568, -1, sizeof(::CSVCMsg_SplitScreen)}, - { 571, 579, -1, sizeof(::CSVCMsg_GetCvarValue)}, - { 581, 589, -1, sizeof(::CSVCMsg_Menu)}, - { 591, 600, -1, sizeof(::CSVCMsg_UserMessage)}, - { 603, 618, -1, sizeof(::CSVCMsg_SendTable_sendprop_t)}, - { 627, 637, -1, sizeof(::CSVCMsg_SendTable)}, - { 641, 649, -1, sizeof(::CSVCMsg_GameEventList_key_t)}, - { 651, 660, -1, sizeof(::CSVCMsg_GameEventList_descriptor_t)}, - { 663, -1, -1, sizeof(::CSVCMsg_GameEventList)}, - { 670, 678, -1, sizeof(::CSVCMsg_PacketEntities_alternate_baseline_t)}, - { 680, 688, -1, sizeof(::CSVCMsg_PacketEntities_non_transmitted_entities_t)}, - { 690, 698, -1, sizeof(::CSVCMsg_PacketEntities_outofpvs_entity_updates_t)}, - { 700, 728, -1, sizeof(::CSVCMsg_PacketEntities)}, - { 750, 759, -1, sizeof(::CSVCMsg_TempEntities)}, - { 762, 778, -1, sizeof(::CSVCMsg_CreateStringTable)}, - { 788, 797, -1, sizeof(::CSVCMsg_UpdateStringTable)}, - { 800, 813, -1, sizeof(::CSVCMsg_VoiceData)}, - { 820, 829, -1, sizeof(::CSVCMsg_PacketReliable)}, - { 832, 842, -1, sizeof(::CSVCMsg_FullFrameSplit)}, - { 846, 856, -1, sizeof(::CSVCMsg_HLTVStatus)}, - { 860, 867, -1, sizeof(::CSVCMsg_ServerSteamID)}, - { 868, 875, -1, sizeof(::CSVCMsg_CmdKeyValues)}, - { 876, 884, -1, sizeof(::CSVCMsg_RconServerDetails)}, - { 886, 894, -1, sizeof(::CMsgIPCAddress)}, - { 896, 908, -1, sizeof(::CMsgServerPeer)}, - { 914, -1, -1, sizeof(::CSVCMsg_PeerList)}, - { 921, 929, -1, sizeof(::CSVCMsg_ClearAllStringTables)}, - { 931, 939, -1, sizeof(::ProtoFlattenedSerializerField_t_polymorphic_field_t)}, - { 941, 959, -1, sizeof(::ProtoFlattenedSerializerField_t)}, - { 971, 980, -1, sizeof(::ProtoFlattenedSerializer_t)}, - { 983, -1, -1, sizeof(::CSVCMsg_FlattenedSerializer)}, - { 992, 999, -1, sizeof(::CSVCMsg_StopSound)}, - { 1000, 1010, -1, sizeof(::CBidirMsg_RebroadcastGameEvent)}, - { 1014, 1021, -1, sizeof(::CBidirMsg_RebroadcastSource)}, - { 1022, 1032, -1, sizeof(::CBidirMsg_PredictionEvent)}, - { 1036, 1044, -1, sizeof(::CMsgServerNetworkStats_Port)}, - { 1046, 1060, -1, sizeof(::CMsgServerNetworkStats_Player)}, - { 1068, 1099, -1, sizeof(::CMsgServerNetworkStats)}, - { 1124, 1138, -1, sizeof(::CSVCMsg_HltvReplay)}, - { 1146, 1157, -1, sizeof(::CCLCMsg_HltvReplay)}, - { 1162, 1169, -1, sizeof(::CSVCMsg_Broadcast_Command)}, - { 1170, 1184, -1, sizeof(::CCLCMsg_HltvFixupOperatorTick)}, - { 1192, 1200, -1, sizeof(::CSVCMsg_HltvFixupOperatorStatus)}, - { 1202, 1213, -1, sizeof(::CMsgServerUserCmd)}, - { 1218, -1, -1, sizeof(::CSVCMsg_UserCommands)}, + { 93, 100, -1, sizeof(::CCLCMsg_LoadingProgress)}, + { 101, 108, -1, sizeof(::CCLCMsg_SplitPlayerConnect)}, + { 109, 116, -1, sizeof(::CCLCMsg_SplitPlayerDisconnect)}, + { 117, 124, -1, sizeof(::CCLCMsg_ServerStatus)}, + { 125, 133, -1, sizeof(::CCLCMsg_RequestPause)}, + { 135, 142, -1, sizeof(::CCLCMsg_CmdKeyValues)}, + { 143, 150, -1, sizeof(::CCLCMsg_RconServerDetails)}, + { 151, 171, -1, sizeof(::CMsgSource2SystemSpecs)}, + { 185, 209, -1, sizeof(::CMsgSource2VProfLiteReportItem)}, + { 227, 236, -1, sizeof(::CMsgSource2VProfLiteReport)}, + { 239, 274, -1, sizeof(::CMsgSource2NetworkFlowQuality)}, + { 303, 311, -1, sizeof(::CMsgSource2PerfIntervalSample_Tag)}, + { 313, 325, -1, sizeof(::CMsgSource2PerfIntervalSample)}, + { 331, 342, -1, sizeof(::CCLCMsg_Diagnostic)}, + { 347, 360, -1, sizeof(::CSource2Metrics_MatchPerfSummary_Notification_Client)}, + { 367, 380, -1, sizeof(::CSource2Metrics_MatchPerfSummary_Notification)}, + { 387, 409, -1, sizeof(::CSVCMsg_ServerInfo)}, + { 425, 433, -1, sizeof(::CSVCMsg_ClassInfo_class_t)}, + { 435, 443, -1, sizeof(::CSVCMsg_ClassInfo)}, + { 445, 452, -1, sizeof(::CSVCMsg_SetPause)}, + { 453, 462, -1, sizeof(::CSVCMsg_VoiceInit)}, + { 465, 472, -1, sizeof(::CSVCMsg_Print)}, + { 473, 498, -1, sizeof(::CSVCMsg_Sounds_sounddata_t)}, + { 517, 525, -1, sizeof(::CSVCMsg_Sounds)}, + { 527, 535, -1, sizeof(::CSVCMsg_Prefetch)}, + { 537, 545, -1, sizeof(::CSVCMsg_SetView)}, + { 547, 555, -1, sizeof(::CSVCMsg_FixAngle)}, + { 557, 564, -1, sizeof(::CSVCMsg_CrosshairAngle)}, + { 565, 576, -1, sizeof(::CSVCMsg_BSPDecal)}, + { 581, 590, -1, sizeof(::CSVCMsg_SplitScreen)}, + { 593, 601, -1, sizeof(::CSVCMsg_GetCvarValue)}, + { 603, 611, -1, sizeof(::CSVCMsg_Menu)}, + { 613, 622, -1, sizeof(::CSVCMsg_UserMessage)}, + { 625, 640, -1, sizeof(::CSVCMsg_SendTable_sendprop_t)}, + { 649, 659, -1, sizeof(::CSVCMsg_SendTable)}, + { 663, 671, -1, sizeof(::CSVCMsg_GameEventList_key_t)}, + { 673, 682, -1, sizeof(::CSVCMsg_GameEventList_descriptor_t)}, + { 685, -1, -1, sizeof(::CSVCMsg_GameEventList)}, + { 692, 700, -1, sizeof(::CSVCMsg_PacketEntities_alternate_baseline_t)}, + { 702, 710, -1, sizeof(::CSVCMsg_PacketEntities_non_transmitted_entities_t)}, + { 712, 720, -1, sizeof(::CSVCMsg_PacketEntities_outofpvs_entity_updates_t)}, + { 722, 750, -1, sizeof(::CSVCMsg_PacketEntities)}, + { 772, 781, -1, sizeof(::CSVCMsg_TempEntities)}, + { 784, 800, -1, sizeof(::CSVCMsg_CreateStringTable)}, + { 810, 819, -1, sizeof(::CSVCMsg_UpdateStringTable)}, + { 822, 835, -1, sizeof(::CSVCMsg_VoiceData)}, + { 842, 851, -1, sizeof(::CSVCMsg_PacketReliable)}, + { 854, 864, -1, sizeof(::CSVCMsg_FullFrameSplit)}, + { 868, 878, -1, sizeof(::CSVCMsg_HLTVStatus)}, + { 882, 889, -1, sizeof(::CSVCMsg_ServerSteamID)}, + { 890, 897, -1, sizeof(::CSVCMsg_CmdKeyValues)}, + { 898, 906, -1, sizeof(::CSVCMsg_RconServerDetails)}, + { 908, 916, -1, sizeof(::CMsgIPCAddress)}, + { 918, 930, -1, sizeof(::CMsgServerPeer)}, + { 936, -1, -1, sizeof(::CSVCMsg_PeerList)}, + { 943, 951, -1, sizeof(::CSVCMsg_ClearAllStringTables)}, + { 953, 961, -1, sizeof(::ProtoFlattenedSerializerField_t_polymorphic_field_t)}, + { 963, 981, -1, sizeof(::ProtoFlattenedSerializerField_t)}, + { 993, 1002, -1, sizeof(::ProtoFlattenedSerializer_t)}, + { 1005, -1, -1, sizeof(::CSVCMsg_FlattenedSerializer)}, + { 1014, 1021, -1, sizeof(::CSVCMsg_StopSound)}, + { 1022, 1032, -1, sizeof(::CBidirMsg_RebroadcastGameEvent)}, + { 1036, 1043, -1, sizeof(::CBidirMsg_RebroadcastSource)}, + { 1044, 1054, -1, sizeof(::CBidirMsg_PredictionEvent)}, + { 1058, 1066, -1, sizeof(::CMsgServerNetworkStats_Port)}, + { 1068, 1082, -1, sizeof(::CMsgServerNetworkStats_Player)}, + { 1090, 1121, -1, sizeof(::CMsgServerNetworkStats)}, + { 1146, 1160, -1, sizeof(::CSVCMsg_HltvReplay)}, + { 1168, 1179, -1, sizeof(::CCLCMsg_HltvReplay)}, + { 1184, 1191, -1, sizeof(::CSVCMsg_Broadcast_Command)}, + { 1192, 1206, -1, sizeof(::CCLCMsg_HltvFixupOperatorTick)}, + { 1214, 1222, -1, sizeof(::CSVCMsg_HltvFixupOperatorStatus)}, + { 1224, 1235, -1, sizeof(::CMsgServerUserCmd)}, + { 1240, -1, -1, sizeof(::CSVCMsg_UserCommands)}, }; static const ::_pb::Message* const file_default_instances[] = { @@ -2755,7 +2799,6 @@ static const ::_pb::Message* const file_default_instances[] = { &::_CCLCMsg_BaselineAck_default_instance_._instance, &::_CCLCMsg_ListenEvents_default_instance_._instance, &::_CCLCMsg_RespondCvarValue_default_instance_._instance, - &::_CCLCMsg_FileCRCCheck_default_instance_._instance, &::_CCLCMsg_LoadingProgress_default_instance_._instance, &::_CCLCMsg_SplitPlayerConnect_default_instance_._instance, &::_CCLCMsg_SplitPlayerDisconnect_default_instance_._instance, @@ -2767,6 +2810,8 @@ static const ::_pb::Message* const file_default_instances[] = { &::_CMsgSource2VProfLiteReportItem_default_instance_._instance, &::_CMsgSource2VProfLiteReport_default_instance_._instance, &::_CMsgSource2NetworkFlowQuality_default_instance_._instance, + &::_CMsgSource2PerfIntervalSample_Tag_default_instance_._instance, + &::_CMsgSource2PerfIntervalSample_default_instance_._instance, &::_CCLCMsg_Diagnostic_default_instance_._instance, &::_CSource2Metrics_MatchPerfSummary_Notification_Client_default_instance_._instance, &::_CSource2Metrics_MatchPerfSummary_Notification_default_instance_._instance, @@ -2850,335 +2895,342 @@ const char descriptor_table_protodef_netmessages_2eproto[] PROTOBUF_SECTION_VARI "ne_nr\030\002 \001(\005\"*\n\024CCLCMsg_ListenEvents\022\022\n\ne" "vent_mask\030\001 \003(\007\"\\\n\030CCLCMsg_RespondCvarVa" "lue\022\016\n\006cookie\030\001 \001(\005\022\023\n\013status_code\030\002 \001(\005" - "\022\014\n\004name\030\003 \001(\t\022\r\n\005value\030\004 \001(\t\"m\n\024CCLCMsg" - "_FileCRCCheck\022\021\n\tcode_path\030\001 \001(\005\022\014\n\004path" - "\030\002 \001(\t\022\025\n\rcode_filename\030\003 \001(\005\022\020\n\010filenam" - "e\030\004 \001(\t\022\013\n\003crc\030\005 \001(\007\"+\n\027CCLCMsg_LoadingP" - "rogress\022\020\n\010progress\030\001 \001(\005\"0\n\032CCLCMsg_Spl" - "itPlayerConnect\022\022\n\nplayername\030\001 \001(\t\"-\n\035C" - "CLCMsg_SplitPlayerDisconnect\022\014\n\004slot\030\001 \001" - "(\005\"*\n\024CCLCMsg_ServerStatus\022\022\n\nsimplified" - "\030\001 \001(\010\"Z\n\024CCLCMsg_RequestPause\022-\n\npause_" - "type\030\001 \001(\0162\017.RequestPause_t:\010RP_PAUSE\022\023\n" - "\013pause_group\030\002 \001(\005\"$\n\024CCLCMsg_CmdKeyValu" - "es\022\014\n\004data\030\001 \001(\014\"*\n\031CCLCMsg_RconServerDe" - "tails\022\r\n\005token\030\001 \001(\014\"\335\002\n\026CMsgSource2Syst" - "emSpecs\022\016\n\006cpu_id\030\001 \001(\t\022\021\n\tcpu_brand\030\002 \001" - "(\t\022\021\n\tcpu_model\030\003 \001(\r\022\030\n\020cpu_num_physica" - "l\030\004 \001(\r\022\035\n\025ram_physical_total_mb\030\025 \001(\r\022!" - "\n\031gpu_rendersystem_dll_name\030) \001(\t\022\025\n\rgpu" - "_vendor_id\030* \001(\r\022\027\n\017gpu_driver_name\030+ \001(" - "\t\022\037\n\027gpu_driver_version_high\030, \001(\r\022\036\n\026gp" - "u_driver_version_low\030- \001(\r\022\034\n\024gpu_dx_sup" - "port_level\030. \001(\r\022\"\n\032gpu_texture_memory_s" - "ize_mb\030/ \001(\r\"\201\004\n\036CMsgSource2VProfLiteRep" - "ortItem\022\014\n\004name\030\001 \001(\t\022\026\n\016active_samples\030" - "\002 \001(\r\022\036\n\026active_samples_1secmax\030\004 \001(\r\022\020\n" - "\010usec_max\030\003 \001(\r\022\027\n\017usec_avg_active\030\013 \001(\r" - "\022\027\n\017usec_p50_active\030\014 \001(\r\022\027\n\017usec_p99_ac" - "tive\030\r \001(\r\022\024\n\014usec_avg_all\030\025 \001(\r\022\024\n\014usec" - "_p50_all\030\026 \001(\r\022\024\n\014usec_p99_all\030\027 \001(\r\022\037\n\027" - "usec_1secmax_avg_active\030\037 \001(\r\022\037\n\027usec_1s" - "ecmax_p50_active\030 \001(\r\022\037\n\027usec_1secmax_p" - "95_active\030! \001(\r\022\037\n\027usec_1secmax_p99_acti" - "ve\030\" \001(\r\022\034\n\024usec_1secmax_avg_all\030) \001(\r\022\034" - "\n\024usec_1secmax_p50_all\030* \001(\r\022\034\n\024usec_1se" - "cmax_p95_all\030+ \001(\r\022\034\n\024usec_1secmax_p99_a" - "ll\030, \001(\r\"\226\001\n\032CMsgSource2VProfLiteReport\022" - ".\n\005total\030\001 \001(\0132\037.CMsgSource2VProfLiteRep" - "ortItem\022.\n\005items\030\002 \003(\0132\037.CMsgSource2VPro" - "fLiteReportItem\022\030\n\020discarded_frames\030\003 \001(" - "\r\"\265\006\n\035CMsgSource2NetworkFlowQuality\022\020\n\010d" - "uration\030\001 \001(\r\022\023\n\013bytes_total\030\005 \001(\004\022\034\n\024by" - "tes_total_reliable\030\006 \001(\004\022\031\n\021bytes_total_" - "voice\030\007 \001(\004\022\025\n\rbytes_sec_p95\030\n \001(\r\022\025\n\rby" - "tes_sec_p99\030\013 \001(\r\022\030\n\020enginemsgs_total\030\024 " - "\001(\r\022\032\n\022enginemsgs_sec_p95\030\025 \001(\r\022\032\n\022engin" - "emsgs_sec_p99\030\026 \001(\r\022\023\n\013ticks_total\030( \001(\r" - "\022\022\n\nticks_good\030) \001(\r\022\036\n\026ticks_good_almos" - "t_late\030* \001(\r\022\033\n\023ticks_fixed_dropped\030+ \001(" - "\r\022\030\n\020ticks_fixed_late\030, \001(\r\022\031\n\021ticks_bad" - "_dropped\030- \001(\r\022\026\n\016ticks_bad_late\030. \001(\r\022\027" - "\n\017ticks_bad_other\030/ \001(\r\022#\n\033tick_missrate" - "_samples_total\0302 \001(\r\022%\n\035tick_missrate_sa" - "mples_perfect\0303 \001(\r\022(\n tick_missrate_sam" - "ples_perfectnet\0304 \001(\r\022 \n\030tick_missratene" - "t_p75_x10\0305 \001(\r\022 \n\030tick_missratenet_p95_" - "x10\0306 \001(\r\022 \n\030tick_missratenet_p99_x10\0307 " - "\001(\r\022\025\n\rrecvmargin_p1\030= \001(\021\022\025\n\rrecvmargin" - "_p5\030> \001(\021\022\026\n\016recvmargin_p25\030\? \001(\021\022\026\n\016rec" - "vmargin_p50\030@ \001(\021\022\026\n\016recvmargin_p75\030A \001(" - "\021\022\026\n\016recvmargin_p95\030B \001(\021\"\346\001\n\022CCLCMsg_Di" - "agnostic\022-\n\014system_specs\030\001 \001(\0132\027.CMsgSou" - "rce2SystemSpecs\0221\n\014vprof_report\030\002 \001(\0132\033." - "CMsgSource2VProfLiteReport\0227\n\017downstream" - "_flow\030\003 \001(\0132\036.CMsgSource2NetworkFlowQual" - "ity\0225\n\rupstream_flow\030\004 \001(\0132\036.CMsgSource2" - "NetworkFlowQuality\"\357\003\n-CSource2Metrics_M" - "atchPerfSummary_Notification\022\r\n\005appid\030\001 " - "\001(\r\022\021\n\tgame_mode\030\002 \001(\t\022\027\n\017server_build_i" - "d\030\003 \001(\r\0223\n\016server_profile\030\n \001(\0132\033.CMsgSo" - "urce2VProfLiteReport\022F\n\007clients\030\013 \003(\01325." - "CSource2Metrics_MatchPerfSummary_Notific" - "ation.Client\022\013\n\003map\030\024 \001(\t\032\370\001\n\006Client\022-\n\014" - "system_specs\030\001 \001(\0132\027.CMsgSource2SystemSp" - "ecs\022,\n\007profile\030\002 \001(\0132\033.CMsgSource2VProfL" - "iteReport\022\020\n\010build_id\030\003 \001(\r\0227\n\017downstrea" - "m_flow\030\004 \001(\0132\036.CMsgSource2NetworkFlowQua" - "lity\0225\n\rupstream_flow\030\005 \001(\0132\036.CMsgSource" - "2NetworkFlowQuality\022\017\n\007steamid\030\n \001(\006\"\207\003\n" - "\022CSVCMsg_ServerInfo\022\020\n\010protocol\030\001 \001(\005\022\024\n" - "\014server_count\030\002 \001(\005\022\024\n\014is_dedicated\030\003 \001(" - "\010\022\017\n\007is_hltv\030\004 \001(\010\022\014\n\004c_os\030\006 \001(\005\022\023\n\013max_" - "clients\030\n \001(\005\022\023\n\013max_classes\030\013 \001(\005\022\027\n\013pl" - "ayer_slot\030\014 \001(\005:\002-1\022\025\n\rtick_interval\030\r \001" - "(\002\022\020\n\010game_dir\030\016 \001(\t\022\020\n\010map_name\030\017 \001(\t\022\020" - "\n\010sky_name\030\020 \001(\t\022\021\n\thost_name\030\021 \001(\t\022\022\n\na" - "ddon_name\030\022 \001(\t\022>\n\023game_session_config\030\023" - " \001(\0132!.CSVCMsg_GameSessionConfiguration\022" - "\035\n\025game_session_manifest\030\024 \001(\014\"\213\001\n\021CSVCM" - "sg_ClassInfo\022\030\n\020create_on_client\030\001 \001(\010\022+" - "\n\007classes\030\002 \003(\0132\032.CSVCMsg_ClassInfo.clas" - "s_t\032/\n\007class_t\022\020\n\010class_id\030\001 \001(\005\022\022\n\nclas" - "s_name\030\003 \001(\t\"\"\n\020CSVCMsg_SetPause\022\016\n\006paus" - "ed\030\001 \001(\010\"G\n\021CSVCMsg_VoiceInit\022\017\n\007quality" - "\030\001 \001(\005\022\r\n\005codec\030\002 \001(\t\022\022\n\007version\030\003 \001(\005:\001" - "0\"\035\n\rCSVCMsg_Print\022\014\n\004text\030\001 \001(\t\"\343\003\n\016CSV" - "CMsg_Sounds\022\026\n\016reliable_sound\030\001 \001(\010\022+\n\006s" - "ounds\030\002 \003(\0132\033.CSVCMsg_Sounds.sounddata_t" - "\032\213\003\n\013sounddata_t\022\020\n\010origin_x\030\001 \001(\021\022\020\n\010or" - "igin_y\030\002 \001(\021\022\020\n\010origin_z\030\003 \001(\021\022\016\n\006volume" - "\030\004 \001(\r\022\023\n\013delay_value\030\005 \001(\002\022\027\n\017sequence_" - "number\030\006 \001(\005\022\030\n\014entity_index\030\007 \001(\005:\002-1\022\017" - "\n\007channel\030\010 \001(\005\022\r\n\005pitch\030\t \001(\005\022\r\n\005flags\030" - "\n \001(\005\022\021\n\tsound_num\030\013 \001(\r\022\030\n\020sound_num_ha" - "ndle\030\014 \001(\007\022\026\n\016speaker_entity\030\r \001(\005\022\023\n\013ra" - "ndom_seed\030\016 \001(\005\022\023\n\013sound_level\030\017 \001(\005\022\023\n\013" - "is_sentence\030\020 \001(\010\022\022\n\nis_ambient\030\021 \001(\010\022\014\n" - "\004guid\030\022 \001(\r\022\031\n\021sound_resource_id\030\023 \001(\006\"X" - "\n\020CSVCMsg_Prefetch\022\023\n\013sound_index\030\001 \001(\005\022" - "/\n\rresource_type\030\002 \001(\0162\r.PrefetchType:\tP" - "FT_SOUND\"=\n\017CSVCMsg_SetView\022\030\n\014entity_in" - "dex\030\001 \001(\005:\002-1\022\020\n\004slot\030\002 \001(\005:\002-1\"@\n\020CSVCM" - "sg_FixAngle\022\020\n\010relative\030\001 \001(\010\022\032\n\005angle\030\002" - " \001(\0132\013.CMsgQAngle\"4\n\026CSVCMsg_CrosshairAn" - "gle\022\032\n\005angle\030\001 \001(\0132\013.CMsgQAngle\"\216\001\n\020CSVC" - "Msg_BSPDecal\022\030\n\003pos\030\001 \001(\0132\013.CMsgVector\022\033" - "\n\023decal_texture_index\030\002 \001(\005\022\030\n\014entity_in" - "dex\030\003 \001(\005:\002-1\022\023\n\013model_index\030\004 \001(\005\022\024\n\014lo" - "w_priority\030\005 \001(\010\"~\n\023CSVCMsg_SplitScreen\022" - "\?\n\004type\030\001 \001(\0162\030.ESplitScreenMessageType:" - "\027MSG_SPLITSCREEN_ADDUSER\022\014\n\004slot\030\002 \001(\005\022\030" - "\n\014player_index\030\003 \001(\005:\002-1\"9\n\024CSVCMsg_GetC" - "varValue\022\016\n\006cookie\030\001 \001(\005\022\021\n\tcvar_name\030\002 " - "\001(\t\"<\n\014CSVCMsg_Menu\022\023\n\013dialog_type\030\001 \001(\005" - "\022\027\n\017menu_key_values\030\002 \001(\014\"N\n\023CSVCMsg_Use" - "rMessage\022\020\n\010msg_type\030\001 \001(\005\022\020\n\010msg_data\030\002" - " \001(\014\022\023\n\013passthrough\030\003 \001(\005\"\260\002\n\021CSVCMsg_Se" - "ndTable\022\016\n\006is_end\030\001 \001(\010\022\026\n\016net_table_nam" - "e\030\002 \001(\t\022\025\n\rneeds_decoder\030\003 \001(\010\022,\n\005props\030" - "\004 \003(\0132\035.CSVCMsg_SendTable.sendprop_t\032\255\001\n" - "\nsendprop_t\022\014\n\004type\030\001 \001(\005\022\020\n\010var_name\030\002 " - "\001(\t\022\r\n\005flags\030\003 \001(\005\022\020\n\010priority\030\004 \001(\005\022\017\n\007" - "dt_name\030\005 \001(\t\022\024\n\014num_elements\030\006 \001(\005\022\021\n\tl" - "ow_value\030\007 \001(\002\022\022\n\nhigh_value\030\010 \001(\002\022\020\n\010nu" - "m_bits\030\t \001(\005\"\321\001\n\025CSVCMsg_GameEventList\0228" - "\n\013descriptors\030\001 \003(\0132#.CSVCMsg_GameEventL" - "ist.descriptor_t\032#\n\005key_t\022\014\n\004type\030\001 \001(\005\022" - "\014\n\004name\030\002 \001(\t\032Y\n\014descriptor_t\022\017\n\007eventid" - "\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022*\n\004keys\030\003 \003(\0132\034.CSV" - "CMsg_GameEventList.key_t\"\347\007\n\026CSVCMsg_Pac" - "ketEntities\022\023\n\013max_entries\030\001 \001(\005\022\027\n\017upda" - "ted_entries\030\002 \001(\005\022\027\n\017legacy_is_delta\030\003 \001" - "(\010\022\027\n\017update_baseline\030\004 \001(\010\022\020\n\010baseline\030" - "\005 \001(\005\022\022\n\ndelta_from\030\006 \001(\005\022\023\n\013entity_data" - "\030\007 \001(\014\022\032\n\022pending_full_frame\030\010 \001(\010\022 \n\030ac" - "tive_spawngroup_handle\030\t \001(\r\022\'\n\037max_spaw" - "ngroup_creationsequence\030\n \001(\r\022 \n\030last_cm" - "d_number_executed\030\013 \001(\r\022\"\n\032last_cmd_numb" - "er_recv_delta\030\021 \001(\021\022\023\n\013server_tick\030\014 \001(\r" - "\022\033\n\023serialized_entities\030\r \001(\014\022I\n\023alterna" - "te_baselines\030\017 \003(\0132,.CSVCMsg_PacketEntit" - "ies.alternate_baseline_t\022#\n\033has_pvs_vis_" - "bits_deprecated\030\020 \001(\r\022\033\n\017cmd_recv_status" - "\030\026 \003(\021B\002\020\001\022T\n\030non_transmitted_entities\030\023" - " \001(\01322.CSVCMsg_PacketEntities.non_transm" - "itted_entities_t\022 \n\030cq_starved_command_t" - "icks\030\024 \001(\r\022\"\n\032cq_discarded_command_ticks" - "\030\025 \001(\r\022R\n\027outofpvs_entity_updates\030\027 \001(\0132" - "1.CSVCMsg_PacketEntities.outofpvs_entity" - "_updates_t\022\024\n\013dev_padding\030\347\007 \001(\014\032D\n\024alte" - "rnate_baseline_t\022\024\n\014entity_index\030\001 \001(\005\022\026" - "\n\016baseline_index\030\002 \001(\005\032@\n\032non_transmitte" - "d_entities_t\022\024\n\014header_count\030\001 \001(\005\022\014\n\004da" - "ta\030\002 \001(\014\0328\n\031outofpvs_entity_updates_t\022\r\n" - "\005count\030\001 \001(\005\022\014\n\004data\030\002 \001(\014\"R\n\024CSVCMsg_Te" - "mpEntities\022\020\n\010reliable\030\001 \001(\010\022\023\n\013num_entr" - "ies\030\002 \001(\005\022\023\n\013entity_data\030\003 \001(\014\"\211\002\n\031CSVCM" - "sg_CreateStringTable\022\014\n\004name\030\001 \001(\t\022\023\n\013nu" - "m_entries\030\002 \001(\005\022\034\n\024user_data_fixed_size\030" - "\003 \001(\010\022\026\n\016user_data_size\030\004 \001(\005\022\033\n\023user_da" - "ta_size_bits\030\005 \001(\005\022\r\n\005flags\030\006 \001(\005\022\023\n\013str" - "ing_data\030\007 \001(\014\022\031\n\021uncompressed_size\030\010 \001(" - "\005\022\027\n\017data_compressed\030\t \001(\010\022\036\n\026using_vari" - "nt_bitcounts\030\n \001(\010\"_\n\031CSVCMsg_UpdateStri" - "ngTable\022\020\n\010table_id\030\001 \001(\005\022\033\n\023num_changed" - "_entries\030\002 \001(\005\022\023\n\013string_data\030\003 \001(\014\"\241\001\n\021" - "CSVCMsg_VoiceData\022\036\n\005audio\030\001 \001(\0132\017.CMsgV" - "oiceAudio\022\022\n\006client\030\002 \001(\005:\002-1\022\021\n\tproximi" - "ty\030\003 \001(\010\022\014\n\004xuid\030\004 \001(\006\022\024\n\014audible_mask\030\005" - " \001(\005\022\014\n\004tick\030\006 \001(\r\022\023\n\013passthrough\030\007 \001(\005\"" - "K\n\026CSVCMsg_PacketReliable\022\014\n\004tick\030\001 \001(\005\022" - "\024\n\014messagessize\030\002 \001(\005\022\r\n\005state\030\003 \001(\010\"T\n\026" - "CSVCMsg_FullFrameSplit\022\014\n\004tick\030\001 \001(\005\022\017\n\007" - "section\030\002 \001(\005\022\r\n\005total\030\003 \001(\005\022\014\n\004data\030\004 \001" - "(\014\"U\n\022CSVCMsg_HLTVStatus\022\016\n\006master\030\001 \001(\t" - "\022\017\n\007clients\030\002 \001(\005\022\r\n\005slots\030\003 \001(\005\022\017\n\007prox" - "ies\030\004 \001(\005\")\n\025CSVCMsg_ServerSteamID\022\020\n\010st" - "eam_id\030\001 \001(\004\"$\n\024CSVCMsg_CmdKeyValues\022\014\n\004" - "data\030\001 \001(\014\";\n\031CSVCMsg_RconServerDetails\022" - "\r\n\005token\030\001 \001(\014\022\017\n\007details\030\002 \001(\t\";\n\016CMsgI" - "PCAddress\022\025\n\rcomputer_guid\030\001 \001(\006\022\022\n\nproc" - "ess_id\030\002 \001(\r\"\244\001\n\016CMsgServerPeer\022\027\n\013playe" - "r_slot\030\001 \001(\005:\002-1\022\017\n\007steamid\030\002 \001(\006\022\034\n\003ipc" - "\030\003 \001(\0132\017.CMsgIPCAddress\022\025\n\rthey_hear_you" - "\030\004 \001(\010\022\025\n\ryou_hear_them\030\005 \001(\010\022\034\n\024is_list" - "enserver_host\030\006 \001(\010\"1\n\020CSVCMsg_PeerList\022" - "\035\n\004peer\030\001 \003(\0132\017.CMsgServerPeer\"N\n\034CSVCMs" - "g_ClearAllStringTables\022\017\n\007mapname\030\001 \001(\t\022" - "\035\n\025create_tables_skipped\030\003 \001(\010\"\363\003\n\037Proto" - "FlattenedSerializerField_t\022\024\n\014var_type_s" - "ym\030\001 \001(\005\022\024\n\014var_name_sym\030\002 \001(\005\022\021\n\tbit_co" - "unt\030\003 \001(\005\022\021\n\tlow_value\030\004 \001(\002\022\022\n\nhigh_val" - "ue\030\005 \001(\002\022\024\n\014encode_flags\030\006 \001(\005\022!\n\031field_" - "serializer_name_sym\030\007 \001(\005\022 \n\030field_seria" - "lizer_version\030\010 \001(\005\022\025\n\rsend_node_sym\030\t \001" - "(\005\022\027\n\017var_encoder_sym\030\n \001(\005\022O\n\021polymorph" - "ic_types\030\013 \003(\01324.ProtoFlattenedSerialize" - "rField_t.polymorphic_field_t\022\032\n\022var_seri" - "alizer_sym\030\014 \001(\005\032r\n\023polymorphic_field_t\022" - "-\n%polymorphic_field_serializer_name_sym" - "\030\001 \001(\005\022,\n$polymorphic_field_serializer_v" - "ersion\030\002 \001(\005\"k\n\032ProtoFlattenedSerializer" - "_t\022\033\n\023serializer_name_sym\030\001 \001(\005\022\032\n\022seria" - "lizer_version\030\002 \001(\005\022\024\n\014fields_index\030\003 \003(" - "\005\"\222\001\n\033CSVCMsg_FlattenedSerializer\0220\n\013ser" - "ializers\030\001 \003(\0132\033.ProtoFlattenedSerialize" - "r_t\022\017\n\007symbols\030\002 \003(\t\0220\n\006fields\030\003 \003(\0132 .P" - "rotoFlattenedSerializerField_t\"!\n\021CSVCMs" - "g_StopSound\022\014\n\004guid\030\001 \001(\007\"y\n\036CBidirMsg_R" - "ebroadcastGameEvent\022\024\n\014posttoserver\030\001 \001(" - "\010\022\017\n\007buftype\030\002 \001(\005\022\026\n\016clientbitcount\030\003 \001" - "(\r\022\030\n\020receivingclients\030\004 \001(\004\"2\n\033CBidirMs" - "g_RebroadcastSource\022\023\n\013eventsource\030\001 \001(\005" - "\"\232\001\n\031CBidirMsg_PredictionEvent\022\020\n\010event_" - "id\030\001 \002(\r\022\022\n\nevent_data\030\002 \002(\014\022\021\n\tsync_typ" - "e\030\003 \001(\r\022\027\n\017sync_val_uint32\030\004 \001(\r\"+\n\tESyn" - "cType\022\013\n\007ST_Tick\020\000\022\021\n\rST_UserCmdNum\020\001\"\305\006" - "\n\026CMsgServerNetworkStats\022\021\n\tdedicated\030\001 " - "\001(\010\022\021\n\tcpu_usage\030\002 \001(\005\022\026\n\016memory_used_mb" - "\030\003 \001(\005\022\026\n\016memory_free_mb\030\004 \001(\005\022\016\n\006uptime" - "\030\005 \001(\005\022\023\n\013spawn_count\030\006 \001(\005\022\023\n\013num_clien" - "ts\030\010 \001(\005\022\020\n\010num_bots\030\t \001(\005\022\026\n\016num_specta" - "tors\030\n \001(\005\022\025\n\rnum_tv_relays\030\013 \001(\005\022\013\n\003fps" - "\030\014 \001(\002\022+\n\005ports\030\021 \003(\0132\034.CMsgServerNetwor" - "kStats.Port\022\023\n\013avg_ping_ms\030\022 \001(\002\022\036\n\026avg_" - "engine_latency_out\030\023 \001(\002\022\027\n\017avg_packets_" - "out\030\024 \001(\002\022\026\n\016avg_packets_in\030\025 \001(\002\022\024\n\014avg" - "_loss_out\030\026 \001(\002\022\023\n\013avg_loss_in\030\027 \001(\002\022\024\n\014" - "avg_data_out\030\030 \001(\002\022\023\n\013avg_data_in\030\031 \001(\002\022" - "\025\n\rtotal_data_in\030\032 \001(\004\022\030\n\020total_packets_" - "in\030\033 \001(\004\022\026\n\016total_data_out\030\034 \001(\004\022\031\n\021tota" - "l_packets_out\030\035 \001(\004\022/\n\007players\030\036 \003(\0132\036.C" - "MsgServerNetworkStats.Player\032\"\n\004Port\022\014\n\004" - "port\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\032\252\001\n\006Player\022\017\n\007s" - "teamid\030\001 \001(\004\022\023\n\013remote_addr\030\002 \001(\t\022\023\n\013pin" - "g_avg_ms\030\004 \001(\005\022\027\n\017packet_loss_pct\030\005 \001(\002\022" - "\016\n\006is_bot\030\006 \001(\010\022\017\n\007loss_in\030\007 \001(\002\022\020\n\010loss" - "_out\030\010 \001(\002\022\031\n\021engine_latency_ms\030\t \001(\005\"\332\001" - "\n\022CSVCMsg_HltvReplay\022\r\n\005delay\030\001 \001(\005\022\032\n\016p" - "rimary_target\030\002 \001(\005:\002-1\022\026\n\016replay_stop_a" - "t\030\003 \001(\005\022\027\n\017replay_start_at\030\004 \001(\005\022\035\n\025repl" - "ay_slowdown_begin\030\005 \001(\005\022\033\n\023replay_slowdo" - "wn_end\030\006 \001(\005\022\034\n\024replay_slowdown_rate\030\007 \001" - "(\002\022\016\n\006reason\030\010 \001(\005\"\205\001\n\022CCLCMsg_HltvRepla" - "y\022\017\n\007request\030\001 \001(\005\022\027\n\017slowdown_length\030\002 " - "\001(\002\022\025\n\rslowdown_rate\030\003 \001(\002\022\032\n\016primary_ta" - "rget\030\004 \001(\005:\002-1\022\022\n\nevent_time\030\005 \001(\002\"(\n\031CS" - "VCMsg_Broadcast_Command\022\013\n\003cmd\030\001 \001(\t\"\357\001\n" - "\035CCLCMsg_HltvFixupOperatorTick\022\014\n\004tick\030\001" - " \001(\005\022\022\n\nprops_data\030\002 \001(\014\022\033\n\006origin\030\003 \001(\013" - "2\013.CMsgVector\022\037\n\neye_angles\030\004 \001(\0132\013.CMsg" - "QAngle\022\025\n\robserver_mode\030\005 \001(\005\022\034\n\024cameram" - "an_scoreboard\030\006 \001(\010\022\027\n\017observer_target\030\007" - " \001(\005\022 \n\013view_offset\030\010 \001(\0132\013.CMsgVector\"O" - "\n\037CSVCMsg_HltvFixupOperatorStatus\022\014\n\004mod" - "e\030\001 \001(\r\022\036\n\026override_operator_name\030\002 \001(\t\"" - "\201\001\n\021CMsgServerUserCmd\022\014\n\004data\030\001 \001(\014\022\022\n\nc" - "md_number\030\002 \001(\005\022\027\n\013player_slot\030\003 \001(\005:\002-1" - "\022\034\n\024server_tick_executed\030\004 \001(\005\022\023\n\013client" - "_tick\030\005 \001(\005\"<\n\024CSVCMsg_UserCommands\022$\n\010c" - "ommands\030\001 \003(\0132\022.CMsgServerUserCmd*\341\002\n\014CL" - "C_Messages\022\022\n\016clc_ClientInfo\020\024\022\014\n\010clc_Mo" - "ve\020\025\022\021\n\rclc_VoiceData\020\026\022\023\n\017clc_BaselineA" - "ck\020\027\022\030\n\024clc_RespondCvarValue\020\031\022\024\n\020clc_Fi" - "leCRCCheck\020\032\022\027\n\023clc_LoadingProgress\020\033\022\032\n" - "\026clc_SplitPlayerConnect\020\034\022\035\n\031clc_SplitPl" - "ayerDisconnect\020\036\022\024\n\020clc_ServerStatus\020\037\022\024" - "\n\020clc_RequestPause\020!\022\024\n\020clc_CmdKeyValues" - "\020\"\022\031\n\025clc_RconServerDetails\020#\022\022\n\016clc_Hlt" - "vReplay\020$\022\022\n\016clc_Diagnostic\020%*\227\005\n\014SVC_Me" - "ssages\022\022\n\016svc_ServerInfo\020(\022\033\n\027svc_Flatte" - "nedSerializer\020)\022\021\n\rsvc_ClassInfo\020*\022\020\n\014sv" - "c_SetPause\020+\022\031\n\025svc_CreateStringTable\020,\022" - "\031\n\025svc_UpdateStringTable\020-\022\021\n\rsvc_VoiceI" - "nit\020.\022\021\n\rsvc_VoiceData\020/\022\r\n\tsvc_Print\0200\022" - "\016\n\nsvc_Sounds\0201\022\017\n\013svc_SetView\0202\022\034\n\030svc_" - "ClearAllStringTables\0203\022\024\n\020svc_CmdKeyValu" - "es\0204\022\020\n\014svc_BSPDecal\0205\022\023\n\017svc_SplitScree" - "n\0206\022\026\n\022svc_PacketEntities\0207\022\020\n\014svc_Prefe" - "tch\0208\022\014\n\010svc_Menu\0209\022\024\n\020svc_GetCvarValue\020" - ":\022\021\n\rsvc_StopSound\020;\022\020\n\014svc_PeerList\020<\022\026" - "\n\022svc_PacketReliable\020=\022\022\n\016svc_HLTVStatus" - "\020>\022\025\n\021svc_ServerSteamID\020\?\022\026\n\022svc_FullFra" - "meSplit\020F\022\031\n\025svc_RconServerDetails\020G\022\023\n\017" - "svc_UserMessage\020H\022\031\n\025svc_Broadcast_Comma" - "nd\020J\022\037\n\033svc_HltvFixupOperatorStatus\020K\022\020\n" - "\014svc_UserCmds\020L*g\n\021VoiceDataFormat_t\022\032\n\026" - "VOICEDATA_FORMAT_STEAM\020\000\022\033\n\027VOICEDATA_FO" - "RMAT_ENGINE\020\001\022\031\n\025VOICEDATA_FORMAT_OPUS\020\002" - "*B\n\016RequestPause_t\022\014\n\010RP_PAUSE\020\000\022\016\n\nRP_U" - "NPAUSE\020\001\022\022\n\016RP_TOGGLEPAUSE\020\002*\035\n\014Prefetch" - "Type\022\r\n\tPFT_SOUND\020\000*V\n\027ESplitScreenMessa" - "geType\022\033\n\027MSG_SPLITSCREEN_ADDUSER\020\000\022\036\n\032M" - "SG_SPLITSCREEN_REMOVEUSER\020\001*\263\001\n\025EQueryCv" - "arValueStatus\022%\n!eQueryCvarValueStatus_V" - "alueIntact\020\000\022&\n\"eQueryCvarValueStatus_Cv" - "arNotFound\020\001\022\"\n\036eQueryCvarValueStatus_No" - "tACvar\020\002\022\'\n#eQueryCvarValueStatus_CvarPr" - "otected\020\003*h\n\013DIALOG_TYPE\022\016\n\nDIALOG_MSG\020\000" - "\022\017\n\013DIALOG_MENU\020\001\022\017\n\013DIALOG_TEXT\020\002\022\020\n\014DI" - "ALOG_ENTRY\020\003\022\025\n\021DIALOG_ASKCONNECT\020\004*+\n\031S" - "VC_Messages_LowFrequency\022\016\n\tsvc_dummy\020\330\004" - "*y\n\026Bidirectional_Messages\022\033\n\027bi_Rebroad" - "castGameEvent\020\020\022\030\n\024bi_RebroadcastSource\020" - "\021\022\020\n\014bi_GameEvent\020\022\022\026\n\022bi_PredictionEven" - "t\020\023*M\n#Bidirectional_Messages_LowFrequen" - "cy\022\021\n\014bi_RelayInfo\020\274\005\022\023\n\016bi_RelayPacket\020" - "\275\005*\241\001\n\021ReplayEventType_t\022\027\n\023REPLAY_EVENT" - "_CANCEL\020\000\022\026\n\022REPLAY_EVENT_DEATH\020\001\022\030\n\024REP" - "LAY_EVENT_GENERIC\020\002\022\'\n#REPLAY_EVENT_STUC" - "K_NEED_FULL_UPDATE\020\003\022\030\n\024REPLAY_EVENT_VIC" - "TORY\020\004" + "\022\014\n\004name\030\003 \001(\t\022\r\n\005value\030\004 \001(\t\"+\n\027CCLCMsg" + "_LoadingProgress\022\020\n\010progress\030\001 \001(\005\"0\n\032CC" + "LCMsg_SplitPlayerConnect\022\022\n\nplayername\030\001" + " \001(\t\"-\n\035CCLCMsg_SplitPlayerDisconnect\022\014\n" + "\004slot\030\001 \001(\005\"*\n\024CCLCMsg_ServerStatus\022\022\n\ns" + "implified\030\001 \001(\010\"Z\n\024CCLCMsg_RequestPause\022" + "-\n\npause_type\030\001 \001(\0162\017.RequestPause_t:\010RP" + "_PAUSE\022\023\n\013pause_group\030\002 \001(\005\"$\n\024CCLCMsg_C" + "mdKeyValues\022\014\n\004data\030\001 \001(\014\"*\n\031CCLCMsg_Rco" + "nServerDetails\022\r\n\005token\030\001 \001(\014\"\222\003\n\026CMsgSo" + "urce2SystemSpecs\022\016\n\006cpu_id\030\001 \001(\t\022\021\n\tcpu_" + "brand\030\002 \001(\t\022\021\n\tcpu_model\030\003 \001(\r\022\030\n\020cpu_nu" + "m_physical\030\004 \001(\r\022\035\n\025ram_physical_total_m" + "b\030\025 \001(\r\022!\n\031gpu_rendersystem_dll_name\030) \001" + "(\t\022\025\n\rgpu_vendor_id\030* \001(\r\022\027\n\017gpu_driver_" + "name\030+ \001(\t\022\037\n\027gpu_driver_version_high\030, " + "\001(\r\022\036\n\026gpu_driver_version_low\030- \001(\r\022\034\n\024g" + "pu_dx_support_level\030. \001(\r\022\"\n\032gpu_texture" + "_memory_size_mb\030/ \001(\r\022\030\n\020backbuffer_widt" + "h\0303 \001(\r\022\031\n\021backbuffer_height\0304 \001(\r\"\201\004\n\036C" + "MsgSource2VProfLiteReportItem\022\014\n\004name\030\001 " + "\001(\t\022\026\n\016active_samples\030\002 \001(\r\022\036\n\026active_sa" + "mples_1secmax\030\004 \001(\r\022\020\n\010usec_max\030\003 \001(\r\022\027\n" + "\017usec_avg_active\030\013 \001(\r\022\027\n\017usec_p50_activ" + "e\030\014 \001(\r\022\027\n\017usec_p99_active\030\r \001(\r\022\024\n\014usec" + "_avg_all\030\025 \001(\r\022\024\n\014usec_p50_all\030\026 \001(\r\022\024\n\014" + "usec_p99_all\030\027 \001(\r\022\037\n\027usec_1secmax_avg_a" + "ctive\030\037 \001(\r\022\037\n\027usec_1secmax_p50_active\030 " + " \001(\r\022\037\n\027usec_1secmax_p95_active\030! \001(\r\022\037\n" + "\027usec_1secmax_p99_active\030\" \001(\r\022\034\n\024usec_1" + "secmax_avg_all\030) \001(\r\022\034\n\024usec_1secmax_p50" + "_all\030* \001(\r\022\034\n\024usec_1secmax_p95_all\030+ \001(\r" + "\022\034\n\024usec_1secmax_p99_all\030, \001(\r\"\226\001\n\032CMsgS" + "ource2VProfLiteReport\022.\n\005total\030\001 \001(\0132\037.C" + "MsgSource2VProfLiteReportItem\022.\n\005items\030\002" + " \003(\0132\037.CMsgSource2VProfLiteReportItem\022\030\n" + "\020discarded_frames\030\003 \001(\r\"\265\006\n\035CMsgSource2N" + "etworkFlowQuality\022\020\n\010duration\030\001 \001(\r\022\023\n\013b" + "ytes_total\030\005 \001(\004\022\034\n\024bytes_total_reliable" + "\030\006 \001(\004\022\031\n\021bytes_total_voice\030\007 \001(\004\022\025\n\rbyt" + "es_sec_p95\030\n \001(\r\022\025\n\rbytes_sec_p99\030\013 \001(\r\022" + "\030\n\020enginemsgs_total\030\024 \001(\r\022\032\n\022enginemsgs_" + "sec_p95\030\025 \001(\r\022\032\n\022enginemsgs_sec_p99\030\026 \001(" + "\r\022\023\n\013ticks_total\030( \001(\r\022\022\n\nticks_good\030) \001" + "(\r\022\036\n\026ticks_good_almost_late\030* \001(\r\022\033\n\023ti" + "cks_fixed_dropped\030+ \001(\r\022\030\n\020ticks_fixed_l" + "ate\030, \001(\r\022\031\n\021ticks_bad_dropped\030- \001(\r\022\026\n\016" + "ticks_bad_late\030. \001(\r\022\027\n\017ticks_bad_other\030" + "/ \001(\r\022#\n\033tick_missrate_samples_total\0302 \001" + "(\r\022%\n\035tick_missrate_samples_perfect\0303 \001(" + "\r\022(\n tick_missrate_samples_perfectnet\0304 " + "\001(\r\022 \n\030tick_missratenet_p75_x10\0305 \001(\r\022 \n" + "\030tick_missratenet_p95_x10\0306 \001(\r\022 \n\030tick_" + "missratenet_p99_x10\0307 \001(\r\022\025\n\rrecvmargin_" + "p1\030= \001(\021\022\025\n\rrecvmargin_p5\030> \001(\021\022\026\n\016recvm" + "argin_p25\030\? \001(\021\022\026\n\016recvmargin_p50\030@ \001(\021\022" + "\026\n\016recvmargin_p75\030A \001(\021\022\026\n\016recvmargin_p9" + "5\030B \001(\021\"\373\001\n\035CMsgSource2PerfIntervalSampl" + "e\022\031\n\021frame_time_max_ms\030\001 \001(\002\022\031\n\021frame_ti" + "me_avg_ms\030\002 \001(\002\022\031\n\021frame_time_min_ms\030\003 \001" + "(\002\022\023\n\013frame_count\030\004 \001(\005\022\033\n\023frame_time_to" + "tal_ms\030\005 \001(\002\0220\n\004tags\030\006 \003(\0132\".CMsgSource2" + "PerfIntervalSample.Tag\032%\n\003Tag\022\013\n\003tag\030\001 \001" + "(\t\022\021\n\tmax_value\030\002 \001(\r\"\234\002\n\022CCLCMsg_Diagno" + "stic\022-\n\014system_specs\030\001 \001(\0132\027.CMsgSource2" + "SystemSpecs\0221\n\014vprof_report\030\002 \001(\0132\033.CMsg" + "Source2VProfLiteReport\0227\n\017downstream_flo" + "w\030\003 \001(\0132\036.CMsgSource2NetworkFlowQuality\022" + "5\n\rupstream_flow\030\004 \001(\0132\036.CMsgSource2Netw" + "orkFlowQuality\0224\n\014perf_samples\030\005 \003(\0132\036.C" + "MsgSource2PerfIntervalSample\"\273\004\n-CSource" + "2Metrics_MatchPerfSummary_Notification\022\r" + "\n\005appid\030\001 \001(\r\022\021\n\tgame_mode\030\002 \001(\t\022\027\n\017serv" + "er_build_id\030\003 \001(\r\022\024\n\014server_popid\030\004 \001(\007\022" + "3\n\016server_profile\030\n \001(\0132\033.CMsgSource2VPr" + "ofLiteReport\022F\n\007clients\030\013 \003(\01325.CSource2" + "Metrics_MatchPerfSummary_Notification.Cl" + "ient\022\013\n\003map\030\024 \001(\t\032\256\002\n\006Client\022-\n\014system_s" + "pecs\030\001 \001(\0132\027.CMsgSource2SystemSpecs\022,\n\007p" + "rofile\030\002 \001(\0132\033.CMsgSource2VProfLiteRepor" + "t\022\020\n\010build_id\030\003 \001(\r\0227\n\017downstream_flow\030\004" + " \001(\0132\036.CMsgSource2NetworkFlowQuality\0225\n\r" + "upstream_flow\030\005 \001(\0132\036.CMsgSource2Network" + "FlowQuality\022\017\n\007steamid\030\n \001(\006\0224\n\014perf_sam" + "ples\030\013 \003(\0132\036.CMsgSource2PerfIntervalSamp" + "le\"\207\003\n\022CSVCMsg_ServerInfo\022\020\n\010protocol\030\001 " + "\001(\005\022\024\n\014server_count\030\002 \001(\005\022\024\n\014is_dedicate" + "d\030\003 \001(\010\022\017\n\007is_hltv\030\004 \001(\010\022\014\n\004c_os\030\006 \001(\005\022\023" + "\n\013max_clients\030\n \001(\005\022\023\n\013max_classes\030\013 \001(\005" + "\022\027\n\013player_slot\030\014 \001(\005:\002-1\022\025\n\rtick_interv" + "al\030\r \001(\002\022\020\n\010game_dir\030\016 \001(\t\022\020\n\010map_name\030\017" + " \001(\t\022\020\n\010sky_name\030\020 \001(\t\022\021\n\thost_name\030\021 \001(" + "\t\022\022\n\naddon_name\030\022 \001(\t\022>\n\023game_session_co" + "nfig\030\023 \001(\0132!.CSVCMsg_GameSessionConfigur" + "ation\022\035\n\025game_session_manifest\030\024 \001(\014\"\213\001\n" + "\021CSVCMsg_ClassInfo\022\030\n\020create_on_client\030\001" + " \001(\010\022+\n\007classes\030\002 \003(\0132\032.CSVCMsg_ClassInf" + "o.class_t\032/\n\007class_t\022\020\n\010class_id\030\001 \001(\005\022\022" + "\n\nclass_name\030\003 \001(\t\"\"\n\020CSVCMsg_SetPause\022\016" + "\n\006paused\030\001 \001(\010\"G\n\021CSVCMsg_VoiceInit\022\017\n\007q" + "uality\030\001 \001(\005\022\r\n\005codec\030\002 \001(\t\022\022\n\007version\030\003" + " \001(\005:\0010\"\035\n\rCSVCMsg_Print\022\014\n\004text\030\001 \001(\t\"\343" + "\003\n\016CSVCMsg_Sounds\022\026\n\016reliable_sound\030\001 \001(" + "\010\022+\n\006sounds\030\002 \003(\0132\033.CSVCMsg_Sounds.sound" + "data_t\032\213\003\n\013sounddata_t\022\020\n\010origin_x\030\001 \001(\021" + "\022\020\n\010origin_y\030\002 \001(\021\022\020\n\010origin_z\030\003 \001(\021\022\016\n\006" + "volume\030\004 \001(\r\022\023\n\013delay_value\030\005 \001(\002\022\027\n\017seq" + "uence_number\030\006 \001(\005\022\030\n\014entity_index\030\007 \001(\005" + ":\002-1\022\017\n\007channel\030\010 \001(\005\022\r\n\005pitch\030\t \001(\005\022\r\n\005" + "flags\030\n \001(\005\022\021\n\tsound_num\030\013 \001(\r\022\030\n\020sound_" + "num_handle\030\014 \001(\007\022\026\n\016speaker_entity\030\r \001(\005" + "\022\023\n\013random_seed\030\016 \001(\005\022\023\n\013sound_level\030\017 \001" + "(\005\022\023\n\013is_sentence\030\020 \001(\010\022\022\n\nis_ambient\030\021 " + "\001(\010\022\014\n\004guid\030\022 \001(\r\022\031\n\021sound_resource_id\030\023" + " \001(\006\"X\n\020CSVCMsg_Prefetch\022\023\n\013sound_index\030" + "\001 \001(\005\022/\n\rresource_type\030\002 \001(\0162\r.PrefetchT" + "ype:\tPFT_SOUND\"=\n\017CSVCMsg_SetView\022\030\n\014ent" + "ity_index\030\001 \001(\005:\002-1\022\020\n\004slot\030\002 \001(\005:\002-1\"@\n" + "\020CSVCMsg_FixAngle\022\020\n\010relative\030\001 \001(\010\022\032\n\005a" + "ngle\030\002 \001(\0132\013.CMsgQAngle\"4\n\026CSVCMsg_Cross" + "hairAngle\022\032\n\005angle\030\001 \001(\0132\013.CMsgQAngle\"\216\001" + "\n\020CSVCMsg_BSPDecal\022\030\n\003pos\030\001 \001(\0132\013.CMsgVe" + "ctor\022\033\n\023decal_texture_index\030\002 \001(\005\022\030\n\014ent" + "ity_index\030\003 \001(\005:\002-1\022\023\n\013model_index\030\004 \001(\005" + "\022\024\n\014low_priority\030\005 \001(\010\"~\n\023CSVCMsg_SplitS" + "creen\022\?\n\004type\030\001 \001(\0162\030.ESplitScreenMessag" + "eType:\027MSG_SPLITSCREEN_ADDUSER\022\014\n\004slot\030\002" + " \001(\005\022\030\n\014player_index\030\003 \001(\005:\002-1\"9\n\024CSVCMs" + "g_GetCvarValue\022\016\n\006cookie\030\001 \001(\005\022\021\n\tcvar_n" + "ame\030\002 \001(\t\"<\n\014CSVCMsg_Menu\022\023\n\013dialog_type" + "\030\001 \001(\005\022\027\n\017menu_key_values\030\002 \001(\014\"N\n\023CSVCM" + "sg_UserMessage\022\020\n\010msg_type\030\001 \001(\005\022\020\n\010msg_" + "data\030\002 \001(\014\022\023\n\013passthrough\030\003 \001(\005\"\260\002\n\021CSVC" + "Msg_SendTable\022\016\n\006is_end\030\001 \001(\010\022\026\n\016net_tab" + "le_name\030\002 \001(\t\022\025\n\rneeds_decoder\030\003 \001(\010\022,\n\005" + "props\030\004 \003(\0132\035.CSVCMsg_SendTable.sendprop" + "_t\032\255\001\n\nsendprop_t\022\014\n\004type\030\001 \001(\005\022\020\n\010var_n" + "ame\030\002 \001(\t\022\r\n\005flags\030\003 \001(\005\022\020\n\010priority\030\004 \001" + "(\005\022\017\n\007dt_name\030\005 \001(\t\022\024\n\014num_elements\030\006 \001(" + "\005\022\021\n\tlow_value\030\007 \001(\002\022\022\n\nhigh_value\030\010 \001(\002" + "\022\020\n\010num_bits\030\t \001(\005\"\321\001\n\025CSVCMsg_GameEvent" + "List\0228\n\013descriptors\030\001 \003(\0132#.CSVCMsg_Game" + "EventList.descriptor_t\032#\n\005key_t\022\014\n\004type\030" + "\001 \001(\005\022\014\n\004name\030\002 \001(\t\032Y\n\014descriptor_t\022\017\n\007e" + "ventid\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022*\n\004keys\030\003 \003(\013" + "2\034.CSVCMsg_GameEventList.key_t\"\347\007\n\026CSVCM" + "sg_PacketEntities\022\023\n\013max_entries\030\001 \001(\005\022\027" + "\n\017updated_entries\030\002 \001(\005\022\027\n\017legacy_is_del" + "ta\030\003 \001(\010\022\027\n\017update_baseline\030\004 \001(\010\022\020\n\010bas" + "eline\030\005 \001(\005\022\022\n\ndelta_from\030\006 \001(\005\022\023\n\013entit" + "y_data\030\007 \001(\014\022\032\n\022pending_full_frame\030\010 \001(\010" + "\022 \n\030active_spawngroup_handle\030\t \001(\r\022\'\n\037ma" + "x_spawngroup_creationsequence\030\n \001(\r\022 \n\030l" + "ast_cmd_number_executed\030\013 \001(\r\022\"\n\032last_cm" + "d_number_recv_delta\030\021 \001(\021\022\023\n\013server_tick" + "\030\014 \001(\r\022\033\n\023serialized_entities\030\r \001(\014\022I\n\023a" + "lternate_baselines\030\017 \003(\0132,.CSVCMsg_Packe" + "tEntities.alternate_baseline_t\022#\n\033has_pv" + "s_vis_bits_deprecated\030\020 \001(\r\022\033\n\017cmd_recv_" + "status\030\026 \003(\021B\002\020\001\022T\n\030non_transmitted_enti" + "ties\030\023 \001(\01322.CSVCMsg_PacketEntities.non_" + "transmitted_entities_t\022 \n\030cq_starved_com" + "mand_ticks\030\024 \001(\r\022\"\n\032cq_discarded_command" + "_ticks\030\025 \001(\r\022R\n\027outofpvs_entity_updates\030" + "\027 \001(\01321.CSVCMsg_PacketEntities.outofpvs_" + "entity_updates_t\022\024\n\013dev_padding\030\347\007 \001(\014\032D" + "\n\024alternate_baseline_t\022\024\n\014entity_index\030\001" + " \001(\005\022\026\n\016baseline_index\030\002 \001(\005\032@\n\032non_tran" + "smitted_entities_t\022\024\n\014header_count\030\001 \001(\005" + "\022\014\n\004data\030\002 \001(\014\0328\n\031outofpvs_entity_update" + "s_t\022\r\n\005count\030\001 \001(\005\022\014\n\004data\030\002 \001(\014\"R\n\024CSVC" + "Msg_TempEntities\022\020\n\010reliable\030\001 \001(\010\022\023\n\013nu" + "m_entries\030\002 \001(\005\022\023\n\013entity_data\030\003 \001(\014\"\211\002\n" + "\031CSVCMsg_CreateStringTable\022\014\n\004name\030\001 \001(\t" + "\022\023\n\013num_entries\030\002 \001(\005\022\034\n\024user_data_fixed" + "_size\030\003 \001(\010\022\026\n\016user_data_size\030\004 \001(\005\022\033\n\023u" + "ser_data_size_bits\030\005 \001(\005\022\r\n\005flags\030\006 \001(\005\022" + "\023\n\013string_data\030\007 \001(\014\022\031\n\021uncompressed_siz" + "e\030\010 \001(\005\022\027\n\017data_compressed\030\t \001(\010\022\036\n\026usin" + "g_varint_bitcounts\030\n \001(\010\"_\n\031CSVCMsg_Upda" + "teStringTable\022\020\n\010table_id\030\001 \001(\005\022\033\n\023num_c" + "hanged_entries\030\002 \001(\005\022\023\n\013string_data\030\003 \001(" + "\014\"\241\001\n\021CSVCMsg_VoiceData\022\036\n\005audio\030\001 \001(\0132\017" + ".CMsgVoiceAudio\022\022\n\006client\030\002 \001(\005:\002-1\022\021\n\tp" + "roximity\030\003 \001(\010\022\014\n\004xuid\030\004 \001(\006\022\024\n\014audible_" + "mask\030\005 \001(\005\022\014\n\004tick\030\006 \001(\r\022\023\n\013passthrough\030" + "\007 \001(\005\"K\n\026CSVCMsg_PacketReliable\022\014\n\004tick\030" + "\001 \001(\005\022\024\n\014messagessize\030\002 \001(\005\022\r\n\005state\030\003 \001" + "(\010\"T\n\026CSVCMsg_FullFrameSplit\022\014\n\004tick\030\001 \001" + "(\005\022\017\n\007section\030\002 \001(\005\022\r\n\005total\030\003 \001(\005\022\014\n\004da" + "ta\030\004 \001(\014\"U\n\022CSVCMsg_HLTVStatus\022\016\n\006master" + "\030\001 \001(\t\022\017\n\007clients\030\002 \001(\005\022\r\n\005slots\030\003 \001(\005\022\017" + "\n\007proxies\030\004 \001(\005\")\n\025CSVCMsg_ServerSteamID" + "\022\020\n\010steam_id\030\001 \001(\004\"$\n\024CSVCMsg_CmdKeyValu" + "es\022\014\n\004data\030\001 \001(\014\";\n\031CSVCMsg_RconServerDe" + "tails\022\r\n\005token\030\001 \001(\014\022\017\n\007details\030\002 \001(\t\";\n" + "\016CMsgIPCAddress\022\025\n\rcomputer_guid\030\001 \001(\006\022\022" + "\n\nprocess_id\030\002 \001(\r\"\244\001\n\016CMsgServerPeer\022\027\n" + "\013player_slot\030\001 \001(\005:\002-1\022\017\n\007steamid\030\002 \001(\006\022" + "\034\n\003ipc\030\003 \001(\0132\017.CMsgIPCAddress\022\025\n\rthey_he" + "ar_you\030\004 \001(\010\022\025\n\ryou_hear_them\030\005 \001(\010\022\034\n\024i" + "s_listenserver_host\030\006 \001(\010\"1\n\020CSVCMsg_Pee" + "rList\022\035\n\004peer\030\001 \003(\0132\017.CMsgServerPeer\"N\n\034" + "CSVCMsg_ClearAllStringTables\022\017\n\007mapname\030" + "\001 \001(\t\022\035\n\025create_tables_skipped\030\003 \001(\010\"\363\003\n" + "\037ProtoFlattenedSerializerField_t\022\024\n\014var_" + "type_sym\030\001 \001(\005\022\024\n\014var_name_sym\030\002 \001(\005\022\021\n\t" + "bit_count\030\003 \001(\005\022\021\n\tlow_value\030\004 \001(\002\022\022\n\nhi" + "gh_value\030\005 \001(\002\022\024\n\014encode_flags\030\006 \001(\005\022!\n\031" + "field_serializer_name_sym\030\007 \001(\005\022 \n\030field" + "_serializer_version\030\010 \001(\005\022\025\n\rsend_node_s" + "ym\030\t \001(\005\022\027\n\017var_encoder_sym\030\n \001(\005\022O\n\021pol" + "ymorphic_types\030\013 \003(\01324.ProtoFlattenedSer" + "ializerField_t.polymorphic_field_t\022\032\n\022va" + "r_serializer_sym\030\014 \001(\005\032r\n\023polymorphic_fi" + "eld_t\022-\n%polymorphic_field_serializer_na" + "me_sym\030\001 \001(\005\022,\n$polymorphic_field_serial" + "izer_version\030\002 \001(\005\"k\n\032ProtoFlattenedSeri" + "alizer_t\022\033\n\023serializer_name_sym\030\001 \001(\005\022\032\n" + "\022serializer_version\030\002 \001(\005\022\024\n\014fields_inde" + "x\030\003 \003(\005\"\222\001\n\033CSVCMsg_FlattenedSerializer\022" + "0\n\013serializers\030\001 \003(\0132\033.ProtoFlattenedSer" + "ializer_t\022\017\n\007symbols\030\002 \003(\t\0220\n\006fields\030\003 \003" + "(\0132 .ProtoFlattenedSerializerField_t\"!\n\021" + "CSVCMsg_StopSound\022\014\n\004guid\030\001 \001(\007\"y\n\036CBidi" + "rMsg_RebroadcastGameEvent\022\024\n\014posttoserve" + "r\030\001 \001(\010\022\017\n\007buftype\030\002 \001(\005\022\026\n\016clientbitcou" + "nt\030\003 \001(\r\022\030\n\020receivingclients\030\004 \001(\004\"2\n\033CB" + "idirMsg_RebroadcastSource\022\023\n\013eventsource" + "\030\001 \001(\005\"\232\001\n\031CBidirMsg_PredictionEvent\022\020\n\010" + "event_id\030\001 \002(\r\022\022\n\nevent_data\030\002 \002(\014\022\021\n\tsy" + "nc_type\030\003 \001(\r\022\027\n\017sync_val_uint32\030\004 \001(\r\"+" + "\n\tESyncType\022\013\n\007ST_Tick\020\000\022\021\n\rST_UserCmdNu" + "m\020\001\"\305\006\n\026CMsgServerNetworkStats\022\021\n\tdedica" + "ted\030\001 \001(\010\022\021\n\tcpu_usage\030\002 \001(\005\022\026\n\016memory_u" + "sed_mb\030\003 \001(\005\022\026\n\016memory_free_mb\030\004 \001(\005\022\016\n\006" + "uptime\030\005 \001(\005\022\023\n\013spawn_count\030\006 \001(\005\022\023\n\013num" + "_clients\030\010 \001(\005\022\020\n\010num_bots\030\t \001(\005\022\026\n\016num_" + "spectators\030\n \001(\005\022\025\n\rnum_tv_relays\030\013 \001(\005\022" + "\013\n\003fps\030\014 \001(\002\022+\n\005ports\030\021 \003(\0132\034.CMsgServer" + "NetworkStats.Port\022\023\n\013avg_ping_ms\030\022 \001(\002\022\036" + "\n\026avg_engine_latency_out\030\023 \001(\002\022\027\n\017avg_pa" + "ckets_out\030\024 \001(\002\022\026\n\016avg_packets_in\030\025 \001(\002\022" + "\024\n\014avg_loss_out\030\026 \001(\002\022\023\n\013avg_loss_in\030\027 \001" + "(\002\022\024\n\014avg_data_out\030\030 \001(\002\022\023\n\013avg_data_in\030" + "\031 \001(\002\022\025\n\rtotal_data_in\030\032 \001(\004\022\030\n\020total_pa" + "ckets_in\030\033 \001(\004\022\026\n\016total_data_out\030\034 \001(\004\022\031" + "\n\021total_packets_out\030\035 \001(\004\022/\n\007players\030\036 \003" + "(\0132\036.CMsgServerNetworkStats.Player\032\"\n\004Po" + "rt\022\014\n\004port\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\032\252\001\n\006Playe" + "r\022\017\n\007steamid\030\001 \001(\004\022\023\n\013remote_addr\030\002 \001(\t\022" + "\023\n\013ping_avg_ms\030\004 \001(\005\022\027\n\017packet_loss_pct\030" + "\005 \001(\002\022\016\n\006is_bot\030\006 \001(\010\022\017\n\007loss_in\030\007 \001(\002\022\020" + "\n\010loss_out\030\010 \001(\002\022\031\n\021engine_latency_ms\030\t " + "\001(\005\"\332\001\n\022CSVCMsg_HltvReplay\022\r\n\005delay\030\001 \001(" + "\005\022\032\n\016primary_target\030\002 \001(\005:\002-1\022\026\n\016replay_" + "stop_at\030\003 \001(\005\022\027\n\017replay_start_at\030\004 \001(\005\022\035" + "\n\025replay_slowdown_begin\030\005 \001(\005\022\033\n\023replay_" + "slowdown_end\030\006 \001(\005\022\034\n\024replay_slowdown_ra" + "te\030\007 \001(\002\022\016\n\006reason\030\010 \001(\005\"\205\001\n\022CCLCMsg_Hlt" + "vReplay\022\017\n\007request\030\001 \001(\005\022\027\n\017slowdown_len" + "gth\030\002 \001(\002\022\025\n\rslowdown_rate\030\003 \001(\002\022\032\n\016prim" + "ary_target\030\004 \001(\005:\002-1\022\022\n\nevent_time\030\005 \001(\002" + "\"(\n\031CSVCMsg_Broadcast_Command\022\013\n\003cmd\030\001 \001" + "(\t\"\357\001\n\035CCLCMsg_HltvFixupOperatorTick\022\014\n\004" + "tick\030\001 \001(\005\022\022\n\nprops_data\030\002 \001(\014\022\033\n\006origin" + "\030\003 \001(\0132\013.CMsgVector\022\037\n\neye_angles\030\004 \001(\0132" + "\013.CMsgQAngle\022\025\n\robserver_mode\030\005 \001(\005\022\034\n\024c" + "ameraman_scoreboard\030\006 \001(\010\022\027\n\017observer_ta" + "rget\030\007 \001(\005\022 \n\013view_offset\030\010 \001(\0132\013.CMsgVe" + "ctor\"O\n\037CSVCMsg_HltvFixupOperatorStatus\022" + "\014\n\004mode\030\001 \001(\r\022\036\n\026override_operator_name\030" + "\002 \001(\t\"\201\001\n\021CMsgServerUserCmd\022\014\n\004data\030\001 \001(" + "\014\022\022\n\ncmd_number\030\002 \001(\005\022\027\n\013player_slot\030\003 \001" + "(\005:\002-1\022\034\n\024server_tick_executed\030\004 \001(\005\022\023\n\013" + "client_tick\030\005 \001(\005\"<\n\024CSVCMsg_UserCommand" + "s\022$\n\010commands\030\001 \003(\0132\022.CMsgServerUserCmd*" + "\313\002\n\014CLC_Messages\022\022\n\016clc_ClientInfo\020\024\022\014\n\010" + "clc_Move\020\025\022\021\n\rclc_VoiceData\020\026\022\023\n\017clc_Bas" + "elineAck\020\027\022\030\n\024clc_RespondCvarValue\020\031\022\027\n\023" + "clc_LoadingProgress\020\033\022\032\n\026clc_SplitPlayer" + "Connect\020\034\022\035\n\031clc_SplitPlayerDisconnect\020\036" + "\022\024\n\020clc_ServerStatus\020\037\022\024\n\020clc_RequestPau" + "se\020!\022\024\n\020clc_CmdKeyValues\020\"\022\031\n\025clc_RconSe" + "rverDetails\020#\022\022\n\016clc_HltvReplay\020$\022\022\n\016clc" + "_Diagnostic\020%*\227\005\n\014SVC_Messages\022\022\n\016svc_Se" + "rverInfo\020(\022\033\n\027svc_FlattenedSerializer\020)\022" + "\021\n\rsvc_ClassInfo\020*\022\020\n\014svc_SetPause\020+\022\031\n\025" + "svc_CreateStringTable\020,\022\031\n\025svc_UpdateStr" + "ingTable\020-\022\021\n\rsvc_VoiceInit\020.\022\021\n\rsvc_Voi" + "ceData\020/\022\r\n\tsvc_Print\0200\022\016\n\nsvc_Sounds\0201\022" + "\017\n\013svc_SetView\0202\022\034\n\030svc_ClearAllStringTa" + "bles\0203\022\024\n\020svc_CmdKeyValues\0204\022\020\n\014svc_BSPD" + "ecal\0205\022\023\n\017svc_SplitScreen\0206\022\026\n\022svc_Packe" + "tEntities\0207\022\020\n\014svc_Prefetch\0208\022\014\n\010svc_Men" + "u\0209\022\024\n\020svc_GetCvarValue\020:\022\021\n\rsvc_StopSou" + "nd\020;\022\020\n\014svc_PeerList\020<\022\026\n\022svc_PacketReli" + "able\020=\022\022\n\016svc_HLTVStatus\020>\022\025\n\021svc_Server" + "SteamID\020\?\022\026\n\022svc_FullFrameSplit\020F\022\031\n\025svc" + "_RconServerDetails\020G\022\023\n\017svc_UserMessage\020" + "H\022\031\n\025svc_Broadcast_Command\020J\022\037\n\033svc_Hltv" + "FixupOperatorStatus\020K\022\020\n\014svc_UserCmds\020L*" + "g\n\021VoiceDataFormat_t\022\032\n\026VOICEDATA_FORMAT" + "_STEAM\020\000\022\033\n\027VOICEDATA_FORMAT_ENGINE\020\001\022\031\n" + "\025VOICEDATA_FORMAT_OPUS\020\002*B\n\016RequestPause" + "_t\022\014\n\010RP_PAUSE\020\000\022\016\n\nRP_UNPAUSE\020\001\022\022\n\016RP_T" + "OGGLEPAUSE\020\002*\035\n\014PrefetchType\022\r\n\tPFT_SOUN" + "D\020\000*V\n\027ESplitScreenMessageType\022\033\n\027MSG_SP" + "LITSCREEN_ADDUSER\020\000\022\036\n\032MSG_SPLITSCREEN_R" + "EMOVEUSER\020\001*\263\001\n\025EQueryCvarValueStatus\022%\n" + "!eQueryCvarValueStatus_ValueIntact\020\000\022&\n\"" + "eQueryCvarValueStatus_CvarNotFound\020\001\022\"\n\036" + "eQueryCvarValueStatus_NotACvar\020\002\022\'\n#eQue" + "ryCvarValueStatus_CvarProtected\020\003*h\n\013DIA" + "LOG_TYPE\022\016\n\nDIALOG_MSG\020\000\022\017\n\013DIALOG_MENU\020" + "\001\022\017\n\013DIALOG_TEXT\020\002\022\020\n\014DIALOG_ENTRY\020\003\022\025\n\021" + "DIALOG_ASKCONNECT\020\004*+\n\031SVC_Messages_LowF" + "requency\022\016\n\tsvc_dummy\020\330\004*y\n\026Bidirectiona" + "l_Messages\022\033\n\027bi_RebroadcastGameEvent\020\020\022" + "\030\n\024bi_RebroadcastSource\020\021\022\020\n\014bi_GameEven" + "t\020\022\022\026\n\022bi_PredictionEvent\020\023*M\n#Bidirecti" + "onal_Messages_LowFrequency\022\021\n\014bi_RelayIn" + "fo\020\274\005\022\023\n\016bi_RelayPacket\020\275\005*\241\001\n\021ReplayEve" + "ntType_t\022\027\n\023REPLAY_EVENT_CANCEL\020\000\022\026\n\022REP" + "LAY_EVENT_DEATH\020\001\022\030\n\024REPLAY_EVENT_GENERI" + "C\020\002\022\'\n#REPLAY_EVENT_STUCK_NEED_FULL_UPDA" + "TE\020\003\022\030\n\024REPLAY_EVENT_VICTORY\020\004" ; static const ::_pbi::DescriptorTable* const descriptor_table_netmessages_2eproto_deps[1] = { &::descriptor_table_networkbasetypes_2eproto, }; static ::_pbi::once_flag descriptor_table_netmessages_2eproto_once; const ::_pbi::DescriptorTable descriptor_table_netmessages_2eproto = { - false, false, 13526, descriptor_table_protodef_netmessages_2eproto, + false, false, 13830, descriptor_table_protodef_netmessages_2eproto, "netmessages.proto", - &descriptor_table_netmessages_2eproto_once, descriptor_table_netmessages_2eproto_deps, 1, 80, + &descriptor_table_netmessages_2eproto_once, descriptor_table_netmessages_2eproto_deps, 1, 81, schemas, file_default_instances, TableStruct_netmessages_2eproto::offsets, file_level_metadata_netmessages_2eproto, file_level_enum_descriptors_netmessages_2eproto, file_level_service_descriptors_netmessages_2eproto, @@ -3221,7 +3273,6 @@ bool CLC_Messages_IsValid(int value) { case 22: case 23: case 25: - case 26: case 27: case 28: case 30: @@ -5572,92 +5623,46 @@ ::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_RespondCvarValue::GetMetadata() const // =================================================================== -class CCLCMsg_FileCRCCheck::_Internal { +class CCLCMsg_LoadingProgress::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_code_path(HasBits* has_bits) { - (*has_bits)[0] |= 4u; - } - static void set_has_path(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_progress(HasBits* has_bits) { (*has_bits)[0] |= 1u; } - static void set_has_code_filename(HasBits* has_bits) { - (*has_bits)[0] |= 8u; - } - static void set_has_filename(HasBits* has_bits) { - (*has_bits)[0] |= 2u; - } - static void set_has_crc(HasBits* has_bits) { - (*has_bits)[0] |= 16u; - } }; -CCLCMsg_FileCRCCheck::CCLCMsg_FileCRCCheck(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CCLCMsg_LoadingProgress::CCLCMsg_LoadingProgress(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CCLCMsg_FileCRCCheck) + // @@protoc_insertion_point(arena_constructor:CCLCMsg_LoadingProgress) } -CCLCMsg_FileCRCCheck::CCLCMsg_FileCRCCheck(const CCLCMsg_FileCRCCheck& from) +CCLCMsg_LoadingProgress::CCLCMsg_LoadingProgress(const CCLCMsg_LoadingProgress& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CCLCMsg_FileCRCCheck* const _this = this; (void)_this; + CCLCMsg_LoadingProgress* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.path_){} - , decltype(_impl_.filename_){} - , decltype(_impl_.code_path_){} - , decltype(_impl_.code_filename_){} - , decltype(_impl_.crc_){}}; + , decltype(_impl_.progress_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.path_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.path_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_path()) { - _this->_impl_.path_.Set(from._internal_path(), - _this->GetArenaForAllocation()); - } - _impl_.filename_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.filename_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_filename()) { - _this->_impl_.filename_.Set(from._internal_filename(), - _this->GetArenaForAllocation()); - } - ::memcpy(&_impl_.code_path_, &from._impl_.code_path_, - static_cast(reinterpret_cast(&_impl_.crc_) - - reinterpret_cast(&_impl_.code_path_)) + sizeof(_impl_.crc_)); - // @@protoc_insertion_point(copy_constructor:CCLCMsg_FileCRCCheck) + _this->_impl_.progress_ = from._impl_.progress_; + // @@protoc_insertion_point(copy_constructor:CCLCMsg_LoadingProgress) } -inline void CCLCMsg_FileCRCCheck::SharedCtor( +inline void CCLCMsg_LoadingProgress::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.path_){} - , decltype(_impl_.filename_){} - , decltype(_impl_.code_path_){0} - , decltype(_impl_.code_filename_){0} - , decltype(_impl_.crc_){0u} + , decltype(_impl_.progress_){0} }; - _impl_.path_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.path_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.filename_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.filename_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } -CCLCMsg_FileCRCCheck::~CCLCMsg_FileCRCCheck() { - // @@protoc_insertion_point(destructor:CCLCMsg_FileCRCCheck) +CCLCMsg_LoadingProgress::~CCLCMsg_LoadingProgress() { + // @@protoc_insertion_point(destructor:CCLCMsg_LoadingProgress) if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { (void)arena; return; @@ -5665,95 +5670,38 @@ CCLCMsg_FileCRCCheck::~CCLCMsg_FileCRCCheck() { SharedDtor(); } -inline void CCLCMsg_FileCRCCheck::SharedDtor() { +inline void CCLCMsg_LoadingProgress::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); - _impl_.path_.Destroy(); - _impl_.filename_.Destroy(); } -void CCLCMsg_FileCRCCheck::SetCachedSize(int size) const { +void CCLCMsg_LoadingProgress::SetCachedSize(int size) const { _impl_._cached_size_.Set(size); } -void CCLCMsg_FileCRCCheck::Clear() { -// @@protoc_insertion_point(message_clear_start:CCLCMsg_FileCRCCheck) +void CCLCMsg_LoadingProgress::Clear() { +// @@protoc_insertion_point(message_clear_start:CCLCMsg_LoadingProgress) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000003u) { - if (cached_has_bits & 0x00000001u) { - _impl_.path_.ClearNonDefaultToEmpty(); - } - if (cached_has_bits & 0x00000002u) { - _impl_.filename_.ClearNonDefaultToEmpty(); - } - } - if (cached_has_bits & 0x0000001cu) { - ::memset(&_impl_.code_path_, 0, static_cast( - reinterpret_cast(&_impl_.crc_) - - reinterpret_cast(&_impl_.code_path_)) + sizeof(_impl_.crc_)); - } + _impl_.progress_ = 0; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } -const char* CCLCMsg_FileCRCCheck::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +const char* CCLCMsg_LoadingProgress::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::_pbi::ReadTag(ptr, &tag); switch (tag >> 3) { - // optional int32 code_path = 1; + // optional int32 progress = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_code_path(&has_bits); - _impl_.code_path_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional string path = 2; - case 2: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 18)) { - auto str = _internal_mutable_path(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); - CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CCLCMsg_FileCRCCheck.path"); - #endif // !NDEBUG - } else - goto handle_unusual; - continue; - // optional int32 code_filename = 3; - case 3: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 24)) { - _Internal::set_has_code_filename(&has_bits); - _impl_.code_filename_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - // optional string filename = 4; - case 4: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 34)) { - auto str = _internal_mutable_filename(); - ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + _Internal::set_has_progress(&has_bits); + _impl_.progress_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); CHK_(ptr); - #ifndef NDEBUG - ::_pbi::VerifyUTF8(str, "CCLCMsg_FileCRCCheck.filename"); - #endif // !NDEBUG - } else - goto handle_unusual; - continue; - // optional fixed32 crc = 5; - case 5: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 45)) { - _Internal::set_has_crc(&has_bits); - _impl_.crc_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); - ptr += sizeof(uint32_t); } else goto handle_unusual; continue; @@ -5781,173 +5729,84 @@ const char* CCLCMsg_FileCRCCheck::_InternalParse(const char* ptr, ::_pbi::ParseC #undef CHK_ } -uint8_t* CCLCMsg_FileCRCCheck::_InternalSerialize( +uint8_t* CCLCMsg_LoadingProgress::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CCLCMsg_FileCRCCheck) + // @@protoc_insertion_point(serialize_to_array_start:CCLCMsg_LoadingProgress) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - // optional int32 code_path = 1; - if (cached_has_bits & 0x00000004u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(1, this->_internal_code_path(), target); - } - - // optional string path = 2; + // optional int32 progress = 1; if (cached_has_bits & 0x00000001u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_path().data(), static_cast(this->_internal_path().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CCLCMsg_FileCRCCheck.path"); - target = stream->WriteStringMaybeAliased( - 2, this->_internal_path(), target); - } - - // optional int32 code_filename = 3; - if (cached_has_bits & 0x00000008u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(3, this->_internal_code_filename(), target); - } - - // optional string filename = 4; - if (cached_has_bits & 0x00000002u) { - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( - this->_internal_filename().data(), static_cast(this->_internal_filename().length()), - ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, - "CCLCMsg_FileCRCCheck.filename"); - target = stream->WriteStringMaybeAliased( - 4, this->_internal_filename(), target); - } - - // optional fixed32 crc = 5; - if (cached_has_bits & 0x00000010u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFixed32ToArray(5, this->_internal_crc(), target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(1, this->_internal_progress(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } - // @@protoc_insertion_point(serialize_to_array_end:CCLCMsg_FileCRCCheck) + // @@protoc_insertion_point(serialize_to_array_end:CCLCMsg_LoadingProgress) return target; } -size_t CCLCMsg_FileCRCCheck::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CCLCMsg_FileCRCCheck) +size_t CCLCMsg_LoadingProgress::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CCLCMsg_LoadingProgress) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // optional int32 progress = 1; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { - // optional string path = 2; - if (cached_has_bits & 0x00000001u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_path()); - } - - // optional string filename = 4; - if (cached_has_bits & 0x00000002u) { - total_size += 1 + - ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( - this->_internal_filename()); - } - - // optional int32 code_path = 1; - if (cached_has_bits & 0x00000004u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_code_path()); - } - - // optional int32 code_filename = 3; - if (cached_has_bits & 0x00000008u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_code_filename()); - } - - // optional fixed32 crc = 5; - if (cached_has_bits & 0x00000010u) { - total_size += 1 + 4; - } - + if (cached_has_bits & 0x00000001u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_progress()); } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CCLCMsg_FileCRCCheck::_class_data_ = { +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CCLCMsg_LoadingProgress::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CCLCMsg_FileCRCCheck::MergeImpl + CCLCMsg_LoadingProgress::MergeImpl }; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CCLCMsg_FileCRCCheck::GetClassData() const { return &_class_data_; } +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CCLCMsg_LoadingProgress::GetClassData() const { return &_class_data_; } -void CCLCMsg_FileCRCCheck::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CCLCMsg_FileCRCCheck) +void CCLCMsg_LoadingProgress::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CCLCMsg_LoadingProgress) GOOGLE_DCHECK_NE(&from, _this); uint32_t cached_has_bits = 0; (void) cached_has_bits; - cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { - if (cached_has_bits & 0x00000001u) { - _this->_internal_set_path(from._internal_path()); - } - if (cached_has_bits & 0x00000002u) { - _this->_internal_set_filename(from._internal_filename()); - } - if (cached_has_bits & 0x00000004u) { - _this->_impl_.code_path_ = from._impl_.code_path_; - } - if (cached_has_bits & 0x00000008u) { - _this->_impl_.code_filename_ = from._impl_.code_filename_; - } - if (cached_has_bits & 0x00000010u) { - _this->_impl_.crc_ = from._impl_.crc_; - } - _this->_impl_._has_bits_[0] |= cached_has_bits; + if (from._internal_has_progress()) { + _this->_internal_set_progress(from._internal_progress()); } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CCLCMsg_FileCRCCheck::CopyFrom(const CCLCMsg_FileCRCCheck& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CCLCMsg_FileCRCCheck) +void CCLCMsg_LoadingProgress::CopyFrom(const CCLCMsg_LoadingProgress& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CCLCMsg_LoadingProgress) if (&from == this) return; Clear(); MergeFrom(from); } -bool CCLCMsg_FileCRCCheck::IsInitialized() const { +bool CCLCMsg_LoadingProgress::IsInitialized() const { return true; } -void CCLCMsg_FileCRCCheck::InternalSwap(CCLCMsg_FileCRCCheck* other) { +void CCLCMsg_LoadingProgress::InternalSwap(CCLCMsg_LoadingProgress* other) { using std::swap; - auto* lhs_arena = GetArenaForAllocation(); - auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.path_, lhs_arena, - &other->_impl_.path_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( - &_impl_.filename_, lhs_arena, - &other->_impl_.filename_, rhs_arena - ); - ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CCLCMsg_FileCRCCheck, _impl_.crc_) - + sizeof(CCLCMsg_FileCRCCheck::_impl_.crc_) - - PROTOBUF_FIELD_OFFSET(CCLCMsg_FileCRCCheck, _impl_.code_path_)>( - reinterpret_cast(&_impl_.code_path_), - reinterpret_cast(&other->_impl_.code_path_)); + swap(_impl_.progress_, other->_impl_.progress_); } -::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_FileCRCCheck::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_LoadingProgress::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, file_level_metadata_netmessages_2eproto[7]); @@ -5955,244 +5814,53 @@ ::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_FileCRCCheck::GetMetadata() const { // =================================================================== -class CCLCMsg_LoadingProgress::_Internal { +class CCLCMsg_SplitPlayerConnect::_Internal { public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_progress(HasBits* has_bits) { + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_playername(HasBits* has_bits) { (*has_bits)[0] |= 1u; } }; -CCLCMsg_LoadingProgress::CCLCMsg_LoadingProgress(::PROTOBUF_NAMESPACE_ID::Arena* arena, +CCLCMsg_SplitPlayerConnect::CCLCMsg_SplitPlayerConnect(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CCLCMsg_LoadingProgress) + // @@protoc_insertion_point(arena_constructor:CCLCMsg_SplitPlayerConnect) } -CCLCMsg_LoadingProgress::CCLCMsg_LoadingProgress(const CCLCMsg_LoadingProgress& from) +CCLCMsg_SplitPlayerConnect::CCLCMsg_SplitPlayerConnect(const CCLCMsg_SplitPlayerConnect& from) : ::PROTOBUF_NAMESPACE_ID::Message() { - CCLCMsg_LoadingProgress* const _this = this; (void)_this; + CCLCMsg_SplitPlayerConnect* const _this = this; (void)_this; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.progress_){}}; + , decltype(_impl_.playername_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _this->_impl_.progress_ = from._impl_.progress_; - // @@protoc_insertion_point(copy_constructor:CCLCMsg_LoadingProgress) + _impl_.playername_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.playername_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_playername()) { + _this->_impl_.playername_.Set(from._internal_playername(), + _this->GetArenaForAllocation()); + } + // @@protoc_insertion_point(copy_constructor:CCLCMsg_SplitPlayerConnect) } -inline void CCLCMsg_LoadingProgress::SharedCtor( +inline void CCLCMsg_SplitPlayerConnect::SharedCtor( ::_pb::Arena* arena, bool is_message_owned) { (void)arena; (void)is_message_owned; new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.progress_){0} + , decltype(_impl_.playername_){} }; -} - -CCLCMsg_LoadingProgress::~CCLCMsg_LoadingProgress() { - // @@protoc_insertion_point(destructor:CCLCMsg_LoadingProgress) - if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { - (void)arena; - return; - } - SharedDtor(); -} - -inline void CCLCMsg_LoadingProgress::SharedDtor() { - GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); -} - -void CCLCMsg_LoadingProgress::SetCachedSize(int size) const { - _impl_._cached_size_.Set(size); -} - -void CCLCMsg_LoadingProgress::Clear() { -// @@protoc_insertion_point(message_clear_start:CCLCMsg_LoadingProgress) - uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - _impl_.progress_ = 0; - _impl_._has_bits_.Clear(); - _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); -} - -const char* CCLCMsg_LoadingProgress::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { -#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure - _Internal::HasBits has_bits{}; - while (!ctx->Done(&ptr)) { - uint32_t tag; - ptr = ::_pbi::ReadTag(ptr, &tag); - switch (tag >> 3) { - // optional int32 progress = 1; - case 1: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 8)) { - _Internal::set_has_progress(&has_bits); - _impl_.progress_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); - CHK_(ptr); - } else - goto handle_unusual; - continue; - default: - goto handle_unusual; - } // switch - handle_unusual: - if ((tag == 0) || ((tag & 7) == 4)) { - CHK_(ptr); - ctx->SetLastTag(tag); - goto message_done; - } - ptr = UnknownFieldParse( - tag, - _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), - ptr, ctx); - CHK_(ptr != nullptr); - } // while -message_done: - _impl_._has_bits_.Or(has_bits); - return ptr; -failure: - ptr = nullptr; - goto message_done; -#undef CHK_ -} - -uint8_t* CCLCMsg_LoadingProgress::_InternalSerialize( - uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { - // @@protoc_insertion_point(serialize_to_array_start:CCLCMsg_LoadingProgress) - uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - cached_has_bits = _impl_._has_bits_[0]; - // optional int32 progress = 1; - if (cached_has_bits & 0x00000001u) { - target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteInt32ToArray(1, this->_internal_progress(), target); - } - - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { - target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( - _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); - } - // @@protoc_insertion_point(serialize_to_array_end:CCLCMsg_LoadingProgress) - return target; -} - -size_t CCLCMsg_LoadingProgress::ByteSizeLong() const { -// @@protoc_insertion_point(message_byte_size_start:CCLCMsg_LoadingProgress) - size_t total_size = 0; - - uint32_t cached_has_bits = 0; - // Prevent compiler warnings about cached_has_bits being unused - (void) cached_has_bits; - - // optional int32 progress = 1; - cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x00000001u) { - total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_progress()); - } - - return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); -} - -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CCLCMsg_LoadingProgress::_class_data_ = { - ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, - CCLCMsg_LoadingProgress::MergeImpl -}; -const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CCLCMsg_LoadingProgress::GetClassData() const { return &_class_data_; } - - -void CCLCMsg_LoadingProgress::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { - auto* const _this = static_cast(&to_msg); - auto& from = static_cast(from_msg); - // @@protoc_insertion_point(class_specific_merge_from_start:CCLCMsg_LoadingProgress) - GOOGLE_DCHECK_NE(&from, _this); - uint32_t cached_has_bits = 0; - (void) cached_has_bits; - - if (from._internal_has_progress()) { - _this->_internal_set_progress(from._internal_progress()); - } - _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); -} - -void CCLCMsg_LoadingProgress::CopyFrom(const CCLCMsg_LoadingProgress& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CCLCMsg_LoadingProgress) - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -bool CCLCMsg_LoadingProgress::IsInitialized() const { - return true; -} - -void CCLCMsg_LoadingProgress::InternalSwap(CCLCMsg_LoadingProgress* other) { - using std::swap; - _internal_metadata_.InternalSwap(&other->_internal_metadata_); - swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); - swap(_impl_.progress_, other->_impl_.progress_); -} - -::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_LoadingProgress::GetMetadata() const { - return ::_pbi::AssignDescriptors( - &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[8]); -} - -// =================================================================== - -class CCLCMsg_SplitPlayerConnect::_Internal { - public: - using HasBits = decltype(std::declval()._impl_._has_bits_); - static void set_has_playername(HasBits* has_bits) { - (*has_bits)[0] |= 1u; - } -}; - -CCLCMsg_SplitPlayerConnect::CCLCMsg_SplitPlayerConnect(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned) - : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { - SharedCtor(arena, is_message_owned); - // @@protoc_insertion_point(arena_constructor:CCLCMsg_SplitPlayerConnect) -} -CCLCMsg_SplitPlayerConnect::CCLCMsg_SplitPlayerConnect(const CCLCMsg_SplitPlayerConnect& from) - : ::PROTOBUF_NAMESPACE_ID::Message() { - CCLCMsg_SplitPlayerConnect* const _this = this; (void)_this; - new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){from._impl_._has_bits_} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.playername_){}}; - - _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); - _impl_.playername_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.playername_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (from._internal_has_playername()) { - _this->_impl_.playername_.Set(from._internal_playername(), - _this->GetArenaForAllocation()); - } - // @@protoc_insertion_point(copy_constructor:CCLCMsg_SplitPlayerConnect) -} - -inline void CCLCMsg_SplitPlayerConnect::SharedCtor( - ::_pb::Arena* arena, bool is_message_owned) { - (void)arena; - (void)is_message_owned; - new (&_impl_) Impl_{ - decltype(_impl_._has_bits_){} - , /*decltype(_impl_._cached_size_)*/{} - , decltype(_impl_.playername_){} - }; - _impl_.playername_.InitDefault(); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - _impl_.playername_.Set("", GetArenaForAllocation()); - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.playername_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.playername_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } CCLCMsg_SplitPlayerConnect::~CCLCMsg_SplitPlayerConnect() { @@ -6361,7 +6029,7 @@ void CCLCMsg_SplitPlayerConnect::InternalSwap(CCLCMsg_SplitPlayerConnect* other) ::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_SplitPlayerConnect::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[9]); + file_level_metadata_netmessages_2eproto[8]); } // =================================================================== @@ -6552,7 +6220,7 @@ void CCLCMsg_SplitPlayerDisconnect::InternalSwap(CCLCMsg_SplitPlayerDisconnect* ::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_SplitPlayerDisconnect::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[10]); + file_level_metadata_netmessages_2eproto[9]); } // =================================================================== @@ -6743,7 +6411,7 @@ void CCLCMsg_ServerStatus::InternalSwap(CCLCMsg_ServerStatus* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_ServerStatus::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[11]); + file_level_metadata_netmessages_2eproto[10]); } // =================================================================== @@ -6986,7 +6654,7 @@ void CCLCMsg_RequestPause::InternalSwap(CCLCMsg_RequestPause* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_RequestPause::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[12]); + file_level_metadata_netmessages_2eproto[11]); } // =================================================================== @@ -7199,7 +6867,7 @@ void CCLCMsg_CmdKeyValues::InternalSwap(CCLCMsg_CmdKeyValues* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_CmdKeyValues::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[13]); + file_level_metadata_netmessages_2eproto[12]); } // =================================================================== @@ -7412,7 +7080,7 @@ void CCLCMsg_RconServerDetails::InternalSwap(CCLCMsg_RconServerDetails* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_RconServerDetails::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[14]); + file_level_metadata_netmessages_2eproto[13]); } // =================================================================== @@ -7456,6 +7124,12 @@ class CMsgSource2SystemSpecs::_Internal { static void set_has_gpu_texture_memory_size_mb(HasBits* has_bits) { (*has_bits)[0] |= 2048u; } + static void set_has_backbuffer_width(HasBits* has_bits) { + (*has_bits)[0] |= 4096u; + } + static void set_has_backbuffer_height(HasBits* has_bits) { + (*has_bits)[0] |= 8192u; + } }; CMsgSource2SystemSpecs::CMsgSource2SystemSpecs(::PROTOBUF_NAMESPACE_ID::Arena* arena, @@ -7481,7 +7155,9 @@ CMsgSource2SystemSpecs::CMsgSource2SystemSpecs(const CMsgSource2SystemSpecs& fro , decltype(_impl_.gpu_driver_version_high_){} , decltype(_impl_.gpu_driver_version_low_){} , decltype(_impl_.gpu_dx_support_level_){} - , decltype(_impl_.gpu_texture_memory_size_mb_){}}; + , decltype(_impl_.gpu_texture_memory_size_mb_){} + , decltype(_impl_.backbuffer_width_){} + , decltype(_impl_.backbuffer_height_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); _impl_.cpu_id_.InitDefault(); @@ -7517,8 +7193,8 @@ CMsgSource2SystemSpecs::CMsgSource2SystemSpecs(const CMsgSource2SystemSpecs& fro _this->GetArenaForAllocation()); } ::memcpy(&_impl_.cpu_model_, &from._impl_.cpu_model_, - static_cast(reinterpret_cast(&_impl_.gpu_texture_memory_size_mb_) - - reinterpret_cast(&_impl_.cpu_model_)) + sizeof(_impl_.gpu_texture_memory_size_mb_)); + static_cast(reinterpret_cast(&_impl_.backbuffer_height_) - + reinterpret_cast(&_impl_.cpu_model_)) + sizeof(_impl_.backbuffer_height_)); // @@protoc_insertion_point(copy_constructor:CMsgSource2SystemSpecs) } @@ -7541,6 +7217,8 @@ inline void CMsgSource2SystemSpecs::SharedCtor( , decltype(_impl_.gpu_driver_version_low_){0u} , decltype(_impl_.gpu_dx_support_level_){0u} , decltype(_impl_.gpu_texture_memory_size_mb_){0u} + , decltype(_impl_.backbuffer_width_){0u} + , decltype(_impl_.backbuffer_height_){0u} }; _impl_.cpu_id_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -7607,10 +7285,10 @@ void CMsgSource2SystemSpecs::Clear() { reinterpret_cast(&_impl_.gpu_vendor_id_) - reinterpret_cast(&_impl_.cpu_model_)) + sizeof(_impl_.gpu_vendor_id_)); } - if (cached_has_bits & 0x00000f00u) { + if (cached_has_bits & 0x00003f00u) { ::memset(&_impl_.gpu_driver_version_high_, 0, static_cast( - reinterpret_cast(&_impl_.gpu_texture_memory_size_mb_) - - reinterpret_cast(&_impl_.gpu_driver_version_high_)) + sizeof(_impl_.gpu_texture_memory_size_mb_)); + reinterpret_cast(&_impl_.backbuffer_height_) - + reinterpret_cast(&_impl_.gpu_driver_version_high_)) + sizeof(_impl_.backbuffer_height_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); @@ -7743,6 +7421,24 @@ const char* CMsgSource2SystemSpecs::_InternalParse(const char* ptr, ::_pbi::Pars } else goto handle_unusual; continue; + // optional uint32 backbuffer_width = 51; + case 51: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 152)) { + _Internal::set_has_backbuffer_width(&has_bits); + _impl_.backbuffer_width_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional uint32 backbuffer_height = 52; + case 52: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 160)) { + _Internal::set_has_backbuffer_height(&has_bits); + _impl_.backbuffer_height_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; default: goto handle_unusual; } // switch @@ -7862,6 +7558,18 @@ uint8_t* CMsgSource2SystemSpecs::_InternalSerialize( target = ::_pbi::WireFormatLite::WriteUInt32ToArray(47, this->_internal_gpu_texture_memory_size_mb(), target); } + // optional uint32 backbuffer_width = 51; + if (cached_has_bits & 0x00001000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(51, this->_internal_backbuffer_width(), target); + } + + // optional uint32 backbuffer_height = 52; + if (cached_has_bits & 0x00002000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(52, this->_internal_backbuffer_height(), target); + } + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); @@ -7933,7 +7641,7 @@ size_t CMsgSource2SystemSpecs::ByteSizeLong() const { } } - if (cached_has_bits & 0x00000f00u) { + if (cached_has_bits & 0x00003f00u) { // optional uint32 gpu_driver_version_high = 44; if (cached_has_bits & 0x00000100u) { total_size += 2 + @@ -7962,6 +7670,20 @@ size_t CMsgSource2SystemSpecs::ByteSizeLong() const { this->_internal_gpu_texture_memory_size_mb()); } + // optional uint32 backbuffer_width = 51; + if (cached_has_bits & 0x00001000u) { + total_size += 2 + + ::_pbi::WireFormatLite::UInt32Size( + this->_internal_backbuffer_width()); + } + + // optional uint32 backbuffer_height = 52; + if (cached_has_bits & 0x00002000u) { + total_size += 2 + + ::_pbi::WireFormatLite::UInt32Size( + this->_internal_backbuffer_height()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } @@ -8009,7 +7731,7 @@ void CMsgSource2SystemSpecs::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, } _this->_impl_._has_bits_[0] |= cached_has_bits; } - if (cached_has_bits & 0x00000f00u) { + if (cached_has_bits & 0x00003f00u) { if (cached_has_bits & 0x00000100u) { _this->_impl_.gpu_driver_version_high_ = from._impl_.gpu_driver_version_high_; } @@ -8022,6 +7744,12 @@ void CMsgSource2SystemSpecs::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, if (cached_has_bits & 0x00000800u) { _this->_impl_.gpu_texture_memory_size_mb_ = from._impl_.gpu_texture_memory_size_mb_; } + if (cached_has_bits & 0x00001000u) { + _this->_impl_.backbuffer_width_ = from._impl_.backbuffer_width_; + } + if (cached_has_bits & 0x00002000u) { + _this->_impl_.backbuffer_height_ = from._impl_.backbuffer_height_; + } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); @@ -8061,8 +7789,8 @@ void CMsgSource2SystemSpecs::InternalSwap(CMsgSource2SystemSpecs* other) { &other->_impl_.gpu_driver_name_, rhs_arena ); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgSource2SystemSpecs, _impl_.gpu_texture_memory_size_mb_) - + sizeof(CMsgSource2SystemSpecs::_impl_.gpu_texture_memory_size_mb_) + PROTOBUF_FIELD_OFFSET(CMsgSource2SystemSpecs, _impl_.backbuffer_height_) + + sizeof(CMsgSource2SystemSpecs::_impl_.backbuffer_height_) - PROTOBUF_FIELD_OFFSET(CMsgSource2SystemSpecs, _impl_.cpu_model_)>( reinterpret_cast(&_impl_.cpu_model_), reinterpret_cast(&other->_impl_.cpu_model_)); @@ -8071,7 +7799,7 @@ void CMsgSource2SystemSpecs::InternalSwap(CMsgSource2SystemSpecs* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgSource2SystemSpecs::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[15]); + file_level_metadata_netmessages_2eproto[14]); } // =================================================================== @@ -8829,7 +8557,7 @@ void CMsgSource2VProfLiteReportItem::InternalSwap(CMsgSource2VProfLiteReportItem ::PROTOBUF_NAMESPACE_ID::Metadata CMsgSource2VProfLiteReportItem::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[16]); + file_level_metadata_netmessages_2eproto[15]); } // =================================================================== @@ -9110,7 +8838,7 @@ void CMsgSource2VProfLiteReport::InternalSwap(CMsgSource2VProfLiteReport* other) ::PROTOBUF_NAMESPACE_ID::Metadata CMsgSource2VProfLiteReport::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[17]); + file_level_metadata_netmessages_2eproto[16]); } // =================================================================== @@ -10118,68 +9846,680 @@ void CMsgSource2NetworkFlowQuality::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& if (cached_has_bits & 0x00080000u) { _this->_impl_.tick_missrate_samples_perfectnet_ = from._impl_.tick_missrate_samples_perfectnet_; } - if (cached_has_bits & 0x00100000u) { - _this->_impl_.tick_missratenet_p75_x10_ = from._impl_.tick_missratenet_p75_x10_; + if (cached_has_bits & 0x00100000u) { + _this->_impl_.tick_missratenet_p75_x10_ = from._impl_.tick_missratenet_p75_x10_; + } + if (cached_has_bits & 0x00200000u) { + _this->_impl_.tick_missratenet_p95_x10_ = from._impl_.tick_missratenet_p95_x10_; + } + if (cached_has_bits & 0x00400000u) { + _this->_impl_.tick_missratenet_p99_x10_ = from._impl_.tick_missratenet_p99_x10_; + } + if (cached_has_bits & 0x00800000u) { + _this->_impl_.recvmargin_p1_ = from._impl_.recvmargin_p1_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } + if (cached_has_bits & 0x1f000000u) { + if (cached_has_bits & 0x01000000u) { + _this->_impl_.recvmargin_p5_ = from._impl_.recvmargin_p5_; + } + if (cached_has_bits & 0x02000000u) { + _this->_impl_.recvmargin_p25_ = from._impl_.recvmargin_p25_; + } + if (cached_has_bits & 0x04000000u) { + _this->_impl_.recvmargin_p50_ = from._impl_.recvmargin_p50_; + } + if (cached_has_bits & 0x08000000u) { + _this->_impl_.recvmargin_p75_ = from._impl_.recvmargin_p75_; + } + if (cached_has_bits & 0x10000000u) { + _this->_impl_.recvmargin_p95_ = from._impl_.recvmargin_p95_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } + _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); +} + +void CMsgSource2NetworkFlowQuality::CopyFrom(const CMsgSource2NetworkFlowQuality& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgSource2NetworkFlowQuality) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool CMsgSource2NetworkFlowQuality::IsInitialized() const { + return true; +} + +void CMsgSource2NetworkFlowQuality::InternalSwap(CMsgSource2NetworkFlowQuality* other) { + using std::swap; + _internal_metadata_.InternalSwap(&other->_internal_metadata_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + ::PROTOBUF_NAMESPACE_ID::internal::memswap< + PROTOBUF_FIELD_OFFSET(CMsgSource2NetworkFlowQuality, _impl_.recvmargin_p95_) + + sizeof(CMsgSource2NetworkFlowQuality::_impl_.recvmargin_p95_) + - PROTOBUF_FIELD_OFFSET(CMsgSource2NetworkFlowQuality, _impl_.bytes_total_)>( + reinterpret_cast(&_impl_.bytes_total_), + reinterpret_cast(&other->_impl_.bytes_total_)); +} + +::PROTOBUF_NAMESPACE_ID::Metadata CMsgSource2NetworkFlowQuality::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, + file_level_metadata_netmessages_2eproto[17]); +} + +// =================================================================== + +class CMsgSource2PerfIntervalSample_Tag::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_tag(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } + static void set_has_max_value(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } +}; + +CMsgSource2PerfIntervalSample_Tag::CMsgSource2PerfIntervalSample_Tag(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { + SharedCtor(arena, is_message_owned); + // @@protoc_insertion_point(arena_constructor:CMsgSource2PerfIntervalSample.Tag) +} +CMsgSource2PerfIntervalSample_Tag::CMsgSource2PerfIntervalSample_Tag(const CMsgSource2PerfIntervalSample_Tag& from) + : ::PROTOBUF_NAMESPACE_ID::Message() { + CMsgSource2PerfIntervalSample_Tag* const _this = this; (void)_this; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.tag_){} + , decltype(_impl_.max_value_){}}; + + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + _impl_.tag_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.tag_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_tag()) { + _this->_impl_.tag_.Set(from._internal_tag(), + _this->GetArenaForAllocation()); + } + _this->_impl_.max_value_ = from._impl_.max_value_; + // @@protoc_insertion_point(copy_constructor:CMsgSource2PerfIntervalSample.Tag) +} + +inline void CMsgSource2PerfIntervalSample_Tag::SharedCtor( + ::_pb::Arena* arena, bool is_message_owned) { + (void)arena; + (void)is_message_owned; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.tag_){} + , decltype(_impl_.max_value_){0u} + }; + _impl_.tag_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.tag_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING +} + +CMsgSource2PerfIntervalSample_Tag::~CMsgSource2PerfIntervalSample_Tag() { + // @@protoc_insertion_point(destructor:CMsgSource2PerfIntervalSample.Tag) + if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { + (void)arena; + return; + } + SharedDtor(); +} + +inline void CMsgSource2PerfIntervalSample_Tag::SharedDtor() { + GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.tag_.Destroy(); +} + +void CMsgSource2PerfIntervalSample_Tag::SetCachedSize(int size) const { + _impl_._cached_size_.Set(size); +} + +void CMsgSource2PerfIntervalSample_Tag::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgSource2PerfIntervalSample.Tag) + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000001u) { + _impl_.tag_.ClearNonDefaultToEmpty(); + } + _impl_.max_value_ = 0u; + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); +} + +const char* CMsgSource2PerfIntervalSample_Tag::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; + while (!ctx->Done(&ptr)) { + uint32_t tag; + ptr = ::_pbi::ReadTag(ptr, &tag); + switch (tag >> 3) { + // optional string tag = 1; + case 1: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 10)) { + auto str = _internal_mutable_tag(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CMsgSource2PerfIntervalSample.Tag.tag"); + #endif // !NDEBUG + } else + goto handle_unusual; + continue; + // optional uint32 max_value = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 16)) { + _Internal::set_has_max_value(&has_bits); + _impl_.max_value_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + default: + goto handle_unusual; + } // switch + handle_unusual: + if ((tag == 0) || ((tag & 7) == 4)) { + CHK_(ptr); + ctx->SetLastTag(tag); + goto message_done; + } + ptr = UnknownFieldParse( + tag, + _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), + ptr, ctx); + CHK_(ptr != nullptr); + } // while +message_done: + _impl_._has_bits_.Or(has_bits); + return ptr; +failure: + ptr = nullptr; + goto message_done; +#undef CHK_ +} + +uint8_t* CMsgSource2PerfIntervalSample_Tag::_InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:CMsgSource2PerfIntervalSample.Tag) + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + cached_has_bits = _impl_._has_bits_[0]; + // optional string tag = 1; + if (cached_has_bits & 0x00000001u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_tag().data(), static_cast(this->_internal_tag().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CMsgSource2PerfIntervalSample.Tag.tag"); + target = stream->WriteStringMaybeAliased( + 1, this->_internal_tag(), target); + } + + // optional uint32 max_value = 2; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_max_value(), target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:CMsgSource2PerfIntervalSample.Tag) + return target; +} + +size_t CMsgSource2PerfIntervalSample_Tag::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgSource2PerfIntervalSample.Tag) + size_t total_size = 0; + + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + // optional string tag = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_tag()); + } + + // optional uint32 max_value = 2; + if (cached_has_bits & 0x00000002u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_max_value()); + } + + } + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgSource2PerfIntervalSample_Tag::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, + CMsgSource2PerfIntervalSample_Tag::MergeImpl +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgSource2PerfIntervalSample_Tag::GetClassData() const { return &_class_data_; } + + +void CMsgSource2PerfIntervalSample_Tag::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgSource2PerfIntervalSample.Tag) + GOOGLE_DCHECK_NE(&from, _this); + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x00000003u) { + if (cached_has_bits & 0x00000001u) { + _this->_internal_set_tag(from._internal_tag()); + } + if (cached_has_bits & 0x00000002u) { + _this->_impl_.max_value_ = from._impl_.max_value_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } + _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); +} + +void CMsgSource2PerfIntervalSample_Tag::CopyFrom(const CMsgSource2PerfIntervalSample_Tag& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgSource2PerfIntervalSample.Tag) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool CMsgSource2PerfIntervalSample_Tag::IsInitialized() const { + return true; +} + +void CMsgSource2PerfIntervalSample_Tag::InternalSwap(CMsgSource2PerfIntervalSample_Tag* other) { + using std::swap; + auto* lhs_arena = GetArenaForAllocation(); + auto* rhs_arena = other->GetArenaForAllocation(); + _internal_metadata_.InternalSwap(&other->_internal_metadata_); + swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.tag_, lhs_arena, + &other->_impl_.tag_, rhs_arena + ); + swap(_impl_.max_value_, other->_impl_.max_value_); +} + +::PROTOBUF_NAMESPACE_ID::Metadata CMsgSource2PerfIntervalSample_Tag::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, + file_level_metadata_netmessages_2eproto[18]); +} + +// =================================================================== + +class CMsgSource2PerfIntervalSample::_Internal { + public: + using HasBits = decltype(std::declval()._impl_._has_bits_); + static void set_has_frame_time_max_ms(HasBits* has_bits) { + (*has_bits)[0] |= 1u; + } + static void set_has_frame_time_avg_ms(HasBits* has_bits) { + (*has_bits)[0] |= 2u; + } + static void set_has_frame_time_min_ms(HasBits* has_bits) { + (*has_bits)[0] |= 4u; + } + static void set_has_frame_count(HasBits* has_bits) { + (*has_bits)[0] |= 8u; + } + static void set_has_frame_time_total_ms(HasBits* has_bits) { + (*has_bits)[0] |= 16u; + } +}; + +CMsgSource2PerfIntervalSample::CMsgSource2PerfIntervalSample(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { + SharedCtor(arena, is_message_owned); + // @@protoc_insertion_point(arena_constructor:CMsgSource2PerfIntervalSample) +} +CMsgSource2PerfIntervalSample::CMsgSource2PerfIntervalSample(const CMsgSource2PerfIntervalSample& from) + : ::PROTOBUF_NAMESPACE_ID::Message() { + CMsgSource2PerfIntervalSample* const _this = this; (void)_this; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){from._impl_._has_bits_} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.tags_){from._impl_.tags_} + , decltype(_impl_.frame_time_max_ms_){} + , decltype(_impl_.frame_time_avg_ms_){} + , decltype(_impl_.frame_time_min_ms_){} + , decltype(_impl_.frame_count_){} + , decltype(_impl_.frame_time_total_ms_){}}; + + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + ::memcpy(&_impl_.frame_time_max_ms_, &from._impl_.frame_time_max_ms_, + static_cast(reinterpret_cast(&_impl_.frame_time_total_ms_) - + reinterpret_cast(&_impl_.frame_time_max_ms_)) + sizeof(_impl_.frame_time_total_ms_)); + // @@protoc_insertion_point(copy_constructor:CMsgSource2PerfIntervalSample) +} + +inline void CMsgSource2PerfIntervalSample::SharedCtor( + ::_pb::Arena* arena, bool is_message_owned) { + (void)arena; + (void)is_message_owned; + new (&_impl_) Impl_{ + decltype(_impl_._has_bits_){} + , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.tags_){arena} + , decltype(_impl_.frame_time_max_ms_){0} + , decltype(_impl_.frame_time_avg_ms_){0} + , decltype(_impl_.frame_time_min_ms_){0} + , decltype(_impl_.frame_count_){0} + , decltype(_impl_.frame_time_total_ms_){0} + }; +} + +CMsgSource2PerfIntervalSample::~CMsgSource2PerfIntervalSample() { + // @@protoc_insertion_point(destructor:CMsgSource2PerfIntervalSample) + if (auto *arena = _internal_metadata_.DeleteReturnArena<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>()) { + (void)arena; + return; + } + SharedDtor(); +} + +inline void CMsgSource2PerfIntervalSample::SharedDtor() { + GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.tags_.~RepeatedPtrField(); +} + +void CMsgSource2PerfIntervalSample::SetCachedSize(int size) const { + _impl_._cached_size_.Set(size); +} + +void CMsgSource2PerfIntervalSample::Clear() { +// @@protoc_insertion_point(message_clear_start:CMsgSource2PerfIntervalSample) + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + _impl_.tags_.Clear(); + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x0000001fu) { + ::memset(&_impl_.frame_time_max_ms_, 0, static_cast( + reinterpret_cast(&_impl_.frame_time_total_ms_) - + reinterpret_cast(&_impl_.frame_time_max_ms_)) + sizeof(_impl_.frame_time_total_ms_)); + } + _impl_._has_bits_.Clear(); + _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); +} + +const char* CMsgSource2PerfIntervalSample::_InternalParse(const char* ptr, ::_pbi::ParseContext* ctx) { +#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure + _Internal::HasBits has_bits{}; + while (!ctx->Done(&ptr)) { + uint32_t tag; + ptr = ::_pbi::ReadTag(ptr, &tag); + switch (tag >> 3) { + // optional float frame_time_max_ms = 1; + case 1: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 13)) { + _Internal::set_has_frame_time_max_ms(&has_bits); + _impl_.frame_time_max_ms_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional float frame_time_avg_ms = 2; + case 2: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 21)) { + _Internal::set_has_frame_time_avg_ms(&has_bits); + _impl_.frame_time_avg_ms_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional float frame_time_min_ms = 3; + case 3: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 29)) { + _Internal::set_has_frame_time_min_ms(&has_bits); + _impl_.frame_time_min_ms_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional int32 frame_count = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 32)) { + _Internal::set_has_frame_count(&has_bits); + _impl_.frame_count_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional float frame_time_total_ms = 5; + case 5: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 45)) { + _Internal::set_has_frame_time_total_ms(&has_bits); + _impl_.frame_time_total_ms_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // repeated .CMsgSource2PerfIntervalSample.Tag tags = 6; + case 6: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 50)) { + ptr -= 1; + do { + ptr += 1; + ptr = ctx->ParseMessage(_internal_add_tags(), ptr); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<50>(ptr)); + } else + goto handle_unusual; + continue; + default: + goto handle_unusual; + } // switch + handle_unusual: + if ((tag == 0) || ((tag & 7) == 4)) { + CHK_(ptr); + ctx->SetLastTag(tag); + goto message_done; + } + ptr = UnknownFieldParse( + tag, + _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), + ptr, ctx); + CHK_(ptr != nullptr); + } // while +message_done: + _impl_._has_bits_.Or(has_bits); + return ptr; +failure: + ptr = nullptr; + goto message_done; +#undef CHK_ +} + +uint8_t* CMsgSource2PerfIntervalSample::_InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:CMsgSource2PerfIntervalSample) + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + cached_has_bits = _impl_._has_bits_[0]; + // optional float frame_time_max_ms = 1; + if (cached_has_bits & 0x00000001u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(1, this->_internal_frame_time_max_ms(), target); + } + + // optional float frame_time_avg_ms = 2; + if (cached_has_bits & 0x00000002u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(2, this->_internal_frame_time_avg_ms(), target); + } + + // optional float frame_time_min_ms = 3; + if (cached_has_bits & 0x00000004u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(3, this->_internal_frame_time_min_ms(), target); + } + + // optional int32 frame_count = 4; + if (cached_has_bits & 0x00000008u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteInt32ToArray(4, this->_internal_frame_count(), target); + } + + // optional float frame_time_total_ms = 5; + if (cached_has_bits & 0x00000010u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(5, this->_internal_frame_time_total_ms(), target); + } + + // repeated .CMsgSource2PerfIntervalSample.Tag tags = 6; + for (unsigned i = 0, + n = static_cast(this->_internal_tags_size()); i < n; i++) { + const auto& repfield = this->_internal_tags(i); + target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: + InternalWriteMessage(6, repfield, repfield.GetCachedSize(), target, stream); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:CMsgSource2PerfIntervalSample) + return target; +} + +size_t CMsgSource2PerfIntervalSample::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:CMsgSource2PerfIntervalSample) + size_t total_size = 0; + + uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + // repeated .CMsgSource2PerfIntervalSample.Tag tags = 6; + total_size += 1UL * this->_internal_tags_size(); + for (const auto& msg : this->_impl_.tags_) { + total_size += + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); + } + + cached_has_bits = _impl_._has_bits_[0]; + if (cached_has_bits & 0x0000001fu) { + // optional float frame_time_max_ms = 1; + if (cached_has_bits & 0x00000001u) { + total_size += 1 + 4; + } + + // optional float frame_time_avg_ms = 2; + if (cached_has_bits & 0x00000002u) { + total_size += 1 + 4; } - if (cached_has_bits & 0x00200000u) { - _this->_impl_.tick_missratenet_p95_x10_ = from._impl_.tick_missratenet_p95_x10_; + + // optional float frame_time_min_ms = 3; + if (cached_has_bits & 0x00000004u) { + total_size += 1 + 4; } - if (cached_has_bits & 0x00400000u) { - _this->_impl_.tick_missratenet_p99_x10_ = from._impl_.tick_missratenet_p99_x10_; + + // optional int32 frame_count = 4; + if (cached_has_bits & 0x00000008u) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne(this->_internal_frame_count()); } - if (cached_has_bits & 0x00800000u) { - _this->_impl_.recvmargin_p1_ = from._impl_.recvmargin_p1_; + + // optional float frame_time_total_ms = 5; + if (cached_has_bits & 0x00000010u) { + total_size += 1 + 4; } - _this->_impl_._has_bits_[0] |= cached_has_bits; + } - if (cached_has_bits & 0x1f000000u) { - if (cached_has_bits & 0x01000000u) { - _this->_impl_.recvmargin_p5_ = from._impl_.recvmargin_p5_; + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CMsgSource2PerfIntervalSample::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSourceCheck, + CMsgSource2PerfIntervalSample::MergeImpl +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CMsgSource2PerfIntervalSample::GetClassData() const { return &_class_data_; } + + +void CMsgSource2PerfIntervalSample::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg) { + auto* const _this = static_cast(&to_msg); + auto& from = static_cast(from_msg); + // @@protoc_insertion_point(class_specific_merge_from_start:CMsgSource2PerfIntervalSample) + GOOGLE_DCHECK_NE(&from, _this); + uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + _this->_impl_.tags_.MergeFrom(from._impl_.tags_); + cached_has_bits = from._impl_._has_bits_[0]; + if (cached_has_bits & 0x0000001fu) { + if (cached_has_bits & 0x00000001u) { + _this->_impl_.frame_time_max_ms_ = from._impl_.frame_time_max_ms_; } - if (cached_has_bits & 0x02000000u) { - _this->_impl_.recvmargin_p25_ = from._impl_.recvmargin_p25_; + if (cached_has_bits & 0x00000002u) { + _this->_impl_.frame_time_avg_ms_ = from._impl_.frame_time_avg_ms_; } - if (cached_has_bits & 0x04000000u) { - _this->_impl_.recvmargin_p50_ = from._impl_.recvmargin_p50_; + if (cached_has_bits & 0x00000004u) { + _this->_impl_.frame_time_min_ms_ = from._impl_.frame_time_min_ms_; } - if (cached_has_bits & 0x08000000u) { - _this->_impl_.recvmargin_p75_ = from._impl_.recvmargin_p75_; + if (cached_has_bits & 0x00000008u) { + _this->_impl_.frame_count_ = from._impl_.frame_count_; } - if (cached_has_bits & 0x10000000u) { - _this->_impl_.recvmargin_p95_ = from._impl_.recvmargin_p95_; + if (cached_has_bits & 0x00000010u) { + _this->_impl_.frame_time_total_ms_ = from._impl_.frame_time_total_ms_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } -void CMsgSource2NetworkFlowQuality::CopyFrom(const CMsgSource2NetworkFlowQuality& from) { -// @@protoc_insertion_point(class_specific_copy_from_start:CMsgSource2NetworkFlowQuality) +void CMsgSource2PerfIntervalSample::CopyFrom(const CMsgSource2PerfIntervalSample& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:CMsgSource2PerfIntervalSample) if (&from == this) return; Clear(); MergeFrom(from); } -bool CMsgSource2NetworkFlowQuality::IsInitialized() const { +bool CMsgSource2PerfIntervalSample::IsInitialized() const { return true; } -void CMsgSource2NetworkFlowQuality::InternalSwap(CMsgSource2NetworkFlowQuality* other) { +void CMsgSource2PerfIntervalSample::InternalSwap(CMsgSource2PerfIntervalSample* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + _impl_.tags_.InternalSwap(&other->_impl_.tags_); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CMsgSource2NetworkFlowQuality, _impl_.recvmargin_p95_) - + sizeof(CMsgSource2NetworkFlowQuality::_impl_.recvmargin_p95_) - - PROTOBUF_FIELD_OFFSET(CMsgSource2NetworkFlowQuality, _impl_.bytes_total_)>( - reinterpret_cast(&_impl_.bytes_total_), - reinterpret_cast(&other->_impl_.bytes_total_)); + PROTOBUF_FIELD_OFFSET(CMsgSource2PerfIntervalSample, _impl_.frame_time_total_ms_) + + sizeof(CMsgSource2PerfIntervalSample::_impl_.frame_time_total_ms_) + - PROTOBUF_FIELD_OFFSET(CMsgSource2PerfIntervalSample, _impl_.frame_time_max_ms_)>( + reinterpret_cast(&_impl_.frame_time_max_ms_), + reinterpret_cast(&other->_impl_.frame_time_max_ms_)); } -::PROTOBUF_NAMESPACE_ID::Metadata CMsgSource2NetworkFlowQuality::GetMetadata() const { +::PROTOBUF_NAMESPACE_ID::Metadata CMsgSource2PerfIntervalSample::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[18]); + file_level_metadata_netmessages_2eproto[19]); } // =================================================================== @@ -10233,6 +10573,7 @@ CCLCMsg_Diagnostic::CCLCMsg_Diagnostic(const CCLCMsg_Diagnostic& from) new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.perf_samples_){from._impl_.perf_samples_} , decltype(_impl_.system_specs_){nullptr} , decltype(_impl_.vprof_report_){nullptr} , decltype(_impl_.downstream_flow_){nullptr} @@ -10261,6 +10602,7 @@ inline void CCLCMsg_Diagnostic::SharedCtor( new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.perf_samples_){arena} , decltype(_impl_.system_specs_){nullptr} , decltype(_impl_.vprof_report_){nullptr} , decltype(_impl_.downstream_flow_){nullptr} @@ -10279,6 +10621,7 @@ CCLCMsg_Diagnostic::~CCLCMsg_Diagnostic() { inline void CCLCMsg_Diagnostic::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.perf_samples_.~RepeatedPtrField(); if (this != internal_default_instance()) delete _impl_.system_specs_; if (this != internal_default_instance()) delete _impl_.vprof_report_; if (this != internal_default_instance()) delete _impl_.downstream_flow_; @@ -10295,6 +10638,7 @@ void CCLCMsg_Diagnostic::Clear() { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + _impl_.perf_samples_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x0000000fu) { if (cached_has_bits & 0x00000001u) { @@ -10357,6 +10701,19 @@ const char* CCLCMsg_Diagnostic::_InternalParse(const char* ptr, ::_pbi::ParseCon } else goto handle_unusual; continue; + // repeated .CMsgSource2PerfIntervalSample perf_samples = 5; + case 5: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 42)) { + ptr -= 1; + do { + ptr += 1; + ptr = ctx->ParseMessage(_internal_add_perf_samples(), ptr); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<42>(ptr)); + } else + goto handle_unusual; + continue; default: goto handle_unusual; } // switch @@ -10416,6 +10773,14 @@ uint8_t* CCLCMsg_Diagnostic::_InternalSerialize( _Internal::upstream_flow(this).GetCachedSize(), target, stream); } + // repeated .CMsgSource2PerfIntervalSample perf_samples = 5; + for (unsigned i = 0, + n = static_cast(this->_internal_perf_samples_size()); i < n; i++) { + const auto& repfield = this->_internal_perf_samples(i); + target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: + InternalWriteMessage(5, repfield, repfield.GetCachedSize(), target, stream); + } + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); @@ -10432,6 +10797,13 @@ size_t CCLCMsg_Diagnostic::ByteSizeLong() const { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // repeated .CMsgSource2PerfIntervalSample perf_samples = 5; + total_size += 1UL * this->_internal_perf_samples_size(); + for (const auto& msg : this->_impl_.perf_samples_) { + total_size += + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); + } + cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x0000000fu) { // optional .CMsgSource2SystemSpecs system_specs = 1; @@ -10481,6 +10853,7 @@ void CCLCMsg_Diagnostic::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, con uint32_t cached_has_bits = 0; (void) cached_has_bits; + _this->_impl_.perf_samples_.MergeFrom(from._impl_.perf_samples_); cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x0000000fu) { if (cached_has_bits & 0x00000001u) { @@ -10518,6 +10891,7 @@ void CCLCMsg_Diagnostic::InternalSwap(CCLCMsg_Diagnostic* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + _impl_.perf_samples_.InternalSwap(&other->_impl_.perf_samples_); ::PROTOBUF_NAMESPACE_ID::internal::memswap< PROTOBUF_FIELD_OFFSET(CCLCMsg_Diagnostic, _impl_.upstream_flow_) + sizeof(CCLCMsg_Diagnostic::_impl_.upstream_flow_) @@ -10529,7 +10903,7 @@ void CCLCMsg_Diagnostic::InternalSwap(CCLCMsg_Diagnostic* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_Diagnostic::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[19]); + file_level_metadata_netmessages_2eproto[20]); } // =================================================================== @@ -10589,6 +10963,7 @@ CSource2Metrics_MatchPerfSummary_Notification_Client::CSource2Metrics_MatchPerfS new (&_impl_) Impl_{ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.perf_samples_){from._impl_.perf_samples_} , decltype(_impl_.system_specs_){nullptr} , decltype(_impl_.profile_){nullptr} , decltype(_impl_.downstream_flow_){nullptr} @@ -10622,6 +10997,7 @@ inline void CSource2Metrics_MatchPerfSummary_Notification_Client::SharedCtor( new (&_impl_) Impl_{ decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} + , decltype(_impl_.perf_samples_){arena} , decltype(_impl_.system_specs_){nullptr} , decltype(_impl_.profile_){nullptr} , decltype(_impl_.downstream_flow_){nullptr} @@ -10642,6 +11018,7 @@ CSource2Metrics_MatchPerfSummary_Notification_Client::~CSource2Metrics_MatchPerf inline void CSource2Metrics_MatchPerfSummary_Notification_Client::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); + _impl_.perf_samples_.~RepeatedPtrField(); if (this != internal_default_instance()) delete _impl_.system_specs_; if (this != internal_default_instance()) delete _impl_.profile_; if (this != internal_default_instance()) delete _impl_.downstream_flow_; @@ -10658,6 +11035,7 @@ void CSource2Metrics_MatchPerfSummary_Notification_Client::Clear() { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + _impl_.perf_samples_.Clear(); cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x0000000fu) { if (cached_has_bits & 0x00000001u) { @@ -10743,6 +11121,19 @@ const char* CSource2Metrics_MatchPerfSummary_Notification_Client::_InternalParse } else goto handle_unusual; continue; + // repeated .CMsgSource2PerfIntervalSample perf_samples = 11; + case 11: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 90)) { + ptr -= 1; + do { + ptr += 1; + ptr = ctx->ParseMessage(_internal_add_perf_samples(), ptr); + CHK_(ptr); + if (!ctx->DataAvailable(ptr)) break; + } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<90>(ptr)); + } else + goto handle_unusual; + continue; default: goto handle_unusual; } // switch @@ -10814,6 +11205,14 @@ uint8_t* CSource2Metrics_MatchPerfSummary_Notification_Client::_InternalSerializ target = ::_pbi::WireFormatLite::WriteFixed64ToArray(10, this->_internal_steamid(), target); } + // repeated .CMsgSource2PerfIntervalSample perf_samples = 11; + for (unsigned i = 0, + n = static_cast(this->_internal_perf_samples_size()); i < n; i++) { + const auto& repfield = this->_internal_perf_samples(i); + target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: + InternalWriteMessage(11, repfield, repfield.GetCachedSize(), target, stream); + } + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); @@ -10830,6 +11229,13 @@ size_t CSource2Metrics_MatchPerfSummary_Notification_Client::ByteSizeLong() cons // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // repeated .CMsgSource2PerfIntervalSample perf_samples = 11; + total_size += 1UL * this->_internal_perf_samples_size(); + for (const auto& msg : this->_impl_.perf_samples_) { + total_size += + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); + } + cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x0000003fu) { // optional .CMsgSource2SystemSpecs system_specs = 1; @@ -10889,6 +11295,7 @@ void CSource2Metrics_MatchPerfSummary_Notification_Client::MergeImpl(::PROTOBUF_ uint32_t cached_has_bits = 0; (void) cached_has_bits; + _this->_impl_.perf_samples_.MergeFrom(from._impl_.perf_samples_); cached_has_bits = from._impl_._has_bits_[0]; if (cached_has_bits & 0x0000003fu) { if (cached_has_bits & 0x00000001u) { @@ -10933,6 +11340,7 @@ void CSource2Metrics_MatchPerfSummary_Notification_Client::InternalSwap(CSource2 using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); + _impl_.perf_samples_.InternalSwap(&other->_impl_.perf_samples_); ::PROTOBUF_NAMESPACE_ID::internal::memswap< PROTOBUF_FIELD_OFFSET(CSource2Metrics_MatchPerfSummary_Notification_Client, _impl_.build_id_) + sizeof(CSource2Metrics_MatchPerfSummary_Notification_Client::_impl_.build_id_) @@ -10944,7 +11352,7 @@ void CSource2Metrics_MatchPerfSummary_Notification_Client::InternalSwap(CSource2 ::PROTOBUF_NAMESPACE_ID::Metadata CSource2Metrics_MatchPerfSummary_Notification_Client::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[20]); + file_level_metadata_netmessages_2eproto[21]); } // =================================================================== @@ -10961,6 +11369,9 @@ class CSource2Metrics_MatchPerfSummary_Notification::_Internal { static void set_has_server_build_id(HasBits* has_bits) { (*has_bits)[0] |= 16u; } + static void set_has_server_popid(HasBits* has_bits) { + (*has_bits)[0] |= 32u; + } static const ::CMsgSource2VProfLiteReport& server_profile(const CSource2Metrics_MatchPerfSummary_Notification* msg); static void set_has_server_profile(HasBits* has_bits) { (*has_bits)[0] |= 4u; @@ -10991,7 +11402,8 @@ CSource2Metrics_MatchPerfSummary_Notification::CSource2Metrics_MatchPerfSummary_ , decltype(_impl_.map_){} , decltype(_impl_.server_profile_){nullptr} , decltype(_impl_.appid_){} - , decltype(_impl_.server_build_id_){}}; + , decltype(_impl_.server_build_id_){} + , decltype(_impl_.server_popid_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); _impl_.game_mode_.InitDefault(); @@ -11014,8 +11426,8 @@ CSource2Metrics_MatchPerfSummary_Notification::CSource2Metrics_MatchPerfSummary_ _this->_impl_.server_profile_ = new ::CMsgSource2VProfLiteReport(*from._impl_.server_profile_); } ::memcpy(&_impl_.appid_, &from._impl_.appid_, - static_cast(reinterpret_cast(&_impl_.server_build_id_) - - reinterpret_cast(&_impl_.appid_)) + sizeof(_impl_.server_build_id_)); + static_cast(reinterpret_cast(&_impl_.server_popid_) - + reinterpret_cast(&_impl_.appid_)) + sizeof(_impl_.server_popid_)); // @@protoc_insertion_point(copy_constructor:CSource2Metrics_MatchPerfSummary_Notification) } @@ -11032,6 +11444,7 @@ inline void CSource2Metrics_MatchPerfSummary_Notification::SharedCtor( , decltype(_impl_.server_profile_){nullptr} , decltype(_impl_.appid_){0u} , decltype(_impl_.server_build_id_){0u} + , decltype(_impl_.server_popid_){0u} }; _impl_.game_mode_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -11084,10 +11497,10 @@ void CSource2Metrics_MatchPerfSummary_Notification::Clear() { _impl_.server_profile_->Clear(); } } - if (cached_has_bits & 0x00000018u) { + if (cached_has_bits & 0x00000038u) { ::memset(&_impl_.appid_, 0, static_cast( - reinterpret_cast(&_impl_.server_build_id_) - - reinterpret_cast(&_impl_.appid_)) + sizeof(_impl_.server_build_id_)); + reinterpret_cast(&_impl_.server_popid_) - + reinterpret_cast(&_impl_.appid_)) + sizeof(_impl_.server_popid_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); @@ -11130,6 +11543,15 @@ const char* CSource2Metrics_MatchPerfSummary_Notification::_InternalParse(const } else goto handle_unusual; continue; + // optional fixed32 server_popid = 4; + case 4: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 37)) { + _Internal::set_has_server_popid(&has_bits); + _impl_.server_popid_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(uint32_t); + } else + goto handle_unusual; + continue; // optional .CMsgSource2VProfLiteReport server_profile = 10; case 10: if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 82)) { @@ -11216,6 +11638,12 @@ uint8_t* CSource2Metrics_MatchPerfSummary_Notification::_InternalSerialize( target = ::_pbi::WireFormatLite::WriteUInt32ToArray(3, this->_internal_server_build_id(), target); } + // optional fixed32 server_popid = 4; + if (cached_has_bits & 0x00000020u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFixed32ToArray(4, this->_internal_server_popid(), target); + } + // optional .CMsgSource2VProfLiteReport server_profile = 10; if (cached_has_bits & 0x00000004u) { target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: @@ -11265,7 +11693,7 @@ size_t CSource2Metrics_MatchPerfSummary_Notification::ByteSizeLong() const { } cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { + if (cached_has_bits & 0x0000003fu) { // optional string game_mode = 2; if (cached_has_bits & 0x00000001u) { total_size += 1 + @@ -11297,6 +11725,11 @@ size_t CSource2Metrics_MatchPerfSummary_Notification::ByteSizeLong() const { total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_server_build_id()); } + // optional fixed32 server_popid = 4; + if (cached_has_bits & 0x00000020u) { + total_size += 1 + 4; + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } @@ -11318,7 +11751,7 @@ void CSource2Metrics_MatchPerfSummary_Notification::MergeImpl(::PROTOBUF_NAMESPA _this->_impl_.clients_.MergeFrom(from._impl_.clients_); cached_has_bits = from._impl_._has_bits_[0]; - if (cached_has_bits & 0x0000001fu) { + if (cached_has_bits & 0x0000003fu) { if (cached_has_bits & 0x00000001u) { _this->_internal_set_game_mode(from._internal_game_mode()); } @@ -11335,6 +11768,9 @@ void CSource2Metrics_MatchPerfSummary_Notification::MergeImpl(::PROTOBUF_NAMESPA if (cached_has_bits & 0x00000010u) { _this->_impl_.server_build_id_ = from._impl_.server_build_id_; } + if (cached_has_bits & 0x00000020u) { + _this->_impl_.server_popid_ = from._impl_.server_popid_; + } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); @@ -11367,8 +11803,8 @@ void CSource2Metrics_MatchPerfSummary_Notification::InternalSwap(CSource2Metrics &other->_impl_.map_, rhs_arena ); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CSource2Metrics_MatchPerfSummary_Notification, _impl_.server_build_id_) - + sizeof(CSource2Metrics_MatchPerfSummary_Notification::_impl_.server_build_id_) + PROTOBUF_FIELD_OFFSET(CSource2Metrics_MatchPerfSummary_Notification, _impl_.server_popid_) + + sizeof(CSource2Metrics_MatchPerfSummary_Notification::_impl_.server_popid_) - PROTOBUF_FIELD_OFFSET(CSource2Metrics_MatchPerfSummary_Notification, _impl_.server_profile_)>( reinterpret_cast(&_impl_.server_profile_), reinterpret_cast(&other->_impl_.server_profile_)); @@ -11377,7 +11813,7 @@ void CSource2Metrics_MatchPerfSummary_Notification::InternalSwap(CSource2Metrics ::PROTOBUF_NAMESPACE_ID::Metadata CSource2Metrics_MatchPerfSummary_Notification::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[21]); + file_level_metadata_netmessages_2eproto[22]); } // =================================================================== @@ -12205,7 +12641,7 @@ void CSVCMsg_ServerInfo::InternalSwap(CSVCMsg_ServerInfo* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_ServerInfo::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[22]); + file_level_metadata_netmessages_2eproto[23]); } // =================================================================== @@ -12462,7 +12898,7 @@ void CSVCMsg_ClassInfo_class_t::InternalSwap(CSVCMsg_ClassInfo_class_t* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_ClassInfo_class_t::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[23]); + file_level_metadata_netmessages_2eproto[24]); } // =================================================================== @@ -12687,7 +13123,7 @@ void CSVCMsg_ClassInfo::InternalSwap(CSVCMsg_ClassInfo* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_ClassInfo::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[24]); + file_level_metadata_netmessages_2eproto[25]); } // =================================================================== @@ -12878,7 +13314,7 @@ void CSVCMsg_SetPause::InternalSwap(CSVCMsg_SetPause* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_SetPause::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[25]); + file_level_metadata_netmessages_2eproto[26]); } // =================================================================== @@ -13174,7 +13610,7 @@ void CSVCMsg_VoiceInit::InternalSwap(CSVCMsg_VoiceInit* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_VoiceInit::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[26]); + file_level_metadata_netmessages_2eproto[27]); } // =================================================================== @@ -13394,7 +13830,7 @@ void CSVCMsg_Print::InternalSwap(CSVCMsg_Print* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_Print::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[27]); + file_level_metadata_netmessages_2eproto[28]); } // =================================================================== @@ -14131,7 +14567,7 @@ void CSVCMsg_Sounds_sounddata_t::InternalSwap(CSVCMsg_Sounds_sounddata_t* other) ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_Sounds_sounddata_t::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[28]); + file_level_metadata_netmessages_2eproto[29]); } // =================================================================== @@ -14356,7 +14792,7 @@ void CSVCMsg_Sounds::InternalSwap(CSVCMsg_Sounds* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_Sounds::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[29]); + file_level_metadata_netmessages_2eproto[30]); } // =================================================================== @@ -14599,7 +15035,7 @@ void CSVCMsg_Prefetch::InternalSwap(CSVCMsg_Prefetch* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_Prefetch::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[30]); + file_level_metadata_netmessages_2eproto[31]); } // =================================================================== @@ -14831,7 +15267,7 @@ void CSVCMsg_SetView::InternalSwap(CSVCMsg_SetView* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_SetView::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[31]); + file_level_metadata_netmessages_2eproto[32]); } // =================================================================== @@ -15082,7 +15518,7 @@ void CSVCMsg_FixAngle::InternalSwap(CSVCMsg_FixAngle* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_FixAngle::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[32]); + file_level_metadata_netmessages_2eproto[33]); } // =================================================================== @@ -15292,7 +15728,7 @@ void CSVCMsg_CrosshairAngle::InternalSwap(CSVCMsg_CrosshairAngle* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_CrosshairAngle::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[33]); + file_level_metadata_netmessages_2eproto[34]); } // =================================================================== @@ -15635,7 +16071,7 @@ void CSVCMsg_BSPDecal::InternalSwap(CSVCMsg_BSPDecal* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_BSPDecal::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[34]); + file_level_metadata_netmessages_2eproto[35]); } // =================================================================== @@ -15908,7 +16344,7 @@ void CSVCMsg_SplitScreen::InternalSwap(CSVCMsg_SplitScreen* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_SplitScreen::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[35]); + file_level_metadata_netmessages_2eproto[36]); } // =================================================================== @@ -16165,7 +16601,7 @@ void CSVCMsg_GetCvarValue::InternalSwap(CSVCMsg_GetCvarValue* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_GetCvarValue::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[36]); + file_level_metadata_netmessages_2eproto[37]); } // =================================================================== @@ -16415,7 +16851,7 @@ void CSVCMsg_Menu::InternalSwap(CSVCMsg_Menu* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_Menu::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[37]); + file_level_metadata_netmessages_2eproto[38]); } // =================================================================== @@ -16704,7 +17140,7 @@ void CSVCMsg_UserMessage::InternalSwap(CSVCMsg_UserMessage* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_UserMessage::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[38]); + file_level_metadata_netmessages_2eproto[39]); } // =================================================================== @@ -17200,7 +17636,7 @@ void CSVCMsg_SendTable_sendprop_t::InternalSwap(CSVCMsg_SendTable_sendprop_t* ot ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_SendTable_sendprop_t::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[39]); + file_level_metadata_netmessages_2eproto[40]); } // =================================================================== @@ -17528,7 +17964,7 @@ void CSVCMsg_SendTable::InternalSwap(CSVCMsg_SendTable* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_SendTable::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[40]); + file_level_metadata_netmessages_2eproto[41]); } // =================================================================== @@ -17785,7 +18221,7 @@ void CSVCMsg_GameEventList_key_t::InternalSwap(CSVCMsg_GameEventList_key_t* othe ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_GameEventList_key_t::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[41]); + file_level_metadata_netmessages_2eproto[42]); } // =================================================================== @@ -18076,7 +18512,7 @@ void CSVCMsg_GameEventList_descriptor_t::InternalSwap(CSVCMsg_GameEventList_desc ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_GameEventList_descriptor_t::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[42]); + file_level_metadata_netmessages_2eproto[43]); } // =================================================================== @@ -18261,7 +18697,7 @@ void CSVCMsg_GameEventList::InternalSwap(CSVCMsg_GameEventList* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_GameEventList::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[43]); + file_level_metadata_netmessages_2eproto[44]); } // =================================================================== @@ -18498,7 +18934,7 @@ void CSVCMsg_PacketEntities_alternate_baseline_t::InternalSwap(CSVCMsg_PacketEnt ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_PacketEntities_alternate_baseline_t::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[44]); + file_level_metadata_netmessages_2eproto[45]); } // =================================================================== @@ -18748,7 +19184,7 @@ void CSVCMsg_PacketEntities_non_transmitted_entities_t::InternalSwap(CSVCMsg_Pac ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_PacketEntities_non_transmitted_entities_t::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[45]); + file_level_metadata_netmessages_2eproto[46]); } // =================================================================== @@ -18998,7 +19434,7 @@ void CSVCMsg_PacketEntities_outofpvs_entity_updates_t::InternalSwap(CSVCMsg_Pack ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_PacketEntities_outofpvs_entity_updates_t::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[46]); + file_level_metadata_netmessages_2eproto[47]); } // =================================================================== @@ -19945,7 +20381,7 @@ void CSVCMsg_PacketEntities::InternalSwap(CSVCMsg_PacketEntities* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_PacketEntities::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[47]); + file_level_metadata_netmessages_2eproto[48]); } // =================================================================== @@ -20234,7 +20670,7 @@ void CSVCMsg_TempEntities::InternalSwap(CSVCMsg_TempEntities* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_TempEntities::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[48]); + file_level_metadata_netmessages_2eproto[49]); } // =================================================================== @@ -20760,7 +21196,7 @@ void CSVCMsg_CreateStringTable::InternalSwap(CSVCMsg_CreateStringTable* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_CreateStringTable::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[49]); + file_level_metadata_netmessages_2eproto[50]); } // =================================================================== @@ -21049,7 +21485,7 @@ void CSVCMsg_UpdateStringTable::InternalSwap(CSVCMsg_UpdateStringTable* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_UpdateStringTable::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[50]); + file_level_metadata_netmessages_2eproto[51]); } // =================================================================== @@ -21444,7 +21880,7 @@ void CSVCMsg_VoiceData::InternalSwap(CSVCMsg_VoiceData* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_VoiceData::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[51]); + file_level_metadata_netmessages_2eproto[52]); } // =================================================================== @@ -21709,7 +22145,7 @@ void CSVCMsg_PacketReliable::InternalSwap(CSVCMsg_PacketReliable* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_PacketReliable::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[52]); + file_level_metadata_netmessages_2eproto[53]); } // =================================================================== @@ -22026,7 +22462,7 @@ void CSVCMsg_FullFrameSplit::InternalSwap(CSVCMsg_FullFrameSplit* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_FullFrameSplit::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[53]); + file_level_metadata_netmessages_2eproto[54]); } // =================================================================== @@ -22350,7 +22786,7 @@ void CSVCMsg_HLTVStatus::InternalSwap(CSVCMsg_HLTVStatus* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_HLTVStatus::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[54]); + file_level_metadata_netmessages_2eproto[55]); } // =================================================================== @@ -22541,7 +22977,7 @@ void CSVCMsg_ServerSteamID::InternalSwap(CSVCMsg_ServerSteamID* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_ServerSteamID::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[55]); + file_level_metadata_netmessages_2eproto[56]); } // =================================================================== @@ -22754,7 +23190,7 @@ void CSVCMsg_CmdKeyValues::InternalSwap(CSVCMsg_CmdKeyValues* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_CmdKeyValues::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[56]); + file_level_metadata_netmessages_2eproto[57]); } // =================================================================== @@ -23031,7 +23467,7 @@ void CSVCMsg_RconServerDetails::InternalSwap(CSVCMsg_RconServerDetails* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_RconServerDetails::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[57]); + file_level_metadata_netmessages_2eproto[58]); } // =================================================================== @@ -23268,7 +23704,7 @@ void CMsgIPCAddress::InternalSwap(CMsgIPCAddress* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgIPCAddress::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[58]); + file_level_metadata_netmessages_2eproto[59]); } // =================================================================== @@ -23635,7 +24071,7 @@ void CMsgServerPeer::InternalSwap(CMsgServerPeer* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgServerPeer::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[59]); + file_level_metadata_netmessages_2eproto[60]); } // =================================================================== @@ -23820,7 +24256,7 @@ void CSVCMsg_PeerList::InternalSwap(CSVCMsg_PeerList* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_PeerList::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[60]); + file_level_metadata_netmessages_2eproto[61]); } // =================================================================== @@ -24077,7 +24513,7 @@ void CSVCMsg_ClearAllStringTables::InternalSwap(CSVCMsg_ClearAllStringTables* ot ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_ClearAllStringTables::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[61]); + file_level_metadata_netmessages_2eproto[62]); } // =================================================================== @@ -24314,7 +24750,7 @@ void ProtoFlattenedSerializerField_t_polymorphic_field_t::InternalSwap(ProtoFlat ::PROTOBUF_NAMESPACE_ID::Metadata ProtoFlattenedSerializerField_t_polymorphic_field_t::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[62]); + file_level_metadata_netmessages_2eproto[63]); } // =================================================================== @@ -24847,7 +25283,7 @@ void ProtoFlattenedSerializerField_t::InternalSwap(ProtoFlattenedSerializerField ::PROTOBUF_NAMESPACE_ID::Metadata ProtoFlattenedSerializerField_t::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[63]); + file_level_metadata_netmessages_2eproto[64]); } // =================================================================== @@ -25121,7 +25557,7 @@ void ProtoFlattenedSerializer_t::InternalSwap(ProtoFlattenedSerializer_t* other) ::PROTOBUF_NAMESPACE_ID::Metadata ProtoFlattenedSerializer_t::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[64]); + file_level_metadata_netmessages_2eproto[65]); } // =================================================================== @@ -25381,7 +25817,7 @@ void CSVCMsg_FlattenedSerializer::InternalSwap(CSVCMsg_FlattenedSerializer* othe ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_FlattenedSerializer::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[65]); + file_level_metadata_netmessages_2eproto[66]); } // =================================================================== @@ -25572,7 +26008,7 @@ void CSVCMsg_StopSound::InternalSwap(CSVCMsg_StopSound* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_StopSound::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[66]); + file_level_metadata_netmessages_2eproto[67]); } // =================================================================== @@ -25865,7 +26301,7 @@ void CBidirMsg_RebroadcastGameEvent::InternalSwap(CBidirMsg_RebroadcastGameEvent ::PROTOBUF_NAMESPACE_ID::Metadata CBidirMsg_RebroadcastGameEvent::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[67]); + file_level_metadata_netmessages_2eproto[68]); } // =================================================================== @@ -26056,7 +26492,7 @@ void CBidirMsg_RebroadcastSource::InternalSwap(CBidirMsg_RebroadcastSource* othe ::PROTOBUF_NAMESPACE_ID::Metadata CBidirMsg_RebroadcastSource::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[68]); + file_level_metadata_netmessages_2eproto[69]); } // =================================================================== @@ -26395,7 +26831,7 @@ void CBidirMsg_PredictionEvent::InternalSwap(CBidirMsg_PredictionEvent* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CBidirMsg_PredictionEvent::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[69]); + file_level_metadata_netmessages_2eproto[70]); } // =================================================================== @@ -26652,7 +27088,7 @@ void CMsgServerNetworkStats_Port::InternalSwap(CMsgServerNetworkStats_Port* othe ::PROTOBUF_NAMESPACE_ID::Metadata CMsgServerNetworkStats_Port::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[70]); + file_level_metadata_netmessages_2eproto[71]); } // =================================================================== @@ -27088,7 +27524,7 @@ void CMsgServerNetworkStats_Player::InternalSwap(CMsgServerNetworkStats_Player* ::PROTOBUF_NAMESPACE_ID::Metadata CMsgServerNetworkStats_Player::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[71]); + file_level_metadata_netmessages_2eproto[72]); } // =================================================================== @@ -28009,7 +28445,7 @@ void CMsgServerNetworkStats::InternalSwap(CMsgServerNetworkStats* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgServerNetworkStats::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[72]); + file_level_metadata_netmessages_2eproto[73]); } // =================================================================== @@ -28416,7 +28852,7 @@ void CSVCMsg_HltvReplay::InternalSwap(CSVCMsg_HltvReplay* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_HltvReplay::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[73]); + file_level_metadata_netmessages_2eproto[74]); } // =================================================================== @@ -28739,7 +29175,7 @@ void CCLCMsg_HltvReplay::InternalSwap(CCLCMsg_HltvReplay* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_HltvReplay::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[74]); + file_level_metadata_netmessages_2eproto[75]); } // =================================================================== @@ -28959,7 +29395,7 @@ void CSVCMsg_Broadcast_Command::InternalSwap(CSVCMsg_Broadcast_Command* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_Broadcast_Command::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[75]); + file_level_metadata_netmessages_2eproto[76]); } // =================================================================== @@ -29450,7 +29886,7 @@ void CCLCMsg_HltvFixupOperatorTick::InternalSwap(CCLCMsg_HltvFixupOperatorTick* ::PROTOBUF_NAMESPACE_ID::Metadata CCLCMsg_HltvFixupOperatorTick::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[76]); + file_level_metadata_netmessages_2eproto[77]); } // =================================================================== @@ -29707,7 +30143,7 @@ void CSVCMsg_HltvFixupOperatorStatus::InternalSwap(CSVCMsg_HltvFixupOperatorStat ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_HltvFixupOperatorStatus::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[77]); + file_level_metadata_netmessages_2eproto[78]); } // =================================================================== @@ -30054,7 +30490,7 @@ void CMsgServerUserCmd::InternalSwap(CMsgServerUserCmd* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CMsgServerUserCmd::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[78]); + file_level_metadata_netmessages_2eproto[79]); } // =================================================================== @@ -30239,7 +30675,7 @@ void CSVCMsg_UserCommands::InternalSwap(CSVCMsg_UserCommands* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CSVCMsg_UserCommands::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_netmessages_2eproto_getter, &descriptor_table_netmessages_2eproto_once, - file_level_metadata_netmessages_2eproto[79]); + file_level_metadata_netmessages_2eproto[80]); } // @@protoc_insertion_point(namespace_scope) @@ -30272,10 +30708,6 @@ template<> PROTOBUF_NOINLINE ::CCLCMsg_RespondCvarValue* Arena::CreateMaybeMessage< ::CCLCMsg_RespondCvarValue >(Arena* arena) { return Arena::CreateMessageInternal< ::CCLCMsg_RespondCvarValue >(arena); } -template<> PROTOBUF_NOINLINE ::CCLCMsg_FileCRCCheck* -Arena::CreateMaybeMessage< ::CCLCMsg_FileCRCCheck >(Arena* arena) { - return Arena::CreateMessageInternal< ::CCLCMsg_FileCRCCheck >(arena); -} template<> PROTOBUF_NOINLINE ::CCLCMsg_LoadingProgress* Arena::CreateMaybeMessage< ::CCLCMsg_LoadingProgress >(Arena* arena) { return Arena::CreateMessageInternal< ::CCLCMsg_LoadingProgress >(arena); @@ -30320,6 +30752,14 @@ template<> PROTOBUF_NOINLINE ::CMsgSource2NetworkFlowQuality* Arena::CreateMaybeMessage< ::CMsgSource2NetworkFlowQuality >(Arena* arena) { return Arena::CreateMessageInternal< ::CMsgSource2NetworkFlowQuality >(arena); } +template<> PROTOBUF_NOINLINE ::CMsgSource2PerfIntervalSample_Tag* +Arena::CreateMaybeMessage< ::CMsgSource2PerfIntervalSample_Tag >(Arena* arena) { + return Arena::CreateMessageInternal< ::CMsgSource2PerfIntervalSample_Tag >(arena); +} +template<> PROTOBUF_NOINLINE ::CMsgSource2PerfIntervalSample* +Arena::CreateMaybeMessage< ::CMsgSource2PerfIntervalSample >(Arena* arena) { + return Arena::CreateMessageInternal< ::CMsgSource2PerfIntervalSample >(arena); +} template<> PROTOBUF_NOINLINE ::CCLCMsg_Diagnostic* Arena::CreateMaybeMessage< ::CCLCMsg_Diagnostic >(Arena* arena) { return Arena::CreateMessageInternal< ::CCLCMsg_Diagnostic >(arena); diff --git a/protobuf/generated/netmessages.pb.h b/protobuf/generated/netmessages.pb.h index 43cf9c763..3f9ca9cd7 100644 --- a/protobuf/generated/netmessages.pb.h +++ b/protobuf/generated/netmessages.pb.h @@ -67,9 +67,6 @@ extern CCLCMsg_CmdKeyValuesDefaultTypeInternal _CCLCMsg_CmdKeyValues_default_ins class CCLCMsg_Diagnostic; struct CCLCMsg_DiagnosticDefaultTypeInternal; extern CCLCMsg_DiagnosticDefaultTypeInternal _CCLCMsg_Diagnostic_default_instance_; -class CCLCMsg_FileCRCCheck; -struct CCLCMsg_FileCRCCheckDefaultTypeInternal; -extern CCLCMsg_FileCRCCheckDefaultTypeInternal _CCLCMsg_FileCRCCheck_default_instance_; class CCLCMsg_HltvFixupOperatorTick; struct CCLCMsg_HltvFixupOperatorTickDefaultTypeInternal; extern CCLCMsg_HltvFixupOperatorTickDefaultTypeInternal _CCLCMsg_HltvFixupOperatorTick_default_instance_; @@ -127,6 +124,12 @@ extern CMsgServerUserCmdDefaultTypeInternal _CMsgServerUserCmd_default_instance_ class CMsgSource2NetworkFlowQuality; struct CMsgSource2NetworkFlowQualityDefaultTypeInternal; extern CMsgSource2NetworkFlowQualityDefaultTypeInternal _CMsgSource2NetworkFlowQuality_default_instance_; +class CMsgSource2PerfIntervalSample; +struct CMsgSource2PerfIntervalSampleDefaultTypeInternal; +extern CMsgSource2PerfIntervalSampleDefaultTypeInternal _CMsgSource2PerfIntervalSample_default_instance_; +class CMsgSource2PerfIntervalSample_Tag; +struct CMsgSource2PerfIntervalSample_TagDefaultTypeInternal; +extern CMsgSource2PerfIntervalSample_TagDefaultTypeInternal _CMsgSource2PerfIntervalSample_Tag_default_instance_; class CMsgSource2SystemSpecs; struct CMsgSource2SystemSpecsDefaultTypeInternal; extern CMsgSource2SystemSpecsDefaultTypeInternal _CMsgSource2SystemSpecs_default_instance_; @@ -294,7 +297,6 @@ template<> ::CCLCMsg_BaselineAck* Arena::CreateMaybeMessage<::CCLCMsg_BaselineAc template<> ::CCLCMsg_ClientInfo* Arena::CreateMaybeMessage<::CCLCMsg_ClientInfo>(Arena*); template<> ::CCLCMsg_CmdKeyValues* Arena::CreateMaybeMessage<::CCLCMsg_CmdKeyValues>(Arena*); template<> ::CCLCMsg_Diagnostic* Arena::CreateMaybeMessage<::CCLCMsg_Diagnostic>(Arena*); -template<> ::CCLCMsg_FileCRCCheck* Arena::CreateMaybeMessage<::CCLCMsg_FileCRCCheck>(Arena*); template<> ::CCLCMsg_HltvFixupOperatorTick* Arena::CreateMaybeMessage<::CCLCMsg_HltvFixupOperatorTick>(Arena*); template<> ::CCLCMsg_HltvReplay* Arena::CreateMaybeMessage<::CCLCMsg_HltvReplay>(Arena*); template<> ::CCLCMsg_ListenEvents* Arena::CreateMaybeMessage<::CCLCMsg_ListenEvents>(Arena*); @@ -314,6 +316,8 @@ template<> ::CMsgServerNetworkStats_Port* Arena::CreateMaybeMessage<::CMsgServer template<> ::CMsgServerPeer* Arena::CreateMaybeMessage<::CMsgServerPeer>(Arena*); template<> ::CMsgServerUserCmd* Arena::CreateMaybeMessage<::CMsgServerUserCmd>(Arena*); template<> ::CMsgSource2NetworkFlowQuality* Arena::CreateMaybeMessage<::CMsgSource2NetworkFlowQuality>(Arena*); +template<> ::CMsgSource2PerfIntervalSample* Arena::CreateMaybeMessage<::CMsgSource2PerfIntervalSample>(Arena*); +template<> ::CMsgSource2PerfIntervalSample_Tag* Arena::CreateMaybeMessage<::CMsgSource2PerfIntervalSample_Tag>(Arena*); template<> ::CMsgSource2SystemSpecs* Arena::CreateMaybeMessage<::CMsgSource2SystemSpecs>(Arena*); template<> ::CMsgSource2VProfLiteReport* Arena::CreateMaybeMessage<::CMsgSource2VProfLiteReport>(Arena*); template<> ::CMsgSource2VProfLiteReportItem* Arena::CreateMaybeMessage<::CMsgSource2VProfLiteReportItem>(Arena*); @@ -398,7 +402,6 @@ enum CLC_Messages : int { clc_VoiceData = 22, clc_BaselineAck = 23, clc_RespondCvarValue = 25, - clc_FileCRCCheck = 26, clc_LoadingProgress = 27, clc_SplitPlayerConnect = 28, clc_SplitPlayerDisconnect = 30, @@ -2174,236 +2177,6 @@ class CCLCMsg_RespondCvarValue : }; // ------------------------------------------------------------------- -class CCLCMsg_FileCRCCheck : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCLCMsg_FileCRCCheck) */ { - public: - inline CCLCMsg_FileCRCCheck() : CCLCMsg_FileCRCCheck(nullptr) {} - ~CCLCMsg_FileCRCCheck() override; - explicit PROTOBUF_CONSTEXPR CCLCMsg_FileCRCCheck(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - - CCLCMsg_FileCRCCheck(const CCLCMsg_FileCRCCheck& from); - CCLCMsg_FileCRCCheck(CCLCMsg_FileCRCCheck&& from) noexcept - : CCLCMsg_FileCRCCheck() { - *this = ::std::move(from); - } - - inline CCLCMsg_FileCRCCheck& operator=(const CCLCMsg_FileCRCCheck& from) { - CopyFrom(from); - return *this; - } - inline CCLCMsg_FileCRCCheck& operator=(CCLCMsg_FileCRCCheck&& from) noexcept { - if (this == &from) return *this; - if (GetOwningArena() == from.GetOwningArena() - #ifdef PROTOBUF_FORCE_COPY_IN_MOVE - && GetOwningArena() != nullptr - #endif // !PROTOBUF_FORCE_COPY_IN_MOVE - ) { - InternalSwap(&from); - } else { - CopyFrom(from); - } - return *this; - } - - inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { - return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); - } - inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { - return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); - } - - static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { - return GetDescriptor(); - } - static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { - return default_instance().GetMetadata().descriptor; - } - static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { - return default_instance().GetMetadata().reflection; - } - static const CCLCMsg_FileCRCCheck& default_instance() { - return *internal_default_instance(); - } - static inline const CCLCMsg_FileCRCCheck* internal_default_instance() { - return reinterpret_cast( - &_CCLCMsg_FileCRCCheck_default_instance_); - } - static constexpr int kIndexInFileMessages = - 7; - - friend void swap(CCLCMsg_FileCRCCheck& a, CCLCMsg_FileCRCCheck& b) { - a.Swap(&b); - } - inline void Swap(CCLCMsg_FileCRCCheck* other) { - if (other == this) return; - #ifdef PROTOBUF_FORCE_COPY_IN_SWAP - if (GetOwningArena() != nullptr && - GetOwningArena() == other->GetOwningArena()) { - #else // PROTOBUF_FORCE_COPY_IN_SWAP - if (GetOwningArena() == other->GetOwningArena()) { - #endif // !PROTOBUF_FORCE_COPY_IN_SWAP - InternalSwap(other); - } else { - ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); - } - } - void UnsafeArenaSwap(CCLCMsg_FileCRCCheck* other) { - if (other == this) return; - GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); - InternalSwap(other); - } - - // implements Message ---------------------------------------------- - - CCLCMsg_FileCRCCheck* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); - } - using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CCLCMsg_FileCRCCheck& from); - using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CCLCMsg_FileCRCCheck& from) { - CCLCMsg_FileCRCCheck::MergeImpl(*this, from); - } - private: - static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); - public: - PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; - bool IsInitialized() const final; - - size_t ByteSizeLong() const final; - const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; - uint8_t* _InternalSerialize( - uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; - int GetCachedSize() const final { return _impl_._cached_size_.Get(); } - - private: - void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); - void SharedDtor(); - void SetCachedSize(int size) const final; - void InternalSwap(CCLCMsg_FileCRCCheck* other); - - private: - friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; - static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CCLCMsg_FileCRCCheck"; - } - protected: - explicit CCLCMsg_FileCRCCheck(::PROTOBUF_NAMESPACE_ID::Arena* arena, - bool is_message_owned = false); - public: - - static const ClassData _class_data_; - const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; - - ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; - - // nested types ---------------------------------------------------- - - // accessors ------------------------------------------------------- - - enum : int { - kPathFieldNumber = 2, - kFilenameFieldNumber = 4, - kCodePathFieldNumber = 1, - kCodeFilenameFieldNumber = 3, - kCrcFieldNumber = 5, - }; - // optional string path = 2; - bool has_path() const; - private: - bool _internal_has_path() const; - public: - void clear_path(); - const std::string& path() const; - template - void set_path(ArgT0&& arg0, ArgT... args); - std::string* mutable_path(); - PROTOBUF_NODISCARD std::string* release_path(); - void set_allocated_path(std::string* path); - private: - const std::string& _internal_path() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_path(const std::string& value); - std::string* _internal_mutable_path(); - public: - - // optional string filename = 4; - bool has_filename() const; - private: - bool _internal_has_filename() const; - public: - void clear_filename(); - const std::string& filename() const; - template - void set_filename(ArgT0&& arg0, ArgT... args); - std::string* mutable_filename(); - PROTOBUF_NODISCARD std::string* release_filename(); - void set_allocated_filename(std::string* filename); - private: - const std::string& _internal_filename() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_filename(const std::string& value); - std::string* _internal_mutable_filename(); - public: - - // optional int32 code_path = 1; - bool has_code_path() const; - private: - bool _internal_has_code_path() const; - public: - void clear_code_path(); - int32_t code_path() const; - void set_code_path(int32_t value); - private: - int32_t _internal_code_path() const; - void _internal_set_code_path(int32_t value); - public: - - // optional int32 code_filename = 3; - bool has_code_filename() const; - private: - bool _internal_has_code_filename() const; - public: - void clear_code_filename(); - int32_t code_filename() const; - void set_code_filename(int32_t value); - private: - int32_t _internal_code_filename() const; - void _internal_set_code_filename(int32_t value); - public: - - // optional fixed32 crc = 5; - bool has_crc() const; - private: - bool _internal_has_crc() const; - public: - void clear_crc(); - uint32_t crc() const; - void set_crc(uint32_t value); - private: - uint32_t _internal_crc() const; - void _internal_set_crc(uint32_t value); - public: - - // @@protoc_insertion_point(class_scope:CCLCMsg_FileCRCCheck) - private: - class _Internal; - - template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; - typedef void InternalArenaConstructable_; - typedef void DestructorSkippable_; - struct Impl_ { - ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; - mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr path_; - ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr filename_; - int32_t code_path_; - int32_t code_filename_; - uint32_t crc_; - }; - union { Impl_ _impl_; }; - friend struct ::TableStruct_netmessages_2eproto; -}; -// ------------------------------------------------------------------- - class CCLCMsg_LoadingProgress : public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCLCMsg_LoadingProgress) */ { public: @@ -2459,7 +2232,7 @@ class CCLCMsg_LoadingProgress : &_CCLCMsg_LoadingProgress_default_instance_); } static constexpr int kIndexInFileMessages = - 8; + 7; friend void swap(CCLCMsg_LoadingProgress& a, CCLCMsg_LoadingProgress& b) { a.Swap(&b); @@ -2619,7 +2392,7 @@ class CCLCMsg_SplitPlayerConnect : &_CCLCMsg_SplitPlayerConnect_default_instance_); } static constexpr int kIndexInFileMessages = - 9; + 8; friend void swap(CCLCMsg_SplitPlayerConnect& a, CCLCMsg_SplitPlayerConnect& b) { a.Swap(&b); @@ -2784,7 +2557,7 @@ class CCLCMsg_SplitPlayerDisconnect : &_CCLCMsg_SplitPlayerDisconnect_default_instance_); } static constexpr int kIndexInFileMessages = - 10; + 9; friend void swap(CCLCMsg_SplitPlayerDisconnect& a, CCLCMsg_SplitPlayerDisconnect& b) { a.Swap(&b); @@ -2944,7 +2717,7 @@ class CCLCMsg_ServerStatus : &_CCLCMsg_ServerStatus_default_instance_); } static constexpr int kIndexInFileMessages = - 11; + 10; friend void swap(CCLCMsg_ServerStatus& a, CCLCMsg_ServerStatus& b) { a.Swap(&b); @@ -3104,7 +2877,7 @@ class CCLCMsg_RequestPause : &_CCLCMsg_RequestPause_default_instance_); } static constexpr int kIndexInFileMessages = - 12; + 11; friend void swap(CCLCMsg_RequestPause& a, CCLCMsg_RequestPause& b) { a.Swap(&b); @@ -3279,7 +3052,7 @@ class CCLCMsg_CmdKeyValues : &_CCLCMsg_CmdKeyValues_default_instance_); } static constexpr int kIndexInFileMessages = - 13; + 12; friend void swap(CCLCMsg_CmdKeyValues& a, CCLCMsg_CmdKeyValues& b) { a.Swap(&b); @@ -3444,7 +3217,7 @@ class CCLCMsg_RconServerDetails : &_CCLCMsg_RconServerDetails_default_instance_); } static constexpr int kIndexInFileMessages = - 14; + 13; friend void swap(CCLCMsg_RconServerDetails& a, CCLCMsg_RconServerDetails& b) { a.Swap(&b); @@ -3609,7 +3382,7 @@ class CMsgSource2SystemSpecs : &_CMsgSource2SystemSpecs_default_instance_); } static constexpr int kIndexInFileMessages = - 15; + 14; friend void swap(CMsgSource2SystemSpecs& a, CMsgSource2SystemSpecs& b) { a.Swap(&b); @@ -3694,6 +3467,8 @@ class CMsgSource2SystemSpecs : kGpuDriverVersionLowFieldNumber = 45, kGpuDxSupportLevelFieldNumber = 46, kGpuTextureMemorySizeMbFieldNumber = 47, + kBackbufferWidthFieldNumber = 51, + kBackbufferHeightFieldNumber = 52, }; // optional string cpu_id = 1; bool has_cpu_id() const; @@ -3871,6 +3646,32 @@ class CMsgSource2SystemSpecs : void _internal_set_gpu_texture_memory_size_mb(uint32_t value); public: + // optional uint32 backbuffer_width = 51; + bool has_backbuffer_width() const; + private: + bool _internal_has_backbuffer_width() const; + public: + void clear_backbuffer_width(); + uint32_t backbuffer_width() const; + void set_backbuffer_width(uint32_t value); + private: + uint32_t _internal_backbuffer_width() const; + void _internal_set_backbuffer_width(uint32_t value); + public: + + // optional uint32 backbuffer_height = 52; + bool has_backbuffer_height() const; + private: + bool _internal_has_backbuffer_height() const; + public: + void clear_backbuffer_height(); + uint32_t backbuffer_height() const; + void set_backbuffer_height(uint32_t value); + private: + uint32_t _internal_backbuffer_height() const; + void _internal_set_backbuffer_height(uint32_t value); + public: + // @@protoc_insertion_point(class_scope:CMsgSource2SystemSpecs) private: class _Internal; @@ -3893,6 +3694,8 @@ class CMsgSource2SystemSpecs : uint32_t gpu_driver_version_low_; uint32_t gpu_dx_support_level_; uint32_t gpu_texture_memory_size_mb_; + uint32_t backbuffer_width_; + uint32_t backbuffer_height_; }; union { Impl_ _impl_; }; friend struct ::TableStruct_netmessages_2eproto; @@ -3954,7 +3757,7 @@ class CMsgSource2VProfLiteReportItem : &_CMsgSource2VProfLiteReportItem_default_instance_); } static constexpr int kIndexInFileMessages = - 16; + 15; friend void swap(CMsgSource2VProfLiteReportItem& a, CMsgSource2VProfLiteReportItem& b) { a.Swap(&b); @@ -4374,7 +4177,7 @@ class CMsgSource2VProfLiteReport : &_CMsgSource2VProfLiteReport_default_instance_); } static constexpr int kIndexInFileMessages = - 17; + 16; friend void swap(CMsgSource2VProfLiteReport& a, CMsgSource2VProfLiteReport& b) { a.Swap(&b); @@ -4574,7 +4377,7 @@ class CMsgSource2NetworkFlowQuality : &_CMsgSource2NetworkFlowQuality_default_instance_); } static constexpr int kIndexInFileMessages = - 18; + 17; friend void swap(CMsgSource2NetworkFlowQuality& a, CMsgSource2NetworkFlowQuality& b) { a.Swap(&b); @@ -5099,24 +4902,24 @@ class CMsgSource2NetworkFlowQuality : }; // ------------------------------------------------------------------- -class CCLCMsg_Diagnostic : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCLCMsg_Diagnostic) */ { +class CMsgSource2PerfIntervalSample_Tag : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgSource2PerfIntervalSample.Tag) */ { public: - inline CCLCMsg_Diagnostic() : CCLCMsg_Diagnostic(nullptr) {} - ~CCLCMsg_Diagnostic() override; - explicit PROTOBUF_CONSTEXPR CCLCMsg_Diagnostic(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgSource2PerfIntervalSample_Tag() : CMsgSource2PerfIntervalSample_Tag(nullptr) {} + ~CMsgSource2PerfIntervalSample_Tag() override; + explicit PROTOBUF_CONSTEXPR CMsgSource2PerfIntervalSample_Tag(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CCLCMsg_Diagnostic(const CCLCMsg_Diagnostic& from); - CCLCMsg_Diagnostic(CCLCMsg_Diagnostic&& from) noexcept - : CCLCMsg_Diagnostic() { + CMsgSource2PerfIntervalSample_Tag(const CMsgSource2PerfIntervalSample_Tag& from); + CMsgSource2PerfIntervalSample_Tag(CMsgSource2PerfIntervalSample_Tag&& from) noexcept + : CMsgSource2PerfIntervalSample_Tag() { *this = ::std::move(from); } - inline CCLCMsg_Diagnostic& operator=(const CCLCMsg_Diagnostic& from) { + inline CMsgSource2PerfIntervalSample_Tag& operator=(const CMsgSource2PerfIntervalSample_Tag& from) { CopyFrom(from); return *this; } - inline CCLCMsg_Diagnostic& operator=(CCLCMsg_Diagnostic&& from) noexcept { + inline CMsgSource2PerfIntervalSample_Tag& operator=(CMsgSource2PerfIntervalSample_Tag&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -5146,20 +4949,20 @@ class CCLCMsg_Diagnostic : static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const CCLCMsg_Diagnostic& default_instance() { + static const CMsgSource2PerfIntervalSample_Tag& default_instance() { return *internal_default_instance(); } - static inline const CCLCMsg_Diagnostic* internal_default_instance() { - return reinterpret_cast( - &_CCLCMsg_Diagnostic_default_instance_); + static inline const CMsgSource2PerfIntervalSample_Tag* internal_default_instance() { + return reinterpret_cast( + &_CMsgSource2PerfIntervalSample_Tag_default_instance_); } static constexpr int kIndexInFileMessages = - 19; + 18; - friend void swap(CCLCMsg_Diagnostic& a, CCLCMsg_Diagnostic& b) { + friend void swap(CMsgSource2PerfIntervalSample_Tag& a, CMsgSource2PerfIntervalSample_Tag& b) { a.Swap(&b); } - inline void Swap(CCLCMsg_Diagnostic* other) { + inline void Swap(CMsgSource2PerfIntervalSample_Tag* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetOwningArena() != nullptr && @@ -5172,7 +4975,7 @@ class CCLCMsg_Diagnostic : ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(CCLCMsg_Diagnostic* other) { + void UnsafeArenaSwap(CMsgSource2PerfIntervalSample_Tag* other) { if (other == this) return; GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); InternalSwap(other); @@ -5180,14 +4983,14 @@ class CCLCMsg_Diagnostic : // implements Message ---------------------------------------------- - CCLCMsg_Diagnostic* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { - return CreateMaybeMessage(arena); + CMsgSource2PerfIntervalSample_Tag* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); } using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; - void CopyFrom(const CCLCMsg_Diagnostic& from); + void CopyFrom(const CMsgSource2PerfIntervalSample_Tag& from); using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; - void MergeFrom( const CCLCMsg_Diagnostic& from) { - CCLCMsg_Diagnostic::MergeImpl(*this, from); + void MergeFrom( const CMsgSource2PerfIntervalSample_Tag& from) { + CMsgSource2PerfIntervalSample_Tag::MergeImpl(*this, from); } private: static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); @@ -5205,15 +5008,15 @@ class CCLCMsg_Diagnostic : void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); void SharedDtor(); void SetCachedSize(int size) const final; - void InternalSwap(CCLCMsg_Diagnostic* other); + void InternalSwap(CMsgSource2PerfIntervalSample_Tag* other); private: friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { - return "CCLCMsg_Diagnostic"; + return "CMsgSource2PerfIntervalSample.Tag"; } protected: - explicit CCLCMsg_Diagnostic(::PROTOBUF_NAMESPACE_ID::Arena* arena, + explicit CMsgSource2PerfIntervalSample_Tag(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false); public: @@ -5227,84 +5030,41 @@ class CCLCMsg_Diagnostic : // accessors ------------------------------------------------------- enum : int { - kSystemSpecsFieldNumber = 1, - kVprofReportFieldNumber = 2, - kDownstreamFlowFieldNumber = 3, - kUpstreamFlowFieldNumber = 4, + kTagFieldNumber = 1, + kMaxValueFieldNumber = 2, }; - // optional .CMsgSource2SystemSpecs system_specs = 1; - bool has_system_specs() const; + // optional string tag = 1; + bool has_tag() const; private: - bool _internal_has_system_specs() const; + bool _internal_has_tag() const; public: - void clear_system_specs(); - const ::CMsgSource2SystemSpecs& system_specs() const; - PROTOBUF_NODISCARD ::CMsgSource2SystemSpecs* release_system_specs(); - ::CMsgSource2SystemSpecs* mutable_system_specs(); - void set_allocated_system_specs(::CMsgSource2SystemSpecs* system_specs); - private: - const ::CMsgSource2SystemSpecs& _internal_system_specs() const; - ::CMsgSource2SystemSpecs* _internal_mutable_system_specs(); - public: - void unsafe_arena_set_allocated_system_specs( - ::CMsgSource2SystemSpecs* system_specs); - ::CMsgSource2SystemSpecs* unsafe_arena_release_system_specs(); - - // optional .CMsgSource2VProfLiteReport vprof_report = 2; - bool has_vprof_report() const; - private: - bool _internal_has_vprof_report() const; - public: - void clear_vprof_report(); - const ::CMsgSource2VProfLiteReport& vprof_report() const; - PROTOBUF_NODISCARD ::CMsgSource2VProfLiteReport* release_vprof_report(); - ::CMsgSource2VProfLiteReport* mutable_vprof_report(); - void set_allocated_vprof_report(::CMsgSource2VProfLiteReport* vprof_report); - private: - const ::CMsgSource2VProfLiteReport& _internal_vprof_report() const; - ::CMsgSource2VProfLiteReport* _internal_mutable_vprof_report(); - public: - void unsafe_arena_set_allocated_vprof_report( - ::CMsgSource2VProfLiteReport* vprof_report); - ::CMsgSource2VProfLiteReport* unsafe_arena_release_vprof_report(); - - // optional .CMsgSource2NetworkFlowQuality downstream_flow = 3; - bool has_downstream_flow() const; - private: - bool _internal_has_downstream_flow() const; - public: - void clear_downstream_flow(); - const ::CMsgSource2NetworkFlowQuality& downstream_flow() const; - PROTOBUF_NODISCARD ::CMsgSource2NetworkFlowQuality* release_downstream_flow(); - ::CMsgSource2NetworkFlowQuality* mutable_downstream_flow(); - void set_allocated_downstream_flow(::CMsgSource2NetworkFlowQuality* downstream_flow); + void clear_tag(); + const std::string& tag() const; + template + void set_tag(ArgT0&& arg0, ArgT... args); + std::string* mutable_tag(); + PROTOBUF_NODISCARD std::string* release_tag(); + void set_allocated_tag(std::string* tag); private: - const ::CMsgSource2NetworkFlowQuality& _internal_downstream_flow() const; - ::CMsgSource2NetworkFlowQuality* _internal_mutable_downstream_flow(); + const std::string& _internal_tag() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_tag(const std::string& value); + std::string* _internal_mutable_tag(); public: - void unsafe_arena_set_allocated_downstream_flow( - ::CMsgSource2NetworkFlowQuality* downstream_flow); - ::CMsgSource2NetworkFlowQuality* unsafe_arena_release_downstream_flow(); - // optional .CMsgSource2NetworkFlowQuality upstream_flow = 4; - bool has_upstream_flow() const; + // optional uint32 max_value = 2; + bool has_max_value() const; private: - bool _internal_has_upstream_flow() const; + bool _internal_has_max_value() const; public: - void clear_upstream_flow(); - const ::CMsgSource2NetworkFlowQuality& upstream_flow() const; - PROTOBUF_NODISCARD ::CMsgSource2NetworkFlowQuality* release_upstream_flow(); - ::CMsgSource2NetworkFlowQuality* mutable_upstream_flow(); - void set_allocated_upstream_flow(::CMsgSource2NetworkFlowQuality* upstream_flow); + void clear_max_value(); + uint32_t max_value() const; + void set_max_value(uint32_t value); private: - const ::CMsgSource2NetworkFlowQuality& _internal_upstream_flow() const; - ::CMsgSource2NetworkFlowQuality* _internal_mutable_upstream_flow(); + uint32_t _internal_max_value() const; + void _internal_set_max_value(uint32_t value); public: - void unsafe_arena_set_allocated_upstream_flow( - ::CMsgSource2NetworkFlowQuality* upstream_flow); - ::CMsgSource2NetworkFlowQuality* unsafe_arena_release_upstream_flow(); - // @@protoc_insertion_point(class_scope:CCLCMsg_Diagnostic) + // @@protoc_insertion_point(class_scope:CMsgSource2PerfIntervalSample.Tag) private: class _Internal; @@ -5314,34 +5074,519 @@ class CCLCMsg_Diagnostic : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; - ::CMsgSource2SystemSpecs* system_specs_; - ::CMsgSource2VProfLiteReport* vprof_report_; - ::CMsgSource2NetworkFlowQuality* downstream_flow_; - ::CMsgSource2NetworkFlowQuality* upstream_flow_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr tag_; + uint32_t max_value_; }; union { Impl_ _impl_; }; friend struct ::TableStruct_netmessages_2eproto; }; // ------------------------------------------------------------------- -class CSource2Metrics_MatchPerfSummary_Notification_Client : - public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSource2Metrics_MatchPerfSummary_Notification.Client) */ { +class CMsgSource2PerfIntervalSample : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CMsgSource2PerfIntervalSample) */ { public: - inline CSource2Metrics_MatchPerfSummary_Notification_Client() : CSource2Metrics_MatchPerfSummary_Notification_Client(nullptr) {} - ~CSource2Metrics_MatchPerfSummary_Notification_Client() override; - explicit PROTOBUF_CONSTEXPR CSource2Metrics_MatchPerfSummary_Notification_Client(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + inline CMsgSource2PerfIntervalSample() : CMsgSource2PerfIntervalSample(nullptr) {} + ~CMsgSource2PerfIntervalSample() override; + explicit PROTOBUF_CONSTEXPR CMsgSource2PerfIntervalSample(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); - CSource2Metrics_MatchPerfSummary_Notification_Client(const CSource2Metrics_MatchPerfSummary_Notification_Client& from); - CSource2Metrics_MatchPerfSummary_Notification_Client(CSource2Metrics_MatchPerfSummary_Notification_Client&& from) noexcept - : CSource2Metrics_MatchPerfSummary_Notification_Client() { + CMsgSource2PerfIntervalSample(const CMsgSource2PerfIntervalSample& from); + CMsgSource2PerfIntervalSample(CMsgSource2PerfIntervalSample&& from) noexcept + : CMsgSource2PerfIntervalSample() { *this = ::std::move(from); } - inline CSource2Metrics_MatchPerfSummary_Notification_Client& operator=(const CSource2Metrics_MatchPerfSummary_Notification_Client& from) { + inline CMsgSource2PerfIntervalSample& operator=(const CMsgSource2PerfIntervalSample& from) { CopyFrom(from); return *this; } - inline CSource2Metrics_MatchPerfSummary_Notification_Client& operator=(CSource2Metrics_MatchPerfSummary_Notification_Client&& from) noexcept { + inline CMsgSource2PerfIntervalSample& operator=(CMsgSource2PerfIntervalSample&& from) noexcept { + if (this == &from) return *this; + if (GetOwningArena() == from.GetOwningArena() + #ifdef PROTOBUF_FORCE_COPY_IN_MOVE + && GetOwningArena() != nullptr + #endif // !PROTOBUF_FORCE_COPY_IN_MOVE + ) { + InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + + inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { + return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); + } + inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { + return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); + } + + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { + return GetDescriptor(); + } + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { + return default_instance().GetMetadata().descriptor; + } + static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { + return default_instance().GetMetadata().reflection; + } + static const CMsgSource2PerfIntervalSample& default_instance() { + return *internal_default_instance(); + } + static inline const CMsgSource2PerfIntervalSample* internal_default_instance() { + return reinterpret_cast( + &_CMsgSource2PerfIntervalSample_default_instance_); + } + static constexpr int kIndexInFileMessages = + 19; + + friend void swap(CMsgSource2PerfIntervalSample& a, CMsgSource2PerfIntervalSample& b) { + a.Swap(&b); + } + inline void Swap(CMsgSource2PerfIntervalSample* other) { + if (other == this) return; + #ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() != nullptr && + GetOwningArena() == other->GetOwningArena()) { + #else // PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() == other->GetOwningArena()) { + #endif // !PROTOBUF_FORCE_COPY_IN_SWAP + InternalSwap(other); + } else { + ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); + } + } + void UnsafeArenaSwap(CMsgSource2PerfIntervalSample* other) { + if (other == this) return; + GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + CMsgSource2PerfIntervalSample* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); + } + using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; + void CopyFrom(const CMsgSource2PerfIntervalSample& from); + using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; + void MergeFrom( const CMsgSource2PerfIntervalSample& from) { + CMsgSource2PerfIntervalSample::MergeImpl(*this, from); + } + private: + static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); + public: + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; + uint8_t* _InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const final { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(CMsgSource2PerfIntervalSample* other); + + private: + friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; + static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { + return "CMsgSource2PerfIntervalSample"; + } + protected: + explicit CMsgSource2PerfIntervalSample(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned = false); + public: + + static const ClassData _class_data_; + const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; + + ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + typedef CMsgSource2PerfIntervalSample_Tag Tag; + + // accessors ------------------------------------------------------- + + enum : int { + kTagsFieldNumber = 6, + kFrameTimeMaxMsFieldNumber = 1, + kFrameTimeAvgMsFieldNumber = 2, + kFrameTimeMinMsFieldNumber = 3, + kFrameCountFieldNumber = 4, + kFrameTimeTotalMsFieldNumber = 5, + }; + // repeated .CMsgSource2PerfIntervalSample.Tag tags = 6; + int tags_size() const; + private: + int _internal_tags_size() const; + public: + void clear_tags(); + ::CMsgSource2PerfIntervalSample_Tag* mutable_tags(int index); + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample_Tag >* + mutable_tags(); + private: + const ::CMsgSource2PerfIntervalSample_Tag& _internal_tags(int index) const; + ::CMsgSource2PerfIntervalSample_Tag* _internal_add_tags(); + public: + const ::CMsgSource2PerfIntervalSample_Tag& tags(int index) const; + ::CMsgSource2PerfIntervalSample_Tag* add_tags(); + const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample_Tag >& + tags() const; + + // optional float frame_time_max_ms = 1; + bool has_frame_time_max_ms() const; + private: + bool _internal_has_frame_time_max_ms() const; + public: + void clear_frame_time_max_ms(); + float frame_time_max_ms() const; + void set_frame_time_max_ms(float value); + private: + float _internal_frame_time_max_ms() const; + void _internal_set_frame_time_max_ms(float value); + public: + + // optional float frame_time_avg_ms = 2; + bool has_frame_time_avg_ms() const; + private: + bool _internal_has_frame_time_avg_ms() const; + public: + void clear_frame_time_avg_ms(); + float frame_time_avg_ms() const; + void set_frame_time_avg_ms(float value); + private: + float _internal_frame_time_avg_ms() const; + void _internal_set_frame_time_avg_ms(float value); + public: + + // optional float frame_time_min_ms = 3; + bool has_frame_time_min_ms() const; + private: + bool _internal_has_frame_time_min_ms() const; + public: + void clear_frame_time_min_ms(); + float frame_time_min_ms() const; + void set_frame_time_min_ms(float value); + private: + float _internal_frame_time_min_ms() const; + void _internal_set_frame_time_min_ms(float value); + public: + + // optional int32 frame_count = 4; + bool has_frame_count() const; + private: + bool _internal_has_frame_count() const; + public: + void clear_frame_count(); + int32_t frame_count() const; + void set_frame_count(int32_t value); + private: + int32_t _internal_frame_count() const; + void _internal_set_frame_count(int32_t value); + public: + + // optional float frame_time_total_ms = 5; + bool has_frame_time_total_ms() const; + private: + bool _internal_has_frame_time_total_ms() const; + public: + void clear_frame_time_total_ms(); + float frame_time_total_ms() const; + void set_frame_time_total_ms(float value); + private: + float _internal_frame_time_total_ms() const; + void _internal_set_frame_time_total_ms(float value); + public: + + // @@protoc_insertion_point(class_scope:CMsgSource2PerfIntervalSample) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; + struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample_Tag > tags_; + float frame_time_max_ms_; + float frame_time_avg_ms_; + float frame_time_min_ms_; + int32_t frame_count_; + float frame_time_total_ms_; + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_netmessages_2eproto; +}; +// ------------------------------------------------------------------- + +class CCLCMsg_Diagnostic : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CCLCMsg_Diagnostic) */ { + public: + inline CCLCMsg_Diagnostic() : CCLCMsg_Diagnostic(nullptr) {} + ~CCLCMsg_Diagnostic() override; + explicit PROTOBUF_CONSTEXPR CCLCMsg_Diagnostic(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + + CCLCMsg_Diagnostic(const CCLCMsg_Diagnostic& from); + CCLCMsg_Diagnostic(CCLCMsg_Diagnostic&& from) noexcept + : CCLCMsg_Diagnostic() { + *this = ::std::move(from); + } + + inline CCLCMsg_Diagnostic& operator=(const CCLCMsg_Diagnostic& from) { + CopyFrom(from); + return *this; + } + inline CCLCMsg_Diagnostic& operator=(CCLCMsg_Diagnostic&& from) noexcept { + if (this == &from) return *this; + if (GetOwningArena() == from.GetOwningArena() + #ifdef PROTOBUF_FORCE_COPY_IN_MOVE + && GetOwningArena() != nullptr + #endif // !PROTOBUF_FORCE_COPY_IN_MOVE + ) { + InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + + inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { + return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); + } + inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { + return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); + } + + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { + return GetDescriptor(); + } + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { + return default_instance().GetMetadata().descriptor; + } + static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { + return default_instance().GetMetadata().reflection; + } + static const CCLCMsg_Diagnostic& default_instance() { + return *internal_default_instance(); + } + static inline const CCLCMsg_Diagnostic* internal_default_instance() { + return reinterpret_cast( + &_CCLCMsg_Diagnostic_default_instance_); + } + static constexpr int kIndexInFileMessages = + 20; + + friend void swap(CCLCMsg_Diagnostic& a, CCLCMsg_Diagnostic& b) { + a.Swap(&b); + } + inline void Swap(CCLCMsg_Diagnostic* other) { + if (other == this) return; + #ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() != nullptr && + GetOwningArena() == other->GetOwningArena()) { + #else // PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() == other->GetOwningArena()) { + #endif // !PROTOBUF_FORCE_COPY_IN_SWAP + InternalSwap(other); + } else { + ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); + } + } + void UnsafeArenaSwap(CCLCMsg_Diagnostic* other) { + if (other == this) return; + GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + CCLCMsg_Diagnostic* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); + } + using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom; + void CopyFrom(const CCLCMsg_Diagnostic& from); + using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom; + void MergeFrom( const CCLCMsg_Diagnostic& from) { + CCLCMsg_Diagnostic::MergeImpl(*this, from); + } + private: + static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg); + public: + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; + uint8_t* _InternalSerialize( + uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const final { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(CCLCMsg_Diagnostic* other); + + private: + friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; + static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { + return "CCLCMsg_Diagnostic"; + } + protected: + explicit CCLCMsg_Diagnostic(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned = false); + public: + + static const ClassData _class_data_; + const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; + + ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + enum : int { + kPerfSamplesFieldNumber = 5, + kSystemSpecsFieldNumber = 1, + kVprofReportFieldNumber = 2, + kDownstreamFlowFieldNumber = 3, + kUpstreamFlowFieldNumber = 4, + }; + // repeated .CMsgSource2PerfIntervalSample perf_samples = 5; + int perf_samples_size() const; + private: + int _internal_perf_samples_size() const; + public: + void clear_perf_samples(); + ::CMsgSource2PerfIntervalSample* mutable_perf_samples(int index); + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample >* + mutable_perf_samples(); + private: + const ::CMsgSource2PerfIntervalSample& _internal_perf_samples(int index) const; + ::CMsgSource2PerfIntervalSample* _internal_add_perf_samples(); + public: + const ::CMsgSource2PerfIntervalSample& perf_samples(int index) const; + ::CMsgSource2PerfIntervalSample* add_perf_samples(); + const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample >& + perf_samples() const; + + // optional .CMsgSource2SystemSpecs system_specs = 1; + bool has_system_specs() const; + private: + bool _internal_has_system_specs() const; + public: + void clear_system_specs(); + const ::CMsgSource2SystemSpecs& system_specs() const; + PROTOBUF_NODISCARD ::CMsgSource2SystemSpecs* release_system_specs(); + ::CMsgSource2SystemSpecs* mutable_system_specs(); + void set_allocated_system_specs(::CMsgSource2SystemSpecs* system_specs); + private: + const ::CMsgSource2SystemSpecs& _internal_system_specs() const; + ::CMsgSource2SystemSpecs* _internal_mutable_system_specs(); + public: + void unsafe_arena_set_allocated_system_specs( + ::CMsgSource2SystemSpecs* system_specs); + ::CMsgSource2SystemSpecs* unsafe_arena_release_system_specs(); + + // optional .CMsgSource2VProfLiteReport vprof_report = 2; + bool has_vprof_report() const; + private: + bool _internal_has_vprof_report() const; + public: + void clear_vprof_report(); + const ::CMsgSource2VProfLiteReport& vprof_report() const; + PROTOBUF_NODISCARD ::CMsgSource2VProfLiteReport* release_vprof_report(); + ::CMsgSource2VProfLiteReport* mutable_vprof_report(); + void set_allocated_vprof_report(::CMsgSource2VProfLiteReport* vprof_report); + private: + const ::CMsgSource2VProfLiteReport& _internal_vprof_report() const; + ::CMsgSource2VProfLiteReport* _internal_mutable_vprof_report(); + public: + void unsafe_arena_set_allocated_vprof_report( + ::CMsgSource2VProfLiteReport* vprof_report); + ::CMsgSource2VProfLiteReport* unsafe_arena_release_vprof_report(); + + // optional .CMsgSource2NetworkFlowQuality downstream_flow = 3; + bool has_downstream_flow() const; + private: + bool _internal_has_downstream_flow() const; + public: + void clear_downstream_flow(); + const ::CMsgSource2NetworkFlowQuality& downstream_flow() const; + PROTOBUF_NODISCARD ::CMsgSource2NetworkFlowQuality* release_downstream_flow(); + ::CMsgSource2NetworkFlowQuality* mutable_downstream_flow(); + void set_allocated_downstream_flow(::CMsgSource2NetworkFlowQuality* downstream_flow); + private: + const ::CMsgSource2NetworkFlowQuality& _internal_downstream_flow() const; + ::CMsgSource2NetworkFlowQuality* _internal_mutable_downstream_flow(); + public: + void unsafe_arena_set_allocated_downstream_flow( + ::CMsgSource2NetworkFlowQuality* downstream_flow); + ::CMsgSource2NetworkFlowQuality* unsafe_arena_release_downstream_flow(); + + // optional .CMsgSource2NetworkFlowQuality upstream_flow = 4; + bool has_upstream_flow() const; + private: + bool _internal_has_upstream_flow() const; + public: + void clear_upstream_flow(); + const ::CMsgSource2NetworkFlowQuality& upstream_flow() const; + PROTOBUF_NODISCARD ::CMsgSource2NetworkFlowQuality* release_upstream_flow(); + ::CMsgSource2NetworkFlowQuality* mutable_upstream_flow(); + void set_allocated_upstream_flow(::CMsgSource2NetworkFlowQuality* upstream_flow); + private: + const ::CMsgSource2NetworkFlowQuality& _internal_upstream_flow() const; + ::CMsgSource2NetworkFlowQuality* _internal_mutable_upstream_flow(); + public: + void unsafe_arena_set_allocated_upstream_flow( + ::CMsgSource2NetworkFlowQuality* upstream_flow); + ::CMsgSource2NetworkFlowQuality* unsafe_arena_release_upstream_flow(); + + // @@protoc_insertion_point(class_scope:CCLCMsg_Diagnostic) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; + struct Impl_ { + ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; + mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample > perf_samples_; + ::CMsgSource2SystemSpecs* system_specs_; + ::CMsgSource2VProfLiteReport* vprof_report_; + ::CMsgSource2NetworkFlowQuality* downstream_flow_; + ::CMsgSource2NetworkFlowQuality* upstream_flow_; + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_netmessages_2eproto; +}; +// ------------------------------------------------------------------- + +class CSource2Metrics_MatchPerfSummary_Notification_Client : + public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CSource2Metrics_MatchPerfSummary_Notification.Client) */ { + public: + inline CSource2Metrics_MatchPerfSummary_Notification_Client() : CSource2Metrics_MatchPerfSummary_Notification_Client(nullptr) {} + ~CSource2Metrics_MatchPerfSummary_Notification_Client() override; + explicit PROTOBUF_CONSTEXPR CSource2Metrics_MatchPerfSummary_Notification_Client(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + + CSource2Metrics_MatchPerfSummary_Notification_Client(const CSource2Metrics_MatchPerfSummary_Notification_Client& from); + CSource2Metrics_MatchPerfSummary_Notification_Client(CSource2Metrics_MatchPerfSummary_Notification_Client&& from) noexcept + : CSource2Metrics_MatchPerfSummary_Notification_Client() { + *this = ::std::move(from); + } + + inline CSource2Metrics_MatchPerfSummary_Notification_Client& operator=(const CSource2Metrics_MatchPerfSummary_Notification_Client& from) { + CopyFrom(from); + return *this; + } + inline CSource2Metrics_MatchPerfSummary_Notification_Client& operator=(CSource2Metrics_MatchPerfSummary_Notification_Client&& from) noexcept { if (this == &from) return *this; if (GetOwningArena() == from.GetOwningArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -5379,7 +5624,7 @@ class CSource2Metrics_MatchPerfSummary_Notification_Client : &_CSource2Metrics_MatchPerfSummary_Notification_Client_default_instance_); } static constexpr int kIndexInFileMessages = - 20; + 21; friend void swap(CSource2Metrics_MatchPerfSummary_Notification_Client& a, CSource2Metrics_MatchPerfSummary_Notification_Client& b) { a.Swap(&b); @@ -5452,6 +5697,7 @@ class CSource2Metrics_MatchPerfSummary_Notification_Client : // accessors ------------------------------------------------------- enum : int { + kPerfSamplesFieldNumber = 11, kSystemSpecsFieldNumber = 1, kProfileFieldNumber = 2, kDownstreamFlowFieldNumber = 4, @@ -5459,6 +5705,24 @@ class CSource2Metrics_MatchPerfSummary_Notification_Client : kSteamidFieldNumber = 10, kBuildIdFieldNumber = 3, }; + // repeated .CMsgSource2PerfIntervalSample perf_samples = 11; + int perf_samples_size() const; + private: + int _internal_perf_samples_size() const; + public: + void clear_perf_samples(); + ::CMsgSource2PerfIntervalSample* mutable_perf_samples(int index); + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample >* + mutable_perf_samples(); + private: + const ::CMsgSource2PerfIntervalSample& _internal_perf_samples(int index) const; + ::CMsgSource2PerfIntervalSample* _internal_add_perf_samples(); + public: + const ::CMsgSource2PerfIntervalSample& perf_samples(int index) const; + ::CMsgSource2PerfIntervalSample* add_perf_samples(); + const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample >& + perf_samples() const; + // optional .CMsgSource2SystemSpecs system_specs = 1; bool has_system_specs() const; private: @@ -5567,6 +5831,7 @@ class CSource2Metrics_MatchPerfSummary_Notification_Client : struct Impl_ { ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; + ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample > perf_samples_; ::CMsgSource2SystemSpecs* system_specs_; ::CMsgSource2VProfLiteReport* profile_; ::CMsgSource2NetworkFlowQuality* downstream_flow_; @@ -5634,7 +5899,7 @@ class CSource2Metrics_MatchPerfSummary_Notification : &_CSource2Metrics_MatchPerfSummary_Notification_default_instance_); } static constexpr int kIndexInFileMessages = - 21; + 22; friend void swap(CSource2Metrics_MatchPerfSummary_Notification& a, CSource2Metrics_MatchPerfSummary_Notification& b) { a.Swap(&b); @@ -5715,6 +5980,7 @@ class CSource2Metrics_MatchPerfSummary_Notification : kServerProfileFieldNumber = 10, kAppidFieldNumber = 1, kServerBuildIdFieldNumber = 3, + kServerPopidFieldNumber = 4, }; // repeated .CSource2Metrics_MatchPerfSummary_Notification.Client clients = 11; int clients_size() const; @@ -5814,6 +6080,19 @@ class CSource2Metrics_MatchPerfSummary_Notification : void _internal_set_server_build_id(uint32_t value); public: + // optional fixed32 server_popid = 4; + bool has_server_popid() const; + private: + bool _internal_has_server_popid() const; + public: + void clear_server_popid(); + uint32_t server_popid() const; + void set_server_popid(uint32_t value); + private: + uint32_t _internal_server_popid() const; + void _internal_set_server_popid(uint32_t value); + public: + // @@protoc_insertion_point(class_scope:CSource2Metrics_MatchPerfSummary_Notification) private: class _Internal; @@ -5830,6 +6109,7 @@ class CSource2Metrics_MatchPerfSummary_Notification : ::CMsgSource2VProfLiteReport* server_profile_; uint32_t appid_; uint32_t server_build_id_; + uint32_t server_popid_; }; union { Impl_ _impl_; }; friend struct ::TableStruct_netmessages_2eproto; @@ -5891,7 +6171,7 @@ class CSVCMsg_ServerInfo : &_CSVCMsg_ServerInfo_default_instance_); } static constexpr int kIndexInFileMessages = - 22; + 23; friend void swap(CSVCMsg_ServerInfo& a, CSVCMsg_ServerInfo& b) { a.Swap(&b); @@ -6311,7 +6591,7 @@ class CSVCMsg_ClassInfo_class_t : &_CSVCMsg_ClassInfo_class_t_default_instance_); } static constexpr int kIndexInFileMessages = - 23; + 24; friend void swap(CSVCMsg_ClassInfo_class_t& a, CSVCMsg_ClassInfo_class_t& b) { a.Swap(&b); @@ -6491,7 +6771,7 @@ class CSVCMsg_ClassInfo : &_CSVCMsg_ClassInfo_default_instance_); } static constexpr int kIndexInFileMessages = - 24; + 25; friend void swap(CSVCMsg_ClassInfo& a, CSVCMsg_ClassInfo& b) { a.Swap(&b); @@ -6673,7 +6953,7 @@ class CSVCMsg_SetPause : &_CSVCMsg_SetPause_default_instance_); } static constexpr int kIndexInFileMessages = - 25; + 26; friend void swap(CSVCMsg_SetPause& a, CSVCMsg_SetPause& b) { a.Swap(&b); @@ -6833,7 +7113,7 @@ class CSVCMsg_VoiceInit : &_CSVCMsg_VoiceInit_default_instance_); } static constexpr int kIndexInFileMessages = - 26; + 27; friend void swap(CSVCMsg_VoiceInit& a, CSVCMsg_VoiceInit& b) { a.Swap(&b); @@ -7028,7 +7308,7 @@ class CSVCMsg_Print : &_CSVCMsg_Print_default_instance_); } static constexpr int kIndexInFileMessages = - 27; + 28; friend void swap(CSVCMsg_Print& a, CSVCMsg_Print& b) { a.Swap(&b); @@ -7193,7 +7473,7 @@ class CSVCMsg_Sounds_sounddata_t : &_CSVCMsg_Sounds_sounddata_t_default_instance_); } static constexpr int kIndexInFileMessages = - 28; + 29; friend void swap(CSVCMsg_Sounds_sounddata_t& a, CSVCMsg_Sounds_sounddata_t& b) { a.Swap(&b); @@ -7623,7 +7903,7 @@ class CSVCMsg_Sounds : &_CSVCMsg_Sounds_default_instance_); } static constexpr int kIndexInFileMessages = - 29; + 30; friend void swap(CSVCMsg_Sounds& a, CSVCMsg_Sounds& b) { a.Swap(&b); @@ -7805,7 +8085,7 @@ class CSVCMsg_Prefetch : &_CSVCMsg_Prefetch_default_instance_); } static constexpr int kIndexInFileMessages = - 30; + 31; friend void swap(CSVCMsg_Prefetch& a, CSVCMsg_Prefetch& b) { a.Swap(&b); @@ -7980,7 +8260,7 @@ class CSVCMsg_SetView : &_CSVCMsg_SetView_default_instance_); } static constexpr int kIndexInFileMessages = - 31; + 32; friend void swap(CSVCMsg_SetView& a, CSVCMsg_SetView& b) { a.Swap(&b); @@ -8155,7 +8435,7 @@ class CSVCMsg_FixAngle : &_CSVCMsg_FixAngle_default_instance_); } static constexpr int kIndexInFileMessages = - 32; + 33; friend void swap(CSVCMsg_FixAngle& a, CSVCMsg_FixAngle& b) { a.Swap(&b); @@ -8335,7 +8615,7 @@ class CSVCMsg_CrosshairAngle : &_CSVCMsg_CrosshairAngle_default_instance_); } static constexpr int kIndexInFileMessages = - 33; + 34; friend void swap(CSVCMsg_CrosshairAngle& a, CSVCMsg_CrosshairAngle& b) { a.Swap(&b); @@ -8500,7 +8780,7 @@ class CSVCMsg_BSPDecal : &_CSVCMsg_BSPDecal_default_instance_); } static constexpr int kIndexInFileMessages = - 34; + 35; friend void swap(CSVCMsg_BSPDecal& a, CSVCMsg_BSPDecal& b) { a.Swap(&b); @@ -8725,7 +9005,7 @@ class CSVCMsg_SplitScreen : &_CSVCMsg_SplitScreen_default_instance_); } static constexpr int kIndexInFileMessages = - 35; + 36; friend void swap(CSVCMsg_SplitScreen& a, CSVCMsg_SplitScreen& b) { a.Swap(&b); @@ -8915,7 +9195,7 @@ class CSVCMsg_GetCvarValue : &_CSVCMsg_GetCvarValue_default_instance_); } static constexpr int kIndexInFileMessages = - 36; + 37; friend void swap(CSVCMsg_GetCvarValue& a, CSVCMsg_GetCvarValue& b) { a.Swap(&b); @@ -9095,7 +9375,7 @@ class CSVCMsg_Menu : &_CSVCMsg_Menu_default_instance_); } static constexpr int kIndexInFileMessages = - 37; + 38; friend void swap(CSVCMsg_Menu& a, CSVCMsg_Menu& b) { a.Swap(&b); @@ -9275,7 +9555,7 @@ class CSVCMsg_UserMessage : &_CSVCMsg_UserMessage_default_instance_); } static constexpr int kIndexInFileMessages = - 38; + 39; friend void swap(CSVCMsg_UserMessage& a, CSVCMsg_UserMessage& b) { a.Swap(&b); @@ -9470,7 +9750,7 @@ class CSVCMsg_SendTable_sendprop_t : &_CSVCMsg_SendTable_sendprop_t_default_instance_); } static constexpr int kIndexInFileMessages = - 39; + 40; friend void swap(CSVCMsg_SendTable_sendprop_t& a, CSVCMsg_SendTable_sendprop_t& b) { a.Swap(&b); @@ -9760,7 +10040,7 @@ class CSVCMsg_SendTable : &_CSVCMsg_SendTable_default_instance_); } static constexpr int kIndexInFileMessages = - 40; + 41; friend void swap(CSVCMsg_SendTable& a, CSVCMsg_SendTable& b) { a.Swap(&b); @@ -9977,7 +10257,7 @@ class CSVCMsg_GameEventList_key_t : &_CSVCMsg_GameEventList_key_t_default_instance_); } static constexpr int kIndexInFileMessages = - 41; + 42; friend void swap(CSVCMsg_GameEventList_key_t& a, CSVCMsg_GameEventList_key_t& b) { a.Swap(&b); @@ -10157,7 +10437,7 @@ class CSVCMsg_GameEventList_descriptor_t : &_CSVCMsg_GameEventList_descriptor_t_default_instance_); } static constexpr int kIndexInFileMessages = - 42; + 43; friend void swap(CSVCMsg_GameEventList_descriptor_t& a, CSVCMsg_GameEventList_descriptor_t& b) { a.Swap(&b); @@ -10357,7 +10637,7 @@ class CSVCMsg_GameEventList : &_CSVCMsg_GameEventList_default_instance_); } static constexpr int kIndexInFileMessages = - 43; + 44; friend void swap(CSVCMsg_GameEventList& a, CSVCMsg_GameEventList& b) { a.Swap(&b); @@ -10524,7 +10804,7 @@ class CSVCMsg_PacketEntities_alternate_baseline_t : &_CSVCMsg_PacketEntities_alternate_baseline_t_default_instance_); } static constexpr int kIndexInFileMessages = - 44; + 45; friend void swap(CSVCMsg_PacketEntities_alternate_baseline_t& a, CSVCMsg_PacketEntities_alternate_baseline_t& b) { a.Swap(&b); @@ -10699,7 +10979,7 @@ class CSVCMsg_PacketEntities_non_transmitted_entities_t : &_CSVCMsg_PacketEntities_non_transmitted_entities_t_default_instance_); } static constexpr int kIndexInFileMessages = - 45; + 46; friend void swap(CSVCMsg_PacketEntities_non_transmitted_entities_t& a, CSVCMsg_PacketEntities_non_transmitted_entities_t& b) { a.Swap(&b); @@ -10879,7 +11159,7 @@ class CSVCMsg_PacketEntities_outofpvs_entity_updates_t : &_CSVCMsg_PacketEntities_outofpvs_entity_updates_t_default_instance_); } static constexpr int kIndexInFileMessages = - 46; + 47; friend void swap(CSVCMsg_PacketEntities_outofpvs_entity_updates_t& a, CSVCMsg_PacketEntities_outofpvs_entity_updates_t& b) { a.Swap(&b); @@ -11059,7 +11339,7 @@ class CSVCMsg_PacketEntities : &_CSVCMsg_PacketEntities_default_instance_); } static constexpr int kIndexInFileMessages = - 47; + 48; friend void swap(CSVCMsg_PacketEntities& a, CSVCMsg_PacketEntities& b) { a.Swap(&b); @@ -11578,7 +11858,7 @@ class CSVCMsg_TempEntities : &_CSVCMsg_TempEntities_default_instance_); } static constexpr int kIndexInFileMessages = - 48; + 49; friend void swap(CSVCMsg_TempEntities& a, CSVCMsg_TempEntities& b) { a.Swap(&b); @@ -11773,7 +12053,7 @@ class CSVCMsg_CreateStringTable : &_CSVCMsg_CreateStringTable_default_instance_); } static constexpr int kIndexInFileMessages = - 49; + 50; friend void swap(CSVCMsg_CreateStringTable& a, CSVCMsg_CreateStringTable& b) { a.Swap(&b); @@ -12078,7 +12358,7 @@ class CSVCMsg_UpdateStringTable : &_CSVCMsg_UpdateStringTable_default_instance_); } static constexpr int kIndexInFileMessages = - 50; + 51; friend void swap(CSVCMsg_UpdateStringTable& a, CSVCMsg_UpdateStringTable& b) { a.Swap(&b); @@ -12273,7 +12553,7 @@ class CSVCMsg_VoiceData : &_CSVCMsg_VoiceData_default_instance_); } static constexpr int kIndexInFileMessages = - 51; + 52; friend void swap(CSVCMsg_VoiceData& a, CSVCMsg_VoiceData& b) { a.Swap(&b); @@ -12528,7 +12808,7 @@ class CSVCMsg_PacketReliable : &_CSVCMsg_PacketReliable_default_instance_); } static constexpr int kIndexInFileMessages = - 52; + 53; friend void swap(CSVCMsg_PacketReliable& a, CSVCMsg_PacketReliable& b) { a.Swap(&b); @@ -12718,7 +12998,7 @@ class CSVCMsg_FullFrameSplit : &_CSVCMsg_FullFrameSplit_default_instance_); } static constexpr int kIndexInFileMessages = - 53; + 54; friend void swap(CSVCMsg_FullFrameSplit& a, CSVCMsg_FullFrameSplit& b) { a.Swap(&b); @@ -12928,7 +13208,7 @@ class CSVCMsg_HLTVStatus : &_CSVCMsg_HLTVStatus_default_instance_); } static constexpr int kIndexInFileMessages = - 54; + 55; friend void swap(CSVCMsg_HLTVStatus& a, CSVCMsg_HLTVStatus& b) { a.Swap(&b); @@ -13138,7 +13418,7 @@ class CSVCMsg_ServerSteamID : &_CSVCMsg_ServerSteamID_default_instance_); } static constexpr int kIndexInFileMessages = - 55; + 56; friend void swap(CSVCMsg_ServerSteamID& a, CSVCMsg_ServerSteamID& b) { a.Swap(&b); @@ -13298,7 +13578,7 @@ class CSVCMsg_CmdKeyValues : &_CSVCMsg_CmdKeyValues_default_instance_); } static constexpr int kIndexInFileMessages = - 56; + 57; friend void swap(CSVCMsg_CmdKeyValues& a, CSVCMsg_CmdKeyValues& b) { a.Swap(&b); @@ -13463,7 +13743,7 @@ class CSVCMsg_RconServerDetails : &_CSVCMsg_RconServerDetails_default_instance_); } static constexpr int kIndexInFileMessages = - 57; + 58; friend void swap(CSVCMsg_RconServerDetails& a, CSVCMsg_RconServerDetails& b) { a.Swap(&b); @@ -13648,7 +13928,7 @@ class CMsgIPCAddress : &_CMsgIPCAddress_default_instance_); } static constexpr int kIndexInFileMessages = - 58; + 59; friend void swap(CMsgIPCAddress& a, CMsgIPCAddress& b) { a.Swap(&b); @@ -13823,7 +14103,7 @@ class CMsgServerPeer : &_CMsgServerPeer_default_instance_); } static constexpr int kIndexInFileMessages = - 59; + 60; friend void swap(CMsgServerPeer& a, CMsgServerPeer& b) { a.Swap(&b); @@ -14063,7 +14343,7 @@ class CSVCMsg_PeerList : &_CSVCMsg_PeerList_default_instance_); } static constexpr int kIndexInFileMessages = - 60; + 61; friend void swap(CSVCMsg_PeerList& a, CSVCMsg_PeerList& b) { a.Swap(&b); @@ -14227,7 +14507,7 @@ class CSVCMsg_ClearAllStringTables : &_CSVCMsg_ClearAllStringTables_default_instance_); } static constexpr int kIndexInFileMessages = - 61; + 62; friend void swap(CSVCMsg_ClearAllStringTables& a, CSVCMsg_ClearAllStringTables& b) { a.Swap(&b); @@ -14407,7 +14687,7 @@ class ProtoFlattenedSerializerField_t_polymorphic_field_t : &_ProtoFlattenedSerializerField_t_polymorphic_field_t_default_instance_); } static constexpr int kIndexInFileMessages = - 62; + 63; friend void swap(ProtoFlattenedSerializerField_t_polymorphic_field_t& a, ProtoFlattenedSerializerField_t_polymorphic_field_t& b) { a.Swap(&b); @@ -14582,7 +14862,7 @@ class ProtoFlattenedSerializerField_t : &_ProtoFlattenedSerializerField_t_default_instance_); } static constexpr int kIndexInFileMessages = - 63; + 64; friend void swap(ProtoFlattenedSerializerField_t& a, ProtoFlattenedSerializerField_t& b) { a.Swap(&b); @@ -14914,7 +15194,7 @@ class ProtoFlattenedSerializer_t : &_ProtoFlattenedSerializer_t_default_instance_); } static constexpr int kIndexInFileMessages = - 64; + 65; friend void swap(ProtoFlattenedSerializer_t& a, ProtoFlattenedSerializer_t& b) { a.Swap(&b); @@ -15113,7 +15393,7 @@ class CSVCMsg_FlattenedSerializer : &_CSVCMsg_FlattenedSerializer_default_instance_); } static constexpr int kIndexInFileMessages = - 65; + 66; friend void swap(CSVCMsg_FlattenedSerializer& a, CSVCMsg_FlattenedSerializer& b) { a.Swap(&b); @@ -15323,7 +15603,7 @@ class CSVCMsg_StopSound : &_CSVCMsg_StopSound_default_instance_); } static constexpr int kIndexInFileMessages = - 66; + 67; friend void swap(CSVCMsg_StopSound& a, CSVCMsg_StopSound& b) { a.Swap(&b); @@ -15483,7 +15763,7 @@ class CBidirMsg_RebroadcastGameEvent : &_CBidirMsg_RebroadcastGameEvent_default_instance_); } static constexpr int kIndexInFileMessages = - 67; + 68; friend void swap(CBidirMsg_RebroadcastGameEvent& a, CBidirMsg_RebroadcastGameEvent& b) { a.Swap(&b); @@ -15688,7 +15968,7 @@ class CBidirMsg_RebroadcastSource : &_CBidirMsg_RebroadcastSource_default_instance_); } static constexpr int kIndexInFileMessages = - 68; + 69; friend void swap(CBidirMsg_RebroadcastSource& a, CBidirMsg_RebroadcastSource& b) { a.Swap(&b); @@ -15848,7 +16128,7 @@ class CBidirMsg_PredictionEvent : &_CBidirMsg_PredictionEvent_default_instance_); } static constexpr int kIndexInFileMessages = - 69; + 70; friend void swap(CBidirMsg_PredictionEvent& a, CBidirMsg_PredictionEvent& b) { a.Swap(&b); @@ -16091,7 +16371,7 @@ class CMsgServerNetworkStats_Port : &_CMsgServerNetworkStats_Port_default_instance_); } static constexpr int kIndexInFileMessages = - 70; + 71; friend void swap(CMsgServerNetworkStats_Port& a, CMsgServerNetworkStats_Port& b) { a.Swap(&b); @@ -16271,7 +16551,7 @@ class CMsgServerNetworkStats_Player : &_CMsgServerNetworkStats_Player_default_instance_); } static constexpr int kIndexInFileMessages = - 71; + 72; friend void swap(CMsgServerNetworkStats_Player& a, CMsgServerNetworkStats_Player& b) { a.Swap(&b); @@ -16541,7 +16821,7 @@ class CMsgServerNetworkStats : &_CMsgServerNetworkStats_default_instance_); } static constexpr int kIndexInFileMessages = - 72; + 73; friend void swap(CMsgServerNetworkStats& a, CMsgServerNetworkStats& b) { a.Swap(&b); @@ -17074,7 +17354,7 @@ class CSVCMsg_HltvReplay : &_CSVCMsg_HltvReplay_default_instance_); } static constexpr int kIndexInFileMessages = - 73; + 74; friend void swap(CSVCMsg_HltvReplay& a, CSVCMsg_HltvReplay& b) { a.Swap(&b); @@ -17339,7 +17619,7 @@ class CCLCMsg_HltvReplay : &_CCLCMsg_HltvReplay_default_instance_); } static constexpr int kIndexInFileMessages = - 74; + 75; friend void swap(CCLCMsg_HltvReplay& a, CCLCMsg_HltvReplay& b) { a.Swap(&b); @@ -17559,7 +17839,7 @@ class CSVCMsg_Broadcast_Command : &_CSVCMsg_Broadcast_Command_default_instance_); } static constexpr int kIndexInFileMessages = - 75; + 76; friend void swap(CSVCMsg_Broadcast_Command& a, CSVCMsg_Broadcast_Command& b) { a.Swap(&b); @@ -17724,7 +18004,7 @@ class CCLCMsg_HltvFixupOperatorTick : &_CCLCMsg_HltvFixupOperatorTick_default_instance_); } static constexpr int kIndexInFileMessages = - 76; + 77; friend void swap(CCLCMsg_HltvFixupOperatorTick& a, CCLCMsg_HltvFixupOperatorTick& b) { a.Swap(&b); @@ -18009,7 +18289,7 @@ class CSVCMsg_HltvFixupOperatorStatus : &_CSVCMsg_HltvFixupOperatorStatus_default_instance_); } static constexpr int kIndexInFileMessages = - 77; + 78; friend void swap(CSVCMsg_HltvFixupOperatorStatus& a, CSVCMsg_HltvFixupOperatorStatus& b) { a.Swap(&b); @@ -18189,7 +18469,7 @@ class CMsgServerUserCmd : &_CMsgServerUserCmd_default_instance_); } static constexpr int kIndexInFileMessages = - 78; + 79; friend void swap(CMsgServerUserCmd& a, CMsgServerUserCmd& b) { a.Swap(&b); @@ -18414,7 +18694,7 @@ class CSVCMsg_UserCommands : &_CSVCMsg_UserCommands_default_instance_); } static constexpr int kIndexInFileMessages = - 79; + 80; friend void swap(CSVCMsg_UserCommands& a, CSVCMsg_UserCommands& b) { a.Swap(&b); @@ -19587,230 +19867,6 @@ inline void CCLCMsg_RespondCvarValue::set_allocated_value(std::string* value) { // ------------------------------------------------------------------- -// CCLCMsg_FileCRCCheck - -// optional int32 code_path = 1; -inline bool CCLCMsg_FileCRCCheck::_internal_has_code_path() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; - return value; -} -inline bool CCLCMsg_FileCRCCheck::has_code_path() const { - return _internal_has_code_path(); -} -inline void CCLCMsg_FileCRCCheck::clear_code_path() { - _impl_.code_path_ = 0; - _impl_._has_bits_[0] &= ~0x00000004u; -} -inline int32_t CCLCMsg_FileCRCCheck::_internal_code_path() const { - return _impl_.code_path_; -} -inline int32_t CCLCMsg_FileCRCCheck::code_path() const { - // @@protoc_insertion_point(field_get:CCLCMsg_FileCRCCheck.code_path) - return _internal_code_path(); -} -inline void CCLCMsg_FileCRCCheck::_internal_set_code_path(int32_t value) { - _impl_._has_bits_[0] |= 0x00000004u; - _impl_.code_path_ = value; -} -inline void CCLCMsg_FileCRCCheck::set_code_path(int32_t value) { - _internal_set_code_path(value); - // @@protoc_insertion_point(field_set:CCLCMsg_FileCRCCheck.code_path) -} - -// optional string path = 2; -inline bool CCLCMsg_FileCRCCheck::_internal_has_path() const { - bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; - return value; -} -inline bool CCLCMsg_FileCRCCheck::has_path() const { - return _internal_has_path(); -} -inline void CCLCMsg_FileCRCCheck::clear_path() { - _impl_.path_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000001u; -} -inline const std::string& CCLCMsg_FileCRCCheck::path() const { - // @@protoc_insertion_point(field_get:CCLCMsg_FileCRCCheck.path) - return _internal_path(); -} -template -inline PROTOBUF_ALWAYS_INLINE -void CCLCMsg_FileCRCCheck::set_path(ArgT0&& arg0, ArgT... args) { - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.path_.Set(static_cast(arg0), args..., GetArenaForAllocation()); - // @@protoc_insertion_point(field_set:CCLCMsg_FileCRCCheck.path) -} -inline std::string* CCLCMsg_FileCRCCheck::mutable_path() { - std::string* _s = _internal_mutable_path(); - // @@protoc_insertion_point(field_mutable:CCLCMsg_FileCRCCheck.path) - return _s; -} -inline const std::string& CCLCMsg_FileCRCCheck::_internal_path() const { - return _impl_.path_.Get(); -} -inline void CCLCMsg_FileCRCCheck::_internal_set_path(const std::string& value) { - _impl_._has_bits_[0] |= 0x00000001u; - _impl_.path_.Set(value, GetArenaForAllocation()); -} -inline std::string* CCLCMsg_FileCRCCheck::_internal_mutable_path() { - _impl_._has_bits_[0] |= 0x00000001u; - return _impl_.path_.Mutable(GetArenaForAllocation()); -} -inline std::string* CCLCMsg_FileCRCCheck::release_path() { - // @@protoc_insertion_point(field_release:CCLCMsg_FileCRCCheck.path) - if (!_internal_has_path()) { - return nullptr; - } - _impl_._has_bits_[0] &= ~0x00000001u; - auto* p = _impl_.path_.Release(); -#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.path_.IsDefault()) { - _impl_.path_.Set("", GetArenaForAllocation()); - } -#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return p; -} -inline void CCLCMsg_FileCRCCheck::set_allocated_path(std::string* path) { - if (path != nullptr) { - _impl_._has_bits_[0] |= 0x00000001u; - } else { - _impl_._has_bits_[0] &= ~0x00000001u; - } - _impl_.path_.SetAllocated(path, GetArenaForAllocation()); -#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.path_.IsDefault()) { - _impl_.path_.Set("", GetArenaForAllocation()); - } -#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:CCLCMsg_FileCRCCheck.path) -} - -// optional int32 code_filename = 3; -inline bool CCLCMsg_FileCRCCheck::_internal_has_code_filename() const { - bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; - return value; -} -inline bool CCLCMsg_FileCRCCheck::has_code_filename() const { - return _internal_has_code_filename(); -} -inline void CCLCMsg_FileCRCCheck::clear_code_filename() { - _impl_.code_filename_ = 0; - _impl_._has_bits_[0] &= ~0x00000008u; -} -inline int32_t CCLCMsg_FileCRCCheck::_internal_code_filename() const { - return _impl_.code_filename_; -} -inline int32_t CCLCMsg_FileCRCCheck::code_filename() const { - // @@protoc_insertion_point(field_get:CCLCMsg_FileCRCCheck.code_filename) - return _internal_code_filename(); -} -inline void CCLCMsg_FileCRCCheck::_internal_set_code_filename(int32_t value) { - _impl_._has_bits_[0] |= 0x00000008u; - _impl_.code_filename_ = value; -} -inline void CCLCMsg_FileCRCCheck::set_code_filename(int32_t value) { - _internal_set_code_filename(value); - // @@protoc_insertion_point(field_set:CCLCMsg_FileCRCCheck.code_filename) -} - -// optional string filename = 4; -inline bool CCLCMsg_FileCRCCheck::_internal_has_filename() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; - return value; -} -inline bool CCLCMsg_FileCRCCheck::has_filename() const { - return _internal_has_filename(); -} -inline void CCLCMsg_FileCRCCheck::clear_filename() { - _impl_.filename_.ClearToEmpty(); - _impl_._has_bits_[0] &= ~0x00000002u; -} -inline const std::string& CCLCMsg_FileCRCCheck::filename() const { - // @@protoc_insertion_point(field_get:CCLCMsg_FileCRCCheck.filename) - return _internal_filename(); -} -template -inline PROTOBUF_ALWAYS_INLINE -void CCLCMsg_FileCRCCheck::set_filename(ArgT0&& arg0, ArgT... args) { - _impl_._has_bits_[0] |= 0x00000002u; - _impl_.filename_.Set(static_cast(arg0), args..., GetArenaForAllocation()); - // @@protoc_insertion_point(field_set:CCLCMsg_FileCRCCheck.filename) -} -inline std::string* CCLCMsg_FileCRCCheck::mutable_filename() { - std::string* _s = _internal_mutable_filename(); - // @@protoc_insertion_point(field_mutable:CCLCMsg_FileCRCCheck.filename) - return _s; -} -inline const std::string& CCLCMsg_FileCRCCheck::_internal_filename() const { - return _impl_.filename_.Get(); -} -inline void CCLCMsg_FileCRCCheck::_internal_set_filename(const std::string& value) { - _impl_._has_bits_[0] |= 0x00000002u; - _impl_.filename_.Set(value, GetArenaForAllocation()); -} -inline std::string* CCLCMsg_FileCRCCheck::_internal_mutable_filename() { - _impl_._has_bits_[0] |= 0x00000002u; - return _impl_.filename_.Mutable(GetArenaForAllocation()); -} -inline std::string* CCLCMsg_FileCRCCheck::release_filename() { - // @@protoc_insertion_point(field_release:CCLCMsg_FileCRCCheck.filename) - if (!_internal_has_filename()) { - return nullptr; - } - _impl_._has_bits_[0] &= ~0x00000002u; - auto* p = _impl_.filename_.Release(); -#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.filename_.IsDefault()) { - _impl_.filename_.Set("", GetArenaForAllocation()); - } -#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - return p; -} -inline void CCLCMsg_FileCRCCheck::set_allocated_filename(std::string* filename) { - if (filename != nullptr) { - _impl_._has_bits_[0] |= 0x00000002u; - } else { - _impl_._has_bits_[0] &= ~0x00000002u; - } - _impl_.filename_.SetAllocated(filename, GetArenaForAllocation()); -#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.filename_.IsDefault()) { - _impl_.filename_.Set("", GetArenaForAllocation()); - } -#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:CCLCMsg_FileCRCCheck.filename) -} - -// optional fixed32 crc = 5; -inline bool CCLCMsg_FileCRCCheck::_internal_has_crc() const { - bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; - return value; -} -inline bool CCLCMsg_FileCRCCheck::has_crc() const { - return _internal_has_crc(); -} -inline void CCLCMsg_FileCRCCheck::clear_crc() { - _impl_.crc_ = 0u; - _impl_._has_bits_[0] &= ~0x00000010u; -} -inline uint32_t CCLCMsg_FileCRCCheck::_internal_crc() const { - return _impl_.crc_; -} -inline uint32_t CCLCMsg_FileCRCCheck::crc() const { - // @@protoc_insertion_point(field_get:CCLCMsg_FileCRCCheck.crc) - return _internal_crc(); -} -inline void CCLCMsg_FileCRCCheck::_internal_set_crc(uint32_t value) { - _impl_._has_bits_[0] |= 0x00000010u; - _impl_.crc_ = value; -} -inline void CCLCMsg_FileCRCCheck::set_crc(uint32_t value) { - _internal_set_crc(value); - // @@protoc_insertion_point(field_set:CCLCMsg_FileCRCCheck.crc) -} - -// ------------------------------------------------------------------- - // CCLCMsg_LoadingProgress // optional int32 progress = 1; @@ -20682,6 +20738,62 @@ inline void CMsgSource2SystemSpecs::set_gpu_texture_memory_size_mb(uint32_t valu // @@protoc_insertion_point(field_set:CMsgSource2SystemSpecs.gpu_texture_memory_size_mb) } +// optional uint32 backbuffer_width = 51; +inline bool CMsgSource2SystemSpecs::_internal_has_backbuffer_width() const { + bool value = (_impl_._has_bits_[0] & 0x00001000u) != 0; + return value; +} +inline bool CMsgSource2SystemSpecs::has_backbuffer_width() const { + return _internal_has_backbuffer_width(); +} +inline void CMsgSource2SystemSpecs::clear_backbuffer_width() { + _impl_.backbuffer_width_ = 0u; + _impl_._has_bits_[0] &= ~0x00001000u; +} +inline uint32_t CMsgSource2SystemSpecs::_internal_backbuffer_width() const { + return _impl_.backbuffer_width_; +} +inline uint32_t CMsgSource2SystemSpecs::backbuffer_width() const { + // @@protoc_insertion_point(field_get:CMsgSource2SystemSpecs.backbuffer_width) + return _internal_backbuffer_width(); +} +inline void CMsgSource2SystemSpecs::_internal_set_backbuffer_width(uint32_t value) { + _impl_._has_bits_[0] |= 0x00001000u; + _impl_.backbuffer_width_ = value; +} +inline void CMsgSource2SystemSpecs::set_backbuffer_width(uint32_t value) { + _internal_set_backbuffer_width(value); + // @@protoc_insertion_point(field_set:CMsgSource2SystemSpecs.backbuffer_width) +} + +// optional uint32 backbuffer_height = 52; +inline bool CMsgSource2SystemSpecs::_internal_has_backbuffer_height() const { + bool value = (_impl_._has_bits_[0] & 0x00002000u) != 0; + return value; +} +inline bool CMsgSource2SystemSpecs::has_backbuffer_height() const { + return _internal_has_backbuffer_height(); +} +inline void CMsgSource2SystemSpecs::clear_backbuffer_height() { + _impl_.backbuffer_height_ = 0u; + _impl_._has_bits_[0] &= ~0x00002000u; +} +inline uint32_t CMsgSource2SystemSpecs::_internal_backbuffer_height() const { + return _impl_.backbuffer_height_; +} +inline uint32_t CMsgSource2SystemSpecs::backbuffer_height() const { + // @@protoc_insertion_point(field_get:CMsgSource2SystemSpecs.backbuffer_height) + return _internal_backbuffer_height(); +} +inline void CMsgSource2SystemSpecs::_internal_set_backbuffer_height(uint32_t value) { + _impl_._has_bits_[0] |= 0x00002000u; + _impl_.backbuffer_height_ = value; +} +inline void CMsgSource2SystemSpecs::set_backbuffer_height(uint32_t value) { + _internal_set_backbuffer_height(value); + // @@protoc_insertion_point(field_set:CMsgSource2SystemSpecs.backbuffer_height) +} + // ------------------------------------------------------------------- // CMsgSource2VProfLiteReportItem @@ -22210,6 +22322,290 @@ inline void CMsgSource2NetworkFlowQuality::set_recvmargin_p95(int32_t value) { // ------------------------------------------------------------------- +// CMsgSource2PerfIntervalSample_Tag + +// optional string tag = 1; +inline bool CMsgSource2PerfIntervalSample_Tag::_internal_has_tag() const { + bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; + return value; +} +inline bool CMsgSource2PerfIntervalSample_Tag::has_tag() const { + return _internal_has_tag(); +} +inline void CMsgSource2PerfIntervalSample_Tag::clear_tag() { + _impl_.tag_.ClearToEmpty(); + _impl_._has_bits_[0] &= ~0x00000001u; +} +inline const std::string& CMsgSource2PerfIntervalSample_Tag::tag() const { + // @@protoc_insertion_point(field_get:CMsgSource2PerfIntervalSample.Tag.tag) + return _internal_tag(); +} +template +inline PROTOBUF_ALWAYS_INLINE +void CMsgSource2PerfIntervalSample_Tag::set_tag(ArgT0&& arg0, ArgT... args) { + _impl_._has_bits_[0] |= 0x00000001u; + _impl_.tag_.Set(static_cast(arg0), args..., GetArenaForAllocation()); + // @@protoc_insertion_point(field_set:CMsgSource2PerfIntervalSample.Tag.tag) +} +inline std::string* CMsgSource2PerfIntervalSample_Tag::mutable_tag() { + std::string* _s = _internal_mutable_tag(); + // @@protoc_insertion_point(field_mutable:CMsgSource2PerfIntervalSample.Tag.tag) + return _s; +} +inline const std::string& CMsgSource2PerfIntervalSample_Tag::_internal_tag() const { + return _impl_.tag_.Get(); +} +inline void CMsgSource2PerfIntervalSample_Tag::_internal_set_tag(const std::string& value) { + _impl_._has_bits_[0] |= 0x00000001u; + _impl_.tag_.Set(value, GetArenaForAllocation()); +} +inline std::string* CMsgSource2PerfIntervalSample_Tag::_internal_mutable_tag() { + _impl_._has_bits_[0] |= 0x00000001u; + return _impl_.tag_.Mutable(GetArenaForAllocation()); +} +inline std::string* CMsgSource2PerfIntervalSample_Tag::release_tag() { + // @@protoc_insertion_point(field_release:CMsgSource2PerfIntervalSample.Tag.tag) + if (!_internal_has_tag()) { + return nullptr; + } + _impl_._has_bits_[0] &= ~0x00000001u; + auto* p = _impl_.tag_.Release(); +#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.tag_.IsDefault()) { + _impl_.tag_.Set("", GetArenaForAllocation()); + } +#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + return p; +} +inline void CMsgSource2PerfIntervalSample_Tag::set_allocated_tag(std::string* tag) { + if (tag != nullptr) { + _impl_._has_bits_[0] |= 0x00000001u; + } else { + _impl_._has_bits_[0] &= ~0x00000001u; + } + _impl_.tag_.SetAllocated(tag, GetArenaForAllocation()); +#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.tag_.IsDefault()) { + _impl_.tag_.Set("", GetArenaForAllocation()); + } +#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:CMsgSource2PerfIntervalSample.Tag.tag) +} + +// optional uint32 max_value = 2; +inline bool CMsgSource2PerfIntervalSample_Tag::_internal_has_max_value() const { + bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; + return value; +} +inline bool CMsgSource2PerfIntervalSample_Tag::has_max_value() const { + return _internal_has_max_value(); +} +inline void CMsgSource2PerfIntervalSample_Tag::clear_max_value() { + _impl_.max_value_ = 0u; + _impl_._has_bits_[0] &= ~0x00000002u; +} +inline uint32_t CMsgSource2PerfIntervalSample_Tag::_internal_max_value() const { + return _impl_.max_value_; +} +inline uint32_t CMsgSource2PerfIntervalSample_Tag::max_value() const { + // @@protoc_insertion_point(field_get:CMsgSource2PerfIntervalSample.Tag.max_value) + return _internal_max_value(); +} +inline void CMsgSource2PerfIntervalSample_Tag::_internal_set_max_value(uint32_t value) { + _impl_._has_bits_[0] |= 0x00000002u; + _impl_.max_value_ = value; +} +inline void CMsgSource2PerfIntervalSample_Tag::set_max_value(uint32_t value) { + _internal_set_max_value(value); + // @@protoc_insertion_point(field_set:CMsgSource2PerfIntervalSample.Tag.max_value) +} + +// ------------------------------------------------------------------- + +// CMsgSource2PerfIntervalSample + +// optional float frame_time_max_ms = 1; +inline bool CMsgSource2PerfIntervalSample::_internal_has_frame_time_max_ms() const { + bool value = (_impl_._has_bits_[0] & 0x00000001u) != 0; + return value; +} +inline bool CMsgSource2PerfIntervalSample::has_frame_time_max_ms() const { + return _internal_has_frame_time_max_ms(); +} +inline void CMsgSource2PerfIntervalSample::clear_frame_time_max_ms() { + _impl_.frame_time_max_ms_ = 0; + _impl_._has_bits_[0] &= ~0x00000001u; +} +inline float CMsgSource2PerfIntervalSample::_internal_frame_time_max_ms() const { + return _impl_.frame_time_max_ms_; +} +inline float CMsgSource2PerfIntervalSample::frame_time_max_ms() const { + // @@protoc_insertion_point(field_get:CMsgSource2PerfIntervalSample.frame_time_max_ms) + return _internal_frame_time_max_ms(); +} +inline void CMsgSource2PerfIntervalSample::_internal_set_frame_time_max_ms(float value) { + _impl_._has_bits_[0] |= 0x00000001u; + _impl_.frame_time_max_ms_ = value; +} +inline void CMsgSource2PerfIntervalSample::set_frame_time_max_ms(float value) { + _internal_set_frame_time_max_ms(value); + // @@protoc_insertion_point(field_set:CMsgSource2PerfIntervalSample.frame_time_max_ms) +} + +// optional float frame_time_avg_ms = 2; +inline bool CMsgSource2PerfIntervalSample::_internal_has_frame_time_avg_ms() const { + bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; + return value; +} +inline bool CMsgSource2PerfIntervalSample::has_frame_time_avg_ms() const { + return _internal_has_frame_time_avg_ms(); +} +inline void CMsgSource2PerfIntervalSample::clear_frame_time_avg_ms() { + _impl_.frame_time_avg_ms_ = 0; + _impl_._has_bits_[0] &= ~0x00000002u; +} +inline float CMsgSource2PerfIntervalSample::_internal_frame_time_avg_ms() const { + return _impl_.frame_time_avg_ms_; +} +inline float CMsgSource2PerfIntervalSample::frame_time_avg_ms() const { + // @@protoc_insertion_point(field_get:CMsgSource2PerfIntervalSample.frame_time_avg_ms) + return _internal_frame_time_avg_ms(); +} +inline void CMsgSource2PerfIntervalSample::_internal_set_frame_time_avg_ms(float value) { + _impl_._has_bits_[0] |= 0x00000002u; + _impl_.frame_time_avg_ms_ = value; +} +inline void CMsgSource2PerfIntervalSample::set_frame_time_avg_ms(float value) { + _internal_set_frame_time_avg_ms(value); + // @@protoc_insertion_point(field_set:CMsgSource2PerfIntervalSample.frame_time_avg_ms) +} + +// optional float frame_time_min_ms = 3; +inline bool CMsgSource2PerfIntervalSample::_internal_has_frame_time_min_ms() const { + bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; + return value; +} +inline bool CMsgSource2PerfIntervalSample::has_frame_time_min_ms() const { + return _internal_has_frame_time_min_ms(); +} +inline void CMsgSource2PerfIntervalSample::clear_frame_time_min_ms() { + _impl_.frame_time_min_ms_ = 0; + _impl_._has_bits_[0] &= ~0x00000004u; +} +inline float CMsgSource2PerfIntervalSample::_internal_frame_time_min_ms() const { + return _impl_.frame_time_min_ms_; +} +inline float CMsgSource2PerfIntervalSample::frame_time_min_ms() const { + // @@protoc_insertion_point(field_get:CMsgSource2PerfIntervalSample.frame_time_min_ms) + return _internal_frame_time_min_ms(); +} +inline void CMsgSource2PerfIntervalSample::_internal_set_frame_time_min_ms(float value) { + _impl_._has_bits_[0] |= 0x00000004u; + _impl_.frame_time_min_ms_ = value; +} +inline void CMsgSource2PerfIntervalSample::set_frame_time_min_ms(float value) { + _internal_set_frame_time_min_ms(value); + // @@protoc_insertion_point(field_set:CMsgSource2PerfIntervalSample.frame_time_min_ms) +} + +// optional int32 frame_count = 4; +inline bool CMsgSource2PerfIntervalSample::_internal_has_frame_count() const { + bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; + return value; +} +inline bool CMsgSource2PerfIntervalSample::has_frame_count() const { + return _internal_has_frame_count(); +} +inline void CMsgSource2PerfIntervalSample::clear_frame_count() { + _impl_.frame_count_ = 0; + _impl_._has_bits_[0] &= ~0x00000008u; +} +inline int32_t CMsgSource2PerfIntervalSample::_internal_frame_count() const { + return _impl_.frame_count_; +} +inline int32_t CMsgSource2PerfIntervalSample::frame_count() const { + // @@protoc_insertion_point(field_get:CMsgSource2PerfIntervalSample.frame_count) + return _internal_frame_count(); +} +inline void CMsgSource2PerfIntervalSample::_internal_set_frame_count(int32_t value) { + _impl_._has_bits_[0] |= 0x00000008u; + _impl_.frame_count_ = value; +} +inline void CMsgSource2PerfIntervalSample::set_frame_count(int32_t value) { + _internal_set_frame_count(value); + // @@protoc_insertion_point(field_set:CMsgSource2PerfIntervalSample.frame_count) +} + +// optional float frame_time_total_ms = 5; +inline bool CMsgSource2PerfIntervalSample::_internal_has_frame_time_total_ms() const { + bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; + return value; +} +inline bool CMsgSource2PerfIntervalSample::has_frame_time_total_ms() const { + return _internal_has_frame_time_total_ms(); +} +inline void CMsgSource2PerfIntervalSample::clear_frame_time_total_ms() { + _impl_.frame_time_total_ms_ = 0; + _impl_._has_bits_[0] &= ~0x00000010u; +} +inline float CMsgSource2PerfIntervalSample::_internal_frame_time_total_ms() const { + return _impl_.frame_time_total_ms_; +} +inline float CMsgSource2PerfIntervalSample::frame_time_total_ms() const { + // @@protoc_insertion_point(field_get:CMsgSource2PerfIntervalSample.frame_time_total_ms) + return _internal_frame_time_total_ms(); +} +inline void CMsgSource2PerfIntervalSample::_internal_set_frame_time_total_ms(float value) { + _impl_._has_bits_[0] |= 0x00000010u; + _impl_.frame_time_total_ms_ = value; +} +inline void CMsgSource2PerfIntervalSample::set_frame_time_total_ms(float value) { + _internal_set_frame_time_total_ms(value); + // @@protoc_insertion_point(field_set:CMsgSource2PerfIntervalSample.frame_time_total_ms) +} + +// repeated .CMsgSource2PerfIntervalSample.Tag tags = 6; +inline int CMsgSource2PerfIntervalSample::_internal_tags_size() const { + return _impl_.tags_.size(); +} +inline int CMsgSource2PerfIntervalSample::tags_size() const { + return _internal_tags_size(); +} +inline void CMsgSource2PerfIntervalSample::clear_tags() { + _impl_.tags_.Clear(); +} +inline ::CMsgSource2PerfIntervalSample_Tag* CMsgSource2PerfIntervalSample::mutable_tags(int index) { + // @@protoc_insertion_point(field_mutable:CMsgSource2PerfIntervalSample.tags) + return _impl_.tags_.Mutable(index); +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample_Tag >* +CMsgSource2PerfIntervalSample::mutable_tags() { + // @@protoc_insertion_point(field_mutable_list:CMsgSource2PerfIntervalSample.tags) + return &_impl_.tags_; +} +inline const ::CMsgSource2PerfIntervalSample_Tag& CMsgSource2PerfIntervalSample::_internal_tags(int index) const { + return _impl_.tags_.Get(index); +} +inline const ::CMsgSource2PerfIntervalSample_Tag& CMsgSource2PerfIntervalSample::tags(int index) const { + // @@protoc_insertion_point(field_get:CMsgSource2PerfIntervalSample.tags) + return _internal_tags(index); +} +inline ::CMsgSource2PerfIntervalSample_Tag* CMsgSource2PerfIntervalSample::_internal_add_tags() { + return _impl_.tags_.Add(); +} +inline ::CMsgSource2PerfIntervalSample_Tag* CMsgSource2PerfIntervalSample::add_tags() { + ::CMsgSource2PerfIntervalSample_Tag* _add = _internal_add_tags(); + // @@protoc_insertion_point(field_add:CMsgSource2PerfIntervalSample.tags) + return _add; +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample_Tag >& +CMsgSource2PerfIntervalSample::tags() const { + // @@protoc_insertion_point(field_list:CMsgSource2PerfIntervalSample.tags) + return _impl_.tags_; +} + +// ------------------------------------------------------------------- + // CCLCMsg_Diagnostic // optional .CMsgSource2SystemSpecs system_specs = 1; @@ -22572,6 +22968,46 @@ inline void CCLCMsg_Diagnostic::set_allocated_upstream_flow(::CMsgSource2Network // @@protoc_insertion_point(field_set_allocated:CCLCMsg_Diagnostic.upstream_flow) } +// repeated .CMsgSource2PerfIntervalSample perf_samples = 5; +inline int CCLCMsg_Diagnostic::_internal_perf_samples_size() const { + return _impl_.perf_samples_.size(); +} +inline int CCLCMsg_Diagnostic::perf_samples_size() const { + return _internal_perf_samples_size(); +} +inline void CCLCMsg_Diagnostic::clear_perf_samples() { + _impl_.perf_samples_.Clear(); +} +inline ::CMsgSource2PerfIntervalSample* CCLCMsg_Diagnostic::mutable_perf_samples(int index) { + // @@protoc_insertion_point(field_mutable:CCLCMsg_Diagnostic.perf_samples) + return _impl_.perf_samples_.Mutable(index); +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample >* +CCLCMsg_Diagnostic::mutable_perf_samples() { + // @@protoc_insertion_point(field_mutable_list:CCLCMsg_Diagnostic.perf_samples) + return &_impl_.perf_samples_; +} +inline const ::CMsgSource2PerfIntervalSample& CCLCMsg_Diagnostic::_internal_perf_samples(int index) const { + return _impl_.perf_samples_.Get(index); +} +inline const ::CMsgSource2PerfIntervalSample& CCLCMsg_Diagnostic::perf_samples(int index) const { + // @@protoc_insertion_point(field_get:CCLCMsg_Diagnostic.perf_samples) + return _internal_perf_samples(index); +} +inline ::CMsgSource2PerfIntervalSample* CCLCMsg_Diagnostic::_internal_add_perf_samples() { + return _impl_.perf_samples_.Add(); +} +inline ::CMsgSource2PerfIntervalSample* CCLCMsg_Diagnostic::add_perf_samples() { + ::CMsgSource2PerfIntervalSample* _add = _internal_add_perf_samples(); + // @@protoc_insertion_point(field_add:CCLCMsg_Diagnostic.perf_samples) + return _add; +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample >& +CCLCMsg_Diagnostic::perf_samples() const { + // @@protoc_insertion_point(field_list:CCLCMsg_Diagnostic.perf_samples) + return _impl_.perf_samples_; +} + // ------------------------------------------------------------------- // CSource2Metrics_MatchPerfSummary_Notification_Client @@ -22992,6 +23428,46 @@ inline void CSource2Metrics_MatchPerfSummary_Notification_Client::set_steamid(ui // @@protoc_insertion_point(field_set:CSource2Metrics_MatchPerfSummary_Notification.Client.steamid) } +// repeated .CMsgSource2PerfIntervalSample perf_samples = 11; +inline int CSource2Metrics_MatchPerfSummary_Notification_Client::_internal_perf_samples_size() const { + return _impl_.perf_samples_.size(); +} +inline int CSource2Metrics_MatchPerfSummary_Notification_Client::perf_samples_size() const { + return _internal_perf_samples_size(); +} +inline void CSource2Metrics_MatchPerfSummary_Notification_Client::clear_perf_samples() { + _impl_.perf_samples_.Clear(); +} +inline ::CMsgSource2PerfIntervalSample* CSource2Metrics_MatchPerfSummary_Notification_Client::mutable_perf_samples(int index) { + // @@protoc_insertion_point(field_mutable:CSource2Metrics_MatchPerfSummary_Notification.Client.perf_samples) + return _impl_.perf_samples_.Mutable(index); +} +inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample >* +CSource2Metrics_MatchPerfSummary_Notification_Client::mutable_perf_samples() { + // @@protoc_insertion_point(field_mutable_list:CSource2Metrics_MatchPerfSummary_Notification.Client.perf_samples) + return &_impl_.perf_samples_; +} +inline const ::CMsgSource2PerfIntervalSample& CSource2Metrics_MatchPerfSummary_Notification_Client::_internal_perf_samples(int index) const { + return _impl_.perf_samples_.Get(index); +} +inline const ::CMsgSource2PerfIntervalSample& CSource2Metrics_MatchPerfSummary_Notification_Client::perf_samples(int index) const { + // @@protoc_insertion_point(field_get:CSource2Metrics_MatchPerfSummary_Notification.Client.perf_samples) + return _internal_perf_samples(index); +} +inline ::CMsgSource2PerfIntervalSample* CSource2Metrics_MatchPerfSummary_Notification_Client::_internal_add_perf_samples() { + return _impl_.perf_samples_.Add(); +} +inline ::CMsgSource2PerfIntervalSample* CSource2Metrics_MatchPerfSummary_Notification_Client::add_perf_samples() { + ::CMsgSource2PerfIntervalSample* _add = _internal_add_perf_samples(); + // @@protoc_insertion_point(field_add:CSource2Metrics_MatchPerfSummary_Notification.Client.perf_samples) + return _add; +} +inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::CMsgSource2PerfIntervalSample >& +CSource2Metrics_MatchPerfSummary_Notification_Client::perf_samples() const { + // @@protoc_insertion_point(field_list:CSource2Metrics_MatchPerfSummary_Notification.Client.perf_samples) + return _impl_.perf_samples_; +} + // ------------------------------------------------------------------- // CSource2Metrics_MatchPerfSummary_Notification @@ -23120,6 +23596,34 @@ inline void CSource2Metrics_MatchPerfSummary_Notification::set_server_build_id(u // @@protoc_insertion_point(field_set:CSource2Metrics_MatchPerfSummary_Notification.server_build_id) } +// optional fixed32 server_popid = 4; +inline bool CSource2Metrics_MatchPerfSummary_Notification::_internal_has_server_popid() const { + bool value = (_impl_._has_bits_[0] & 0x00000020u) != 0; + return value; +} +inline bool CSource2Metrics_MatchPerfSummary_Notification::has_server_popid() const { + return _internal_has_server_popid(); +} +inline void CSource2Metrics_MatchPerfSummary_Notification::clear_server_popid() { + _impl_.server_popid_ = 0u; + _impl_._has_bits_[0] &= ~0x00000020u; +} +inline uint32_t CSource2Metrics_MatchPerfSummary_Notification::_internal_server_popid() const { + return _impl_.server_popid_; +} +inline uint32_t CSource2Metrics_MatchPerfSummary_Notification::server_popid() const { + // @@protoc_insertion_point(field_get:CSource2Metrics_MatchPerfSummary_Notification.server_popid) + return _internal_server_popid(); +} +inline void CSource2Metrics_MatchPerfSummary_Notification::_internal_set_server_popid(uint32_t value) { + _impl_._has_bits_[0] |= 0x00000020u; + _impl_.server_popid_ = value; +} +inline void CSource2Metrics_MatchPerfSummary_Notification::set_server_popid(uint32_t value) { + _internal_set_server_popid(value); + // @@protoc_insertion_point(field_set:CSource2Metrics_MatchPerfSummary_Notification.server_popid) +} + // optional .CMsgSource2VProfLiteReport server_profile = 10; inline bool CSource2Metrics_MatchPerfSummary_Notification::_internal_has_server_profile() const { bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; @@ -33427,6 +33931,8 @@ CSVCMsg_UserCommands::commands() const { // ------------------------------------------------------------------- +// ------------------------------------------------------------------- + // @@protoc_insertion_point(namespace_scope) diff --git a/protobuf/generated/usercmd.pb.cc b/protobuf/generated/usercmd.pb.cc index ff3ed38dc..60c85c7a3 100644 --- a/protobuf/generated/usercmd.pb.cc +++ b/protobuf/generated/usercmd.pb.cc @@ -45,8 +45,8 @@ PROTOBUF_CONSTEXPR CSubtickMoveStep::CSubtickMoveStep( , /*decltype(_impl_.when_)*/0 , /*decltype(_impl_.analog_forward_delta_)*/0 , /*decltype(_impl_.analog_left_delta_)*/0 - , /*decltype(_impl_.analog_pitch_delta_)*/0 - , /*decltype(_impl_.analog_yaw_delta_)*/0} {} + , /*decltype(_impl_.pitch_delta_)*/0 + , /*decltype(_impl_.yaw_delta_)*/0} {} struct CSubtickMoveStepDefaultTypeInternal { PROTOBUF_CONSTEXPR CSubtickMoveStepDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} @@ -129,8 +129,8 @@ const uint32_t TableStruct_usercmd_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE( PROTOBUF_FIELD_OFFSET(::CSubtickMoveStep, _impl_.when_), PROTOBUF_FIELD_OFFSET(::CSubtickMoveStep, _impl_.analog_forward_delta_), PROTOBUF_FIELD_OFFSET(::CSubtickMoveStep, _impl_.analog_left_delta_), - PROTOBUF_FIELD_OFFSET(::CSubtickMoveStep, _impl_.analog_pitch_delta_), - PROTOBUF_FIELD_OFFSET(::CSubtickMoveStep, _impl_.analog_yaw_delta_), + PROTOBUF_FIELD_OFFSET(::CSubtickMoveStep, _impl_.pitch_delta_), + PROTOBUF_FIELD_OFFSET(::CSubtickMoveStep, _impl_.yaw_delta_), 0, 1, 2, @@ -207,31 +207,31 @@ const char descriptor_table_protodef_usercmd_2eproto[] PROTOBUF_SECTION_VARIABLE "\n\rusercmd.proto\032\026networkbasetypes.proto\"" "T\n\020CInButtonStatePB\022\024\n\014buttonstate1\030\001 \001(" "\004\022\024\n\014buttonstate2\030\002 \001(\004\022\024\n\014buttonstate3\030" - "\003 \001(\004\"\260\001\n\020CSubtickMoveStep\022\016\n\006button\030\001 \001" + "\003 \001(\004\"\242\001\n\020CSubtickMoveStep\022\016\n\006button\030\001 \001" "(\004\022\017\n\007pressed\030\002 \001(\010\022\014\n\004when\030\003 \001(\002\022\034\n\024ana" "log_forward_delta\030\004 \001(\002\022\031\n\021analog_left_d" - "elta\030\005 \001(\002\022\032\n\022analog_pitch_delta\030\006 \001(\002\022\030" - "\n\020analog_yaw_delta\030\007 \001(\002\"\343\003\n\016CBaseUserCm" - "dPB\022\035\n\025legacy_command_number\030\001 \001(\005\022\023\n\013cl" - "ient_tick\030\002 \001(\005\022$\n\034prediction_offset_tic" - "ks_x256\030\021 \001(\r\022%\n\nbuttons_pb\030\003 \001(\0132\021.CInB" - "uttonStatePB\022\037\n\nviewangles\030\004 \001(\0132\013.CMsgQ" - "Angle\022\023\n\013forwardmove\030\005 \001(\002\022\020\n\010leftmove\030\006" - " \001(\002\022\016\n\006upmove\030\007 \001(\002\022\017\n\007impulse\030\010 \001(\005\022\024\n" - "\014weaponselect\030\t \001(\005\022\023\n\013random_seed\030\n \001(\005" - "\022\017\n\007mousedx\030\013 \001(\005\022\017\n\007mousedy\030\014 \001(\005\022$\n\022pa" - "wn_entity_handle\030\016 \001(\r:\01016777215\022(\n\rsubt" - "ick_moves\030\022 \003(\0132\021.CSubtickMoveStep\022\020\n\010mo" - "ve_crc\030\023 \001(\014\022%\n\035consumed_server_angle_ch" - "anges\030\024 \001(\r\022\021\n\tcmd_flags\030\025 \001(\005\"/\n\016CUserC" - "mdBasePB\022\035\n\004base\030\001 \001(\0132\017.CBaseUserCmdPB" + "elta\030\005 \001(\002\022\023\n\013pitch_delta\030\010 \001(\002\022\021\n\tyaw_d" + "elta\030\t \001(\002\"\343\003\n\016CBaseUserCmdPB\022\035\n\025legacy_" + "command_number\030\001 \001(\005\022\023\n\013client_tick\030\002 \001(" + "\005\022$\n\034prediction_offset_ticks_x256\030\021 \001(\r\022" + "%\n\nbuttons_pb\030\003 \001(\0132\021.CInButtonStatePB\022\037" + "\n\nviewangles\030\004 \001(\0132\013.CMsgQAngle\022\023\n\013forwa" + "rdmove\030\005 \001(\002\022\020\n\010leftmove\030\006 \001(\002\022\016\n\006upmove" + "\030\007 \001(\002\022\017\n\007impulse\030\010 \001(\005\022\024\n\014weaponselect\030" + "\t \001(\005\022\023\n\013random_seed\030\n \001(\005\022\017\n\007mousedx\030\013 " + "\001(\005\022\017\n\007mousedy\030\014 \001(\005\022$\n\022pawn_entity_hand" + "le\030\016 \001(\r:\01016777215\022(\n\rsubtick_moves\030\022 \003(" + "\0132\021.CSubtickMoveStep\022\020\n\010move_crc\030\023 \001(\014\022%" + "\n\035consumed_server_angle_changes\030\024 \001(\r\022\021\n" + "\tcmd_flags\030\025 \001(\005\"/\n\016CUserCmdBasePB\022\035\n\004ba" + "se\030\001 \001(\0132\017.CBaseUserCmdPB" ; static const ::_pbi::DescriptorTable* const descriptor_table_usercmd_2eproto_deps[1] = { &::descriptor_table_networkbasetypes_2eproto, }; static ::_pbi::once_flag descriptor_table_usercmd_2eproto_once; const ::_pbi::DescriptorTable descriptor_table_usercmd_2eproto = { - false, false, 839, descriptor_table_protodef_usercmd_2eproto, + false, false, 825, descriptor_table_protodef_usercmd_2eproto, "usercmd.proto", &descriptor_table_usercmd_2eproto_once, descriptor_table_usercmd_2eproto_deps, 1, 4, schemas, file_default_instances, TableStruct_usercmd_2eproto::offsets, @@ -530,10 +530,10 @@ class CSubtickMoveStep::_Internal { static void set_has_analog_left_delta(HasBits* has_bits) { (*has_bits)[0] |= 16u; } - static void set_has_analog_pitch_delta(HasBits* has_bits) { + static void set_has_pitch_delta(HasBits* has_bits) { (*has_bits)[0] |= 32u; } - static void set_has_analog_yaw_delta(HasBits* has_bits) { + static void set_has_yaw_delta(HasBits* has_bits) { (*has_bits)[0] |= 64u; } }; @@ -555,13 +555,13 @@ CSubtickMoveStep::CSubtickMoveStep(const CSubtickMoveStep& from) , decltype(_impl_.when_){} , decltype(_impl_.analog_forward_delta_){} , decltype(_impl_.analog_left_delta_){} - , decltype(_impl_.analog_pitch_delta_){} - , decltype(_impl_.analog_yaw_delta_){}}; + , decltype(_impl_.pitch_delta_){} + , decltype(_impl_.yaw_delta_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); ::memcpy(&_impl_.button_, &from._impl_.button_, - static_cast(reinterpret_cast(&_impl_.analog_yaw_delta_) - - reinterpret_cast(&_impl_.button_)) + sizeof(_impl_.analog_yaw_delta_)); + static_cast(reinterpret_cast(&_impl_.yaw_delta_) - + reinterpret_cast(&_impl_.button_)) + sizeof(_impl_.yaw_delta_)); // @@protoc_insertion_point(copy_constructor:CSubtickMoveStep) } @@ -577,8 +577,8 @@ inline void CSubtickMoveStep::SharedCtor( , decltype(_impl_.when_){0} , decltype(_impl_.analog_forward_delta_){0} , decltype(_impl_.analog_left_delta_){0} - , decltype(_impl_.analog_pitch_delta_){0} - , decltype(_impl_.analog_yaw_delta_){0} + , decltype(_impl_.pitch_delta_){0} + , decltype(_impl_.yaw_delta_){0} }; } @@ -608,8 +608,8 @@ void CSubtickMoveStep::Clear() { cached_has_bits = _impl_._has_bits_[0]; if (cached_has_bits & 0x0000007fu) { ::memset(&_impl_.button_, 0, static_cast( - reinterpret_cast(&_impl_.analog_yaw_delta_) - - reinterpret_cast(&_impl_.button_)) + sizeof(_impl_.analog_yaw_delta_)); + reinterpret_cast(&_impl_.yaw_delta_) - + reinterpret_cast(&_impl_.button_)) + sizeof(_impl_.yaw_delta_)); } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); @@ -667,20 +667,20 @@ const char* CSubtickMoveStep::_InternalParse(const char* ptr, ::_pbi::ParseConte } else goto handle_unusual; continue; - // optional float analog_pitch_delta = 6; - case 6: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 53)) { - _Internal::set_has_analog_pitch_delta(&has_bits); - _impl_.analog_pitch_delta_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + // optional float pitch_delta = 8; + case 8: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 69)) { + _Internal::set_has_pitch_delta(&has_bits); + _impl_.pitch_delta_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); ptr += sizeof(float); } else goto handle_unusual; continue; - // optional float analog_yaw_delta = 7; - case 7: - if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 61)) { - _Internal::set_has_analog_yaw_delta(&has_bits); - _impl_.analog_yaw_delta_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + // optional float yaw_delta = 9; + case 9: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 77)) { + _Internal::set_has_yaw_delta(&has_bits); + _impl_.yaw_delta_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); ptr += sizeof(float); } else goto handle_unusual; @@ -746,16 +746,16 @@ uint8_t* CSubtickMoveStep::_InternalSerialize( target = ::_pbi::WireFormatLite::WriteFloatToArray(5, this->_internal_analog_left_delta(), target); } - // optional float analog_pitch_delta = 6; + // optional float pitch_delta = 8; if (cached_has_bits & 0x00000020u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFloatToArray(6, this->_internal_analog_pitch_delta(), target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(8, this->_internal_pitch_delta(), target); } - // optional float analog_yaw_delta = 7; + // optional float yaw_delta = 9; if (cached_has_bits & 0x00000040u) { target = stream->EnsureSpace(target); - target = ::_pbi::WireFormatLite::WriteFloatToArray(7, this->_internal_analog_yaw_delta(), target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(9, this->_internal_yaw_delta(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { @@ -801,12 +801,12 @@ size_t CSubtickMoveStep::ByteSizeLong() const { total_size += 1 + 4; } - // optional float analog_pitch_delta = 6; + // optional float pitch_delta = 8; if (cached_has_bits & 0x00000020u) { total_size += 1 + 4; } - // optional float analog_yaw_delta = 7; + // optional float yaw_delta = 9; if (cached_has_bits & 0x00000040u) { total_size += 1 + 4; } @@ -848,10 +848,10 @@ void CSubtickMoveStep::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const _this->_impl_.analog_left_delta_ = from._impl_.analog_left_delta_; } if (cached_has_bits & 0x00000020u) { - _this->_impl_.analog_pitch_delta_ = from._impl_.analog_pitch_delta_; + _this->_impl_.pitch_delta_ = from._impl_.pitch_delta_; } if (cached_has_bits & 0x00000040u) { - _this->_impl_.analog_yaw_delta_ = from._impl_.analog_yaw_delta_; + _this->_impl_.yaw_delta_ = from._impl_.yaw_delta_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } @@ -874,8 +874,8 @@ void CSubtickMoveStep::InternalSwap(CSubtickMoveStep* other) { _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_impl_._has_bits_[0], other->_impl_._has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CSubtickMoveStep, _impl_.analog_yaw_delta_) - + sizeof(CSubtickMoveStep::_impl_.analog_yaw_delta_) + PROTOBUF_FIELD_OFFSET(CSubtickMoveStep, _impl_.yaw_delta_) + + sizeof(CSubtickMoveStep::_impl_.yaw_delta_) - PROTOBUF_FIELD_OFFSET(CSubtickMoveStep, _impl_.button_)>( reinterpret_cast(&_impl_.button_), reinterpret_cast(&other->_impl_.button_)); diff --git a/protobuf/generated/usercmd.pb.h b/protobuf/generated/usercmd.pb.h index 76a8f18dd..4ef2d2bd1 100644 --- a/protobuf/generated/usercmd.pb.h +++ b/protobuf/generated/usercmd.pb.h @@ -389,8 +389,8 @@ class CSubtickMoveStep : kWhenFieldNumber = 3, kAnalogForwardDeltaFieldNumber = 4, kAnalogLeftDeltaFieldNumber = 5, - kAnalogPitchDeltaFieldNumber = 6, - kAnalogYawDeltaFieldNumber = 7, + kPitchDeltaFieldNumber = 8, + kYawDeltaFieldNumber = 9, }; // optional uint64 button = 1; bool has_button() const; @@ -457,30 +457,30 @@ class CSubtickMoveStep : void _internal_set_analog_left_delta(float value); public: - // optional float analog_pitch_delta = 6; - bool has_analog_pitch_delta() const; + // optional float pitch_delta = 8; + bool has_pitch_delta() const; private: - bool _internal_has_analog_pitch_delta() const; + bool _internal_has_pitch_delta() const; public: - void clear_analog_pitch_delta(); - float analog_pitch_delta() const; - void set_analog_pitch_delta(float value); + void clear_pitch_delta(); + float pitch_delta() const; + void set_pitch_delta(float value); private: - float _internal_analog_pitch_delta() const; - void _internal_set_analog_pitch_delta(float value); + float _internal_pitch_delta() const; + void _internal_set_pitch_delta(float value); public: - // optional float analog_yaw_delta = 7; - bool has_analog_yaw_delta() const; + // optional float yaw_delta = 9; + bool has_yaw_delta() const; private: - bool _internal_has_analog_yaw_delta() const; + bool _internal_has_yaw_delta() const; public: - void clear_analog_yaw_delta(); - float analog_yaw_delta() const; - void set_analog_yaw_delta(float value); + void clear_yaw_delta(); + float yaw_delta() const; + void set_yaw_delta(float value); private: - float _internal_analog_yaw_delta() const; - void _internal_set_analog_yaw_delta(float value); + float _internal_yaw_delta() const; + void _internal_set_yaw_delta(float value); public: // @@protoc_insertion_point(class_scope:CSubtickMoveStep) @@ -498,8 +498,8 @@ class CSubtickMoveStep : float when_; float analog_forward_delta_; float analog_left_delta_; - float analog_pitch_delta_; - float analog_yaw_delta_; + float pitch_delta_; + float yaw_delta_; }; union { Impl_ _impl_; }; friend struct ::TableStruct_usercmd_2eproto; @@ -1343,60 +1343,60 @@ inline void CSubtickMoveStep::set_analog_left_delta(float value) { // @@protoc_insertion_point(field_set:CSubtickMoveStep.analog_left_delta) } -// optional float analog_pitch_delta = 6; -inline bool CSubtickMoveStep::_internal_has_analog_pitch_delta() const { +// optional float pitch_delta = 8; +inline bool CSubtickMoveStep::_internal_has_pitch_delta() const { bool value = (_impl_._has_bits_[0] & 0x00000020u) != 0; return value; } -inline bool CSubtickMoveStep::has_analog_pitch_delta() const { - return _internal_has_analog_pitch_delta(); +inline bool CSubtickMoveStep::has_pitch_delta() const { + return _internal_has_pitch_delta(); } -inline void CSubtickMoveStep::clear_analog_pitch_delta() { - _impl_.analog_pitch_delta_ = 0; +inline void CSubtickMoveStep::clear_pitch_delta() { + _impl_.pitch_delta_ = 0; _impl_._has_bits_[0] &= ~0x00000020u; } -inline float CSubtickMoveStep::_internal_analog_pitch_delta() const { - return _impl_.analog_pitch_delta_; +inline float CSubtickMoveStep::_internal_pitch_delta() const { + return _impl_.pitch_delta_; } -inline float CSubtickMoveStep::analog_pitch_delta() const { - // @@protoc_insertion_point(field_get:CSubtickMoveStep.analog_pitch_delta) - return _internal_analog_pitch_delta(); +inline float CSubtickMoveStep::pitch_delta() const { + // @@protoc_insertion_point(field_get:CSubtickMoveStep.pitch_delta) + return _internal_pitch_delta(); } -inline void CSubtickMoveStep::_internal_set_analog_pitch_delta(float value) { +inline void CSubtickMoveStep::_internal_set_pitch_delta(float value) { _impl_._has_bits_[0] |= 0x00000020u; - _impl_.analog_pitch_delta_ = value; + _impl_.pitch_delta_ = value; } -inline void CSubtickMoveStep::set_analog_pitch_delta(float value) { - _internal_set_analog_pitch_delta(value); - // @@protoc_insertion_point(field_set:CSubtickMoveStep.analog_pitch_delta) +inline void CSubtickMoveStep::set_pitch_delta(float value) { + _internal_set_pitch_delta(value); + // @@protoc_insertion_point(field_set:CSubtickMoveStep.pitch_delta) } -// optional float analog_yaw_delta = 7; -inline bool CSubtickMoveStep::_internal_has_analog_yaw_delta() const { +// optional float yaw_delta = 9; +inline bool CSubtickMoveStep::_internal_has_yaw_delta() const { bool value = (_impl_._has_bits_[0] & 0x00000040u) != 0; return value; } -inline bool CSubtickMoveStep::has_analog_yaw_delta() const { - return _internal_has_analog_yaw_delta(); +inline bool CSubtickMoveStep::has_yaw_delta() const { + return _internal_has_yaw_delta(); } -inline void CSubtickMoveStep::clear_analog_yaw_delta() { - _impl_.analog_yaw_delta_ = 0; +inline void CSubtickMoveStep::clear_yaw_delta() { + _impl_.yaw_delta_ = 0; _impl_._has_bits_[0] &= ~0x00000040u; } -inline float CSubtickMoveStep::_internal_analog_yaw_delta() const { - return _impl_.analog_yaw_delta_; +inline float CSubtickMoveStep::_internal_yaw_delta() const { + return _impl_.yaw_delta_; } -inline float CSubtickMoveStep::analog_yaw_delta() const { - // @@protoc_insertion_point(field_get:CSubtickMoveStep.analog_yaw_delta) - return _internal_analog_yaw_delta(); +inline float CSubtickMoveStep::yaw_delta() const { + // @@protoc_insertion_point(field_get:CSubtickMoveStep.yaw_delta) + return _internal_yaw_delta(); } -inline void CSubtickMoveStep::_internal_set_analog_yaw_delta(float value) { +inline void CSubtickMoveStep::_internal_set_yaw_delta(float value) { _impl_._has_bits_[0] |= 0x00000040u; - _impl_.analog_yaw_delta_ = value; + _impl_.yaw_delta_ = value; } -inline void CSubtickMoveStep::set_analog_yaw_delta(float value) { - _internal_set_analog_yaw_delta(value); - // @@protoc_insertion_point(field_set:CSubtickMoveStep.analog_yaw_delta) +inline void CSubtickMoveStep::set_yaw_delta(float value) { + _internal_set_yaw_delta(value); + // @@protoc_insertion_point(field_set:CSubtickMoveStep.yaw_delta) } // ------------------------------------------------------------------- diff --git a/protobuf/generated/usermessages.pb.cc b/protobuf/generated/usermessages.pb.cc index 4eb73738b..353c543b0 100644 --- a/protobuf/generated/usermessages.pb.cc +++ b/protobuf/generated/usermessages.pb.cc @@ -1206,6 +1206,7 @@ PROTOBUF_CONSTEXPR CUserMsg_ParticleManager_AddFan::CUserMsg_ParticleManager_Add /*decltype(_impl_._has_bits_)*/{} , /*decltype(_impl_._cached_size_)*/{} , /*decltype(_impl_.fan_force_curve_)*/{&::_pbi::fixed_address_empty_string, ::_pbi::ConstantInitialized{}} + , /*decltype(_impl_.attachment_name_)*/{&::_pbi::fixed_address_empty_string, ::_pbi::ConstantInitialized{}} , /*decltype(_impl_.bounds_mins_)*/nullptr , /*decltype(_impl_.bounds_maxs_)*/nullptr , /*decltype(_impl_.fan_origin_)*/nullptr @@ -1216,7 +1217,12 @@ PROTOBUF_CONSTEXPR CUserMsg_ParticleManager_AddFan::CUserMsg_ParticleManager_Add , /*decltype(_impl_.pull_towards_point_)*/false , /*decltype(_impl_.force_)*/0 , /*decltype(_impl_.curve_min_dist_)*/0 - , /*decltype(_impl_.curve_max_dist_)*/0} {} + , /*decltype(_impl_.curve_max_dist_)*/0 + , /*decltype(_impl_.fan_type_)*/0u + , /*decltype(_impl_.cone_start_radius_)*/0 + , /*decltype(_impl_.cone_end_radius_)*/0 + , /*decltype(_impl_.cone_length_)*/0 + , /*decltype(_impl_.entity_handle_)*/16777215u} {} struct CUserMsg_ParticleManager_AddFanDefaultTypeInternal { PROTOBUF_CONSTEXPR CUserMsg_ParticleManager_AddFanDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} @@ -1246,6 +1252,17 @@ struct CUserMsg_ParticleManager_UpdateFanDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CUserMsg_ParticleManager_UpdateFanDefaultTypeInternal _CUserMsg_ParticleManager_UpdateFan_default_instance_; +PROTOBUF_CONSTEXPR CUserMsg_ParticleManager_RemoveFan::CUserMsg_ParticleManager_RemoveFan( + ::_pbi::ConstantInitialized) {} +struct CUserMsg_ParticleManager_RemoveFanDefaultTypeInternal { + PROTOBUF_CONSTEXPR CUserMsg_ParticleManager_RemoveFanDefaultTypeInternal() + : _instance(::_pbi::ConstantInitialized{}) {} + ~CUserMsg_ParticleManager_RemoveFanDefaultTypeInternal() {} + union { + CUserMsg_ParticleManager_RemoveFan _instance; + }; +}; +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CUserMsg_ParticleManager_RemoveFanDefaultTypeInternal _CUserMsg_ParticleManager_RemoveFan_default_instance_; PROTOBUF_CONSTEXPR CUserMsg_ParticleManager_SetParticleClusterGrowth::CUserMsg_ParticleManager_SetParticleClusterGrowth( ::_pbi::ConstantInitialized): _impl_{ /*decltype(_impl_._has_bits_)*/{} @@ -1304,6 +1321,7 @@ PROTOBUF_CONSTEXPR CUserMsg_ParticleManager::CUserMsg_ParticleManager( , /*decltype(_impl_.add_fan_)*/nullptr , /*decltype(_impl_.update_fan_)*/nullptr , /*decltype(_impl_.set_particle_cluster_growth_)*/nullptr + , /*decltype(_impl_.remove_fan_)*/nullptr , /*decltype(_impl_.type_)*/0 , /*decltype(_impl_.index_)*/0u} {} struct CUserMsg_ParticleManagerDefaultTypeInternal { @@ -1799,7 +1817,7 @@ struct CUserMessage_PlayResponseConditionalDefaultTypeInternal { }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 CUserMessage_PlayResponseConditionalDefaultTypeInternal _CUserMessage_PlayResponseConditional_default_instance_; -static ::_pb::Metadata file_level_metadata_usermessages_2eproto[106]; +static ::_pb::Metadata file_level_metadata_usermessages_2eproto[107]; static const ::_pb::EnumDescriptor* file_level_enum_descriptors_usermessages_2eproto[5]; static constexpr ::_pb::ServiceDescriptor const** file_level_service_descriptors_usermessages_2eproto = nullptr; @@ -2682,18 +2700,30 @@ const uint32_t TableStruct_usermessages_2eproto::offsets[] PROTOBUF_SECTION_VARI PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_AddFan, _impl_.pull_towards_point_), PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_AddFan, _impl_.curve_min_dist_), PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_AddFan, _impl_.curve_max_dist_), - 6, - 1, + PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_AddFan, _impl_.fan_type_), + PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_AddFan, _impl_.cone_start_radius_), + PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_AddFan, _impl_.cone_end_radius_), + PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_AddFan, _impl_.cone_length_), + PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_AddFan, _impl_.entity_handle_), + PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_AddFan, _impl_.attachment_name_), + 7, 2, 3, 4, 5, - 9, + 6, + 10, 0, - 7, 8, - 10, + 9, 11, + 12, + 13, + 14, + 15, + 16, + 17, + 1, PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_UpdateFan, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_UpdateFan, _internal_metadata_), ~0u, // no _extensions_ @@ -2714,6 +2744,12 @@ const uint32_t TableStruct_usermessages_2eproto::offsets[] PROTOBUF_SECTION_VARI 6, 3, 4, + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_RemoveFan, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_SetParticleClusterGrowth, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager_SetParticleClusterGrowth, _internal_metadata_), ~0u, // no _extensions_ @@ -2770,8 +2806,9 @@ const uint32_t TableStruct_usermessages_2eproto::offsets[] PROTOBUF_SECTION_VARI PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager, _impl_.add_fan_), PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager, _impl_.update_fan_), PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager, _impl_.set_particle_cluster_growth_), - 38, + PROTOBUF_FIELD_OFFSET(::CUserMsg_ParticleManager, _impl_.remove_fan_), 39, + 40, 0, 1, 2, @@ -2810,6 +2847,7 @@ const uint32_t TableStruct_usermessages_2eproto::offsets[] PROTOBUF_SECTION_VARI 35, 36, 37, + 38, PROTOBUF_FIELD_OFFSET(::CUserMsg_HudError, _impl_._has_bits_), PROTOBUF_FIELD_OFFSET(::CUserMsg_HudError, _internal_metadata_), ~0u, // no _extensions_ @@ -3327,36 +3365,37 @@ static const ::_pbi::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protode { 836, -1, -1, sizeof(::CUserMsg_ParticleManager_DestroyPhysicsSim)}, { 842, 849, -1, sizeof(::CUserMsg_ParticleManager_SetVData)}, { 850, 858, -1, sizeof(::CUserMsg_ParticleManager_SetMaterialOverride)}, - { 860, 878, -1, sizeof(::CUserMsg_ParticleManager_AddFan)}, - { 890, 903, -1, sizeof(::CUserMsg_ParticleManager_UpdateFan)}, - { 910, 918, -1, sizeof(::CUserMsg_ParticleManager_SetParticleClusterGrowth)}, - { 920, 966, -1, sizeof(::CUserMsg_ParticleManager)}, - { 1006, 1013, -1, sizeof(::CUserMsg_HudError)}, - { 1014, 1022, -1, sizeof(::CUserMsg_CustomGameEvent)}, - { 1024, 1034, -1, sizeof(::CUserMessageHapticsManagerPulse)}, - { 1038, 1047, -1, sizeof(::CUserMessageHapticsManagerEffect)}, - { 1050, 1058, -1, sizeof(::CUserMessageAnimStateGraphState)}, - { 1060, 1069, -1, sizeof(::CUserMessageUpdateCssClasses)}, - { 1072, 1079, -1, sizeof(::CUserMessageServerFrameTime)}, - { 1080, 1087, -1, sizeof(::CUserMessageLagCompensationError)}, - { 1088, 1096, -1, sizeof(::CUserMessageRequestDllStatus)}, - { 1098, 1109, -1, sizeof(::CUserMessageRequestUtilAction)}, - { 1114, 1124, -1, sizeof(::CUserMessage_UtilMsg_Response_ItemDetail)}, - { 1128, 1146, -1, sizeof(::CUserMessage_UtilMsg_Response)}, - { 1158, 1168, -1, sizeof(::CUserMessage_DllStatus_CVDiagnostic)}, - { 1172, 1182, -1, sizeof(::CUserMessage_DllStatus_CModule)}, - { 1186, 1200, -1, sizeof(::CUserMessage_DllStatus)}, - { 1208, 1217, -1, sizeof(::CUserMessageRequestInventory)}, - { 1220, 1236, -1, sizeof(::CUserMessage_Inventory_Response_InventoryDetail)}, - { 1246, 1265, -1, sizeof(::CUserMessage_Inventory_Response)}, - { 1278, 1297, -1, sizeof(::CUserMessageRequestDiagnostic_Diagnostic)}, - { 1310, -1, -1, sizeof(::CUserMessageRequestDiagnostic)}, - { 1317, 1338, -1, sizeof(::CUserMessage_Diagnostic_Response_Diagnostic)}, - { 1353, 1365, -1, sizeof(::CUserMessage_Diagnostic_Response)}, - { 1371, 1382, -1, sizeof(::CUserMessage_ExtraUserData)}, - { 1387, 1395, -1, sizeof(::CUserMessage_NotifyResponseFound_Criteria)}, - { 1397, 1415, -1, sizeof(::CUserMessage_NotifyResponseFound)}, - { 1427, 1439, -1, sizeof(::CUserMessage_PlayResponseConditional)}, + { 860, 884, -1, sizeof(::CUserMsg_ParticleManager_AddFan)}, + { 902, 915, -1, sizeof(::CUserMsg_ParticleManager_UpdateFan)}, + { 922, -1, -1, sizeof(::CUserMsg_ParticleManager_RemoveFan)}, + { 928, 936, -1, sizeof(::CUserMsg_ParticleManager_SetParticleClusterGrowth)}, + { 938, 985, -1, sizeof(::CUserMsg_ParticleManager)}, + { 1026, 1033, -1, sizeof(::CUserMsg_HudError)}, + { 1034, 1042, -1, sizeof(::CUserMsg_CustomGameEvent)}, + { 1044, 1054, -1, sizeof(::CUserMessageHapticsManagerPulse)}, + { 1058, 1067, -1, sizeof(::CUserMessageHapticsManagerEffect)}, + { 1070, 1078, -1, sizeof(::CUserMessageAnimStateGraphState)}, + { 1080, 1089, -1, sizeof(::CUserMessageUpdateCssClasses)}, + { 1092, 1099, -1, sizeof(::CUserMessageServerFrameTime)}, + { 1100, 1107, -1, sizeof(::CUserMessageLagCompensationError)}, + { 1108, 1116, -1, sizeof(::CUserMessageRequestDllStatus)}, + { 1118, 1129, -1, sizeof(::CUserMessageRequestUtilAction)}, + { 1134, 1144, -1, sizeof(::CUserMessage_UtilMsg_Response_ItemDetail)}, + { 1148, 1166, -1, sizeof(::CUserMessage_UtilMsg_Response)}, + { 1178, 1188, -1, sizeof(::CUserMessage_DllStatus_CVDiagnostic)}, + { 1192, 1202, -1, sizeof(::CUserMessage_DllStatus_CModule)}, + { 1206, 1220, -1, sizeof(::CUserMessage_DllStatus)}, + { 1228, 1237, -1, sizeof(::CUserMessageRequestInventory)}, + { 1240, 1256, -1, sizeof(::CUserMessage_Inventory_Response_InventoryDetail)}, + { 1266, 1285, -1, sizeof(::CUserMessage_Inventory_Response)}, + { 1298, 1317, -1, sizeof(::CUserMessageRequestDiagnostic_Diagnostic)}, + { 1330, -1, -1, sizeof(::CUserMessageRequestDiagnostic)}, + { 1337, 1358, -1, sizeof(::CUserMessage_Diagnostic_Response_Diagnostic)}, + { 1373, 1385, -1, sizeof(::CUserMessage_Diagnostic_Response)}, + { 1391, 1402, -1, sizeof(::CUserMessage_ExtraUserData)}, + { 1407, 1415, -1, sizeof(::CUserMessage_NotifyResponseFound_Criteria)}, + { 1417, 1435, -1, sizeof(::CUserMessage_NotifyResponseFound)}, + { 1447, 1459, -1, sizeof(::CUserMessage_PlayResponseConditional)}, }; static const ::_pb::Message* const file_default_instances[] = { @@ -3438,6 +3477,7 @@ static const ::_pb::Message* const file_default_instances[] = { &::_CUserMsg_ParticleManager_SetMaterialOverride_default_instance_._instance, &::_CUserMsg_ParticleManager_AddFan_default_instance_._instance, &::_CUserMsg_ParticleManager_UpdateFan_default_instance_._instance, + &::_CUserMsg_ParticleManager_RemoveFan_default_instance_._instance, &::_CUserMsg_ParticleManager_SetParticleClusterGrowth_default_instance_._instance, &::_CUserMsg_ParticleManager_default_instance_._instance, &::_CUserMsg_HudError_default_instance_._instance, @@ -3552,7 +3592,7 @@ const char descriptor_table_protodef_usermessages_2eproto[] PROTOBUF_SECTION_VAR "nsition.Transition_DataDriven\032Y\n\025Transit" "ion_DataDriven\022\020\n\010filename\030\001 \001(\t\022\034\n\020atta" "ch_ent_index\030\002 \001(\005:\002-1\022\020\n\010duration\030\003 \001(\002" - "\"\310;\n\030CUserMsg_ParticleManager\022C\n\004type\030\001 " + "\"\243=\n\030CUserMsg_ParticleManager\022C\n\004type\030\001 " "\002(\0162\021.PARTICLE_MESSAGE:\"GAME_PARTICLE_MA" "NAGER_EVENT_CREATE\022\r\n\005index\030\002 \002(\r\022N\n\026rel" "ease_particle_index\030\003 \001(\0132..CUserMsg_Par" @@ -3631,311 +3671,318 @@ const char descriptor_table_protodef_usermessages_2eproto[] PROTOBUF_SECTION_VAR "AddFan\0227\n\nupdate_fan\030( \001(\0132#.CUserMsg_Pa" "rticleManager.UpdateFan\022W\n\033set_particle_" "cluster_growth\030) \001(\01322.CUserMsg_Particle" - "Manager.SetParticleClusterGrowth\032\026\n\024Rele" - "aseParticleIndex\032\276\002\n\016CreateParticle\022\033\n\023p" - "article_name_index\030\001 \001(\006\022\023\n\013attach_type\030" - "\002 \001(\005\022\037\n\rentity_handle\030\003 \001(\r:\01016777215\022-" - "\n\033entity_handle_for_modifiers\030\004 \001(\r:\010167" - "77215\022\035\n\025apply_voice_ban_rules\030\005 \001(\010\022\025\n\r" - "team_behavior\030\006 \001(\005\022#\n\033control_point_con" - "figuration\030\007 \001(\t\022\017\n\007cluster\030\010 \001(\010\022\023\n\013end" - "cap_time\030\t \001(\002\022)\n\024aggregation_position\030\n" - " \001(\0132\013.CMsgVector\032.\n\017DestroyParticle\022\033\n\023" - "destroy_immediately\030\001 \001(\010\032X\n\030DestroyPart" - "icleInvolving\022\033\n\023destroy_immediately\030\001 \001" - "(\010\022\037\n\rentity_handle\030\003 \001(\r:\01016777215\032\206\001\n\024" - "DestroyParticleNamed\022\033\n\023particle_name_in" - "dex\030\001 \001(\006\022\037\n\rentity_handle\030\002 \001(\r:\010167772" - "15\022\033\n\023destroy_immediately\030\003 \001(\010\022\023\n\013play_" - "endcap\030\004 \001(\010\032O\n\027UpdateParticle_OBSOLETE\022" + "Manager.SetParticleClusterGrowth\0227\n\nremo" + "ve_fan\030* \001(\0132#.CUserMsg_ParticleManager." + "RemoveFan\032\026\n\024ReleaseParticleIndex\032\276\002\n\016Cr" + "eateParticle\022\033\n\023particle_name_index\030\001 \001(" + "\006\022\023\n\013attach_type\030\002 \001(\005\022\037\n\rentity_handle\030" + "\003 \001(\r:\01016777215\022-\n\033entity_handle_for_mod" + "ifiers\030\004 \001(\r:\01016777215\022\035\n\025apply_voice_ba" + "n_rules\030\005 \001(\010\022\025\n\rteam_behavior\030\006 \001(\005\022#\n\033" + "control_point_configuration\030\007 \001(\t\022\017\n\007clu" + "ster\030\010 \001(\010\022\023\n\013endcap_time\030\t \001(\002\022)\n\024aggre" + "gation_position\030\n \001(\0132\013.CMsgVector\032.\n\017De" + "stroyParticle\022\033\n\023destroy_immediately\030\001 \001" + "(\010\032X\n\030DestroyParticleInvolving\022\033\n\023destro" + "y_immediately\030\001 \001(\010\022\037\n\rentity_handle\030\003 \001" + "(\r:\01016777215\032\206\001\n\024DestroyParticleNamed\022\033\n" + "\023particle_name_index\030\001 \001(\006\022\037\n\rentity_han" + "dle\030\002 \001(\r:\01016777215\022\033\n\023destroy_immediate" + "ly\030\003 \001(\010\022\023\n\013play_endcap\030\004 \001(\010\032O\n\027UpdateP" + "article_OBSOLETE\022\025\n\rcontrol_point\030\001 \001(\005\022" + "\035\n\010position\030\002 \001(\0132\013.CMsgVector\032Q\n\032Update" + "ParticleFwd_OBSOLETE\022\025\n\rcontrol_point\030\001 " + "\001(\005\022\034\n\007forward\030\002 \001(\0132\013.CMsgVector\032\257\001\n\035Up" + "dateParticleOrient_OBSOLETE\022\025\n\rcontrol_p" + "oint\030\001 \001(\005\022\034\n\007forward\030\002 \001(\0132\013.CMsgVector" + "\022%\n\020deprecated_right\030\003 \001(\0132\013.CMsgVector\022" + "\027\n\002up\030\004 \001(\0132\013.CMsgVector\022\031\n\004left\030\005 \001(\0132\013" + ".CMsgVector\032\225\001\n\027UpdateParticleTransform\022" "\025\n\rcontrol_point\030\001 \001(\005\022\035\n\010position\030\002 \001(\013" - "2\013.CMsgVector\032Q\n\032UpdateParticleFwd_OBSOL" - "ETE\022\025\n\rcontrol_point\030\001 \001(\005\022\034\n\007forward\030\002 " - "\001(\0132\013.CMsgVector\032\257\001\n\035UpdateParticleOrien" - "t_OBSOLETE\022\025\n\rcontrol_point\030\001 \001(\005\022\034\n\007for" - "ward\030\002 \001(\0132\013.CMsgVector\022%\n\020deprecated_ri" - "ght\030\003 \001(\0132\013.CMsgVector\022\027\n\002up\030\004 \001(\0132\013.CMs" - "gVector\022\031\n\004left\030\005 \001(\0132\013.CMsgVector\032\225\001\n\027U" - "pdateParticleTransform\022\025\n\rcontrol_point\030" - "\001 \001(\005\022\035\n\010position\030\002 \001(\0132\013.CMsgVector\022$\n\013" - "orientation\030\003 \001(\0132\017.CMsgQuaternion\022\036\n\026in" - "terpolation_interval\030\004 \001(\002\032N\n\026UpdatePart" - "icleFallback\022\025\n\rcontrol_point\030\001 \001(\005\022\035\n\010p" - "osition\030\002 \001(\0132\013.CMsgVector\032t\n\024UpdatePart" - "icleOffset\022\025\n\rcontrol_point\030\001 \001(\005\022\"\n\rori" - "gin_offset\030\002 \001(\0132\013.CMsgVector\022!\n\014angle_o" - "ffset\030\003 \001(\0132\013.CMsgQAngle\032\201\002\n\021UpdateParti" - "cleEnt\022\025\n\rcontrol_point\030\001 \001(\005\022\037\n\rentity_" - "handle\030\002 \001(\r:\01016777215\022\023\n\013attach_type\030\003 " - "\001(\005\022\022\n\nattachment\030\004 \001(\005\022&\n\021fallback_posi" - "tion\030\005 \001(\0132\013.CMsgVector\022\031\n\021include_weara" - "bles\030\006 \001(\010\022$\n\017offset_position\030\007 \001(\0132\013.CM" - "sgVector\022\"\n\roffset_angles\030\010 \001(\0132\013.CMsgQA" - "ngle\032J\n\027UpdateParticleSetFrozen\022\022\n\nset_f" - "rozen\030\001 \001(\010\022\033\n\023transition_duration\030\002 \001(\002" - "\032/\n\030UpdateParticleShouldDraw\022\023\n\013should_d" - "raw\030\001 \001(\010\032o\n\034ChangeControlPointAttachmen" - "t\022\026\n\016attachment_old\030\001 \001(\005\022\026\n\016attachment_" - "new\030\002 \001(\005\022\037\n\rentity_handle\030\003 \001(\r:\010167772" - "15\032V\n\024UpdateEntityPosition\022\037\n\rentity_han" - "dle\030\001 \001(\r:\01016777215\022\035\n\010position\030\002 \001(\0132\013." - "CMsgVector\032e\n\030SetParticleFoWProperties\022\031" - "\n\021fow_control_point\030\001 \001(\005\022\032\n\022fow_control" - "_point2\030\002 \001(\005\022\022\n\nfow_radius\030\003 \001(\002\032.\n\031Set" - "ParticleShouldCheckFoW\022\021\n\tcheck_fow\030\001 \001(" - "\010\032A\n\024SetControlPointModel\022\025\n\rcontrol_poi" - "nt\030\001 \001(\005\022\022\n\nmodel_name\030\002 \001(\t\032G\n\027SetContr" - "olPointSnapshot\022\025\n\rcontrol_point\030\001 \001(\005\022\025" - "\n\rsnapshot_name\030\002 \001(\t\032\037\n\017SetParticleText" - "\022\014\n\004text\030\001 \001(\t\032C\n\023SetTextureAttribute\022\026\n" - "\016attribute_name\030\001 \001(\t\022\024\n\014texture_name\030\002 " - "\001(\t\032/\n\031SetSceneObjectGenericFlag\022\022\n\nflag" - "_value\030\001 \001(\010\0329\n\032SetSceneObjectTintAndDes" - "at\022\014\n\004tint\030\001 \001(\007\022\r\n\005desat\030\002 \001(\002\032*\n\022Parti" - "cleSkipToTime\022\024\n\014skip_to_time\030\001 \001(\002\032\'\n\021P" - "articleCanFreeze\022\022\n\ncan_freeze\030\001 \001(\010\032F\n " - "ParticleFreezeTransitionOverride\022\"\n\032free" - "ze_transition_override\030\001 \001(\002\032k\n\027FreezePa" - "rticleInvolving\022\022\n\nset_frozen\030\001 \001(\010\022\033\n\023t" - "ransition_duration\030\002 \001(\002\022\037\n\rentity_handl" - "e\030\003 \001(\r:\01016777215\032]\n\033AddModellistOverrid" - "eElement\022\022\n\nmodel_name\030\001 \001(\t\022\031\n\021spawn_pr" - "obability\030\002 \001(\002\022\017\n\007groupid\030\003 \001(\r\032)\n\026Clea" - "rModellistOverride\022\017\n\007groupid\030\001 \001(\r\032\350\005\n\034" - "SetParticleNamedValueContext\022^\n\014float_va" - "lues\030\001 \003(\0132H.CUserMsg_ParticleManager.Se" - "tParticleNamedValueContext.FloatContextV" - "alue\022`\n\rvector_values\030\002 \003(\0132I.CUserMsg_P" + "2\013.CMsgVector\022$\n\013orientation\030\003 \001(\0132\017.CMs" + "gQuaternion\022\036\n\026interpolation_interval\030\004 " + "\001(\002\032N\n\026UpdateParticleFallback\022\025\n\rcontrol" + "_point\030\001 \001(\005\022\035\n\010position\030\002 \001(\0132\013.CMsgVec" + "tor\032t\n\024UpdateParticleOffset\022\025\n\rcontrol_p" + "oint\030\001 \001(\005\022\"\n\rorigin_offset\030\002 \001(\0132\013.CMsg" + "Vector\022!\n\014angle_offset\030\003 \001(\0132\013.CMsgQAngl" + "e\032\201\002\n\021UpdateParticleEnt\022\025\n\rcontrol_point" + "\030\001 \001(\005\022\037\n\rentity_handle\030\002 \001(\r:\01016777215\022" + "\023\n\013attach_type\030\003 \001(\005\022\022\n\nattachment\030\004 \001(\005" + "\022&\n\021fallback_position\030\005 \001(\0132\013.CMsgVector" + "\022\031\n\021include_wearables\030\006 \001(\010\022$\n\017offset_po" + "sition\030\007 \001(\0132\013.CMsgVector\022\"\n\roffset_angl" + "es\030\010 \001(\0132\013.CMsgQAngle\032J\n\027UpdateParticleS" + "etFrozen\022\022\n\nset_frozen\030\001 \001(\010\022\033\n\023transiti" + "on_duration\030\002 \001(\002\032/\n\030UpdateParticleShoul" + "dDraw\022\023\n\013should_draw\030\001 \001(\010\032o\n\034ChangeCont" + "rolPointAttachment\022\026\n\016attachment_old\030\001 \001" + "(\005\022\026\n\016attachment_new\030\002 \001(\005\022\037\n\rentity_han" + "dle\030\003 \001(\r:\01016777215\032V\n\024UpdateEntityPosit" + "ion\022\037\n\rentity_handle\030\001 \001(\r:\01016777215\022\035\n\010" + "position\030\002 \001(\0132\013.CMsgVector\032e\n\030SetPartic" + "leFoWProperties\022\031\n\021fow_control_point\030\001 \001" + "(\005\022\032\n\022fow_control_point2\030\002 \001(\005\022\022\n\nfow_ra" + "dius\030\003 \001(\002\032.\n\031SetParticleShouldCheckFoW\022" + "\021\n\tcheck_fow\030\001 \001(\010\032A\n\024SetControlPointMod" + "el\022\025\n\rcontrol_point\030\001 \001(\005\022\022\n\nmodel_name\030" + "\002 \001(\t\032G\n\027SetControlPointSnapshot\022\025\n\rcont" + "rol_point\030\001 \001(\005\022\025\n\rsnapshot_name\030\002 \001(\t\032\037" + "\n\017SetParticleText\022\014\n\004text\030\001 \001(\t\032C\n\023SetTe" + "xtureAttribute\022\026\n\016attribute_name\030\001 \001(\t\022\024" + "\n\014texture_name\030\002 \001(\t\032/\n\031SetSceneObjectGe" + "nericFlag\022\022\n\nflag_value\030\001 \001(\010\0329\n\032SetScen" + "eObjectTintAndDesat\022\014\n\004tint\030\001 \001(\007\022\r\n\005des" + "at\030\002 \001(\002\032*\n\022ParticleSkipToTime\022\024\n\014skip_t" + "o_time\030\001 \001(\002\032\'\n\021ParticleCanFreeze\022\022\n\ncan" + "_freeze\030\001 \001(\010\032F\n ParticleFreezeTransitio" + "nOverride\022\"\n\032freeze_transition_override\030" + "\001 \001(\002\032k\n\027FreezeParticleInvolving\022\022\n\nset_" + "frozen\030\001 \001(\010\022\033\n\023transition_duration\030\002 \001(" + "\002\022\037\n\rentity_handle\030\003 \001(\r:\01016777215\032]\n\033Ad" + "dModellistOverrideElement\022\022\n\nmodel_name\030" + "\001 \001(\t\022\031\n\021spawn_probability\030\002 \001(\002\022\017\n\007grou" + "pid\030\003 \001(\r\032)\n\026ClearModellistOverride\022\017\n\007g" + "roupid\030\001 \001(\r\032\350\005\n\034SetParticleNamedValueCo" + "ntext\022^\n\014float_values\030\001 \003(\0132H.CUserMsg_P" "articleManager.SetParticleNamedValueCont" - "ext.VectorContextValue\022f\n\020transform_valu" - "es\030\003 \003(\0132L.CUserMsg_ParticleManager.SetP" - "articleNamedValueContext.TransformContex" - "tValue\022]\n\016ehandle_values\030\004 \003(\0132E.CUserMs" - "g_ParticleManager.SetParticleNamedValueC" - "ontext.EHandleContext\032;\n\021FloatContextVal" - "ue\022\027\n\017value_name_hash\030\001 \001(\r\022\r\n\005value\030\002 \001" - "(\002\032I\n\022VectorContextValue\022\027\n\017value_name_h" - "ash\030\001 \001(\r\022\032\n\005value\030\002 \001(\0132\013.CMsgVector\032o\n" - "\025TransformContextValue\022\027\n\017value_name_has" - "h\030\001 \001(\r\022\033\n\006angles\030\002 \001(\0132\013.CMsgQAngle\022 \n\013" - "translation\030\003 \001(\0132\013.CMsgVector\032F\n\016EHandl" - "eContext\022\027\n\017value_name_hash\030\001 \001(\r\022\033\n\tent" - "_index\030\002 \001(\r:\01016777215\032l\n\020CreatePhysicsS" - "im\022\027\n\017prop_group_name\030\001 \001(\t\022#\n\033use_high_" - "quality_simulation\030\002 \001(\010\022\032\n\022max_particle" - "_count\030\003 \001(\r\032\023\n\021DestroyPhysicsSim\032\036\n\010Set" - "VData\022\022\n\nvdata_name\030\001 \001(\t\032F\n\023SetMaterial" - "Override\022\025\n\rmaterial_name\030\001 \001(\t\022\030\n\020inclu" - "de_children\030\002 \001(\010\032\316\002\n\006AddFan\022\016\n\006active\030\001" - " \001(\010\022 \n\013bounds_mins\030\002 \001(\0132\013.CMsgVector\022 " - "\n\013bounds_maxs\030\003 \001(\0132\013.CMsgVector\022\037\n\nfan_" - "origin\030\004 \001(\0132\013.CMsgVector\022&\n\021fan_origin_" - "offset\030\005 \001(\0132\013.CMsgVector\022\"\n\rfan_directi" - "on\030\006 \001(\0132\013.CMsgVector\022\r\n\005force\030\007 \001(\002\022\027\n\017" - "fan_force_curve\030\010 \001(\t\022\017\n\007falloff\030\t \001(\010\022\032" - "\n\022pull_towards_point\030\n \001(\010\022\026\n\016curve_min_" - "dist\030\013 \001(\002\022\026\n\016curve_max_dist\030\014 \001(\002\032\344\001\n\tU" - "pdateFan\022\016\n\006active\030\001 \001(\010\022\037\n\nfan_origin\030\002" - " \001(\0132\013.CMsgVector\022&\n\021fan_origin_offset\030\003" - " \001(\0132\013.CMsgVector\022\"\n\rfan_direction\030\004 \001(\013" - "2\013.CMsgVector\022\026\n\016fan_ramp_ratio\030\007 \001(\002\022 \n" - "\013bounds_mins\030\005 \001(\0132\013.CMsgVector\022 \n\013bound" - "s_maxs\030\006 \001(\0132\013.CMsgVector\032I\n\030SetParticle" - "ClusterGrowth\022\020\n\010duration\030\001 \001(\002\022\033\n\006origi" - "n\030\002 \001(\0132\013.CMsgVector*\005\010d\020\312\001\"%\n\021CUserMsg_" - "HudError\022\020\n\010order_id\030\001 \001(\005\"<\n\030CUserMsg_C" - "ustomGameEvent\022\022\n\nevent_name\030\001 \001(\t\022\014\n\004da" - "ta\030\002 \001(\014\"\177\n\037CUserMessageHapticsManagerPu" - "lse\022\017\n\007hand_id\030\001 \001(\005\022\030\n\020effect_amplitude" - "\030\002 \001(\002\022\030\n\020effect_frequency\030\003 \001(\002\022\027\n\017effe" - "ct_duration\030\004 \001(\002\"h\n CUserMessageHaptics" - "ManagerEffect\022\017\n\007hand_id\030\001 \001(\005\022\035\n\025effect" - "_name_hash_code\030\002 \001(\r\022\024\n\014effect_scale\030\003 " - "\001(\002\"E\n\037CUserMessageAnimStateGraphState\022\024" - "\n\014entity_index\030\001 \001(\005\022\014\n\004data\030\002 \001(\014\"_\n\034CU" - "serMessageUpdateCssClasses\022\032\n\022target_wor" - "ld_panel\030\001 \001(\005\022\023\n\013css_classes\030\002 \001(\t\022\016\n\006i" - "s_add\030\003 \001(\010\"1\n\033CUserMessageServerFrameTi" - "me\022\022\n\nframe_time\030\001 \001(\002\"4\n CUserMessageLa" - "gCompensationError\022\020\n\010distance\030\001 \001(\002\"G\n\034" - "CUserMessageRequestDllStatus\022\022\n\ndll_acti" - "on\030\001 \001(\t\022\023\n\013full_report\030\002 \001(\010\"j\n\035CUserMe" - "ssageRequestUtilAction\022\r\n\005util1\030\002 \001(\005\022\r\n" - "\005util2\030\003 \001(\005\022\r\n\005util3\030\004 \001(\005\022\r\n\005util4\030\005 \001" - "(\005\022\r\n\005util5\030\006 \001(\005\"\370\002\n\035CUserMessage_UtilM" - "sg_Response\022\013\n\003crc\030\001 \001(\007\022\022\n\nitem_count\030\002" - " \001(\005\022\014\n\004crc2\030\003 \001(\007\022\023\n\013item_count2\030\004 \001(\005\022" - "\020\n\010crc_part\030\005 \003(\005\022\021\n\tcrc_part2\030\006 \003(\005\022\030\n\020" - "client_timestamp\030\007 \001(\005\022\020\n\010platform\030\010 \001(\005" - "\022>\n\013itemdetails\030\t \003(\0132).CUserMessage_Uti" - "lMsg_Response.ItemDetail\022\021\n\titemgroup\030\n " - "\001(\005\022\023\n\013total_count\030\013 \001(\005\022\024\n\014total_count2" - "\030\014 \001(\005\032D\n\nItemDetail\022\r\n\005index\030\001 \001(\005\022\014\n\004h" - "ash\030\002 \001(\005\022\013\n\003crc\030\003 \001(\005\022\014\n\004name\030\004 \001(\t\"\241\003\n" - "\026CUserMessage_DllStatus\022\023\n\013file_report\030\001" - " \001(\t\022\024\n\014command_line\030\002 \001(\t\022\023\n\013total_file" - "s\030\003 \001(\r\022\022\n\nprocess_id\030\004 \001(\r\022\021\n\tosversion" - "\030\005 \001(\005\022\023\n\013client_time\030\006 \001(\004\0229\n\013diagnosti" - "cs\030\007 \003(\0132$.CUserMessage_DllStatus.CVDiag" - "nostic\0220\n\007modules\030\010 \003(\0132\037.CUserMessage_D" - "llStatus.CModule\032Q\n\014CVDiagnostic\022\n\n\002id\030\001" - " \001(\r\022\020\n\010extended\030\002 \001(\r\022\r\n\005value\030\003 \001(\004\022\024\n" - "\014string_value\030\004 \001(\t\032K\n\007CModule\022\021\n\tbase_a" - "ddr\030\001 \001(\004\022\014\n\004name\030\002 \001(\t\022\014\n\004size\030\003 \001(\r\022\021\n" - "\ttimestamp\030\004 \001(\r\"R\n\034CUserMessageRequestI" - "nventory\022\021\n\tinventory\030\001 \001(\005\022\016\n\006offset\030\002 " - "\001(\005\022\017\n\007options\030\003 \001(\005\"\367\004\n\037CUserMessage_In" - "ventory_Response\022\013\n\003crc\030\001 \001(\007\022\022\n\nitem_co" - "unt\030\002 \001(\005\022\021\n\tosversion\030\005 \001(\005\022\021\n\tperf_tim" - "e\030\006 \001(\005\022\030\n\020client_timestamp\030\007 \001(\005\022\020\n\010pla" - "tform\030\010 \001(\005\022E\n\013inventories\030\t \003(\01320.CUser" - "Message_Inventory_Response.InventoryDeta" - "il\022F\n\014inventories2\030\n \003(\01320.CUserMessage_" - "Inventory_Response.InventoryDetail\022F\n\014in" - "ventories3\030\016 \003(\01320.CUserMessage_Inventor" - "y_Response.InventoryDetail\022\020\n\010inv_type\030\013" - " \001(\005\022\025\n\rbuild_version\030\014 \001(\005\022\020\n\010instance\030" - "\r \001(\005\022\022\n\nstart_time\030\017 \001(\003\032\272\001\n\017InventoryD" - "etail\022\r\n\005index\030\001 \001(\005\022\017\n\007primary\030\002 \001(\003\022\016\n" - "\006offset\030\003 \001(\003\022\r\n\005first\030\004 \001(\003\022\014\n\004base\030\005 \001" - "(\003\022\014\n\004name\030\006 \001(\t\022\021\n\tbase_name\030\007 \001(\t\022\023\n\013b" - "ase_detail\030\010 \001(\005\022\021\n\tbase_time\030\t \001(\005\022\021\n\tb" - "ase_hash\030\n \001(\005\"\270\002\n\035CUserMessageRequestDi" - "agnostic\022>\n\013diagnostics\030\001 \003(\0132).CUserMes" - "sageRequestDiagnostic.Diagnostic\032\326\001\n\nDia" - "gnostic\022\r\n\005index\030\001 \001(\005\022\016\n\006offset\030\002 \001(\003\022\r" - "\n\005param\030\003 \001(\005\022\016\n\006length\030\004 \001(\005\022\014\n\004type\030\005 " - "\001(\005\022\014\n\004base\030\006 \001(\003\022\r\n\005range\030\007 \001(\003\022\016\n\006exte" - "nt\030\010 \001(\003\022\016\n\006detail\030\t \001(\003\022\014\n\004name\030\n \001(\t\022\r" - "\n\005alias\030\013 \001(\t\022\021\n\tvardetail\030\014 \001(\014\022\017\n\007cont" - "ext\030\r \001(\005\"\300\003\n CUserMessage_Diagnostic_Re" - "sponse\022A\n\013diagnostics\030\001 \003(\0132,.CUserMessa" - "ge_Diagnostic_Response.Diagnostic\022\025\n\rbui" - "ld_version\030\002 \001(\005\022\020\n\010instance\030\003 \001(\005\022\022\n\nst" - "art_time\030\004 \001(\003\022\021\n\tosversion\030\005 \001(\005\022\020\n\010pla" - "tform\030\006 \001(\005\032\366\001\n\nDiagnostic\022\r\n\005index\030\001 \001(" + "ext.FloatContextValue\022`\n\rvector_values\030\002" + " \003(\0132I.CUserMsg_ParticleManager.SetParti" + "cleNamedValueContext.VectorContextValue\022" + "f\n\020transform_values\030\003 \003(\0132L.CUserMsg_Par" + "ticleManager.SetParticleNamedValueContex" + "t.TransformContextValue\022]\n\016ehandle_value" + "s\030\004 \003(\0132E.CUserMsg_ParticleManager.SetPa" + "rticleNamedValueContext.EHandleContext\032;" + "\n\021FloatContextValue\022\027\n\017value_name_hash\030\001" + " \001(\r\022\r\n\005value\030\002 \001(\002\032I\n\022VectorContextValu" + "e\022\027\n\017value_name_hash\030\001 \001(\r\022\032\n\005value\030\002 \001(" + "\0132\013.CMsgVector\032o\n\025TransformContextValue\022" + "\027\n\017value_name_hash\030\001 \001(\r\022\033\n\006angles\030\002 \001(\013" + "2\013.CMsgQAngle\022 \n\013translation\030\003 \001(\0132\013.CMs" + "gVector\032F\n\016EHandleContext\022\027\n\017value_name_" + "hash\030\001 \001(\r\022\033\n\tent_index\030\002 \001(\r:\01016777215\032" + "l\n\020CreatePhysicsSim\022\027\n\017prop_group_name\030\001" + " \001(\t\022#\n\033use_high_quality_simulation\030\002 \001(" + "\010\022\032\n\022max_particle_count\030\003 \001(\r\032\023\n\021Destroy" + "PhysicsSim\032\036\n\010SetVData\022\022\n\nvdata_name\030\001 \001" + "(\t\032F\n\023SetMaterialOverride\022\025\n\rmaterial_na" + "me\030\001 \001(\t\022\030\n\020include_children\030\002 \001(\010\032\343\003\n\006A" + "ddFan\022\016\n\006active\030\001 \001(\010\022 \n\013bounds_mins\030\002 \001" + "(\0132\013.CMsgVector\022 \n\013bounds_maxs\030\003 \001(\0132\013.C" + "MsgVector\022\037\n\nfan_origin\030\004 \001(\0132\013.CMsgVect" + "or\022&\n\021fan_origin_offset\030\005 \001(\0132\013.CMsgVect" + "or\022\"\n\rfan_direction\030\006 \001(\0132\013.CMsgVector\022\r" + "\n\005force\030\007 \001(\002\022\027\n\017fan_force_curve\030\010 \001(\t\022\017" + "\n\007falloff\030\t \001(\010\022\032\n\022pull_towards_point\030\n " + "\001(\010\022\026\n\016curve_min_dist\030\013 \001(\002\022\026\n\016curve_max" + "_dist\030\014 \001(\002\022\020\n\010fan_type\030\r \001(\r\022\031\n\021cone_st" + "art_radius\030\016 \001(\002\022\027\n\017cone_end_radius\030\017 \001(" + "\002\022\023\n\013cone_length\030\020 \001(\002\022\037\n\rentity_handle\030" + "\021 \001(\r:\01016777215\022\027\n\017attachment_name\030\022 \001(\t" + "\032\344\001\n\tUpdateFan\022\016\n\006active\030\001 \001(\010\022\037\n\nfan_or" + "igin\030\002 \001(\0132\013.CMsgVector\022&\n\021fan_origin_of" + "fset\030\003 \001(\0132\013.CMsgVector\022\"\n\rfan_direction" + "\030\004 \001(\0132\013.CMsgVector\022\026\n\016fan_ramp_ratio\030\007 " + "\001(\002\022 \n\013bounds_mins\030\005 \001(\0132\013.CMsgVector\022 \n" + "\013bounds_maxs\030\006 \001(\0132\013.CMsgVector\032\013\n\tRemov" + "eFan\032I\n\030SetParticleClusterGrowth\022\020\n\010dura" + "tion\030\001 \001(\002\022\033\n\006origin\030\002 \001(\0132\013.CMsgVector*" + "\005\010d\020\312\001\"%\n\021CUserMsg_HudError\022\020\n\010order_id\030" + "\001 \001(\005\"<\n\030CUserMsg_CustomGameEvent\022\022\n\neve" + "nt_name\030\001 \001(\t\022\014\n\004data\030\002 \001(\014\"\177\n\037CUserMess" + "ageHapticsManagerPulse\022\017\n\007hand_id\030\001 \001(\005\022" + "\030\n\020effect_amplitude\030\002 \001(\002\022\030\n\020effect_freq" + "uency\030\003 \001(\002\022\027\n\017effect_duration\030\004 \001(\002\"h\n " + "CUserMessageHapticsManagerEffect\022\017\n\007hand" + "_id\030\001 \001(\005\022\035\n\025effect_name_hash_code\030\002 \001(\r" + "\022\024\n\014effect_scale\030\003 \001(\002\"E\n\037CUserMessageAn" + "imStateGraphState\022\024\n\014entity_index\030\001 \001(\005\022" + "\014\n\004data\030\002 \001(\014\"_\n\034CUserMessageUpdateCssCl" + "asses\022\032\n\022target_world_panel\030\001 \001(\005\022\023\n\013css" + "_classes\030\002 \001(\t\022\016\n\006is_add\030\003 \001(\010\"1\n\033CUserM" + "essageServerFrameTime\022\022\n\nframe_time\030\001 \001(" + "\002\"4\n CUserMessageLagCompensationError\022\020\n" + "\010distance\030\001 \001(\002\"G\n\034CUserMessageRequestDl" + "lStatus\022\022\n\ndll_action\030\001 \001(\t\022\023\n\013full_repo" + "rt\030\002 \001(\010\"j\n\035CUserMessageRequestUtilActio" + "n\022\r\n\005util1\030\002 \001(\005\022\r\n\005util2\030\003 \001(\005\022\r\n\005util3" + "\030\004 \001(\005\022\r\n\005util4\030\005 \001(\005\022\r\n\005util5\030\006 \001(\005\"\370\002\n" + "\035CUserMessage_UtilMsg_Response\022\013\n\003crc\030\001 " + "\001(\007\022\022\n\nitem_count\030\002 \001(\005\022\014\n\004crc2\030\003 \001(\007\022\023\n" + "\013item_count2\030\004 \001(\005\022\020\n\010crc_part\030\005 \003(\005\022\021\n\t" + "crc_part2\030\006 \003(\005\022\030\n\020client_timestamp\030\007 \001(" + "\005\022\020\n\010platform\030\010 \001(\005\022>\n\013itemdetails\030\t \003(\013" + "2).CUserMessage_UtilMsg_Response.ItemDet" + "ail\022\021\n\titemgroup\030\n \001(\005\022\023\n\013total_count\030\013 " + "\001(\005\022\024\n\014total_count2\030\014 \001(\005\032D\n\nItemDetail\022" + "\r\n\005index\030\001 \001(\005\022\014\n\004hash\030\002 \001(\005\022\013\n\003crc\030\003 \001(" + "\005\022\014\n\004name\030\004 \001(\t\"\241\003\n\026CUserMessage_DllStat" + "us\022\023\n\013file_report\030\001 \001(\t\022\024\n\014command_line\030" + "\002 \001(\t\022\023\n\013total_files\030\003 \001(\r\022\022\n\nprocess_id" + "\030\004 \001(\r\022\021\n\tosversion\030\005 \001(\005\022\023\n\013client_time" + "\030\006 \001(\004\0229\n\013diagnostics\030\007 \003(\0132$.CUserMessa" + "ge_DllStatus.CVDiagnostic\0220\n\007modules\030\010 \003" + "(\0132\037.CUserMessage_DllStatus.CModule\032Q\n\014C" + "VDiagnostic\022\n\n\002id\030\001 \001(\r\022\020\n\010extended\030\002 \001(" + "\r\022\r\n\005value\030\003 \001(\004\022\024\n\014string_value\030\004 \001(\t\032K" + "\n\007CModule\022\021\n\tbase_addr\030\001 \001(\004\022\014\n\004name\030\002 \001" + "(\t\022\014\n\004size\030\003 \001(\r\022\021\n\ttimestamp\030\004 \001(\r\"R\n\034C" + "UserMessageRequestInventory\022\021\n\tinventory" + "\030\001 \001(\005\022\016\n\006offset\030\002 \001(\005\022\017\n\007options\030\003 \001(\005\"" + "\367\004\n\037CUserMessage_Inventory_Response\022\013\n\003c" + "rc\030\001 \001(\007\022\022\n\nitem_count\030\002 \001(\005\022\021\n\tosversio" + "n\030\005 \001(\005\022\021\n\tperf_time\030\006 \001(\005\022\030\n\020client_tim" + "estamp\030\007 \001(\005\022\020\n\010platform\030\010 \001(\005\022E\n\013invent" + "ories\030\t \003(\01320.CUserMessage_Inventory_Res" + "ponse.InventoryDetail\022F\n\014inventories2\030\n " + "\003(\01320.CUserMessage_Inventory_Response.In" + "ventoryDetail\022F\n\014inventories3\030\016 \003(\01320.CU" + "serMessage_Inventory_Response.InventoryD" + "etail\022\020\n\010inv_type\030\013 \001(\005\022\025\n\rbuild_version" + "\030\014 \001(\005\022\020\n\010instance\030\r \001(\005\022\022\n\nstart_time\030\017" + " \001(\003\032\272\001\n\017InventoryDetail\022\r\n\005index\030\001 \001(\005\022" + "\017\n\007primary\030\002 \001(\003\022\016\n\006offset\030\003 \001(\003\022\r\n\005firs" + "t\030\004 \001(\003\022\014\n\004base\030\005 \001(\003\022\014\n\004name\030\006 \001(\t\022\021\n\tb" + "ase_name\030\007 \001(\t\022\023\n\013base_detail\030\010 \001(\005\022\021\n\tb" + "ase_time\030\t \001(\005\022\021\n\tbase_hash\030\n \001(\005\"\270\002\n\035CU" + "serMessageRequestDiagnostic\022>\n\013diagnosti" + "cs\030\001 \003(\0132).CUserMessageRequestDiagnostic" + ".Diagnostic\032\326\001\n\nDiagnostic\022\r\n\005index\030\001 \001(" "\005\022\016\n\006offset\030\002 \001(\003\022\r\n\005param\030\003 \001(\005\022\016\n\006leng" - "th\030\004 \001(\005\022\016\n\006detail\030\005 \001(\014\022\014\n\004base\030\006 \001(\003\022\r" - "\n\005range\030\007 \001(\003\022\014\n\004type\030\010 \001(\005\022\014\n\004name\030\n \001(" - "\t\022\r\n\005alias\030\013 \001(\t\022\016\n\006backup\030\014 \001(\014\022\017\n\007cont" - "ext\030\r \001(\005\022\017\n\007control\030\016 \001(\003\022\017\n\007augment\030\017 " - "\001(\003\022\017\n\007placebo\030\020 \001(\003\"l\n\032CUserMessage_Ext" - "raUserData\022\014\n\004item\030\001 \001(\005\022\016\n\006value1\030\002 \001(\003" - "\022\016\n\006value2\030\003 \001(\003\022\017\n\007detail1\030\004 \003(\014\022\017\n\007det" - "ail2\030\005 \003(\014\"\313\003\n CUserMessage_NotifyRespon" - "seFound\022\025\n\tent_index\030\001 \001(\005:\002-1\022\021\n\trule_n" - "ame\030\002 \001(\t\022\026\n\016response_value\030\003 \001(\t\022\030\n\020res" - "ponse_concept\030\004 \001(\t\022<\n\010criteria\030\005 \003(\0132*." - "CUserMessage_NotifyResponseFound.Criteri" - "a\022\036\n\022int_criteria_names\030\006 \003(\rB\002\020\001\022\037\n\023int" - "_criteria_values\030\007 \003(\005B\002\020\001\022 \n\024float_crit" - "eria_names\030\010 \003(\rB\002\020\001\022\035\n\025float_criteria_v" - "alues\030\t \003(\002\022!\n\025symbol_criteria_names\030\n \003" - "(\rB\002\020\001\022\"\n\026symbol_criteria_values\030\013 \003(\rB\002" - "\020\001\022\024\n\014speak_result\030\014 \001(\005\032.\n\010Criteria\022\023\n\013" - "name_symbol\030\001 \001(\r\022\r\n\005value\030\002 \001(\t\"\257\001\n$CUs" - "erMessage_PlayResponseConditional\022\025\n\tent" - "_index\030\001 \001(\005:\002-1\022\024\n\014player_slots\030\002 \003(\005\022\020" - "\n\010response\030\003 \001(\t\022\037\n\nent_origin\030\004 \001(\0132\013.C" - "MsgVector\022\021\n\tpre_delay\030\005 \001(\002\022\024\n\014mix_prio" - "rity\030\006 \001(\005*\221\t\n\021EBaseUserMessages\022\027\n\023UM_A" - "chievementEvent\020e\022\023\n\017UM_CloseCaption\020f\022\031" - "\n\025UM_CloseCaptionDirect\020g\022\027\n\023UM_CurrentT" - "imescale\020h\022\027\n\023UM_DesiredTimescale\020i\022\013\n\007U" - "M_Fade\020j\022\020\n\014UM_GameTitle\020k\022\r\n\tUM_HudMsg\020" - "n\022\016\n\nUM_HudText\020o\022\022\n\016UM_ColoredText\020q\022\023\n" - "\017UM_RequestState\020r\022\017\n\013UM_ResetHUD\020s\022\r\n\tU" - "M_Rumble\020t\022\016\n\nUM_SayText\020u\022\017\n\013UM_SayText" - "2\020v\022\025\n\021UM_SayTextChannel\020w\022\014\n\010UM_Shake\020x" - "\022\017\n\013UM_ShakeDir\020y\022\021\n\rUM_WaterShake\020z\022\016\n\n" - "UM_TextMsg\020|\022\021\n\rUM_ScreenTilt\020}\022\021\n\014UM_Vo" - "iceMask\020\200\001\022\021\n\014UM_SendAudio\020\202\001\022\022\n\rUM_Item" - "Pickup\020\203\001\022\022\n\rUM_AmmoDenied\020\204\001\022\020\n\013UM_Show" - "Menu\020\206\001\022\022\n\rUM_CreditsMsg\020\207\001\022\037\n\032UM_CloseC" - "aptionPlaceholder\020\216\001\022\030\n\023UM_CameraTransit" - "ion\020\217\001\022\026\n\021UM_AudioParameter\020\220\001\022\027\n\022UM_Par" - "ticleManager\020\221\001\022\020\n\013UM_HudError\020\222\001\022\027\n\022UM_" - "CustomGameEvent\020\224\001\022\027\n\022UM_AnimGraphUpdate" - "\020\225\001\022\033\n\026UM_HapticsManagerPulse\020\226\001\022\034\n\027UM_H" - "apticsManagerEffect\020\227\001\022\030\n\023UM_UpdateCssCl" - "asses\020\231\001\022\027\n\022UM_ServerFrameTime\020\232\001\022\034\n\027UM_" - "LagCompensationError\020\233\001\022\030\n\023UM_RequestDll" - "Status\020\234\001\022\031\n\024UM_RequestUtilAction\020\235\001\022\032\n\025" - "UM_UtilActionResponse\020\236\001\022\031\n\024UM_DllStatus" - "Response\020\237\001\022\030\n\023UM_RequestInventory\020\240\001\022\031\n" - "\024UM_InventoryResponse\020\241\001\022\031\n\024UM_RequestDi" - "agnostic\020\242\001\022\032\n\025UM_DiagnosticResponse\020\243\001\022" - "\025\n\020UM_ExtraUserData\020\244\001\022\033\n\026UM_NotifyRespo" - "nseFound\020\245\001\022\037\n\032UM_PlayResponseConditiona" - "l\020\246\001\022\020\n\013UM_MAX_BASE\020\310\001*\224\001\n\023EBaseEntityMe" - "ssages\022\022\n\rEM_PlayJingle\020\210\001\022\025\n\020EM_ScreenO" - "verlay\020\211\001\022\027\n\022EM_RemoveAllDecals\020\212\001\022\026\n\021EM" - "_PropagateForce\020\213\001\022\017\n\nEM_DoSpark\020\214\001\022\020\n\013E" - "M_FixAngle\020\215\001*o\n\teRollType\022\026\n\tROLL_NONE\020" - "\377\377\377\377\377\377\377\377\377\001\022\016\n\nROLL_STATS\020\000\022\020\n\014ROLL_CREDI" - "TS\020\001\022\027\n\023ROLL_LATE_JOIN_LOGO\020\002\022\017\n\013ROLL_OU" - "TTRO\020\003*\276\017\n\020PARTICLE_MESSAGE\022&\n\"GAME_PART" - "ICLE_MANAGER_EVENT_CREATE\020\000\022&\n\"GAME_PART" - "ICLE_MANAGER_EVENT_UPDATE\020\001\022.\n*GAME_PART" - "ICLE_MANAGER_EVENT_UPDATE_FORWARD\020\002\0222\n.G" - "AME_PARTICLE_MANAGER_EVENT_UPDATE_ORIENT" - "ATION\020\003\022/\n+GAME_PARTICLE_MANAGER_EVENT_U" - "PDATE_FALLBACK\020\004\022*\n&GAME_PARTICLE_MANAGE" - "R_EVENT_UPDATE_ENT\020\005\022-\n)GAME_PARTICLE_MA" - "NAGER_EVENT_UPDATE_OFFSET\020\006\022\'\n#GAME_PART" - "ICLE_MANAGER_EVENT_DESTROY\020\007\0221\n-GAME_PAR" - "TICLE_MANAGER_EVENT_DESTROY_INVOLVING\020\010\022" - "\'\n#GAME_PARTICLE_MANAGER_EVENT_RELEASE\020\t" - "\022\'\n#GAME_PARTICLE_MANAGER_EVENT_LATENCY\020" - "\n\022+\n\'GAME_PARTICLE_MANAGER_EVENT_SHOULD_" - "DRAW\020\013\022&\n\"GAME_PARTICLE_MANAGER_EVENT_FR" - "OZEN\020\014\022\?\n;GAME_PARTICLE_MANAGER_EVENT_CH" - "ANGE_CONTROL_POINT_ATTACHMENT\020\r\0226\n2GAME_" - "PARTICLE_MANAGER_EVENT_UPDATE_ENTITY_POS" - "ITION\020\016\0222\n.GAME_PARTICLE_MANAGER_EVENT_S" - "ET_FOW_PROPERTIES\020\017\022(\n$GAME_PARTICLE_MAN" - "AGER_EVENT_SET_TEXT\020\020\0224\n0GAME_PARTICLE_M" - "ANAGER_EVENT_SET_SHOULD_CHECK_FOW\020\021\0227\n3G" - "AME_PARTICLE_MANAGER_EVENT_SET_CONTROL_P" - "OINT_MODEL\020\022\022:\n6GAME_PARTICLE_MANAGER_EV" - "ENT_SET_CONTROL_POINT_SNAPSHOT\020\023\0225\n1GAME" - "_PARTICLE_MANAGER_EVENT_SET_TEXTURE_ATTR" - "IBUTE\020\024\022=\n9GAME_PARTICLE_MANAGER_EVENT_S" - "ET_SCENE_OBJECT_GENERIC_FLAG\020\025\022\?\n;GAME_P" - "ARTICLE_MANAGER_EVENT_SET_SCENE_OBJECT_T" - "INT_AND_DESAT\020\026\022-\n)GAME_PARTICLE_MANAGER" - "_EVENT_DESTROY_NAMED\020\027\022,\n(GAME_PARTICLE_" - "MANAGER_EVENT_SKIP_TO_TIME\020\030\022*\n&GAME_PAR" - "TICLE_MANAGER_EVENT_CAN_FREEZE\020\031\0227\n3GAME" - "_PARTICLE_MANAGER_EVENT_SET_NAMED_VALUE_" - "CONTEXT\020\032\0220\n,GAME_PARTICLE_MANAGER_EVENT" - "_UPDATE_TRANSFORM\020\033\022:\n6GAME_PARTICLE_MAN" - "AGER_EVENT_FREEZE_TRANSITION_OVERRIDE\020\034\022" - "0\n,GAME_PARTICLE_MANAGER_EVENT_FREEZE_IN" - "VOLVING\020\035\022>\n:GAME_PARTICLE_MANAGER_EVENT" - "_ADD_MODELLIST_OVERRIDE_ELEMENT\020\036\0228\n4GAM" - "E_PARTICLE_MANAGER_EVENT_CLEAR_MODELLIST" - "_OVERRIDE\020\037\0222\n.GAME_PARTICLE_MANAGER_EVE" - "NT_CREATE_PHYSICS_SIM\020 \0223\n/GAME_PARTICLE" - "_MANAGER_EVENT_DESTROY_PHYSICS_SIM\020!\022)\n%" - "GAME_PARTICLE_MANAGER_EVENT_SET_VDATA\020\"\022" - "5\n1GAME_PARTICLE_MANAGER_EVENT_SET_MATER" - "IAL_OVERRIDE\020#\022\'\n#GAME_PARTICLE_MANAGER_" - "EVENT_ADD_FAN\020$\022*\n&GAME_PARTICLE_MANAGER" - "_EVENT_UPDATE_FAN\020%\0222\n.GAME_PARTICLE_MAN" - "AGER_EVENT_SET_CLUSTER_GROWTH\020&*t\n\020EHapt" - "icPulseType\022\036\n\032VR_HAND_HAPTIC_PULSE_LIGH" - "T\020\000\022\037\n\033VR_HAND_HAPTIC_PULSE_MEDIUM\020\001\022\037\n\033" - "VR_HAND_HAPTIC_PULSE_STRONG\020\002" + "th\030\004 \001(\005\022\014\n\004type\030\005 \001(\005\022\014\n\004base\030\006 \001(\003\022\r\n\005" + "range\030\007 \001(\003\022\016\n\006extent\030\010 \001(\003\022\016\n\006detail\030\t " + "\001(\003\022\014\n\004name\030\n \001(\t\022\r\n\005alias\030\013 \001(\t\022\021\n\tvard" + "etail\030\014 \001(\014\022\017\n\007context\030\r \001(\005\"\300\003\n CUserMe" + "ssage_Diagnostic_Response\022A\n\013diagnostics" + "\030\001 \003(\0132,.CUserMessage_Diagnostic_Respons" + "e.Diagnostic\022\025\n\rbuild_version\030\002 \001(\005\022\020\n\010i" + "nstance\030\003 \001(\005\022\022\n\nstart_time\030\004 \001(\003\022\021\n\tosv" + "ersion\030\005 \001(\005\022\020\n\010platform\030\006 \001(\005\032\366\001\n\nDiagn" + "ostic\022\r\n\005index\030\001 \001(\005\022\016\n\006offset\030\002 \001(\003\022\r\n\005" + "param\030\003 \001(\005\022\016\n\006length\030\004 \001(\005\022\016\n\006detail\030\005 " + "\001(\014\022\014\n\004base\030\006 \001(\003\022\r\n\005range\030\007 \001(\003\022\014\n\004type" + "\030\010 \001(\005\022\014\n\004name\030\n \001(\t\022\r\n\005alias\030\013 \001(\t\022\016\n\006b" + "ackup\030\014 \001(\014\022\017\n\007context\030\r \001(\005\022\017\n\007control\030" + "\016 \001(\003\022\017\n\007augment\030\017 \001(\003\022\017\n\007placebo\030\020 \001(\003\"" + "l\n\032CUserMessage_ExtraUserData\022\014\n\004item\030\001 " + "\001(\005\022\016\n\006value1\030\002 \001(\003\022\016\n\006value2\030\003 \001(\003\022\017\n\007d" + "etail1\030\004 \003(\014\022\017\n\007detail2\030\005 \003(\014\"\313\003\n CUserM" + "essage_NotifyResponseFound\022\025\n\tent_index\030" + "\001 \001(\005:\002-1\022\021\n\trule_name\030\002 \001(\t\022\026\n\016response" + "_value\030\003 \001(\t\022\030\n\020response_concept\030\004 \001(\t\022<" + "\n\010criteria\030\005 \003(\0132*.CUserMessage_NotifyRe" + "sponseFound.Criteria\022\036\n\022int_criteria_nam" + "es\030\006 \003(\rB\002\020\001\022\037\n\023int_criteria_values\030\007 \003(" + "\005B\002\020\001\022 \n\024float_criteria_names\030\010 \003(\rB\002\020\001\022" + "\035\n\025float_criteria_values\030\t \003(\002\022!\n\025symbol" + "_criteria_names\030\n \003(\rB\002\020\001\022\"\n\026symbol_crit" + "eria_values\030\013 \003(\rB\002\020\001\022\024\n\014speak_result\030\014 " + "\001(\005\032.\n\010Criteria\022\023\n\013name_symbol\030\001 \001(\r\022\r\n\005" + "value\030\002 \001(\t\"\257\001\n$CUserMessage_PlayRespons" + "eConditional\022\025\n\tent_index\030\001 \001(\005:\002-1\022\024\n\014p" + "layer_slots\030\002 \003(\005\022\020\n\010response\030\003 \001(\t\022\037\n\ne" + "nt_origin\030\004 \001(\0132\013.CMsgVector\022\021\n\tpre_dela" + "y\030\005 \001(\002\022\024\n\014mix_priority\030\006 \001(\005*\221\t\n\021EBaseU" + "serMessages\022\027\n\023UM_AchievementEvent\020e\022\023\n\017" + "UM_CloseCaption\020f\022\031\n\025UM_CloseCaptionDire" + "ct\020g\022\027\n\023UM_CurrentTimescale\020h\022\027\n\023UM_Desi" + "redTimescale\020i\022\013\n\007UM_Fade\020j\022\020\n\014UM_GameTi" + "tle\020k\022\r\n\tUM_HudMsg\020n\022\016\n\nUM_HudText\020o\022\022\n\016" + "UM_ColoredText\020q\022\023\n\017UM_RequestState\020r\022\017\n" + "\013UM_ResetHUD\020s\022\r\n\tUM_Rumble\020t\022\016\n\nUM_SayT" + "ext\020u\022\017\n\013UM_SayText2\020v\022\025\n\021UM_SayTextChan" + "nel\020w\022\014\n\010UM_Shake\020x\022\017\n\013UM_ShakeDir\020y\022\021\n\r" + "UM_WaterShake\020z\022\016\n\nUM_TextMsg\020|\022\021\n\rUM_Sc" + "reenTilt\020}\022\021\n\014UM_VoiceMask\020\200\001\022\021\n\014UM_Send" + "Audio\020\202\001\022\022\n\rUM_ItemPickup\020\203\001\022\022\n\rUM_AmmoD" + "enied\020\204\001\022\020\n\013UM_ShowMenu\020\206\001\022\022\n\rUM_Credits" + "Msg\020\207\001\022\037\n\032UM_CloseCaptionPlaceholder\020\216\001\022" + "\030\n\023UM_CameraTransition\020\217\001\022\026\n\021UM_AudioPar" + "ameter\020\220\001\022\027\n\022UM_ParticleManager\020\221\001\022\020\n\013UM" + "_HudError\020\222\001\022\027\n\022UM_CustomGameEvent\020\224\001\022\027\n" + "\022UM_AnimGraphUpdate\020\225\001\022\033\n\026UM_HapticsMana" + "gerPulse\020\226\001\022\034\n\027UM_HapticsManagerEffect\020\227" + "\001\022\030\n\023UM_UpdateCssClasses\020\231\001\022\027\n\022UM_Server" + "FrameTime\020\232\001\022\034\n\027UM_LagCompensationError\020" + "\233\001\022\030\n\023UM_RequestDllStatus\020\234\001\022\031\n\024UM_Reque" + "stUtilAction\020\235\001\022\032\n\025UM_UtilActionResponse" + "\020\236\001\022\031\n\024UM_DllStatusResponse\020\237\001\022\030\n\023UM_Req" + "uestInventory\020\240\001\022\031\n\024UM_InventoryResponse" + "\020\241\001\022\031\n\024UM_RequestDiagnostic\020\242\001\022\032\n\025UM_Dia" + "gnosticResponse\020\243\001\022\025\n\020UM_ExtraUserData\020\244" + "\001\022\033\n\026UM_NotifyResponseFound\020\245\001\022\037\n\032UM_Pla" + "yResponseConditional\020\246\001\022\020\n\013UM_MAX_BASE\020\310" + "\001*\224\001\n\023EBaseEntityMessages\022\022\n\rEM_PlayJing" + "le\020\210\001\022\025\n\020EM_ScreenOverlay\020\211\001\022\027\n\022EM_Remov" + "eAllDecals\020\212\001\022\026\n\021EM_PropagateForce\020\213\001\022\017\n" + "\nEM_DoSpark\020\214\001\022\020\n\013EM_FixAngle\020\215\001*o\n\teRol" + "lType\022\026\n\tROLL_NONE\020\377\377\377\377\377\377\377\377\377\001\022\016\n\nROLL_ST" + "ATS\020\000\022\020\n\014ROLL_CREDITS\020\001\022\027\n\023ROLL_LATE_JOI" + "N_LOGO\020\002\022\017\n\013ROLL_OUTTRO\020\003*\352\017\n\020PARTICLE_M" + "ESSAGE\022&\n\"GAME_PARTICLE_MANAGER_EVENT_CR" + "EATE\020\000\022&\n\"GAME_PARTICLE_MANAGER_EVENT_UP" + "DATE\020\001\022.\n*GAME_PARTICLE_MANAGER_EVENT_UP" + "DATE_FORWARD\020\002\0222\n.GAME_PARTICLE_MANAGER_" + "EVENT_UPDATE_ORIENTATION\020\003\022/\n+GAME_PARTI" + "CLE_MANAGER_EVENT_UPDATE_FALLBACK\020\004\022*\n&G" + "AME_PARTICLE_MANAGER_EVENT_UPDATE_ENT\020\005\022" + "-\n)GAME_PARTICLE_MANAGER_EVENT_UPDATE_OF" + "FSET\020\006\022\'\n#GAME_PARTICLE_MANAGER_EVENT_DE" + "STROY\020\007\0221\n-GAME_PARTICLE_MANAGER_EVENT_D" + "ESTROY_INVOLVING\020\010\022\'\n#GAME_PARTICLE_MANA" + "GER_EVENT_RELEASE\020\t\022\'\n#GAME_PARTICLE_MAN" + "AGER_EVENT_LATENCY\020\n\022+\n\'GAME_PARTICLE_MA" + "NAGER_EVENT_SHOULD_DRAW\020\013\022&\n\"GAME_PARTIC" + "LE_MANAGER_EVENT_FROZEN\020\014\022\?\n;GAME_PARTIC" + "LE_MANAGER_EVENT_CHANGE_CONTROL_POINT_AT" + "TACHMENT\020\r\0226\n2GAME_PARTICLE_MANAGER_EVEN" + "T_UPDATE_ENTITY_POSITION\020\016\0222\n.GAME_PARTI" + "CLE_MANAGER_EVENT_SET_FOW_PROPERTIES\020\017\022(" + "\n$GAME_PARTICLE_MANAGER_EVENT_SET_TEXT\020\020" + "\0224\n0GAME_PARTICLE_MANAGER_EVENT_SET_SHOU" + "LD_CHECK_FOW\020\021\0227\n3GAME_PARTICLE_MANAGER_" + "EVENT_SET_CONTROL_POINT_MODEL\020\022\022:\n6GAME_" + "PARTICLE_MANAGER_EVENT_SET_CONTROL_POINT" + "_SNAPSHOT\020\023\0225\n1GAME_PARTICLE_MANAGER_EVE" + "NT_SET_TEXTURE_ATTRIBUTE\020\024\022=\n9GAME_PARTI" + "CLE_MANAGER_EVENT_SET_SCENE_OBJECT_GENER" + "IC_FLAG\020\025\022\?\n;GAME_PARTICLE_MANAGER_EVENT" + "_SET_SCENE_OBJECT_TINT_AND_DESAT\020\026\022-\n)GA" + "ME_PARTICLE_MANAGER_EVENT_DESTROY_NAMED\020" + "\027\022,\n(GAME_PARTICLE_MANAGER_EVENT_SKIP_TO" + "_TIME\020\030\022*\n&GAME_PARTICLE_MANAGER_EVENT_C" + "AN_FREEZE\020\031\0227\n3GAME_PARTICLE_MANAGER_EVE" + "NT_SET_NAMED_VALUE_CONTEXT\020\032\0220\n,GAME_PAR" + "TICLE_MANAGER_EVENT_UPDATE_TRANSFORM\020\033\022:" + "\n6GAME_PARTICLE_MANAGER_EVENT_FREEZE_TRA" + "NSITION_OVERRIDE\020\034\0220\n,GAME_PARTICLE_MANA" + "GER_EVENT_FREEZE_INVOLVING\020\035\022>\n:GAME_PAR" + "TICLE_MANAGER_EVENT_ADD_MODELLIST_OVERRI" + "DE_ELEMENT\020\036\0228\n4GAME_PARTICLE_MANAGER_EV" + "ENT_CLEAR_MODELLIST_OVERRIDE\020\037\0222\n.GAME_P" + "ARTICLE_MANAGER_EVENT_CREATE_PHYSICS_SIM" + "\020 \0223\n/GAME_PARTICLE_MANAGER_EVENT_DESTRO" + "Y_PHYSICS_SIM\020!\022)\n%GAME_PARTICLE_MANAGER" + "_EVENT_SET_VDATA\020\"\0225\n1GAME_PARTICLE_MANA" + "GER_EVENT_SET_MATERIAL_OVERRIDE\020#\022\'\n#GAM" + "E_PARTICLE_MANAGER_EVENT_ADD_FAN\020$\022*\n&GA" + "ME_PARTICLE_MANAGER_EVENT_UPDATE_FAN\020%\0222" + "\n.GAME_PARTICLE_MANAGER_EVENT_SET_CLUSTE" + "R_GROWTH\020&\022*\n&GAME_PARTICLE_MANAGER_EVEN" + "T_REMOVE_FAN\020\'*t\n\020EHapticPulseType\022\036\n\032VR" + "_HAND_HAPTIC_PULSE_LIGHT\020\000\022\037\n\033VR_HAND_HA" + "PTIC_PULSE_MEDIUM\020\001\022\037\n\033VR_HAND_HAPTIC_PU" + "LSE_STRONG\020\002" ; static const ::_pbi::DescriptorTable* const descriptor_table_usermessages_2eproto_deps[1] = { &::descriptor_table_networkbasetypes_2eproto, }; static ::_pbi::once_flag descriptor_table_usermessages_2eproto_once; const ::_pbi::DescriptorTable descriptor_table_usermessages_2eproto = { - false, false, 18309, descriptor_table_protodef_usermessages_2eproto, + false, false, 18572, descriptor_table_protodef_usermessages_2eproto, "usermessages.proto", - &descriptor_table_usermessages_2eproto_once, descriptor_table_usermessages_2eproto_deps, 1, 106, + &descriptor_table_usermessages_2eproto_once, descriptor_table_usermessages_2eproto_deps, 1, 107, schemas, file_default_instances, TableStruct_usermessages_2eproto::offsets, file_level_metadata_usermessages_2eproto, file_level_enum_descriptors_usermessages_2eproto, file_level_service_descriptors_usermessages_2eproto, @@ -4089,6 +4136,7 @@ bool PARTICLE_MESSAGE_IsValid(int value) { case 36: case 37: case 38: + case 39: return true; default: return false; @@ -23853,45 +23901,63 @@ class CUserMsg_ParticleManager_AddFan::_Internal { public: using HasBits = decltype(std::declval()._impl_._has_bits_); static void set_has_active(HasBits* has_bits) { - (*has_bits)[0] |= 64u; + (*has_bits)[0] |= 128u; } static const ::CMsgVector& bounds_mins(const CUserMsg_ParticleManager_AddFan* msg); static void set_has_bounds_mins(HasBits* has_bits) { - (*has_bits)[0] |= 2u; + (*has_bits)[0] |= 4u; } static const ::CMsgVector& bounds_maxs(const CUserMsg_ParticleManager_AddFan* msg); static void set_has_bounds_maxs(HasBits* has_bits) { - (*has_bits)[0] |= 4u; + (*has_bits)[0] |= 8u; } static const ::CMsgVector& fan_origin(const CUserMsg_ParticleManager_AddFan* msg); static void set_has_fan_origin(HasBits* has_bits) { - (*has_bits)[0] |= 8u; + (*has_bits)[0] |= 16u; } static const ::CMsgVector& fan_origin_offset(const CUserMsg_ParticleManager_AddFan* msg); static void set_has_fan_origin_offset(HasBits* has_bits) { - (*has_bits)[0] |= 16u; + (*has_bits)[0] |= 32u; } static const ::CMsgVector& fan_direction(const CUserMsg_ParticleManager_AddFan* msg); static void set_has_fan_direction(HasBits* has_bits) { - (*has_bits)[0] |= 32u; + (*has_bits)[0] |= 64u; } static void set_has_force(HasBits* has_bits) { - (*has_bits)[0] |= 512u; + (*has_bits)[0] |= 1024u; } static void set_has_fan_force_curve(HasBits* has_bits) { (*has_bits)[0] |= 1u; } static void set_has_falloff(HasBits* has_bits) { - (*has_bits)[0] |= 128u; + (*has_bits)[0] |= 256u; } static void set_has_pull_towards_point(HasBits* has_bits) { - (*has_bits)[0] |= 256u; + (*has_bits)[0] |= 512u; } static void set_has_curve_min_dist(HasBits* has_bits) { - (*has_bits)[0] |= 1024u; + (*has_bits)[0] |= 2048u; } static void set_has_curve_max_dist(HasBits* has_bits) { - (*has_bits)[0] |= 2048u; + (*has_bits)[0] |= 4096u; + } + static void set_has_fan_type(HasBits* has_bits) { + (*has_bits)[0] |= 8192u; + } + static void set_has_cone_start_radius(HasBits* has_bits) { + (*has_bits)[0] |= 16384u; + } + static void set_has_cone_end_radius(HasBits* has_bits) { + (*has_bits)[0] |= 32768u; + } + static void set_has_cone_length(HasBits* has_bits) { + (*has_bits)[0] |= 65536u; + } + static void set_has_entity_handle(HasBits* has_bits) { + (*has_bits)[0] |= 131072u; + } + static void set_has_attachment_name(HasBits* has_bits) { + (*has_bits)[0] |= 2u; } }; @@ -23917,23 +23983,23 @@ CUserMsg_ParticleManager_AddFan::_Internal::fan_direction(const CUserMsg_Particl } void CUserMsg_ParticleManager_AddFan::clear_bounds_mins() { if (_impl_.bounds_mins_ != nullptr) _impl_.bounds_mins_->Clear(); - _impl_._has_bits_[0] &= ~0x00000002u; + _impl_._has_bits_[0] &= ~0x00000004u; } void CUserMsg_ParticleManager_AddFan::clear_bounds_maxs() { if (_impl_.bounds_maxs_ != nullptr) _impl_.bounds_maxs_->Clear(); - _impl_._has_bits_[0] &= ~0x00000004u; + _impl_._has_bits_[0] &= ~0x00000008u; } void CUserMsg_ParticleManager_AddFan::clear_fan_origin() { if (_impl_.fan_origin_ != nullptr) _impl_.fan_origin_->Clear(); - _impl_._has_bits_[0] &= ~0x00000008u; + _impl_._has_bits_[0] &= ~0x00000010u; } void CUserMsg_ParticleManager_AddFan::clear_fan_origin_offset() { if (_impl_.fan_origin_offset_ != nullptr) _impl_.fan_origin_offset_->Clear(); - _impl_._has_bits_[0] &= ~0x00000010u; + _impl_._has_bits_[0] &= ~0x00000020u; } void CUserMsg_ParticleManager_AddFan::clear_fan_direction() { if (_impl_.fan_direction_ != nullptr) _impl_.fan_direction_->Clear(); - _impl_._has_bits_[0] &= ~0x00000020u; + _impl_._has_bits_[0] &= ~0x00000040u; } CUserMsg_ParticleManager_AddFan::CUserMsg_ParticleManager_AddFan(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) @@ -23948,6 +24014,7 @@ CUserMsg_ParticleManager_AddFan::CUserMsg_ParticleManager_AddFan(const CUserMsg_ decltype(_impl_._has_bits_){from._impl_._has_bits_} , /*decltype(_impl_._cached_size_)*/{} , decltype(_impl_.fan_force_curve_){} + , decltype(_impl_.attachment_name_){} , decltype(_impl_.bounds_mins_){nullptr} , decltype(_impl_.bounds_maxs_){nullptr} , decltype(_impl_.fan_origin_){nullptr} @@ -23958,7 +24025,12 @@ CUserMsg_ParticleManager_AddFan::CUserMsg_ParticleManager_AddFan(const CUserMsg_ , decltype(_impl_.pull_towards_point_){} , decltype(_impl_.force_){} , decltype(_impl_.curve_min_dist_){} - , decltype(_impl_.curve_max_dist_){}}; + , decltype(_impl_.curve_max_dist_){} + , decltype(_impl_.fan_type_){} + , decltype(_impl_.cone_start_radius_){} + , decltype(_impl_.cone_end_radius_){} + , decltype(_impl_.cone_length_){} + , decltype(_impl_.entity_handle_){}}; _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); _impl_.fan_force_curve_.InitDefault(); @@ -23969,6 +24041,14 @@ CUserMsg_ParticleManager_AddFan::CUserMsg_ParticleManager_AddFan(const CUserMsg_ _this->_impl_.fan_force_curve_.Set(from._internal_fan_force_curve(), _this->GetArenaForAllocation()); } + _impl_.attachment_name_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.attachment_name_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (from._internal_has_attachment_name()) { + _this->_impl_.attachment_name_.Set(from._internal_attachment_name(), + _this->GetArenaForAllocation()); + } if (from._internal_has_bounds_mins()) { _this->_impl_.bounds_mins_ = new ::CMsgVector(*from._impl_.bounds_mins_); } @@ -23985,8 +24065,8 @@ CUserMsg_ParticleManager_AddFan::CUserMsg_ParticleManager_AddFan(const CUserMsg_ _this->_impl_.fan_direction_ = new ::CMsgVector(*from._impl_.fan_direction_); } ::memcpy(&_impl_.active_, &from._impl_.active_, - static_cast(reinterpret_cast(&_impl_.curve_max_dist_) - - reinterpret_cast(&_impl_.active_)) + sizeof(_impl_.curve_max_dist_)); + static_cast(reinterpret_cast(&_impl_.entity_handle_) - + reinterpret_cast(&_impl_.active_)) + sizeof(_impl_.entity_handle_)); // @@protoc_insertion_point(copy_constructor:CUserMsg_ParticleManager.AddFan) } @@ -23998,6 +24078,7 @@ inline void CUserMsg_ParticleManager_AddFan::SharedCtor( decltype(_impl_._has_bits_){} , /*decltype(_impl_._cached_size_)*/{} , decltype(_impl_.fan_force_curve_){} + , decltype(_impl_.attachment_name_){} , decltype(_impl_.bounds_mins_){nullptr} , decltype(_impl_.bounds_maxs_){nullptr} , decltype(_impl_.fan_origin_){nullptr} @@ -24009,11 +24090,20 @@ inline void CUserMsg_ParticleManager_AddFan::SharedCtor( , decltype(_impl_.force_){0} , decltype(_impl_.curve_min_dist_){0} , decltype(_impl_.curve_max_dist_){0} + , decltype(_impl_.fan_type_){0u} + , decltype(_impl_.cone_start_radius_){0} + , decltype(_impl_.cone_end_radius_){0} + , decltype(_impl_.cone_length_){0} + , decltype(_impl_.entity_handle_){16777215u} }; _impl_.fan_force_curve_.InitDefault(); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING _impl_.fan_force_curve_.Set("", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.attachment_name_.InitDefault(); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + _impl_.attachment_name_.Set("", GetArenaForAllocation()); + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING } CUserMsg_ParticleManager_AddFan::~CUserMsg_ParticleManager_AddFan() { @@ -24028,6 +24118,7 @@ CUserMsg_ParticleManager_AddFan::~CUserMsg_ParticleManager_AddFan() { inline void CUserMsg_ParticleManager_AddFan::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); _impl_.fan_force_curve_.Destroy(); + _impl_.attachment_name_.Destroy(); if (this != internal_default_instance()) delete _impl_.bounds_mins_; if (this != internal_default_instance()) delete _impl_.bounds_maxs_; if (this != internal_default_instance()) delete _impl_.fan_origin_; @@ -24046,40 +24137,43 @@ void CUserMsg_ParticleManager_AddFan::Clear() { (void) cached_has_bits; cached_has_bits = _impl_._has_bits_[0]; - if (cached_has_bits & 0x0000003fu) { + if (cached_has_bits & 0x0000007fu) { if (cached_has_bits & 0x00000001u) { _impl_.fan_force_curve_.ClearNonDefaultToEmpty(); } if (cached_has_bits & 0x00000002u) { + _impl_.attachment_name_.ClearNonDefaultToEmpty(); + } + if (cached_has_bits & 0x00000004u) { GOOGLE_DCHECK(_impl_.bounds_mins_ != nullptr); _impl_.bounds_mins_->Clear(); } - if (cached_has_bits & 0x00000004u) { + if (cached_has_bits & 0x00000008u) { GOOGLE_DCHECK(_impl_.bounds_maxs_ != nullptr); _impl_.bounds_maxs_->Clear(); } - if (cached_has_bits & 0x00000008u) { + if (cached_has_bits & 0x00000010u) { GOOGLE_DCHECK(_impl_.fan_origin_ != nullptr); _impl_.fan_origin_->Clear(); } - if (cached_has_bits & 0x00000010u) { + if (cached_has_bits & 0x00000020u) { GOOGLE_DCHECK(_impl_.fan_origin_offset_ != nullptr); _impl_.fan_origin_offset_->Clear(); } - if (cached_has_bits & 0x00000020u) { + if (cached_has_bits & 0x00000040u) { GOOGLE_DCHECK(_impl_.fan_direction_ != nullptr); _impl_.fan_direction_->Clear(); } } - if (cached_has_bits & 0x000000c0u) { - ::memset(&_impl_.active_, 0, static_cast( - reinterpret_cast(&_impl_.falloff_) - - reinterpret_cast(&_impl_.active_)) + sizeof(_impl_.falloff_)); + _impl_.active_ = false; + if (cached_has_bits & 0x0000ff00u) { + ::memset(&_impl_.falloff_, 0, static_cast( + reinterpret_cast(&_impl_.cone_end_radius_) - + reinterpret_cast(&_impl_.falloff_)) + sizeof(_impl_.cone_end_radius_)); } - if (cached_has_bits & 0x00000f00u) { - ::memset(&_impl_.pull_towards_point_, 0, static_cast( - reinterpret_cast(&_impl_.curve_max_dist_) - - reinterpret_cast(&_impl_.pull_towards_point_)) + sizeof(_impl_.curve_max_dist_)); + if (cached_has_bits & 0x00030000u) { + _impl_.cone_length_ = 0; + _impl_.entity_handle_ = 16777215u; } _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); @@ -24198,6 +24292,63 @@ const char* CUserMsg_ParticleManager_AddFan::_InternalParse(const char* ptr, ::_ } else goto handle_unusual; continue; + // optional uint32 fan_type = 13; + case 13: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 104)) { + _Internal::set_has_fan_type(&has_bits); + _impl_.fan_type_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional float cone_start_radius = 14; + case 14: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 117)) { + _Internal::set_has_cone_start_radius(&has_bits); + _impl_.cone_start_radius_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional float cone_end_radius = 15; + case 15: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 125)) { + _Internal::set_has_cone_end_radius(&has_bits); + _impl_.cone_end_radius_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional float cone_length = 16; + case 16: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 133)) { + _Internal::set_has_cone_length(&has_bits); + _impl_.cone_length_ = ::PROTOBUF_NAMESPACE_ID::internal::UnalignedLoad(ptr); + ptr += sizeof(float); + } else + goto handle_unusual; + continue; + // optional uint32 entity_handle = 17 [default = 16777215]; + case 17: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 136)) { + _Internal::set_has_entity_handle(&has_bits); + _impl_.entity_handle_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint32(&ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; + // optional string attachment_name = 18; + case 18: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 146)) { + auto str = _internal_mutable_attachment_name(); + ptr = ::_pbi::InlineGreedyStringParser(str, ptr, ctx); + CHK_(ptr); + #ifndef NDEBUG + ::_pbi::VerifyUTF8(str, "CUserMsg_ParticleManager.AddFan.attachment_name"); + #endif // !NDEBUG + } else + goto handle_unusual; + continue; default: goto handle_unusual; } // switch @@ -24230,48 +24381,48 @@ uint8_t* CUserMsg_ParticleManager_AddFan::_InternalSerialize( cached_has_bits = _impl_._has_bits_[0]; // optional bool active = 1; - if (cached_has_bits & 0x00000040u) { + if (cached_has_bits & 0x00000080u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteBoolToArray(1, this->_internal_active(), target); } // optional .CMsgVector bounds_mins = 2; - if (cached_has_bits & 0x00000002u) { + if (cached_has_bits & 0x00000004u) { target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: InternalWriteMessage(2, _Internal::bounds_mins(this), _Internal::bounds_mins(this).GetCachedSize(), target, stream); } // optional .CMsgVector bounds_maxs = 3; - if (cached_has_bits & 0x00000004u) { + if (cached_has_bits & 0x00000008u) { target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: InternalWriteMessage(3, _Internal::bounds_maxs(this), _Internal::bounds_maxs(this).GetCachedSize(), target, stream); } // optional .CMsgVector fan_origin = 4; - if (cached_has_bits & 0x00000008u) { + if (cached_has_bits & 0x00000010u) { target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: InternalWriteMessage(4, _Internal::fan_origin(this), _Internal::fan_origin(this).GetCachedSize(), target, stream); } // optional .CMsgVector fan_origin_offset = 5; - if (cached_has_bits & 0x00000010u) { + if (cached_has_bits & 0x00000020u) { target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: InternalWriteMessage(5, _Internal::fan_origin_offset(this), _Internal::fan_origin_offset(this).GetCachedSize(), target, stream); } // optional .CMsgVector fan_direction = 6; - if (cached_has_bits & 0x00000020u) { + if (cached_has_bits & 0x00000040u) { target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: InternalWriteMessage(6, _Internal::fan_direction(this), _Internal::fan_direction(this).GetCachedSize(), target, stream); } // optional float force = 7; - if (cached_has_bits & 0x00000200u) { + if (cached_has_bits & 0x00000400u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteFloatToArray(7, this->_internal_force(), target); } @@ -24287,29 +24438,69 @@ uint8_t* CUserMsg_ParticleManager_AddFan::_InternalSerialize( } // optional bool falloff = 9; - if (cached_has_bits & 0x00000080u) { + if (cached_has_bits & 0x00000100u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteBoolToArray(9, this->_internal_falloff(), target); } // optional bool pull_towards_point = 10; - if (cached_has_bits & 0x00000100u) { + if (cached_has_bits & 0x00000200u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteBoolToArray(10, this->_internal_pull_towards_point(), target); } // optional float curve_min_dist = 11; - if (cached_has_bits & 0x00000400u) { + if (cached_has_bits & 0x00000800u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteFloatToArray(11, this->_internal_curve_min_dist(), target); } // optional float curve_max_dist = 12; - if (cached_has_bits & 0x00000800u) { + if (cached_has_bits & 0x00001000u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteFloatToArray(12, this->_internal_curve_max_dist(), target); } + // optional uint32 fan_type = 13; + if (cached_has_bits & 0x00002000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(13, this->_internal_fan_type(), target); + } + + // optional float cone_start_radius = 14; + if (cached_has_bits & 0x00004000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(14, this->_internal_cone_start_radius(), target); + } + + // optional float cone_end_radius = 15; + if (cached_has_bits & 0x00008000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(15, this->_internal_cone_end_radius(), target); + } + + // optional float cone_length = 16; + if (cached_has_bits & 0x00010000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteFloatToArray(16, this->_internal_cone_length(), target); + } + + // optional uint32 entity_handle = 17 [default = 16777215]; + if (cached_has_bits & 0x00020000u) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteUInt32ToArray(17, this->_internal_entity_handle(), target); + } + + // optional string attachment_name = 18; + if (cached_has_bits & 0x00000002u) { + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( + this->_internal_attachment_name().data(), static_cast(this->_internal_attachment_name().length()), + ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, + "CUserMsg_ParticleManager.AddFan.attachment_name"); + target = stream->WriteStringMaybeAliased( + 18, this->_internal_attachment_name(), target); + } + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); @@ -24335,73 +24526,109 @@ size_t CUserMsg_ParticleManager_AddFan::ByteSizeLong() const { this->_internal_fan_force_curve()); } - // optional .CMsgVector bounds_mins = 2; + // optional string attachment_name = 18; if (cached_has_bits & 0x00000002u) { + total_size += 2 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( + this->_internal_attachment_name()); + } + + // optional .CMsgVector bounds_mins = 2; + if (cached_has_bits & 0x00000004u) { total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize( *_impl_.bounds_mins_); } // optional .CMsgVector bounds_maxs = 3; - if (cached_has_bits & 0x00000004u) { + if (cached_has_bits & 0x00000008u) { total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize( *_impl_.bounds_maxs_); } // optional .CMsgVector fan_origin = 4; - if (cached_has_bits & 0x00000008u) { + if (cached_has_bits & 0x00000010u) { total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize( *_impl_.fan_origin_); } // optional .CMsgVector fan_origin_offset = 5; - if (cached_has_bits & 0x00000010u) { + if (cached_has_bits & 0x00000020u) { total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize( *_impl_.fan_origin_offset_); } // optional .CMsgVector fan_direction = 6; - if (cached_has_bits & 0x00000020u) { + if (cached_has_bits & 0x00000040u) { total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize( *_impl_.fan_direction_); } // optional bool active = 1; - if (cached_has_bits & 0x00000040u) { + if (cached_has_bits & 0x00000080u) { total_size += 1 + 1; } + } + if (cached_has_bits & 0x0000ff00u) { // optional bool falloff = 9; - if (cached_has_bits & 0x00000080u) { + if (cached_has_bits & 0x00000100u) { total_size += 1 + 1; } - } - if (cached_has_bits & 0x00000f00u) { // optional bool pull_towards_point = 10; - if (cached_has_bits & 0x00000100u) { + if (cached_has_bits & 0x00000200u) { total_size += 1 + 1; } // optional float force = 7; - if (cached_has_bits & 0x00000200u) { + if (cached_has_bits & 0x00000400u) { total_size += 1 + 4; } // optional float curve_min_dist = 11; - if (cached_has_bits & 0x00000400u) { + if (cached_has_bits & 0x00000800u) { total_size += 1 + 4; } // optional float curve_max_dist = 12; - if (cached_has_bits & 0x00000800u) { + if (cached_has_bits & 0x00001000u) { + total_size += 1 + 4; + } + + // optional uint32 fan_type = 13; + if (cached_has_bits & 0x00002000u) { + total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_fan_type()); + } + + // optional float cone_start_radius = 14; + if (cached_has_bits & 0x00004000u) { + total_size += 1 + 4; + } + + // optional float cone_end_radius = 15; + if (cached_has_bits & 0x00008000u) { total_size += 1 + 4; } + } + if (cached_has_bits & 0x00030000u) { + // optional float cone_length = 16; + if (cached_has_bits & 0x00010000u) { + total_size += 2 + 4; + } + + // optional uint32 entity_handle = 17 [default = 16777215]; + if (cached_has_bits & 0x00020000u) { + total_size += 2 + + ::_pbi::WireFormatLite::UInt32Size( + this->_internal_entity_handle()); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } @@ -24427,46 +24654,67 @@ void CUserMsg_ParticleManager_AddFan::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message _this->_internal_set_fan_force_curve(from._internal_fan_force_curve()); } if (cached_has_bits & 0x00000002u) { + _this->_internal_set_attachment_name(from._internal_attachment_name()); + } + if (cached_has_bits & 0x00000004u) { _this->_internal_mutable_bounds_mins()->::CMsgVector::MergeFrom( from._internal_bounds_mins()); } - if (cached_has_bits & 0x00000004u) { + if (cached_has_bits & 0x00000008u) { _this->_internal_mutable_bounds_maxs()->::CMsgVector::MergeFrom( from._internal_bounds_maxs()); } - if (cached_has_bits & 0x00000008u) { + if (cached_has_bits & 0x00000010u) { _this->_internal_mutable_fan_origin()->::CMsgVector::MergeFrom( from._internal_fan_origin()); } - if (cached_has_bits & 0x00000010u) { + if (cached_has_bits & 0x00000020u) { _this->_internal_mutable_fan_origin_offset()->::CMsgVector::MergeFrom( from._internal_fan_origin_offset()); } - if (cached_has_bits & 0x00000020u) { + if (cached_has_bits & 0x00000040u) { _this->_internal_mutable_fan_direction()->::CMsgVector::MergeFrom( from._internal_fan_direction()); } - if (cached_has_bits & 0x00000040u) { - _this->_impl_.active_ = from._impl_.active_; - } if (cached_has_bits & 0x00000080u) { - _this->_impl_.falloff_ = from._impl_.falloff_; + _this->_impl_.active_ = from._impl_.active_; } _this->_impl_._has_bits_[0] |= cached_has_bits; } - if (cached_has_bits & 0x00000f00u) { + if (cached_has_bits & 0x0000ff00u) { if (cached_has_bits & 0x00000100u) { - _this->_impl_.pull_towards_point_ = from._impl_.pull_towards_point_; + _this->_impl_.falloff_ = from._impl_.falloff_; } if (cached_has_bits & 0x00000200u) { - _this->_impl_.force_ = from._impl_.force_; + _this->_impl_.pull_towards_point_ = from._impl_.pull_towards_point_; } if (cached_has_bits & 0x00000400u) { - _this->_impl_.curve_min_dist_ = from._impl_.curve_min_dist_; + _this->_impl_.force_ = from._impl_.force_; } if (cached_has_bits & 0x00000800u) { + _this->_impl_.curve_min_dist_ = from._impl_.curve_min_dist_; + } + if (cached_has_bits & 0x00001000u) { _this->_impl_.curve_max_dist_ = from._impl_.curve_max_dist_; } + if (cached_has_bits & 0x00002000u) { + _this->_impl_.fan_type_ = from._impl_.fan_type_; + } + if (cached_has_bits & 0x00004000u) { + _this->_impl_.cone_start_radius_ = from._impl_.cone_start_radius_; + } + if (cached_has_bits & 0x00008000u) { + _this->_impl_.cone_end_radius_ = from._impl_.cone_end_radius_; + } + _this->_impl_._has_bits_[0] |= cached_has_bits; + } + if (cached_has_bits & 0x00030000u) { + if (cached_has_bits & 0x00010000u) { + _this->_impl_.cone_length_ = from._impl_.cone_length_; + } + if (cached_has_bits & 0x00020000u) { + _this->_impl_.entity_handle_ = from._impl_.entity_handle_; + } _this->_impl_._has_bits_[0] |= cached_has_bits; } _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); @@ -24493,12 +24741,17 @@ void CUserMsg_ParticleManager_AddFan::InternalSwap(CUserMsg_ParticleManager_AddF &_impl_.fan_force_curve_, lhs_arena, &other->_impl_.fan_force_curve_, rhs_arena ); + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( + &_impl_.attachment_name_, lhs_arena, + &other->_impl_.attachment_name_, rhs_arena + ); ::PROTOBUF_NAMESPACE_ID::internal::memswap< - PROTOBUF_FIELD_OFFSET(CUserMsg_ParticleManager_AddFan, _impl_.curve_max_dist_) - + sizeof(CUserMsg_ParticleManager_AddFan::_impl_.curve_max_dist_) + PROTOBUF_FIELD_OFFSET(CUserMsg_ParticleManager_AddFan, _impl_.cone_length_) + + sizeof(CUserMsg_ParticleManager_AddFan::_impl_.cone_length_) - PROTOBUF_FIELD_OFFSET(CUserMsg_ParticleManager_AddFan, _impl_.bounds_mins_)>( reinterpret_cast(&_impl_.bounds_mins_), reinterpret_cast(&other->_impl_.bounds_mins_)); + swap(_impl_.entity_handle_, other->_impl_.entity_handle_); } ::PROTOBUF_NAMESPACE_ID::Metadata CUserMsg_ParticleManager_AddFan::GetMetadata() const { @@ -24988,6 +25241,46 @@ ::PROTOBUF_NAMESPACE_ID::Metadata CUserMsg_ParticleManager_UpdateFan::GetMetadat // =================================================================== +class CUserMsg_ParticleManager_RemoveFan::_Internal { + public: +}; + +CUserMsg_ParticleManager_RemoveFan::CUserMsg_ParticleManager_RemoveFan(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned) + : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase(arena, is_message_owned) { + // @@protoc_insertion_point(arena_constructor:CUserMsg_ParticleManager.RemoveFan) +} +CUserMsg_ParticleManager_RemoveFan::CUserMsg_ParticleManager_RemoveFan(const CUserMsg_ParticleManager_RemoveFan& from) + : ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase() { + CUserMsg_ParticleManager_RemoveFan* const _this = this; (void)_this; + _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); + // @@protoc_insertion_point(copy_constructor:CUserMsg_ParticleManager.RemoveFan) +} + + + + + +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData CUserMsg_ParticleManager_RemoveFan::_class_data_ = { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl, + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl, +}; +const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*CUserMsg_ParticleManager_RemoveFan::GetClassData() const { return &_class_data_; } + + + + + + + +::PROTOBUF_NAMESPACE_ID::Metadata CUserMsg_ParticleManager_RemoveFan::GetMetadata() const { + return ::_pbi::AssignDescriptors( + &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, + file_level_metadata_usermessages_2eproto[78]); +} + +// =================================================================== + class CUserMsg_ParticleManager_SetParticleClusterGrowth::_Internal { public: using HasBits = decltype(std::declval()._impl_._has_bits_); @@ -25234,7 +25527,7 @@ void CUserMsg_ParticleManager_SetParticleClusterGrowth::InternalSwap(CUserMsg_Pa ::PROTOBUF_NAMESPACE_ID::Metadata CUserMsg_ParticleManager_SetParticleClusterGrowth::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[78]); + file_level_metadata_usermessages_2eproto[79]); } // =================================================================== @@ -25243,10 +25536,10 @@ class CUserMsg_ParticleManager::_Internal { public: using HasBits = decltype(std::declval()._impl_._has_bits_); static void set_has_type(HasBits* has_bits) { - (*has_bits)[1] |= 64u; + (*has_bits)[1] |= 128u; } static void set_has_index(HasBits* has_bits) { - (*has_bits)[1] |= 128u; + (*has_bits)[1] |= 256u; } static const ::CUserMsg_ParticleManager_ReleaseParticleIndex& release_particle_index(const CUserMsg_ParticleManager* msg); static void set_has_release_particle_index(HasBits* has_bits) { @@ -25400,8 +25693,12 @@ class CUserMsg_ParticleManager::_Internal { static void set_has_set_particle_cluster_growth(HasBits* has_bits) { (*has_bits)[1] |= 32u; } + static const ::CUserMsg_ParticleManager_RemoveFan& remove_fan(const CUserMsg_ParticleManager* msg); + static void set_has_remove_fan(HasBits* has_bits) { + (*has_bits)[1] |= 64u; + } static bool MissingRequiredFields(const HasBits& has_bits) { - return ((has_bits[1] & 0x000000c0) ^ 0x000000c0) != 0; + return ((has_bits[1] & 0x00000180) ^ 0x00000180) != 0; } }; @@ -25557,6 +25854,10 @@ const ::CUserMsg_ParticleManager_SetParticleClusterGrowth& CUserMsg_ParticleManager::_Internal::set_particle_cluster_growth(const CUserMsg_ParticleManager* msg) { return *msg->_impl_.set_particle_cluster_growth_; } +const ::CUserMsg_ParticleManager_RemoveFan& +CUserMsg_ParticleManager::_Internal::remove_fan(const CUserMsg_ParticleManager* msg) { + return *msg->_impl_.remove_fan_; +} CUserMsg_ParticleManager::CUserMsg_ParticleManager(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { @@ -25608,6 +25909,7 @@ CUserMsg_ParticleManager::CUserMsg_ParticleManager(const CUserMsg_ParticleManage , decltype(_impl_.add_fan_){nullptr} , decltype(_impl_.update_fan_){nullptr} , decltype(_impl_.set_particle_cluster_growth_){nullptr} + , decltype(_impl_.remove_fan_){nullptr} , decltype(_impl_.type_){} , decltype(_impl_.index_){}}; @@ -25727,6 +26029,9 @@ CUserMsg_ParticleManager::CUserMsg_ParticleManager(const CUserMsg_ParticleManage if (from._internal_has_set_particle_cluster_growth()) { _this->_impl_.set_particle_cluster_growth_ = new ::CUserMsg_ParticleManager_SetParticleClusterGrowth(*from._impl_.set_particle_cluster_growth_); } + if (from._internal_has_remove_fan()) { + _this->_impl_.remove_fan_ = new ::CUserMsg_ParticleManager_RemoveFan(*from._impl_.remove_fan_); + } ::memcpy(&_impl_.type_, &from._impl_.type_, static_cast(reinterpret_cast(&_impl_.index_) - reinterpret_cast(&_impl_.type_)) + sizeof(_impl_.index_)); @@ -25779,6 +26084,7 @@ inline void CUserMsg_ParticleManager::SharedCtor( , decltype(_impl_.add_fan_){nullptr} , decltype(_impl_.update_fan_){nullptr} , decltype(_impl_.set_particle_cluster_growth_){nullptr} + , decltype(_impl_.remove_fan_){nullptr} , decltype(_impl_.type_){0} , decltype(_impl_.index_){0u} }; @@ -25834,6 +26140,7 @@ inline void CUserMsg_ParticleManager::SharedDtor() { if (this != internal_default_instance()) delete _impl_.add_fan_; if (this != internal_default_instance()) delete _impl_.update_fan_; if (this != internal_default_instance()) delete _impl_.set_particle_cluster_growth_; + if (this != internal_default_instance()) delete _impl_.remove_fan_; } void CUserMsg_ParticleManager::SetCachedSize(int size) const { @@ -25985,7 +26292,7 @@ void CUserMsg_ParticleManager::Clear() { } } cached_has_bits = _impl_._has_bits_[1]; - if (cached_has_bits & 0x0000003fu) { + if (cached_has_bits & 0x0000007fu) { if (cached_has_bits & 0x00000001u) { GOOGLE_DCHECK(_impl_.destroy_physics_sim_ != nullptr); _impl_.destroy_physics_sim_->Clear(); @@ -26010,12 +26317,13 @@ void CUserMsg_ParticleManager::Clear() { GOOGLE_DCHECK(_impl_.set_particle_cluster_growth_ != nullptr); _impl_.set_particle_cluster_growth_->Clear(); } + if (cached_has_bits & 0x00000040u) { + GOOGLE_DCHECK(_impl_.remove_fan_ != nullptr); + _impl_.remove_fan_->Clear(); + } } - if (cached_has_bits & 0x000000c0u) { - ::memset(&_impl_.type_, 0, static_cast( - reinterpret_cast(&_impl_.index_) - - reinterpret_cast(&_impl_.type_)) + sizeof(_impl_.index_)); - } + _impl_.type_ = 0; + _impl_.index_ = 0u; _impl_._has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } @@ -26352,6 +26660,14 @@ const char* CUserMsg_ParticleManager::_InternalParse(const char* ptr, ::_pbi::Pa } else goto handle_unusual; continue; + // optional .CUserMsg_ParticleManager.RemoveFan remove_fan = 42; + case 42: + if (PROTOBUF_PREDICT_TRUE(static_cast(tag) == 82)) { + ptr = ctx->ParseMessage(_internal_mutable_remove_fan(), ptr); + CHK_(ptr); + } else + goto handle_unusual; + continue; default: goto handle_unusual; } // switch @@ -26388,14 +26704,14 @@ uint8_t* CUserMsg_ParticleManager::_InternalSerialize( cached_has_bits = _impl_._has_bits_[1]; // required .PARTICLE_MESSAGE type = 1 [default = GAME_PARTICLE_MANAGER_EVENT_CREATE]; - if (cached_has_bits & 0x00000040u) { + if (cached_has_bits & 0x00000080u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteEnumToArray( 1, this->_internal_type(), target); } // required uint32 index = 2; - if (cached_has_bits & 0x00000080u) { + if (cached_has_bits & 0x00000100u) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteUInt32ToArray(2, this->_internal_index(), target); } @@ -26668,6 +26984,13 @@ uint8_t* CUserMsg_ParticleManager::_InternalSerialize( _Internal::set_particle_cluster_growth(this).GetCachedSize(), target, stream); } + // optional .CUserMsg_ParticleManager.RemoveFan remove_fan = 42; + if (cached_has_bits & 0x00000040u) { + target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: + InternalWriteMessage(42, _Internal::remove_fan(this), + _Internal::remove_fan(this).GetCachedSize(), target, stream); + } + // Extension range [100, 202) target = _impl_._extensions_._InternalSerialize( internal_default_instance(), 100, 202, target, stream); @@ -26703,7 +27026,7 @@ size_t CUserMsg_ParticleManager::ByteSizeLong() const { total_size += _impl_._extensions_.ByteSize(); - if (((_impl_._has_bits_[1] & 0x000000c0) ^ 0x000000c0) == 0) { // All required fields are present. + if (((_impl_._has_bits_[1] & 0x00000180) ^ 0x00000180) == 0) { // All required fields are present. // required .PARTICLE_MESSAGE type = 1 [default = GAME_PARTICLE_MANAGER_EVENT_CREATE]; total_size += 1 + ::_pbi::WireFormatLite::EnumSize(this->_internal_type()); @@ -26952,7 +27275,7 @@ size_t CUserMsg_ParticleManager::ByteSizeLong() const { } cached_has_bits = _impl_._has_bits_[1]; - if (cached_has_bits & 0x0000003fu) { + if (cached_has_bits & 0x0000007fu) { // optional .CUserMsg_ParticleManager.DestroyPhysicsSim destroy_physics_sim = 36; if (cached_has_bits & 0x00000001u) { total_size += 2 + @@ -26995,6 +27318,13 @@ size_t CUserMsg_ParticleManager::ByteSizeLong() const { *_impl_.set_particle_cluster_growth_); } + // optional .CUserMsg_ParticleManager.RemoveFan remove_fan = 42; + if (cached_has_bits & 0x00000040u) { + total_size += 2 + + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize( + *_impl_.remove_fan_); + } + } return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); } @@ -27178,13 +27508,17 @@ void CUserMsg_ParticleManager::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_ms from._internal_set_particle_cluster_growth()); } if (cached_has_bits & 0x00000040u) { - _this->_impl_.type_ = from._impl_.type_; + _this->_internal_mutable_remove_fan()->::CUserMsg_ParticleManager_RemoveFan::MergeFrom( + from._internal_remove_fan()); } if (cached_has_bits & 0x00000080u) { - _this->_impl_.index_ = from._impl_.index_; + _this->_impl_.type_ = from._impl_.type_; } _this->_impl_._has_bits_[1] |= cached_has_bits; } + if (cached_has_bits & 0x00000100u) { + _this->_internal_set_index(from._internal_index()); + } _this->_impl_._extensions_.MergeFrom(internal_default_instance(), from._impl_._extensions_); _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } @@ -27222,7 +27556,7 @@ void CUserMsg_ParticleManager::InternalSwap(CUserMsg_ParticleManager* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CUserMsg_ParticleManager::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[79]); + file_level_metadata_usermessages_2eproto[80]); } // =================================================================== @@ -27413,7 +27747,7 @@ void CUserMsg_HudError::InternalSwap(CUserMsg_HudError* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CUserMsg_HudError::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[80]); + file_level_metadata_usermessages_2eproto[81]); } // =================================================================== @@ -27690,7 +28024,7 @@ void CUserMsg_CustomGameEvent::InternalSwap(CUserMsg_CustomGameEvent* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CUserMsg_CustomGameEvent::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[81]); + file_level_metadata_usermessages_2eproto[82]); } // =================================================================== @@ -27983,7 +28317,7 @@ void CUserMessageHapticsManagerPulse::InternalSwap(CUserMessageHapticsManagerPul ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessageHapticsManagerPulse::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[82]); + file_level_metadata_usermessages_2eproto[83]); } // =================================================================== @@ -28248,7 +28582,7 @@ void CUserMessageHapticsManagerEffect::InternalSwap(CUserMessageHapticsManagerEf ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessageHapticsManagerEffect::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[83]); + file_level_metadata_usermessages_2eproto[84]); } // =================================================================== @@ -28498,7 +28832,7 @@ void CUserMessageAnimStateGraphState::InternalSwap(CUserMessageAnimStateGraphSta ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessageAnimStateGraphState::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[84]); + file_level_metadata_usermessages_2eproto[85]); } // =================================================================== @@ -28794,7 +29128,7 @@ void CUserMessageUpdateCssClasses::InternalSwap(CUserMessageUpdateCssClasses* ot ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessageUpdateCssClasses::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[85]); + file_level_metadata_usermessages_2eproto[86]); } // =================================================================== @@ -28985,7 +29319,7 @@ void CUserMessageServerFrameTime::InternalSwap(CUserMessageServerFrameTime* othe ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessageServerFrameTime::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[86]); + file_level_metadata_usermessages_2eproto[87]); } // =================================================================== @@ -29176,7 +29510,7 @@ void CUserMessageLagCompensationError::InternalSwap(CUserMessageLagCompensationE ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessageLagCompensationError::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[87]); + file_level_metadata_usermessages_2eproto[88]); } // =================================================================== @@ -29433,7 +29767,7 @@ void CUserMessageRequestDllStatus::InternalSwap(CUserMessageRequestDllStatus* ot ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessageRequestDllStatus::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[88]); + file_level_metadata_usermessages_2eproto[89]); } // =================================================================== @@ -29754,7 +30088,7 @@ void CUserMessageRequestUtilAction::InternalSwap(CUserMessageRequestUtilAction* ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessageRequestUtilAction::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[89]); + file_level_metadata_usermessages_2eproto[90]); } // =================================================================== @@ -30078,7 +30412,7 @@ void CUserMessage_UtilMsg_Response_ItemDetail::InternalSwap(CUserMessage_UtilMsg ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_UtilMsg_Response_ItemDetail::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[90]); + file_level_metadata_usermessages_2eproto[91]); } // =================================================================== @@ -30620,7 +30954,7 @@ void CUserMessage_UtilMsg_Response::InternalSwap(CUserMessage_UtilMsg_Response* ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_UtilMsg_Response::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[91]); + file_level_metadata_usermessages_2eproto[92]); } // =================================================================== @@ -30944,7 +31278,7 @@ void CUserMessage_DllStatus_CVDiagnostic::InternalSwap(CUserMessage_DllStatus_CV ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_DllStatus_CVDiagnostic::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[92]); + file_level_metadata_usermessages_2eproto[93]); } // =================================================================== @@ -31268,7 +31602,7 @@ void CUserMessage_DllStatus_CModule::InternalSwap(CUserMessage_DllStatus_CModule ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_DllStatus_CModule::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[93]); + file_level_metadata_usermessages_2eproto[94]); } // =================================================================== @@ -31747,7 +32081,7 @@ void CUserMessage_DllStatus::InternalSwap(CUserMessage_DllStatus* other) { ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_DllStatus::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[94]); + file_level_metadata_usermessages_2eproto[95]); } // =================================================================== @@ -32012,7 +32346,7 @@ void CUserMessageRequestInventory::InternalSwap(CUserMessageRequestInventory* ot ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessageRequestInventory::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[95]); + file_level_metadata_usermessages_2eproto[96]); } // =================================================================== @@ -32545,7 +32879,7 @@ void CUserMessage_Inventory_Response_InventoryDetail::InternalSwap(CUserMessage_ ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_Inventory_Response_InventoryDetail::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[96]); + file_level_metadata_usermessages_2eproto[97]); } // =================================================================== @@ -33118,7 +33452,7 @@ void CUserMessage_Inventory_Response::InternalSwap(CUserMessage_Inventory_Respon ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_Inventory_Response::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[97]); + file_level_metadata_usermessages_2eproto[98]); } // =================================================================== @@ -33757,7 +34091,7 @@ void CUserMessageRequestDiagnostic_Diagnostic::InternalSwap(CUserMessageRequestD ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessageRequestDiagnostic_Diagnostic::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[98]); + file_level_metadata_usermessages_2eproto[99]); } // =================================================================== @@ -33942,7 +34276,7 @@ void CUserMessageRequestDiagnostic::InternalSwap(CUserMessageRequestDiagnostic* ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessageRequestDiagnostic::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[99]); + file_level_metadata_usermessages_2eproto[100]); } // =================================================================== @@ -34661,7 +34995,7 @@ void CUserMessage_Diagnostic_Response_Diagnostic::InternalSwap(CUserMessage_Diag ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_Diagnostic_Response_Diagnostic::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[100]); + file_level_metadata_usermessages_2eproto[101]); } // =================================================================== @@ -35016,7 +35350,7 @@ void CUserMessage_Diagnostic_Response::InternalSwap(CUserMessage_Diagnostic_Resp ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_Diagnostic_Response::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[101]); + file_level_metadata_usermessages_2eproto[102]); } // =================================================================== @@ -35349,7 +35683,7 @@ void CUserMessage_ExtraUserData::InternalSwap(CUserMessage_ExtraUserData* other) ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_ExtraUserData::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[102]); + file_level_metadata_usermessages_2eproto[103]); } // =================================================================== @@ -35606,7 +35940,7 @@ void CUserMessage_NotifyResponseFound_Criteria::InternalSwap(CUserMessage_Notify ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_NotifyResponseFound_Criteria::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[103]); + file_level_metadata_usermessages_2eproto[104]); } // =================================================================== @@ -36294,7 +36628,7 @@ void CUserMessage_NotifyResponseFound::InternalSwap(CUserMessage_NotifyResponseF ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_NotifyResponseFound::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[104]); + file_level_metadata_usermessages_2eproto[105]); } // =================================================================== @@ -36707,7 +37041,7 @@ void CUserMessage_PlayResponseConditional::InternalSwap(CUserMessage_PlayRespons ::PROTOBUF_NAMESPACE_ID::Metadata CUserMessage_PlayResponseConditional::GetMetadata() const { return ::_pbi::AssignDescriptors( &descriptor_table_usermessages_2eproto_getter, &descriptor_table_usermessages_2eproto_once, - file_level_metadata_usermessages_2eproto[105]); + file_level_metadata_usermessages_2eproto[106]); } // @@protoc_insertion_point(namespace_scope) @@ -37024,6 +37358,10 @@ template<> PROTOBUF_NOINLINE ::CUserMsg_ParticleManager_UpdateFan* Arena::CreateMaybeMessage< ::CUserMsg_ParticleManager_UpdateFan >(Arena* arena) { return Arena::CreateMessageInternal< ::CUserMsg_ParticleManager_UpdateFan >(arena); } +template<> PROTOBUF_NOINLINE ::CUserMsg_ParticleManager_RemoveFan* +Arena::CreateMaybeMessage< ::CUserMsg_ParticleManager_RemoveFan >(Arena* arena) { + return Arena::CreateMessageInternal< ::CUserMsg_ParticleManager_RemoveFan >(arena); +} template<> PROTOBUF_NOINLINE ::CUserMsg_ParticleManager_SetParticleClusterGrowth* Arena::CreateMaybeMessage< ::CUserMsg_ParticleManager_SetParticleClusterGrowth >(Arena* arena) { return Arena::CreateMessageInternal< ::CUserMsg_ParticleManager_SetParticleClusterGrowth >(arena); diff --git a/protobuf/generated/usermessages.pb.h b/protobuf/generated/usermessages.pb.h index b0d157ae3..554536ac0 100644 --- a/protobuf/generated/usermessages.pb.h +++ b/protobuf/generated/usermessages.pb.h @@ -284,6 +284,9 @@ extern CUserMsg_ParticleManager_ParticleSkipToTimeDefaultTypeInternal _CUserMsg_ class CUserMsg_ParticleManager_ReleaseParticleIndex; struct CUserMsg_ParticleManager_ReleaseParticleIndexDefaultTypeInternal; extern CUserMsg_ParticleManager_ReleaseParticleIndexDefaultTypeInternal _CUserMsg_ParticleManager_ReleaseParticleIndex_default_instance_; +class CUserMsg_ParticleManager_RemoveFan; +struct CUserMsg_ParticleManager_RemoveFanDefaultTypeInternal; +extern CUserMsg_ParticleManager_RemoveFanDefaultTypeInternal _CUserMsg_ParticleManager_RemoveFan_default_instance_; class CUserMsg_ParticleManager_SetControlPointModel; struct CUserMsg_ParticleManager_SetControlPointModelDefaultTypeInternal; extern CUserMsg_ParticleManager_SetControlPointModelDefaultTypeInternal _CUserMsg_ParticleManager_SetControlPointModel_default_instance_; @@ -445,6 +448,7 @@ template<> ::CUserMsg_ParticleManager_ParticleCanFreeze* Arena::CreateMaybeMessa template<> ::CUserMsg_ParticleManager_ParticleFreezeTransitionOverride* Arena::CreateMaybeMessage<::CUserMsg_ParticleManager_ParticleFreezeTransitionOverride>(Arena*); template<> ::CUserMsg_ParticleManager_ParticleSkipToTime* Arena::CreateMaybeMessage<::CUserMsg_ParticleManager_ParticleSkipToTime>(Arena*); template<> ::CUserMsg_ParticleManager_ReleaseParticleIndex* Arena::CreateMaybeMessage<::CUserMsg_ParticleManager_ReleaseParticleIndex>(Arena*); +template<> ::CUserMsg_ParticleManager_RemoveFan* Arena::CreateMaybeMessage<::CUserMsg_ParticleManager_RemoveFan>(Arena*); template<> ::CUserMsg_ParticleManager_SetControlPointModel* Arena::CreateMaybeMessage<::CUserMsg_ParticleManager_SetControlPointModel>(Arena*); template<> ::CUserMsg_ParticleManager_SetControlPointSnapshot* Arena::CreateMaybeMessage<::CUserMsg_ParticleManager_SetControlPointSnapshot>(Arena*); template<> ::CUserMsg_ParticleManager_SetMaterialOverride* Arena::CreateMaybeMessage<::CUserMsg_ParticleManager_SetMaterialOverride>(Arena*); @@ -638,11 +642,12 @@ enum PARTICLE_MESSAGE : int { GAME_PARTICLE_MANAGER_EVENT_SET_MATERIAL_OVERRIDE = 35, GAME_PARTICLE_MANAGER_EVENT_ADD_FAN = 36, GAME_PARTICLE_MANAGER_EVENT_UPDATE_FAN = 37, - GAME_PARTICLE_MANAGER_EVENT_SET_CLUSTER_GROWTH = 38 + GAME_PARTICLE_MANAGER_EVENT_SET_CLUSTER_GROWTH = 38, + GAME_PARTICLE_MANAGER_EVENT_REMOVE_FAN = 39 }; bool PARTICLE_MESSAGE_IsValid(int value); constexpr PARTICLE_MESSAGE PARTICLE_MESSAGE_MIN = GAME_PARTICLE_MANAGER_EVENT_CREATE; -constexpr PARTICLE_MESSAGE PARTICLE_MESSAGE_MAX = GAME_PARTICLE_MANAGER_EVENT_SET_CLUSTER_GROWTH; +constexpr PARTICLE_MESSAGE PARTICLE_MESSAGE_MAX = GAME_PARTICLE_MANAGER_EVENT_REMOVE_FAN; constexpr int PARTICLE_MESSAGE_ARRAYSIZE = PARTICLE_MESSAGE_MAX + 1; const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* PARTICLE_MESSAGE_descriptor(); @@ -15134,6 +15139,7 @@ class CUserMsg_ParticleManager_AddFan : enum : int { kFanForceCurveFieldNumber = 8, + kAttachmentNameFieldNumber = 18, kBoundsMinsFieldNumber = 2, kBoundsMaxsFieldNumber = 3, kFanOriginFieldNumber = 4, @@ -15145,6 +15151,11 @@ class CUserMsg_ParticleManager_AddFan : kForceFieldNumber = 7, kCurveMinDistFieldNumber = 11, kCurveMaxDistFieldNumber = 12, + kFanTypeFieldNumber = 13, + kConeStartRadiusFieldNumber = 14, + kConeEndRadiusFieldNumber = 15, + kConeLengthFieldNumber = 16, + kEntityHandleFieldNumber = 17, }; // optional string fan_force_curve = 8; bool has_fan_force_curve() const; @@ -15164,6 +15175,24 @@ class CUserMsg_ParticleManager_AddFan : std::string* _internal_mutable_fan_force_curve(); public: + // optional string attachment_name = 18; + bool has_attachment_name() const; + private: + bool _internal_has_attachment_name() const; + public: + void clear_attachment_name(); + const std::string& attachment_name() const; + template + void set_attachment_name(ArgT0&& arg0, ArgT... args); + std::string* mutable_attachment_name(); + PROTOBUF_NODISCARD std::string* release_attachment_name(); + void set_allocated_attachment_name(std::string* attachment_name); + private: + const std::string& _internal_attachment_name() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_attachment_name(const std::string& value); + std::string* _internal_mutable_attachment_name(); + public: + // optional .CMsgVector bounds_mins = 2; bool has_bounds_mins() const; private: @@ -15332,6 +15361,71 @@ class CUserMsg_ParticleManager_AddFan : void _internal_set_curve_max_dist(float value); public: + // optional uint32 fan_type = 13; + bool has_fan_type() const; + private: + bool _internal_has_fan_type() const; + public: + void clear_fan_type(); + uint32_t fan_type() const; + void set_fan_type(uint32_t value); + private: + uint32_t _internal_fan_type() const; + void _internal_set_fan_type(uint32_t value); + public: + + // optional float cone_start_radius = 14; + bool has_cone_start_radius() const; + private: + bool _internal_has_cone_start_radius() const; + public: + void clear_cone_start_radius(); + float cone_start_radius() const; + void set_cone_start_radius(float value); + private: + float _internal_cone_start_radius() const; + void _internal_set_cone_start_radius(float value); + public: + + // optional float cone_end_radius = 15; + bool has_cone_end_radius() const; + private: + bool _internal_has_cone_end_radius() const; + public: + void clear_cone_end_radius(); + float cone_end_radius() const; + void set_cone_end_radius(float value); + private: + float _internal_cone_end_radius() const; + void _internal_set_cone_end_radius(float value); + public: + + // optional float cone_length = 16; + bool has_cone_length() const; + private: + bool _internal_has_cone_length() const; + public: + void clear_cone_length(); + float cone_length() const; + void set_cone_length(float value); + private: + float _internal_cone_length() const; + void _internal_set_cone_length(float value); + public: + + // optional uint32 entity_handle = 17 [default = 16777215]; + bool has_entity_handle() const; + private: + bool _internal_has_entity_handle() const; + public: + void clear_entity_handle(); + uint32_t entity_handle() const; + void set_entity_handle(uint32_t value); + private: + uint32_t _internal_entity_handle() const; + void _internal_set_entity_handle(uint32_t value); + public: + // @@protoc_insertion_point(class_scope:CUserMsg_ParticleManager.AddFan) private: class _Internal; @@ -15343,6 +15437,7 @@ class CUserMsg_ParticleManager_AddFan : ::PROTOBUF_NAMESPACE_ID::internal::HasBits<1> _has_bits_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr fan_force_curve_; + ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr attachment_name_; ::CMsgVector* bounds_mins_; ::CMsgVector* bounds_maxs_; ::CMsgVector* fan_origin_; @@ -15354,6 +15449,11 @@ class CUserMsg_ParticleManager_AddFan : float force_; float curve_min_dist_; float curve_max_dist_; + uint32_t fan_type_; + float cone_start_radius_; + float cone_end_radius_; + float cone_length_; + uint32_t entity_handle_; }; union { Impl_ _impl_; }; friend struct ::TableStruct_usermessages_2eproto; @@ -15635,6 +15735,131 @@ class CUserMsg_ParticleManager_UpdateFan : }; // ------------------------------------------------------------------- +class CUserMsg_ParticleManager_RemoveFan : + public ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:CUserMsg_ParticleManager.RemoveFan) */ { + public: + inline CUserMsg_ParticleManager_RemoveFan() : CUserMsg_ParticleManager_RemoveFan(nullptr) {} + explicit PROTOBUF_CONSTEXPR CUserMsg_ParticleManager_RemoveFan(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized); + + CUserMsg_ParticleManager_RemoveFan(const CUserMsg_ParticleManager_RemoveFan& from); + CUserMsg_ParticleManager_RemoveFan(CUserMsg_ParticleManager_RemoveFan&& from) noexcept + : CUserMsg_ParticleManager_RemoveFan() { + *this = ::std::move(from); + } + + inline CUserMsg_ParticleManager_RemoveFan& operator=(const CUserMsg_ParticleManager_RemoveFan& from) { + CopyFrom(from); + return *this; + } + inline CUserMsg_ParticleManager_RemoveFan& operator=(CUserMsg_ParticleManager_RemoveFan&& from) noexcept { + if (this == &from) return *this; + if (GetOwningArena() == from.GetOwningArena() + #ifdef PROTOBUF_FORCE_COPY_IN_MOVE + && GetOwningArena() != nullptr + #endif // !PROTOBUF_FORCE_COPY_IN_MOVE + ) { + InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + + inline const ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet& unknown_fields() const { + return _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance); + } + inline ::PROTOBUF_NAMESPACE_ID::UnknownFieldSet* mutable_unknown_fields() { + return _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); + } + + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() { + return GetDescriptor(); + } + static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() { + return default_instance().GetMetadata().descriptor; + } + static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() { + return default_instance().GetMetadata().reflection; + } + static const CUserMsg_ParticleManager_RemoveFan& default_instance() { + return *internal_default_instance(); + } + static inline const CUserMsg_ParticleManager_RemoveFan* internal_default_instance() { + return reinterpret_cast( + &_CUserMsg_ParticleManager_RemoveFan_default_instance_); + } + static constexpr int kIndexInFileMessages = + 78; + + friend void swap(CUserMsg_ParticleManager_RemoveFan& a, CUserMsg_ParticleManager_RemoveFan& b) { + a.Swap(&b); + } + inline void Swap(CUserMsg_ParticleManager_RemoveFan* other) { + if (other == this) return; + #ifdef PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() != nullptr && + GetOwningArena() == other->GetOwningArena()) { + #else // PROTOBUF_FORCE_COPY_IN_SWAP + if (GetOwningArena() == other->GetOwningArena()) { + #endif // !PROTOBUF_FORCE_COPY_IN_SWAP + InternalSwap(other); + } else { + ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other); + } + } + void UnsafeArenaSwap(CUserMsg_ParticleManager_RemoveFan* other) { + if (other == this) return; + GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + CUserMsg_ParticleManager_RemoveFan* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final { + return CreateMaybeMessage(arena); + } + using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyFrom; + inline void CopyFrom(const CUserMsg_ParticleManager_RemoveFan& from) { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::CopyImpl(*this, from); + } + using ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeFrom; + void MergeFrom(const CUserMsg_ParticleManager_RemoveFan& from) { + ::PROTOBUF_NAMESPACE_ID::internal::ZeroFieldsBase::MergeImpl(*this, from); + } + public: + + private: + friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata; + static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { + return "CUserMsg_ParticleManager.RemoveFan"; + } + protected: + explicit CUserMsg_ParticleManager_RemoveFan(::PROTOBUF_NAMESPACE_ID::Arena* arena, + bool is_message_owned = false); + public: + + static const ClassData _class_data_; + const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final; + + ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // @@protoc_insertion_point(class_scope:CUserMsg_ParticleManager.RemoveFan) + private: + class _Internal; + + template friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper; + typedef void InternalArenaConstructable_; + typedef void DestructorSkippable_; + struct Impl_ { + }; + friend struct ::TableStruct_usermessages_2eproto; +}; +// ------------------------------------------------------------------- + class CUserMsg_ParticleManager_SetParticleClusterGrowth : public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:CUserMsg_ParticleManager.SetParticleClusterGrowth) */ { public: @@ -15690,7 +15915,7 @@ class CUserMsg_ParticleManager_SetParticleClusterGrowth : &_CUserMsg_ParticleManager_SetParticleClusterGrowth_default_instance_); } static constexpr int kIndexInFileMessages = - 78; + 79; friend void swap(CUserMsg_ParticleManager_SetParticleClusterGrowth& a, CUserMsg_ParticleManager_SetParticleClusterGrowth& b) { a.Swap(&b); @@ -15870,7 +16095,7 @@ class CUserMsg_ParticleManager : &_CUserMsg_ParticleManager_default_instance_); } static constexpr int kIndexInFileMessages = - 79; + 80; friend void swap(CUserMsg_ParticleManager& a, CUserMsg_ParticleManager& b) { a.Swap(&b); @@ -15977,6 +16202,7 @@ class CUserMsg_ParticleManager : typedef CUserMsg_ParticleManager_SetMaterialOverride SetMaterialOverride; typedef CUserMsg_ParticleManager_AddFan AddFan; typedef CUserMsg_ParticleManager_UpdateFan UpdateFan; + typedef CUserMsg_ParticleManager_RemoveFan RemoveFan; typedef CUserMsg_ParticleManager_SetParticleClusterGrowth SetParticleClusterGrowth; // accessors ------------------------------------------------------- @@ -16020,6 +16246,7 @@ class CUserMsg_ParticleManager : kAddFanFieldNumber = 39, kUpdateFanFieldNumber = 40, kSetParticleClusterGrowthFieldNumber = 41, + kRemoveFanFieldNumber = 42, kTypeFieldNumber = 1, kIndexFieldNumber = 2, }; @@ -16707,6 +16934,24 @@ class CUserMsg_ParticleManager : ::CUserMsg_ParticleManager_SetParticleClusterGrowth* set_particle_cluster_growth); ::CUserMsg_ParticleManager_SetParticleClusterGrowth* unsafe_arena_release_set_particle_cluster_growth(); + // optional .CUserMsg_ParticleManager.RemoveFan remove_fan = 42; + bool has_remove_fan() const; + private: + bool _internal_has_remove_fan() const; + public: + void clear_remove_fan(); + const ::CUserMsg_ParticleManager_RemoveFan& remove_fan() const; + PROTOBUF_NODISCARD ::CUserMsg_ParticleManager_RemoveFan* release_remove_fan(); + ::CUserMsg_ParticleManager_RemoveFan* mutable_remove_fan(); + void set_allocated_remove_fan(::CUserMsg_ParticleManager_RemoveFan* remove_fan); + private: + const ::CUserMsg_ParticleManager_RemoveFan& _internal_remove_fan() const; + ::CUserMsg_ParticleManager_RemoveFan* _internal_mutable_remove_fan(); + public: + void unsafe_arena_set_allocated_remove_fan( + ::CUserMsg_ParticleManager_RemoveFan* remove_fan); + ::CUserMsg_ParticleManager_RemoveFan* unsafe_arena_release_remove_fan(); + // required .PARTICLE_MESSAGE type = 1 [default = GAME_PARTICLE_MANAGER_EVENT_CREATE]; bool has_type() const; private: @@ -16976,6 +17221,7 @@ class CUserMsg_ParticleManager : ::CUserMsg_ParticleManager_AddFan* add_fan_; ::CUserMsg_ParticleManager_UpdateFan* update_fan_; ::CUserMsg_ParticleManager_SetParticleClusterGrowth* set_particle_cluster_growth_; + ::CUserMsg_ParticleManager_RemoveFan* remove_fan_; int type_; uint32_t index_; }; @@ -17039,7 +17285,7 @@ class CUserMsg_HudError : &_CUserMsg_HudError_default_instance_); } static constexpr int kIndexInFileMessages = - 80; + 81; friend void swap(CUserMsg_HudError& a, CUserMsg_HudError& b) { a.Swap(&b); @@ -17199,7 +17445,7 @@ class CUserMsg_CustomGameEvent : &_CUserMsg_CustomGameEvent_default_instance_); } static constexpr int kIndexInFileMessages = - 81; + 82; friend void swap(CUserMsg_CustomGameEvent& a, CUserMsg_CustomGameEvent& b) { a.Swap(&b); @@ -17384,7 +17630,7 @@ class CUserMessageHapticsManagerPulse : &_CUserMessageHapticsManagerPulse_default_instance_); } static constexpr int kIndexInFileMessages = - 82; + 83; friend void swap(CUserMessageHapticsManagerPulse& a, CUserMessageHapticsManagerPulse& b) { a.Swap(&b); @@ -17589,7 +17835,7 @@ class CUserMessageHapticsManagerEffect : &_CUserMessageHapticsManagerEffect_default_instance_); } static constexpr int kIndexInFileMessages = - 83; + 84; friend void swap(CUserMessageHapticsManagerEffect& a, CUserMessageHapticsManagerEffect& b) { a.Swap(&b); @@ -17779,7 +18025,7 @@ class CUserMessageAnimStateGraphState : &_CUserMessageAnimStateGraphState_default_instance_); } static constexpr int kIndexInFileMessages = - 84; + 85; friend void swap(CUserMessageAnimStateGraphState& a, CUserMessageAnimStateGraphState& b) { a.Swap(&b); @@ -17959,7 +18205,7 @@ class CUserMessageUpdateCssClasses : &_CUserMessageUpdateCssClasses_default_instance_); } static constexpr int kIndexInFileMessages = - 85; + 86; friend void swap(CUserMessageUpdateCssClasses& a, CUserMessageUpdateCssClasses& b) { a.Swap(&b); @@ -18154,7 +18400,7 @@ class CUserMessageServerFrameTime : &_CUserMessageServerFrameTime_default_instance_); } static constexpr int kIndexInFileMessages = - 86; + 87; friend void swap(CUserMessageServerFrameTime& a, CUserMessageServerFrameTime& b) { a.Swap(&b); @@ -18314,7 +18560,7 @@ class CUserMessageLagCompensationError : &_CUserMessageLagCompensationError_default_instance_); } static constexpr int kIndexInFileMessages = - 87; + 88; friend void swap(CUserMessageLagCompensationError& a, CUserMessageLagCompensationError& b) { a.Swap(&b); @@ -18474,7 +18720,7 @@ class CUserMessageRequestDllStatus : &_CUserMessageRequestDllStatus_default_instance_); } static constexpr int kIndexInFileMessages = - 88; + 89; friend void swap(CUserMessageRequestDllStatus& a, CUserMessageRequestDllStatus& b) { a.Swap(&b); @@ -18654,7 +18900,7 @@ class CUserMessageRequestUtilAction : &_CUserMessageRequestUtilAction_default_instance_); } static constexpr int kIndexInFileMessages = - 89; + 90; friend void swap(CUserMessageRequestUtilAction& a, CUserMessageRequestUtilAction& b) { a.Swap(&b); @@ -18874,7 +19120,7 @@ class CUserMessage_UtilMsg_Response_ItemDetail : &_CUserMessage_UtilMsg_Response_ItemDetail_default_instance_); } static constexpr int kIndexInFileMessages = - 90; + 91; friend void swap(CUserMessage_UtilMsg_Response_ItemDetail& a, CUserMessage_UtilMsg_Response_ItemDetail& b) { a.Swap(&b); @@ -19084,7 +19330,7 @@ class CUserMessage_UtilMsg_Response : &_CUserMessage_UtilMsg_Response_default_instance_); } static constexpr int kIndexInFileMessages = - 91; + 92; friend void swap(CUserMessage_UtilMsg_Response& a, CUserMessage_UtilMsg_Response& b) { a.Swap(&b); @@ -19434,7 +19680,7 @@ class CUserMessage_DllStatus_CVDiagnostic : &_CUserMessage_DllStatus_CVDiagnostic_default_instance_); } static constexpr int kIndexInFileMessages = - 92; + 93; friend void swap(CUserMessage_DllStatus_CVDiagnostic& a, CUserMessage_DllStatus_CVDiagnostic& b) { a.Swap(&b); @@ -19644,7 +19890,7 @@ class CUserMessage_DllStatus_CModule : &_CUserMessage_DllStatus_CModule_default_instance_); } static constexpr int kIndexInFileMessages = - 93; + 94; friend void swap(CUserMessage_DllStatus_CModule& a, CUserMessage_DllStatus_CModule& b) { a.Swap(&b); @@ -19854,7 +20100,7 @@ class CUserMessage_DllStatus : &_CUserMessage_DllStatus_default_instance_); } static constexpr int kIndexInFileMessages = - 94; + 95; friend void swap(CUserMessage_DllStatus& a, CUserMessage_DllStatus& b) { a.Swap(&b); @@ -20142,7 +20388,7 @@ class CUserMessageRequestInventory : &_CUserMessageRequestInventory_default_instance_); } static constexpr int kIndexInFileMessages = - 95; + 96; friend void swap(CUserMessageRequestInventory& a, CUserMessageRequestInventory& b) { a.Swap(&b); @@ -20332,7 +20578,7 @@ class CUserMessage_Inventory_Response_InventoryDetail : &_CUserMessage_Inventory_Response_InventoryDetail_default_instance_); } static constexpr int kIndexInFileMessages = - 96; + 97; friend void swap(CUserMessage_Inventory_Response_InventoryDetail& a, CUserMessage_Inventory_Response_InventoryDetail& b) { a.Swap(&b); @@ -20637,7 +20883,7 @@ class CUserMessage_Inventory_Response : &_CUserMessage_Inventory_Response_default_instance_); } static constexpr int kIndexInFileMessages = - 97; + 98; friend void swap(CUserMessage_Inventory_Response& a, CUserMessage_Inventory_Response& b) { a.Swap(&b); @@ -20994,7 +21240,7 @@ class CUserMessageRequestDiagnostic_Diagnostic : &_CUserMessageRequestDiagnostic_Diagnostic_default_instance_); } static constexpr int kIndexInFileMessages = - 98; + 99; friend void swap(CUserMessageRequestDiagnostic_Diagnostic& a, CUserMessageRequestDiagnostic_Diagnostic& b) { a.Swap(&b); @@ -21349,7 +21595,7 @@ class CUserMessageRequestDiagnostic : &_CUserMessageRequestDiagnostic_default_instance_); } static constexpr int kIndexInFileMessages = - 99; + 100; friend void swap(CUserMessageRequestDiagnostic& a, CUserMessageRequestDiagnostic& b) { a.Swap(&b); @@ -21515,7 +21761,7 @@ class CUserMessage_Diagnostic_Response_Diagnostic : &_CUserMessage_Diagnostic_Response_Diagnostic_default_instance_); } static constexpr int kIndexInFileMessages = - 100; + 101; friend void swap(CUserMessage_Diagnostic_Response_Diagnostic& a, CUserMessage_Diagnostic_Response_Diagnostic& b) { a.Swap(&b); @@ -21905,7 +22151,7 @@ class CUserMessage_Diagnostic_Response : &_CUserMessage_Diagnostic_Response_default_instance_); } static constexpr int kIndexInFileMessages = - 101; + 102; friend void swap(CUserMessage_Diagnostic_Response& a, CUserMessage_Diagnostic_Response& b) { a.Swap(&b); @@ -22147,7 +22393,7 @@ class CUserMessage_ExtraUserData : &_CUserMessage_ExtraUserData_default_instance_); } static constexpr int kIndexInFileMessages = - 102; + 103; friend void swap(CUserMessage_ExtraUserData& a, CUserMessage_ExtraUserData& b) { a.Swap(&b); @@ -22389,7 +22635,7 @@ class CUserMessage_NotifyResponseFound_Criteria : &_CUserMessage_NotifyResponseFound_Criteria_default_instance_); } static constexpr int kIndexInFileMessages = - 103; + 104; friend void swap(CUserMessage_NotifyResponseFound_Criteria& a, CUserMessage_NotifyResponseFound_Criteria& b) { a.Swap(&b); @@ -22569,7 +22815,7 @@ class CUserMessage_NotifyResponseFound : &_CUserMessage_NotifyResponseFound_default_instance_); } static constexpr int kIndexInFileMessages = - 104; + 105; friend void swap(CUserMessage_NotifyResponseFound& a, CUserMessage_NotifyResponseFound& b) { a.Swap(&b); @@ -22975,7 +23221,7 @@ class CUserMessage_PlayResponseConditional : &_CUserMessage_PlayResponseConditional_default_instance_); } static constexpr int kIndexInFileMessages = - 105; + 106; friend void swap(CUserMessage_PlayResponseConditional& a, CUserMessage_PlayResponseConditional& b) { a.Swap(&b); @@ -32229,7 +32475,7 @@ inline void CUserMsg_ParticleManager_SetMaterialOverride::set_include_children(b // optional bool active = 1; inline bool CUserMsg_ParticleManager_AddFan::_internal_has_active() const { - bool value = (_impl_._has_bits_[0] & 0x00000040u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000080u) != 0; return value; } inline bool CUserMsg_ParticleManager_AddFan::has_active() const { @@ -32237,7 +32483,7 @@ inline bool CUserMsg_ParticleManager_AddFan::has_active() const { } inline void CUserMsg_ParticleManager_AddFan::clear_active() { _impl_.active_ = false; - _impl_._has_bits_[0] &= ~0x00000040u; + _impl_._has_bits_[0] &= ~0x00000080u; } inline bool CUserMsg_ParticleManager_AddFan::_internal_active() const { return _impl_.active_; @@ -32247,7 +32493,7 @@ inline bool CUserMsg_ParticleManager_AddFan::active() const { return _internal_active(); } inline void CUserMsg_ParticleManager_AddFan::_internal_set_active(bool value) { - _impl_._has_bits_[0] |= 0x00000040u; + _impl_._has_bits_[0] |= 0x00000080u; _impl_.active_ = value; } inline void CUserMsg_ParticleManager_AddFan::set_active(bool value) { @@ -32257,7 +32503,7 @@ inline void CUserMsg_ParticleManager_AddFan::set_active(bool value) { // optional .CMsgVector bounds_mins = 2; inline bool CUserMsg_ParticleManager_AddFan::_internal_has_bounds_mins() const { - bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; PROTOBUF_ASSUME(!value || _impl_.bounds_mins_ != nullptr); return value; } @@ -32280,14 +32526,14 @@ inline void CUserMsg_ParticleManager_AddFan::unsafe_arena_set_allocated_bounds_m } _impl_.bounds_mins_ = bounds_mins; if (bounds_mins) { - _impl_._has_bits_[0] |= 0x00000002u; + _impl_._has_bits_[0] |= 0x00000004u; } else { - _impl_._has_bits_[0] &= ~0x00000002u; + _impl_._has_bits_[0] &= ~0x00000004u; } // @@protoc_insertion_point(field_unsafe_arena_set_allocated:CUserMsg_ParticleManager.AddFan.bounds_mins) } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::release_bounds_mins() { - _impl_._has_bits_[0] &= ~0x00000002u; + _impl_._has_bits_[0] &= ~0x00000004u; ::CMsgVector* temp = _impl_.bounds_mins_; _impl_.bounds_mins_ = nullptr; #ifdef PROTOBUF_FORCE_COPY_IN_RELEASE @@ -32303,13 +32549,13 @@ inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::release_bounds_mins() { } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::unsafe_arena_release_bounds_mins() { // @@protoc_insertion_point(field_release:CUserMsg_ParticleManager.AddFan.bounds_mins) - _impl_._has_bits_[0] &= ~0x00000002u; + _impl_._has_bits_[0] &= ~0x00000004u; ::CMsgVector* temp = _impl_.bounds_mins_; _impl_.bounds_mins_ = nullptr; return temp; } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::_internal_mutable_bounds_mins() { - _impl_._has_bits_[0] |= 0x00000002u; + _impl_._has_bits_[0] |= 0x00000004u; if (_impl_.bounds_mins_ == nullptr) { auto* p = CreateMaybeMessage<::CMsgVector>(GetArenaForAllocation()); _impl_.bounds_mins_ = p; @@ -32334,9 +32580,9 @@ inline void CUserMsg_ParticleManager_AddFan::set_allocated_bounds_mins(::CMsgVec bounds_mins = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage( message_arena, bounds_mins, submessage_arena); } - _impl_._has_bits_[0] |= 0x00000002u; + _impl_._has_bits_[0] |= 0x00000004u; } else { - _impl_._has_bits_[0] &= ~0x00000002u; + _impl_._has_bits_[0] &= ~0x00000004u; } _impl_.bounds_mins_ = bounds_mins; // @@protoc_insertion_point(field_set_allocated:CUserMsg_ParticleManager.AddFan.bounds_mins) @@ -32344,7 +32590,7 @@ inline void CUserMsg_ParticleManager_AddFan::set_allocated_bounds_mins(::CMsgVec // optional .CMsgVector bounds_maxs = 3; inline bool CUserMsg_ParticleManager_AddFan::_internal_has_bounds_maxs() const { - bool value = (_impl_._has_bits_[0] & 0x00000004u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; PROTOBUF_ASSUME(!value || _impl_.bounds_maxs_ != nullptr); return value; } @@ -32367,14 +32613,14 @@ inline void CUserMsg_ParticleManager_AddFan::unsafe_arena_set_allocated_bounds_m } _impl_.bounds_maxs_ = bounds_maxs; if (bounds_maxs) { - _impl_._has_bits_[0] |= 0x00000004u; + _impl_._has_bits_[0] |= 0x00000008u; } else { - _impl_._has_bits_[0] &= ~0x00000004u; + _impl_._has_bits_[0] &= ~0x00000008u; } // @@protoc_insertion_point(field_unsafe_arena_set_allocated:CUserMsg_ParticleManager.AddFan.bounds_maxs) } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::release_bounds_maxs() { - _impl_._has_bits_[0] &= ~0x00000004u; + _impl_._has_bits_[0] &= ~0x00000008u; ::CMsgVector* temp = _impl_.bounds_maxs_; _impl_.bounds_maxs_ = nullptr; #ifdef PROTOBUF_FORCE_COPY_IN_RELEASE @@ -32390,13 +32636,13 @@ inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::release_bounds_maxs() { } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::unsafe_arena_release_bounds_maxs() { // @@protoc_insertion_point(field_release:CUserMsg_ParticleManager.AddFan.bounds_maxs) - _impl_._has_bits_[0] &= ~0x00000004u; + _impl_._has_bits_[0] &= ~0x00000008u; ::CMsgVector* temp = _impl_.bounds_maxs_; _impl_.bounds_maxs_ = nullptr; return temp; } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::_internal_mutable_bounds_maxs() { - _impl_._has_bits_[0] |= 0x00000004u; + _impl_._has_bits_[0] |= 0x00000008u; if (_impl_.bounds_maxs_ == nullptr) { auto* p = CreateMaybeMessage<::CMsgVector>(GetArenaForAllocation()); _impl_.bounds_maxs_ = p; @@ -32421,9 +32667,9 @@ inline void CUserMsg_ParticleManager_AddFan::set_allocated_bounds_maxs(::CMsgVec bounds_maxs = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage( message_arena, bounds_maxs, submessage_arena); } - _impl_._has_bits_[0] |= 0x00000004u; + _impl_._has_bits_[0] |= 0x00000008u; } else { - _impl_._has_bits_[0] &= ~0x00000004u; + _impl_._has_bits_[0] &= ~0x00000008u; } _impl_.bounds_maxs_ = bounds_maxs; // @@protoc_insertion_point(field_set_allocated:CUserMsg_ParticleManager.AddFan.bounds_maxs) @@ -32431,7 +32677,7 @@ inline void CUserMsg_ParticleManager_AddFan::set_allocated_bounds_maxs(::CMsgVec // optional .CMsgVector fan_origin = 4; inline bool CUserMsg_ParticleManager_AddFan::_internal_has_fan_origin() const { - bool value = (_impl_._has_bits_[0] & 0x00000008u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; PROTOBUF_ASSUME(!value || _impl_.fan_origin_ != nullptr); return value; } @@ -32454,14 +32700,14 @@ inline void CUserMsg_ParticleManager_AddFan::unsafe_arena_set_allocated_fan_orig } _impl_.fan_origin_ = fan_origin; if (fan_origin) { - _impl_._has_bits_[0] |= 0x00000008u; + _impl_._has_bits_[0] |= 0x00000010u; } else { - _impl_._has_bits_[0] &= ~0x00000008u; + _impl_._has_bits_[0] &= ~0x00000010u; } // @@protoc_insertion_point(field_unsafe_arena_set_allocated:CUserMsg_ParticleManager.AddFan.fan_origin) } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::release_fan_origin() { - _impl_._has_bits_[0] &= ~0x00000008u; + _impl_._has_bits_[0] &= ~0x00000010u; ::CMsgVector* temp = _impl_.fan_origin_; _impl_.fan_origin_ = nullptr; #ifdef PROTOBUF_FORCE_COPY_IN_RELEASE @@ -32477,13 +32723,13 @@ inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::release_fan_origin() { } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::unsafe_arena_release_fan_origin() { // @@protoc_insertion_point(field_release:CUserMsg_ParticleManager.AddFan.fan_origin) - _impl_._has_bits_[0] &= ~0x00000008u; + _impl_._has_bits_[0] &= ~0x00000010u; ::CMsgVector* temp = _impl_.fan_origin_; _impl_.fan_origin_ = nullptr; return temp; } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::_internal_mutable_fan_origin() { - _impl_._has_bits_[0] |= 0x00000008u; + _impl_._has_bits_[0] |= 0x00000010u; if (_impl_.fan_origin_ == nullptr) { auto* p = CreateMaybeMessage<::CMsgVector>(GetArenaForAllocation()); _impl_.fan_origin_ = p; @@ -32508,9 +32754,9 @@ inline void CUserMsg_ParticleManager_AddFan::set_allocated_fan_origin(::CMsgVect fan_origin = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage( message_arena, fan_origin, submessage_arena); } - _impl_._has_bits_[0] |= 0x00000008u; + _impl_._has_bits_[0] |= 0x00000010u; } else { - _impl_._has_bits_[0] &= ~0x00000008u; + _impl_._has_bits_[0] &= ~0x00000010u; } _impl_.fan_origin_ = fan_origin; // @@protoc_insertion_point(field_set_allocated:CUserMsg_ParticleManager.AddFan.fan_origin) @@ -32518,7 +32764,7 @@ inline void CUserMsg_ParticleManager_AddFan::set_allocated_fan_origin(::CMsgVect // optional .CMsgVector fan_origin_offset = 5; inline bool CUserMsg_ParticleManager_AddFan::_internal_has_fan_origin_offset() const { - bool value = (_impl_._has_bits_[0] & 0x00000010u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000020u) != 0; PROTOBUF_ASSUME(!value || _impl_.fan_origin_offset_ != nullptr); return value; } @@ -32541,14 +32787,14 @@ inline void CUserMsg_ParticleManager_AddFan::unsafe_arena_set_allocated_fan_orig } _impl_.fan_origin_offset_ = fan_origin_offset; if (fan_origin_offset) { - _impl_._has_bits_[0] |= 0x00000010u; + _impl_._has_bits_[0] |= 0x00000020u; } else { - _impl_._has_bits_[0] &= ~0x00000010u; + _impl_._has_bits_[0] &= ~0x00000020u; } // @@protoc_insertion_point(field_unsafe_arena_set_allocated:CUserMsg_ParticleManager.AddFan.fan_origin_offset) } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::release_fan_origin_offset() { - _impl_._has_bits_[0] &= ~0x00000010u; + _impl_._has_bits_[0] &= ~0x00000020u; ::CMsgVector* temp = _impl_.fan_origin_offset_; _impl_.fan_origin_offset_ = nullptr; #ifdef PROTOBUF_FORCE_COPY_IN_RELEASE @@ -32564,13 +32810,13 @@ inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::release_fan_origin_offset( } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::unsafe_arena_release_fan_origin_offset() { // @@protoc_insertion_point(field_release:CUserMsg_ParticleManager.AddFan.fan_origin_offset) - _impl_._has_bits_[0] &= ~0x00000010u; + _impl_._has_bits_[0] &= ~0x00000020u; ::CMsgVector* temp = _impl_.fan_origin_offset_; _impl_.fan_origin_offset_ = nullptr; return temp; } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::_internal_mutable_fan_origin_offset() { - _impl_._has_bits_[0] |= 0x00000010u; + _impl_._has_bits_[0] |= 0x00000020u; if (_impl_.fan_origin_offset_ == nullptr) { auto* p = CreateMaybeMessage<::CMsgVector>(GetArenaForAllocation()); _impl_.fan_origin_offset_ = p; @@ -32595,9 +32841,9 @@ inline void CUserMsg_ParticleManager_AddFan::set_allocated_fan_origin_offset(::C fan_origin_offset = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage( message_arena, fan_origin_offset, submessage_arena); } - _impl_._has_bits_[0] |= 0x00000010u; + _impl_._has_bits_[0] |= 0x00000020u; } else { - _impl_._has_bits_[0] &= ~0x00000010u; + _impl_._has_bits_[0] &= ~0x00000020u; } _impl_.fan_origin_offset_ = fan_origin_offset; // @@protoc_insertion_point(field_set_allocated:CUserMsg_ParticleManager.AddFan.fan_origin_offset) @@ -32605,7 +32851,7 @@ inline void CUserMsg_ParticleManager_AddFan::set_allocated_fan_origin_offset(::C // optional .CMsgVector fan_direction = 6; inline bool CUserMsg_ParticleManager_AddFan::_internal_has_fan_direction() const { - bool value = (_impl_._has_bits_[0] & 0x00000020u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000040u) != 0; PROTOBUF_ASSUME(!value || _impl_.fan_direction_ != nullptr); return value; } @@ -32628,14 +32874,14 @@ inline void CUserMsg_ParticleManager_AddFan::unsafe_arena_set_allocated_fan_dire } _impl_.fan_direction_ = fan_direction; if (fan_direction) { - _impl_._has_bits_[0] |= 0x00000020u; + _impl_._has_bits_[0] |= 0x00000040u; } else { - _impl_._has_bits_[0] &= ~0x00000020u; + _impl_._has_bits_[0] &= ~0x00000040u; } // @@protoc_insertion_point(field_unsafe_arena_set_allocated:CUserMsg_ParticleManager.AddFan.fan_direction) } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::release_fan_direction() { - _impl_._has_bits_[0] &= ~0x00000020u; + _impl_._has_bits_[0] &= ~0x00000040u; ::CMsgVector* temp = _impl_.fan_direction_; _impl_.fan_direction_ = nullptr; #ifdef PROTOBUF_FORCE_COPY_IN_RELEASE @@ -32651,13 +32897,13 @@ inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::release_fan_direction() { } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::unsafe_arena_release_fan_direction() { // @@protoc_insertion_point(field_release:CUserMsg_ParticleManager.AddFan.fan_direction) - _impl_._has_bits_[0] &= ~0x00000020u; + _impl_._has_bits_[0] &= ~0x00000040u; ::CMsgVector* temp = _impl_.fan_direction_; _impl_.fan_direction_ = nullptr; return temp; } inline ::CMsgVector* CUserMsg_ParticleManager_AddFan::_internal_mutable_fan_direction() { - _impl_._has_bits_[0] |= 0x00000020u; + _impl_._has_bits_[0] |= 0x00000040u; if (_impl_.fan_direction_ == nullptr) { auto* p = CreateMaybeMessage<::CMsgVector>(GetArenaForAllocation()); _impl_.fan_direction_ = p; @@ -32682,9 +32928,9 @@ inline void CUserMsg_ParticleManager_AddFan::set_allocated_fan_direction(::CMsgV fan_direction = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage( message_arena, fan_direction, submessage_arena); } - _impl_._has_bits_[0] |= 0x00000020u; + _impl_._has_bits_[0] |= 0x00000040u; } else { - _impl_._has_bits_[0] &= ~0x00000020u; + _impl_._has_bits_[0] &= ~0x00000040u; } _impl_.fan_direction_ = fan_direction; // @@protoc_insertion_point(field_set_allocated:CUserMsg_ParticleManager.AddFan.fan_direction) @@ -32692,7 +32938,7 @@ inline void CUserMsg_ParticleManager_AddFan::set_allocated_fan_direction(::CMsgV // optional float force = 7; inline bool CUserMsg_ParticleManager_AddFan::_internal_has_force() const { - bool value = (_impl_._has_bits_[0] & 0x00000200u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000400u) != 0; return value; } inline bool CUserMsg_ParticleManager_AddFan::has_force() const { @@ -32700,7 +32946,7 @@ inline bool CUserMsg_ParticleManager_AddFan::has_force() const { } inline void CUserMsg_ParticleManager_AddFan::clear_force() { _impl_.force_ = 0; - _impl_._has_bits_[0] &= ~0x00000200u; + _impl_._has_bits_[0] &= ~0x00000400u; } inline float CUserMsg_ParticleManager_AddFan::_internal_force() const { return _impl_.force_; @@ -32710,7 +32956,7 @@ inline float CUserMsg_ParticleManager_AddFan::force() const { return _internal_force(); } inline void CUserMsg_ParticleManager_AddFan::_internal_set_force(float value) { - _impl_._has_bits_[0] |= 0x00000200u; + _impl_._has_bits_[0] |= 0x00000400u; _impl_.force_ = value; } inline void CUserMsg_ParticleManager_AddFan::set_force(float value) { @@ -32788,7 +33034,7 @@ inline void CUserMsg_ParticleManager_AddFan::set_allocated_fan_force_curve(std:: // optional bool falloff = 9; inline bool CUserMsg_ParticleManager_AddFan::_internal_has_falloff() const { - bool value = (_impl_._has_bits_[0] & 0x00000080u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000100u) != 0; return value; } inline bool CUserMsg_ParticleManager_AddFan::has_falloff() const { @@ -32796,7 +33042,7 @@ inline bool CUserMsg_ParticleManager_AddFan::has_falloff() const { } inline void CUserMsg_ParticleManager_AddFan::clear_falloff() { _impl_.falloff_ = false; - _impl_._has_bits_[0] &= ~0x00000080u; + _impl_._has_bits_[0] &= ~0x00000100u; } inline bool CUserMsg_ParticleManager_AddFan::_internal_falloff() const { return _impl_.falloff_; @@ -32806,7 +33052,7 @@ inline bool CUserMsg_ParticleManager_AddFan::falloff() const { return _internal_falloff(); } inline void CUserMsg_ParticleManager_AddFan::_internal_set_falloff(bool value) { - _impl_._has_bits_[0] |= 0x00000080u; + _impl_._has_bits_[0] |= 0x00000100u; _impl_.falloff_ = value; } inline void CUserMsg_ParticleManager_AddFan::set_falloff(bool value) { @@ -32816,7 +33062,7 @@ inline void CUserMsg_ParticleManager_AddFan::set_falloff(bool value) { // optional bool pull_towards_point = 10; inline bool CUserMsg_ParticleManager_AddFan::_internal_has_pull_towards_point() const { - bool value = (_impl_._has_bits_[0] & 0x00000100u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000200u) != 0; return value; } inline bool CUserMsg_ParticleManager_AddFan::has_pull_towards_point() const { @@ -32824,7 +33070,7 @@ inline bool CUserMsg_ParticleManager_AddFan::has_pull_towards_point() const { } inline void CUserMsg_ParticleManager_AddFan::clear_pull_towards_point() { _impl_.pull_towards_point_ = false; - _impl_._has_bits_[0] &= ~0x00000100u; + _impl_._has_bits_[0] &= ~0x00000200u; } inline bool CUserMsg_ParticleManager_AddFan::_internal_pull_towards_point() const { return _impl_.pull_towards_point_; @@ -32834,7 +33080,7 @@ inline bool CUserMsg_ParticleManager_AddFan::pull_towards_point() const { return _internal_pull_towards_point(); } inline void CUserMsg_ParticleManager_AddFan::_internal_set_pull_towards_point(bool value) { - _impl_._has_bits_[0] |= 0x00000100u; + _impl_._has_bits_[0] |= 0x00000200u; _impl_.pull_towards_point_ = value; } inline void CUserMsg_ParticleManager_AddFan::set_pull_towards_point(bool value) { @@ -32844,7 +33090,7 @@ inline void CUserMsg_ParticleManager_AddFan::set_pull_towards_point(bool value) // optional float curve_min_dist = 11; inline bool CUserMsg_ParticleManager_AddFan::_internal_has_curve_min_dist() const { - bool value = (_impl_._has_bits_[0] & 0x00000400u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00000800u) != 0; return value; } inline bool CUserMsg_ParticleManager_AddFan::has_curve_min_dist() const { @@ -32852,7 +33098,7 @@ inline bool CUserMsg_ParticleManager_AddFan::has_curve_min_dist() const { } inline void CUserMsg_ParticleManager_AddFan::clear_curve_min_dist() { _impl_.curve_min_dist_ = 0; - _impl_._has_bits_[0] &= ~0x00000400u; + _impl_._has_bits_[0] &= ~0x00000800u; } inline float CUserMsg_ParticleManager_AddFan::_internal_curve_min_dist() const { return _impl_.curve_min_dist_; @@ -32862,7 +33108,7 @@ inline float CUserMsg_ParticleManager_AddFan::curve_min_dist() const { return _internal_curve_min_dist(); } inline void CUserMsg_ParticleManager_AddFan::_internal_set_curve_min_dist(float value) { - _impl_._has_bits_[0] |= 0x00000400u; + _impl_._has_bits_[0] |= 0x00000800u; _impl_.curve_min_dist_ = value; } inline void CUserMsg_ParticleManager_AddFan::set_curve_min_dist(float value) { @@ -32872,7 +33118,7 @@ inline void CUserMsg_ParticleManager_AddFan::set_curve_min_dist(float value) { // optional float curve_max_dist = 12; inline bool CUserMsg_ParticleManager_AddFan::_internal_has_curve_max_dist() const { - bool value = (_impl_._has_bits_[0] & 0x00000800u) != 0; + bool value = (_impl_._has_bits_[0] & 0x00001000u) != 0; return value; } inline bool CUserMsg_ParticleManager_AddFan::has_curve_max_dist() const { @@ -32880,7 +33126,7 @@ inline bool CUserMsg_ParticleManager_AddFan::has_curve_max_dist() const { } inline void CUserMsg_ParticleManager_AddFan::clear_curve_max_dist() { _impl_.curve_max_dist_ = 0; - _impl_._has_bits_[0] &= ~0x00000800u; + _impl_._has_bits_[0] &= ~0x00001000u; } inline float CUserMsg_ParticleManager_AddFan::_internal_curve_max_dist() const { return _impl_.curve_max_dist_; @@ -32890,7 +33136,7 @@ inline float CUserMsg_ParticleManager_AddFan::curve_max_dist() const { return _internal_curve_max_dist(); } inline void CUserMsg_ParticleManager_AddFan::_internal_set_curve_max_dist(float value) { - _impl_._has_bits_[0] |= 0x00000800u; + _impl_._has_bits_[0] |= 0x00001000u; _impl_.curve_max_dist_ = value; } inline void CUserMsg_ParticleManager_AddFan::set_curve_max_dist(float value) { @@ -32898,6 +33144,214 @@ inline void CUserMsg_ParticleManager_AddFan::set_curve_max_dist(float value) { // @@protoc_insertion_point(field_set:CUserMsg_ParticleManager.AddFan.curve_max_dist) } +// optional uint32 fan_type = 13; +inline bool CUserMsg_ParticleManager_AddFan::_internal_has_fan_type() const { + bool value = (_impl_._has_bits_[0] & 0x00002000u) != 0; + return value; +} +inline bool CUserMsg_ParticleManager_AddFan::has_fan_type() const { + return _internal_has_fan_type(); +} +inline void CUserMsg_ParticleManager_AddFan::clear_fan_type() { + _impl_.fan_type_ = 0u; + _impl_._has_bits_[0] &= ~0x00002000u; +} +inline uint32_t CUserMsg_ParticleManager_AddFan::_internal_fan_type() const { + return _impl_.fan_type_; +} +inline uint32_t CUserMsg_ParticleManager_AddFan::fan_type() const { + // @@protoc_insertion_point(field_get:CUserMsg_ParticleManager.AddFan.fan_type) + return _internal_fan_type(); +} +inline void CUserMsg_ParticleManager_AddFan::_internal_set_fan_type(uint32_t value) { + _impl_._has_bits_[0] |= 0x00002000u; + _impl_.fan_type_ = value; +} +inline void CUserMsg_ParticleManager_AddFan::set_fan_type(uint32_t value) { + _internal_set_fan_type(value); + // @@protoc_insertion_point(field_set:CUserMsg_ParticleManager.AddFan.fan_type) +} + +// optional float cone_start_radius = 14; +inline bool CUserMsg_ParticleManager_AddFan::_internal_has_cone_start_radius() const { + bool value = (_impl_._has_bits_[0] & 0x00004000u) != 0; + return value; +} +inline bool CUserMsg_ParticleManager_AddFan::has_cone_start_radius() const { + return _internal_has_cone_start_radius(); +} +inline void CUserMsg_ParticleManager_AddFan::clear_cone_start_radius() { + _impl_.cone_start_radius_ = 0; + _impl_._has_bits_[0] &= ~0x00004000u; +} +inline float CUserMsg_ParticleManager_AddFan::_internal_cone_start_radius() const { + return _impl_.cone_start_radius_; +} +inline float CUserMsg_ParticleManager_AddFan::cone_start_radius() const { + // @@protoc_insertion_point(field_get:CUserMsg_ParticleManager.AddFan.cone_start_radius) + return _internal_cone_start_radius(); +} +inline void CUserMsg_ParticleManager_AddFan::_internal_set_cone_start_radius(float value) { + _impl_._has_bits_[0] |= 0x00004000u; + _impl_.cone_start_radius_ = value; +} +inline void CUserMsg_ParticleManager_AddFan::set_cone_start_radius(float value) { + _internal_set_cone_start_radius(value); + // @@protoc_insertion_point(field_set:CUserMsg_ParticleManager.AddFan.cone_start_radius) +} + +// optional float cone_end_radius = 15; +inline bool CUserMsg_ParticleManager_AddFan::_internal_has_cone_end_radius() const { + bool value = (_impl_._has_bits_[0] & 0x00008000u) != 0; + return value; +} +inline bool CUserMsg_ParticleManager_AddFan::has_cone_end_radius() const { + return _internal_has_cone_end_radius(); +} +inline void CUserMsg_ParticleManager_AddFan::clear_cone_end_radius() { + _impl_.cone_end_radius_ = 0; + _impl_._has_bits_[0] &= ~0x00008000u; +} +inline float CUserMsg_ParticleManager_AddFan::_internal_cone_end_radius() const { + return _impl_.cone_end_radius_; +} +inline float CUserMsg_ParticleManager_AddFan::cone_end_radius() const { + // @@protoc_insertion_point(field_get:CUserMsg_ParticleManager.AddFan.cone_end_radius) + return _internal_cone_end_radius(); +} +inline void CUserMsg_ParticleManager_AddFan::_internal_set_cone_end_radius(float value) { + _impl_._has_bits_[0] |= 0x00008000u; + _impl_.cone_end_radius_ = value; +} +inline void CUserMsg_ParticleManager_AddFan::set_cone_end_radius(float value) { + _internal_set_cone_end_radius(value); + // @@protoc_insertion_point(field_set:CUserMsg_ParticleManager.AddFan.cone_end_radius) +} + +// optional float cone_length = 16; +inline bool CUserMsg_ParticleManager_AddFan::_internal_has_cone_length() const { + bool value = (_impl_._has_bits_[0] & 0x00010000u) != 0; + return value; +} +inline bool CUserMsg_ParticleManager_AddFan::has_cone_length() const { + return _internal_has_cone_length(); +} +inline void CUserMsg_ParticleManager_AddFan::clear_cone_length() { + _impl_.cone_length_ = 0; + _impl_._has_bits_[0] &= ~0x00010000u; +} +inline float CUserMsg_ParticleManager_AddFan::_internal_cone_length() const { + return _impl_.cone_length_; +} +inline float CUserMsg_ParticleManager_AddFan::cone_length() const { + // @@protoc_insertion_point(field_get:CUserMsg_ParticleManager.AddFan.cone_length) + return _internal_cone_length(); +} +inline void CUserMsg_ParticleManager_AddFan::_internal_set_cone_length(float value) { + _impl_._has_bits_[0] |= 0x00010000u; + _impl_.cone_length_ = value; +} +inline void CUserMsg_ParticleManager_AddFan::set_cone_length(float value) { + _internal_set_cone_length(value); + // @@protoc_insertion_point(field_set:CUserMsg_ParticleManager.AddFan.cone_length) +} + +// optional uint32 entity_handle = 17 [default = 16777215]; +inline bool CUserMsg_ParticleManager_AddFan::_internal_has_entity_handle() const { + bool value = (_impl_._has_bits_[0] & 0x00020000u) != 0; + return value; +} +inline bool CUserMsg_ParticleManager_AddFan::has_entity_handle() const { + return _internal_has_entity_handle(); +} +inline void CUserMsg_ParticleManager_AddFan::clear_entity_handle() { + _impl_.entity_handle_ = 16777215u; + _impl_._has_bits_[0] &= ~0x00020000u; +} +inline uint32_t CUserMsg_ParticleManager_AddFan::_internal_entity_handle() const { + return _impl_.entity_handle_; +} +inline uint32_t CUserMsg_ParticleManager_AddFan::entity_handle() const { + // @@protoc_insertion_point(field_get:CUserMsg_ParticleManager.AddFan.entity_handle) + return _internal_entity_handle(); +} +inline void CUserMsg_ParticleManager_AddFan::_internal_set_entity_handle(uint32_t value) { + _impl_._has_bits_[0] |= 0x00020000u; + _impl_.entity_handle_ = value; +} +inline void CUserMsg_ParticleManager_AddFan::set_entity_handle(uint32_t value) { + _internal_set_entity_handle(value); + // @@protoc_insertion_point(field_set:CUserMsg_ParticleManager.AddFan.entity_handle) +} + +// optional string attachment_name = 18; +inline bool CUserMsg_ParticleManager_AddFan::_internal_has_attachment_name() const { + bool value = (_impl_._has_bits_[0] & 0x00000002u) != 0; + return value; +} +inline bool CUserMsg_ParticleManager_AddFan::has_attachment_name() const { + return _internal_has_attachment_name(); +} +inline void CUserMsg_ParticleManager_AddFan::clear_attachment_name() { + _impl_.attachment_name_.ClearToEmpty(); + _impl_._has_bits_[0] &= ~0x00000002u; +} +inline const std::string& CUserMsg_ParticleManager_AddFan::attachment_name() const { + // @@protoc_insertion_point(field_get:CUserMsg_ParticleManager.AddFan.attachment_name) + return _internal_attachment_name(); +} +template +inline PROTOBUF_ALWAYS_INLINE +void CUserMsg_ParticleManager_AddFan::set_attachment_name(ArgT0&& arg0, ArgT... args) { + _impl_._has_bits_[0] |= 0x00000002u; + _impl_.attachment_name_.Set(static_cast(arg0), args..., GetArenaForAllocation()); + // @@protoc_insertion_point(field_set:CUserMsg_ParticleManager.AddFan.attachment_name) +} +inline std::string* CUserMsg_ParticleManager_AddFan::mutable_attachment_name() { + std::string* _s = _internal_mutable_attachment_name(); + // @@protoc_insertion_point(field_mutable:CUserMsg_ParticleManager.AddFan.attachment_name) + return _s; +} +inline const std::string& CUserMsg_ParticleManager_AddFan::_internal_attachment_name() const { + return _impl_.attachment_name_.Get(); +} +inline void CUserMsg_ParticleManager_AddFan::_internal_set_attachment_name(const std::string& value) { + _impl_._has_bits_[0] |= 0x00000002u; + _impl_.attachment_name_.Set(value, GetArenaForAllocation()); +} +inline std::string* CUserMsg_ParticleManager_AddFan::_internal_mutable_attachment_name() { + _impl_._has_bits_[0] |= 0x00000002u; + return _impl_.attachment_name_.Mutable(GetArenaForAllocation()); +} +inline std::string* CUserMsg_ParticleManager_AddFan::release_attachment_name() { + // @@protoc_insertion_point(field_release:CUserMsg_ParticleManager.AddFan.attachment_name) + if (!_internal_has_attachment_name()) { + return nullptr; + } + _impl_._has_bits_[0] &= ~0x00000002u; + auto* p = _impl_.attachment_name_.Release(); +#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.attachment_name_.IsDefault()) { + _impl_.attachment_name_.Set("", GetArenaForAllocation()); + } +#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + return p; +} +inline void CUserMsg_ParticleManager_AddFan::set_allocated_attachment_name(std::string* attachment_name) { + if (attachment_name != nullptr) { + _impl_._has_bits_[0] |= 0x00000002u; + } else { + _impl_._has_bits_[0] &= ~0x00000002u; + } + _impl_.attachment_name_.SetAllocated(attachment_name, GetArenaForAllocation()); +#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.attachment_name_.IsDefault()) { + _impl_.attachment_name_.Set("", GetArenaForAllocation()); + } +#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:CUserMsg_ParticleManager.AddFan.attachment_name) +} + // ------------------------------------------------------------------- // CUserMsg_ParticleManager_UpdateFan @@ -33395,6 +33849,10 @@ inline void CUserMsg_ParticleManager_UpdateFan::set_allocated_bounds_maxs(::CMsg // ------------------------------------------------------------------- +// CUserMsg_ParticleManager_RemoveFan + +// ------------------------------------------------------------------- + // CUserMsg_ParticleManager_SetParticleClusterGrowth // optional float duration = 1; @@ -33518,7 +33976,7 @@ inline void CUserMsg_ParticleManager_SetParticleClusterGrowth::set_allocated_ori // required .PARTICLE_MESSAGE type = 1 [default = GAME_PARTICLE_MANAGER_EVENT_CREATE]; inline bool CUserMsg_ParticleManager::_internal_has_type() const { - bool value = (_impl_._has_bits_[1] & 0x00000040u) != 0; + bool value = (_impl_._has_bits_[1] & 0x00000080u) != 0; return value; } inline bool CUserMsg_ParticleManager::has_type() const { @@ -33526,7 +33984,7 @@ inline bool CUserMsg_ParticleManager::has_type() const { } inline void CUserMsg_ParticleManager::clear_type() { _impl_.type_ = 0; - _impl_._has_bits_[1] &= ~0x00000040u; + _impl_._has_bits_[1] &= ~0x00000080u; } inline ::PARTICLE_MESSAGE CUserMsg_ParticleManager::_internal_type() const { return static_cast< ::PARTICLE_MESSAGE >(_impl_.type_); @@ -33537,7 +33995,7 @@ inline ::PARTICLE_MESSAGE CUserMsg_ParticleManager::type() const { } inline void CUserMsg_ParticleManager::_internal_set_type(::PARTICLE_MESSAGE value) { assert(::PARTICLE_MESSAGE_IsValid(value)); - _impl_._has_bits_[1] |= 0x00000040u; + _impl_._has_bits_[1] |= 0x00000080u; _impl_.type_ = value; } inline void CUserMsg_ParticleManager::set_type(::PARTICLE_MESSAGE value) { @@ -33547,7 +34005,7 @@ inline void CUserMsg_ParticleManager::set_type(::PARTICLE_MESSAGE value) { // required uint32 index = 2; inline bool CUserMsg_ParticleManager::_internal_has_index() const { - bool value = (_impl_._has_bits_[1] & 0x00000080u) != 0; + bool value = (_impl_._has_bits_[1] & 0x00000100u) != 0; return value; } inline bool CUserMsg_ParticleManager::has_index() const { @@ -33555,7 +34013,7 @@ inline bool CUserMsg_ParticleManager::has_index() const { } inline void CUserMsg_ParticleManager::clear_index() { _impl_.index_ = 0u; - _impl_._has_bits_[1] &= ~0x00000080u; + _impl_._has_bits_[1] &= ~0x00000100u; } inline uint32_t CUserMsg_ParticleManager::_internal_index() const { return _impl_.index_; @@ -33565,7 +34023,7 @@ inline uint32_t CUserMsg_ParticleManager::index() const { return _internal_index(); } inline void CUserMsg_ParticleManager::_internal_set_index(uint32_t value) { - _impl_._has_bits_[1] |= 0x00000080u; + _impl_._has_bits_[1] |= 0x00000100u; _impl_.index_ = value; } inline void CUserMsg_ParticleManager::set_index(uint32_t value) { @@ -36993,6 +37451,96 @@ inline void CUserMsg_ParticleManager::set_allocated_set_particle_cluster_growth( // @@protoc_insertion_point(field_set_allocated:CUserMsg_ParticleManager.set_particle_cluster_growth) } +// optional .CUserMsg_ParticleManager.RemoveFan remove_fan = 42; +inline bool CUserMsg_ParticleManager::_internal_has_remove_fan() const { + bool value = (_impl_._has_bits_[1] & 0x00000040u) != 0; + PROTOBUF_ASSUME(!value || _impl_.remove_fan_ != nullptr); + return value; +} +inline bool CUserMsg_ParticleManager::has_remove_fan() const { + return _internal_has_remove_fan(); +} +inline void CUserMsg_ParticleManager::clear_remove_fan() { + if (_impl_.remove_fan_ != nullptr) _impl_.remove_fan_->Clear(); + _impl_._has_bits_[1] &= ~0x00000040u; +} +inline const ::CUserMsg_ParticleManager_RemoveFan& CUserMsg_ParticleManager::_internal_remove_fan() const { + const ::CUserMsg_ParticleManager_RemoveFan* p = _impl_.remove_fan_; + return p != nullptr ? *p : reinterpret_cast( + ::_CUserMsg_ParticleManager_RemoveFan_default_instance_); +} +inline const ::CUserMsg_ParticleManager_RemoveFan& CUserMsg_ParticleManager::remove_fan() const { + // @@protoc_insertion_point(field_get:CUserMsg_ParticleManager.remove_fan) + return _internal_remove_fan(); +} +inline void CUserMsg_ParticleManager::unsafe_arena_set_allocated_remove_fan( + ::CUserMsg_ParticleManager_RemoveFan* remove_fan) { + if (GetArenaForAllocation() == nullptr) { + delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(_impl_.remove_fan_); + } + _impl_.remove_fan_ = remove_fan; + if (remove_fan) { + _impl_._has_bits_[1] |= 0x00000040u; + } else { + _impl_._has_bits_[1] &= ~0x00000040u; + } + // @@protoc_insertion_point(field_unsafe_arena_set_allocated:CUserMsg_ParticleManager.remove_fan) +} +inline ::CUserMsg_ParticleManager_RemoveFan* CUserMsg_ParticleManager::release_remove_fan() { + _impl_._has_bits_[1] &= ~0x00000040u; + ::CUserMsg_ParticleManager_RemoveFan* temp = _impl_.remove_fan_; + _impl_.remove_fan_ = nullptr; +#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE + auto* old = reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(temp); + temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp); + if (GetArenaForAllocation() == nullptr) { delete old; } +#else // PROTOBUF_FORCE_COPY_IN_RELEASE + if (GetArenaForAllocation() != nullptr) { + temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp); + } +#endif // !PROTOBUF_FORCE_COPY_IN_RELEASE + return temp; +} +inline ::CUserMsg_ParticleManager_RemoveFan* CUserMsg_ParticleManager::unsafe_arena_release_remove_fan() { + // @@protoc_insertion_point(field_release:CUserMsg_ParticleManager.remove_fan) + _impl_._has_bits_[1] &= ~0x00000040u; + ::CUserMsg_ParticleManager_RemoveFan* temp = _impl_.remove_fan_; + _impl_.remove_fan_ = nullptr; + return temp; +} +inline ::CUserMsg_ParticleManager_RemoveFan* CUserMsg_ParticleManager::_internal_mutable_remove_fan() { + _impl_._has_bits_[1] |= 0x00000040u; + if (_impl_.remove_fan_ == nullptr) { + auto* p = CreateMaybeMessage<::CUserMsg_ParticleManager_RemoveFan>(GetArenaForAllocation()); + _impl_.remove_fan_ = p; + } + return _impl_.remove_fan_; +} +inline ::CUserMsg_ParticleManager_RemoveFan* CUserMsg_ParticleManager::mutable_remove_fan() { + ::CUserMsg_ParticleManager_RemoveFan* _msg = _internal_mutable_remove_fan(); + // @@protoc_insertion_point(field_mutable:CUserMsg_ParticleManager.remove_fan) + return _msg; +} +inline void CUserMsg_ParticleManager::set_allocated_remove_fan(::CUserMsg_ParticleManager_RemoveFan* remove_fan) { + ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArenaForAllocation(); + if (message_arena == nullptr) { + delete _impl_.remove_fan_; + } + if (remove_fan) { + ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena = + ::PROTOBUF_NAMESPACE_ID::Arena::InternalGetOwningArena(remove_fan); + if (message_arena != submessage_arena) { + remove_fan = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage( + message_arena, remove_fan, submessage_arena); + } + _impl_._has_bits_[1] |= 0x00000040u; + } else { + _impl_._has_bits_[1] &= ~0x00000040u; + } + _impl_.remove_fan_ = remove_fan; + // @@protoc_insertion_point(field_set_allocated:CUserMsg_ParticleManager.remove_fan) +} + // ------------------------------------------------------------------- // CUserMsg_HudError @@ -42678,6 +43226,8 @@ inline void CUserMessage_PlayResponseConditional::set_mix_priority(int32_t value // ------------------------------------------------------------------- +// ------------------------------------------------------------------- + // @@protoc_insertion_point(namespace_scope) diff --git a/protobuf/netmessages.proto b/protobuf/netmessages.proto index 9170c7156..601d0bf3b 100644 --- a/protobuf/netmessages.proto +++ b/protobuf/netmessages.proto @@ -6,7 +6,6 @@ enum CLC_Messages { clc_VoiceData = 22; clc_BaselineAck = 23; clc_RespondCvarValue = 25; - clc_FileCRCCheck = 26; clc_LoadingProgress = 27; clc_SplitPlayerConnect = 28; clc_SplitPlayerDisconnect = 30; @@ -158,14 +157,6 @@ message CCLCMsg_RespondCvarValue { optional string value = 4; } -message CCLCMsg_FileCRCCheck { - optional int32 code_path = 1; - optional string path = 2; - optional int32 code_filename = 3; - optional string filename = 4; - optional fixed32 crc = 5; -} - message CCLCMsg_LoadingProgress { optional int32 progress = 1; } @@ -208,6 +199,8 @@ message CMsgSource2SystemSpecs { optional uint32 gpu_driver_version_low = 45; optional uint32 gpu_dx_support_level = 46; optional uint32 gpu_texture_memory_size_mb = 47; + optional uint32 backbuffer_width = 51; + optional uint32 backbuffer_height = 52; } message CMsgSource2VProfLiteReportItem { @@ -269,11 +262,26 @@ message CMsgSource2NetworkFlowQuality { optional sint32 recvmargin_p95 = 66; } +message CMsgSource2PerfIntervalSample { + message Tag { + optional string tag = 1; + optional uint32 max_value = 2; + } + + optional float frame_time_max_ms = 1; + optional float frame_time_avg_ms = 2; + optional float frame_time_min_ms = 3; + optional int32 frame_count = 4; + optional float frame_time_total_ms = 5; + repeated .CMsgSource2PerfIntervalSample.Tag tags = 6; +} + message CCLCMsg_Diagnostic { optional .CMsgSource2SystemSpecs system_specs = 1; optional .CMsgSource2VProfLiteReport vprof_report = 2; optional .CMsgSource2NetworkFlowQuality downstream_flow = 3; optional .CMsgSource2NetworkFlowQuality upstream_flow = 4; + repeated .CMsgSource2PerfIntervalSample perf_samples = 5; } message CSource2Metrics_MatchPerfSummary_Notification { @@ -284,11 +292,13 @@ message CSource2Metrics_MatchPerfSummary_Notification { optional .CMsgSource2NetworkFlowQuality downstream_flow = 4; optional .CMsgSource2NetworkFlowQuality upstream_flow = 5; optional fixed64 steamid = 10; + repeated .CMsgSource2PerfIntervalSample perf_samples = 11; } optional uint32 appid = 1; optional string game_mode = 2; optional uint32 server_build_id = 3; + optional fixed32 server_popid = 4; optional .CMsgSource2VProfLiteReport server_profile = 10; repeated .CSource2Metrics_MatchPerfSummary_Notification.Client clients = 11; optional string map = 20; diff --git a/protobuf/usercmd.proto b/protobuf/usercmd.proto index 3935fb8ce..60783bd3e 100644 --- a/protobuf/usercmd.proto +++ b/protobuf/usercmd.proto @@ -12,8 +12,8 @@ message CSubtickMoveStep { optional float when = 3; optional float analog_forward_delta = 4; optional float analog_left_delta = 5; - optional float analog_pitch_delta = 6; - optional float analog_yaw_delta = 7; + optional float pitch_delta = 8; + optional float yaw_delta = 9; } message CBaseUserCmdPB { diff --git a/protobuf/usermessages.proto b/protobuf/usermessages.proto index c744545a6..daf09e957 100644 --- a/protobuf/usermessages.proto +++ b/protobuf/usermessages.proto @@ -111,6 +111,7 @@ enum PARTICLE_MESSAGE { GAME_PARTICLE_MANAGER_EVENT_ADD_FAN = 36; GAME_PARTICLE_MANAGER_EVENT_UPDATE_FAN = 37; GAME_PARTICLE_MANAGER_EVENT_SET_CLUSTER_GROWTH = 38; + GAME_PARTICLE_MANAGER_EVENT_REMOVE_FAN = 39; } enum EHapticPulseType { @@ -565,6 +566,12 @@ message CUserMsg_ParticleManager { optional bool pull_towards_point = 10; optional float curve_min_dist = 11; optional float curve_max_dist = 12; + optional uint32 fan_type = 13; + optional float cone_start_radius = 14; + optional float cone_end_radius = 15; + optional float cone_length = 16; + optional uint32 entity_handle = 17 [default = 16777215]; + optional string attachment_name = 18; } message UpdateFan { @@ -577,6 +584,9 @@ message CUserMsg_ParticleManager { optional .CMsgVector bounds_maxs = 6; } + message RemoveFan { + } + message SetParticleClusterGrowth { optional float duration = 1; optional .CMsgVector origin = 2; @@ -622,6 +632,7 @@ message CUserMsg_ParticleManager { optional .CUserMsg_ParticleManager.AddFan add_fan = 39; optional .CUserMsg_ParticleManager.UpdateFan update_fan = 40; optional .CUserMsg_ParticleManager.SetParticleClusterGrowth set_particle_cluster_growth = 41; + optional .CUserMsg_ParticleManager.RemoveFan remove_fan = 42; extensions 100 to 201; } diff --git a/sdk b/sdk index 0f84fcf12..8e3da65bd 160000 --- a/sdk +++ b/sdk @@ -1 +1 @@ -Subproject commit 0f84fcf129f20dcaed07f9628c3555ee9b0b0f6c +Subproject commit 8e3da65bdf33e2dfb04ad57208e85ffc9e93c048 diff --git a/src/addresses.cpp b/src/addresses.cpp index 85683dbaf..8460e72be 100644 --- a/src/addresses.cpp +++ b/src/addresses.cpp @@ -70,7 +70,6 @@ bool addresses::Initialize(CGameConfig* g_GameConfig) RESOLVE_SIG(g_GameConfig, "CBaseEntity_EmitSoundFilter", addresses::CBaseEntity_EmitSoundFilter); RESOLVE_SIG(g_GameConfig, "CBaseEntity_SetMoveType", addresses::CBaseEntity_SetMoveType); RESOLVE_SIG(g_GameConfig, "CTakeDamageInfo", addresses::CTakeDamageInfo_Constructor); - RESOLVE_SIG(g_GameConfig, "CNetworkStringTable_DeleteAllStrings", addresses::CNetworkStringTable_DeleteAllStrings); RESOLVE_SIG(g_GameConfig, "CCSPlayer_WeaponServices_EquipWeapon", addresses::CCSPlayer_WeaponServices_EquipWeapon); RESOLVE_SIG(g_GameConfig, "GetSpawnGroups", addresses::GetSpawnGroups); diff --git a/src/addresses.h b/src/addresses.h index 731cd61e9..0ed27208a 100644 --- a/src/addresses.h +++ b/src/addresses.h @@ -54,7 +54,6 @@ class CGameRules; class CEntityKeyValues; class IRecipientFilter; class CTakeDamageInfo; -class INetworkStringTable; class CCSPlayer_WeaponServices; class CBasePlayerWeapon; class CSpawnGroupMgrGameSystem; @@ -106,7 +105,6 @@ namespace addresses inline void(FASTCALL* CBaseEntity_SetMoveType)(CBaseEntity* pThis, MoveType_t nMoveType, MoveCollide_t nMoveCollide); inline void(FASTCALL* CTakeDamageInfo_Constructor)(CTakeDamageInfo* pThis, CBaseEntity* pInflictor, CBaseEntity* pAttacker, CBaseEntity* pAbility, const Vector* vecDamageForce, const Vector* vecDamagePosition, float flDamage, int bitsDamageType, int iCustomDamage, void* a10); - inline void(FASTCALL* CNetworkStringTable_DeleteAllStrings)(INetworkStringTable* pThis); inline void(FASTCALL* CCSPlayer_WeaponServices_EquipWeapon)(CCSPlayer_WeaponServices* pWeaponServices, CBasePlayerWeapon* pPlayerWeapon); inline void(FASTCALL* GetSpawnGroups)(CSpawnGroupMgrGameSystem* pSpawnGroupMgr, CUtlVector* pList); } // namespace addresses \ No newline at end of file diff --git a/src/cs2_sdk/netmessages.h b/src/cs2_sdk/netmessages.h index 9aed17325..061a0b2cb 100644 --- a/src/cs2_sdk/netmessages.h +++ b/src/cs2_sdk/netmessages.h @@ -56,10 +56,6 @@ class CCLCMsg_VoiceData_t : public CNetMessagePB { }; -class CCLCMsg_FileCRCCheck_t : public CNetMessagePB -{ -}; - class CCLCMsg_RespondCvarValue_t : public CNetMessagePB { }; diff --git a/src/detours.cpp b/src/detours.cpp index 5610e8d14..8709a11e0 100644 --- a/src/detours.cpp +++ b/src/detours.cpp @@ -554,7 +554,7 @@ void* FASTCALL Detour_ProcessUsercmds(CCSPlayerController* pController, CUserCmd // Remove normal subtick movement inputs by button & subtick movement viewangles by pitch/yaw // Unfortunately, we also need to ignore IN_JUMP, because de-subticking jumps somehow conflicts with other subtick inputs pressed at the same time - if ((button >= IN_DUCK && button <= IN_MOVERIGHT && button != IN_USE) || iterator->analog_pitch_delta() != 0.0f || iterator->analog_yaw_delta() != 0.0f) + if ((button >= IN_DUCK && button <= IN_MOVERIGHT && button != IN_USE) || iterator->pitch_delta() != 0.0f || iterator->yaw_delta() != 0.0f) subtickMoves->erase(iterator); else iterator++; @@ -565,7 +565,6 @@ void* FASTCALL Detour_ProcessUsercmds(CCSPlayerController* pController, CUserCmd { cmds[i].cmd.set_attack1_start_history_index(-1); cmds[i].cmd.set_attack2_start_history_index(-1); - cmds[i].cmd.set_attack3_start_history_index(-1); cmds[i].cmd.mutable_input_history()->Clear(); } } diff --git a/src/events.cpp b/src/events.cpp index cef1c6b16..23b1e5274 100644 --- a/src/events.cpp +++ b/src/events.cpp @@ -30,7 +30,6 @@ #include "idlemanager.h" #include "leader.h" #include "map_votes.h" -#include "networkstringtabledefs.h" #include "panoramavote.h" #include "recipientfilters.h" #include "votemanager.h" @@ -68,31 +67,10 @@ void UnregisterEventListeners() g_vecEventListeners.Purge(); } -CConVar g_cvarPurgeEntityNames("cs2f_purge_entity_strings", FCVAR_NONE, "Whether to purge the EntityNames stringtable on new rounds", false); - GAME_EVENT_F(round_prestart) { RemoveTimers(TIMERFLAG_ROUND); - if (g_cvarPurgeEntityNames.Get()) - { - INetworkStringTable* pEntityNames = g_pNetworkStringTableServer->FindTable("EntityNames"); - - if (pEntityNames) - { - int iStringCount = pEntityNames->GetNumStrings(); - addresses::CNetworkStringTable_DeleteAllStrings(pEntityNames); - - Message("Purged %i strings from EntityNames\n", iStringCount); - - // Vauff: Not fixing cubemap fog in my testing - // This also breaks round start particle resets, so disabling for now - // pEntityNames->SetTick(-1, nullptr); - - // FullUpdateAllClients(); - } - } - EntityHandler_OnRoundRestart(); CBaseEntity* pShake = nullptr;