effigy_wire 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/Gemfile +2 -0
  4. data/Gemfile.lock +13 -6
  5. data/bin/bundler +17 -0
  6. data/bin/import +47 -0
  7. data/bin/protoc-gen-ruby +17 -0
  8. data/bin/rake +17 -0
  9. data/bin/repath +6 -0
  10. data/bin/rpc_server +17 -0
  11. data/bin/support/00-nuke_everything +35 -0
  12. data/bin/support/10-clarity_protobuf_copy +68 -0
  13. data/bin/support/20-clean_clarity_protobuf +46 -0
  14. data/bin/{effigy/package → support/30-package_proto} +10 -8
  15. data/bin/support/40-tweak_proto +24 -0
  16. data/bin/support/50-compile_proto +100 -0
  17. data/bin/support/60-tweak_rb +23 -0
  18. data/bin/{effigy/mk-require-turds → support/70-make_require_turds} +10 -6
  19. data/bin/support/80-delete_stragglers +7 -0
  20. data/bin/thor +17 -0
  21. data/effigy_wire.gemspec +1 -2
  22. data/lib/effigy/wire.rb +0 -6
  23. data/lib/effigy/wire/demo.pb.rb +22 -21
  24. data/lib/effigy/wire/dota_commonmessages.pb.rb +87 -86
  25. data/lib/effigy/wire/dota_modifiers.pb.rb +2 -1
  26. data/lib/effigy/wire/dota_usermessages.pb.rb +50 -49
  27. data/lib/effigy/wire/netmessages.pb.rb +2 -1
  28. data/lib/effigy/wire/networkbasetypes.pb.rb +15 -14
  29. data/lib/effigy/wire/s1/s1_dota_usermessages.pb.rb +81 -80
  30. data/lib/effigy/wire/s1/s1_netmessages.pb.rb +29 -28
  31. data/lib/effigy/wire/s1/s1_usermessages.pb.rb +33 -32
  32. data/lib/effigy/wire/s2/s2_base_gcmessages.pb.rb +2 -1
  33. data/lib/effigy/wire/s2/s2_dota_gcmessages_common.pb.rb +3 -2
  34. data/lib/effigy/wire/s2/s2_dota_match_metadata.pb.rb +3 -2
  35. data/lib/effigy/wire/s2/s2_dota_usermessages.pb.rb +96 -95
  36. data/lib/effigy/wire/s2/s2_gameevents.pb.rb +15 -14
  37. data/lib/effigy/wire/s2/s2_netmessages.pb.rb +26 -25
  38. data/lib/effigy/wire/s2/s2_te.pb.rb +29 -28
  39. data/lib/effigy/wire/s2/s2_usermessages.pb.rb +48 -47
  40. data/proto/dota_commonmessages.proto +91 -91
  41. data/proto/dota_usermessages.proto +48 -48
  42. data/proto/networkbasetypes.proto +14 -14
  43. data/proto/s1/s1_netmessages.proto +27 -27
  44. data/proto/s2/s2_dota_gcmessages_common.proto +1 -1
  45. data/proto/s2/s2_dota_match_metadata.proto +1 -1
  46. data/proto/s2/s2_netmessages.proto +24 -24
  47. metadata +19 -10
  48. data/BIN_README.txt +0 -18
  49. data/bin/clarity-protobuf/clean +0 -36
  50. data/bin/clarity-protobuf/copy +0 -75
  51. data/bin/effigy/compile-proto +0 -81
  52. data/bin/effigy/tweak-proto +0 -30
  53. data/bin/effigy/tweak-rb +0 -20
@@ -3,7 +3,7 @@
3
3
  ##
4
4
  # This file is auto-generated. DO NOT EDIT!
5
5
  #
6
- require 'protobuf/message'
6
+ require 'protobuf'
7
7
 
8
8
 
9
9
  ##
@@ -13,6 +13,7 @@ require_relative 'networkbasetypes.pb'
13
13
 
14
14
  module Effigy
15
15
  module Wire
