-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFormModSettings.cs
262 lines (241 loc) · 9.78 KB
/
FormModSettings.cs
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
using DigglesModManager.Model;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
namespace DigglesModManager
{
internal partial class FormModSettings : Form
{
private readonly Mod _mod;
private readonly Dictionary<string, Control> _inputControlMap = new Dictionary<string, Control>();
private readonly List<Control> _inputControls;
public FormModSettings(Mod mod, string language)
{
_mod = mod;
_inputControls = new List<Control>();
InitializeComponent(Math.Max(173, mod.Config.SettingsVariables.Count * 23 + 12));
FormBorderStyle = FormBorderStyle.FixedSingle;
Name = $"{_mod} - Settings";
Text = Name;
var i = 0;
if (_mod.Config != null)
{
foreach (var modVariable in mod.Config.SettingsVariables)
{
BuildVariableRow(i, modVariable, language);
i++;
}
}
}
private void BuildVariableRow(int i, ModSettingsVariable variable, string language)
{
var height = i * 23 + 12;
var variableType = variable.Type.ToString().ToLower();
//add var name as label
var label = new Label
{
AutoSize = true,
Location = new Point(12, height),
Name = $"{variable.ID}_label",
TabIndex = i + 3,
Text = $"{variable.Name(language)}:"
};
Controls.Add(label);
//add value as changeable text box or checkbox
Control controlElement;
if (variableType.Equals("bool"))
{
controlElement = new CheckBox
{
Location = new Point(162, height - 3),
Name = variable.ID,
Checked = (bool)variable.Value,
Size = new Size(20, 20),
TabIndex = i + 3
};
}
else if (variableType.Equals("select"))
{
// Drop Down Menu
// Create ComboBox object
controlElement = new ComboBox
{
DropDownStyle = ComboBoxStyle.DropDownList,
Location = new Point(162, height - 3),
Name = variable.ID,
Size = new Size(70, 20),
TabIndex = i + 3
};
//Create list entries
var possibleValueId = 0;
foreach (ModVariableValue possibleValue in variable.PossibleValues)
{
((ComboBox)controlElement).Items.Add(new ComboBoxItem
{
Text = possibleValue.Name(language),
Value = possibleValue.Value
});
//select default or last selected value
if (variable.Value.Equals(possibleValue.Value))
{
((ComboBox)controlElement).SelectedIndex = possibleValueId;
}
possibleValueId++;
}
}
else //if (variableType.Equals("int") || variableType.Equals("string"))
{
//Text Box
controlElement = new TextBox
{
Location = new Point(162, height - 3),
Name = variable.ID,
Text = variable.Value.ToString(),
Size = new Size(50, 20),
TabIndex = i + 3
};
}
Controls.Add(controlElement);
_inputControls.Add(controlElement);
_inputControlMap.Add(variable.ID, controlElement);
//add description as label
var description = new Label
{
Location = new Point(252, height),
Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right, //make label grow automatically on window resize
AutoEllipsis = true, //add '...' if text does not fit into label bounds
AutoSize = false, //no autosizing
Name = variable.ID + "_desc",
Text = variable.Description(language),
Cursor = Cursors.Help
};
description.Size = new Size(290, description.Size.Height);
var tooltip = new ToolTip();
tooltip.SetToolTip(description, description.Text);
Controls.Add(description);
}
private void button_apply_Click(object sender, EventArgs e)
{
//save values
if (_mod.Config != null)
{
foreach (var modVariable in _mod.Config.SettingsVariables)
{
var control = _inputControlMap[modVariable.ID];
switch (modVariable.Type)
{
case ModVariableType.Bool:
modVariable.Value = ((CheckBox)control).Checked;
break;
case ModVariableType.Select:
modVariable.Value = (((ComboBox)control).SelectedItem as ComboBoxItem).Value;
break;
case ModVariableType.Int:
try
{
var newValue = int.Parse(control.Text);
modVariable.Value = newValue;
// check min and max values
if (modVariable.Min != null && newValue < Convert.ToInt32(modVariable.Min))
{
modVariable.Value = modVariable.Min;
}
if (modVariable.Max != null && newValue > Convert.ToInt32(modVariable.Max))
{
modVariable.Value = modVariable.Max;
}
}
catch (Exception)
{
//don't change the value
}
break;
case ModVariableType.String:
default:
modVariable.Value = control.Text;
break;
}
}
}
Close();
}
private void button_reset_Click(object sender, EventArgs e)
{
//reset values
if (_mod.Config != null)
{
foreach (var modVariable in _mod.Config.SettingsVariables)
{
var control = _inputControlMap[modVariable.ID];
switch (modVariable.Type)
{
case ModVariableType.Bool:
((CheckBox)control).Checked = (bool)modVariable.Value;
break;
case ModVariableType.Select:
foreach (ComboBoxItem item in ((ComboBox)control).Items)
{
if (item.Value.Equals(modVariable.Value))
{
((ComboBox)control).SelectedItem = item;
break;
}
}
break;
case ModVariableType.Int:
case ModVariableType.String:
default:
control.Text = modVariable.Value.ToString();
break;
}
}
}
}
private void button_default_Click(object sender, EventArgs e)
{
//set values to default
if (_mod.Config != null)
{
foreach (var modVariable in _mod.Config.SettingsVariables)
{
var control = _inputControlMap[modVariable.ID];
switch (modVariable.Type)
{
case ModVariableType.Bool:
((CheckBox)control).Checked = (bool)modVariable.DefaultValue;
break;
case ModVariableType.Select:
foreach (ComboBoxItem item in ((ComboBox)control).Items)
{
if (item.Value.Equals(modVariable.DefaultValue))
{
((ComboBox)control).SelectedItem = item;
break;
}
}
break;
case ModVariableType.Int:
case ModVariableType.String:
default:
control.Text = modVariable.DefaultValue.ToString();
break;
}
}
}
}
private void closeButton_Click(object sender, EventArgs e)
{
Close();
}
private class ComboBoxItem
{
public string Text { get; set; }
public object Value { get; set; }
public override string ToString()
{
return Text;
}
}
}
}