From 03a79baaa278eb89f1ba86bbf079d1cfdf1c1c62 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sun, 10 Sep 2023 13:34:58 +0200 Subject: [PATCH] Character exclusions --- ARDiscard/ARDiscard.csproj | 2 +- ARDiscard/AutoDiscardPlogon.cs | 25 +++- ARDiscard/ConfigWindow.cs | 227 +++++++++++++++++++++++---------- ARDiscard/Configuration.cs | 8 ++ ARDiscard/InventoryUtils.cs | 8 ++ 5 files changed, 201 insertions(+), 69 deletions(-) diff --git a/ARDiscard/ARDiscard.csproj b/ARDiscard/ARDiscard.csproj index 00e3701..ea55c27 100644 --- a/ARDiscard/ARDiscard.csproj +++ b/ARDiscard/ARDiscard.csproj @@ -1,7 +1,7 @@ net7.0-windows - 1.3 + 1.4 11.0 enable true diff --git a/ARDiscard/AutoDiscardPlogon.cs b/ARDiscard/AutoDiscardPlogon.cs index df9c060..806e2da 100644 --- a/ARDiscard/AutoDiscardPlogon.cs +++ b/ARDiscard/AutoDiscardPlogon.cs @@ -1,7 +1,9 @@ using System; +using System.Linq; using AutoRetainerAPI; using ClickLib.Clicks; using Dalamud.Data; +using Dalamud.Game.ClientState; using Dalamud.Game.Command; using Dalamud.Game.Gui; using Dalamud.Interface.Windowing; @@ -25,17 +27,19 @@ public class AutoDiscardPlogon : IDalamudPlugin private readonly DalamudPluginInterface _pluginInterface; private readonly ChatGui _chatGui; + private readonly ClientState _clientState; private readonly CommandManager _commandManager; private readonly InventoryUtils _inventoryUtils; private readonly AutoRetainerApi _autoRetainerApi; private readonly TaskManager _taskManager; public AutoDiscardPlogon(DalamudPluginInterface pluginInterface, CommandManager commandManager, ChatGui chatGui, - DataManager dataManager) + DataManager dataManager, ClientState clientState) { _pluginInterface = pluginInterface; _configuration = (Configuration?)_pluginInterface.GetPluginConfig() ?? new Configuration(); _chatGui = chatGui; + _clientState = clientState; _commandManager = commandManager; _commandManager.AddHandler("/discardconfig", new CommandInfo(OpenConfig)); _commandManager.AddHandler("/discardall", new CommandInfo(ProcessCommand)); @@ -43,7 +47,7 @@ public class AutoDiscardPlogon : IDalamudPlugin _pluginInterface.UiBuilder.Draw += _windowSystem.Draw; _pluginInterface.UiBuilder.OpenConfigUi += OpenConfigUi; - _configWindow = new(_pluginInterface, _configuration, dataManager); + _configWindow = new(_pluginInterface, _configuration, dataManager, clientState); _windowSystem.AddWindow(_configWindow); ECommonsMain.Init(_pluginInterface, this); @@ -58,8 +62,23 @@ public class AutoDiscardPlogon : IDalamudPlugin private unsafe void CheckPostProcess(string retainerName) { - if (_configuration.RunAfterVenture && _inventoryUtils.GetNextItemToDiscard() != null) + if (!_configuration.RunAfterVenture) + { + PluginLog.Information($"Not running post-venture tasks for {retainerName}, disabled globally"); + } + else if (_configuration.ExcludedCharacters.Any(x => x.LocalContentId == _clientState.LocalContentId)) + { + PluginLog.Information($"Not running post-venture tasks for {retainerName}, disabled for current character"); + } + else if (_inventoryUtils.GetNextItemToDiscard() == null) + { + PluginLog.Information($"Not running post-venture tasks for {retainerName}, no items to discard"); + } + else + { + PluginLog.Information($"Requesting post-processing for {retainerName}"); _autoRetainerApi.RequestPostprocess(); + } } private void DoPostProcess(string retainerName) diff --git a/ARDiscard/ConfigWindow.cs b/ARDiscard/ConfigWindow.cs index 00022cf..83c6b35 100644 --- a/ARDiscard/ConfigWindow.cs +++ b/ARDiscard/ConfigWindow.cs @@ -3,6 +3,8 @@ using System.Collections.Generic; using System.Linq; using System.Numerics; using Dalamud.Data; +using Dalamud.Game.ClientState; +using Dalamud.Interface.Colors; using Dalamud.Interface.Windowing; using Dalamud.Plugin; using ECommons; @@ -16,6 +18,7 @@ public class ConfigWindow : Window private readonly DalamudPluginInterface _pluginInterface; private readonly Configuration _configuration; private readonly DataManager _dataManager; + private readonly ClientState _clientState; private string _itemName = string.Empty; private List<(uint ItemId, string Name)> _searchResults = new(); @@ -23,12 +26,14 @@ public class ConfigWindow : Window private List<(uint ItemId, string Name)>? _allItems = null; private bool _resetKeyboardFocus = true; - public ConfigWindow(DalamudPluginInterface pluginInterface, Configuration configuration, DataManager dataManager) + public ConfigWindow(DalamudPluginInterface pluginInterface, Configuration configuration, DataManager dataManager, + ClientState clientState) : base("Auto Discard###AutoDiscardConfig") { _pluginInterface = pluginInterface; _configuration = configuration; _dataManager = dataManager; + _clientState = clientState; Size = new Vector2(600, 400); SizeCondition = ImGuiCond.FirstUseEver; @@ -46,97 +51,189 @@ public class ConfigWindow : Window public override void Draw() { bool runAfterVenture = _configuration.RunAfterVenture; - if (ImGui.Checkbox("Run automatically after AutoRetainer's venture", ref runAfterVenture)) + if (ImGui.Checkbox("[Global] Run automatically after AutoRetainer's venture", ref runAfterVenture)) { _configuration.RunAfterVenture = runAfterVenture; - _pluginInterface.SavePluginConfig(_configuration); + Save(); } - var ws = ImGui.GetWindowSize(); - if (ImGui.BeginChild("Left", new Vector2(Math.Max(10, ws.X / 2), -1), true)) + if (ImGui.BeginTabBar("AutoDiscardTabs")) { - ImGui.Text("Search"); - ImGui.SetNextItemWidth(ws.X / 2 - 20); - if (_resetKeyboardFocus) + DrawDiscardList(); + DrawExcludedCharacters(); + + ImGui.EndTabBar(); + } + } + + private void DrawDiscardList() + { + if (ImGui.BeginTabItem("Items to Discard")) + { + var ws = ImGui.GetWindowSize(); + if (ImGui.BeginChild("Left", new Vector2(Math.Max(10, ws.X / 2), -1), true)) { - ImGui.SetKeyboardFocusHere(); - _resetKeyboardFocus = false; + ImGui.Text("Search"); + ImGui.SetNextItemWidth(ws.X / 2 - 20); + if (_resetKeyboardFocus) + { + ImGui.SetKeyboardFocusHere(); + _resetKeyboardFocus = false; + } + + string previousName = _itemName; + if (ImGui.InputText("", ref _itemName, 256, ImGuiInputTextFlags.EnterReturnsTrue)) + { + _resetKeyboardFocus = true; + if (_searchResults.Count > 0) + { + var itemToAdd = _searchResults.FirstOrDefault(); + if (_discarding.All(x => x.ItemId != itemToAdd.ItemId)) + { + _discarding.Add(itemToAdd); + } + else + { + _discarding.Remove(itemToAdd); + } + + Save(); + } + } + + if (previousName != _itemName) + UpdateResults(); + + ImGui.Separator(); + + if (string.IsNullOrEmpty(_itemName)) + { + ImGui.Text("Type item name..."); + } + + foreach (var (id, name) in _searchResults) + { + bool selected = _discarding.Any(x => x.Item1 == id); + if (ImGui.Selectable(name, selected)) + { + if (!selected) + { + _discarding.Add((id, name)); + } + else + { + _discarding.Remove((id, name)); + } + + Save(); + } + } } - string previousName = _itemName; - if (ImGui.InputText("", ref _itemName, 256, ImGuiInputTextFlags.EnterReturnsTrue)) + ImGui.EndChild(); + ImGui.SameLine(); + + if (ImGui.BeginChild("Right", new Vector2(-1, -1), true, ImGuiWindowFlags.NoSavedSettings)) { - _resetKeyboardFocus = true; - if (_searchResults.Count > 0) + ImGui.Text("Items that will be automatically discarded"); + ImGui.Separator(); + + List<(uint, string)> toRemove = new(); + foreach (var (id, name) in _discarding.OrderBy(x => x.Name.ToLower())) { - var itemToAdd = _searchResults.FirstOrDefault(); - if (_discarding.All(x => x.ItemId != itemToAdd.ItemId)) - { - _discarding.Add(itemToAdd); - } - else - { - _discarding.Remove(itemToAdd); - } + if (ImGui.Selectable(name, true)) + toRemove.Add((id, name)); + } + + if (toRemove.Count > 0) + { + foreach (var tr in toRemove) + _discarding.Remove(tr); Save(); } } - if (previousName != _itemName) - UpdateResults(); + ImGui.EndChild(); + ImGui.EndTabItem(); + } + } - ImGui.Separator(); - - if (string.IsNullOrEmpty(_itemName)) + private void DrawExcludedCharacters() + { + if (ImGui.BeginTabItem("Excluded Characters")) + { + if (_clientState.IsLoggedIn && _clientState.LocalContentId > 0) { - ImGui.Text("Type item name..."); - } - - foreach (var (id, name) in _searchResults) - { - bool selected = _discarding.Any(x => x.Item1 == id); - if (ImGui.Selectable(name, selected)) + string worldName = _clientState.LocalPlayer?.HomeWorld.GameData?.Name ?? "??"; + ImGui.TextWrapped( + $"Current Character: {_clientState.LocalPlayer?.Name} @ {worldName} ({_clientState.LocalContentId:X})"); + ImGui.Indent(30); + if (_configuration.ExcludedCharacters.Any(x => x.LocalContentId == _clientState.LocalContentId)) { - if (!selected) + ImGui.TextColored(ImGuiColors.DalamudRed, "This character is currently excluded."); + if (ImGui.Button("Remove exclusion")) { - _discarding.Add((id, name)); + _configuration.ExcludedCharacters.RemoveAll( + c => c.LocalContentId == _clientState.LocalContentId); + Save(); + } + } + else + { + if (_configuration.RunAfterVenture) + { + ImGui.TextColored(ImGuiColors.HealerGreen, + "This character is currently included (and will be post-processed in autoretainer)."); } else { - _discarding.Remove((id, name)); + ImGui.TextColored(ImGuiColors.DalamudYellow, + "This character is currently included (but running post-processing is disabled globally)"); } - Save(); + if (ImGui.Button("Exclude current character")) + { + _configuration.ExcludedCharacters.Add(new Configuration.CharacterInfo + { + LocalContentId = _clientState.LocalContentId, + CachedPlayerName = _clientState.LocalPlayer?.Name.ToString() ?? "??", + CachedWorldName = worldName, + }); + Save(); + } + } + + ImGui.Unindent(30); + } + else + { + ImGui.TextColored(ImGuiColors.DalamudRed, "You are not logged in."); + } + + ImGui.Separator(); + ImGui.TextWrapped( + "Characters that won't run auto-cleanup after ventures (/discardall works for excluded characters)"); + ImGui.Spacing(); + + ImGui.Indent(30); + if (_configuration.ExcludedCharacters.Count == 0) + { + ImGui.TextColored(ImGuiColors.DalamudGrey, "No excluded characters."); + } + else + { + foreach (var characterInfo in _configuration.ExcludedCharacters) + { + ImGui.Text( + $"{characterInfo.CachedPlayerName} @ {characterInfo.CachedWorldName} ({characterInfo.LocalContentId:X})"); } } + + ImGui.Unindent(30); + + ImGui.EndTabItem(); } - - ImGui.EndChild(); - ImGui.SameLine(); - - if (ImGui.BeginChild("Right", new Vector2(-1, -1), true, ImGuiWindowFlags.NoSavedSettings)) - { - ImGui.Text("Items that will be automatically discarded"); - ImGui.Separator(); - - List<(uint, string)> toRemove = new(); - foreach (var (id, name) in _discarding.OrderBy(x => x.Name.ToLower())) - { - if (ImGui.Selectable(name, true)) - toRemove.Add((id, name)); - } - - if (toRemove.Count > 0) - { - foreach (var tr in toRemove) - _discarding.Remove(tr); - - Save(); - } - } - - ImGui.EndChild(); } private void UpdateResults() diff --git a/ARDiscard/Configuration.cs b/ARDiscard/Configuration.cs index 86ae72f..b5e1fae 100644 --- a/ARDiscard/Configuration.cs +++ b/ARDiscard/Configuration.cs @@ -8,4 +8,12 @@ public class Configuration : IPluginConfiguration public int Version { get; set; } = 1; public bool RunAfterVenture { get; set; } public List DiscardingItems { get; set; } = new(); + public List ExcludedCharacters { get; set; } = new(); + + public class CharacterInfo + { + public ulong LocalContentId { get; set; } + public string CachedPlayerName { get; set; } + public string CachedWorldName { get; set; } + } } diff --git a/ARDiscard/InventoryUtils.cs b/ARDiscard/InventoryUtils.cs index 9aae53a..be6f99b 100644 --- a/ARDiscard/InventoryUtils.cs +++ b/ARDiscard/InventoryUtils.cs @@ -36,16 +36,24 @@ public class InventoryUtils : IDisposable foreach (InventoryType inventoryType in InventoryTypes) { InventoryContainer* container = inventoryManager->GetInventoryContainer(inventoryType); + //PluginLog.Verbose($"Checking {inventoryType}, {container->Size}"); for (int i = 0; i < container->Size; ++i) { var item = container->GetInventorySlot(i); if (item != null) { + //PluginLog.Verbose($"{i} → {item->ItemID}"); if (_configuration.DiscardingItems.Contains(item->ItemID)) { + PluginLog.Information( + $"Found item {item->ItemID} to discard in inventory {inventoryType} in slot {i}"); return item; } } + else + { + //PluginLog.Verbose($"{i} → none"); + } } }