Compare commits

..

No commits in common. "master" and "v3.0" have entirely different histories.
master ... v3.0

10 changed files with 113 additions and 138 deletions

2
LLib

@ -1 +1 @@
Subproject commit 2d214b133847130d3382c0baaff26b32332a8f2d
Subproject commit 3792244261a9f5426a7916f5a6dd1966238ba84a

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Target Name="PackagePluginDebug" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug'">
<Target Name="PackagePlugin" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug'">
<DalamudPackager
ProjectDir="$(ProjectDir)"
OutputPath="$(OutputPath)"

View File

@ -2,7 +2,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using Dalamud.Plugin.Services;
using Lumina.Excel.Sheets;
using Lumina.Excel.GeneratedSheets;
namespace Squadronista.Solver;
@ -14,7 +14,7 @@ internal sealed class SquadronMember : IEquatable<SquadronMember>
public required uint ClassJob { get; init; }
public required Race Race { get; init; }
public required int EnlistmentTimestamp { get; init; }
public required uint EnlistmentTimestamp { get; init; }
public uint Experience { get; init; }
public int PhysicalAbility => GrowthParams[Level].PhysicalAbility;
public int MentalAbility => GrowthParams[Level].MentalAbility;
@ -29,13 +29,13 @@ internal sealed class SquadronMember : IEquatable<SquadronMember>
public SquadronMember InitializeFrom(IDataManager dataManager)
{
List<(byte, byte, byte)> growthAsList = new();
var growth = dataManager.GetExcelSheet<GcArmyMemberGrow>().Single(x => x.ClassJob.RowId == ClassJob);
foreach (GcArmyMemberGrow.MemberParamsStruct memberParams in growth.MemberParams)
var growth = dataManager.GetExcelSheet<GcArmyMemberGrow>()!.Single(x => x.ClassJob.Row == ClassJob);
for (int i = 0; i <= 59; ++i)
{
growthAsList.Add((memberParams.Physical, memberParams.Mental, memberParams.Tactical));
growthAsList.Add((growth.Physical[i], growth.Mental[i], growth.Tactical[i]));
}
growthAsList.Add((growth.Unknown1, growth.Unknown2, growth.Unknown3));
growthAsList.Add((growth.Unknown123, growth.Unknown184, growth.Unknown245));
GrowthParams = growthAsList;
return this;
}

View File

@ -38,11 +38,11 @@ internal sealed class SquadronSolver
_newTrainings = _calculatedTrainings.Keys.ToList();
}
public IEnumerable<CalculationResult> SolveFor(SquadronMission mission, Attributes missionAttributes, int requiredMatchingStats)
public IEnumerable<CalculationResult> SolveFor(SquadronMission mission, int requiredMatchingStats)
{
int minPhysical = missionAttributes.PhysicalAbility;
int minMental = missionAttributes.MentalAbility;
int minTactical = missionAttributes.TacticalAbility;
int minPhysical = mission.CurrentAttributes!.PhysicalAbility;
int minMental = mission.CurrentAttributes!.MentalAbility;
int minTactical = mission.CurrentAttributes!.TacticalAbility;
bool foundWithoutTraining = false;
List<CalculationResult> intermediates = CalculateForAllMemberCombinations(mission.Level, _state.Bonus);

View File

@ -5,20 +5,15 @@ namespace Squadronista.Solver;
internal sealed class SquadronState
{
private readonly Dictionary<(int id, Attributes attributes), Task<SquadronSolver.CalculationResults>> _calculationResults = new();
private readonly Dictionary<SquadronMission, Task<SquadronSolver.CalculationResults>> _calculationResults = new();
public required IReadOnlyList<SquadronMember> Members { get; init; }
public required BonusAttributes Bonus { get; set; }
public required uint CurrentTraining { get; set; }
public Task<SquadronSolver.CalculationResults>? GetCalculation(SquadronMission mission, Attributes? attributes)
{
if (attributes == null)
return null;
public Task<SquadronSolver.CalculationResults>? GetCalculation(SquadronMission mission)
=> _calculationResults.TryGetValue(mission, out var task) ? task : null;
return _calculationResults.GetValueOrDefault((mission.Id, attributes));
}
public void SetCalculation(SquadronMission mission, Attributes attributes, Task<SquadronSolver.CalculationResults> task)
=> _calculationResults[(mission.Id, attributes)] = task;
public void SetCalculation(SquadronMission mission, Task<SquadronSolver.CalculationResults> task)
=> _calculationResults[mission] = task;
}

View File

@ -11,4 +11,5 @@ internal sealed class SquadronMission
public required bool IsFlaggedMission { get; init; }
public required IReadOnlyList<Attributes> PossibleAttributes { get; init; }
public Attributes? CurrentAttributes { get; set; }
}

