2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

Handle barycentres without ordinals

This commit is contained in:
Xjph 2022-06-26 13:27:21 -02:30
parent 48284c574d
commit ef31102d11

View File

@ -72,27 +72,42 @@ namespace Observatory.Explorer
string childAffix = childScan.BodyName string childAffix = childScan.BodyName
.Replace(childScan.StarSystem, string.Empty); .Replace(childScan.StarSystem, string.Empty);
char childOrdinal = childAffix.ToCharArray().Last(); string baryName;
bool lowChild = childScan.BodyID - barycentre.BodyID == 1; if (!string.IsNullOrEmpty(childAffix))
string baryAffix;
if (lowChild)
{ {
baryAffix = new string(new char[] { childOrdinal, (char)(childOrdinal + 1) }); char childOrdinal = childAffix.ToCharArray().Last();
// If the ID is one higher than the barycentre than this is the "first" child body
bool lowChild = childScan.BodyID - barycentre.BodyID == 1;
string baryAffix;
// Barycentre ordinal always labelled as low before high, e.g. "AB"
if (lowChild)
{
baryAffix = new string(new char[] { childOrdinal, (char)(childOrdinal + 1) });
}
else
{
baryAffix = new string(new char[] { (char)(childOrdinal - 1), childOrdinal });
}
baryAffix = childAffix.Replace(childOrdinal.ToString(), baryAffix);
baryName = barycentre.StarSystem + baryAffix;
} }
else else
{ {
baryAffix = new string(new char[] { (char)(childOrdinal - 1), childOrdinal }); // Without ordinals it's complicated to determine what the ordinal *should* be.
// Just name the barycentre after the child object.
baryName = childScan.BodyName + " Barycentre";
} }
baryAffix = childAffix.Replace(childOrdinal.ToString(), baryAffix);
Scan barycentreScan = new() Scan barycentreScan = new()
{ {
Timestamp = barycentre.Timestamp, Timestamp = barycentre.Timestamp,
BodyName = barycentre.StarSystem + baryAffix, BodyName = baryName,
Parents = childScan.Parents.RemoveAt(0), Parents = childScan.Parents.RemoveAt(0),
PlanetClass = "Barycentre", PlanetClass = "Barycentre",
StarSystem = barycentre.StarSystem, StarSystem = barycentre.StarSystem,