-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomConfigs.cs
More file actions
142 lines (107 loc) · 5.25 KB
/
CustomConfigs.cs
File metadata and controls
142 lines (107 loc) · 5.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
using BepInEx.Configuration;
using HarmonyLib;
using JetBrains.Annotations;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using UnityEngine;
namespace ExtraSlots
{
#nullable enable
internal class CustomConfigs
{
internal class ConfigurationManagerAttributes
{
/// <summary>
/// Custom setting editor (OnGUI code that replaces the default editor provided by ConfigurationManager).
/// See below for a deeper explanation. Using a custom drawer will cause many of the other fields to do nothing.
/// </summary>
[UsedImplicitly]
public System.Action<BepInEx.Configuration.ConfigEntryBase>? CustomDrawer;
}
internal static object? configManager;
internal static Type? configManagerStyles;
internal static GUIStyle GetStyle(GUIStyle other)
{
if (configManagerStyles == null)
return other;
FieldInfo fieldFontSize = AccessTools.Field(configManagerStyles, "fontSize");
if (fieldFontSize == null)
return other;
return new GUIStyle(other)
{
fontSize = (int)fieldFontSize.GetValue(configManagerStyles)
};
}
internal static void Awake()
{
Assembly? bepinexConfigManager = AppDomain.CurrentDomain.GetAssemblies().FirstOrDefault(a => a.GetName().Name == "ConfigurationManager");
Type? configManagerType = bepinexConfigManager?.GetType("ConfigurationManager.ConfigurationManager");
configManager = configManagerType == null ? null : BepInEx.Bootstrap.Chainloader.ManagerObject.GetComponent(configManagerType);
configManagerStyles = bepinexConfigManager?.GetType("ConfigurationManager.ConfigurationManagerStyles");
}
internal static Action<ConfigEntryBase> DrawSeparatedStrings(string splitString)
{
return cfg =>
{
bool locked = cfg.Description.Tags.Select(a => a.GetType().Name == "ConfigurationManagerAttributes" ? (bool?)a.GetType().GetField("ReadOnly")?.GetValue(a) : null).FirstOrDefault(v => v != null) ?? false;
bool wasUpdated = false;
GUILayout.BeginVertical();
List<string> newStrings = new List<string>();
List<string> strings = ((string)cfg.BoxedValue).Split(new string[] { splitString }, StringSplitOptions.None).ToList();
for (int i = 0; i < strings.Count; i++)
{
GUILayout.BeginHorizontal();
string val = strings[i];
string newVal = GUILayout.TextField(val, GetStyle(GUI.skin.textArea), GUILayout.ExpandWidth(true));
if (newVal != val && !locked)
wasUpdated = true;
if (GUILayout.Button("x", new GUIStyle(GetStyle(GUI.skin.button)) { fixedWidth = 21 }) && !locked)
wasUpdated = true;
else
newStrings.Add(newVal);
if (GUILayout.Button("+", new GUIStyle(GetStyle(GUI.skin.button)) { fixedWidth = 21 }) && !locked)
{
wasUpdated = true;
newStrings.Add("");
}
GUILayout.EndHorizontal();
}
GUILayout.EndVertical();
if (wasUpdated)
cfg.BoxedValue = String.Join(splitString, newStrings);
};
}
internal static Action<ConfigEntryBase> DrawOrderedFixedStrings(string splitString)
{
return cfg =>
{
bool locked = cfg.Description.Tags.Select(a => a.GetType().Name == "ConfigurationManagerAttributes" ? (bool?)a.GetType().GetField("ReadOnly")?.GetValue(a) : null).FirstOrDefault(v => v != null) ?? false;
bool wasUpdated = false;
GUILayout.BeginVertical();
string[] strings = ((string)cfg.BoxedValue).Split(new string[] { splitString }, StringSplitOptions.None).ToArray();
for (int i = 0; i < strings.Length; i++)
{
GUILayout.BeginHorizontal();
string val = strings[i];
GUILayout.Label(val, GetStyle(GUI.skin.textArea), GUILayout.ExpandWidth(true));
if (GUILayout.Button("ʌ", new GUIStyle(GetStyle(GUI.skin.button)) { fixedWidth = 21 }) && !locked)
{
if (wasUpdated = i > 0)
(strings[i], strings[i - 1]) = (strings[i - 1], strings[i]);
}
if (GUILayout.Button("v", new GUIStyle(GetStyle(GUI.skin.button)) { fixedWidth = 21 }) && !locked)
{
if (wasUpdated = i < strings.Length - 1)
(strings[i], strings[i + 1]) = (strings[i + 1], strings[i]);
}
GUILayout.EndHorizontal();
}
GUILayout.EndVertical();
if (wasUpdated)
cfg.BoxedValue = string.Join(splitString, strings);
};
}
}
}