2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
This commit is contained in:
Xjph 2022-02-22 08:26:34 -03:30
commit 2d65123d28
7 changed files with 99 additions and 17 deletions

View File

@ -30,7 +30,11 @@ namespace Observatory.Botanist
ObservableCollection<object> GridCollection; ObservableCollection<object> GridCollection;
private PluginUI pluginUI; private PluginUI pluginUI;
private bool readAllInProgress = false; private bool readAllInProgress = false;
private Guid? samplerStatusNotification = null;
private BotanistSettings botanistSettings = new()
{
OverlayEnabled = true,
};
public string Name => "Observatory Botanist"; public string Name => "Observatory Botanist";
public string ShortName => "Botanist"; public string ShortName => "Botanist";
@ -39,7 +43,7 @@ namespace Observatory.Botanist
public PluginUI PluginUI => pluginUI; public PluginUI PluginUI => pluginUI;
public object Settings { get => null; set { } } public object Settings { get => botanistSettings; set { botanistSettings = (BotanistSettings)value; } }
public void JournalEvent<TJournal>(TJournal journal) where TJournal : JournalBase public void JournalEvent<TJournal>(TJournal journal) where TJournal : JournalBase
{ {
@ -82,7 +86,7 @@ namespace Observatory.Botanist
var systemBodyId = (scanOrganic.SystemAddress, scanOrganic.Body); var systemBodyId = (scanOrganic.SystemAddress, scanOrganic.Body);
if (!BioPlanets.ContainsKey(systemBodyId)) if (!BioPlanets.ContainsKey(systemBodyId))
{ {
//Unlikely to ever end up in here, but just in case create a new planet entry. // Unlikely to ever end up in here, but just in case create a new planet entry.
List<string> genus = new(); List<string> genus = new();
List<string> species = new(); List<string> species = new();
genus.Add(scanOrganic.Genus_Localised); genus.Add(scanOrganic.Genus_Localised);
@ -98,6 +102,25 @@ namespace Observatory.Botanist
{ {
case ScanOrganicType.Log: case ScanOrganicType.Log:
case ScanOrganicType.Sample: case ScanOrganicType.Sample:
if (!readAllInProgress && botanistSettings.OverlayEnabled)
{
NotificationArgs args = new()
{
Title = scanOrganic.Species_Localised,
Detail = string.Format("Sample {0} of 3", scanOrganic.ScanType == ScanOrganicType.Log ? 1 : 2),
Rendering = NotificationRendering.NativeVisual,
Timeout = 0,
};
if (samplerStatusNotification == null)
{
samplerStatusNotification = Core.SendNotification(args);
}
else
{
Core.UpdateNotification(samplerStatusNotification.Value, args);
}
}
if (!bioPlanet.speciesFound.Contains(scanOrganic.Species_Localised)) if (!bioPlanet.speciesFound.Contains(scanOrganic.Species_Localised))
{ {
bioPlanet.speciesFound.Add(scanOrganic.Species_Localised); bioPlanet.speciesFound.Add(scanOrganic.Species_Localised);
@ -108,12 +131,30 @@ namespace Observatory.Botanist
{ {
bioPlanet.speciesAnalysed.Add(scanOrganic.Species_Localised); bioPlanet.speciesAnalysed.Add(scanOrganic.Species_Localised);
} }
MaybeCloseSamplerStatusNotification();
break; break;
} }
} }
UpdateUIGrid(); UpdateUIGrid();
} }
break; break;
case LeaveBody:
case FSDJump:
case Shutdown:
// These are all good reasons to kill any open notification. Note that SupercruiseEntry is NOT a
// suitable reason to close the notification as the player hopping out only to double check the
// DSS map for another location. Note that a game client crash will not close the status notification.
MaybeCloseSamplerStatusNotification();
break;
}
}
private void MaybeCloseSamplerStatusNotification()
{
if (samplerStatusNotification != null)
{
Core.CancelNotification(samplerStatusNotification.Value);
samplerStatusNotification = null;
} }
} }

View File

@ -0,0 +1,15 @@
using Observatory.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Observatory.Botanist
{
class BotanistSettings
{
[SettingDisplayName("Enable Sampler Status Overlay")]
public bool OverlayEnabled { get; set; }
}
}

View File

