protobuf

作者:追风剑情 发布于:2019-1-28 22:58 分类:Unity3d

protobuf源码下载

https://github.com/protocolbuffers/protobuf
https://github.com/protocolbuffers/protobuf/releases
http://repo1.maven.org/maven2/com/google/protobuf/
生成lua代码
https://github.com/sean-lin/protoc-gen-lua

XLua集成protobuf
https://github.com/chexiongsheng/build_xlua_with_libs


protobuf编译器下载
https://github.com/protocolbuffers/protobuf/releases

protobuf(百度网盘)下载
链接:https://pan.baidu.com/s/1TiH0nzWJhYipptBgbH084g 
提取码:z5rl

.NET Core环境

1、查看电脑上安装了哪些版本的.NET Core
1111.png

2、查看当前使用的.NET Core版本
2222.png

Windows平台

下载编译器: protoc-{版本号}-win32.zip
下载运行时: protobuf-csharp-{版本号}.zip

1、配置环境变量

22222.png

2、检查版本号

333.png

3、写一个测试用的协议文件(addressbook.proto)
这个文件是个官方示例 protobuf-csharp-3.6.1\protobuf-3.6.1\examples\addressbook.proto

  1. // See README.txt for information and build instructions.
  2. //
  3. // Note: START and END tags are used in comments to define sections used in
  4. // tutorials. They are not part of the syntax for Protocol Buffers.
  5. //
  6. // To get an in-depth walkthrough of this file and the related examples, see:
  7. // https://developers.google.com/protocol-buffers/docs/tutorials
  8.  
  9. // [START declaration]
  10. syntax = "proto3";
  11. package tutorial;
  12.  
  13. import "google/protobuf/timestamp.proto";
  14. // [END declaration]
  15.  
  16. // [START java_declaration]
  17. option java_package = "com.example.tutorial";
  18. option java_outer_classname = "AddressBookProtos";
  19. // [END java_declaration]
  20.  
  21. // [START csharp_declaration]
  22. option csharp_namespace = "Google.Protobuf.Examples.AddressBook";
  23. // [END csharp_declaration]
  24.  
  25. // [START messages]
  26. message Person {
  27. string name = 1;
  28. int32 id = 2; // Unique ID number for this person.
  29. string email = 3;
  30.  
  31. enum PhoneType {
  32. MOBILE = 0;
  33. HOME = 1;
  34. WORK = 2;
  35. }
  36.  
  37. message PhoneNumber {
  38. string number = 1;
  39. PhoneType type = 2;
  40. }
  41.  
  42. repeated PhoneNumber phones = 4;
  43.  
  44. google.protobuf.Timestamp last_updated = 5;
  45. }
  46.  
  47. // Our address book file is just one of these.
  48. message AddressBook {
  49. repeated Person people = 1;
  50. }
  51. // [END messages]


4、新建两个文件夹cpp和csharp分别用来存放生成后的C++文件和C#文件

55555.png

5、将协议文件编译成对应的C++代码和C#代码

44444.png

如果协议文件在当前目录下也可以这样写,示例:

1111.png

生成的C++代码

666.png


生成的C#代码

777.png

生成pb文件

9999.png

8888.png

7777.png

6、用Visual Studio编译Protobuf运行时库

下载protobuf-csharp-{版本号}.zip

333.png

如果打开项目报错
error.png
解决方法:修改项目中global.json中所指定的.NET Core SDK版本为系统中所安装的版本即可
在解决方案所在目录新建build.cmd

  1. @echo off
  2. dotnet run --project build -- %*
  3. pause
globaljson.png
从上面的报错信息可以看到项目中所使用的.NET Core SDK版本以及系统中所安装的.NET Core SDK版本列表


查看Google.Protobuf项目使用的.NET Core SDK版本号
protobuf-csharp-3.12.3\protobuf-3.12.3\global.json
33333.png

444.png

5555.png

6666.png

将Google.Protobuf.dll和Google.Protobuf.pdb拷到Unity工程的Plugins下,接下来就可以对协议进行序列化和反序列化了。

777.png

也可以拷贝net45

66666.png


测试示例:

定义msg.proto文件

  1. syntax = "proto3"; //版本号
  2. package proto; //包名
  3.  
  4. option csharp_namespace="Proto";
  5.  
  6. message StoreRequest {
  7. string name = 1;
  8. bool b = 2;
  9. double num1 = 3;
  10. float num2 = 4;
  11. int32 num3 = 5;
  12. repeated string myList=6;
  13. enum GenderType
  14. {
  15. None = 0;
  16. Male = 1;
  17. Female = 2;
  18. }
  19. GenderType gender = 7;
  20. map<string, int32> dic = 8;
  21. }


编译msg.proto为C#代码并放到Unity工程下(Assets/Proto/Msg.cs)

888.png

测试代码

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using UnityEngine;
  5.  
  6. public class TestProto : MonoBehaviour
  7. {
  8. void Start()
  9. {
  10. Proto.StoreRequest req = new Proto.StoreRequest();
  11. req.Name = "东东";
  12. req.B = true;
  13. req.Num1 = 1;
  14. req.Num2 = 2;
  15. req.Num3 = 3;
  16. req.Gender = Proto.StoreRequest.Types.GenderType.Male;
  17. req.MyList.Add("aaa");
  18. req.MyList.Add("bbb");
  19. req.Dic["k1"] = 1;
  20. req.Dic["k2"] = 2;
  21.  
  22. //将协议数据序列化到文件中
  23. string path = Application.dataPath + "/msg.pb";
  24. if (File.Exists(path))
  25. File.Delete(path);
  26. FileStream writer = new FileStream(path, FileMode.CreateNew);
  27. Google.Protobuf.CodedOutputStream output = new Google.Protobuf.CodedOutputStream(writer, false);
  28. req.WriteTo(output);
  29. output.Flush();
  30. output.Dispose();
  31. Debug.Log(path);
  32.  
  33. //从文件中读取协议数据
  34. System.IO.FileStream reader = new System.IO.FileStream(path, System.IO.FileMode.Open);
  35. Proto.StoreRequest ureq = Proto.StoreRequest.Parser.ParseFrom(reader);
  36. reader.Dispose();
  37. }
  38. }

常用的Stream的子类有:
1) MemoryStream 存储在内存中的字节流
2) FileStream 存储在文件系统的字节流
3) NetworkStream 通过网络设备读写的字节流
4) BufferedStream 为其他流提供缓冲的流


断点查看反序列化结果

2222.png

查看msg.pb文件内容,可见协议数据已经被序列化到文件中。

1111.png


更多参考资料
Protobuf3语言指南 https://blog.csdn.net/u011518120/article/details/54604615
Protobuf的使用流程 https://www.cnblogs.com/guxin/p/9091392.html
Unity中使用Protobuf https://blog.csdn.net/qq_36458268/article/details/81067280
Python安装Protobuf http://www.devacg.com/?post=904
Lua Protobuf http://www.devacg.com/?post=905
xLua集成protobuf http://www.devacg.com/?post=910

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号