overlook-csgo 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,280 +0,0 @@
1
- ## Generated from google/protobuf/descriptor.proto for google.protobuf
2
- require "beefcake"
3
-
4
-
5
- class FileDescriptorSet
6
- include Beefcake::Message
7
- end
8
-
9
- class FileDescriptorProto
10
- include Beefcake::Message
11
- end
12
-
13
- class DescriptorProto
14
- include Beefcake::Message
15
-
16
- class ExtensionRange
17
- include Beefcake::Message
18
- end
19
- end
20
-
21
- class FieldDescriptorProto
22
- include Beefcake::Message
23
-
24
- module Type
25
- TYPE_DOUBLE = 1
26
- TYPE_FLOAT = 2
27
- TYPE_INT64 = 3
28
- TYPE_UINT64 = 4
29
- TYPE_INT32 = 5
30
- TYPE_FIXED64 = 6
31
- TYPE_FIXED32 = 7
32
- TYPE_BOOL = 8
33
- TYPE_STRING = 9
34
- TYPE_GROUP = 10
35
- TYPE_MESSAGE = 11
36
- TYPE_BYTES = 12
37
- TYPE_UINT32 = 13
38
- TYPE_ENUM = 14
39
- TYPE_SFIXED32 = 15
40
- TYPE_SFIXED64 = 16
41
- TYPE_SINT32 = 17
42
- TYPE_SINT64 = 18
43
- end
44
-
45
- module Label
46
- LABEL_OPTIONAL = 1
47
- LABEL_REQUIRED = 2
48
- LABEL_REPEATED = 3
49
- end
50
- end
51
-
52
- class OneofDescriptorProto
53
- include Beefcake::Message
54
- end
55
-
56
- class EnumDescriptorProto
57
- include Beefcake::Message
58
- end
59
-
60
- class EnumValueDescriptorProto
61
- include Beefcake::Message
62
- end
63
-
64
- class ServiceDescriptorProto
65
- include Beefcake::Message
66
- end
67
-
68
- class MethodDescriptorProto
69
- include Beefcake::Message
70
- end
71
-
72
- class FileOptions
73
- include Beefcake::Message
74
-
75
- module OptimizeMode
76
- SPEED = 1
77
- CODE_SIZE = 2
78
- LITE_RUNTIME = 3
79
- end
80
- end
81
-
82
- class MessageOptions
83
- include Beefcake::Message
84
- end
85
-
86
- class FieldOptions
87
- include Beefcake::Message
88
-
89
- module CType
90
- STRING = 0
91
- CORD = 1
92
- STRING_PIECE = 2
93
- end
94
- end
95
-
96
- class EnumOptions
97
- include Beefcake::Message
98
- end
99
-
100
- class EnumValueOptions
101
- include Beefcake::Message
102
- end
103
-
104
- class ServiceOptions
105
- include Beefcake::Message
106
- end
107
-
108
- class MethodOptions
109
- include Beefcake::Message
110
- end
111
-
112
- class UninterpretedOption
113
- include Beefcake::Message
114
-
115
- class NamePart
116
- include Beefcake::Message
117
- end
118
- end
119
-
120
- class SourceCodeInfo
121
- include Beefcake::Message
122
-
123
- class Location
124
- include Beefcake::Message
125
- end
126
- end
127
-
128
- class FileDescriptorSet
129
- repeated :file, FileDescriptorProto, 1
130
- end
131
-
132
- class FileDescriptorProto
133
- optional :name, :string, 1
134
- optional :package, :string, 2
135
- repeated :dependency, :string, 3
136
- repeated :public_dependency, :int32, 10
137
- repeated :weak_dependency, :int32, 11
138
- repeated :message_type, DescriptorProto, 4
139
- repeated :enum_type, EnumDescriptorProto, 5
140
- repeated :service, ServiceDescriptorProto, 6
141
- repeated :extension, FieldDescriptorProto, 7
142
- optional :options, FileOptions, 8
143
- optional :source_code_info, SourceCodeInfo, 9
144
- end
145
-
146
- class DescriptorProto
147
-
148
- class ExtensionRange
149
- optional :start, :int32, 1
150
- optional :end, :int32, 2
151
- end
152
- optional :name, :string, 1
153
- repeated :field, FieldDescriptorProto, 2
154
- repeated :extension, FieldDescriptorProto, 6
155
- repeated :nested_type, DescriptorProto, 3
156
- repeated :enum_type, EnumDescriptorProto, 4
157
- repeated :extension_range, DescriptorProto::ExtensionRange, 5
158
- repeated :oneof_decl, OneofDescriptorProto, 8
159
- optional :options, MessageOptions, 7
160
- end
161
-
162
- class FieldDescriptorProto
163
- optional :name, :string, 1
164
- optional :number, :int32, 3
165
- optional :label, FieldDescriptorProto::Label, 4
166
- optional :type, FieldDescriptorProto::Type, 5
167
- optional :type_name, :string, 6
168
- optional :extendee, :string, 2
169
- optional :default_value, :string, 7
170
- optional :oneof_index, :int32, 9
171
- optional :options, FieldOptions, 8
172
- end
173
-
174
- class OneofDescriptorProto
175
- optional :name, :string, 1
176
- end
177
-
178
- class EnumDescriptorProto
179
- optional :name, :string, 1
180
- repeated :value, EnumValueDescriptorProto, 2
181
- optional :options, EnumOptions, 3
182
- end
183
-
184
- class EnumValueDescriptorProto
185
- optional :name, :string, 1
186
- optional :number, :int32, 2
187
- optional :options, EnumValueOptions, 3
188
- end
189
-
190
- class ServiceDescriptorProto
191
- optional :name, :string, 1
192
- repeated :method, MethodDescriptorProto, 2
193
- optional :options, ServiceOptions, 3
194
- end
195
-
196
- class MethodDescriptorProto
197
- optional :name, :string, 1
198
- optional :input_type, :string, 2
199
- optional :output_type, :string, 3
200
- optional :options, MethodOptions, 4
201
- end
202
-
203
- class FileOptions
204
- optional :java_package, :string, 1
205
- optional :java_outer_classname, :string, 8
206
- optional :java_multiple_files, :bool, 10, :default => false
207
- optional :java_generate_equals_and_hash, :bool, 20, :default => false
208
- optional :java_string_check_utf8, :bool, 27, :default => false
209
- optional :optimize_for, FileOptions::OptimizeMode, 9, :default => FileOptions::OptimizeMode::SPEED
210
- optional :go_package, :string, 11
211
- optional :cc_generic_services, :bool, 16, :default => false
212
- optional :java_generic_services, :bool, 17, :default => false
213
- optional :py_generic_services, :bool, 18, :default => false
214
- optional :deprecated, :bool, 23, :default => false
215
- repeated :uninterpreted_option, UninterpretedOption, 999
216
- end
217
-
218
- class MessageOptions
219
- optional :message_set_wire_format, :bool, 1, :default => false
220
- optional :no_standard_descriptor_accessor, :bool, 2, :default => false
221
- optional :deprecated, :bool, 3, :default => false
222
- repeated :uninterpreted_option, UninterpretedOption, 999
223
- end
224
-
225
- class FieldOptions
226
- optional :ctype, FieldOptions::CType, 1, :default => FieldOptions::CType::STRING
227
- optional :packed, :bool, 2
228
- optional :lazy, :bool, 5, :default => false
229
- optional :deprecated, :bool, 3, :default => false
230
- optional :experimental_map_key, :string, 9
231
- optional :weak, :bool, 10, :default => false
232
- repeated :uninterpreted_option, UninterpretedOption, 999
233
- end
234
-
235
- class EnumOptions
236
- optional :allow_alias, :bool, 2
237
- optional :deprecated, :bool, 3, :default => false
238
- repeated :uninterpreted_option, UninterpretedOption, 999
239
- end
240
-
241
- class EnumValueOptions
242
- optional :deprecated, :bool, 1, :default => false
243
- repeated :uninterpreted_option, UninterpretedOption, 999
244
- end
245
-
246
- class ServiceOptions
247
- optional :deprecated, :bool, 33, :default => false
248
- repeated :uninterpreted_option, UninterpretedOption, 999
249
- end
250
-
251
- class MethodOptions
252
- optional :deprecated, :bool, 33, :default => false
253
- repeated :uninterpreted_option, UninterpretedOption, 999
254
- end
255
-
256
- class UninterpretedOption
257
-
258
- class NamePart
259
- required :name_part, :string, 1
260
- required :is_extension, :bool, 2
261
- end
262
- repeated :name, UninterpretedOption::NamePart, 2
263
- optional :identifier_value, :string, 3
264
- optional :positive_int_value, :uint64, 4
265
- optional :negative_int_value, :int64, 5
266
- optional :double_value, :double, 6
267
- optional :string_value, :bytes, 7
268
- optional :aggregate_value, :string, 8
269
- end
270
-
271
- class SourceCodeInfo
272
-
273
- class Location
274
- repeated :path, :int32, 1
275
- repeated :span, :int32, 2
276
- optional :leading_comments, :string, 3
277
- optional :trailing_comments, :string, 4
278
- end
279
- repeated :location, SourceCodeInfo::Location, 1
280
- end
@@ -1,734 +0,0 @@
1
- ## Generated from netmessages.proto
2
- require "beefcake"
3
-
4
-
5
- module NET_Messages
6
- net_NOP = 0
7
- net_Disconnect = 1
8
- net_File = 2
9
- net_SplitScreenUser = 3
10
- net_Tick = 4
11
- net_StringCmd = 5
12
- net_SetConVar = 6
13
- net_SignonState = 7
14
- net_PlayerAvatarData = 100
15
- end
16
-
17
- module CLC_Messages
18
- clc_ClientInfo = 8
19
- clc_Move = 9
20
- clc_VoiceData = 10
21
- clc_BaselineAck = 11
22
- clc_ListenEvents = 12
23
- clc_RespondCvarValue = 13
24
- clc_FileCRCCheck = 14
25
- clc_LoadingProgress = 15
26
- clc_SplitPlayerConnect = 16
27
- clc_ClientMessage = 17
28
- clc_CmdKeyValues = 18
29
- clc_HltvReplay = 20
30
- end
31
-
32
- module VoiceDataFormat_t
33
- VOICEDATA_FORMAT_STEAM = 0
34
- VOICEDATA_FORMAT_ENGINE = 1
35
- end
36
-
37
- module ESplitScreenMessageType
38
- MSG_SPLITSCREEN_ADDUSER = 0
39
- MSG_SPLITSCREEN_REMOVEUSER = 1
40
- MSG_SPLITSCREEN_TYPE_BITS = 1
41
- end
42
-
43
- module SVC_Messages
44
- svc_ServerInfo = 8
45
- svc_SendTable = 9
46
- svc_ClassInfo = 10
47
- svc_SetPause = 11
48
- svc_CreateStringTable = 12
49
- svc_UpdateStringTable = 13
50
- svc_VoiceInit = 14
51
- svc_VoiceData = 15
52
- svc_Print = 16
53
- svc_Sounds = 17
54
- svc_SetView = 18
55
- svc_FixAngle = 19
56
- svc_CrosshairAngle = 20
57
- svc_BSPDecal = 21
58
- svc_SplitScreen = 22
59
- svc_UserMessage = 23
60
- svc_EntityMessage = 24
61
- svc_GameEvent = 25
62
- svc_PacketEntities = 26
63
- svc_TempEntities = 27
64
- svc_Prefetch = 28
65
- svc_Menu = 29
66
- svc_GameEventList = 30
67
- svc_GetCvarValue = 31
68
- svc_PaintmapData = 33
69
- svc_CmdKeyValues = 34
70
- svc_EncryptedData = 35
71
- svc_HltvReplay = 36
72
- svc_Broadcast_Command = 38
73
- end
74
-
75
- module ReplayEventType_t
76
- REPLAY_EVENT_CANCEL = 0
77
- REPLAY_EVENT_DEATH = 1
78
- REPLAY_EVENT_GENERIC = 2
79
- REPLAY_EVENT_STUCK_NEED_FULL_UPDATE = 3
80
- end
81
-
82
- class CMsgVector
83
- include Beefcake::Message
84
- end
85
-
86
- class CMsgVector2D
87
- include Beefcake::Message
88
- end
89
-
90
- class CMsgQAngle
91
- include Beefcake::Message
92
- end
93
-
94
- class CMsgRGBA
95
- include Beefcake::Message
96
- end
97
-
98
- class CNETMsg_Tick
99
- include Beefcake::Message
100
- end
101
-
102
- class CNETMsg_StringCmd
103
- include Beefcake::Message
104
- end
105
-
106
- class CNETMsg_SignonState
107
- include Beefcake::Message
108
- end
109
-
110
- class CMsg_CVars
111
- include Beefcake::Message
112
-
113
- class CVar
114
- include Beefcake::Message
115
- end
116
- end
117
-
118
- class CNETMsg_SetConVar
119
- include Beefcake::Message
120
- end
121
-
122
- class CNETMsg_NOP
123
- include Beefcake::Message
124
- end
125
-
126
- class CNETMsg_Disconnect
127
- include Beefcake::Message
128
- end
129
-
130
- class CNETMsg_File
131
- include Beefcake::Message
132
- end
133
-
134
- class CNETMsg_SplitScreenUser
135
- include Beefcake::Message
136
- end
137
-
138
- class CNETMsg_PlayerAvatarData
139
- include Beefcake::Message
140
- end
141
-
142
- class CCLCMsg_ClientInfo
143
- include Beefcake::Message
144
- end
145
-
146
- class CCLCMsg_Move
147
- include Beefcake::Message
148
- end
149
-
150
- class CCLCMsg_VoiceData
151
- include Beefcake::Message
152
- end
153
-
154
- class CCLCMsg_BaselineAck
155
- include Beefcake::Message
156
- end
157
-
158
- class CCLCMsg_ListenEvents
159
- include Beefcake::Message
160
- end
161
-
162
- class CCLCMsg_RespondCvarValue
163
- include Beefcake::Message
164
- end
165
-
166
- class CCLCMsg_FileCRCCheck
167
- include Beefcake::Message
168
- end
169
-
170
- class CCLCMsg_LoadingProgress
171
- include Beefcake::Message
172
- end
173
-
174
- class CCLCMsg_SplitPlayerConnect
175
- include Beefcake::Message
176
- end
177
-
178
- class CCLCMsg_CmdKeyValues
179
- include Beefcake::Message
180
- end
181
-
182
- class CSVCMsg_ServerInfo
183
- include Beefcake::Message
184
- end
185
-
186
- class CSVCMsg_ClassInfo
187
- include Beefcake::Message
188
-
189
- class Class_t
190
- include Beefcake::Message
191
- end
192
- end
193
-
194
- class CSVCMsg_SendTable
195
- include Beefcake::Message
196
-
197
- class Sendprop_t
198
- include Beefcake::Message
199
- end
200
- end
201
-
202
- class CSVCMsg_Print
203
- include Beefcake::Message
204
- end
205
-
206
- class CSVCMsg_SetPause
207
- include Beefcake::Message
208
- end
209
-
210
- class CSVCMsg_SetView
211
- include Beefcake::Message
212
- end
213
-
214
- class CSVCMsg_CreateStringTable
215
- include Beefcake::Message
216
- end
217
-
218
- class CSVCMsg_UpdateStringTable
219
- include Beefcake::Message
220
- end
221
-
222
- class CSVCMsg_VoiceInit
223
- include Beefcake::Message
224
- end
225
-
226
- class CSVCMsg_VoiceData
227
- include Beefcake::Message
228
- end
229
-
230
- class CSVCMsg_FixAngle
231
- include Beefcake::Message
232
- end
233
-
234
- class CSVCMsg_CrosshairAngle
235
- include Beefcake::Message
236
- end
237
-
238
- class CSVCMsg_Prefetch
239
- include Beefcake::Message
240
- end
241
-
242
- class CSVCMsg_BSPDecal
243
- include Beefcake::Message
244
- end
245
-
246
- class CSVCMsg_SplitScreen
247
- include Beefcake::Message
248
- end
249
-
250
- class CSVCMsg_GetCvarValue
251
- include Beefcake::Message
252
- end
253
-
254
- class CSVCMsg_Menu
255
- include Beefcake::Message
256
- end
257
-
258
- class CSVCMsg_UserMessage
259
- include Beefcake::Message
260
- end
261
-
262
- class CSVCMsg_PaintmapData
263
- include Beefcake::Message
264
- end
265
-
266
- class CSVCMsg_GameEvent
267
- include Beefcake::Message
268
-
269
- class Key_t
270
- include Beefcake::Message
271
- end
272
- end
273
-
274
- class CSVCMsg_GameEventList
275
- include Beefcake::Message
276
-
277
- class Key_t
278
- include Beefcake::Message
279
- end
280
-
281
- class Descriptor_t
282
- include Beefcake::Message
283
- end
284
- end
285
-
286
- class CSVCMsg_TempEntities
287
- include Beefcake::Message
288
- end
289
-
290
- class CSVCMsg_PacketEntities
291
- include Beefcake::Message
292
- end
293
-
294
- class CSVCMsg_Sounds
295
- include Beefcake::Message
296
-
297
- class Sounddata_t
298
- include Beefcake::Message
299
- end
300
- end
301
-
302
- class CSVCMsg_EntityMsg
303
- include Beefcake::Message
304
- end
305
-
306
- class CSVCMsg_CmdKeyValues
307
- include Beefcake::Message
308
- end
309
-
310
- class CSVCMsg_EncryptedData
311
- include Beefcake::Message
312
- end
313
-
314
- class CSVCMsg_HltvReplay
315
- include Beefcake::Message
316
- end
317
-
318
- class CCLCMsg_HltvReplay
319
- include Beefcake::Message
320
- end
321
-
322
- class CSVCMsg_Broadcast_Command
323
- include Beefcake::Message
324
- end
325
-
326
- class CMsgVector
327
- optional :x, :float, 1
328
- optional :y, :float, 2
329
- optional :z, :float, 3
330
- end
331
-
332
- class CMsgVector2D
333
- optional :x, :float, 1
334
- optional :y, :float, 2
335
- end
336
-
337
- class CMsgQAngle
338
- optional :x, :float, 1
339
- optional :y, :float, 2
340
- optional :z, :float, 3
341
- end
342
-
343
- class CMsgRGBA
344
- optional :r, :int32, 1
345
- optional :g, :int32, 2
346
- optional :b, :int32, 3
347
- optional :a, :int32, 4
348
- end
349
-
350
- class CNETMsg_Tick
351
- optional :tick, :uint32, 1
352
- optional :host_computationtime, :uint32, 4
353
- optional :host_computationtime_std_deviation, :uint32, 5
354
- optional :host_framestarttime_std_deviation, :uint32, 6
355
- optional :hltv_replay_flags, :uint32, 7
356
- end
357
-
358
- class CNETMsg_StringCmd
359
- optional :command, :string, 1
360
- end
361
-
362
- class CNETMsg_SignonState
363
- optional :signon_state, :uint32, 1
364
- optional :spawn_count, :uint32, 2
365
- optional :num_server_players, :uint32, 3
366
- repeated :players_networkids, :string, 4
367
- optional :map_name, :string, 5
368
- end
369
-
370
- class CMsg_CVars
371
-
372
- class CVar
373
- optional :name, :string, 1
374
- optional :value, :string, 2
375
- optional :dictionary_name, :uint32, 3
376
- end
377
- repeated :cvars, CMsg_CVars::CVar, 1
378
- end
379
-
380
- class CNETMsg_SetConVar
381
- optional :convars, CMsg_CVars, 1
382
- end
383
-
384
- class CNETMsg_NOP
385
- end
386
-
387
- class CNETMsg_Disconnect
388
- optional :text, :string, 1
389
- end
390
-
391
- class CNETMsg_File
392
- optional :transfer_id, :int32, 1
393
- optional :file_name, :string, 2
394
- optional :is_replay_demo_file, :bool, 3
395
- optional :deny, :bool, 4
396
- end
397
-
398
- class CNETMsg_SplitScreenUser
399
- optional :slot, :int32, 1
400
- end
401
-
402
- class CNETMsg_PlayerAvatarData
403
- optional :accountid, :uint32, 1
404
- optional :rgb, :bytes, 2
405
- end
406
-
407
- class CCLCMsg_ClientInfo
408
- optional :send_table_crc, :fixed32, 1
409
- optional :server_count, :uint32, 2
410
- optional :is_hltv, :bool, 3
411
- optional :is_replay, :bool, 4
412
- optional :friends_id, :uint32, 5
413
- optional :friends_name, :string, 6
414
- repeated :custom_files, :fixed32, 7
415
- end
416
-
417
- class CCLCMsg_Move
418
- optional :num_backup_commands, :uint32, 1
419
- optional :num_new_commands, :uint32, 2
420
- optional :data, :bytes, 3
421
- end
422
-
423
- class CCLCMsg_VoiceData
424
- optional :data, :bytes, 1
425
- optional :xuid, :fixed64, 2
426
- optional :format, VoiceDataFormat_t, 3, :default => VoiceDataFormat_t::VOICEDATA_FORMAT_ENGINE
427
- optional :sequence_bytes, :int32, 4
428
- optional :section_number, :uint32, 5
429
- optional :uncompressed_sample_offset, :uint32, 6
430
- end
431
-
432
- class CCLCMsg_BaselineAck
433
- optional :baseline_tick, :int32, 1
434
- optional :baseline_nr, :int32, 2
435
- end
436
-
437
- class CCLCMsg_ListenEvents
438
- repeated :event_mask, :fixed32, 1
439
- end
440
-
441
- class CCLCMsg_RespondCvarValue
442
- optional :cookie, :int32, 1
443
- optional :status_code, :int32, 2
444
- optional :name, :string, 3
445
- optional :value, :string, 4
446
- end
447
-
448
- class CCLCMsg_FileCRCCheck
449
- optional :code_path, :int32, 1
450
- optional :path, :string, 2
451
- optional :code_filename, :int32, 3
452
- optional :filename, :string, 4
453
- optional :file_fraction, :int32, 5
454
- optional :md5, :bytes, 6
455
- optional :crc, :uint32, 7
456
- optional :file_hash_type, :int32, 8
457
- optional :file_len, :int32, 9
458
- optional :pack_file_id, :int32, 10
459
- optional :pack_file_number, :int32, 11
460
- end
461
-
462
- class CCLCMsg_LoadingProgress
463
- optional :progress, :int32, 1
464
- end
465
-
466
- class CCLCMsg_SplitPlayerConnect
467
- optional :convars, CMsg_CVars, 1
468
- end
469
-
470
- class CCLCMsg_CmdKeyValues
471
- optional :keyvalues, :bytes, 1
472
- end
473
-
474
- class CSVCMsg_ServerInfo
475
- optional :protocol, :int32, 1
476
- optional :server_count, :int32, 2
477
- optional :is_dedicated, :bool, 3
478
- optional :is_official_valve_server, :bool, 4
479
- optional :is_hltv, :bool, 5
480
- optional :is_replay, :bool, 6
481
- optional :is_redirecting_to_proxy_relay, :bool, 21
482
- optional :c_os, :int32, 7
483
- optional :map_crc, :fixed32, 8
484
- optional :client_crc, :fixed32, 9
485
- optional :string_table_crc, :fixed32, 10
486
- optional :max_clients, :int32, 11
487
- optional :max_classes, :int32, 12
488
- optional :player_slot, :int32, 13
489
- optional :tick_interval, :float, 14
490
- optional :game_dir, :string, 15
491
- optional :map_name, :string, 16
492
- optional :map_group_name, :string, 17
493
- optional :sky_name, :string, 18
494
- optional :host_name, :string, 19
495
- optional :public_ip, :uint32, 20
496
- optional :ugc_map_id, :uint64, 22
497
- end
498
-
499
- class CSVCMsg_ClassInfo
500
-
501
- class Class_t
502
- optional :class_id, :int32, 1
503
- optional :data_table_name, :string, 2
504
- optional :class_name, :string, 3
505
- end
506
- optional :create_on_client, :bool, 1
507
- repeated :classes, CSVCMsg_ClassInfo::Class_t, 2
508
- end
509
-
510
- class CSVCMsg_SendTable
511
-
512
- class Sendprop_t
513
- optional :type, :int32, 1
514
- optional :var_name, :string, 2
515
- optional :flags, :int32, 3
516
- optional :priority, :int32, 4
517
- optional :dt_name, :string, 5
518
- optional :num_elements, :int32, 6
519
- optional :low_value, :float, 7
520
- optional :high_value, :float, 8
521
- optional :num_bits, :int32, 9
522
- end
523
- optional :is_end, :bool, 1
524
- optional :net_table_name, :string, 2
525
- optional :needs_decoder, :bool, 3
526
- repeated :props, CSVCMsg_SendTable::Sendprop_t, 4
527
- end
528
-
529
- class CSVCMsg_Print
530
- optional :text, :string, 1
531
- end
532
-
533
- class CSVCMsg_SetPause
534
- optional :paused, :bool, 1
535
- end
536
-
537
- class CSVCMsg_SetView
538
- optional :entity_index, :int32, 1
539
- end
540
-
541
- class CSVCMsg_CreateStringTable
542
- optional :name, :string, 1
543
- optional :max_entries, :int32, 2
544
- optional :num_entries, :int32, 3
545
- optional :user_data_fixed_size, :bool, 4
546
- optional :user_data_size, :int32, 5
547
- optional :user_data_size_bits, :int32, 6
548
- optional :flags, :int32, 7
549
- optional :string_data, :bytes, 8
550
- end
551
-
552
- class CSVCMsg_UpdateStringTable
553
- optional :table_id, :int32, 1
554
- optional :num_changed_entries, :int32, 2
555
- optional :string_data, :bytes, 3
556
- end
557
-
558
- class CSVCMsg_VoiceInit
559
- optional :quality, :int32, 1
560
- optional :codec, :string, 2
561
- optional :version, :int32, 3, :default => 0
562
- end
563
-
564
- class CSVCMsg_VoiceData
565
- optional :client, :int32, 1
566
- optional :proximity, :bool, 2
567
- optional :xuid, :fixed64, 3
568
- optional :audible_mask, :int32, 4
569
- optional :voice_data, :bytes, 5
570
- optional :caster, :bool, 6
571
- optional :format, VoiceDataFormat_t, 7, :default => VoiceDataFormat_t::VOICEDATA_FORMAT_ENGINE
572
- optional :sequence_bytes, :int32, 8
573
- optional :section_number, :uint32, 9
574
- optional :uncompressed_sample_offset, :uint32, 10
575
- end
576
-
577
- class CSVCMsg_FixAngle
578
- optional :relative, :bool, 1
579
- optional :angle, CMsgQAngle, 2
580
- end
581
-
582
- class CSVCMsg_CrosshairAngle
583
- optional :angle, CMsgQAngle, 1
584
- end
585
-
586
- class CSVCMsg_Prefetch
587
- optional :sound_index, :int32, 1
588
- end
589
-
590
- class CSVCMsg_BSPDecal
591
- optional :pos, CMsgVector, 1
592
- optional :decal_texture_index, :int32, 2
593
- optional :entity_index, :int32, 3
594
- optional :model_index, :int32, 4
595
- optional :low_priority, :bool, 5
596
- end
597
-
598
- class CSVCMsg_SplitScreen
599
- optional :type, ESplitScreenMessageType, 1, :default => ESplitScreenMessageType::MSG_SPLITSCREEN_ADDUSER
600
- optional :slot, :int32, 2
601
- optional :player_index, :int32, 3
602
- end
603
-
604
- class CSVCMsg_GetCvarValue
605
- optional :cookie, :int32, 1
606
- optional :cvar_name, :string, 2
607
- end
608
-
609
- class CSVCMsg_Menu
610
- optional :dialog_type, :int32, 1
611
- optional :menu_key_values, :bytes, 2
612
- end
613
-
614
- class CSVCMsg_UserMessage
615
- optional :msg_type, :int32, 1
616
- optional :msg_data, :bytes, 2
617
- optional :passthrough, :int32, 3
618
- end
619
-
620
- class CSVCMsg_PaintmapData
621
- optional :paintmap, :bytes, 1
622
- end
623
-
624
- class CSVCMsg_GameEvent
625
-
626
- class Key_t
627
- optional :type, :int32, 1
628
- optional :val_string, :string, 2
629
- optional :val_float, :float, 3
630
- optional :val_long, :int32, 4
631
- optional :val_short, :int32, 5
632
- optional :val_byte, :int32, 6
633
- optional :val_bool, :bool, 7
634
- optional :val_uint64, :uint64, 8
635
- optional :val_wstring, :bytes, 9
636
- end
637
- optional :event_name, :string, 1
638
- optional :eventid, :int32, 2
639
- repeated :keys, CSVCMsg_GameEvent::Key_t, 3
640
- optional :passthrough, :int32, 4
641
- end
642
-
643
- class CSVCMsg_GameEventList
644
-
645
- class Key_t
646
- optional :type, :int32, 1
647
- optional :name, :string, 2
648
- end
649
-
650
- class Descriptor_t
651
- optional :eventid, :int32, 1
652
- optional :name, :string, 2
653
- repeated :keys, CSVCMsg_GameEventList::Key_t, 3
654
- end
655
- repeated :descriptors, CSVCMsg_GameEventList::Descriptor_t, 1
656
- end
657
-
658
- class CSVCMsg_TempEntities
659
- optional :reliable, :bool, 1
660
- optional :num_entries, :int32, 2
661
- optional :entity_data, :bytes, 3
662
- end
663
-
664
- class CSVCMsg_PacketEntities
665
- optional :max_entries, :int32, 1
666
- optional :updated_entries, :int32, 2
667
- optional :is_delta, :bool, 3
668
- optional :update_baseline, :bool, 4
669
- optional :baseline, :int32, 5
670
- optional :delta_from, :int32, 6
671
- optional :entity_data, :bytes, 7
672
- end
673
-
674
- class CSVCMsg_Sounds
675
-
676
- class Sounddata_t
677
- optional :origin_x, :sint32, 1
678
- optional :origin_y, :sint32, 2
679
- optional :origin_z, :sint32, 3
680
- optional :volume, :uint32, 4
681
- optional :delay_value, :float, 5
682
- optional :sequence_number, :int32, 6
683
- optional :entity_index, :int32, 7
684
- optional :channel, :int32, 8
685
- optional :pitch, :int32, 9
686
- optional :flags, :int32, 10
687
- optional :sound_num, :uint32, 11
688
- optional :sound_num_handle, :fixed32, 12
689
- optional :speaker_entity, :int32, 13
690
- optional :random_seed, :int32, 14
691
- optional :sound_level, :int32, 15
692
- optional :is_sentence, :bool, 16
693
- optional :is_ambient, :bool, 17
694
- end
695
- optional :reliable_sound, :bool, 1
696
- repeated :sounds, CSVCMsg_Sounds::Sounddata_t, 2
697
- end
698
-
699
- class CSVCMsg_EntityMsg
700
- optional :ent_index, :int32, 1
701
- optional :class_id, :int32, 2
702
- optional :ent_data, :bytes, 3
703
- end
704
-
705
- class CSVCMsg_CmdKeyValues
706
- optional :keyvalues, :bytes, 1
707
- end
708
-
709
- class CSVCMsg_EncryptedData
710
- optional :encrypted, :bytes, 1
711
- optional :key_type, :int32, 2
712
- end
713
-
714
- class CSVCMsg_HltvReplay
715
- optional :delay, :int32, 1
716
- optional :primary_target, :int32, 2
717
- optional :replay_stop_at, :int32, 3
718
- optional :replay_start_at, :int32, 4
719
- optional :replay_slowdown_begin, :int32, 5
720
- optional :replay_slowdown_end, :int32, 6
721
- optional :replay_slowdown_rate, :float, 7
722
- end
723
-
724
- class CCLCMsg_HltvReplay
725
- optional :request, :int32, 1
726
- optional :slowdown_length, :float, 2
727
- optional :slowdown_rate, :float, 3
728
- optional :primary_target_ent_index, :int32, 4
729
- optional :event_time, :float, 5
730
- end
731
-
732
- class CSVCMsg_Broadcast_Command
733
- optional :cmd, :string, 1
734
- end