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/Odyssey/BackPack.cs
Normal file
10
ObservatoryFramework/Files/Journal/Odyssey/BackPack.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class BackPack : JournalBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
11
ObservatoryFramework/Files/Journal/Odyssey/BackpackChange.cs
Normal file
11
ObservatoryFramework/Files/Journal/Odyssey/BackpackChange.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class BackpackChange : JournalBase
|
||||
{
|
||||
public ImmutableList<BackpackItemChange> Added { get; init; }
|
||||
public ImmutableList<BackpackItemChange> Removed { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class BackpackMaterials : JournalBase
|
||||
{
|
||||
public ImmutableList<BackpackItem> Items { get; init; }
|
||||
public ImmutableList<BackpackItem> Components { get; init; }
|
||||
public ImmutableList<BackpackItem> Consumables { get; init; }
|
||||
public ImmutableList<BackpackItem> Data { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class BookDropship : BookTaxi
|
||||
{
|
||||
}
|
||||
}
|
9
ObservatoryFramework/Files/Journal/Odyssey/BookTaxi.cs
Normal file
9
ObservatoryFramework/Files/Journal/Odyssey/BookTaxi.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class BookTaxi : JournalBase
|
||||
{
|
||||
public int Cost { get; init; }
|
||||
public string DestinationSystem { get; init; }
|
||||
public string DestinationLocation { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class BuyMicroResources : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public MicroCategory Category { get; init; }
|
||||
public int Count { get; init; }
|
||||
public int Price { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
}
|
||||
}
|
10
ObservatoryFramework/Files/Journal/Odyssey/BuySuit.cs
Normal file
10
ObservatoryFramework/Files/Journal/Odyssey/BuySuit.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class BuySuit : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public int Price { get; init; }
|
||||
public ulong SuitID { get; init; }
|
||||
}
|
||||
}
|
10
ObservatoryFramework/Files/Journal/Odyssey/BuyWeapon.cs
Normal file
10
ObservatoryFramework/Files/Journal/Odyssey/BuyWeapon.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class BuyWeapon : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public int Price { get; init; }
|
||||
public ulong SuitModuleID { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CancelDropship : CancelTaxi
|
||||
{
|
||||
}
|
||||
}
|
7
ObservatoryFramework/Files/Journal/Odyssey/CancelTaxi.cs
Normal file
7
ObservatoryFramework/Files/Journal/Odyssey/CancelTaxi.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CancelTaxi : JournalBase
|
||||
{
|
||||
public int Refund { get; init; }
|
||||
}
|
||||
}
|
12
ObservatoryFramework/Files/Journal/Odyssey/CollectItems.cs
Normal file
12
ObservatoryFramework/Files/Journal/Odyssey/CollectItems.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CollectItems : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public string Type { get; init; }
|
||||
public ulong OwnerID { get; init; }
|
||||
public int Count { get; init; }
|
||||
public bool Stolen { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class CreateSuitLoadout : DeleteSuitLoadout
|
||||
{
|
||||
public ImmutableList<SuitModule> Modules { get; init; }
|
||||
public ImmutableList<string> SuitMods { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class DeleteSuitLoadout : JournalBase
|
||||
{
|
||||
public ulong SuitID { get; init; }
|
||||
public string SuitName { get; init; }
|
||||
public string SuitName_Localised { get; init; }
|
||||
public ulong LoadoutID { get; init; }
|
||||
public string LoadoutName { get; init; }
|
||||
}
|
||||
}
|
25
ObservatoryFramework/Files/Journal/Odyssey/Disembark.cs
Normal file
25
ObservatoryFramework/Files/Journal/Odyssey/Disembark.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Immutable;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class Disembark : JournalBase
|
||||
{
|
||||
public bool SRV { get; init; }
|
||||
public bool Taxi { get; init; }
|
||||
public bool Multicrew { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
public string StarSystem { get; init; }
|
||||
public ulong SystemAddress { get; init; }
|
||||
public string Body { get; init; }
|
||||
public int BodyID { get; init; }
|
||||
public bool OnStation { get; init; }
|
||||
public bool OnPlanet { get; init; }
|
||||
public string StationName { get; init; }
|
||||
public string StationType { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
}
|
||||
}
|
6
ObservatoryFramework/Files/Journal/Odyssey/DropItems.cs
Normal file
6
ObservatoryFramework/Files/Journal/Odyssey/DropItems.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class DropItems : CollectItems
|
||||
{
|
||||
}
|
||||
}
|
12
ObservatoryFramework/Files/Journal/Odyssey/DropShipDeploy.cs
Normal file
12
ObservatoryFramework/Files/Journal/Odyssey/DropShipDeploy.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class DropShipDeploy : JournalBase
|
||||
{
|
||||
public string StarSystem { get; init; }
|
||||
public ulong SystemAddress { get; init; }
|
||||
public string Body { get; init; }
|
||||
public int BodyID { get; init; }
|
||||
public bool OnStation { get; init; }
|
||||
public bool OnPlanet { get; init; }
|
||||
}
|
||||
}
|
6
ObservatoryFramework/Files/Journal/Odyssey/Embark.cs
Normal file
6
ObservatoryFramework/Files/Journal/Odyssey/Embark.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class Embark : Disembark
|
||||
{
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class LoadoutEquipModule : JournalBase
|
||||
{
|
||||
public ulong SuitID { get; init; }
|
||||
public string SuitName { get; init; }
|
||||
public string SuitName_Localised { get; init; }
|
||||
public string SlotName { get; init; }
|
||||
public ulong LoadoutID { get; init; }
|
||||
public string LoadoutName { get; init; }
|
||||
public string ModuleName { get; init; }
|
||||
public string ModuleName_Localised { get; init; }
|
||||
public ulong SuitModuleID { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class LoadoutRemoveModule : LoadoutEquipModule
|
||||
{
|
||||
}
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class RenameSuitLoadout : JournalBase
|
||||
{
|
||||
public ulong SuitID { get; init; }
|
||||
public string SuitName { get; init; }
|
||||
public ulong LoadoutID { get; init; }
|
||||
public string LoadoutName { get; init; }
|
||||
}
|
||||
}
|
17
ObservatoryFramework/Files/Journal/Odyssey/ScanOrganic.cs
Normal file
17
ObservatoryFramework/Files/Journal/Odyssey/ScanOrganic.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class ScanOrganic : JournalBase
|
||||
{
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public ScanOrganicType ScanType { get; init; }
|
||||
public string Genus { get; init; }
|
||||
public string Genus_Localised { get; init; }
|
||||
public string Species { get; init; }
|
||||
public string Species_Localised { get; init; }
|
||||
public ulong SystemAddress { get; init; }
|
||||
public int Body { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SellMicroResources : JournalBase
|
||||
{
|
||||
public ImmutableList<MicroResource> MicroResources { get; init; }
|
||||
public int Price { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SellOrganicData : JournalBase
|
||||
{
|
||||
public ulong MarketID { get; init; }
|
||||
public ImmutableList<BioData> BioData { get; init; }
|
||||
}
|
||||
}
|
5
ObservatoryFramework/Files/Journal/Odyssey/SellSuit.cs
Normal file
5
ObservatoryFramework/Files/Journal/Odyssey/SellSuit.cs
Normal file
@ -0,0 +1,5 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SellSuit : BuySuit
|
||||
{ }
|
||||
}
|
6
ObservatoryFramework/Files/Journal/Odyssey/SellWeapon.cs
Normal file
6
ObservatoryFramework/Files/Journal/Odyssey/SellWeapon.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SellWeapon : BuyWeapon
|
||||
{
|
||||
}
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class ShipLockerMaterials : JournalBase
|
||||
{
|
||||
public ImmutableList<BackpackItem> Items { get; init; }
|
||||
public ImmutableList<BackpackItem> Components { get; init; }
|
||||
public ImmutableList<BackpackItem> Consumables { get; init; }
|
||||
public ImmutableList<BackpackItem> Data { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SuitLoadout : CreateSuitLoadout
|
||||
{ }
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SwitchSuitLoadout : CreateSuitLoadout
|
||||
{
|
||||
}
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class TradeMicroResources : JournalBase
|
||||
{
|
||||
public ImmutableList<MicroResource> Offered { get; init; }
|
||||
public string Received { get; init; }
|
||||
public MicroCategory Category { get; init; }
|
||||
public int Count { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class TransferMicroResources : JournalBase
|
||||
{
|
||||
public ImmutableList<MicroTransfer> Transfers { get; init; }
|
||||
}
|
||||
}
|
11
ObservatoryFramework/Files/Journal/Odyssey/UpgradeSuit.cs
Normal file
11
ObservatoryFramework/Files/Journal/Odyssey/UpgradeSuit.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class UpgradeSuit : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public ulong SuitID { get; init; }
|
||||
public int Class { get; init; }
|
||||
public int Cost { get; init; }
|
||||
}
|
||||
}
|
11
ObservatoryFramework/Files/Journal/Odyssey/UpgradeWeapon.cs
Normal file
11
ObservatoryFramework/Files/Journal/Odyssey/UpgradeWeapon.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class UpgradeWeapon : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public ulong SuitModuleID { get; init; }
|
||||
public int Class { get; init; }
|
||||
public int Cost { get; init; }
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class UseConsumable : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public string Type { get; init; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user