2010-10-26 16:32:48 +02:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using RusticiSoftware.Translator.Utils;
|
|
|
|
using System.IO;
|
|
|
|
namespace RusticiSoftware.Translator.CSharp
|
|
|
|
{
|
|
|
|
public class CS2JSettings
|
|
|
|
{
|
|
|
|
|
2010-12-09 17:30:11 +01:00
|
|
|
public bool DisplayTokens { get; set; }
|
2010-10-26 16:32:48 +02:00
|
|
|
|
2010-12-09 17:30:11 +01:00
|
|
|
// dump parse trees to stdout
|
|
|
|
public bool DumpCSharp { get; set; }
|
|
|
|
public bool DumpJavaSyntax { get; set; }
|
|
|
|
public bool DumpJava { get; set; }
|
2010-10-26 16:32:48 +02:00
|
|
|
|
2010-12-09 17:30:11 +01:00
|
|
|
public bool DumpXmls { get; set; }
|
|
|
|
public bool DumpEnums { get; set; }
|
|
|
|
public string OutDir { get; set; }
|
|
|
|
public string CheatDir { get; set; }
|
|
|
|
public IList<string> NetRoot { get; set; }
|
|
|
|
public IList<string> ExNetRoot { get; set; }
|
|
|
|
public IList<string> AppRoot { get; set; }
|
|
|
|
public IList<string> ExAppRoot { get; set; }
|
|
|
|
public IList<string> Exclude { get; set; }
|
|
|
|
public IList<string> MacroDefines { get; set; }
|
|
|
|
public string XmlDir { get; set; }
|
|
|
|
public string EnumDir { get; set; }
|
|
|
|
public int Verbosity { get; set; }
|
|
|
|
|
|
|
|
public int DebugLevel { get; set; }
|
|
|
|
|
|
|
|
public bool Warnings { get; set; }
|
2010-10-26 16:32:48 +02:00
|
|
|
|
2010-12-09 17:30:11 +01:00
|
|
|
public bool TranslatorKeepParens
|
|
|
|
{
|
|
|
|
get; set;
|
|
|
|
}
|
2010-10-26 16:32:48 +02:00
|
|
|
|
2010-12-21 12:03:24 +01:00
|
|
|
public bool TranslatorAddTimeStamp
|
|
|
|
{
|
|
|
|
get; set;
|
|
|
|
}
|
|
|
|
|
2010-12-09 17:30:11 +01:00
|
|
|
public CS2JSettings ()
|
|
|
|
{
|
2010-10-26 16:32:48 +02:00
|
|
|
|
2010-12-09 17:30:11 +01:00
|
|
|
DisplayTokens = false;
|
|
|
|
|
|
|
|
// dump parse trees to stdout
|
2010-10-26 16:32:48 +02:00
|
|
|
DumpCSharp = false;
|
|
|
|
DumpJavaSyntax = false;
|
|
|
|
DumpJava = false;
|
|
|
|
|
|
|
|
DumpXmls = false;
|
|
|
|
DumpEnums = false;
|
|
|
|
OutDir = Directory.GetCurrentDirectory();
|
|
|
|
CheatDir = "";
|
|
|
|
NetRoot = new List<string>();
|
|
|
|
ExNetRoot = new List<string>();
|
|
|
|
AppRoot = new List<string>();
|
|
|
|
ExAppRoot = new List<string>();
|
|
|
|
Exclude = new List<string>();
|
|
|
|
MacroDefines = new List<string>();
|
|
|
|
XmlDir = Path.Combine(Directory.GetCurrentDirectory(), "tmpXMLs");
|
2010-12-09 17:30:11 +01:00
|
|
|
EnumDir = Path.Combine(Directory.GetCurrentDirectory(), "enums");
|
2010-10-26 16:32:48 +02:00
|
|
|
Verbosity = 0;
|
|
|
|
DebugLevel = 0;
|
2010-10-29 19:47:23 +02:00
|
|
|
Warnings = false;
|
2010-12-09 17:30:11 +01:00
|
|
|
|
|
|
|
TranslatorKeepParens = true;
|
2010-12-21 12:03:24 +01:00
|
|
|
TranslatorAddTimeStamp = true;
|
2010-12-09 17:30:11 +01:00
|
|
|
}
|
2010-10-26 16:32:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|