Files
CMLeonOS/Gui/Apps/CodeStudio/LuaSyntaxHighlighter.cs
2026-03-03 21:25:01 +08:00

181 lines
7.3 KiB
C#

using System.Collections.Generic;
using System.Drawing;
namespace CMLeonOS.Gui.Apps.CodeStudio
{
internal static class LuaSyntaxHighlighter
{
private static readonly List<string> Keywords = new List<string>
{
"and", "break", "do", "else", "elseif", "end", "false", "for", "function", "if", "in", "local", "nil", "not", "or", "repeat", "return", "then", "true", "until", "while",
"goto", "self"
};
private static readonly List<string> Builtins = new List<string>
{
"print", "type", "tostring", "tonumber", "ipairs", "pairs", "table", "string", "math", "io", "os", "coroutine", "debug", "package", "utf8", "bit32",
"assert", "collectgarbage", "dofile", "error", "getmetatable", "load", "loadfile", "next", "pcall", "rawequal", "rawget", "rawlen", "rawset", "require", "select", "setmetatable", "xpcall",
"byte", "char", "dump", "find", "format", "gmatch", "gsub", "len", "lower", "match", "rep", "reverse", "sub", "upper",
"abs", "acos", "asin", "atan", "atan2", "ceil", "cos", "cosh", "deg", "exp", "floor", "fmod", "frexp", "huge", "ldexp", "log", "log10", "max", "min", "modf", "pi", "pow", "rad", "random", "randomseed", "sin", "sinh", "sqrt", "tan", "tanh",
"close", "flush", "input", "lines", "open", "output", "popen", "read", "tmpfile", "type", "write",
"clock", "date", "difftime", "execute", "exit", "getenv", "remove", "rename", "setlocale", "time", "tmpname",
"create", "resume", "running", "status", "wrap", "yield",
"concat", "insert", "maxn", "remove", "sort",
"getinfo", "getlocal", "getmetatable", "setmetatable", "setlocal", "traceback",
"loadlib", "seeall", "loaded", "loaders", "path", "cpath", "preload"
};
private static readonly List<string> Operators = new List<string>
{
"+", "-", "*", "/", "%", "^", "#", "==", "~=", "<=", ">=", "<", ">", "=", "(", ")", "[", "]", "{", "}", ";", ":", ",", "..", "...", "."
};
internal static class Colors
{
internal static Color Keyword = Color.FromArgb(255, 0, 128);
internal static Color Builtin = Color.FromArgb(0, 128, 0);
internal static Color String = Color.FromArgb(163, 21, 21);
internal static Color Number = Color.FromArgb(0, 0, 255);
internal static Color Comment = Color.FromArgb(128, 128, 128);
internal static Color Operator = Color.FromArgb(255, 128, 0);
internal static Color Default = Color.White;
}
internal class HighlightedToken
{
internal string Text;
internal Color Color;
internal HighlightedToken(string text, Color color)
{
Text = text;
Color = color;
}
}
internal static List<HighlightedToken> HighlightLine(string line)
{
var tokens = new List<HighlightedToken>();
int i = 0;
while (i < line.Length)
{
char c = line[i];
if (char.IsWhiteSpace(c))
{
int start = i;
while (i < line.Length && char.IsWhiteSpace(line[i]))
{
i++;
}
tokens.Add(new HighlightedToken(line.Substring(start, i - start), Colors.Default));
continue;
}
if (i + 3 < line.Length && line.Substring(i, 4) == "--[[")
{
int start = i;
i += 4;
int endPos = line.IndexOf("--]]", i);
if (endPos != -1)
{
i = endPos + 4;
}
else
{
i = line.Length;
}
tokens.Add(new HighlightedToken(line.Substring(start, i - start), Colors.Comment));
continue;
}
if (c == '-' && i + 1 < line.Length && line[i + 1] == '-')
{
int start = i;
i += 2;
while (i < line.Length && line[i] != '\n')
{
i++;
}
tokens.Add(new HighlightedToken(line.Substring(start, i - start), Colors.Comment));
continue;
}
if (c == '"' || c == '\'')
{
int start = i;
i++;
while (i < line.Length && line[i] != c)
{
if (line[i] == '\\' && i + 1 < line.Length)
{
i += 2;
}
else
{
i++;
}
}
if (i < line.Length)
{
i++;
}
tokens.Add(new HighlightedToken(line.Substring(start, i - start), Colors.String));
continue;
}
if (char.IsDigit(c) || (c == '0' && i + 1 < line.Length && (line[i + 1] == 'x' || line[i + 1] == 'X')))
{
int start = i;
i++;
while (i < line.Length && (char.IsDigit(line[i]) || line[i] == '.' || line[i] == 'e' || line[i] == 'E' || line[i] == 'x' || line[i] == 'X' || line[i] == 'a' || line[i] == 'A' || line[i] == 'b' || line[i] == 'B' || line[i] == 'c' || line[i] == 'C' || line[i] == 'd' || line[i] == 'D' || line[i] == 'f' || line[i] == 'F'))
{
i++;
}
tokens.Add(new HighlightedToken(line.Substring(start, i - start), Colors.Number));
continue;
}
if (char.IsLetter(c) || c == '_')
{
int start = i;
while (i < line.Length && (char.IsLetterOrDigit(line[i]) || line[i] == '_'))
{
i++;
}
string word = line.Substring(start, i - start);
if (Keywords.Contains(word))
{
tokens.Add(new HighlightedToken(word, Colors.Keyword));
}
else if (Builtins.Contains(word))
{
tokens.Add(new HighlightedToken(word, Colors.Builtin));
}
else
{
tokens.Add(new HighlightedToken(word, Colors.Default));
}
continue;
}
if (Operators.Contains(c.ToString()))
{
tokens.Add(new HighlightedToken(c.ToString(), Colors.Operator));
i++;
continue;
}
tokens.Add(new HighlightedToken(c.ToString(), Colors.Default));
i++;
}
return tokens;
}
}
}