unity3d:protobuf .java转.cs

服务器端定义好protobuf结构,放unity编辑器中生成.cs的结构

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using System.IO;
using System.Text;
public class JavaProtoToCs : EditorWindow
{

    [MenuItem("DoJavaToCs/DoProtoToCs")]
    static void DoProtoToCs()
    {
        string fullPath = "Assets/VirtualCity/ProtoDefine/Java";  //路径
        string toPath = "Assets/VirtualCity/ProtoDefine";
        //获取指定路径下面的所有资源文件  
        if (Directory.Exists(fullPath))
        {
            DirectoryInfo direction = new DirectoryInfo(fullPath);
            FileInfo[] files = direction.GetFiles("*", SearchOption.AllDirectories);

            for (int i = 0; i < files.Length; i++)
            {
                if (files[i].Name.EndsWith(".java"))
                {
                    string fileOnlyName = files[i].Name.Replace(".java", "");

                    StringBuilder tempBuilder = new StringBuilder();
                    tempBuilder.Append("using System.Collections.Generic;");
                    tempBuilder.AppendLine();
                    tempBuilder.Append("using ProtoBuf;");
                    tempBuilder.AppendLine();
                    tempBuilder.Append("namespace ProtoDefine {");
                    tempBuilder.AppendLine();
                    tempBuilder.Append("[ProtoContract]");
                    tempBuilder.AppendLine();
                    var strs = File.ReadAllLines(files[i].FullName);
                    int protoIdx = 1;
                    for (int lineIdx = 0; lineIdx < strs.Length; lineIdx++)
                    {
                        if (strs[lineIdx].Contains("import") || strs[lineIdx].Contains("package") || strs[lineIdx].Contains("MessageMeta"))
                        {
                            continue;
                        }

                        if (strs[lineIdx].Contains("Protobuf"))
                        {
                            string sAdd = "[ProtoMember(" + protoIdx + ")]";
                            protoIdx++;

                            tempBuilder.Append(sAdd);
                            tempBuilder.AppendLine();
                            continue;

                        }

                        if (strs[lineIdx].Contains("class"))
                        {
                            string[] bufStr = strs[lineIdx].Split(' ');
                            string sClass = bufStr[0] + " " +  bufStr[1] + " "+ bufStr[2] + "{";

                            tempBuilder.Append(sClass);
                            tempBuilder.AppendLine();
                            continue;
                        }
                        strs[lineIdx] = strs[lineIdx].Replace("Long", "long?");
                        strs[lineIdx] = strs[lineIdx].Replace("Double", "double?");
                        strs[lineIdx] = strs[lineIdx].Replace("String", "string");
                        strs[lineIdx] = strs[lineIdx].Replace("Integer", "int?");
                        strs[lineIdx] = strs[lineIdx].Replace("Short", "short?");
                        strs[lineIdx] = strs[lineIdx].Replace("Map", "Dictionary");
    
                        tempBuilder.Append(strs[lineIdx]);
                      
                        tempBuilder.AppendLine();
                    }
                    tempBuilder.Append("}");

                    string tempFilePath = string.Format("{0}/{1}.cs", toPath, fileOnlyName);
                    if (File.Exists(tempFilePath))
                    {
                        File.Delete(tempFilePath);
                    }
                    File.WriteAllText(tempFilePath, tempBuilder.ToString());
                }
            }


        }

        Debug.Log("ProtoToCs转换完成");
        AssetDatabase.Refresh(ImportAssetOptions.ForceUpdate);
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

四夕立羽

你的鼓励将是我创作的最大动力。

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值