forked from TheRoboManTAS/Celeste-TAS-lobby-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.cs
40 lines (33 loc) · 1.38 KB
/
Settings.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
namespace RoboRouter;
public class Settings
{
[Setting(Input = "txt_directory.Text")]
public string? Directory;
[Setting(Input = "txt_nameSeparators.Text")]
public string NameSeparators = "-";
[Setting(Input = "txt_finishName.Text")]
public string? FinishName;
[Setting(Input = "cbx_useTableInput.Checked")]
public bool UseTableInput = false;
[Setting(Input = "txt_tableInput.Text")]
public string? TableInput;
[Setting(Input = "cbx_newConnectionsMode.Checked")]
public bool newConnectionsMode = false;
[Setting(Input = "txt_newConnectionsInput.Text")]
public string NewConnectionsInput = "Format: 13-18, 0-20";
[Setting(Input = "num_restartPenalty.Value")]
public int restartPenalty = 190;
[Setting(Input = "onlyRequiredRestartsToolStripMenuItem.Checked")]
public bool RequiredRestarts = false;
[Setting(Input = "maxRestarts.Value")]
public int maxRestarts = -1;
[Setting(Input = "topNSolutions.Value")]
public int topNSolutions = 100;
// [Setting(Input = "distinctResultEndTimesToolStripMenuItem.Checked")]
// public bool DistinctTimings = true;
[Setting(Input = "logResultsToTextFilesToolStripMenuItem.Checked")]
public bool LogResults = false;
//[Setting(Input = "disableResultSortingToolStripMenuItem.Checked")]
//public bool DisableSorting = false;
public bool KnowsHelpTxt = false;
}