16
+ ::Protobuf::Optionable.inject(self) { ::Google::Protobuf::FileOptions }
16
17
 
17
18
  ##
18
19
  # Enum Classes
@@ -3,29 +3,30 @@
3
3
  ##
4
4
  # This file is auto-generated. DO NOT EDIT!
5
5
  #
6
- require 'protobuf/message'
6
+ require 'protobuf'
7
7
 
8
8
  module Effigy
9
9
  module Wire
10
+ ::Protobuf::Optionable.inject(self) { ::Google::Protobuf::FileOptions }
10
11
 
11
12
  ##
12
13
  # Enum Classes
13
14
  #
14
15
  class NET_Messages < ::Protobuf::Enum
15
16
  define :NET_NOP, 0
16
- define :NET_Disconnect, 1
17
- define :NET_File, 2
18
- define :NET_SplitScreenUser, 3
19
- define :NET_Tick, 4
20
- define :NET_StringCmd, 5
21
- define :NET_SetConVar, 6
22
- define :NET_SignonState, 7
23
- define :NET_SpawnGroup_Load, 8
24
- define :NET_SpawnGroup_ManifestUpdate, 9
25
- define :NET_SpawnGroup_SetCreationTick, 11
26
- define :NET_SpawnGroup_Unload, 12
27
- define :NET_SpawnGroup_LoadCompleted, 13
28
- define :NET_ReliableMessageEndMarker, 14
17
+ define :NET_DISCONNECT, 1
18
+ define :NET_FILE, 2
19
+ define :NET_SPLITSCREENUSER, 3
20
+ define :NET_TICK, 4
21
+ define :NET_STRINGCMD, 5
22
+ define :NET_SETCONVAR, 6
23
+ define :NET_SIGNONSTATE, 7
24
+ define :NET_SPAWNGROUP_LOAD, 8
25
+ define :NET_SPAWNGROUP_MANIFESTUPDATE, 9
26
+ define :NET_SPAWNGROUP_SETCREATIONTICK, 11
27
+ define :NET_SPAWNGROUP_UNLOAD, 12
28
+ define :NET_SPAWNGROUP_LOADCOMPLETED, 13
29
+ define :NET_RELIABLEMESSAGEENDMARKER, 14
29
30
  end
30
31
 
31
32
  class SpawnGroupFlags_t < ::Protobuf::Enum
@@ -3,95 +3,96 @@
3
3
  ##
4
4
  # This file is auto-generated. DO NOT EDIT!
5
5
  #
6
- require 'protobuf/message'
6
+ require 'protobuf'
7
7
 
8
8
  module Effigy
9
9
  module Wire
10
10
  module S1
11
+ ::Protobuf::Optionable.inject(self) { ::Google::Protobuf::FileOptions }
11
12
 
12
13
  ##
13
14
  # Enum Classes
14
15
  #
15
16
  class EDotaUserMessages < ::Protobuf::Enum
