mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-11 00:52:19 +00:00
69 lines
1.9 KiB
C#
69 lines
1.9 KiB
C#
using OWML.Common;
|
|
using QSB.Animation;
|
|
using QSB.Animation.Events;
|
|
using QSB.ConversationSync.Events;
|
|
using QSB.DeathSync.Events;
|
|
using QSB.ElevatorSync.Events;
|
|
using QSB.GeyserSync.Events;
|
|
using QSB.Instruments.Events;
|
|
using QSB.OrbSync.Events;
|
|
using QSB.Player.Events;
|
|
using QSB.TimeSync.Events;
|
|
using QSB.Tools.Events;
|
|
using QSB.TransformSync;
|
|
using QSB.Utility;
|
|
using System.Collections.Generic;
|
|
|
|
namespace QSB.EventsCore
|
|
{
|
|
public static class QSBEventManager
|
|
{
|
|
public static bool Ready { get; private set; }
|
|
|
|
private static List<IQSBEvent> _eventList = new List<IQSBEvent>();
|
|
|
|
public static void Init()
|
|
{
|
|
_eventList = new List<IQSBEvent>
|
|
{
|
|
new PlayerReadyEvent(),
|
|
new PlayerJoinEvent(),
|
|
new PlayerSuitEvent(),
|
|
new PlayerFlashlightEvent(),
|
|
new PlayerSignalscopeEvent(),
|
|
new PlayerTranslatorEvent(),
|
|
new PlayerProbeLauncherEvent(),
|
|
new PlayerProbeEvent(),
|
|
new PlayerSectorEvent(),
|
|
new PlayerLeaveEvent(),
|
|
new PlayerDeathEvent(),
|
|
new PlayerStatesRequestEvent(),
|
|
new ElevatorEvent(),
|
|
new GeyserEvent(),
|
|
new ServerTimeEvent(),
|
|
new AnimTriggerEvent(),
|
|
new OrbSlotEvent(),
|
|
new OrbUserEvent(),
|
|
new ConversationEvent(),
|
|
new ConversationStartEndEvent(),
|
|
new PlayInstrumentEvent()
|
|
};
|
|
|
|
_eventList.ForEach(ev => ev.SetupListener());
|
|
|
|
Ready = true;
|
|
|
|
DebugLog.DebugWrite($"Event manager ready.", MessageType.Success);
|
|
}
|
|
|
|
public static void Reset()
|
|
{
|
|
Ready = false;
|
|
|
|
_eventList.ForEach(ev => ev.CloseListener());
|
|
|
|
_eventList = new List<IQSBEvent>();
|
|
}
|
|
}
|
|
}
|