Almost there...

This commit is contained in:
Ottermandias 2022-04-18 16:14:13 +02:00
parent f3b906007d
commit 65bd1d1b52
59 changed files with 4733 additions and 6194 deletions

View file

@ -1,5 +1,9 @@
using System;
using System.Numerics;
using ImGuiNET;
using OtterGui;
using OtterGui.Raii;
using Penumbra.Collections;
namespace Penumbra.UI;
@ -7,16 +11,92 @@ public partial class ConfigWindow
{
public void DrawModsTab()
{
if( !Penumbra.ModManager.Valid )
{
return;
}
using var tab = ImRaii.TabItem( "Mods" );
if( !tab )
{
return;
}
using var child = ImRaii.Child( "##ModsTab", -Vector2.One );
if( !child )
Selector.Draw( GetModSelectorSize() );
ImGui.SameLine();
using var group = ImRaii.Group();
DrawHeaderLine();
using var child = ImRaii.Child( "##ModsTabMod", -Vector2.One, true );
if( child )
{
DrawModPanel();
}
}
private void DrawModPanel()
{
if( Selector.Selected == null )
{
return;
}
}
// 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 );
}
}