16
- define :DOTA_UM_AddUnitToSelection, 64
17
- define :DOTA_UM_AIDebugLine, 65
18
- define :DOTA_UM_ChatEvent, 66
19
- define :DOTA_UM_CombatHeroPositions, 67
20
- define :DOTA_UM_CombatLogData, 68
21
- define :DOTA_UM_CombatLogShowDeath, 70
22
- define :DOTA_UM_CreateLinearProjectile, 71
23
- define :DOTA_UM_DestroyLinearProjectile, 72
24
- define :DOTA_UM_DodgeTrackingProjectiles, 73
25
- define :DOTA_UM_GlobalLightColor, 74
26
- define :DOTA_UM_GlobalLightDirection, 75
27
- define :DOTA_UM_InvalidCommand, 76
28
- define :DOTA_UM_LocationPing, 77
29
- define :DOTA_UM_MapLine, 78
30
- define :DOTA_UM_MiniKillCamInfo, 79
31
- define :DOTA_UM_MinimapDebugPoint, 80
32
- define :DOTA_UM_MinimapEvent, 81
33
- define :DOTA_UM_NevermoreRequiem, 82
34
- define :DOTA_UM_OverheadEvent, 83
35
- define :DOTA_UM_SetNextAutobuyItem, 84
36
- define :DOTA_UM_SharedCooldown, 85
37
- define :DOTA_UM_SpectatorPlayerClick, 86
38
- define :DOTA_UM_TutorialTipInfo, 87
39
- define :DOTA_UM_UnitEvent, 88
40
- define :DOTA_UM_ParticleManager, 89
41
- define :DOTA_UM_BotChat, 90
42
- define :DOTA_UM_HudError, 91
43
- define :DOTA_UM_ItemPurchased, 92
44
- define :DOTA_UM_Ping, 93
45
- define :DOTA_UM_ItemFound, 94
46
- define :DOTA_UM_CharacterSpeakConcept, 95
47
- define :DOTA_UM_SwapVerify, 96
48
- define :DOTA_UM_WorldLine, 97
49
- define :DOTA_UM_TournamentDrop, 98
50
- define :DOTA_UM_ItemAlert, 99
51
- define :DOTA_UM_HalloweenDrops, 100
52
- define :DOTA_UM_ChatWheel, 101
53
- define :DOTA_UM_ReceivedXmasGift, 102
54
- define :DOTA_UM_UpdateSharedContent, 103
55
- define :DOTA_UM_TutorialRequestExp, 104
56
- define :DOTA_UM_TutorialPingMinimap, 105
57
- define :DOTA_UM_GamerulesStateChanged, 106
58
- define :DOTA_UM_ShowSurvey, 107
59
- define :DOTA_UM_TutorialFade, 108
60
- define :DOTA_UM_AddQuestLogEntry, 109
61
- define :DOTA_UM_SendStatPopup, 110
62
- define :DOTA_UM_TutorialFinish, 111
63
- define :DOTA_UM_SendRoshanPopup, 112
64
- define :DOTA_UM_SendGenericToolTip, 113
65
- define :DOTA_UM_SendFinalGold, 114
66
- define :DOTA_UM_CustomMsg, 115
67
- define :DOTA_UM_CoachHUDPing, 116
68
- define :DOTA_UM_ClientLoadGridNav, 117
69
- define :DOTA_UM_AbilityPing, 118
70
- define :DOTA_UM_ShowGenericPopup, 119
71
- define :DOTA_UM_VoteStart, 120
72
- define :DOTA_UM_VoteUpdate, 121
73
- define :DOTA_UM_VoteEnd, 122
74
- define :DOTA_UM_BoosterState, 123
75
- define :DOTA_UM_WillPurchaseAlert, 124
76
- define :DOTA_UM_TutorialMinimapPosition, 125
77
- define :DOTA_UM_PlayerMMR, 126
78
- define :DOTA_UM_AbilitySteal, 127
79
- define :DOTA_UM_CourierKilledAlert, 128
80
- define :DOTA_UM_EnemyItemAlert, 129
81
- define :DOTA_UM_StatsMatchDetails, 130
82
- define :DOTA_UM_MiniTaunt, 131
83
- define :DOTA_UM_BuyBackStateAlert, 132
84
- define :DOTA_UM_QuickBuyAlert, 133
85
- define :DOTA_UM_StatsHeroDetails, 134
86
- define :DOTA_UM_PredictionResult, 135
87
- define :DOTA_UM_ModifierAlert, 136
88
- define :DOTA_UM_HPManaAlert, 137
89
- define :DOTA_UM_GlyphAlert, 138
90
- define :DOTA_UM_BeastChat, 139
91
- define :DOTA_UM_SpectatorPlayerUnitOrders, 140
92
- define :DOTA_UM_CompendiumState, 141
93
- define :DOTA_UM_ProjectionAbility, 142
94
- define :DOTA_UM_ProjectionEvent, 143
17
+ define :DOTA_UM_ADDUNITTOSELECTION, 64
18
+ define :DOTA_UM_AIDEBUGLINE, 65
19
+ define :DOTA_UM_CHATEVENT, 66
20
+ define :DOTA_UM_COMBATHEROPOSITIONS, 67
21
+ define :DOTA_UM_COMBATLOGDATA, 68
22
+ define :DOTA_UM_COMBATLOGSHOWDEATH, 70
23
+ define :DOTA_UM_CREATELINEARPROJECTILE, 71
24
+ define :DOTA_UM_DESTROYLINEARPROJECTILE, 72
25
+ define :DOTA_UM_DODGETRACKINGPROJECTILES, 73
26
+ define :DOTA_UM_GLOBALLIGHTCOLOR, 74
27
+ define :DOTA_UM_GLOBALLIGHTDIRECTION, 75
28
+ define :DOTA_UM_INVALIDCOMMAND, 76
29
+ define :DOTA_UM_LOCATIONPING, 77
30
+ define :DOTA_UM_MAPLINE, 78
31
+ define :DOTA_UM_MINIKILLCAMINFO, 79
32
+ define :DOTA_UM_MINIMAPDEBUGPOINT, 80
33
+ define :DOTA_UM_MINIMAPEVENT, 81
34
+ define :DOTA_UM_NEVERMOREREQUIEM, 82
35
+ define :DOTA_UM_OVERHEADEVENT, 83
36
+ define :DOTA_UM_SETNEXTAUTOBUYITEM, 84
37
+ define :DOTA_UM_SHAREDCOOLDOWN, 85
38
+ define :DOTA_UM_SPECTATORPLAYERCLICK, 86
39
+ define :DOTA_UM_TUTORIALTIPINFO, 87
40
+ define :DOTA_UM_UNITEVENT, 88
41
+ define :DOTA_UM_PARTICLEMANAGER, 89
42
+ define :DOTA_UM_BOTCHAT, 90
43
+ define :DOTA_UM_HUDERROR, 91
44
+ define :DOTA_UM_ITEMPURCHASED, 92
45
+ define :DOTA_UM_PING, 93
46
+ define :DOTA_UM_ITEMFOUND, 94
47
+ define :DOTA_UM_CHARACTERSPEAKCONCEPT, 95
48
+ define :DOTA_UM_SWAPVERIFY, 96
49
+ define :DOTA_UM_WORLDLINE, 97
50
+ define :DOTA_UM_TOURNAMENTDROP, 98
51
+ define :DOTA_UM_ITEMALERT, 99
52
+ define :DOTA_UM_HALLOWEENDROPS, 100
53
+ define :DOTA_UM_CHATWHEEL, 101
54
+ define :DOTA_UM_RECEIVEDXMASGIFT, 102
55
+ define :DOTA_UM_UPDATESHAREDCONTENT, 103
56
+ define :DOTA_UM_TUTORIALREQUESTEXP, 104
57
+ define :DOTA_UM_TUTORIALPINGMINIMAP, 105
58
+ define :DOTA_UM_GAMERULESSTATECHANGED, 106
59
+ define :DOTA_UM_SHOWSURVEY, 107
60
+ define :DOTA_UM_TUTORIALFADE, 108
61
+ define :DOTA_UM_ADDQUESTLOGENTRY, 109
62
+ define :DOTA_UM_SENDSTATPOPUP, 110
63
+ define :DOTA_UM_TUTORIALFINISH, 111
64
+ define :DOTA_UM_SENDROSHANPOPUP, 112
65
+ define :DOTA_UM_SENDGENERICTOOLTIP, 113
66
+ define :DOTA_UM_SENDFINALGOLD, 114
67
+ define :DOTA_UM_CUSTOMMSG, 115
68
+ define :DOTA_UM_COACHHUDPING, 116
69
+ define :DOTA_UM_CLIENTLOADGRIDNAV, 117
70
+ define :DOTA_UM_ABILITYPING, 118
71
+ define :DOTA_UM_SHOWGENERICPOPUP, 119
72
+ define :DOTA_UM_VOTESTART, 120
73
+ define :DOTA_UM_VOTEUPDATE, 121
74
+ define :DOTA_UM_VOTEEND, 122
75
+ define :DOTA_UM_BOOSTERSTATE, 123
76
+ define :DOTA_UM_WILLPURCHASEALERT, 124
77
+ define :DOTA_UM_TUTORIALMINIMAPPOSITION, 125
78
+ define :DOTA_UM_PLAYERMMR, 126
79
+ define :DOTA_UM_ABILITYSTEAL, 127
80
+ define :DOTA_UM_COURIERKILLEDALERT, 128
81
+ define :DOTA_UM_ENEMYITEMALERT, 129
82
+ define :DOTA_UM_STATSMATCHDETAILS, 130
83
+ define :DOTA_UM_MINITAUNT, 131
84
+ define :DOTA_UM_BUYBACKSTATEALERT, 132
85
+ define :DOTA_UM_QUICKBUYALERT, 133
86
+ define :DOTA_UM_STATSHERODETAILS, 134
87
+ define :DOTA_UM_PREDICTIONRESULT, 135
88
+ define :DOTA_UM_MODIFIERALERT, 136
89
+ define :DOTA_UM_HPMANAALERT, 137
90
+ define :DOTA_UM_GLYPHALERT, 138
91
+ define :DOTA_UM_BEASTCHAT, 139
92
+ define :DOTA_UM_SPECTATORPLAYERUNITORDERS, 140
93
+ define :DOTA_UM_COMPENDIUMSTATE, 141
94
+ define :DOTA_UM_PROJECTIONABILITY, 142
95
+ define :DOTA_UM_PROJECTIONEVENT, 143
95
96
  end
