forked from anydream/il2cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodePrinter.cs
More file actions
81 lines (69 loc) · 1.44 KB
/
CodePrinter.cs
File metadata and controls
81 lines (69 loc) · 1.44 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
using System.Diagnostics;
using System.Text;
namespace il2cpp
{
internal class CodePrinter
{
public int Indents;
public int LineCount { get; private set; }
public int Length => Builder.Length;
private readonly StringBuilder Builder = new StringBuilder();
public override string ToString()
{
return Builder.ToString();
}
public void Append(string str)
{
if (str == null)
return;
bool isNewLine = IsNewLine();
foreach (char ch in str)
{
if (ch == '\r')
continue;
if (ch == '\n')
{
isNewLine = true;
++LineCount;
}
else if (isNewLine)
{
isNewLine = false;
AppendIndent();
}
Builder.Append(ch);
}
}
public void AppendLine(string str)
{
Append(str);
Builder.Append('\n');
++LineCount;
}
public void AppendLine()
{
Builder.Append('\n');
++LineCount;
}
public void AppendFormat(string fmt, params object[] args)
{
Debug.Assert(args.Length > 0);
Append(string.Format(fmt, args));
}
public void AppendFormatLine(string fmt, params object[] args)
{
Debug.Assert(args.Length > 0);
AppendLine(string.Format(fmt, args));
}
private void AppendIndent()
{
for (int i = 0; i < Indents; ++i)
Builder.Append('\t');
}
private bool IsNewLine()
{
return Builder.Length == 0 ||
Builder[Builder.Length - 1] == '\n';
}
}
}