Minor tweaks

This commit is contained in:
Liza 2023-09-21 23:28:35 +02:00
parent f56a66df29
commit b54d46468f
Signed by: liza
GPG Key ID: 7199F8D727D55F67
3 changed files with 5 additions and 8 deletions

View File

@ -76,7 +76,7 @@ public sealed class DeliverooPlugin : IDalamudPlugin
public string Name => "Deliveroo"; public string Name => "Deliveroo";
private Stage CurrentStage internal Stage CurrentStage
{ {
get => _currentStageInternal; get => _currentStageInternal;
set set
@ -85,7 +85,6 @@ public sealed class DeliverooPlugin : IDalamudPlugin
{ {
PluginLog.Information($"Changing stage from {_currentStageInternal} to {value}"); PluginLog.Information($"Changing stage from {_currentStageInternal} to {value}");
_currentStageInternal = value; _currentStageInternal = value;
_turnInWindow.Debug = CurrentStage.ToString();
} }
} }
} }
@ -657,7 +656,7 @@ public sealed class DeliverooPlugin : IDalamudPlugin
(FFXIVClientStructs.FFXIV.Client.Game.Object.GameObject*)obj.Address, false); (FFXIVClientStructs.FFXIV.Client.Game.Object.GameObject*)obj.Address, false);
} }
private enum Stage internal enum Stage
{ {
TargetPersonnelOfficer, TargetPersonnelOfficer,
OpenGcSupply, OpenGcSupply,

View File

@ -8,7 +8,7 @@ internal sealed class GcRewardItem : IEquatable<GcRewardItem>
public static GcRewardItem None { get; } = new GcRewardItem public static GcRewardItem None { get; } = new GcRewardItem
{ {
ItemId = 0, ItemId = 0,
Name = "Buy Nothing", Name = "---",
GrandCompany = GrandCompany.None, GrandCompany = GrandCompany.None,
Tier = RewardTier.First, Tier = RewardTier.First,
SubCategory = RewardSubCategory.Unknown, SubCategory = RewardSubCategory.Unknown,

View File

@ -70,8 +70,6 @@ internal sealed class TurnInWindow : Window
} }
} }
public string Debug { get; set; }
public override void OnOpen() public override void OnOpen()
{ {
SelectedItemId = _configuration.SelectedPurchaseItemId; SelectedItemId = _configuration.SelectedPurchaseItemId;
@ -101,7 +99,7 @@ internal sealed class TurnInWindow : Window
ImGui.Spacing(); ImGui.Spacing();
ImGui.BeginDisabled(state); ImGui.BeginDisabled(state);
List<string> comboValues = new() { "Buy Nothing" }; List<string> comboValues = new() { GcRewardItem.None.Name };
foreach (var itemId in _configuration.ItemsAvailableForPurchase) foreach (var itemId in _configuration.ItemsAvailableForPurchase)
{ {
var name = _gcRewardsCache.Rewards[grandCompany].First(x => x.ItemId == itemId).Name; var name = _gcRewardsCache.Rewards[grandCompany].First(x => x.ItemId == itemId).Name;
@ -127,7 +125,7 @@ internal sealed class TurnInWindow : Window
ImGui.Unindent(27); ImGui.Unindent(27);
ImGui.Separator(); ImGui.Separator();
ImGui.Text($"Debug (State): {Debug}"); ImGui.Text($"Debug (State): {_plugin.CurrentStage}");
} }
private unsafe int GetItemCount(uint itemId) private unsafe int GetItemCount(uint itemId)