96
97
 
97
98
  end
@@ -3,7 +3,7 @@
3
3
  ##
4
4
  # This file is auto-generated. DO NOT EDIT!
5
5
  #
6
- require 'protobuf/message'
6
+ require 'protobuf'
7
7
 
8
8
 
9
9
  ##
@@ -14,37 +14,38 @@ require_relative '../netmessages.pb'
14
14
  module Effigy
15
15
  module Wire
16
16
  module S1
17
+ ::Protobuf::Optionable.inject(self) { ::Google::Protobuf::FileOptions }
17
18
 
18
19
  ##
19
20
  # Enum Classes
20
21
  #
21
22
  class SVC_Messages < ::Protobuf::Enum
22
- define :SVC_ServerInfo, 8
23
- define :SVC_SendTable, 9
24
- define :SVC_ClassInfo, 10
25
- define :SVC_SetPause, 11
26
- define :SVC_CreateStringTable, 12
27
- define :SVC_UpdateStringTable, 13
28
- define :SVC_VoiceInit, 14
29
- define :SVC_VoiceData, 15
30
- define :SVC_Print, 16
31
- define :SVC_Sounds, 17
32
- define :SVC_SetView, 18
33
- define :SVC_FixAngle, 19
34
- define :SVC_CrosshairAngle, 20
35
- define :SVC_BSPDecal, 21
36
- define :SVC_SplitScreen, 22
37
- define :SVC_UserMessage, 23
38
- define :SVC_EntityMessage, 24
39
- define :SVC_GameEvent, 25
40
- define :SVC_PacketEntities, 26
41
- define :SVC_TempEntities, 27
42
- define :SVC_Prefetch, 28
43
- define :SVC_Menu, 29
44
- define :SVC_GameEventList, 30
45
- define :SVC_GetCvarValue, 31
46
- define :SVC_PacketReliable, 32
47
- define :SVC_FullFrameSplit, 33
23
+ define :SVC_SERVERINFO, 8
24
+ define :SVC_SENDTABLE, 9
25
+ define :SVC_CLASSINFO, 10
26
+ define :SVC_SETPAUSE, 11
27
+ define :SVC_CREATESTRINGTABLE, 12
28
+ define :SVC_UPDATESTRINGTABLE, 13
29
+ define :SVC_VOICEINIT, 14
30
+ define :SVC_VOICEDATA, 15
31
+ define :SVC_PRINT, 16
32
+ define :SVC_SOUNDS, 17
33
+ define :SVC_SETVIEW, 18
34
+ define :SVC_FIXANGLE, 19
35
+ define :SVC_CROSSHAIRANGLE, 20
36
+ define :SVC_BSPDECAL, 21
37
+ define :SVC_SPLITSCREEN, 22
38
+ define :SVC_USERMESSAGE, 23
39
+ define :SVC_ENTITYMESSAGE, 24
40
+ define :SVC_GAMEEVENT, 25
41
+ define :SVC_PACKETENTITIES, 26
42
+ define :SVC_TEMPENTITIES, 27
43
+ define :SVC_PREFETCH, 28
44
+ define :SVC_MENU, 29
45
+ define :SVC_GAMEEVENTLIST, 30
46
+ define :SVC_GETCVARVALUE, 31
47
+ define :SVC_PACKETRELIABLE, 32
48
+ define :SVC_FULLFRAMESPLIT, 33
48
49
  end
