mirror of
https://github.com/Melledy/Nebula.git
synced 2026-09-19 17:19:58 +02:00
493 lines
13 KiB
Java
493 lines
13 KiB
Java
// Code generated by protocol buffer compiler. Do not edit!
|
|
package emu.nebula.proto;
|
|
|
|
import java.io.IOException;
|
|
import us.hebi.quickbuf.FieldName;
|
|
import us.hebi.quickbuf.InvalidProtocolBufferException;
|
|
import us.hebi.quickbuf.JsonSink;
|
|
import us.hebi.quickbuf.JsonSource;
|
|
import us.hebi.quickbuf.MessageFactory;
|
|
import us.hebi.quickbuf.ProtoMessage;
|
|
import us.hebi.quickbuf.ProtoSink;
|
|
import us.hebi.quickbuf.ProtoSource;
|
|
import us.hebi.quickbuf.RepeatedByte;
|
|
import us.hebi.quickbuf.Utf8String;
|
|
|
|
public final class PlayerRegOuterClass {
|
|
/**
|
|
* Protobuf type {@code PlayerReg}
|
|
*/
|
|
public static final class PlayerReg extends ProtoMessage<PlayerReg> implements Cloneable {
|
|
private static final long serialVersionUID = 0L;
|
|
|
|
/**
|
|
* <code>optional bool Gender = 2;</code>
|
|
*/
|
|
private boolean gender;
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*/
|
|
private final RepeatedByte nextPackage = RepeatedByte.newEmptyInstance();
|
|
|
|
/**
|
|
* <code>optional string Nickname = 1;</code>
|
|
*/
|
|
private final Utf8String nickname = Utf8String.newEmptyInstance();
|
|
|
|
private PlayerReg() {
|
|
}
|
|
|
|
/**
|
|
* @return a new empty instance of {@code PlayerReg}
|
|
*/
|
|
public static PlayerReg newInstance() {
|
|
return new PlayerReg();
|
|
}
|
|
|
|
/**
|
|
* <code>optional bool Gender = 2;</code>
|
|
* @return whether the gender field is set
|
|
*/
|
|
public boolean hasGender() {
|
|
return (bitField0_ & 0x00000001) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bool Gender = 2;</code>
|
|
* @return this
|
|
*/
|
|
public PlayerReg clearGender() {
|
|
bitField0_ &= ~0x00000001;
|
|
gender = false;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bool Gender = 2;</code>
|
|
* @return the gender
|
|
*/
|
|
public boolean getGender() {
|
|
return gender;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bool Gender = 2;</code>
|
|
* @param value the gender to set
|
|
* @return this
|
|
*/
|
|
public PlayerReg setGender(final boolean value) {
|
|
bitField0_ |= 0x00000001;
|
|
gender = value;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @return whether the nextPackage field is set
|
|
*/
|
|
public boolean hasNextPackage() {
|
|
return (bitField0_ & 0x00000002) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @return this
|
|
*/
|
|
public PlayerReg clearNextPackage() {
|
|
bitField0_ &= ~0x00000002;
|
|
nextPackage.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*
|
|
* This method returns the internal storage object without modifying any has state.
|
|
* The returned object should not be modified and be treated as read-only.
|
|
*
|
|
* Use {@link #getMutableNextPackage()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public RepeatedByte getNextPackage() {
|
|
return nextPackage;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*
|
|
* This method returns the internal storage object and sets the corresponding
|
|
* has state. The returned object will become part of this message and its
|
|
* contents may be modified as long as the has state is not cleared.
|
|
*
|
|
* @return internal storage object for modifications
|
|
*/
|
|
public RepeatedByte getMutableNextPackage() {
|
|
bitField0_ |= 0x00000002;
|
|
return nextPackage;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param value the nextPackage to add
|
|
* @return this
|
|
*/
|
|
public PlayerReg addNextPackage(final byte value) {
|
|
bitField0_ |= 0x00000002;
|
|
nextPackage.add(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param values the nextPackage to add
|
|
* @return this
|
|
*/
|
|
public PlayerReg addAllNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000002;
|
|
nextPackage.addAll(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param values the nextPackage to set
|
|
* @return this
|
|
*/
|
|
public PlayerReg setNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000002;
|
|
nextPackage.copyFrom(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional string Nickname = 1;</code>
|
|
* @return whether the nickname field is set
|
|
*/
|
|
public boolean hasNickname() {
|
|
return (bitField0_ & 0x00000004) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional string Nickname = 1;</code>
|
|
* @return this
|
|
*/
|
|
public PlayerReg clearNickname() {
|
|
bitField0_ &= ~0x00000004;
|
|
nickname.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional string Nickname = 1;</code>
|
|
* @return the nickname
|
|
*/
|
|
public String getNickname() {
|
|
return nickname.getString();
|
|
}
|
|
|
|
/**
|
|
* <code>optional string Nickname = 1;</code>
|
|
* @return internal {@code Utf8String} representation of nickname for reading
|
|
*/
|
|
public Utf8String getNicknameBytes() {
|
|
return this.nickname;
|
|
}
|
|
|
|
/**
|
|
* <code>optional string Nickname = 1;</code>
|
|
* @return internal {@code Utf8String} representation of nickname for modifications
|
|
*/
|
|
public Utf8String getMutableNicknameBytes() {
|
|
bitField0_ |= 0x00000004;
|
|
return this.nickname;
|
|
}
|
|
|
|
/**
|
|
* <code>optional string Nickname = 1;</code>
|
|
* @param value the nickname to set
|
|
* @return this
|
|
*/
|
|
public PlayerReg setNickname(final CharSequence value) {
|
|
bitField0_ |= 0x00000004;
|
|
nickname.copyFrom(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional string Nickname = 1;</code>
|
|
* @param value the nickname to set
|
|
* @return this
|
|
*/
|
|
public PlayerReg setNickname(final Utf8String value) {
|
|
bitField0_ |= 0x00000004;
|
|
nickname.copyFrom(value);
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public PlayerReg copyFrom(final PlayerReg other) {
|
|
cachedSize = other.cachedSize;
|
|
if ((bitField0_ | other.bitField0_) != 0) {
|
|
bitField0_ = other.bitField0_;
|
|
gender = other.gender;
|
|
nextPackage.copyFrom(other.nextPackage);
|
|
nickname.copyFrom(other.nickname);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public PlayerReg mergeFrom(final PlayerReg other) {
|
|
if (other.isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
if (other.hasGender()) {
|
|
setGender(other.gender);
|
|
}
|
|
if (other.hasNextPackage()) {
|
|
getMutableNextPackage().copyFrom(other.nextPackage);
|
|
}
|
|
if (other.hasNickname()) {
|
|
getMutableNicknameBytes().copyFrom(other.nickname);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public PlayerReg clear() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
gender = false;
|
|
nextPackage.clear();
|
|
nickname.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public PlayerReg clearQuick() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
nextPackage.clear();
|
|
nickname.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (o == this) {
|
|
return true;
|
|
}
|
|
if (!(o instanceof PlayerReg)) {
|
|
return false;
|
|
}
|
|
PlayerReg other = (PlayerReg) o;
|
|
return bitField0_ == other.bitField0_
|
|
&& (!hasGender() || gender == other.gender)
|
|
&& (!hasNextPackage() || nextPackage.equals(other.nextPackage))
|
|
&& (!hasNickname() || nickname.equals(other.nickname));
|
|
}
|
|
|
|
@Override
|
|
public void writeTo(final ProtoSink output) throws IOException {
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
output.writeRawByte((byte) 16);
|
|
output.writeBoolNoTag(gender);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeRawLittleEndian16((short) 32762);
|
|
output.writeBytesNoTag(nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeRawByte((byte) 10);
|
|
output.writeStringNoTag(nickname);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected int computeSerializedSize() {
|
|
int size = 0;
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
size += 2;
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
size += 2 + ProtoSink.computeBytesSizeNoTag(nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
size += 1 + ProtoSink.computeStringSizeNoTag(nickname);
|
|
}
|
|
return size;
|
|
}
|
|
|
|
@Override
|
|
@SuppressWarnings("fallthrough")
|
|
public PlayerReg mergeFrom(final ProtoSource input) throws IOException {
|
|
// Enabled Fall-Through Optimization (QuickBuffers)
|
|
int tag = input.readTag();
|
|
while (true) {
|
|
switch (tag) {
|
|
case 16: {
|
|
// gender
|
|
gender = input.readBool();
|
|
bitField0_ |= 0x00000001;
|
|
tag = input.readTag();
|
|
if (tag != 16378) {
|
|
break;
|
|
}
|
|
}
|
|
case 16378: {
|
|
// nextPackage
|
|
input.readBytes(nextPackage);
|
|
bitField0_ |= 0x00000002;
|
|
tag = input.readTag();
|
|
if (tag != 10) {
|
|
break;
|
|
}
|
|
}
|
|
case 10: {
|
|
// nickname
|
|
input.readString(nickname);
|
|
bitField0_ |= 0x00000004;
|
|
tag = input.readTag();
|
|
if (tag != 0) {
|
|
break;
|
|
}
|
|
}
|
|
case 0: {
|
|
return this;
|
|
}
|
|
default: {
|
|
if (!input.skipField(tag)) {
|
|
return this;
|
|
}
|
|
tag = input.readTag();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void writeTo(final JsonSink output) throws IOException {
|
|
output.beginObject();
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
output.writeBool(FieldNames.gender, gender);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeBytes(FieldNames.nextPackage, nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeString(FieldNames.nickname, nickname);
|
|
}
|
|
output.endObject();
|
|
}
|
|
|
|
@Override
|
|
public PlayerReg mergeFrom(final JsonSource input) throws IOException {
|
|
if (!input.beginObject()) {
|
|
return this;
|
|
}
|
|
while (!input.isAtEnd()) {
|
|
switch (input.readFieldHash()) {
|
|
case 2129321697: {
|
|
if (input.isAtField(FieldNames.gender)) {
|
|
if (!input.trySkipNullValue()) {
|
|
gender = input.readBool();
|
|
bitField0_ |= 0x00000001;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case -2082324045: {
|
|
if (input.isAtField(FieldNames.nextPackage)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readBytes(nextPackage);
|
|
bitField0_ |= 0x00000002;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case 135335054: {
|
|
if (input.isAtField(FieldNames.nickname)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readString(nickname);
|
|
bitField0_ |= 0x00000004;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
default: {
|
|
input.skipUnknownField();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
input.endObject();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public PlayerReg clone() {
|
|
return new PlayerReg().copyFrom(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean isEmpty() {
|
|
return ((bitField0_) == 0);
|
|
}
|
|
|
|
public static PlayerReg parseFrom(final byte[] data) throws InvalidProtocolBufferException {
|
|
return ProtoMessage.mergeFrom(new PlayerReg(), data).checkInitialized();
|
|
}
|
|
|
|
public static PlayerReg parseFrom(final ProtoSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new PlayerReg(), input).checkInitialized();
|
|
}
|
|
|
|
public static PlayerReg parseFrom(final JsonSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new PlayerReg(), input).checkInitialized();
|
|
}
|
|
|
|
/**
|
|
* @return factory for creating PlayerReg messages
|
|
*/
|
|
public static MessageFactory<PlayerReg> getFactory() {
|
|
return PlayerRegFactory.INSTANCE;
|
|
}
|
|
|
|
private enum PlayerRegFactory implements MessageFactory<PlayerReg> {
|
|
INSTANCE;
|
|
|
|
@Override
|
|
public PlayerReg create() {
|
|
return PlayerReg.newInstance();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Contains name constants used for serializing JSON
|
|
*/
|
|
static class FieldNames {
|
|
static final FieldName gender = FieldName.forField("Gender");
|
|
|
|
static final FieldName nextPackage = FieldName.forField("NextPackage");
|
|
|
|
static final FieldName nickname = FieldName.forField("Nickname");
|
|
}
|
|
}
|
|
}
|