mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
139 lines
No EOL
4.9 KiB
C#
139 lines
No EOL
4.9 KiB
C#
using System;
|
|
using System.Numerics;
|
|
using Dalamud.Interface;
|
|
using ImGuiNET;
|
|
using OtterGui;
|
|
using OtterGui.Raii;
|
|
using Penumbra.Collections;
|
|
using Penumbra.Mods;
|
|
using Penumbra.UI.Classes;
|
|
|
|
namespace Penumbra.UI;
|
|
|
|
public partial class ConfigWindow
|
|
{
|
|
public void DrawModsTab()
|
|
{
|
|
if( !Penumbra.ModManager.Valid )
|
|
{
|
|
return;
|
|
}
|
|
|
|
using var tab = ImRaii.TabItem( "Mods" );
|
|
if( !tab )
|
|
{
|
|
return;
|
|
}
|
|
|
|
_selector.Draw( GetModSelectorSize() );
|
|
ImGui.SameLine();
|
|
using var group = ImRaii.Group();
|
|
DrawHeaderLine();
|
|
|
|
using var child = ImRaii.Child( "##ModsTabMod", -Vector2.One, true, ImGuiWindowFlags.HorizontalScrollbar );
|
|
if( child )
|
|
{
|
|
_modPanel.Draw( _selector );
|
|
}
|
|
}
|
|
|
|
// Draw the header line that can quick switch between collections.
|
|
private void DrawHeaderLine()
|
|
{
|
|
using var style = ImRaii.PushStyle( ImGuiStyleVar.FrameRounding, 0 ).Push( ImGuiStyleVar.ItemSpacing, Vector2.Zero );
|
|
var buttonSize = new Vector2( ImGui.GetContentRegionAvail().X / 8f, 0 );
|
|
|
|
DrawDefaultCollectionButton( 3 * buttonSize );
|
|
ImGui.SameLine();
|
|
DrawInheritedCollectionButton( 3 * buttonSize );
|
|
ImGui.SameLine();
|
|
DrawCollectionSelector( "##collection", 2 * buttonSize.X, ModCollection.Type.Current, false, null );
|
|
}
|
|
|
|
private static void DrawDefaultCollectionButton( Vector2 width )
|
|
{
|
|
var name = $"Default Collection ({Penumbra.CollectionManager.Default.Name})";
|
|
var isCurrent = Penumbra.CollectionManager.Default == Penumbra.CollectionManager.Current;
|
|
var isEmpty = Penumbra.CollectionManager.Default == ModCollection.Empty;
|
|
var tt = isCurrent ? "The current collection is already the configured default collection."
|
|
: isEmpty ? "The default collection is configured to be empty."
|
|
: "Set the current collection to the configured default collection.";
|
|
if( ImGuiUtil.DrawDisabledButton( name, width, tt, isCurrent || isEmpty ) )
|
|
{
|
|
Penumbra.CollectionManager.SetCollection( Penumbra.CollectionManager.Default, ModCollection.Type.Current );
|
|
}
|
|
}
|
|
|
|
private void DrawInheritedCollectionButton( Vector2 width )
|
|
{
|
|
var noModSelected = _selector.Selected == null;
|
|
var collection = _selector.SelectedSettingCollection;
|
|
var modInherited = collection != Penumbra.CollectionManager.Current;
|
|
var (name, tt) = ( noModSelected, modInherited ) switch
|
|
{
|
|
(true, _) => ( "Inherited Collection", "No mod selected." ),
|
|
(false, true) => ( $"Inherited Collection ({collection.Name})",
|
|
"Set the current collection to the collection the selected mod inherits its settings from." ),
|
|
(false, false) => ( "Not Inherited", "The selected mod does not inherit its settings." ),
|
|
};
|
|
if( ImGuiUtil.DrawDisabledButton( name, width, tt, noModSelected || !modInherited ) )
|
|
{
|
|
Penumbra.CollectionManager.SetCollection( collection, ModCollection.Type.Current );
|
|
}
|
|
}
|
|
|
|
// Get the correct size for the mod selector based on current config.
|
|
private static float GetModSelectorSize()
|
|
{
|
|
var absoluteSize = Math.Clamp( Penumbra.Config.ModSelectorAbsoluteSize, Configuration.Constants.MinAbsoluteSize,
|
|
Math.Min( Configuration.Constants.MaxAbsoluteSize, ImGui.GetContentRegionAvail().X - 100 ) );
|
|
var relativeSize = Penumbra.Config.ScaleModSelector
|
|
? Math.Clamp( Penumbra.Config.ModSelectorScaledSize, Configuration.Constants.MinScaledSize, Configuration.Constants.MaxScaledSize )
|
|
: 0;
|
|
return !Penumbra.Config.ScaleModSelector
|
|
? absoluteSize
|
|
: Math.Max( absoluteSize, relativeSize * ImGui.GetContentRegionAvail().X / 100 );
|
|
}
|
|
|
|
// The basic setup for the mod panel.
|
|
// Details are in other files.
|
|
private partial class ModPanel
|
|
{
|
|
private readonly ConfigWindow _window;
|
|
|
|
private bool _valid;
|
|
private ModFileSystem.Leaf _leaf = null!;
|
|
private Mod _mod = null!;
|
|
|
|
public ModPanel( ConfigWindow window )
|
|
{
|
|
_window = window;
|
|
}
|
|
|
|
public void Draw( ModFileSystemSelector selector )
|
|
{
|
|
Init( selector );
|
|
if( !_valid )
|
|
{
|
|
return;
|
|
}
|
|
|
|
DrawModHeader();
|
|
DrawTabBar();
|
|
}
|
|
|
|
private void Init( ModFileSystemSelector selector )
|
|
{
|
|
_valid = selector.Selected != null;
|
|
if( !_valid )
|
|
{
|
|
return;
|
|
}
|
|
|
|
_leaf = selector.SelectedLeaf!;
|
|
_mod = selector.Selected!;
|
|
UpdateSettingsData( selector );
|
|
UpdateModData();
|
|
}
|
|
}
|
|
} |