49
50
 
50
51
 
@@ -89,7 +90,7 @@ module Effigy
89
90
  end
90
91
 
91
92
  optional :bool, :is_end, 1
92
- optional :string, :NET_table_name, 2
93
+ optional :string, :net_table_name, 2
93
94
  optional :bool, :needs_decoder, 3
94
95
  repeated ::Effigy::Wire::S1::CSVCMsg_SendTable::Sendprop_t, :props, 4
95
96
  end
@@ -3,7 +3,7 @@
3
3
  ##
4
4
  # This file is auto-generated. DO NOT EDIT!
5
5
  #
6
- require 'protobuf/message'
6
+ require 'protobuf'
7
7
 
8
8
 
9
9
  ##
@@ -14,42 +14,43 @@ require_relative '../networkbasetypes.pb'
14
14
  module Effigy
15
15
  module Wire
16
16
  module S1
17
+ ::Protobuf::Optionable.inject(self) { ::Google::Protobuf::FileOptions }
17
18
 
18
19
  ##
19
20
  # Enum Classes
20
21
  #
21
22
  class EBaseUserMessages < ::Protobuf::Enum
22
- define :UM_AchievementEvent, 1
23
- define :UM_CloseCaption, 2
24
- define :UM_CloseCaptionDirect, 3
25
- define :UM_CurrentTimescale, 4
26
- define :UM_DesiredTimescale, 5
27
- define :UM_Fade, 6
28
- define :UM_GameTitle, 7
29
- define :UM_Geiger, 8
30
- define :UM_HintText, 9
31
- define :UM_HudMsg, 10
32
- define :UM_HudText, 11
33
- define :UM_KeyHintText, 12
34
- define :UM_MessageText, 13
35
- define :UM_RequestState, 14
36
- define :UM_ResetHUD, 15
37
- define :UM_Rumble, 16
38
- define :UM_SayText, 17
39
- define :UM_SayText2, 18
40
- define :UM_SayTextChannel, 19
41
- define :UM_Shake, 20
42
- define :UM_ShakeDir, 21
43
- define :UM_StatsCrawlMsg, 22
44
- define :UM_StatsSkipState, 23
45
- define :UM_TextMsg, 24
46
- define :UM_Tilt, 25
47
- define :UM_Train, 26
48
- define :UM_VGUIMenu, 27
49
- define :UM_VoiceMask, 28
50
- define :UM_VoiceSubtitle, 29
51
- define :UM_SendAudio, 30
52
- define :UM_CameraTransition, 31
23
+ define :UM_ACHIEVEMENTEVENT, 1
24
+ define :UM_CLOSECAPTION, 2
25
+ define :UM_CLOSECAPTIONDIRECT, 3
26
+ define :UM_CURRENTTIMESCALE, 4
27
+ define :UM_DESIREDTIMESCALE, 5
28
+ define :UM_FADE, 6
29
+ define :UM_GAMETITLE, 7
30
+ define :UM_GEIGER, 8
31
+ define :UM_HINTTEXT, 9
32
+ define :UM_HUDMSG, 10
33
+ define :UM_HUDTEXT, 11
34
+ define :UM_KEYHINTTEXT, 12
35
+ define :UM_MESSAGETEXT, 13
36
+ define :UM_REQUESTSTATE, 14
37
+ define :UM_RESETHUD, 15
38
+ define :UM_RUMBLE, 16
39
+ define :UM_SAYTEXT, 17
40
+ define :UM_SAYTEXT2, 18
41
+ define :UM_SAYTEXTCHANNEL, 19
42
+ define :UM_SHAKE, 20
43
+ define :UM_SHAKEDIR, 21
44
+ define :UM_STATSCRAWLMSG, 22
45
+ define :UM_STATSSKIPSTATE, 23
46
+ define :UM_TEXTMSG, 24
47
+ define :UM_TILT, 25
48
+ define :UM_TRAIN, 26
49
+ define :UM_VGUIMENU, 27
50
+ define :UM_VOICEMASK, 28
51
+ define :UM_VOICESUBTITLE, 29
52
+ define :UM_SENDAUDIO, 30
53
+ define :UM_CAMERATRANSITION, 31
53
54
  define :UM_MAX_BASE, 63
