From 6dcec0404b6629a76179dab6a7a9f90558e06f27 Mon Sep 17 00:00:00 2001 From: F K <54195004+fredjk-gh@users.noreply.github.com> Date: Sat, 5 Feb 2022 15:53:15 -0500 Subject: [PATCH] Show notification with genetic sampling status while in progress (#53) When first sample is taken, the notification is displayed showing what was sampled and number of samples taken. Number of samples taken is updated on the second sample. Notification is removed when the final sample is taken. --- ObservatoryCore/LogMonitor.cs | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/ObservatoryCore/LogMonitor.cs b/ObservatoryCore/LogMonitor.cs index bcfc6d0..b712519 100644 --- a/ObservatoryCore/LogMonitor.cs +++ b/ObservatoryCore/LogMonitor.cs @@ -111,6 +111,7 @@ namespace Observatory // Read at most the last two files (in case we were launched after the game and the latest // journal is mostly empty) but keeping only the lines since the last FSDJump. List lastSystemLines = new(); + List lastFileLines = new(); string lastLoadGame = String.Empty; bool sawFSDJump = false; foreach (var file in files.Skip(Math.Max(files.Length - 2, 0))) @@ -125,29 +126,38 @@ namespace Observatory lastSystemLines.Clear(); sawFSDJump = true; } + else if (eventType.Equals("Fileheader")) + { + lastFileLines.Clear(); + } else if (eventType.Equals("LoadGame")) { lastLoadGame = line; } lastSystemLines.Add(line); + lastFileLines.Add(line); } } - // So we didn't see a jump in the recent logs. We could be re-logging, or something. - // Just bail on this attempt. - if (!sawFSDJump) return; - - // If we saw a LoadGame, insert it as well. This ensures odyssey biologicials are properly - // counted/presented. - if (!String.IsNullOrEmpty(lastLoadGame)) + // If we didn't see a jump in the recent logs (Cmdr is stationary in a system for a while + // ie. deep-space mining from a carrier), at very least, read from the beginning of the + // current journal file which includes the important stuff like the last "LoadGame", etc. This + // also helps out in cases where one forgets to hit "Start Monitor" until part-way into the + // session (if auto-start is not enabled). + List linesToRead = lastFileLines; + if (sawFSDJump) { - lastSystemLines.Insert(0, lastLoadGame); + // If we saw a LoadGame, insert it as well. This ensures odyssey biologicials are properly + // counted/presented. + if (!String.IsNullOrEmpty(lastLoadGame)) + { + lastSystemLines.Insert(0, lastLoadGame); + } + linesToRead = lastSystemLines; } - // We found an FSD jump, buffered the lines for that system (possibly including startup logs - // over a file boundary). Pump these through the plugins. readall = true; - ReportErrors(ProcessLines(lastSystemLines, "Pre-read")); + ReportErrors(ProcessLines(linesToRead, "Pre-read")); readall = false; }