IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> Unity C# 网络学习(十二)——Protobuf生成协议 -> 正文阅读

[游戏开发]Unity C# 网络学习(十二)——Protobuf生成协议

Unity C# 网络学习(十二)——Protobuf生成协议

一.安装

  • Protobuf官网下载对应操作系统的protoc,用于将.proto文件生成对应语言的协议语言文件在这里插入图片描述
  • 由于我使用的是C#所以可以使用提供的C#的序列化反序列化的项目,然后自己编译出DLL放入Unity中使用
    在这里插入图片描述

二.Protobuf 配置的规则(.proto文件的语法)

syntax = "proto3";//决定了proto文档的版本号
package GamePlayerTest;//命名空间

import "test2.proto";

//消息类
message TestMsg1 {
    //成员类型 成员名称 唯一编号
    
    //浮点数
    float testF = 1;
    double testD = 2;
    //变长编码
    //Protobuf会自动优化,可以尽量少的使用字节数,来存储内容
    int32 testInt32 = 3;  //不太适用于负数
    int64 testInt64 = 4;
    
    //更适用于负数
    sint32 testSInt32 = 5;
    sint64 testSInt64 = 6;
    
    //无符号变长编码
    uint32 testUInt32 = 7;
    uint64 testUInt64 = 8;
    
    //固定字节数类型
    fixed32 testFixed32 = 9; //通常用于表示大于2的28次方的数 uint
    fixed64 testFixed64 = 10; //通常用于表示大于2的56次方的数 ulong
    
    sfixed32 testSFixed32 = 11; //int
    sfixed64 testSFixed64 = 12; //long
    
    //数组
    repeated int32 arr_int32 = 13;
    repeated string arr_string = 14;
    //字典
    map<int32,string> map1 = 15;
    //枚举
    TestEnum1 test_enum1 = 16;
    
    //嵌套消息
    message TestMsg2{
        int32 test_int32 = 1;
    }
    
    TestMsg2 test_msg2 = 17;
    //嵌套枚举
    enum TestEnum2{
        NORMAL = 0;
        BOSS = 1;
    }
    
    TestEnum2 test_enum2 = 18;

    GameSystemTest.HeartMsg heart_msg = 19;
}

enum TestEnum1{
    NORMAL = 0;
    BOSS = 5;
}
syntax = "proto3";
package GameSystemTest;

message HeartMsg{
    int64 time = 1;
}

三.生成对应的C#代码

  • 打开cmd窗口
  • 进入protoc.exe所在文件夹(也可以直接拖入到cmd中)
  • 输入转换指令
  • protoc.exe -I=配置路径 =csharp_out=输出路径 配置文件名

四.封装快捷生成协议文件

public static class GenerateProtobuf
{
    private const string ProtocPathExe = @"D:\Unity_Project\AgainLearnNet\Protobuf\protoc.exe";
    private const string ProtoPath = @"D:\Unity_Project\AgainLearnNet\Protobuf\proto";
    private const string OutPath = @"D:\Unity_Project\AgainLearnNet\Protobuf\csharp";
    [MenuItem("Protobuf/GenerateCSharp")]
    private static void GenerateCSharp()
    {
        DirectoryInfo directoryInfo = new DirectoryInfo(ProtoPath);
        FileInfo[] fileInfos = directoryInfo.GetFiles();
        foreach (var fileInfo in fileInfos)
        {
            if(fileInfo.Extension != ".proto")
                continue;
            Process cmd = new Process();
            cmd.StartInfo.FileName = ProtocPathExe;
            cmd.StartInfo.Arguments = $"-I={ProtoPath} --csharp_out={OutPath} {fileInfo.Name}";

            cmd.Start();
        }
    }
}

五.协议的序列化和反序列化

1.文本流

    private void Start()
    {
        MyTestMsg myTestMsg = new MyTestMsg();
        myTestMsg.PlayerId = 1;
        myTestMsg.Name = "zzs";
        myTestMsg.Friends.Add("wy");
        myTestMsg.Friends.Add("pnb");
        myTestMsg.Friends.Add("lzq");
        myTestMsg.Map.Add(1,"ywj");
        myTestMsg.Map.Add(2,"zzs");

        string path = Application.persistentDataPath + "/testMsg.msg";
        using (FileStream fs = new FileStream(path,FileMode.Create))
        {
            myTestMsg.WriteTo(fs);
        }

        MyTestMsg newMyTestMsg;
        using (FileStream fs = new FileStream(path,FileMode.Open))
        {
            newMyTestMsg = MyTestMsg.Parser.ParseFrom(fs);
        }
        Debug.Log(newMyTestMsg.PlayerId);
        Debug.Log(newMyTestMsg.Name);
        Debug.Log(newMyTestMsg.Friends.Count);
        Debug.Log(newMyTestMsg.Map[1]);
        Debug.Log(newMyTestMsg.Map[2]);
    }

2.内存流

    private void Start()
    {
        MyTestMsg myTestMsg = new MyTestMsg
        {
            PlayerId = 1,
            Name = "zzs"
        };
        myTestMsg.Friends.Add("wy");
        myTestMsg.Friends.Add("pnb");
        myTestMsg.Friends.Add("lzq");
        myTestMsg.Map.Add(1,"ywj");
        myTestMsg.Map.Add(2,"zzs");

        byte[] buffer;
        using (MemoryStream ms = new MemoryStream())
        {
            myTestMsg.WriteTo(ms);
            buffer = ms.ToArray();
        }

        MyTestMsg newMyTestMsg;
        using (MemoryStream ms = new MemoryStream(buffer))
        {
            newMyTestMsg = MyTestMsg.Parser.ParseFrom(ms);
        }
        Debug.Log(newMyTestMsg.PlayerId);
        Debug.Log(newMyTestMsg.Name);
        Debug.Log(newMyTestMsg.Friends.Count);
        Debug.Log(newMyTestMsg.Map[1]);
        Debug.Log(newMyTestMsg.Map[2]);
    }

六.Protobuf的序列化和反序列化(优化调用方式)

    private void Start()
    {
        MyTestMsg myTestMsg = new MyTestMsg
        {
            PlayerId = 1,
            Name = "zzs"
        };
        myTestMsg.Friends.Add("wy");
        myTestMsg.Friends.Add("pnb");
        myTestMsg.Friends.Add("lzq");
        myTestMsg.Map.Add(1,"ywj");
        myTestMsg.Map.Add(2,"zzs");
        
        
        byte[] buffer = myTestMsg.ToByteArray();
        MyTestMsg newMyTestMsg = MyTestMsg.Parser.ParseFrom(buffer);
        
        
        Debug.Log(newMyTestMsg.PlayerId);
        Debug.Log(newMyTestMsg.Name);
        Debug.Log(newMyTestMsg.Friends.Count);
        Debug.Log(newMyTestMsg.Map[1]);
        Debug.Log(newMyTestMsg.Map[2]);
    }
  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-07-04 23:17:42  更:2022-07-04 23:18:13 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 10:59:07-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码