54
55
  end
55
56
 
@@ -3,11 +3,12 @@
3
3
  ##
4
4
  # This file is auto-generated. DO NOT EDIT!
5
5
  #
6
- require 'protobuf/message'
6
+ require 'protobuf'
7
7
 
8
8
  module Effigy
9
9
  module Wire
10
10
  module S2
11
+ ::Protobuf::Optionable.inject(self) { ::Google::Protobuf::FileOptions }
11
12
 
12
13
  ##
13
14
  # Message Classes
@@ -3,11 +3,12 @@
3
3
  ##
4
4
  # This file is auto-generated. DO NOT EDIT!
5
5
  #
6
- require 'protobuf/message'
6
+ require 'protobuf'
7
7
 
8
8
  module Effigy
9
9
  module Wire
10
10
  module S2
11
+ ::Protobuf::Optionable.inject(self) { ::Google::Protobuf::FileOptions }
11
12
 
12
13
  ##
13
14
  # Enum Classes
@@ -140,7 +141,7 @@ module Effigy
140
141
  repeated ::Effigy::Wire::S2::CMatchAdditionalUnitInventory, :additional_units_inventory, 48
141
142
  optional ::Effigy::Wire::S2::CMsgDOTAMatch::Player::CustomGameData, :custom_game_data, 50