View File

@ -1,13 +1,64 @@
<Project Sdk="Dalamud.NET.Sdk/11.0.0">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>5.0</Version>
<TargetFramework>net8.0-windows</TargetFramework>
<Version>3.0</Version>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<OutputPath>dist</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>portable</DebugType>
<PathMap Condition="$(SolutionDir) != ''">$(SolutionDir)=X:\</PathMap>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<DebugType>portable</DebugType>
</PropertyGroup>
<Import Project="..\LLib\LLib.targets"/>
<Import Project="..\LLib\RenameZip.targets"/>
<PropertyGroup>
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
<DalamudLibPath>$(DALAMUD_HOME)/</DalamudLibPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LLib\LLib.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DalamudPackager" Version="2.1.12"/>
</ItemGroup>
<ItemGroup>
<Reference Include="Dalamud">
<HintPath>$(DalamudLibPath)Dalamud.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="ImGui.NET">
<HintPath>$(DalamudLibPath)ImGui.NET.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Lumina">
<HintPath>$(DalamudLibPath)Lumina.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Lumina.Excel">
<HintPath>$(DalamudLibPath)Lumina.Excel.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
<HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<Target Name="RenameLatestZip" AfterTargets="PackagePlugin" Condition="'$(Configuration)' == 'Release'">
<Exec Command="rename $(OutDir)$(AssemblyName)\latest.zip $(AssemblyName)-$(Version).zip"/>
</Target>
</Project>

View File

