在cocos creator TS 中如何使用protobuf(自动化,评论中有)

  • Post author:
  • Post category:其他


// account.proto
package protoTest;
//角色对象
message Player
{
    optional int64 id = 1;
    optional string name = 2;
    optional int32 level = 3;//等级
}
npm install protobufjs -g // 全局安装,注:项目中安装也可以,在执行下面命令的时候,指明相对路径
// 并将安装后的目录下的dist/protobuf.js拖到cocos creator 并设置为插件,全部勾选
// 在.proto同级文件夹下,执行:
pbjs -t static-module -w commonjs -o account.js account.proto
// 修改生成后的account.js文件
var $protobuf = require(“protobufjs/minimal”);
为
var $protobuf = protobuf;

在account.js同级目录下执行:pbts -o account.d.ts account.js
// 使用
import protoTest from "./account" // 相对路径
let ob = {
        id: 1,
        name:"nsqks",
        level:9
    }
let accountProtobuf = protoTest.Player.create(ob);
let buf = protoTest.Player.encode(accountProtobuf).finish();
cc.log(buf);
let testData = protoTest.Player.decode(buf);
cc.log(testData);



版权声明:本文为nsqks原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。