| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
- using System.Text.RegularExpressions;
- namespace ET
- {
- internal class OpcodeInfo
- {
- public string Name;
- public int Opcode;
- }
- public static class Proto2CS
- {
- public static void Export()
- {
- InnerProto2CS.Proto2CS();
- Log.Console("proto2cs succeed!");
- }
- }
- public static partial class InnerProto2CS
- {
- private const string protoDir = "../Unity/Assets/Config/Proto";
- private const string clientMessagePath = "../Unity/Assets/Scripts/Model/Generate/Client/Message/";
- private const string serverMessagePath = "../Unity/Assets/Scripts/Model/Generate/Server/Message/";
- private const string clientServerMessagePath = "../Unity/Assets/Scripts/Model/Generate/ClientServer/Message/";
- private static readonly char[] splitChars = [' ', '\t'];
- private static readonly List<OpcodeInfo> msgOpcode = [];
- public static void Proto2CS()
- {
- msgOpcode.Clear();
- RemoveAllFilesExceptMeta(clientMessagePath);
- RemoveAllFilesExceptMeta(serverMessagePath);
- RemoveAllFilesExceptMeta(clientServerMessagePath);
- List<string> list = FileHelper.GetAllFiles(protoDir, "*proto");
- foreach (string s in list)
- {
- if (!s.EndsWith(".proto"))
- {
- continue;
- }
- string fileName = Path.GetFileNameWithoutExtension(s);
- string[] ss2 = fileName.Split('_');
- string protoName = ss2[0];
- string cs = ss2[1];
- int startOpcode = int.Parse(ss2[2]);
- ProtoFile2CS(fileName, protoName, cs, startOpcode);
- }
- RemoveUnusedMetaFiles(clientMessagePath);
- RemoveUnusedMetaFiles(serverMessagePath);
- RemoveUnusedMetaFiles(clientServerMessagePath);
- }
- private static void ProtoFile2CS(string fileName, string protoName, string cs, int startOpcode)
- {
- msgOpcode.Clear();
- string proto = Path.Combine(protoDir, $"{fileName}.proto");
- string s = File.ReadAllText(proto);
- StringBuilder sb = new();
- sb.Append("using MemoryPack;\n");
- sb.Append("using System.Collections.Generic;\n\n");
- sb.Append($"namespace ET\n");
- sb.Append("{\n");
- bool isMsgStart = false;
- string msgName = "";
- string responseType = "";
- StringBuilder sbDispose = new();
- Regex responseTypeRegex = ResponseTypeRegex();
- foreach (string line in s.Split('\n'))
- {
- string newline = line.Trim();
- if (string.IsNullOrEmpty(newline))
- {
- continue;
- }
- if (responseTypeRegex.IsMatch(newline))
- {
- responseType = responseTypeRegex.Replace(newline, string.Empty);
- responseType = responseType.Trim().Split(' ')[0].TrimEnd('\r', '\n');
- continue;
- }
- if (!isMsgStart && newline.StartsWith("//"))
- {
- if (newline.StartsWith("///"))
- {
- sb.Append("\t/// <summary>\n");
- sb.Append($"\t/// {newline.TrimStart('/', ' ')}\n");
- sb.Append("\t/// </summary>\n");
- }
- else
- {
- sb.Append($"\t// {newline.TrimStart('/', ' ')}\n");
- }
- continue;
- }
- if (newline.StartsWith("message"))
- {
- isMsgStart = true;
- string parentClass = "";
- msgName = newline.Split(splitChars, StringSplitOptions.RemoveEmptyEntries)[1];
- string[] ss = newline.Split(["//"], StringSplitOptions.RemoveEmptyEntries);
- if (ss.Length == 2)
- {
- parentClass = ss[1].Trim();
- }
- msgOpcode.Add(new OpcodeInfo() { Name = msgName, Opcode = ++startOpcode });
- sb.Append($"\t[MemoryPackable]\n");
- sb.Append($"\t[Message({protoName}.{msgName})]\n");
- if (!string.IsNullOrEmpty(responseType))
- {
- sb.Append($"\t[ResponseType(nameof({responseType}))]\n");
- }
- sb.Append($"\tpublic partial class {msgName} : MessageObject");
- if (parentClass is "IActorMessage" or "IActorRequest" or "IActorResponse")
- {
- sb.Append($", {parentClass}\n");
- }
- else if (parentClass != "")
- {
- sb.Append($", {parentClass}\n");
- }
- else
- {
- sb.Append('\n');
- }
- continue;
- }
- if (isMsgStart)
- {
- if (newline.StartsWith('{'))
- {
- sbDispose.Clear();
- sb.Append("\t{\n");
- sb.Append($"\t\tpublic static {msgName} Create(bool isFromPool = false)\n\t\t{{\n\t\t\treturn ObjectPool.Fetch<{msgName}>(isFromPool);\n\t\t}}\n\n");
- continue;
- }
- if (newline.StartsWith('}'))
- {
- isMsgStart = false;
- responseType = "";
- // 加了no dispose则自己去定义dispose函数,不要自动生成
- if (!newline.Contains("// no dispose"))
- {
- sb.Append($"\t\tpublic override void Dispose()\n\t\t{{\n\t\t\tif (!this.IsFromPool)\n\t\t\t{{\n\t\t\t\treturn;\n\t\t\t}}\n\n\t\t\t{sbDispose.ToString().TrimEnd('\t')}\n\t\t\tObjectPool.Recycle(this);\n\t\t}}\n");
- }
- sb.Append("\t}\n\n");
- continue;
- }
- if (newline.StartsWith("//"))
- {
- sb.Append("\t\t/// <summary>\n");
- sb.Append($"\t\t/// {newline.TrimStart('/', ' ')}\n");
- sb.Append("\t\t/// </summary>\n");
- continue;
- }
- string memberStr;
- if (newline.Contains("//"))
- {
- string[] lineSplit = newline.Split("//");
- memberStr = lineSplit[0].Trim();
- sb.Append("\t\t/// <summary>\n");
- sb.Append($"\t\t/// {lineSplit[1].Trim()}\n");
- sb.Append("\t\t/// </summary>\n");
- }
- else
- {
- memberStr = newline;
- }
- if (memberStr.StartsWith("map<"))
- {
- Map(sb, memberStr, sbDispose);
- }
- else if (memberStr.StartsWith("repeated"))
- {
- Repeated(sb, memberStr, sbDispose);
- }
- else
- {
- Members(sb, memberStr, sbDispose);
- }
- }
- }
- sb.Append("\tpublic static class " + protoName + "\n\t{\n");
- foreach (OpcodeInfo info in msgOpcode)
- {
- sb.Append($"\t\tpublic const ushort {info.Name} = {info.Opcode};\n");
- }
- sb.Append("\t}\n");
- sb.Append('}');
- sb.Replace("\t", " ");
- string result = sb.ToString().ReplaceLineEndings("\r\n");
- if (cs.Contains('C'))
- {
- GenerateCS(result, clientMessagePath, proto);
- GenerateCS(result, serverMessagePath, proto);
- GenerateCS(result, clientServerMessagePath, proto);
- }
- if (cs.Contains('S'))
- {
- GenerateCS(result, serverMessagePath, proto);
- GenerateCS(result, clientServerMessagePath, proto);
- }
- }
- private static void GenerateCS(string result, string path, string proto)
- {
- if (!Directory.Exists(path))
- {
- Directory.CreateDirectory(path);
- }
- string csPath = Path.Combine(path, Path.GetFileNameWithoutExtension(proto) + ".cs");
- using FileStream txt = new(csPath, FileMode.Create, FileAccess.ReadWrite);
- using StreamWriter sw = new(txt);
- sw.Write(result);
- }
- private static void Map(StringBuilder sb, string newline, StringBuilder sbDispose)
- {
- int start = newline.IndexOf('<') + 1;
- int end = newline.IndexOf('>');
- string types = newline.Substring(start, end - start);
- string[] ss = types.Split(',');
- string keyType = ConvertType(ss[0].Trim());
- string valueType = ConvertType(ss[1].Trim());
- string tail = newline[(end + 1)..];
- ss = tail.Trim().Replace(";", "").Split(' ');
- string v = ss[0];
- int n = int.Parse(ss[2]);
- sb.Append("\t\t[MongoDB.Bson.Serialization.Attributes.BsonDictionaryOptions(MongoDB.Bson.Serialization.Options.DictionaryRepresentation.ArrayOfArrays)]\n");
- sb.Append($"\t\t[MemoryPackOrder({n - 1})]\n");
- sb.Append($"\t\tpublic Dictionary<{keyType}, {valueType}> {v} {{ get; set; }} = new();\n");
- sbDispose.Append($"this.{v}.Clear();\n\t\t\t");
- }
- private static void Repeated(StringBuilder sb, string newline, StringBuilder sbDispose)
- {
- try
- {
- int index = newline.IndexOf(';');
- newline = newline.Remove(index);
- string[] ss = newline.Split(splitChars, StringSplitOptions.RemoveEmptyEntries);
- string type = ss[1];
- type = ConvertType(type);
- string name = ss[2];
- int n = int.Parse(ss[4]);
- sb.Append($"\t\t[MemoryPackOrder({n - 1})]\n");
- sb.Append($"\t\tpublic List<{type}> {name} {{ get; set; }} = new();\n\n");
- sbDispose.Append($"this.{name}.Clear();\n\t\t\t");
- }
- catch (Exception e)
- {
- Console.WriteLine($"{newline}\n {e}");
- }
- }
- private static string ConvertType(string type)
- {
- return type switch
- {
- "int16" => "short",
- "int32" => "int",
- "bytes" => "byte[]",
- "uint32" => "uint",
- "long" => "long",
- "int64" => "long",
- "uint64" => "ulong",
- "uint16" => "ushort",
- _ => type
- };
- }
- private static void Members(StringBuilder sb, string newline, StringBuilder sbDispose)
- {
- try
- {
- int index = newline.IndexOf(';');
- newline = newline.Remove(index);
- string[] ss = newline.Split(splitChars, StringSplitOptions.RemoveEmptyEntries);
- string type = ss[0];
- string name = ss[1];
- int n = int.Parse(ss[3]);
- string typeCs = ConvertType(type);
- sb.Append($"\t\t[MemoryPackOrder({n - 1})]\n");
- sb.Append($"\t\tpublic {typeCs} {name} {{ get; set; }}\n\n");
- switch (typeCs)
- {
- case "bytes":
- {
- break;
- }
- default:
- sbDispose.Append($"this.{name} = default;\n\t\t\t");
- break;
- }
- }
- catch (Exception e)
- {
- Console.WriteLine($"{newline}\n {e}");
- }
- }
- /// <summary>
- /// 删除meta以外的所有文件
- /// </summary>
- static void RemoveAllFilesExceptMeta(string directory)
- {
- if (!Directory.Exists(directory))
- {
- return;
- }
- DirectoryInfo targetDir = new(directory);
- FileInfo[] fileInfos = targetDir.GetFiles("*", SearchOption.AllDirectories);
- foreach (FileInfo info in fileInfos)
- {
- if (!info.Name.EndsWith(".meta"))
- {
- File.Delete(info.FullName);
- }
- }
- }
- /// <summary>
- /// 删除多余的meta文件
- /// </summary>
- static void RemoveUnusedMetaFiles(string directory)
- {
- if (!Directory.Exists(directory))
- {
- return;
- }
- DirectoryInfo targetDir = new(directory);
- FileInfo[] fileInfos = targetDir.GetFiles("*.meta", SearchOption.AllDirectories);
- foreach (FileInfo info in fileInfos)
- {
- string pathWithoutMeta = info.FullName.Remove(info.FullName.LastIndexOf(".meta", StringComparison.Ordinal));
- if (!File.Exists(pathWithoutMeta) && !Directory.Exists(pathWithoutMeta))
- {
- File.Delete(info.FullName);
- }
- }
- }
- [GeneratedRegex(@"//\s*ResponseType")]
- private static partial Regex ResponseTypeRegex();
- }
- }
|