mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-19 22:37:46 +01:00
Figuring out dalamud experimental downloads
This commit is contained in:
parent
13500264b7
commit
4da98041b1
2 changed files with 126 additions and 9 deletions
117
Penumbra/UI/Tabs/PreviewItemsTab.cs
Normal file
117
Penumbra/UI/Tabs/PreviewItemsTab.cs
Normal file
|
|
@ -0,0 +1,117 @@
|
||||||
|
using Dalamud.Bindings.ImGui;
|
||||||
|
using OtterGui;
|
||||||
|
using OtterGui.Classes;
|
||||||
|
using OtterGui.Raii;
|
||||||
|
using OtterGui.Services;
|
||||||
|
using OtterGui.Text;
|
||||||
|
using OtterGui.Widgets;
|
||||||
|
using Penumbra.Api.Enums;
|
||||||
|
using Penumbra.Collections.Manager;
|
||||||
|
using Penumbra.GameData.Data;
|
||||||
|
using Penumbra.Mods;
|
||||||
|
using Penumbra.Mods.Editor;
|
||||||
|
using Penumbra.Services;
|
||||||
|
using Penumbra.UI.Classes;
|
||||||
|
|
||||||
|
namespace Penumbra.UI.Tabs;
|
||||||
|
|
||||||
|
public class ChangedItemsTab(
|
||||||
|
CollectionManager collectionManager,
|
||||||
|
CollectionSelectHeader collectionHeader,
|
||||||
|
ChangedItemDrawer drawer,
|
||||||
|
CommunicatorService communicator)
|
||||||
|
: ITab, IUiService
|
||||||
|
{
|
||||||
|
public ReadOnlySpan<byte> Label
|
||||||
|
=> "Preview Items"u8;
|
||||||
|
|
||||||
|
private LowerString _changedItemFilter = LowerString.Empty;
|
||||||
|
private LowerString _changedItemModFilter = LowerString.Empty;
|
||||||
|
private Vector2 _buttonSize;
|
||||||
|
|
||||||
|
public void DrawContent()
|
||||||
|
{
|
||||||
|
collectionHeader.Draw(true);
|
||||||
|
drawer.DrawTypeFilter();
|
||||||
|
var varWidth = DrawFilters();
|
||||||
|
using var child = ImUtf8.Child("##changedItemsChild"u8, -Vector2.One);
|
||||||
|
if (!child)
|
||||||
|
return;
|
||||||
|
|
||||||
|
_buttonSize = new Vector2(ImGui.GetStyle().ItemSpacing.Y + ImGui.GetFrameHeight());
|
||||||
|
using var style = ImRaii.PushStyle(ImGuiStyleVar.CellPadding, Vector2.Zero)
|
||||||
|
.Push(ImGuiStyleVar.ItemSpacing, Vector2.Zero)
|
||||||
|
.Push(ImGuiStyleVar.FramePadding, Vector2.Zero)
|
||||||
|
.Push(ImGuiStyleVar.SelectableTextAlign, new Vector2(0.01f, 0.5f));
|
||||||
|
|
||||||
|
var skips = ImGuiClip.GetNecessarySkips(_buttonSize.Y);
|
||||||
|
using var list = ImUtf8.Table("##changedItems"u8, 3, ImGuiTableFlags.RowBg, -Vector2.One);
|
||||||
|
if (!list)
|
||||||
|
return;
|
||||||
|
|
||||||
|
const ImGuiTableColumnFlags flags = ImGuiTableColumnFlags.NoResize | ImGuiTableColumnFlags.WidthFixed;
|
||||||
|
ImUtf8.TableSetupColumn("items"u8, flags, 450 * UiHelpers.Scale);
|
||||||
|
ImUtf8.TableSetupColumn("mods"u8, flags, varWidth - 140 * UiHelpers.Scale);
|
||||||
|
ImUtf8.TableSetupColumn("id"u8, flags, 140 * UiHelpers.Scale);
|
||||||
|
|
||||||
|
var items = collectionManager.Active.Current.ChangedItems;
|
||||||
|
var rest = ImGuiClip.FilteredClippedDraw(items, skips, FilterChangedItem, DrawChangedItemColumn);
|
||||||
|
ImGuiClip.DrawEndDummy(rest, _buttonSize.Y);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary> Draw a pair of filters and return the variable width of the flexible column. </summary>
|
||||||
|
private float DrawFilters()
|
||||||
|
{
|
||||||
|
var varWidth = ImGui.GetContentRegionAvail().X
|
||||||
|
- 450 * UiHelpers.Scale
|
||||||
|
- ImGui.GetStyle().ItemSpacing.X;
|
||||||
|
ImGui.SetNextItemWidth(450 * UiHelpers.Scale);
|
||||||
|
LowerString.InputWithHint("##changedItemsFilter", "Filter Item...", ref _changedItemFilter, 128);
|
||||||
|
ImGui.SameLine();
|
||||||
|
ImGui.SetNextItemWidth(varWidth);
|
||||||
|
LowerString.InputWithHint("##changedItemsModFilter", "Filter Mods...", ref _changedItemModFilter, 128);
|
||||||
|
return varWidth;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary> Apply the current filters. </summary>
|
||||||
|
private bool FilterChangedItem(KeyValuePair<string, (SingleArray<IMod>, IIdentifiedObjectData)> item)
|
||||||
|
=> drawer.FilterChangedItem(item.Key, item.Value.Item2, _changedItemFilter)
|
||||||
|
&& (_changedItemModFilter.IsEmpty || item.Value.Item1.Any(m => m.Name.Contains(_changedItemModFilter)));
|
||||||
|
|
||||||
|
/// <summary> Draw a full column for a changed item. </summary>
|
||||||
|
private void DrawChangedItemColumn(KeyValuePair<string, (SingleArray<IMod>, IIdentifiedObjectData)> item)
|
||||||
|
{
|
||||||
|
ImGui.TableNextColumn();
|
||||||
|
drawer.DrawCategoryIcon(item.Value.Item2, _buttonSize.Y);
|
||||||
|
ImGui.SameLine(0, 0);
|
||||||
|
var name = item.Value.Item2.ToName(item.Key);
|
||||||
|
var clicked = ImUtf8.Selectable(name, false, ImGuiSelectableFlags.None, _buttonSize with { X = 0 });
|
||||||
|
drawer.ChangedItemHandling(item.Value.Item2, clicked);
|
||||||
|
|
||||||
|
ImGui.TableNextColumn();
|
||||||
|
DrawModColumn(item.Value.Item1);
|
||||||
|
|
||||||
|
ImGui.TableNextColumn();
|
||||||
|
ChangedItemDrawer.DrawModelData(item.Value.Item2, _buttonSize.Y);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void DrawModColumn(SingleArray<IMod> mods)
|
||||||
|
{
|
||||||
|
if (mods.Count <= 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
var first = mods[0];
|
||||||
|
if (ImUtf8.Selectable(first.Name.Text, false, ImGuiSelectableFlags.None, _buttonSize with { X = 0 })
|
||||||
|
&& ImGui.GetIO().KeyCtrl
|
||||||
|
&& first is Mod mod)
|
||||||
|
communicator.SelectTab.Invoke(TabType.Mods, mod);
|
||||||
|
|
||||||
|
if (!ImGui.IsItemHovered())
|
||||||
|
return;
|
||||||
|
|
||||||
|
using var _ = ImRaii.Tooltip();
|
||||||
|
ImUtf8.Text("Hold Control and click to jump to mod.\n"u8);
|
||||||
|
if (mods.Count > 1)
|
||||||
|
ImUtf8.Text("Other mods affecting this item:\n" + string.Join("\n", mods.Skip(1).Select(m => m.Name)));
|
||||||
|
}
|
||||||
|
}
|
||||||
18
repo.json
18
repo.json
|
|
@ -1,13 +1,13 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"Author": "Ottermandias, Nylfae, Adam, Wintermute",
|
"Author": "Ottermandias, Nylfae, Adam, Wintermute",
|
||||||
"Name": "Penumbra",
|
"Name": "PenumbraPreview",
|
||||||
"Punchline": "Runtime mod loader and manager.",
|
"Punchline": "Runtime mod loader and manager.",
|
||||||
"Description": "Runtime mod loader and manager.",
|
"Description": "Runtime mod loader and manager.",
|
||||||
"InternalName": "Penumbra",
|
"InternalName": "PenumbraPreview",
|
||||||
"AssemblyVersion": "1.5.1.12",
|
"AssemblyVersion": "0.1",
|
||||||
"TestingAssemblyVersion": "1.5.1.12",
|
"TestingAssemblyVersion": "0.1",
|
||||||
"RepoUrl": "https://github.com/xivdev/Penumbra",
|
"RepoUrl": "https://github.com/ffbewhatah-maker/PenumbraPreview",
|
||||||
"ApplicableVersion": "any",
|
"ApplicableVersion": "any",
|
||||||
"DalamudApiLevel": 14,
|
"DalamudApiLevel": 14,
|
||||||
"TestingDalamudApiLevel": 14,
|
"TestingDalamudApiLevel": 14,
|
||||||
|
|
@ -18,9 +18,9 @@
|
||||||
"LoadPriority": 69420,
|
"LoadPriority": 69420,
|
||||||
"LoadRequiredState": 2,
|
"LoadRequiredState": 2,
|
||||||
"LoadSync": true,
|
"LoadSync": true,
|
||||||
"DownloadLinkInstall": "https://github.com/xivdev/Penumbra/releases/download/1.5.1.12/Penumbra.zip",
|
"DownloadLinkInstall": "https://github.com/ffbewhatah-maker/PenumbraPreviewer/archive/refs/tags/main.zip",
|
||||||
"DownloadLinkTesting": "https://github.com/xivdev/Penumbra/releases/download/1.5.1.12/Penumbra.zip",
|
"DownloadLinkTesting": "https://github.com/ffbewhatah-maker/PenumbraPreviewer/archive/refs/tags/main.zip",
|
||||||
"DownloadLinkUpdate": "https://github.com/xivdev/Penumbra/releases/download/1.5.1.12/Penumbra.zip",
|
"DownloadLinkUpdate": "https://github.com/ffbewhatah-maker/PenumbraPreviewer/archive/refs/tags/main.zip",
|
||||||
"IconUrl": "https://raw.githubusercontent.com/xivdev/Penumbra/master/images/icon.png"
|
"IconUrl": "https://github.com/ffbewhatah-maker/PenumbraPreviewer/archive/refs/tags/main.zip"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue