Add mini window next to crafting hud when recipe is shown

This commit is contained in:
Asriel Camora
2023-06-23 00:20:07 -07:00
parent c1caa46838
commit de2feb2b34
4 changed files with 303 additions and 2 deletions
+4
View File
@@ -12,4 +12,8 @@ public static class LuminaSheets
public static readonly ExcelSheet<CraftAction> CraftActionSheet = Service.DataManager.GetExcelSheet<CraftAction>()!;
public static readonly ExcelSheet<Status> StatusSheet = Service.DataManager.GetExcelSheet<Status>()!;
public static readonly ExcelSheet<Addon> AddonSheet = Service.DataManager.GetExcelSheet<Addon>()!;
public static readonly ExcelSheet<ClassJob> ClassJobSheet = Service.DataManager.GetExcelSheet<ClassJob>()!;
public static readonly ExcelSheet<Item> ItemSheet = Service.DataManager.GetExcelSheet<Item>()!;
public static readonly ExcelSheet<Materia> MateriaSheet = Service.DataManager.GetExcelSheet<Materia>()!;
public static readonly ExcelSheet<BaseParam> BaseParamSheet = Service.DataManager.GetExcelSheet<BaseParam>()!;
}
+5 -1
View File
@@ -1,3 +1,4 @@
using Craftimizer.Plugin.Windows;
using Dalamud.Game.Command;
using Dalamud.Interface.Windowing;
using Dalamud.IoC;
@@ -12,6 +13,7 @@ public sealed class Plugin : IDalamudPlugin
public Configuration Configuration { get; }
public WindowSystem WindowSystem { get; } = new("Craftimizer");
public SimulatorWindow SimulatorWindow { get; }
public CraftingLog RecipeNoteWindow { get; }
public Plugin(
[RequiredVersion("1.0")] DalamudPluginInterface pluginInterface)
@@ -20,8 +22,10 @@ public sealed class Plugin : IDalamudPlugin
Configuration = pluginInterface.GetPluginConfig() as Configuration ?? new Configuration();
SimulatorWindow = new SimulatorWindow();
SimulatorWindow = new();
WindowSystem.AddWindow(SimulatorWindow);
RecipeNoteWindow = new();
WindowSystem.AddWindow(RecipeNoteWindow);
Service.CommandManager.AddHandler("/craft", new CommandInfo(OnCommand)
{
+18 -1
View File
@@ -11,6 +11,7 @@ using Condition = Craftimizer.Simulator.Condition;
using Craftimizer.Simulator;
using System.Text;
using System.Runtime.CompilerServices;
using System.Numerics;
namespace Craftimizer.Plugin;
@@ -88,7 +89,7 @@ internal static class ClassJobExtensions
internal static class ConditionUtils
{
public static (uint Name, uint Description) AddonIds(this Condition me) =>
private static (uint Name, uint Description) AddonIds(this Condition me) =>
me switch
{
Condition.Poor => (229, 14203),
@@ -104,6 +105,22 @@ internal static class ConditionUtils
_ => (226, 14200) // Unknown
};
private static Vector3 AddRGB(this Condition me) =>
me switch
{
Condition.Poor => Vector3.Zero, // Unsure
Condition.Normal => new(32, 48, 64),
Condition.Good => new(80, -80, 0),
Condition.Excellent => Vector3.Zero, // Unsure
Condition.Centered => new(200, 200, 0),
Condition.Sturdy => new(-100, 45, 155),
Condition.Pliant => new(0, 250, 0),
Condition.Malleable => new(-80, -40, 180),
Condition.Primed => new(30, -155, 200),
Condition.GoodOmen => new(100, 20, 0),
_ => Vector3.Zero // Unknown
};
public static string Name(this Condition me) =>
LuminaSheets.AddonSheet.GetRow(me.AddonIds().Name)!.Text.ToDalamudString().TextValue;
+276
View File
@@ -0,0 +1,276 @@
using Dalamud.Interface.Windowing;
using FFXIVClientStructs.FFXIV.Client.Game;
using FFXIVClientStructs.FFXIV.Client.Game.UI;
using FFXIVClientStructs.FFXIV.Client.UI;
using FFXIVClientStructs.FFXIV.Client.UI.Misc;
using FFXIVClientStructs.FFXIV.Component.GUI;
using ImGuiNET;
using Lumina.Excel.GeneratedSheets;
using System;
using System.Linq;
using System.Numerics;
using System.Runtime.InteropServices;
namespace Craftimizer.Plugin.Windows;
public unsafe class CraftingLog : Window
{
private const ImGuiWindowFlags WindowFlags = ImGuiWindowFlags.NoDecoration
| ImGuiWindowFlags.NoInputs
| ImGuiWindowFlags.AlwaysAutoResize
| ImGuiWindowFlags.NoFocusOnAppearing
| ImGuiWindowFlags.NoNavFocus;
private AddonRecipeNote* Addon { get; set; }
private RecipeNote* State { get; set; }
private ushort SelectedRecipeId { get; set; }
private Recipe SelectedRecipe { get; set; } = null!;
public CraftingLog() : base("RecipeNoteHelper", WindowFlags, true)
{
IsOpen = true;
}
public override void Draw()
{
ImGui.Text("Hai!! :3333");
var inst = RaptureGearsetModule.Instance();
for (var i = 0; i < 100; i++)
{
var gearset = inst->Gearset[i];
if (gearset == null)
continue;
if (!gearset->Flags.HasFlag(RaptureGearsetModule.GearsetFlag.Exists))
continue;
if (gearset->ID != i)
continue;
var job = LuminaSheets.ClassJobSheet.GetRow(gearset->ClassJob)!;
if (job.ClassJobCategory.Row != 33) // DoH
continue;
if (job.DohDolJobIndex != SelectedRecipe.CraftType.Row)
continue;
ImGui.Text($"Supported Gearset: {gearset->ID + 1} {Marshal.PtrToStringUTF8((nint)gearset->Name)}");
var stats = CalculateGearsetStats(gearset);
ImGui.Text($"{stats.CP} CP, {stats.Craftsmanship} Craftsmanship, {stats.Control} Control");
}
ShowCurrentGearInfo();
}
private void ShowCurrentGearInfo()
{
if (Service.ClientState.LocalPlayer == null)
return;
var classJob = Service.ClientState.LocalPlayer.ClassJob.Id;
var job = LuminaSheets.ClassJobSheet.GetRow(classJob)!;
if (job.ClassJobCategory.Row != 33) // DoH
return;
if (job.DohDolJobIndex != SelectedRecipe.CraftType.Row)
return;
var container = InventoryManager.Instance()->GetInventoryContainer(InventoryType.EquippedItems);
if (container == null)
return;
(int CP, int Craftsmanship, int Control) stats = (180, 0, 0);
for (var i = 0; i < container->Size; ++i)
{
var itemStats = CalculateGearsetItemStats(container->Items[i]);
stats.CP += itemStats.CP;
stats.Craftsmanship += itemStats.Craftsmanship;
stats.Control += itemStats.Control;
}
ImGui.Text($"Currently Equipped");
ImGui.Text($"{stats.CP} CP, {stats.Craftsmanship} Craftsmanship, {stats.Control} Control");
}
private static readonly (int CP, int Craftsmanship, int Control) BaseStats = (180, 0, 0);
private static (int CP, int Craftsmanship, int Control) CalculateGearsetStats(RaptureGearsetModule.GearsetEntry* entry)
{
var stats = new[]
{
BaseStats,
CalculateGearsetItemStats(entry->MainHand),
CalculateGearsetItemStats(entry->OffHand),
CalculateGearsetItemStats(entry->Head),
CalculateGearsetItemStats(entry->Body),
CalculateGearsetItemStats(entry->Hands),
// CalculateGearsetItemStats(entry->Belt),
CalculateGearsetItemStats(entry->Legs),
CalculateGearsetItemStats(entry->Feet),
CalculateGearsetItemStats(entry->Ears),
CalculateGearsetItemStats(entry->Neck),
CalculateGearsetItemStats(entry->Wrists),
CalculateGearsetItemStats(entry->RingRight),
CalculateGearsetItemStats(entry->RightLeft),
CalculateGearsetItemStats(entry->SoulStone),
};
return stats.Aggregate((a, b) => (a.CP + b.CP, a.Craftsmanship + b.Craftsmanship, a.Control + b.Control));
}
private const int ParamCP = 11;
private const int ParamCraftsmanship = 70;
private const int ParamControl = 71;
private static (int CP, int Craftsmanship, int Control) CalculateGearsetItemStats(InventoryItem item) =>
CalculateGearsetItemStats(item.ItemID, item.Flags.HasFlag(InventoryItem.ItemFlags.HQ), item.Materia, item.MateriaGrade);
private static (int CP, int Craftsmanship, int Control) CalculateGearsetItemStats(RaptureGearsetModule.GearsetItem item) =>
CalculateGearsetItemStats(item.ItemID % 1000000, item.ItemID > 1000000, item.Materia, item.MateriaGrade);
private static (int CP, int Craftsmanship, int Control) CalculateGearsetItemStats(uint itemId, bool isHq, ushort* materiaTypes, byte* materiaGrades)
{
var item = LuminaSheets.ItemSheet.GetRow(itemId)!;
int cp = 0, craftsmanship = 0, control = 0;
void IncreaseStat(int baseParam, int amount)
{
if (baseParam == ParamCP)
cp += amount;
else if (baseParam == ParamCraftsmanship)
craftsmanship += amount;
else if (baseParam == ParamControl)
control += amount;
}
foreach(var statIncrease in item.UnkData59)
IncreaseStat(statIncrease.BaseParam, statIncrease.BaseParamValue);
if (isHq)
{
foreach (var statIncrease in item.UnkData73)
IncreaseStat(statIncrease.BaseParamSpecial, statIncrease.BaseParamValueSpecial);
}
for (var i = 0; i < 5; ++i)
{
if (materiaTypes[i] == 0)
continue;
var materia = LuminaSheets.MateriaSheet.GetRow(materiaTypes[i])!;
IncreaseStat((int)materia.BaseParam.Row, materia.Value[materiaGrades[i]]);
}
cp = Math.Min(cp, CalculateMateriaCap(item, ParamCP));
craftsmanship = Math.Min(craftsmanship, CalculateMateriaCap(item, ParamCraftsmanship));
control = Math.Min(control, CalculateMateriaCap(item, ParamControl));
return (cp, craftsmanship, control);
}
// https://github.com/ffxiv-teamcraft/ffxiv-teamcraft/blob/24d0db2d9676f264edf53651b21005305267c84c/apps/client/src/app/modules/gearsets/materia.service.ts#L265
private static int CalculateMateriaCap(Item item, int paramId)
{
var ilvl = item.LevelItem.Value!;
var param = LuminaSheets.BaseParamSheet.GetRow((uint)paramId)!;
var baseValue = paramId switch
{
ParamCP => ilvl.CP,
ParamCraftsmanship => ilvl.Craftsmanship,
ParamControl => ilvl.Control,
_ => 0
};
// https://github.com/ffxiv-teamcraft/ffxiv-teamcraft/blob/24d0db2d9676f264edf53651b21005305267c84c/apps/data-extraction/src/extractors/items.extractor.ts#L6
var slotMod = item.EquipSlotCategory.Row switch
{
1 => param.oneHWpnPct,
2 => param.OHPct,
3 => param.HeadPct,
4 => param.ChestPct,
5 => param.HandsPct,
6 => param.WaistPct,
7 => param.LegsPct,
8 => param.FeetPct,
9 => param.EarringPct,
10 => param.NecklacePct,
11 => param.BraceletPct,
12 => param.RingPct,
13 => param.twoHWpnPct,
14 => param.oneHWpnPct,
15 => param.ChestHeadPct,
16 => param.ChestHeadLegsFeetPct,
18 => param.LegsFeetPct,
19 => param.HeadChestHandsLegsFeetPct,
20 => param.ChestLegsGlovesPct,
21 => param.ChestLegsFeetPct,
_ => 0
};
var roleMod = param.MeldParam[item.BaseParamModifier];
// https://github.com/Caraxi/SimpleTweaksPlugin/pull/595
var cap = (int)Math.Round((float)baseValue * slotMod / (roleMod * 10f), MidpointRounding.AwayFromZero);
return cap == 0 ? int.MaxValue : cap;
}
public override bool DrawConditions()
{
Addon = (AddonRecipeNote*)Service.GameGui.GetAddonByName("RecipeNote");
if (Addon == null)
return false;
if (Addon->AtkUnitBase.WindowNode == null)
return false;
State = RecipeNote.Instance();
var list = State->RecipeList;
if (list == null)
return false;
var recipeEntry = list->SelectedRecipe;
if (recipeEntry == null)
return false;
SelectedRecipeId = recipeEntry->RecipeId;
var recipe = LuminaSheets.RecipeSheet.GetRow(SelectedRecipeId);
if (recipe == null)
return false;
SelectedRecipe = recipe;
if (!Addon->Unk258->IsVisible)
return false;
return base.DrawConditions();
}
public override unsafe void PreDraw()
{
ref var unit = ref Addon->AtkUnitBase;
var scale = unit.Scale;
var pos = new Vector2(unit.X, unit.Y);
var size = new Vector2(unit.WindowNode->AtkResNode.Width, unit.WindowNode->AtkResNode.Height) * scale;
var node = (AtkResNode*)Addon->Unk458; // unit.GetNodeById(59);
var nodeParent = Addon->Unk258; // unit.GetNodeById(57);
//for (var i = 544; i <= 1960; i += 8)
//{
// if (Marshal.ReadIntPtr((nint)Addon, i) == (nint)nodeParent)
// {
// PluginLog.LogDebug($"{i}");
// }
//}
Position = pos + new Vector2(size.X, (nodeParent->Y + node->Y) * scale);
SizeConstraints = new WindowSizeConstraints
{
MinimumSize = new(-1),
MaximumSize = new(10000, 10000)
};
base.PreDraw();
}
}