@ -9,7 +9,7 @@ using Dalamud.Plugin;
using Dalamud.Plugin.Services;
using FFXIVClientStructs.FFXIV.Client.Game;
using FFXIVClientStructs.FFXIV.Client.UI;
using Lumina.Excel.Sheets;
using Lumina.Excel.GeneratedSheets;
using Squadronista.Solver;
using Squadronista.Windows;
using Race = Squadronista.Solver.Race;
@ -20,7 +20,7 @@ public sealed class SquadronistaPlugin : IDalamudPlugin
{
private readonly WindowSystem _windowSystem = new(nameof(SquadronistaPlugin));
private readonly IDalamudPluginInterface _pluginInterface;
private readonly DalamudPluginInterface _pluginInterface;
private readonly IClientState _clientState;
private readonly IPluginLog _pluginLog;
private readonly IDataManager _dataManager;
@ -28,7 +28,7 @@ public sealed class SquadronistaPlugin : IDalamudPlugin
private readonly IReadOnlyList<SquadronMission> _allMissions;
private readonly MainWindow _mainWindow;
public SquadronistaPlugin(IDalamudPluginInterface pluginInterface, IClientState clientState, IPluginLog pluginLog,
public SquadronistaPlugin(DalamudPluginInterface pluginInterface, IClientState clientState, IPluginLog pluginLog,
IDataManager dataManager, IAddonLifecycle addonLifecycle, IGameGui gameGui)
{
ArgumentNullException.ThrowIfNull(dataManager);
@ -39,7 +39,7 @@ public sealed class SquadronistaPlugin : IDalamudPlugin
_dataManager = dataManager;
_addonLifecycle = addonLifecycle;
_allMissions = dataManager.GetExcelSheet<GcArmyExpedition>()
_allMissions = dataManager.GetExcelSheet<GcArmyExpedition>()!
.Where(x => x.RowId > 0)
.Select(x => new SquadronMission
{
@ -49,12 +49,12 @@ public sealed class SquadronistaPlugin : IDalamudPlugin
// 13 and 14 seems to be a duplicate
IsFlaggedMission = x.RowId is 7 or 14 or 15 or 34,
PossibleAttributes = Enumerable.Range(0, x.ExpeditionParams.Count)
PossibleAttributes = Enumerable.Range(0, x.RequiredPhysical.Length)
.Select(i => new Attributes
{
PhysicalAbility = x.ExpeditionParams[i].RequiredPhysical,
MentalAbility = x.ExpeditionParams[i].RequiredMental,
TacticalAbility = x.ExpeditionParams[i].RequiredTactical,
PhysicalAbility = x.RequiredPhysical[i],
MentalAbility = x.RequiredMental[i],
TacticalAbility = x.RequiredTactical[i],
})
.ToList()
.AsReadOnly(),
@ -62,7 +62,7 @@ public sealed class SquadronistaPlugin : IDalamudPlugin
.ToList()
.AsReadOnly();
Trainings = dataManager.GetExcelSheet<GcArmyTraining>()
Trainings = dataManager.GetExcelSheet<GcArmyTraining>()!
.Where(x => x.RowId > 0 && x.RowId != 7)
.Select(x => new Training
{
@ -123,7 +123,7 @@ public sealed class SquadronistaPlugin : IDalamudPlugin
return new SquadronMember
{
Name = _dataManager.GetExcelSheet<ENpcResident>().GetRow(member->ENpcResidentId)
Name = _dataManager.GetExcelSheet<ENpcResident>()!.GetRow(member->ENpcResidentId)!
.Singular.ToString(),
Level = member->Level,
ClassJob = member->ClassJob,
@ -194,10 +194,10 @@ public sealed class SquadronistaPlugin : IDalamudPlugin
private void ResetCharacterSpecificData()
{
SquadronState = null;
foreach (var mission in _allMissions)
mission.CurrentAttributes = null;
}
private void ResetCharacterSpecificData(int type, int code) => ResetCharacterSpecificData();
public void Dispose()
{
_mainWindow.Dispose();
@ -208,8 +208,8 @@ public sealed class SquadronistaPlugin : IDalamudPlugin
_pluginInterface.UiBuilder.Draw -= _windowSystem.Draw;
}
[StructLayout(LayoutKind.Explicit, Size = 0xB28)]
[StructLayout(LayoutKind.Explicit, Size = 0xB18)]
private struct ExtendedGcArmyData {
[FieldOffset(0x2C4)] public ushort CurrentTraining;
[FieldOffset(0x284)] public ushort CurrentTraining;
}
}

View File

@ -100,9 +100,8 @@ internal sealed class MainWindow : LWindow, IDisposable
}
var selectedMission = _plugin.AvailableMissions[agentExpedition->SelectedRow];
var missionAttributes = FindCurrentAttributeIndex(agentExpedition, selectedMission);
if (missionAttributes != null)
ImGui.Text($"{selectedMission.Name} ({missionAttributes})");
if (selectedMission.CurrentAttributes != null)
ImGui.Text($"{selectedMission.Name} ({selectedMission.CurrentAttributes})");
else
ImGui.Text($"{selectedMission.Name}");
@ -117,7 +116,7 @@ internal sealed class MainWindow : LWindow, IDisposable
}
else
{
var task = state.GetCalculation(selectedMission, missionAttributes);
var task = state.GetCalculation(selectedMission);
if (task != null)
{
if (task.IsCompletedSuccessfully)
@ -176,21 +175,21 @@ internal sealed class MainWindow : LWindow, IDisposable
ImGui.Text("Final Stats:");
ImGui.SameLine(0);
ImGui.TextColored(
result.PhysicalAbility >= missionAttributes!.PhysicalAbility
result.PhysicalAbility >= selectedMission.CurrentAttributes!.PhysicalAbility
? ImGuiColors.HealerGreen
: ImGuiColors.DalamudYellow, $"{result.PhysicalAbility}");
ImGui.SameLine(0);
ImGui.Text("/");
ImGui.SameLine(0);
ImGui.TextColored(
result.MentalAbility >= missionAttributes.MentalAbility
result.MentalAbility >= selectedMission.CurrentAttributes!.MentalAbility
? ImGuiColors.HealerGreen
: ImGuiColors.DalamudYellow, $"{result.MentalAbility}");
ImGui.SameLine(0);
ImGui.Text("/");
ImGui.SameLine(0);
ImGui.TextColored(
result.TacticalAbility >= missionAttributes.TacticalAbility
result.TacticalAbility >= selectedMission.CurrentAttributes!.TacticalAbility
? ImGuiColors.HealerGreen
: ImGuiColors.DalamudYellow, $"{result.TacticalAbility}");
@ -199,7 +198,7 @@ internal sealed class MainWindow : LWindow, IDisposable
}
else
{
ImGui.TextColored(ImGuiColors.DalamudRed, $"No combination of members/trainings can achieve\n{(selectedMission.IsFlaggedMission ? "all" : "2 out of 3")} attributes for {missionAttributes}.");
ImGui.TextColored(ImGuiColors.DalamudRed, $"No combination of members/trainings can achieve\n{(selectedMission.IsFlaggedMission ? "all" : "2 out of 3")} attributes for {selectedMission.CurrentAttributes}.");
ImGui.Text("Level the squadron further and check again.");
}
}
@ -210,13 +209,16 @@ internal sealed class MainWindow : LWindow, IDisposable
}
else
{
if (missionAttributes == null)
if (selectedMission.CurrentAttributes == null)
FindCurrentAttributeIndex(agentExpedition, selectedMission);
if (selectedMission.CurrentAttributes == null)
{
ImGui.Text("No matching mission found...?");
return;
}
state.SetCalculation(selectedMission, missionAttributes, Task.Factory.StartNew(() =>
state.SetCalculation(selectedMission, Task.Factory.StartNew(() =>
{
var solver = new SquadronSolver(_pluginLog, state, _plugin.Trainings);
@ -228,7 +230,7 @@ internal sealed class MainWindow : LWindow, IDisposable
if (selectedMission.IsFlaggedMission)
{
// only relevant when all 3 stats match
var perfectMatches = solver.SolveFor(selectedMission, missionAttributes, 3).ToList();
var perfectMatches = solver.SolveFor(selectedMission, 3).ToList();
if (perfectMatches.Count > 0)
{
results.Results.Add(perfectMatches
@ -239,7 +241,7 @@ internal sealed class MainWindow : LWindow, IDisposable
}
else
{
var matches = solver.SolveFor(selectedMission, missionAttributes, 2)
var matches = solver.SolveFor(selectedMission, 2)
.OrderByDescending(x => x.MatchingAttributes)
.ThenBy(x => x.Trainings.Count)
.ThenBy(x => x.Members.Sum(y => y.Level))
@ -282,7 +284,7 @@ internal sealed class MainWindow : LWindow, IDisposable
}
}
private unsafe Attributes? FindCurrentAttributeIndex(AgentGcArmyExpedition* agentExpedition,
private unsafe void FindCurrentAttributeIndex(AgentGcArmyExpedition* agentExpedition,
SquadronMission selectedMission)
{
AddonGcArmyExpedition* addonExpedition =
@ -290,11 +292,11 @@ internal sealed class MainWindow : LWindow, IDisposable
// should never happen
if (addonExpedition == null || !LAddon.IsAddonReady(&addonExpedition->AtkUnitBase))
return null;
return;
AtkComponentBase* requiredAttribComponent = addonExpedition->RequiredAttributesComponentNode;
if (requiredAttribComponent == null)
return null;
return;
AtkComponentNode* physicalComponent = GetNodeById<AtkComponentNode>(requiredAttribComponent->UldManager, 2);
AtkComponentNode* mentalComponent = GetNodeById<AtkComponentNode>(requiredAttribComponent->UldManager, 4);
@ -302,7 +304,7 @@ internal sealed class MainWindow : LWindow, IDisposable
if (physicalComponent == null || mentalComponent == null || tacticalComponent == null)
{
_pluginLog.Warning("Could not parse required attribute children");
return null;
return;
}
AtkTextNode* physicalText = GetNodeById<AtkTextNode>(physicalComponent->Component->UldManager, 2);
@ -311,7 +313,7 @@ internal sealed class MainWindow : LWindow, IDisposable
if (physicalText == null || mentalText == null || tacticalText == null)
{
_pluginLog.Warning("Could not parse required attribute texts");
return null;
return;
}
int physical = int.Parse(physicalText->NodeText.ToString(), CultureInfo.InvariantCulture);
@ -325,12 +327,9 @@ internal sealed class MainWindow : LWindow, IDisposable
TacticalAbility = tactical,
};
if (selectedMission.PossibleAttributes.Contains(newAttributes))
return newAttributes;
selectedMission.CurrentAttributes = newAttributes;
else
{
_pluginLog.Warning($"Wrong attributes for {selectedMission.Name}: {newAttributes}");
return null;
}
}
private static unsafe T* GetNodeById<T>(AtkUldManager uldManager, uint nodeId, NodeType? type = null)
@ -339,8 +338,8 @@ internal sealed class MainWindow : LWindow, IDisposable
for (var i = 0; i < uldManager.NodeListCount; i++)
{
var n = uldManager.NodeList[i];
if (n->NodeId != nodeId || type != null && n->Type != type.Value) continue;
if (!n->IsVisible()) continue;
if (n->NodeID != nodeId || type != null && n->Type != type.Value) continue;
if (!n->IsVisible) continue;
return (T*)n;
}

View File

@ -4,83 +4,12 @@
"net8.0-windows7.0": {
"DalamudPackager": {
"type": "Direct",
"requested": "[11.0.0, )",
"resolved": "11.0.0",
"contentHash": "bjT7XUlhIJSmsE/O76b7weUX+evvGQctbQB8aKXt94o+oPWxHpCepxAGMs7Thow3AzCyqWs7cOpp9/2wcgRRQA=="
},
"DotNet.ReproducibleBuilds": {
"type": "Direct",
"requested": "[1.1.1, )",
"resolved": "1.1.1",
"contentHash": "+H2t/t34h6mhEoUvHi8yGXyuZ2GjSovcGYehJrS2MDm2XgmPfZL2Sdxg+uL2lKgZ4M6tTwKHIlxOob2bgh0NRQ==",
"dependencies": {
"Microsoft.SourceLink.AzureRepos.Git": "1.1.1",
"Microsoft.SourceLink.Bitbucket.Git": "1.1.1",
"Microsoft.SourceLink.GitHub": "1.1.1",
"Microsoft.SourceLink.GitLab": "1.1.1"
}
},
"Microsoft.SourceLink.Gitea": {
"type": "Direct",
"requested": "[8.0.0, )",
"resolved": "8.0.0",
"contentHash": "KOBodmDnlWGIqZt2hT47Q69TIoGhIApDVLCyyj9TT5ct8ju16AbHYcB4XeknoHX562wO1pMS/1DfBIZK+V+sxg==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "8.0.0",
"Microsoft.SourceLink.Common": "8.0.0"
}
},
"Microsoft.Build.Tasks.Git": {
"type": "Transitive",
"resolved": "8.0.0",
"contentHash": "bZKfSIKJRXLTuSzLudMFte/8CempWjVamNUR5eHJizsy+iuOuO/k2gnh7W0dHJmYY0tBf+gUErfluCv5mySAOQ=="
},
"Microsoft.SourceLink.AzureRepos.Git": {
"type": "Transitive",
"resolved": "1.1.1",
"contentHash": "qB5urvw9LO2bG3eVAkuL+2ughxz2rR7aYgm2iyrB8Rlk9cp2ndvGRCvehk3rNIhRuNtQaeKwctOl1KvWiklv5w==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.1.1",
"Microsoft.SourceLink.Common": "1.1.1"
}
},
"Microsoft.SourceLink.Bitbucket.Git": {
"type": "Transitive",
"resolved": "1.1.1",
"contentHash": "cDzxXwlyWpLWaH0em4Idj0H3AmVo3L/6xRXKssYemx+7W52iNskj/SQ4FOmfCb8YQt39otTDNMveCZzYtMoucQ==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.1.1",
"Microsoft.SourceLink.Common": "1.1.1"
}
},
"Microsoft.SourceLink.Common": {
"type": "Transitive",
"resolved": "8.0.0",
"contentHash": "dk9JPxTCIevS75HyEQ0E4OVAFhB2N+V9ShCXf8Q6FkUQZDkgLI12y679Nym1YqsiSysuQskT7Z+6nUf3yab6Vw=="
},
"Microsoft.SourceLink.GitHub": {
"type": "Transitive",
"resolved": "1.1.1",
"contentHash": "IaJGnOv/M7UQjRJks7B6p7pbPnOwisYGOIzqCz5ilGFTApZ3ktOR+6zJ12ZRPInulBmdAf1SrGdDG2MU8g6XTw==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.1.1",
"Microsoft.SourceLink.Common": "1.1.1"
}
},
"Microsoft.SourceLink.GitLab": {
"type": "Transitive",
"resolved": "1.1.1",
"contentHash": "tvsg47DDLqqedlPeYVE2lmiTpND8F0hkrealQ5hYltSmvruy/Gr5nHAKSsjyw5L3NeM/HLMI5ORv7on/M4qyZw==",
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.1.1",
"Microsoft.SourceLink.Common": "1.1.1"
}
"requested": "[2.1.12, )",
"resolved": "2.1.12",
"contentHash": "Sc0PVxvgg4NQjcI8n10/VfUQBAS4O+Fw2pZrAqBdRMbthYGeogzu5+xmIGCGmsEZ/ukMOBuAqiNiB5qA3MRalg=="
},
"llib": {
"type": "Project",
"dependencies": {
"DalamudPackager": "[11.0.0, )"
}
"type": "Project"
}
}
}