Unity3d v5.3+protoBuf

一、先去 https://github.com/mgravell/protobuf-net/tree/master/protobuf-net 把protobuf-net的代碼下載下來。node

二、使用Monodevelop打開protobuf-net-master/protobuf-net/protobuf-net.csproj,而後右鍵選擇Build protobuf-net 項目。在protobuf-net-master/protobuf-net/目錄下會生成一個bin的目錄。(選擇Release)git

三、把protobuf-net.dll複製到protobuf-net-master/ProtoGen/目錄下,而後使用MonoDevelop打開protobuf-net-master/ProtoGen/ProtoGen.csproj 工程,添加引用(以下圖),build ProtoGengithub

四、這時會在ProtoGen/bin/生成protogen.exe,而後把整個protobuf-net-master文件夾複製到win操做系統,沒有win的能夠安裝一個虛擬機。c#

五、執行protogen.exe -i:a.proto -o:a.cs,則會在本目錄生成一個a.cs的c#文件ui

六、把protobuf-net-master/protobuf-net/源代碼拷貝到unity工程scritps目錄下(能夠把bin文件夾去掉),a.cs文件添加到scripts文件中,這是會有一個unsafe的錯誤。spa

七、在Assets目錄下添加smcs.rsp文件,文件內容只有-unsafe。重啓unity,錯誤消失。操作系統

八、解析數據。(下面是本地proto數據解析)。code

FileStream fs = null;
        try{
            fs = new FileStream (Application.dataPath+"/StreamingAssets/64.proto",FileMode.Open,FileAccess.Read);
        }catch(Exception ex){
            Debug.LogError (ex.Message);
        }
        CMaindata mainData = new CMaindata();
        mainData = ProtoBuf.Serializer.Deserialize<CMaindata> (fs);

九、大功告成!!!ip

相關文章
相關標籤/搜索