Compare commits
No commits in common. "0be9791abc742518f1e0fca9bb9429cc377f10cb" and "32e5898b0258fecb9737adc4f1b916301b37ad72" have entirely different histories.
0be9791abc
...
32e5898b02
@ -747,17 +747,6 @@ public class TransactionParser {
|
|||||||
{ Events.SupercruiseEntry, new SupercruiseEntryParser() },
|
{ Events.SupercruiseEntry, new SupercruiseEntryParser() },
|
||||||
};
|
};
|
||||||
|
|
||||||
public bool IsRelevant(string entry) {
|
|
||||||
return ParserParts.ContainsKey(entry);
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool IsRelevant(Entry e) {
|
|
||||||
if (e.Event == null) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return IsRelevant(e.Event);
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<Transaction>? Parse(IEnumerable<Entry> entries) {
|
public List<Transaction>? Parse(IEnumerable<Entry> entries) {
|
||||||
TransactionList transactions = new();
|
TransactionList transactions = new();
|
||||||
TransactionParserContext context = new();
|
TransactionParserContext context = new();
|
||||||
|
@ -6,7 +6,6 @@ using System.Windows;
|
|||||||
using Microsoft.Win32;
|
using Microsoft.Win32;
|
||||||
using EDPlayerJournal.Entries;
|
using EDPlayerJournal.Entries;
|
||||||
using EliteBGS.Util;
|
using EliteBGS.Util;
|
||||||
using EDPlayerJournal.BGS;
|
|
||||||
|
|
||||||
namespace EliteBGS;
|
namespace EliteBGS;
|
||||||
|
|
||||||
@ -86,8 +85,6 @@ public partial class LoadEntriesWindow : Window {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
TransactionParser parser = new();
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
List<Entry> entries = new List<Entry>();
|
List<Entry> entries = new List<Entry>();
|
||||||
|
|
||||||
@ -96,10 +93,8 @@ public partial class LoadEntriesWindow : Window {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Entry entry = Entry.Parse(line);
|
Entry entry = Entry.Parse(line);
|
||||||
if (parser.IsRelevant(entry)) {
|
|
||||||
entries.Add(entry);
|
entries.Add(entry);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (entries.Count <= 0) {
|
if (entries.Count <= 0) {
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user