93 lines
3.5 KiB
C#
Raw Normal View History

2020-02-10 23:03:28 +01:00
using OWML.Common;
using OWML.ModHelper;
2020-11-06 22:05:43 +00:00
using OWML.ModHelper.Events;
2020-09-22 21:11:29 +01:00
using QSB.ConversationSync;
2020-08-12 21:58:29 +02:00
using QSB.ElevatorSync;
2020-08-13 14:32:58 +01:00
using QSB.GeyserSync;
2020-10-27 22:59:19 +00:00
using QSB.Instruments;
using QSB.OrbSync;
2020-11-03 21:11:10 +00:00
using QSB.Patches;
2020-11-03 22:29:23 +00:00
using QSB.SectorSync;
using QSB.Utility;
2020-02-10 23:03:28 +01:00
using UnityEngine;
using UnityEngine.Networking;
2020-02-15 20:48:02 +01:00
namespace QSB
{
public class QSB : ModBehaviour
{
2020-11-11 08:31:20 +00:00
public static IModBehaviour ModBehaviour { get; private set; }
2020-08-23 12:42:48 +02:00
public static IModHelper Helper { get; private set; }
public static string DefaultServerIP { get; private set; }
public static int Port { get; private set; }
public static bool DebugMode { get; private set; }
public static AssetBundle NetworkAssetBundle { get; private set; }
2020-09-06 09:07:31 +01:00
public static bool HasWokenUp { get; set; }
2020-02-10 23:03:28 +01:00
2020-02-15 20:48:02 +01:00
private void Awake()
{
2020-02-10 23:03:28 +01:00
Application.runInBackground = true;
2020-11-06 22:05:43 +00:00
var instance = TextTranslation.Get().GetValue<TextTranslation.TranslationTable>("m_table");
2020-11-10 09:05:27 +00:00
instance.theUITable[(int)UITextType.PleaseUseController] =
2020-11-10 13:36:28 +00:00
"<color=orange>Quantum Space Buddies</color> is best experienced with friends...";
2020-11-11 08:31:20 +00:00
ModBehaviour = this;
2020-02-10 23:03:28 +01:00
}
2020-02-15 20:48:02 +01:00
private void Start()
{
2020-08-20 14:10:37 +01:00
Helper = ModHelper;
2020-08-20 14:47:44 +01:00
DebugLog.ToConsole($"* Start of QSB version {Helper.Manifest.Version} - authored by {Helper.Manifest.Author}", MessageType.Info);
2020-08-20 19:31:10 +01:00
2020-08-17 16:51:56 +01:00
NetworkAssetBundle = Helper.Assets.LoadBundle("assets/network");
2020-08-23 15:51:45 +02:00
2020-11-03 21:11:10 +00:00
QSBPatchManager.Init();
QSBPatchManager.DoPatchType(QSBPatchTypes.OnModStart);
2020-02-10 23:03:28 +01:00
2020-08-20 14:47:44 +01:00
// Turns out these are very finicky about what order they go. QSBNetworkManager seems to
// want to go first-ish, otherwise the NetworkManager complains about the PlayerPrefab being
2020-08-23 12:42:48 +02:00
// null (even though it isn't...)
2020-08-20 14:47:44 +01:00
gameObject.AddComponent<QSBNetworkManager>();
gameObject.AddComponent<NetworkManagerHUD>();
gameObject.AddComponent<DebugActions>();
gameObject.AddComponent<ElevatorManager>();
2020-08-13 19:25:12 +02:00
gameObject.AddComponent<GeyserManager>();
2020-09-29 21:34:46 +01:00
gameObject.AddComponent<OrbManager>();
gameObject.AddComponent<QSBSectorManager>();
2020-09-22 21:11:29 +01:00
gameObject.AddComponent<ConversationManager>();
2020-10-27 22:59:19 +00:00
gameObject.AddComponent<InstrumentsManager>();
2020-11-11 08:31:20 +00:00
gameObject.AddComponent<QSBInputManager>();
Helper.Events.Unity.RunWhen(() => PlayerData.IsLoaded(), RebuildSettingsSave);
}
private void RebuildSettingsSave()
{
if (PlayerData.GetFreezeTimeWhileReadingConversations()
|| PlayerData.GetFreezeTimeWhileReadingTranslator()
|| PlayerData.GetFreezeTimeWhileReadingShipLog())
{
DebugLog.DebugWrite("Rebuilding SettingsSave...");
var clonedData = PlayerData.CloneSettingsData();
clonedData.freezeTimeWhileReading = false;
clonedData.freezeTimeWhileReadingConversations = false;
clonedData.freezeTimeWhileReadingShipLog = false;
PlayerData.SetSettingsData(clonedData);
}
}
public override void Configure(IModConfig config)
{
DefaultServerIP = config.GetSettingsValue<string>("defaultServerIP");
2020-08-23 12:42:48 +02:00
Port = config.GetSettingsValue<int>("port");
if (QSBNetworkManager.Instance != null)
{
QSBNetworkManager.Instance.networkPort = Port;
}
DebugMode = config.GetSettingsValue<bool>("debugMode");
2020-02-10 23:03:28 +01:00
}
}
}