mirror of
https://github.com/Leo501/CocosCreatorTutorial.git
synced 2026-05-11 08:15:44 +08:00
添加说明步骤
This commit is contained in:
@@ -1,2 +1,31 @@
|
||||
# hello-world
|
||||
Hello world new project template.
|
||||
# Protobuf demo
|
||||
### 参考文章
|
||||
* https://forum.cocos.com/t/cocoscreator-protobuf/61045
|
||||
* https://forum.cocos.com/t/cocos-creator-protobufjs-ts/47687
|
||||
|
||||
### 步骤
|
||||
以下步骤只展示静态加载方式,动态加载不在此讨论。
|
||||
* 安装protobufjs到全局
|
||||
npm install -g protobufjs
|
||||
使用npm install -g 参数将模块安装到全局,目的主要是方便使用protobufjs提供的pbjs命令行工具。pbjs可以将proto原文件转换成json、js等,以提供不同的加载proto的方式,我们可以根据自己的实际情况选择使用,还有pbts,用来将转化后的js文件转为ts
|
||||
|
||||
* 编辑 .proto文件
|
||||
进入assets\Script\proto
|
||||
然后在所在目录下打开命令行执行如下命令
|
||||
~~~
|
||||
pbjs -t static-module -w commonjs -o proto.js *.proto
|
||||
~~~
|
||||
修改proto.js中protobuf的引用
|
||||
~~~
|
||||
|
||||
//修改前
|
||||
var $protobuf = require("protobufjs/minimal");
|
||||
//修改后
|
||||
var $protobuf = require("protobufjs");
|
||||
~~~
|
||||
|
||||
如果想使用TS格式可以通过protobufjs6新功能来实现
|
||||
执行如下命令:
|
||||
~~~
|
||||
pbts -o proto.d.ts proto.js
|
||||
~~~
|
||||
|
||||
211
ProtoBufDemo/assets/Script/proto/proto.d.ts
vendored
Normal file
211
ProtoBufDemo/assets/Script/proto/proto.d.ts
vendored
Normal file
@@ -0,0 +1,211 @@
|
||||
import * as $protobuf from "protobufjs";
|
||||
/** Namespace Person. */
|
||||
export namespace Person {
|
||||
|
||||
/** Properties of a personInfo. */
|
||||
interface IpersonInfo {
|
||||
|
||||
/** personInfo uid */
|
||||
uid?: (number|null);
|
||||
|
||||
/** personInfo name */
|
||||
name?: (string|null);
|
||||
|
||||
/** personInfo grender */
|
||||
grender?: (boolean|null);
|
||||
|
||||
/** personInfo skills */
|
||||
skills?: (Person.personInfo.ISkill|null);
|
||||
}
|
||||
|
||||
/** Represents a personInfo. */
|
||||
class personInfo implements IpersonInfo {
|
||||
|
||||
/**
|
||||
* Constructs a new personInfo.
|
||||
* @param [properties] Properties to set
|
||||
*/
|
||||
constructor(properties?: Person.IpersonInfo);
|
||||
|
||||
/** personInfo uid. */
|
||||
public uid: number;
|
||||
|
||||
/** personInfo name. */
|
||||
public name: string;
|
||||
|
||||
/** personInfo grender. */
|
||||
public grender: boolean;
|
||||
|
||||
/** personInfo skills. */
|
||||
public skills?: (Person.personInfo.ISkill|null);
|
||||
|
||||
/**
|
||||
* Creates a new personInfo instance using the specified properties.
|
||||
* @param [properties] Properties to set
|
||||
* @returns personInfo instance
|
||||
*/
|
||||
public static create(properties?: Person.IpersonInfo): Person.personInfo;
|
||||
|
||||
/**
|
||||
* Encodes the specified personInfo message. Does not implicitly {@link Person.personInfo.verify|verify} messages.
|
||||
* @param message personInfo message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
public static encode(message: Person.IpersonInfo, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Encodes the specified personInfo message, length delimited. Does not implicitly {@link Person.personInfo.verify|verify} messages.
|
||||
* @param message personInfo message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
public static encodeDelimited(message: Person.IpersonInfo, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Decodes a personInfo message from the specified reader or buffer.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @param [length] Message length if known beforehand
|
||||
* @returns personInfo
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): Person.personInfo;
|
||||
|
||||
/**
|
||||
* Decodes a personInfo message from the specified reader or buffer, length delimited.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @returns personInfo
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): Person.personInfo;
|
||||
|
||||
/**
|
||||
* Verifies a personInfo message.
|
||||
* @param message Plain object to verify
|
||||
* @returns `null` if valid, otherwise the reason why it is not
|
||||
*/
|
||||
public static verify(message: { [k: string]: any }): (string|null);
|
||||
|
||||
/**
|
||||
* Creates a personInfo message from a plain object. Also converts values to their respective internal types.
|
||||
* @param object Plain object
|
||||
* @returns personInfo
|
||||
*/
|
||||
public static fromObject(object: { [k: string]: any }): Person.personInfo;
|
||||
|
||||
/**
|
||||
* Creates a plain object from a personInfo message. Also converts values to other types if specified.
|
||||
* @param message personInfo
|
||||
* @param [options] Conversion options
|
||||
* @returns Plain object
|
||||
*/
|
||||
public static toObject(message: Person.personInfo, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
||||
|
||||
/**
|
||||
* Converts this personInfo to JSON.
|
||||
* @returns JSON object
|
||||
*/
|
||||
public toJSON(): { [k: string]: any };
|
||||
}
|
||||
|
||||
namespace personInfo {
|
||||
|
||||
/** Properties of a Skill. */
|
||||
interface ISkill {
|
||||
|
||||
/** Skill favorite */
|
||||
favorite?: (string|null);
|
||||
|
||||
/** Skill hobby */
|
||||
hobby?: (string[]|null);
|
||||
}
|
||||
|
||||
/** Represents a Skill. */
|
||||
class Skill implements ISkill {
|
||||
|
||||
/**
|
||||
* Constructs a new Skill.
|
||||
* @param [properties] Properties to set
|
||||
*/
|
||||
constructor(properties?: Person.personInfo.ISkill);
|
||||
|
||||
/** Skill favorite. */
|
||||
public favorite: string;
|
||||
|
||||
/** Skill hobby. */
|
||||
public hobby: string[];
|
||||
|
||||
/**
|
||||
* Creates a new Skill instance using the specified properties.
|
||||
* @param [properties] Properties to set
|
||||
* @returns Skill instance
|
||||
*/
|
||||
public static create(properties?: Person.personInfo.ISkill): Person.personInfo.Skill;
|
||||
|
||||
/**
|
||||
* Encodes the specified Skill message. Does not implicitly {@link Person.personInfo.Skill.verify|verify} messages.
|
||||
* @param message Skill message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
public static encode(message: Person.personInfo.ISkill, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Encodes the specified Skill message, length delimited. Does not implicitly {@link Person.personInfo.Skill.verify|verify} messages.
|
||||
* @param message Skill message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
public static encodeDelimited(message: Person.personInfo.ISkill, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Decodes a Skill message from the specified reader or buffer.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @param [length] Message length if known beforehand
|
||||
* @returns Skill
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): Person.personInfo.Skill;
|
||||
|
||||
/**
|
||||
* Decodes a Skill message from the specified reader or buffer, length delimited.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @returns Skill
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): Person.personInfo.Skill;
|
||||
|
||||
/**
|
||||
* Verifies a Skill message.
|
||||
* @param message Plain object to verify
|
||||
* @returns `null` if valid, otherwise the reason why it is not
|
||||
*/
|
||||
public static verify(message: { [k: string]: any }): (string|null);
|
||||
|
||||
/**
|
||||
* Creates a Skill message from a plain object. Also converts values to their respective internal types.
|
||||
* @param object Plain object
|
||||
* @returns Skill
|
||||
*/
|
||||
public static fromObject(object: { [k: string]: any }): Person.personInfo.Skill;
|
||||
|
||||
/**
|
||||
* Creates a plain object from a Skill message. Also converts values to other types if specified.
|
||||
* @param message Skill
|
||||
* @param [options] Conversion options
|
||||
* @returns Plain object
|
||||
*/
|
||||
public static toObject(message: Person.personInfo.Skill, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
||||
|
||||
/**
|
||||
* Converts this Skill to JSON.
|
||||
* @returns JSON object
|
||||
*/
|
||||
public toJSON(): { [k: string]: any };
|
||||
}
|
||||
}
|
||||
}
|
||||
513
ProtoBufDemo/assets/Script/proto/proto.js
Normal file
513
ProtoBufDemo/assets/Script/proto/proto.js
Normal file
@@ -0,0 +1,513 @@
|
||||
/*eslint-disable block-scoped-var, id-length, no-control-regex, no-magic-numbers, no-prototype-builtins, no-redeclare, no-shadow, no-var, sort-vars*/
|
||||
"use strict";
|
||||
|
||||
//修改前
|
||||
// var $protobuf = require("protobufjs/minimal");
|
||||
//修改后
|
||||
var $protobuf = require("protobufjs");
|
||||
|
||||
|
||||
// Common aliases
|
||||
var $Reader = $protobuf.Reader, $Writer = $protobuf.Writer, $util = $protobuf.util;
|
||||
|
||||
// Exported root namespace
|
||||
var $root = $protobuf.roots["default"] || ($protobuf.roots["default"] = {});
|
||||
|
||||
$root.Person = (function() {
|
||||
|
||||
/**
|
||||
* Namespace Person.
|
||||
* @exports Person
|
||||
* @namespace
|
||||
*/
|
||||
var Person = {};
|
||||
|
||||
Person.personInfo = (function() {
|
||||
|
||||
/**
|
||||
* Properties of a personInfo.
|
||||
* @memberof Person
|
||||
* @interface IpersonInfo
|
||||
* @property {number|null} [uid] personInfo uid
|
||||
* @property {string|null} [name] personInfo name
|
||||
* @property {boolean|null} [grender] personInfo grender
|
||||
* @property {Person.personInfo.ISkill|null} [skills] personInfo skills
|
||||
*/
|
||||
|
||||
/**
|
||||
* Constructs a new personInfo.
|
||||
* @memberof Person
|
||||
* @classdesc Represents a personInfo.
|
||||
* @implements IpersonInfo
|
||||
* @constructor
|
||||
* @param {Person.IpersonInfo=} [properties] Properties to set
|
||||
*/
|
||||
function personInfo(properties) {
|
||||
if (properties)
|
||||
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
||||
if (properties[keys[i]] != null)
|
||||
this[keys[i]] = properties[keys[i]];
|
||||
}
|
||||
|
||||
/**
|
||||
* personInfo uid.
|
||||
* @member {number} uid
|
||||
* @memberof Person.personInfo
|
||||
* @instance
|
||||
*/
|
||||
personInfo.prototype.uid = 0;
|
||||
|
||||
/**
|
||||
* personInfo name.
|
||||
* @member {string} name
|
||||
* @memberof Person.personInfo
|
||||
* @instance
|
||||
*/
|
||||
personInfo.prototype.name = "";
|
||||
|
||||
/**
|
||||
* personInfo grender.
|
||||
* @member {boolean} grender
|
||||
* @memberof Person.personInfo
|
||||
* @instance
|
||||
*/
|
||||
personInfo.prototype.grender = false;
|
||||
|
||||
/**
|
||||
* personInfo skills.
|
||||
* @member {Person.personInfo.ISkill|null|undefined} skills
|
||||
* @memberof Person.personInfo
|
||||
* @instance
|
||||
*/
|
||||
personInfo.prototype.skills = null;
|
||||
|
||||
/**
|
||||
* Creates a new personInfo instance using the specified properties.
|
||||
* @function create
|
||||
* @memberof Person.personInfo
|
||||
* @static
|
||||
* @param {Person.IpersonInfo=} [properties] Properties to set
|
||||
* @returns {Person.personInfo} personInfo instance
|
||||
*/
|
||||
personInfo.create = function create(properties) {
|
||||
return new personInfo(properties);
|
||||
};
|
||||
|
||||
/**
|
||||
* Encodes the specified personInfo message. Does not implicitly {@link Person.personInfo.verify|verify} messages.
|
||||
* @function encode
|
||||
* @memberof Person.personInfo
|
||||
* @static
|
||||
* @param {Person.IpersonInfo} message personInfo message or plain object to encode
|
||||
* @param {$protobuf.Writer} [writer] Writer to encode to
|
||||
* @returns {$protobuf.Writer} Writer
|
||||
*/
|
||||
personInfo.encode = function encode(message, writer) {
|
||||
if (!writer)
|
||||
writer = $Writer.create();
|
||||
if (message.uid != null && message.hasOwnProperty("uid"))
|
||||
writer.uint32(/* id 1, wireType 0 =*/8).int32(message.uid);
|
||||
if (message.name != null && message.hasOwnProperty("name"))
|
||||
writer.uint32(/* id 2, wireType 2 =*/18).string(message.name);
|
||||
if (message.grender != null && message.hasOwnProperty("grender"))
|
||||
writer.uint32(/* id 3, wireType 0 =*/24).bool(message.grender);
|
||||
if (message.skills != null && message.hasOwnProperty("skills"))
|
||||
$root.Person.personInfo.Skill.encode(message.skills, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim();
|
||||
return writer;
|
||||
};
|
||||
|
||||
/**
|
||||
* Encodes the specified personInfo message, length delimited. Does not implicitly {@link Person.personInfo.verify|verify} messages.
|
||||
* @function encodeDelimited
|
||||
* @memberof Person.personInfo
|
||||
* @static
|
||||
* @param {Person.IpersonInfo} message personInfo message or plain object to encode
|
||||
* @param {$protobuf.Writer} [writer] Writer to encode to
|
||||
* @returns {$protobuf.Writer} Writer
|
||||
*/
|
||||
personInfo.encodeDelimited = function encodeDelimited(message, writer) {
|
||||
return this.encode(message, writer).ldelim();
|
||||
};
|
||||
|
||||
/**
|
||||
* Decodes a personInfo message from the specified reader or buffer.
|
||||
* @function decode
|
||||
* @memberof Person.personInfo
|
||||
* @static
|
||||
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||
* @param {number} [length] Message length if known beforehand
|
||||
* @returns {Person.personInfo} personInfo
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
personInfo.decode = function decode(reader, length) {
|
||||
if (!(reader instanceof $Reader))
|
||||
reader = $Reader.create(reader);
|
||||
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.Person.personInfo();
|
||||
while (reader.pos < end) {
|
||||
var tag = reader.uint32();
|
||||
switch (tag >>> 3) {
|
||||
case 1:
|
||||
message.uid = reader.int32();
|
||||
break;
|
||||
case 2:
|
||||
message.name = reader.string();
|
||||
break;
|
||||
case 3:
|
||||
message.grender = reader.bool();
|
||||
break;
|
||||
case 4:
|
||||
message.skills = $root.Person.personInfo.Skill.decode(reader, reader.uint32());
|
||||
break;
|
||||
default:
|
||||
reader.skipType(tag & 7);
|
||||
break;
|
||||
}
|
||||
}
|
||||
return message;
|
||||
};
|
||||
|
||||
/**
|
||||
* Decodes a personInfo message from the specified reader or buffer, length delimited.
|
||||
* @function decodeDelimited
|
||||
* @memberof Person.personInfo
|
||||
* @static
|
||||
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||
* @returns {Person.personInfo} personInfo
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
personInfo.decodeDelimited = function decodeDelimited(reader) {
|
||||
if (!(reader instanceof $Reader))
|
||||
reader = new $Reader(reader);
|
||||
return this.decode(reader, reader.uint32());
|
||||
};
|
||||
|
||||
/**
|
||||
* Verifies a personInfo message.
|
||||
* @function verify
|
||||
* @memberof Person.personInfo
|
||||
* @static
|
||||
* @param {Object.<string,*>} message Plain object to verify
|
||||
* @returns {string|null} `null` if valid, otherwise the reason why it is not
|
||||
*/
|
||||
personInfo.verify = function verify(message) {
|
||||
if (typeof message !== "object" || message === null)
|
||||
return "object expected";
|
||||
if (message.uid != null && message.hasOwnProperty("uid"))
|
||||
if (!$util.isInteger(message.uid))
|
||||
return "uid: integer expected";
|
||||
if (message.name != null && message.hasOwnProperty("name"))
|
||||
if (!$util.isString(message.name))
|
||||
return "name: string expected";
|
||||
if (message.grender != null && message.hasOwnProperty("grender"))
|
||||
if (typeof message.grender !== "boolean")
|
||||
return "grender: boolean expected";
|
||||
if (message.skills != null && message.hasOwnProperty("skills")) {
|
||||
var error = $root.Person.personInfo.Skill.verify(message.skills);
|
||||
if (error)
|
||||
return "skills." + error;
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
/**
|
||||
* Creates a personInfo message from a plain object. Also converts values to their respective internal types.
|
||||
* @function fromObject
|
||||
* @memberof Person.personInfo
|
||||
* @static
|
||||
* @param {Object.<string,*>} object Plain object
|
||||
* @returns {Person.personInfo} personInfo
|
||||
*/
|
||||
personInfo.fromObject = function fromObject(object) {
|
||||
if (object instanceof $root.Person.personInfo)
|
||||
return object;
|
||||
var message = new $root.Person.personInfo();
|
||||
if (object.uid != null)
|
||||
message.uid = object.uid | 0;
|
||||
if (object.name != null)
|
||||
message.name = String(object.name);
|
||||
if (object.grender != null)
|
||||
message.grender = Boolean(object.grender);
|
||||
if (object.skills != null) {
|
||||
if (typeof object.skills !== "object")
|
||||
throw TypeError(".Person.personInfo.skills: object expected");
|
||||
message.skills = $root.Person.personInfo.Skill.fromObject(object.skills);
|
||||
}
|
||||
return message;
|
||||
};
|
||||
|
||||
/**
|
||||
* Creates a plain object from a personInfo message. Also converts values to other types if specified.
|
||||
* @function toObject
|
||||
* @memberof Person.personInfo
|
||||
* @static
|
||||
* @param {Person.personInfo} message personInfo
|
||||
* @param {$protobuf.IConversionOptions} [options] Conversion options
|
||||
* @returns {Object.<string,*>} Plain object
|
||||
*/
|
||||
personInfo.toObject = function toObject(message, options) {
|
||||
if (!options)
|
||||
options = {};
|
||||
var object = {};
|
||||
if (options.defaults) {
|
||||
object.uid = 0;
|
||||
object.name = "";
|
||||
object.grender = false;
|
||||
object.skills = null;
|
||||
}
|
||||
if (message.uid != null && message.hasOwnProperty("uid"))
|
||||
object.uid = message.uid;
|
||||
if (message.name != null && message.hasOwnProperty("name"))
|
||||
object.name = message.name;
|
||||
if (message.grender != null && message.hasOwnProperty("grender"))
|
||||
object.grender = message.grender;
|
||||
if (message.skills != null && message.hasOwnProperty("skills"))
|
||||
object.skills = $root.Person.personInfo.Skill.toObject(message.skills, options);
|
||||
return object;
|
||||
};
|
||||
|
||||
/**
|
||||
* Converts this personInfo to JSON.
|
||||
* @function toJSON
|
||||
* @memberof Person.personInfo
|
||||
* @instance
|
||||
* @returns {Object.<string,*>} JSON object
|
||||
*/
|
||||
personInfo.prototype.toJSON = function toJSON() {
|
||||
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
|
||||
};
|
||||
|
||||
personInfo.Skill = (function() {
|
||||
|
||||
/**
|
||||
* Properties of a Skill.
|
||||
* @memberof Person.personInfo
|
||||
* @interface ISkill
|
||||
* @property {string|null} [favorite] Skill favorite
|
||||
* @property {Array.<string>|null} [hobby] Skill hobby
|
||||
*/
|
||||
|
||||
/**
|
||||
* Constructs a new Skill.
|
||||
* @memberof Person.personInfo
|
||||
* @classdesc Represents a Skill.
|
||||
* @implements ISkill
|
||||
* @constructor
|
||||
* @param {Person.personInfo.ISkill=} [properties] Properties to set
|
||||
*/
|
||||
function Skill(properties) {
|
||||
this.hobby = [];
|
||||
if (properties)
|
||||
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
|
||||
if (properties[keys[i]] != null)
|
||||
this[keys[i]] = properties[keys[i]];
|
||||
}
|
||||
|
||||
/**
|
||||
* Skill favorite.
|
||||
* @member {string} favorite
|
||||
* @memberof Person.personInfo.Skill
|
||||
* @instance
|
||||
*/
|
||||
Skill.prototype.favorite = "eat";
|
||||
|
||||
/**
|
||||
* Skill hobby.
|
||||
* @member {Array.<string>} hobby
|
||||
* @memberof Person.personInfo.Skill
|
||||
* @instance
|
||||
*/
|
||||
Skill.prototype.hobby = $util.emptyArray;
|
||||
|
||||
/**
|
||||
* Creates a new Skill instance using the specified properties.
|
||||
* @function create
|
||||
* @memberof Person.personInfo.Skill
|
||||
* @static
|
||||
* @param {Person.personInfo.ISkill=} [properties] Properties to set
|
||||
* @returns {Person.personInfo.Skill} Skill instance
|
||||
*/
|
||||
Skill.create = function create(properties) {
|
||||
return new Skill(properties);
|
||||
};
|
||||
|
||||
/**
|
||||
* Encodes the specified Skill message. Does not implicitly {@link Person.personInfo.Skill.verify|verify} messages.
|
||||
* @function encode
|
||||
* @memberof Person.personInfo.Skill
|
||||
* @static
|
||||
* @param {Person.personInfo.ISkill} message Skill message or plain object to encode
|
||||
* @param {$protobuf.Writer} [writer] Writer to encode to
|
||||
* @returns {$protobuf.Writer} Writer
|
||||
*/
|
||||
Skill.encode = function encode(message, writer) {
|
||||
if (!writer)
|
||||
writer = $Writer.create();
|
||||
if (message.favorite != null && message.hasOwnProperty("favorite"))
|
||||
writer.uint32(/* id 1, wireType 2 =*/10).string(message.favorite);
|
||||
if (message.hobby != null && message.hobby.length)
|
||||
for (var i = 0; i < message.hobby.length; ++i)
|
||||
writer.uint32(/* id 2, wireType 2 =*/18).string(message.hobby[i]);
|
||||
return writer;
|
||||
};
|
||||
|
||||
/**
|
||||
* Encodes the specified Skill message, length delimited. Does not implicitly {@link Person.personInfo.Skill.verify|verify} messages.
|
||||
* @function encodeDelimited
|
||||
* @memberof Person.personInfo.Skill
|
||||
* @static
|
||||
* @param {Person.personInfo.ISkill} message Skill message or plain object to encode
|
||||
* @param {$protobuf.Writer} [writer] Writer to encode to
|
||||
* @returns {$protobuf.Writer} Writer
|
||||
*/
|
||||
Skill.encodeDelimited = function encodeDelimited(message, writer) {
|
||||
return this.encode(message, writer).ldelim();
|
||||
};
|
||||
|
||||
/**
|
||||
* Decodes a Skill message from the specified reader or buffer.
|
||||
* @function decode
|
||||
* @memberof Person.personInfo.Skill
|
||||
* @static
|
||||
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||
* @param {number} [length] Message length if known beforehand
|
||||
* @returns {Person.personInfo.Skill} Skill
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
Skill.decode = function decode(reader, length) {
|
||||
if (!(reader instanceof $Reader))
|
||||
reader = $Reader.create(reader);
|
||||
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.Person.personInfo.Skill();
|
||||
while (reader.pos < end) {
|
||||
var tag = reader.uint32();
|
||||
switch (tag >>> 3) {
|
||||
case 1:
|
||||
message.favorite = reader.string();
|
||||
break;
|
||||
case 2:
|
||||
if (!(message.hobby && message.hobby.length))
|
||||
message.hobby = [];
|
||||
message.hobby.push(reader.string());
|
||||
break;
|
||||
default:
|
||||
reader.skipType(tag & 7);
|
||||
break;
|
||||
}
|
||||
}
|
||||
return message;
|
||||
};
|
||||
|
||||
/**
|
||||
* Decodes a Skill message from the specified reader or buffer, length delimited.
|
||||
* @function decodeDelimited
|
||||
* @memberof Person.personInfo.Skill
|
||||
* @static
|
||||
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
|
||||
* @returns {Person.personInfo.Skill} Skill
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
Skill.decodeDelimited = function decodeDelimited(reader) {
|
||||
if (!(reader instanceof $Reader))
|
||||
reader = new $Reader(reader);
|
||||
return this.decode(reader, reader.uint32());
|
||||
};
|
||||
|
||||
/**
|
||||
* Verifies a Skill message.
|
||||
* @function verify
|
||||
* @memberof Person.personInfo.Skill
|
||||
* @static
|
||||
* @param {Object.<string,*>} message Plain object to verify
|
||||
* @returns {string|null} `null` if valid, otherwise the reason why it is not
|
||||
*/
|
||||
Skill.verify = function verify(message) {
|
||||
if (typeof message !== "object" || message === null)
|
||||
return "object expected";
|
||||
if (message.favorite != null && message.hasOwnProperty("favorite"))
|
||||
if (!$util.isString(message.favorite))
|
||||
return "favorite: string expected";
|
||||
if (message.hobby != null && message.hasOwnProperty("hobby")) {
|
||||
if (!Array.isArray(message.hobby))
|
||||
return "hobby: array expected";
|
||||
for (var i = 0; i < message.hobby.length; ++i)
|
||||
if (!$util.isString(message.hobby[i]))
|
||||
return "hobby: string[] expected";
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
/**
|
||||
* Creates a Skill message from a plain object. Also converts values to their respective internal types.
|
||||
* @function fromObject
|
||||
* @memberof Person.personInfo.Skill
|
||||
* @static
|
||||
* @param {Object.<string,*>} object Plain object
|
||||
* @returns {Person.personInfo.Skill} Skill
|
||||
*/
|
||||
Skill.fromObject = function fromObject(object) {
|
||||
if (object instanceof $root.Person.personInfo.Skill)
|
||||
return object;
|
||||
var message = new $root.Person.personInfo.Skill();
|
||||
if (object.favorite != null)
|
||||
message.favorite = String(object.favorite);
|
||||
if (object.hobby) {
|
||||
if (!Array.isArray(object.hobby))
|
||||
throw TypeError(".Person.personInfo.Skill.hobby: array expected");
|
||||
message.hobby = [];
|
||||
for (var i = 0; i < object.hobby.length; ++i)
|
||||
message.hobby[i] = String(object.hobby[i]);
|
||||
}
|
||||
return message;
|
||||
};
|
||||
|
||||
/**
|
||||
* Creates a plain object from a Skill message. Also converts values to other types if specified.
|
||||
* @function toObject
|
||||
* @memberof Person.personInfo.Skill
|
||||
* @static
|
||||
* @param {Person.personInfo.Skill} message Skill
|
||||
* @param {$protobuf.IConversionOptions} [options] Conversion options
|
||||
* @returns {Object.<string,*>} Plain object
|
||||
*/
|
||||
Skill.toObject = function toObject(message, options) {
|
||||
if (!options)
|
||||
options = {};
|
||||
var object = {};
|
||||
if (options.arrays || options.defaults)
|
||||
object.hobby = [];
|
||||
if (options.defaults)
|
||||
object.favorite = "eat";
|
||||
if (message.favorite != null && message.hasOwnProperty("favorite"))
|
||||
object.favorite = message.favorite;
|
||||
if (message.hobby && message.hobby.length) {
|
||||
object.hobby = [];
|
||||
for (var j = 0; j < message.hobby.length; ++j)
|
||||
object.hobby[j] = message.hobby[j];
|
||||
}
|
||||
return object;
|
||||
};
|
||||
|
||||
/**
|
||||
* Converts this Skill to JSON.
|
||||
* @function toJSON
|
||||
* @memberof Person.personInfo.Skill
|
||||
* @instance
|
||||
* @returns {Object.<string,*>} JSON object
|
||||
*/
|
||||
Skill.prototype.toJSON = function toJSON() {
|
||||
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
|
||||
};
|
||||
|
||||
return Skill;
|
||||
})();
|
||||
|
||||
return personInfo;
|
||||
})();
|
||||
|
||||
return Person;
|
||||
})();
|
||||
|
||||
module.exports = $root;
|
||||
Reference in New Issue
Block a user