mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-01 08:23:42 -04:00
Reorganize all observatory core projects into monorepo (#25)
* chore: move all observatory repos to core * only save journal folder on change, don't constantly re-check during monitoring * chore: monorepo project changes * chore: monorepo migration
This commit is contained in:
10
ObservatoryFramework/Files/Journal/Other/AfmuRepairs.cs
Normal file
10
ObservatoryFramework/Files/Journal/Other/AfmuRepairs.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class AfmuRepairs : JournalBase
|
||||
{
|
||||
public string Module { get; init; }
|
||||
public string Module_Localised { get; init; }
|
||||
public bool FullyRepaired { get; init; }
|
||||
public float Health { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class ApproachSettlement : JournalBase
|
||||
{
|
||||
public ulong SystemAddress { get; init; }
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public long MarketID { get; init; }
|
||||
public float Latitude { get; init; }
|
||||
public float Longitude { get; init; }
|
||||
public int BodyID { get; init; }
|
||||
public string BodyName { get; init; }
|
||||
}
|
||||
}
|
10
ObservatoryFramework/Files/Journal/Other/CargoTransfer.cs
Normal file
10
ObservatoryFramework/Files/Journal/Other/CargoTransfer.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CargoTransfer : JournalBase
|
||||
{
|
||||
public ImmutableList<CargoTransferDetail> Transfers { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class ChangeCrewRole : JournalBase
|
||||
{
|
||||
public string Role { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CockpitBreached : JournalBase
|
||||
{
|
||||
}
|
||||
}
|
16
ObservatoryFramework/Files/Journal/Other/CommitCrime.cs
Normal file
16
ObservatoryFramework/Files/Journal/Other/CommitCrime.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CommitCrime : JournalBase
|
||||
{
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public CrimeType CrimeType { get; init; }
|
||||
public string Faction { get; init; }
|
||||
public string Victim { get; init; }
|
||||
public string Victim_Localised { get; init; }
|
||||
public int Fine { get; init; }
|
||||
public int Bounty { get; init; }
|
||||
}
|
||||
}
|
7
ObservatoryFramework/Files/Journal/Other/Continued.cs
Normal file
7
ObservatoryFramework/Files/Journal/Other/Continued.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class Continued : JournalBase
|
||||
{
|
||||
public int Part { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CrewLaunchFighter : CrewMemberJoins
|
||||
{
|
||||
public int ID { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CrewMemberJoins : JournalBase
|
||||
{
|
||||
public string Crew { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CrewMemberQuits : CrewMemberJoins
|
||||
{
|
||||
}
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CrewMemberRoleChange : CrewMemberJoins
|
||||
{
|
||||
public string Role { get; init; }
|
||||
}
|
||||
}
|
14
ObservatoryFramework/Files/Journal/Other/CrimeVictim.cs
Normal file
14
ObservatoryFramework/Files/Journal/Other/CrimeVictim.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CrimeVictim : JournalBase
|
||||
{
|
||||
public string Offender { get; init; }
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public CrimeType CrimeType { get; init; }
|
||||
public int Fine { get; init; }
|
||||
public int Bounty { get; init; }
|
||||
}
|
||||
}
|
8
ObservatoryFramework/Files/Journal/Other/DataScanned.cs
Normal file
8
ObservatoryFramework/Files/Journal/Other/DataScanned.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class DataScanned : JournalBase
|
||||
{
|
||||
public string Type { get; init; }
|
||||
public string Type_Localised { get; init; }
|
||||
}
|
||||
}
|
8
ObservatoryFramework/Files/Journal/Other/DatalinkScan.cs
Normal file
8
ObservatoryFramework/Files/Journal/Other/DatalinkScan.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class DatalinkScan : JournalBase
|
||||
{
|
||||
public string Message { get; init; }
|
||||
public string Message_Localised { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class DatalinkVoucher : JournalBase
|
||||
{
|
||||
public int Reward { get; init; }
|
||||
public string VictimFaction { get; init; }
|
||||
public string PayeeFaction { get; init; }
|
||||
}
|
||||
}
|
7
ObservatoryFramework/Files/Journal/Other/DockFighter.cs
Normal file
7
ObservatoryFramework/Files/Journal/Other/DockFighter.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class DockFighter : JournalBase
|
||||
{
|
||||
public int ID { get; init; }
|
||||
}
|
||||
}
|
6
ObservatoryFramework/Files/Journal/Other/DockSRV.cs
Normal file
6
ObservatoryFramework/Files/Journal/Other/DockSRV.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class DockSRV : DockFighter
|
||||
{
|
||||
}
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class EndCrewSession : JournalBase
|
||||
{
|
||||
public bool OnCrime { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class FighterRebuilt : JournalBase
|
||||
{
|
||||
public string Loadout { get; init; }
|
||||
public int ID { get; init; }
|
||||
}
|
||||
}
|
12
ObservatoryFramework/Files/Journal/Other/Friends.cs
Normal file
12
ObservatoryFramework/Files/Journal/Other/Friends.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class Friends : JournalBase
|
||||
{
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public FriendStatus Status { get; init; }
|
||||
public string Name { get; init; }
|
||||
}
|
||||
}
|
8
ObservatoryFramework/Files/Journal/Other/FuelScoop.cs
Normal file
8
ObservatoryFramework/Files/Journal/Other/FuelScoop.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class FuelScoop : JournalBase
|
||||
{
|
||||
public float Scooped { get; init; }
|
||||
public float Total { get; init; }
|
||||
}
|
||||
}
|
7
ObservatoryFramework/Files/Journal/Other/JetConeBoost.cs
Normal file
7
ObservatoryFramework/Files/Journal/Other/JetConeBoost.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class JetConeBoost : JournalBase
|
||||
{
|
||||
public float BoostValue { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class JetConeDamage : JournalBase
|
||||
{
|
||||
public string Module { get; init; }
|
||||
}
|
||||
}
|
7
ObservatoryFramework/Files/Journal/Other/JoinACrew.cs
Normal file
7
ObservatoryFramework/Files/Journal/Other/JoinACrew.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class JoinACrew : JournalBase
|
||||
{
|
||||
public string Captain { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class KickCrewMember : JournalBase
|
||||
{
|
||||
public string Crew { get; init; }
|
||||
public bool OnCrime { get; init; }
|
||||
}
|
||||
}
|
11
ObservatoryFramework/Files/Journal/Other/LaunchDrone.cs
Normal file
11
ObservatoryFramework/Files/Journal/Other/LaunchDrone.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class LaunchDrone : JournalBase
|
||||
{
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public LimpetDrone Type { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class LaunchFighter : LaunchSRV
|
||||
{
|
||||
}
|
||||
}
|
9
ObservatoryFramework/Files/Journal/Other/LaunchSRV.cs
Normal file
9
ObservatoryFramework/Files/Journal/Other/LaunchSRV.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class LaunchSRV : JournalBase
|
||||
{
|
||||
public string Loadout { get; init; }
|
||||
public int ID { get; init; }
|
||||
public bool PlayerControlled { get; init; }
|
||||
}
|
||||
}
|
7
ObservatoryFramework/Files/Journal/Other/ModuleInfo.cs
Normal file
7
ObservatoryFramework/Files/Journal/Other/ModuleInfo.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class ModuleInfo : JournalBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
7
ObservatoryFramework/Files/Journal/Other/Music.cs
Normal file
7
ObservatoryFramework/Files/Journal/Other/Music.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class Music : JournalBase
|
||||
{
|
||||
public string MusicTrack { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class NpcCrewPaidWage : JournalBase
|
||||
{
|
||||
public int NpcCrewId { get; init; }
|
||||
public string NpcCrewName { get; init; }
|
||||
public int Amount { get; init; }
|
||||
}
|
||||
}
|
11
ObservatoryFramework/Files/Journal/Other/NpcCrewRank.cs
Normal file
11
ObservatoryFramework/Files/Journal/Other/NpcCrewRank.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class NpcCrewRank : JournalBase
|
||||
{
|
||||
public int NpcCrewId { get; init; }
|
||||
public string NpcCrewName { get; init; }
|
||||
public RankCombat RankCombat { get; init; }
|
||||
}
|
||||
}
|
5
ObservatoryFramework/Files/Journal/Other/Promotion.cs
Normal file
5
ObservatoryFramework/Files/Journal/Other/Promotion.cs
Normal file
@ -0,0 +1,5 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class Promotion : Rank
|
||||
{ }
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class ProspectedAsteroid : JournalBase
|
||||
{
|
||||
public ImmutableList<ProspectMaterial> Materials { get; init; }
|
||||
public string Content { get; init; }
|
||||
public string Content_Localised { get; init; }
|
||||
public string MotherlodeMaterial { get; init; }
|
||||
public string MotherlodeMaterial_Localised { get; init; }
|
||||
public float Remaining { get; init; }
|
||||
}
|
||||
}
|
6
ObservatoryFramework/Files/Journal/Other/QuitACrew.cs
Normal file
6
ObservatoryFramework/Files/Journal/Other/QuitACrew.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class QuitACrew : JoinACrew
|
||||
{
|
||||
}
|
||||
}
|
9
ObservatoryFramework/Files/Journal/Other/RebootRepair.cs
Normal file
9
ObservatoryFramework/Files/Journal/Other/RebootRepair.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class RebootRepair : JournalBase
|
||||
{
|
||||
public ImmutableList<string> Modules { get; init; }
|
||||
}
|
||||
}
|
15
ObservatoryFramework/Files/Journal/Other/ReceiveText.cs
Normal file
15
ObservatoryFramework/Files/Journal/Other/ReceiveText.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class ReceiveText : JournalBase
|
||||
{
|
||||
public string From { get; init; }
|
||||
public string From_Localised { get; init; }
|
||||
public string Message { get; init; }
|
||||
public string Message_Localised { get; init; }
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public TextChannel Channel { get; init; }
|
||||
}
|
||||
}
|
9
ObservatoryFramework/Files/Journal/Other/RepairDrone.cs
Normal file
9
ObservatoryFramework/Files/Journal/Other/RepairDrone.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class RepairDrone : JournalBase
|
||||
{
|
||||
public float HullRepaired { get; init; }
|
||||
public float CockpitRepaired { get; init; }
|
||||
public float CorrosionRepaired { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class ReservoirReplenished : JournalBase
|
||||
{
|
||||
public float FuelMain { get; init; }
|
||||
public float FuelReservoir { get; init; }
|
||||
}
|
||||
}
|
9
ObservatoryFramework/Files/Journal/Other/Resurrect.cs
Normal file
9
ObservatoryFramework/Files/Journal/Other/Resurrect.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class Resurrect : JournalBase
|
||||
{
|
||||
public string Option { get; init; }
|
||||
public int Cost { get; init; }
|
||||
public bool Bankrupt { get; init; }
|
||||
}
|
||||
}
|
11
ObservatoryFramework/Files/Journal/Other/Scanned.cs
Normal file
11
ObservatoryFramework/Files/Journal/Other/Scanned.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class Scanned : JournalBase
|
||||
{
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public ScanType ScanType { get; init; }
|
||||
}
|
||||
}
|
6
ObservatoryFramework/Files/Journal/Other/SelfDestruct.cs
Normal file
6
ObservatoryFramework/Files/Journal/Other/SelfDestruct.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SelfDestruct : JournalBase
|
||||
{
|
||||
}
|
||||
}
|
10
ObservatoryFramework/Files/Journal/Other/SendText.cs
Normal file
10
ObservatoryFramework/Files/Journal/Other/SendText.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SendText : JournalBase
|
||||
{
|
||||
public string To { get; init; }
|
||||
public string To_Localised { get; init; }
|
||||
public string Message { get; init; }
|
||||
public bool Sent { get; init; }
|
||||
}
|
||||
}
|
6
ObservatoryFramework/Files/Journal/Other/Shutdown.cs
Normal file
6
ObservatoryFramework/Files/Journal/Other/Shutdown.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class Shutdown : JournalBase
|
||||
{
|
||||
}
|
||||
}
|
15
ObservatoryFramework/Files/Journal/Other/Synthesis.cs
Normal file
15
ObservatoryFramework/Files/Journal/Other/Synthesis.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Observatory.Framework.Files.Converters;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class Synthesis : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
|
||||
[JsonConverter(typeof(MaterialConverter))]
|
||||
public ImmutableList<Material> Materials { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SystemsShutdown : JournalBase
|
||||
{
|
||||
}
|
||||
}
|
9
ObservatoryFramework/Files/Journal/Other/USSDrop.cs
Normal file
9
ObservatoryFramework/Files/Journal/Other/USSDrop.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class USSDrop : JournalBase
|
||||
{
|
||||
public string USSType { get; init; }
|
||||
public string USSType_Localised { get; init; }
|
||||
public int USSThreat { get; init; }
|
||||
}
|
||||
}
|
11
ObservatoryFramework/Files/Journal/Other/VehicleSwitch.cs
Normal file
11
ObservatoryFramework/Files/Journal/Other/VehicleSwitch.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class VehicleSwitch : JournalBase
|
||||
{
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public VehicleSwitchTo To { get; init; }
|
||||
}
|
||||
}
|
7
ObservatoryFramework/Files/Journal/Other/WingAdd.cs
Normal file
7
ObservatoryFramework/Files/Journal/Other/WingAdd.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class WingAdd : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
}
|
||||
}
|
6
ObservatoryFramework/Files/Journal/Other/WingInvite.cs
Normal file
6
ObservatoryFramework/Files/Journal/Other/WingInvite.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class WingInvite : WingAdd
|
||||
{
|
||||
}
|
||||
}
|
9
ObservatoryFramework/Files/Journal/Other/WingJoin.cs
Normal file
9
ObservatoryFramework/Files/Journal/Other/WingJoin.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class WingJoin : JournalBase
|
||||
{
|
||||
public ImmutableList<string> Others { get; init; }
|
||||
}
|
||||
}
|
6
ObservatoryFramework/Files/Journal/Other/WingLeave.cs
Normal file
6
ObservatoryFramework/Files/Journal/Other/WingLeave.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class WingLeave : JournalBase
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user