-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathIConfig.cs
More file actions
43 lines (38 loc) · 1.5 KB
/
IConfig.cs
File metadata and controls
43 lines (38 loc) · 1.5 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
using System;
using System.Collections.Generic;
using kOS.Safe.Encapsulation.Suffixes;
namespace kOS.Safe.Encapsulation
{
public interface IConfig: ISuffixed
{
int InstructionsPerUpdate { get; set; }
bool UseCompressedPersistence { get; set; }
bool ShowStatistics { get; set; }
bool StartOnArchive { get; set; }
bool ObeyHideUI { get; set; }
bool EnableSafeMode { get; set; }
bool VerboseExceptions { get; set; }
bool EnableTelnet { get; set; }
int TelnetPort { get; set; }
bool AudibleExceptions { get; set; }
string TelnetIPAddrString { get; set; }
bool UseBlizzyToolbarOnly { get; set; }
int TerminalFontDefaultSize {get; set; }
string TerminalFontName {get; set; }
double TerminalBrightness {get; set; }
int TerminalDefaultWidth { get; set; }
int TerminalDefaultHeight { get; set; }
bool AllowClobberBuiltIns { get; set; }
bool SuppressAutopilot { get; set; }
bool DeprecatedWarnings { get; set; }
/// <summary>
/// Return the moment in time when the most recent change to any of the
/// config values happened. Used by KOSTollBarWindow to decide whether or not
/// it needs to assume its cached values are stale and need re-loading.
/// </summary>
DateTime TimeStamp { get; }
bool DebugEachOpcode { get; set; }
void SaveConfig();
IList<ConfigKey> GetConfigKeys();
}
}