-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathEVTCParser.cs
982 lines (815 loc) · 26.2 KB
/
EVTCParser.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
using GW2Scratch.EVTCAnalytics.Exceptions;
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Text;
using GW2Scratch.EVTCAnalytics.IO;
using GW2Scratch.EVTCAnalytics.Model;
using GW2Scratch.EVTCAnalytics.Model.Agents;
using GW2Scratch.EVTCAnalytics.Model.Skills;
using GW2Scratch.EVTCAnalytics.Parsed;
using GW2Scratch.EVTCAnalytics.Parsed.Enums;
using GW2Scratch.EVTCAnalytics.Parsing;
using GW2Scratch.EVTCAnalytics.Processing;
using System.Buffers.Binary;
using System.Runtime.CompilerServices;
namespace GW2Scratch.EVTCAnalytics
{
/// <summary>
/// Reads raw data from an EVTC log and builds a <see cref="ParsedLog"/> with the raw data.
/// </summary>
public class EVTCParser
{
public FilteringOptions SinglePassFilteringOptions { get; } = new FilteringOptions();
private CombatItemFilterCache CombatItemFilterCache { get; }
public EVTCParser()
{
CombatItemFilterCache = new CombatItemFilterCache();
SinglePassFilteringOptions.PropertyChanged += (_, _) => CombatItemFilterCache.Clear();
}
internal class AgentReader
{
public bool Exhausted { get; private set; }
private readonly ByteArrayBinaryReader reader;
private readonly int agentCount;
private int position;
public AgentReader(ByteArrayBinaryReader reader, int agentCount)
{
this.reader = reader;
this.agentCount = agentCount;
this.position = 0;
}
public bool GetNext(out ParsedAgent agent)
{
if (position < agentCount)
{
ParseAgent(reader, out agent);
position += 1;
return true;
}
agent = default;
Exhausted = true;
return false;
}
}
internal class SkillReader
{
public bool Exhausted { get; private set; }
private readonly ByteArrayBinaryReader reader;
private readonly int skillCount;
private int position;
public SkillReader(ByteArrayBinaryReader reader, int skillCount)
{
this.reader = reader;
this.skillCount = skillCount;
this.position = 0;
}
public bool GetNext(out ParsedSkill skill)
{
if (position < skillCount)
{
ParseSkill(reader, out skill);
position += 1;
return true;
}
skill = default;
Exhausted = true;
return false;
}
}
internal interface ICombatItemReader
{
public bool GetNext(out ParsedCombatItem combatItem);
public bool Exhausted { get; }
}
private class CombatItemReaderRevision0 : ICombatItemReader
{
public bool Exhausted { get; private set; }
private readonly ByteArrayBinaryReader reader;
public CombatItemReaderRevision0(ByteArrayBinaryReader reader)
{
this.reader = reader;
}
public bool GetNext(out ParsedCombatItem combatItem)
{
if (reader.Length - reader.Position >= 64)
{
ReadCombatItemRevision0(reader, out combatItem);
return true;
}
combatItem = default;
Exhausted = true;
return false;
}
}
private class CombatItemReaderRevision1 : ICombatItemReader
{
public bool Exhausted { get; private set; }
private readonly ByteArrayBinaryReader reader;
public CombatItemReaderRevision1(ByteArrayBinaryReader reader)
{
this.reader = reader;
}
public bool GetNext(out ParsedCombatItem combatItem)
{
if (reader.Length - reader.Position >= 64)
{
// 64 bytes: combat item
ReadCombatItemRevision1(reader, out combatItem);
return true;
}
combatItem = default;
Exhausted = true;
return false;
}
}
private class FilteredCombatItemReaderRevision0 : ICombatItemReader
{
public bool Exhausted { get; private set; }
private readonly ByteArrayBinaryReader reader;
private readonly ICombatItemFilters filters;
public FilteredCombatItemReaderRevision0(ByteArrayBinaryReader reader, ICombatItemFilters filters)
{
this.reader = reader;
this.filters = filters;
}
public bool GetNext(out ParsedCombatItem combatItem)
{
while (reader.Length - reader.Position >= 64)
{
var stateChange = reader.PeekByte(59);
if (!filters.IsStateChangeRequired(stateChange))
{
reader.Skip(64);
continue;
}
var buff = reader.PeekByte(52);
var isActivation = reader.PeekByte(54);
var buffRemove = reader.PeekByte(55);
var buffDmg = reader.PeekRange(28, 4);
if (stateChange == 0 && isActivation != (byte) Activation.None)
{
if (!filters.IsSkillCastRequired())
{
reader.Skip(64);
continue;
}
}
if (stateChange == 0 && isActivation == (byte) Activation.None && buff != 0)
{
if (buffRemove != (byte) BuffRemove.None || (buffDmg[0] == 0 && buffDmg[1] == 0 && buffDmg[2] == 0 && buffDmg[3] == 0))
{
// This is buff remove or a buff apply
var skillId = BinaryPrimitives.ReadUInt16LittleEndian(reader.PeekRange(34, 2));
if (!filters.IsBuffEventRequired(skillId))
{
reader.Skip(64);
continue;
}
}
else // buffRemove == None && buffDmg != 0 are implied by previous condition
{
// This is buff damage
if (!filters.IsBuffDamageRequired())
{
reader.Skip(64);
continue;
}
}
}
if (stateChange == 0 && isActivation == (byte) Activation.None && buff == 0)
{
var result = reader.PeekByte(53);
if (!filters.IsPhysicalDamageResultRequired(result))
{
reader.Skip(64);
continue;
}
}
ReadCombatItemRevision0(reader, out combatItem);
return true;
}
combatItem = default;
Exhausted = true;
return false;
}
}
private class FilteredCombatItemReaderRevision1 : ICombatItemReader
{
public bool Exhausted { get; private set; }
private readonly ByteArrayBinaryReader reader;
private readonly ICombatItemFilters filters;
public FilteredCombatItemReaderRevision1(ByteArrayBinaryReader reader, ICombatItemFilters filters)
{
this.reader = reader;
this.filters = filters;
}
public bool GetNext(out ParsedCombatItem combatItem)
{
while (reader.Length - reader.Position >= 64)
{
var stateChange = reader.PeekByte(56);
if (!filters.IsStateChangeRequired(stateChange))
{
reader.Skip(64);
continue;
}
var buff = reader.PeekByte(49);
var isActivation = reader.PeekByte(51);
var buffRemove = reader.PeekByte(52);
var buffDmg = reader.PeekRange(28, 4);
if (stateChange == 0 && isActivation != (byte) Activation.None)
{
if (!filters.IsSkillCastRequired())
{
reader.Skip(64);
continue;
}
}
if (stateChange == 0 && isActivation == (byte) Activation.None && buff != 0)
{
if (buffRemove != (byte) BuffRemove.None || (buffDmg[0] == 0 && buffDmg[1] == 0 && buffDmg[2] == 0 && buffDmg[3] == 0))
{
// This is buff remove or a buff apply
var skillId = BinaryPrimitives.ReadUInt16LittleEndian(reader.PeekRange(36, 2));
if (!filters.IsBuffEventRequired(skillId))
{
reader.Skip(64);
continue;
}
}
else // buffRemove == None && buffDmg != 0 are implied by previous condition
{
// This is buff damage
if (!filters.IsBuffDamageRequired())
{
reader.Skip(64);
continue;
}
}
}
if (stateChange == 0 && isActivation == (byte) Activation.None && buff == 0)
{
var result = reader.PeekByte(50);
if (!filters.IsPhysicalDamageResultRequired(result))
{
reader.Skip(64);
continue;
}
}
// 64 bytes: combat item
ReadCombatItemRevision1(reader, out combatItem);
return true;
}
combatItem = default;
Exhausted = true;
return false;
}
}
/// <summary>
/// Allows reading the EVTC file in a single pass effectively.
/// The methods have to be called in the correct order (see remarks).
/// </summary>
/// <remarks>
/// The correct order of calling methods is as follows:
/// <list type="number">
/// <item><see cref="ReadLogVersion" /></item>
/// <item><see cref="ReadBossData" /></item>
/// <item><see cref="GetAgentReader" /></item>
/// <item><see cref="GetSkillReader" /></item>
/// <item><see cref="GetCombatItemReader" /></item>
/// </list>
/// <para>
/// Note that all readers have to be fully exhausted before calling the next method.
/// </para>
/// </remarks>
internal class SinglePassEVTCReader
{
enum ReaderPosition
{
BeforeVersion,
BeforeBossData,
BeforeAgents,
InAgents,
InSkills,
InCombatItems,
}
private readonly EVTCParser parser;
private readonly ByteArrayBinaryReader reader;
private readonly FilteringOptions filteringOptions;
private readonly CombatItemFilterCache combatItemFilterCache;
private ReaderPosition position;
private AgentReader agentReader;
private SkillReader skillReader;
private ICombatItemReader combatItemReader;
private int revision;
public SinglePassEVTCReader(EVTCParser parser, ByteArrayBinaryReader reader, FilteringOptions filteringOptions, CombatItemFilterCache combatItemFilterCache)
{
if (reader.Position != 0)
{
throw new InvalidOperationException("The reader must be at the very start.");
}
this.parser = parser;
this.reader = reader;
this.filteringOptions = filteringOptions;
this.combatItemFilterCache = combatItemFilterCache;
position = ReaderPosition.BeforeVersion;
}
public LogVersion ReadLogVersion()
{
if (position != ReaderPosition.BeforeVersion)
{
throw new InvalidOperationException("ReadLogVersion must be called when the reader is positioned before the log version.");
}
var version = parser.ParseLogVersion(reader);
position = ReaderPosition.BeforeBossData;
revision = version.Revision;
return version;
}
public ParsedBossData ReadBossData()
{
if (position != ReaderPosition.BeforeBossData)
{
throw new InvalidOperationException("ReadBossData must be called when the reader is positioned just before the boss data.");
}
var bossData = parser.ParseBossData(reader);
position = ReaderPosition.BeforeAgents;
return bossData;
}
public AgentReader GetAgentReader()
{
if (position != ReaderPosition.BeforeAgents)
{
throw new InvalidOperationException("GetAgentReader must be called when the reader is positioned just before the agent data.");
}
if (agentReader != null)
{
throw new InvalidOperationException("GetAgentReader must only be called once.");
}
int agentCount = reader.ReadInt32();
position = ReaderPosition.InAgents;
agentReader = new AgentReader(reader, agentCount);
return agentReader;
}
public SkillReader GetSkillReader()
{
if (position != ReaderPosition.InAgents)
{
throw new InvalidOperationException("GetSkillReader must be called directly after reading agent data.");
}
if (skillReader != null)
{
throw new InvalidOperationException("GetSkillReader must only be called once.");
}
if (!agentReader.Exhausted)
{
throw new InvalidOperationException("The agent reader obtained previously must be exhausted fully.");
}
int skillCount = reader.ReadInt32();
position = ReaderPosition.InSkills;
skillReader = new SkillReader(reader, skillCount);
return skillReader;
}
/// <summary>
/// Returns a combat item reader without any filtering support.
/// </summary>
public ICombatItemReader GetCombatItemReader()
{
if (position != ReaderPosition.InSkills)
{
throw new InvalidOperationException("GetCombatItemReader must be called directly after reading skill data.");
}
if (combatItemReader != null)
{
throw new InvalidOperationException("GetCombatItemReader must only be called once.");
}
if (!skillReader.Exhausted)
{
throw new InvalidOperationException("The skill reader obtained previously must be exhausted fully.");
}
position = ReaderPosition.InCombatItems;
combatItemReader = revision switch
{
0 => new CombatItemReaderRevision0(reader),
1 => new CombatItemReaderRevision1(reader),
_ => throw new NotSupportedException("Only EVTC revisions 0 and 1 are supported.")
};
return combatItemReader;
}
public ICombatItemReader GetCombatItemReader(
ParsedBossData parsedBossData,
Agent mainTarget,
IReadOnlyList<Agent> agents,
int? gameBuild,
LogType logType,
IEncounterIdentifier encounterIdentifier,
IEncounterDataProvider encounterDataProvider)
{
if (position != ReaderPosition.InSkills)
{
throw new InvalidOperationException("GetCombatItemReader must be called directly after reading skill data.");
}
if (combatItemReader != null)
{
throw new InvalidOperationException("GetCombatItemReader must only be called once.");
}
if (!skillReader.Exhausted)
{
throw new InvalidOperationException("The skill reader obtained previously must be exhausted fully.");
}
if (!combatItemFilterCache.TryGetFilters(parsedBossData, out ICombatItemFilters filters))
{
var encounters = encounterIdentifier.IdentifyPotentialEncounters(parsedBossData);
filters = filteringOptions.CreateFilters(encounters.Select(encounter => encounterDataProvider.GetEncounterData(encounter, mainTarget, agents, gameBuild, logType)).ToList());
combatItemFilterCache.CacheFilters(parsedBossData, filters);
}
position = ReaderPosition.InCombatItems;
combatItemReader = revision switch
{
0 => new FilteredCombatItemReaderRevision0(reader, filters),
1 => new FilteredCombatItemReaderRevision1(reader, filters),
_ => throw new NotSupportedException("Only EVTC revisions 0 and 1 are supported.")
};
return combatItemReader;
}
}
/// <summary>
/// Reads raw data from an EVTC log file.
/// </summary>
/// <param name="evtcFilename">The filename of the log.</param>
/// <exception cref="NotSupportedException">Thrown for unsupported log revisions.</exception>
/// <exception cref="LogParsingException">Thrown when parsing fails due to a malformed log or if an empty ZIP archive is supplied.</exception>
/// <remarks>
/// <para>
/// Note that the extension is used to identify whether this is a zipped EVTC log.
/// If the filename ends with .zip or .zevtc, it is opened as a zip file.
/// </para>
/// <para>
/// If you do not need access to the <see cref="ParsedLog"/>,
/// using the <see cref="LogProcessor.ProcessLog(string, EVTCParser)" /> method is more efficient.
/// </para>
/// </remarks>
/// <returns>The raw data from the log.</returns>
/// <seealso cref="LogProcessor.ProcessLog(string, EVTCParser)" />
public ParsedLog ParseLog(string evtcFilename)
{
if (evtcFilename.EndsWith(".zip", StringComparison.OrdinalIgnoreCase) ||
evtcFilename.EndsWith(".zevtc", StringComparison.OrdinalIgnoreCase))
{
using var fileStream = new FileStream(evtcFilename, FileMode.Open, FileAccess.Read, FileShare.Read);
using var arch = new ZipArchive(fileStream, ZipArchiveMode.Read);
if (arch.Entries.Count == 0)
{
throw new LogParsingException("No EVTC file in ZIP archive.");
}
using var data = arch.Entries[0].Open();
var bytes = new byte[arch.Entries[0].Length];
int read;
int offset = 0;
while ((read = data.Read(bytes, offset, bytes.Length - offset)) > 0)
{
offset += read;
}
return ParseLog(bytes);
}
var fileBytes = File.ReadAllBytes(evtcFilename);
return ParseLog(fileBytes);
}
/// <summary>
/// Reads raw data from the bytes of an EVTC log.
/// </summary>
/// <remarks>
/// <para>
/// If you do not need access to the <see cref="ParsedLog"/>,
/// using the <see cref="LogProcessor.ProcessLog(byte[], EVTCParser)" /> method is more efficient.
/// </para>
/// </remarks>
/// <param name="bytes">The contents of an uncompressed EVTC log, as bytes.</param>
/// <exception cref="LogParsingException">Thrown when parsing fails due to a malformed log.</exception>
/// <returns>The raw data from the log.</returns>
/// <seealso cref="LogProcessor.ProcessLog(byte[], EVTCParser)" />
public ParsedLog ParseLog(byte[] bytes)
{
var reader = new ByteArrayBinaryReader(bytes, Encoding.UTF8);
LogVersion logVersion;
ParsedBossData bossData;
List<ParsedAgent> agents;
List<ParsedSkill> skills;
List<ParsedCombatItem> combatItems;
try
{
logVersion = ParseLogVersion(reader);
}
catch (Exception e)
{
throw new LogParsingException("Failed to parse log metadata.", e);
}
try
{
bossData = ParseBossData(reader);
}
catch (Exception e)
{
throw new LogParsingException("Failed to parse boss data.", e);
}
try
{
agents = ParseAgents(reader).ToList();
}
catch (Exception e)
{
throw new LogParsingException("Failed to parse agents.", e);
}
try
{
skills = ParseSkills(reader).ToList();
}
catch (Exception e)
{
throw new LogParsingException("Failed to parse skills.", e);
}
try
{
combatItems = ParseCombatItems(logVersion.Revision, reader).ToList();
}
catch (Exception e)
{
throw new LogParsingException("Failed to parse combat items.", e);
}
return new ParsedLog(logVersion, bossData, agents, skills, combatItems);
}
internal SinglePassEVTCReader GetSinglePassReader(string evtcFilename)
{
if (evtcFilename.EndsWith(".zip", StringComparison.OrdinalIgnoreCase) ||
evtcFilename.EndsWith(".zevtc", StringComparison.OrdinalIgnoreCase))
{
using var fileStream = new FileStream(evtcFilename, FileMode.Open, FileAccess.Read, FileShare.Read, bufferSize: 65536);
using var arch = new ZipArchive(fileStream, ZipArchiveMode.Read);
if (arch.Entries.Count == 0)
{
throw new LogParsingException("No EVTC file in ZIP archive.");
}
using var data = arch.Entries[0].Open();
var bytes = new byte[arch.Entries[0].Length];
int read;
int offset = 0;
while ((read = data.Read(bytes, offset, bytes.Length - offset)) > 0)
{
offset += read;
}
return GetSinglePassReader(bytes);
}
var fileBytes = File.ReadAllBytes(evtcFilename);
return GetSinglePassReader(fileBytes);
}
internal SinglePassEVTCReader GetSinglePassReader(byte[] bytes)
{
return new SinglePassEVTCReader(this, new ByteArrayBinaryReader(bytes, Encoding.UTF8), SinglePassFilteringOptions, CombatItemFilterCache);
}
/// <summary>
/// Parses log metadata.
/// </summary>
private LogVersion ParseLogVersion(ByteArrayBinaryReader reader)
{
// 12 bytes: arc build version
string buildVersion = reader.ReadString(12);
// 1 byte: revision
byte revision = reader.ReadByte();
return new LogVersion(buildVersion, revision);
}
/// <summary>
/// Parses boss related data.
/// </summary>
private ParsedBossData ParseBossData(ByteArrayBinaryReader reader)
{
// 2 bytes: boss species ID
ushort id = reader.ReadUInt16();
// 1 byte: unused
reader.Skip(1);
return new ParsedBossData(id);
}
/// <summary>
/// Parses a single agent from the reader.
/// </summary>
/// <remarks>
/// Consumes 96 bytes from the reader.
/// </remarks>
private static void ParseAgent(ByteArrayBinaryReader reader, out ParsedAgent agent)
{
// 8 bytes: agent address
ulong address = reader.ReadUInt64();
// 4 bytes: profession
uint prof = reader.ReadUInt32();
// 4 bytes: is_elite
uint isElite = reader.ReadUInt32();
// 2 bytes: toughness
short toughness = reader.ReadInt16();
// 2 bytes: concentration
short concentration = reader.ReadInt16();
// 2 bytes: healing
short healing = reader.ReadInt16();
// 2 bytes: hb_width
short hitboxWidth = reader.ReadInt16();
// 2 bytes: condition
short condition = reader.ReadInt16();
// 2 bytes: hb_height
short hitboxHeight = reader.ReadInt16();
// 68 bytes: name
string name = reader.ReadString(68);
agent = new ParsedAgent(address, name, prof, isElite, toughness, concentration,
healing, condition, hitboxWidth, hitboxHeight);
}
/// <summary>
/// Parses agent related data.
/// </summary>
private IEnumerable<ParsedAgent> ParseAgents(ByteArrayBinaryReader reader)
{
// 4 bytes: agent count
int agentCount = reader.ReadInt32();
var agentReader = new AgentReader(reader, agentCount);
ParsedAgent agent;
while (agentReader.GetNext(out agent))
{
yield return agent;
}
}
/// <summary>
/// Parses skill related data.
/// </summary>
private IEnumerable<ParsedSkill> ParseSkills(ByteArrayBinaryReader reader)
{
// 4 bytes: skill count
int skillCount = reader.ReadInt32();
// 68 bytes: each skill
var skillReader = new SkillReader(reader, skillCount);
ParsedSkill skill;
while (skillReader.GetNext(out skill))
{
yield return skill;
}
}
/// <summary>
/// Parses a single skill.
/// </summary>
private static void ParseSkill(ByteArrayBinaryReader reader, out ParsedSkill skill)
{
// 4 bytes: skill ID
int skillId = reader.ReadInt32();
// 64 bytes: name
var name = reader.ReadString(64);
skill = new ParsedSkill(skillId, name);
}
/// <summary>
/// Parses combat related data.
/// </summary>
private IEnumerable<ParsedCombatItem> ParseCombatItems(int revision, ByteArrayBinaryReader reader)
{
ICombatItemReader combatItemReader = revision switch
{
0 => new CombatItemReaderRevision0(reader),
1 => new CombatItemReaderRevision1(reader),
_ => throw new NotSupportedException("Only EVTC revisions 0 and 1 are supported.")
};
ParsedCombatItem combatItem;
while (combatItemReader.GetNext(out combatItem))
{
yield return combatItem;
}
}
private static void ReadCombatItemRevision0(ByteArrayBinaryReader reader, out ParsedCombatItem item)
{
// See ReadCombatItemRevision1 for notes about performance and why it's done this way.
// Padding and DstMasterId are both left as 0, as they are not included in revision 0 logs.
item = default;
// 8 bytes: time
item.Time = reader.ReadInt64();
// 8 bytes: src_agent
item.SrcAgent = reader.ReadUInt64();
// 8 bytes: dst_agent
item.DstAgent = reader.ReadUInt64();
// 4 bytes: value
item.Value = reader.ReadInt32();
// 4 bytes: buff_dmg
item.BuffDmg = reader.ReadInt32();
// 2 bytes: overstack_value
item.OverstackValue = reader.ReadUInt16();
// 2 bytes: skill_id
item.SkillId = reader.ReadUInt16();
// 2 bytes: src_instid
item.SrcAgentId = reader.ReadUInt16();
// 2 bytes: dst_instid
item.DstAgentId = reader.ReadUInt16();
// 2 bytes: src_master_instid
item.SrcMasterId = reader.ReadUInt16();
// 9 bytes: garbage
reader.Skip(9);
// 1 byte: iff
item.Iff = GetFriendOrFoeFromByte(reader.ReadByte());
// 1 byte: buff
item.Buff = reader.ReadByte();
// 1 byte: result
item.Result = GetResultFromByte(reader.ReadByte());
// 1 byte: is_activation
item.IsActivation = GetActivationFromByte(reader.ReadByte());
// 1 byte: is_buffremove
item.IsBuffRemove = GetBuffRemoveFromByte(reader.ReadByte());
// 1 byte: is_ninety
item.IsNinety = reader.ReadByte();
// 1 byte: is_fifty
item.IsFifty = reader.ReadByte();
// 1 byte: is_moving
item.IsMoving = reader.ReadByte();
// 1 byte: is_statechange
item.IsStateChange = GetStateChangeFromByte(reader.ReadByte());
// 1 byte: is_flanking
item.IsFlanking = reader.ReadByte();
// 1 byte: is_shields
item.IsShields = reader.ReadByte();
// 1 byte: is_offcycle
item.IsOffCycle = reader.ReadByte();
// 1 byte: garbage
reader.Skip(1);
}
private static void ReadCombatItemRevision1(ByteArrayBinaryReader reader, out ParsedCombatItem item)
{
// This performs better than calling the constructor at the end to set the item (measured with .NET 6).
// Marshalling here doesn't seem to be worth it (it's slightly slower)
item = default;
// 8 bytes: time
item.Time = reader.ReadInt64();
// 8 bytes: src_agent
item.SrcAgent = reader.ReadUInt64();
// 8 bytes: dst_agent
item.DstAgent = reader.ReadUInt64();
// 4 bytes: value
item.Value = reader.ReadInt32();
// 4 bytes: buff_dmg
item.BuffDmg = reader.ReadInt32();
// 4 bytes: overstack_value
item.OverstackValue = reader.ReadUInt32();
// 4 bytes: skill_id
item.SkillId = reader.ReadUInt32();
// 2 bytes: src_instid
item.SrcAgentId = reader.ReadUInt16();
// 2 bytes: dst_instid
item.DstAgentId = reader.ReadUInt16();
// 2 bytes: src_master_instid
item.SrcMasterId = reader.ReadUInt16();
// 2 bytes: dst_master_instid
item.DstMasterId = reader.ReadUInt16();
// 1 byte: iff
item.Iff = GetFriendOrFoeFromByte(reader.ReadByte());
// 1 byte: buff
item.Buff = reader.ReadByte();
// 1 byte: result
item.Result = GetResultFromByte(reader.ReadByte());
// 1 byte: is_activation
item.IsActivation = GetActivationFromByte(reader.ReadByte());
// 1 byte: is_buffremove
item.IsBuffRemove = GetBuffRemoveFromByte(reader.ReadByte());
// 1 byte: is_ninety
item.IsNinety = reader.ReadByte();
// 1 byte: is_fifty
item.IsFifty = reader.ReadByte();
// 1 byte: is_moving
item.IsMoving = reader.ReadByte();
// 1 byte: is_statechange
item.IsStateChange = GetStateChangeFromByte(reader.ReadByte());
// 1 byte: is_flanking
item.IsFlanking = reader.ReadByte();
// 1 byte: is_shields
item.IsShields = reader.ReadByte();
// 1 byte: is_offcycle
item.IsOffCycle = reader.ReadByte();
// 4 bytes: "padding"
item.Padding = reader.ReadUInt32();
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private static FriendOrFoe GetFriendOrFoeFromByte(byte b)
{
return (FriendOrFoe) b;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private static Result GetResultFromByte(byte b)
{
return (Result) b;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private static BuffRemove GetBuffRemoveFromByte(byte b)
{
return (BuffRemove) b;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private static Activation GetActivationFromByte(byte b)
{
return (Activation) b;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private static StateChange GetStateChangeFromByte(byte b)
{
return (StateChange) b;
}
}
}