@ -111,6 +111,7 @@ namespace Observatory
// Read at most the last two files (in case we were launched after the game and the latest // 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. // journal is mostly empty) but keeping only the lines since the last FSDJump.
List<String> lastSystemLines = new(); List<String> lastSystemLines = new();
List<String> lastFileLines = new();
string lastLoadGame = String.Empty; string lastLoadGame = String.Empty;
bool sawFSDJump = false; bool sawFSDJump = false;
foreach (var file in files.Skip(Math.Max(files.Length - 2, 0))) foreach (var file in files.Skip(Math.Max(files.Length - 2, 0)))
@ -125,29 +126,38 @@ namespace Observatory
lastSystemLines.Clear(); lastSystemLines.Clear();
sawFSDJump = true; sawFSDJump = true;
} }
else if (eventType.Equals("Fileheader"))
{
lastFileLines.Clear();
}
else if (eventType.Equals("LoadGame")) else if (eventType.Equals("LoadGame"))
{ {
lastLoadGame = line; lastLoadGame = line;
} }
lastSystemLines.Add(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. // If we didn't see a jump in the recent logs (Cmdr is stationary in a system for a while
// Just bail on this attempt. // ie. deep-space mining from a carrier), at very least, read from the beginning of the
if (!sawFSDJump) return; // 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
// If we saw a LoadGame, insert it as well. This ensures odyssey biologicials are properly // session (if auto-start is not enabled).
// counted/presented. List<string> linesToRead = lastFileLines;
if (!String.IsNullOrEmpty(lastLoadGame)) 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; readall = true;
ReportErrors(ProcessLines(lastSystemLines, "Pre-read")); ReportErrors(ProcessLines(linesToRead, "Pre-read"));
readall = false; readall = false;
} }

View File

@ -250,7 +250,7 @@ namespace Observatory.PluginManagement
//Importing Observatory.Framework in the Explorer Lua scripts causes an attempt to reload //Importing Observatory.Framework in the Explorer Lua scripts causes an attempt to reload
//the assembly, just hand it back the one we already have. //the assembly, just hand it back the one we already have.
if (name.Name.StartsWith("Observatory.Framework")) if (name.Name.StartsWith("Observatory.Framework") || name.Name == "ObservatoryFramework")
{ {
return context.Assemblies.Where(a => a.FullName.Contains("ObservatoryFramework")).First(); return context.Assemblies.Where(a => a.FullName.Contains("ObservatoryFramework")).First();
} }

View File

@ -1,4 +1,5 @@
using System.Collections.Immutable; using Observatory.Framework.Files.ParameterTypes;
using System.Collections.Immutable;
namespace Observatory.Framework.Files.Journal namespace Observatory.Framework.Files.Journal
{ {
@ -6,6 +7,6 @@ namespace Observatory.Framework.Files.Journal
{ {
public string Vessel { get; init; } public string Vessel { get; init; }
public int Count { get; init; } public int Count { get; init; }
public ImmutableList<Cargo> Inventory { get; init; } public ImmutableList<CargoType> Inventory { get; init; }
} }
} }

8
buildAllComponents Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
dotnet build ./ObservatoryFramework/ObservatoryFramework.csproj "$@"
dotnet build ./ObservatoryExplorer/ObservatoryExplorer.csproj "$@"
dotnet build ./ObservatoryBotanist/ObservatoryBotanist.csproj "$@"
if [ -f ../NetCoreAudio/NetCoreAudio/NetCoreAudio.csproj ]; then
dotnet build ../NetCoreAudio/NetCoreAudio/NetCoreAudio.csproj -c Release
dotnet build ./ObservatoryHerald/ObservatoryHerald.csproj "$@"
fi

7
buildAllComponents.cmd Normal file
View File

@ -0,0 +1,7 @@
dotnet build ./ObservatoryFramework/ObservatoryFramework.csproj %*
dotnet build ./ObservatoryExplorer/ObservatoryExplorer.csproj %*
dotnet build ./ObservatoryBotanist/ObservatoryBotanist.csproj %*
IF EXIST ..\NetCoreAudio\NetCoreAudio\NetCoreAudio.csproj (
dotnet build ../NetCoreAudio/NetCoreAudio/NetCoreAudio.csproj -c Release
dotnet build ./ObservatoryHerald/ObservatoryHerald.csproj %*
)