142
143
  optional :bool, :active_battle_pass, 51
143
- optional :uint32, :NET_worth, 52
144
+ optional :uint32, :net_worth, 52
144
145
  end
145
146
 
146
147
  class BroadcasterInfo
@@ -3,7 +3,7 @@
3
3
  ##
4
4
  # This file is auto-generated. DO NOT EDIT!
5
5
  #
6
- require 'protobuf/message'
6
+ require 'protobuf'
7
7
 
8
8
 
9
9
  ##
@@ -14,6 +14,7 @@ require_relative 's2_base_gcmessages.pb'
14
14
  module Effigy
15
15
  module Wire
16
16
  module S2
17
+ ::Protobuf::Optionable.inject(self) { ::Google::Protobuf::FileOptions }
17
18
 
18
19
  ##
19
20
  # Message Classes
@@ -66,7 +67,7 @@ module Effigy
66
67
  repeated ::Effigy::Wire::S2::CDOTAMatchMetadata::Team::Player, :players, 2
67
68
  repeated :float, :graph_experience, 3
68
69
  repeated :float, :graph_gold_earned, 4
69
- repeated :float, :graph_NET_worth, 5
70
+ repeated :float, :graph_net_worth, 5
70
71
  optional :bool, :cm_first_pick, 6
71
72
  optional :uint32, :cm_captain_player_id, 7
72
73
  repeated :uint32, :cm_bans, 8