muffin v7.4.12
This commit is contained in:
parent
e3e5a401c3
commit
0f9f445830
38 changed files with 13646 additions and 10442 deletions
|
|
@ -34,6 +34,10 @@ internal sealed class CommandHandler : IDisposable
|
|||
|
||||
private readonly PriorityWindow _priorityWindow;
|
||||
|
||||
private readonly FateController _fateController;
|
||||
|
||||
private readonly FateSelectionWindow _fateSelectionWindow;
|
||||
|
||||
private readonly ITargetManager _targetManager;
|
||||
|
||||
private readonly IClientState _clientState;
|
||||
|
|
@ -42,12 +46,13 @@ internal sealed class CommandHandler : IDisposable
|
|||
|
||||
private readonly ChangelogWindow _changelogWindow;
|
||||
|
||||
public CommandHandler(ICommandManager commandManager, IChatGui chatGui, QuestController questController, MovementController movementController, QuestRegistry questRegistry, ConfigWindow configWindow, DebugOverlay debugOverlay, OneTimeSetupWindow oneTimeSetupWindow, QuestWindow questWindow, QuestSelectionWindow questSelectionWindow, QuestSequenceWindow questSequenceWindow, JournalProgressWindow journalProgressWindow, PriorityWindow priorityWindow, ITargetManager targetManager, QuestFunctions questFunctions, GameFunctions gameFunctions, AetheryteFunctions aetheryteFunctions, IDataManager dataManager, IClientState clientState, IObjectTable objectTable, Configuration configuration, ChangelogWindow changelogWindow)
|
||||
public CommandHandler(ICommandManager commandManager, IChatGui chatGui, QuestController questController, MovementController movementController, FateController fateController, QuestRegistry questRegistry, ConfigWindow configWindow, DebugOverlay debugOverlay, OneTimeSetupWindow oneTimeSetupWindow, QuestWindow questWindow, QuestSelectionWindow questSelectionWindow, QuestSequenceWindow questSequenceWindow, JournalProgressWindow journalProgressWindow, PriorityWindow priorityWindow, FateSelectionWindow fateSelectionWindow, ITargetManager targetManager, QuestFunctions questFunctions, GameFunctions gameFunctions, AetheryteFunctions aetheryteFunctions, IDataManager dataManager, IClientState clientState, IObjectTable objectTable, Configuration configuration, ChangelogWindow changelogWindow)
|
||||
{
|
||||
_commandManager = commandManager;
|
||||
_chatGui = chatGui;
|
||||
_questController = questController;
|
||||
_movementController = movementController;
|
||||
_fateController = fateController;
|
||||
_configWindow = configWindow;
|
||||
_oneTimeSetupWindow = oneTimeSetupWindow;
|
||||
_questWindow = questWindow;
|
||||
|
|
@ -55,6 +60,7 @@ internal sealed class CommandHandler : IDisposable
|
|||
_questSequenceWindow = questSequenceWindow;
|
||||
_journalProgressWindow = journalProgressWindow;
|
||||
_priorityWindow = priorityWindow;
|
||||
_fateSelectionWindow = fateSelectionWindow;
|
||||
_targetManager = targetManager;
|
||||
_clientState = clientState;
|
||||
_configuration = configuration;
|
||||
|
|
@ -93,6 +99,7 @@ internal sealed class CommandHandler : IDisposable
|
|||
_chatGui.Print("/qst start - starts doing quests", "Questionable", 576);
|
||||
_chatGui.Print("/qst stop - stops doing quests", "Questionable", 576);
|
||||
_chatGui.Print("/qst reload - reload all quest data", "Questionable", 576);
|
||||
_chatGui.Print("/qst fate - toggles the FATE farming window", "Questionable", 576);
|
||||
break;
|
||||
case "ha":
|
||||
case "help-all":
|
||||
|
|
@ -109,6 +116,7 @@ internal sealed class CommandHandler : IDisposable
|
|||
_chatGui.Print("/qst zone - shows all quests starting in the current zone (only includes quests with a known quest path, and currently visible unaccepted quests)", "Questionable", 576);
|
||||
_chatGui.Print("/qst journal - toggles the Journal Progress window", "Questionable", 576);
|
||||
_chatGui.Print("/qst priority - toggles the Priority window", "Questionable", 576);
|
||||
_chatGui.Print("/qst fate - toggles the FATE farming window", "Questionable", 576);
|
||||
_chatGui.Print("/qst handle-interrupt - makes Questionable handle queued interrupts immediately (useful if you manually start combat)", "Questionable", 576);
|
||||
break;
|
||||
case "c":
|
||||
|
|
@ -126,6 +134,7 @@ internal sealed class CommandHandler : IDisposable
|
|||
case "stop":
|
||||
_movementController.Stop();
|
||||
_questController.Stop("Stop command");
|
||||
_fateController.Stop("Stop command");
|
||||
break;
|
||||
case "reload":
|
||||
_questWindow.Reload();
|
||||
|
|
@ -145,6 +154,10 @@ internal sealed class CommandHandler : IDisposable
|
|||
case "priority":
|
||||
_priorityWindow.ToggleOrUncollapse();
|
||||
break;
|
||||
case "f":
|
||||
case "fate":
|
||||
_fateSelectionWindow.ToggleOrUncollapse();
|
||||
break;
|
||||
case "handle-interrupt":
|
||||
_questController.InterruptQueueWithCombat();
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue