mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-06-20 06:25:03 +08:00
1110 lines
40 KiB
Java
1110 lines
40 KiB
Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
// source: PlayerApplyEnterMpResultNotify.proto
|
|
|
|
package emu.grasscutter.net.proto;
|
|
|
|
public final class PlayerApplyEnterMpResultNotifyOuterClass {
|
|
private PlayerApplyEnterMpResultNotifyOuterClass() {}
|
|
public static void registerAllExtensions(
|
|
com.google.protobuf.ExtensionRegistryLite registry) {
|
|
}
|
|
|
|
public static void registerAllExtensions(
|
|
com.google.protobuf.ExtensionRegistry registry) {
|
|
registerAllExtensions(
|
|
(com.google.protobuf.ExtensionRegistryLite) registry);
|
|
}
|
|
public interface PlayerApplyEnterMpResultNotifyOrBuilder extends
|
|
// @@protoc_insertion_point(interface_extends:PlayerApplyEnterMpResultNotify)
|
|
com.google.protobuf.MessageOrBuilder {
|
|
|
|
/**
|
|
* <code>bool is_agreed = 2;</code>
|
|
* @return The isAgreed.
|
|
*/
|
|
boolean getIsAgreed();
|
|
|
|
/**
|
|
* <code>string target_nickname = 12;</code>
|
|
* @return The targetNickname.
|
|
*/
|
|
java.lang.String getTargetNickname();
|
|
/**
|
|
* <code>string target_nickname = 12;</code>
|
|
* @return The bytes for targetNickname.
|
|
*/
|
|
com.google.protobuf.ByteString
|
|
getTargetNicknameBytes();
|
|
|
|
/**
|
|
* <code>.PlayerApplyEnterMpResultNotify.Reason reason = 13;</code>
|
|
* @return The enum numeric value on the wire for reason.
|
|
*/
|
|
int getReasonValue();
|
|
/**
|
|
* <code>.PlayerApplyEnterMpResultNotify.Reason reason = 13;</code>
|
|
* @return The reason.
|
|
*/
|
|
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason getReason();
|
|
|
|
/**
|
|
* <code>uint32 target_uid = 1;</code>
|
|
* @return The targetUid.
|
|
*/
|
|
int getTargetUid();
|
|
}
|
|
/**
|
|
* <pre>
|
|
* CmdId: 1807
|
|
* EnetChannelId: 0
|
|
* EnetIsReliable: false
|
|
* IsAllowClient: true
|
|
* </pre>
|
|
*
|
|
* Protobuf type {@code PlayerApplyEnterMpResultNotify}
|
|
*/
|
|
public static final class PlayerApplyEnterMpResultNotify extends
|
|
com.google.protobuf.GeneratedMessageV3 implements
|
|
// @@protoc_insertion_point(message_implements:PlayerApplyEnterMpResultNotify)
|
|
PlayerApplyEnterMpResultNotifyOrBuilder {
|
|
private static final long serialVersionUID = 0L;
|
|
// Use PlayerApplyEnterMpResultNotify.newBuilder() to construct.
|
|
private PlayerApplyEnterMpResultNotify(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
|
|
super(builder);
|
|
}
|
|
private PlayerApplyEnterMpResultNotify() {
|
|
targetNickname_ = "";
|
|
reason_ = 0;
|
|
}
|
|
|
|
@java.lang.Override
|
|
@SuppressWarnings({"unused"})
|
|
protected java.lang.Object newInstance(
|
|
UnusedPrivateParameter unused) {
|
|
return new PlayerApplyEnterMpResultNotify();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public final com.google.protobuf.UnknownFieldSet
|
|
getUnknownFields() {
|
|
return this.unknownFields;
|
|
}
|
|
private PlayerApplyEnterMpResultNotify(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
this();
|
|
if (extensionRegistry == null) {
|
|
throw new java.lang.NullPointerException();
|
|
}
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
com.google.protobuf.UnknownFieldSet.newBuilder();
|
|
try {
|
|
boolean done = false;
|
|
while (!done) {
|
|
int tag = input.readTag();
|
|
switch (tag) {
|
|
case 0:
|
|
done = true;
|
|
break;
|
|
case 8: {
|
|
|
|
targetUid_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 16: {
|
|
|
|
isAgreed_ = input.readBool();
|
|
break;
|
|
}
|
|
case 98: {
|
|
java.lang.String s = input.readStringRequireUtf8();
|
|
|
|
targetNickname_ = s;
|
|
break;
|
|
}
|
|
case 104: {
|
|
int rawValue = input.readEnum();
|
|
|
|
reason_ = rawValue;
|
|
break;
|
|
}
|
|
default: {
|
|
if (!parseUnknownField(
|
|
input, unknownFields, extensionRegistry, tag)) {
|
|
done = true;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
throw e.setUnfinishedMessage(this);
|
|
} catch (java.io.IOException e) {
|
|
throw new com.google.protobuf.InvalidProtocolBufferException(
|
|
e).setUnfinishedMessage(this);
|
|
} finally {
|
|
this.unknownFields = unknownFields.build();
|
|
makeExtensionsImmutable();
|
|
}
|
|
}
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.internal_static_PlayerApplyEnterMpResultNotify_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.internal_static_PlayerApplyEnterMpResultNotify_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.class, emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Builder.class);
|
|
}
|
|
|
|
/**
|
|
* Protobuf enum {@code PlayerApplyEnterMpResultNotify.Reason}
|
|
*/
|
|
public enum Reason
|
|
implements com.google.protobuf.ProtocolMessageEnum {
|
|
/**
|
|
* <code>REASON_PLAYER_JUDGE = 0;</code>
|
|
*/
|
|
REASON_PLAYER_JUDGE(0),
|
|
/**
|
|
* <code>REASON_SCENE_CANNOT_ENTER = 1;</code>
|
|
*/
|
|
REASON_SCENE_CANNOT_ENTER(1),
|
|
/**
|
|
* <code>REASON_PLAYER_CANNOT_ENTER_MP = 2;</code>
|
|
*/
|
|
REASON_PLAYER_CANNOT_ENTER_MP(2),
|
|
/**
|
|
* <code>REASON_SYSTEM_JUDGE = 3;</code>
|
|
*/
|
|
REASON_SYSTEM_JUDGE(3),
|
|
/**
|
|
* <code>REASON_ALLOW_ENTER_PLAYER_FULL = 4;</code>
|
|
*/
|
|
REASON_ALLOW_ENTER_PLAYER_FULL(4),
|
|
/**
|
|
* <code>REASON_WORLD_LEVEL_LOWER_THAN_HOST = 5;</code>
|
|
*/
|
|
REASON_WORLD_LEVEL_LOWER_THAN_HOST(5),
|
|
/**
|
|
* <code>REASON_HOST_IN_MATCH = 6;</code>
|
|
*/
|
|
REASON_HOST_IN_MATCH(6),
|
|
/**
|
|
* <code>REASON_PLAYER_IN_BLACKLIST = 7;</code>
|
|
*/
|
|
REASON_PLAYER_IN_BLACKLIST(7),
|
|
/**
|
|
* <code>REASON_PS_PLAYER_NOT_ACCEPT_OTHERS = 8;</code>
|
|
*/
|
|
REASON_PS_PLAYER_NOT_ACCEPT_OTHERS(8),
|
|
/**
|
|
* <code>REASON_HOST_IS_BLOCKED = 9;</code>
|
|
*/
|
|
REASON_HOST_IS_BLOCKED(9),
|
|
/**
|
|
* <code>REASON_OTHER_DATA_VERSION_NOT_LATEST = 10;</code>
|
|
*/
|
|
REASON_OTHER_DATA_VERSION_NOT_LATEST(10),
|
|
/**
|
|
* <code>REASON_DATA_VERSION_NOT_LATEST = 11;</code>
|
|
*/
|
|
REASON_DATA_VERSION_NOT_LATEST(11),
|
|
/**
|
|
* <code>REASON_PLAYER_NOT_IN_PLAYER_WORLD = 12;</code>
|
|
*/
|
|
REASON_PLAYER_NOT_IN_PLAYER_WORLD(12),
|
|
/**
|
|
* <code>REASON_MAX_PLAYER = 13;</code>
|
|
*/
|
|
REASON_MAX_PLAYER(13),
|
|
UNRECOGNIZED(-1),
|
|
;
|
|
|
|
/**
|
|
* <code>REASON_PLAYER_JUDGE = 0;</code>
|
|
*/
|
|
public static final int REASON_PLAYER_JUDGE_VALUE = 0;
|
|
/**
|
|
* <code>REASON_SCENE_CANNOT_ENTER = 1;</code>
|
|
*/
|
|
public static final int REASON_SCENE_CANNOT_ENTER_VALUE = 1;
|
|
/**
|
|
* <code>REASON_PLAYER_CANNOT_ENTER_MP = 2;</code>
|
|
*/
|
|
public static final int REASON_PLAYER_CANNOT_ENTER_MP_VALUE = 2;
|
|
/**
|
|
* <code>REASON_SYSTEM_JUDGE = 3;</code>
|
|
*/
|
|
public static final int REASON_SYSTEM_JUDGE_VALUE = 3;
|
|
/**
|
|
* <code>REASON_ALLOW_ENTER_PLAYER_FULL = 4;</code>
|
|
*/
|
|
public static final int REASON_ALLOW_ENTER_PLAYER_FULL_VALUE = 4;
|
|
/**
|
|
* <code>REASON_WORLD_LEVEL_LOWER_THAN_HOST = 5;</code>
|
|
*/
|
|
public static final int REASON_WORLD_LEVEL_LOWER_THAN_HOST_VALUE = 5;
|
|
/**
|
|
* <code>REASON_HOST_IN_MATCH = 6;</code>
|
|
*/
|
|
public static final int REASON_HOST_IN_MATCH_VALUE = 6;
|
|
/**
|
|
* <code>REASON_PLAYER_IN_BLACKLIST = 7;</code>
|
|
*/
|
|
public static final int REASON_PLAYER_IN_BLACKLIST_VALUE = 7;
|
|
/**
|
|
* <code>REASON_PS_PLAYER_NOT_ACCEPT_OTHERS = 8;</code>
|
|
*/
|
|
public static final int REASON_PS_PLAYER_NOT_ACCEPT_OTHERS_VALUE = 8;
|
|
/**
|
|
* <code>REASON_HOST_IS_BLOCKED = 9;</code>
|
|
*/
|
|
public static final int REASON_HOST_IS_BLOCKED_VALUE = 9;
|
|
/**
|
|
* <code>REASON_OTHER_DATA_VERSION_NOT_LATEST = 10;</code>
|
|
*/
|
|
public static final int REASON_OTHER_DATA_VERSION_NOT_LATEST_VALUE = 10;
|
|
/**
|
|
* <code>REASON_DATA_VERSION_NOT_LATEST = 11;</code>
|
|
*/
|
|
public static final int REASON_DATA_VERSION_NOT_LATEST_VALUE = 11;
|
|
/**
|
|
* <code>REASON_PLAYER_NOT_IN_PLAYER_WORLD = 12;</code>
|
|
*/
|
|
public static final int REASON_PLAYER_NOT_IN_PLAYER_WORLD_VALUE = 12;
|
|
/**
|
|
* <code>REASON_MAX_PLAYER = 13;</code>
|
|
*/
|
|
public static final int REASON_MAX_PLAYER_VALUE = 13;
|
|
|
|
|
|
public final int getNumber() {
|
|
if (this == UNRECOGNIZED) {
|
|
throw new java.lang.IllegalArgumentException(
|
|
"Can't get the number of an unknown enum value.");
|
|
}
|
|
return value;
|
|
}
|
|
|
|
/**
|
|
* @param value The numeric wire value of the corresponding enum entry.
|
|
* @return The enum associated with the given numeric wire value.
|
|
* @deprecated Use {@link #forNumber(int)} instead.
|
|
*/
|
|
@java.lang.Deprecated
|
|
public static Reason valueOf(int value) {
|
|
return forNumber(value);
|
|
}
|
|
|
|
/**
|
|
* @param value The numeric wire value of the corresponding enum entry.
|
|
* @return The enum associated with the given numeric wire value.
|
|
*/
|
|
public static Reason forNumber(int value) {
|
|
switch (value) {
|
|
case 0: return REASON_PLAYER_JUDGE;
|
|
case 1: return REASON_SCENE_CANNOT_ENTER;
|
|
case 2: return REASON_PLAYER_CANNOT_ENTER_MP;
|
|
case 3: return REASON_SYSTEM_JUDGE;
|
|
case 4: return REASON_ALLOW_ENTER_PLAYER_FULL;
|
|
case 5: return REASON_WORLD_LEVEL_LOWER_THAN_HOST;
|
|
case 6: return REASON_HOST_IN_MATCH;
|
|
case 7: return REASON_PLAYER_IN_BLACKLIST;
|
|
case 8: return REASON_PS_PLAYER_NOT_ACCEPT_OTHERS;
|
|
case 9: return REASON_HOST_IS_BLOCKED;
|
|
case 10: return REASON_OTHER_DATA_VERSION_NOT_LATEST;
|
|
case 11: return REASON_DATA_VERSION_NOT_LATEST;
|
|
case 12: return REASON_PLAYER_NOT_IN_PLAYER_WORLD;
|
|
case 13: return REASON_MAX_PLAYER;
|
|
default: return null;
|
|
}
|
|
}
|
|
|
|
public static com.google.protobuf.Internal.EnumLiteMap<Reason>
|
|
internalGetValueMap() {
|
|
return internalValueMap;
|
|
}
|
|
private static final com.google.protobuf.Internal.EnumLiteMap<
|
|
Reason> internalValueMap =
|
|
new com.google.protobuf.Internal.EnumLiteMap<Reason>() {
|
|
public Reason findValueByNumber(int number) {
|
|
return Reason.forNumber(number);
|
|
}
|
|
};
|
|
|
|
public final com.google.protobuf.Descriptors.EnumValueDescriptor
|
|
getValueDescriptor() {
|
|
if (this == UNRECOGNIZED) {
|
|
throw new java.lang.IllegalStateException(
|
|
"Can't get the descriptor of an unrecognized enum value.");
|
|
}
|
|
return getDescriptor().getValues().get(ordinal());
|
|
}
|
|
public final com.google.protobuf.Descriptors.EnumDescriptor
|
|
getDescriptorForType() {
|
|
return getDescriptor();
|
|
}
|
|
public static final com.google.protobuf.Descriptors.EnumDescriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.getDescriptor().getEnumTypes().get(0);
|
|
}
|
|
|
|
private static final Reason[] VALUES = values();
|
|
|
|
public static Reason valueOf(
|
|
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
|
|
if (desc.getType() != getDescriptor()) {
|
|
throw new java.lang.IllegalArgumentException(
|
|
"EnumValueDescriptor is not for this type.");
|
|
}
|
|
if (desc.getIndex() == -1) {
|
|
return UNRECOGNIZED;
|
|
}
|
|
return VALUES[desc.getIndex()];
|
|
}
|
|
|
|
private final int value;
|
|
|
|
private Reason(int value) {
|
|
this.value = value;
|
|
}
|
|
|
|
// @@protoc_insertion_point(enum_scope:PlayerApplyEnterMpResultNotify.Reason)
|
|
}
|
|
|
|
public static final int IS_AGREED_FIELD_NUMBER = 2;
|
|
private boolean isAgreed_;
|
|
/**
|
|
* <code>bool is_agreed = 2;</code>
|
|
* @return The isAgreed.
|
|
*/
|
|
@java.lang.Override
|
|
public boolean getIsAgreed() {
|
|
return isAgreed_;
|
|
}
|
|
|
|
public static final int TARGET_NICKNAME_FIELD_NUMBER = 12;
|
|
private volatile java.lang.Object targetNickname_;
|
|
/**
|
|
* <code>string target_nickname = 12;</code>
|
|
* @return The targetNickname.
|
|
*/
|
|
@java.lang.Override
|
|
public java.lang.String getTargetNickname() {
|
|
java.lang.Object ref = targetNickname_;
|
|
if (ref instanceof java.lang.String) {
|
|
return (java.lang.String) ref;
|
|
} else {
|
|
com.google.protobuf.ByteString bs =
|
|
(com.google.protobuf.ByteString) ref;
|
|
java.lang.String s = bs.toStringUtf8();
|
|
targetNickname_ = s;
|
|
return s;
|
|
}
|
|
}
|
|
/**
|
|
* <code>string target_nickname = 12;</code>
|
|
* @return The bytes for targetNickname.
|
|
*/
|
|
@java.lang.Override
|
|
public com.google.protobuf.ByteString
|
|
getTargetNicknameBytes() {
|
|
java.lang.Object ref = targetNickname_;
|
|
if (ref instanceof java.lang.String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
targetNickname_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
|
|
public static final int REASON_FIELD_NUMBER = 13;
|
|
private int reason_;
|
|
/**
|
|
* <code>.PlayerApplyEnterMpResultNotify.Reason reason = 13;</code>
|
|
* @return The enum numeric value on the wire for reason.
|
|
*/
|
|
@java.lang.Override public int getReasonValue() {
|
|
return reason_;
|
|
}
|
|
/**
|
|
* <code>.PlayerApplyEnterMpResultNotify.Reason reason = 13;</code>
|
|
* @return The reason.
|
|
*/
|
|
@java.lang.Override public emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason getReason() {
|
|
@SuppressWarnings("deprecation")
|
|
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason result = emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.valueOf(reason_);
|
|
return result == null ? emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.UNRECOGNIZED : result;
|
|
}
|
|
|
|
public static final int TARGET_UID_FIELD_NUMBER = 1;
|
|
private int targetUid_;
|
|
/**
|
|
* <code>uint32 target_uid = 1;</code>
|
|
* @return The targetUid.
|
|
*/
|
|
@java.lang.Override
|
|
public int getTargetUid() {
|
|
return targetUid_;
|
|
}
|
|
|
|
private byte memoizedIsInitialized = -1;
|
|
@java.lang.Override
|
|
public final boolean isInitialized() {
|
|
byte isInitialized = memoizedIsInitialized;
|
|
if (isInitialized == 1) return true;
|
|
if (isInitialized == 0) return false;
|
|
|
|
memoizedIsInitialized = 1;
|
|
return true;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
throws java.io.IOException {
|
|
if (targetUid_ != 0) {
|
|
output.writeUInt32(1, targetUid_);
|
|
}
|
|
if (isAgreed_ != false) {
|
|
output.writeBool(2, isAgreed_);
|
|
}
|
|
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(targetNickname_)) {
|
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 12, targetNickname_);
|
|
}
|
|
if (reason_ != emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.REASON_PLAYER_JUDGE.getNumber()) {
|
|
output.writeEnum(13, reason_);
|
|
}
|
|
unknownFields.writeTo(output);
|
|
}
|
|
|
|
@java.lang.Override
|
|
public int getSerializedSize() {
|
|
int size = memoizedSize;
|
|
if (size != -1) return size;
|
|
|
|
size = 0;
|
|
if (targetUid_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(1, targetUid_);
|
|
}
|
|
if (isAgreed_ != false) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBoolSize(2, isAgreed_);
|
|
}
|
|
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(targetNickname_)) {
|
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(12, targetNickname_);
|
|
}
|
|
if (reason_ != emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.REASON_PLAYER_JUDGE.getNumber()) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeEnumSize(13, reason_);
|
|
}
|
|
size += unknownFields.getSerializedSize();
|
|
memoizedSize = size;
|
|
return size;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public boolean equals(final java.lang.Object obj) {
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify)) {
|
|
return super.equals(obj);
|
|
}
|
|
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify other = (emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify) obj;
|
|
|
|
if (getIsAgreed()
|
|
!= other.getIsAgreed()) return false;
|
|
if (!getTargetNickname()
|
|
.equals(other.getTargetNickname())) return false;
|
|
if (reason_ != other.reason_) return false;
|
|
if (getTargetUid()
|
|
!= other.getTargetUid()) return false;
|
|
if (!unknownFields.equals(other.unknownFields)) return false;
|
|
return true;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public int hashCode() {
|
|
if (memoizedHashCode != 0) {
|
|
return memoizedHashCode;
|
|
}
|
|
int hash = 41;
|
|
hash = (19 * hash) + getDescriptor().hashCode();
|
|
hash = (37 * hash) + IS_AGREED_FIELD_NUMBER;
|
|
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
|
|
getIsAgreed());
|
|
hash = (37 * hash) + TARGET_NICKNAME_FIELD_NUMBER;
|
|
hash = (53 * hash) + getTargetNickname().hashCode();
|
|
hash = (37 * hash) + REASON_FIELD_NUMBER;
|
|
hash = (53 * hash) + reason_;
|
|
hash = (37 * hash) + TARGET_UID_FIELD_NUMBER;
|
|
hash = (53 * hash) + getTargetUid();
|
|
hash = (29 * hash) + unknownFields.hashCode();
|
|
memoizedHashCode = hash;
|
|
return hash;
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
|
|
java.nio.ByteBuffer data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
|
|
java.nio.ByteBuffer data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
|
|
com.google.protobuf.ByteString data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
|
|
com.google.protobuf.ByteString data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(byte[] data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
|
|
byte[] data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseDelimitedFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseDelimitedWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseDelimitedFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
|
|
com.google.protobuf.CodedInputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input, extensionRegistry);
|
|
}
|
|
|
|
@java.lang.Override
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
|
public static Builder newBuilder() {
|
|
return DEFAULT_INSTANCE.toBuilder();
|
|
}
|
|
public static Builder newBuilder(emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify prototype) {
|
|
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
|
|
}
|
|
@java.lang.Override
|
|
public Builder toBuilder() {
|
|
return this == DEFAULT_INSTANCE
|
|
? new Builder() : new Builder().mergeFrom(this);
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected Builder newBuilderForType(
|
|
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
|
|
Builder builder = new Builder(parent);
|
|
return builder;
|
|
}
|
|
/**
|
|
* <pre>
|
|
* CmdId: 1807
|
|
* EnetChannelId: 0
|
|
* EnetIsReliable: false
|
|
* IsAllowClient: true
|
|
* </pre>
|
|
*
|
|
* Protobuf type {@code PlayerApplyEnterMpResultNotify}
|
|
*/
|
|
public static final class Builder extends
|
|
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
|
|
// @@protoc_insertion_point(builder_implements:PlayerApplyEnterMpResultNotify)
|
|
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotifyOrBuilder {
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.internal_static_PlayerApplyEnterMpResultNotify_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.internal_static_PlayerApplyEnterMpResultNotify_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.class, emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Builder.class);
|
|
}
|
|
|
|
// Construct using emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.newBuilder()
|
|
private Builder() {
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
|
|
private Builder(
|
|
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
|
|
super(parent);
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
private void maybeForceBuilderInitialization() {
|
|
if (com.google.protobuf.GeneratedMessageV3
|
|
.alwaysUseFieldBuilders) {
|
|
}
|
|
}
|
|
@java.lang.Override
|
|
public Builder clear() {
|
|
super.clear();
|
|
isAgreed_ = false;
|
|
|
|
targetNickname_ = "";
|
|
|
|
reason_ = 0;
|
|
|
|
targetUid_ = 0;
|
|
|
|
return this;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptorForType() {
|
|
return emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.internal_static_PlayerApplyEnterMpResultNotify_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify getDefaultInstanceForType() {
|
|
return emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.getDefaultInstance();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify build() {
|
|
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify result = buildPartial();
|
|
if (!result.isInitialized()) {
|
|
throw newUninitializedMessageException(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify buildPartial() {
|
|
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify result = new emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify(this);
|
|
result.isAgreed_ = isAgreed_;
|
|
result.targetNickname_ = targetNickname_;
|
|
result.reason_ = reason_;
|
|
result.targetUid_ = targetUid_;
|
|
onBuilt();
|
|
return result;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public Builder clone() {
|
|
return super.clone();
|
|
}
|
|
@java.lang.Override
|
|
public Builder setField(
|
|
com.google.protobuf.Descriptors.FieldDescriptor field,
|
|
java.lang.Object value) {
|
|
return super.setField(field, value);
|
|
}
|
|
@java.lang.Override
|
|
public Builder clearField(
|
|
com.google.protobuf.Descriptors.FieldDescriptor field) {
|
|
return super.clearField(field);
|
|
}
|
|
@java.lang.Override
|
|
public Builder clearOneof(
|
|
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
|
|
return super.clearOneof(oneof);
|
|
}
|
|
@java.lang.Override
|
|
public Builder setRepeatedField(
|
|
com.google.protobuf.Descriptors.FieldDescriptor field,
|
|
int index, java.lang.Object value) {
|
|
return super.setRepeatedField(field, index, value);
|
|
}
|
|
@java.lang.Override
|
|
public Builder addRepeatedField(
|
|
com.google.protobuf.Descriptors.FieldDescriptor field,
|
|
java.lang.Object value) {
|
|
return super.addRepeatedField(field, value);
|
|
}
|
|
@java.lang.Override
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
|
if (other instanceof emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify) {
|
|
return mergeFrom((emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify)other);
|
|
} else {
|
|
super.mergeFrom(other);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public Builder mergeFrom(emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify other) {
|
|
if (other == emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.getDefaultInstance()) return this;
|
|
if (other.getIsAgreed() != false) {
|
|
setIsAgreed(other.getIsAgreed());
|
|
}
|
|
if (!other.getTargetNickname().isEmpty()) {
|
|
targetNickname_ = other.targetNickname_;
|
|
onChanged();
|
|
}
|
|
if (other.reason_ != 0) {
|
|
setReasonValue(other.getReasonValue());
|
|
}
|
|
if (other.getTargetUid() != 0) {
|
|
setTargetUid(other.getTargetUid());
|
|
}
|
|
this.mergeUnknownFields(other.unknownFields);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public final boolean isInitialized() {
|
|
return true;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public Builder mergeFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parsedMessage = null;
|
|
try {
|
|
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
parsedMessage = (emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify) e.getUnfinishedMessage();
|
|
throw e.unwrapIOException();
|
|
} finally {
|
|
if (parsedMessage != null) {
|
|
mergeFrom(parsedMessage);
|
|
}
|
|
}
|
|
return this;
|
|
}
|
|
|
|
private boolean isAgreed_ ;
|
|
/**
|
|
* <code>bool is_agreed = 2;</code>
|
|
* @return The isAgreed.
|
|
*/
|
|
@java.lang.Override
|
|
public boolean getIsAgreed() {
|
|
return isAgreed_;
|
|
}
|
|
/**
|
|
* <code>bool is_agreed = 2;</code>
|
|
* @param value The isAgreed to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setIsAgreed(boolean value) {
|
|
|
|
isAgreed_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>bool is_agreed = 2;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearIsAgreed() {
|
|
|
|
isAgreed_ = false;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private java.lang.Object targetNickname_ = "";
|
|
/**
|
|
* <code>string target_nickname = 12;</code>
|
|
* @return The targetNickname.
|
|
*/
|
|
public java.lang.String getTargetNickname() {
|
|
java.lang.Object ref = targetNickname_;
|
|
if (!(ref instanceof java.lang.String)) {
|
|
com.google.protobuf.ByteString bs =
|
|
(com.google.protobuf.ByteString) ref;
|
|
java.lang.String s = bs.toStringUtf8();
|
|
targetNickname_ = s;
|
|
return s;
|
|
} else {
|
|
return (java.lang.String) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>string target_nickname = 12;</code>
|
|
* @return The bytes for targetNickname.
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getTargetNicknameBytes() {
|
|
java.lang.Object ref = targetNickname_;
|
|
if (ref instanceof String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
targetNickname_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>string target_nickname = 12;</code>
|
|
* @param value The targetNickname to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setTargetNickname(
|
|
java.lang.String value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
|
|
targetNickname_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>string target_nickname = 12;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearTargetNickname() {
|
|
|
|
targetNickname_ = getDefaultInstance().getTargetNickname();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>string target_nickname = 12;</code>
|
|
* @param value The bytes for targetNickname to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setTargetNicknameBytes(
|
|
com.google.protobuf.ByteString value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
checkByteStringIsUtf8(value);
|
|
|
|
targetNickname_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int reason_ = 0;
|
|
/**
|
|
* <code>.PlayerApplyEnterMpResultNotify.Reason reason = 13;</code>
|
|
* @return The enum numeric value on the wire for reason.
|
|
*/
|
|
@java.lang.Override public int getReasonValue() {
|
|
return reason_;
|
|
}
|
|
/**
|
|
* <code>.PlayerApplyEnterMpResultNotify.Reason reason = 13;</code>
|
|
* @param value The enum numeric value on the wire for reason to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setReasonValue(int value) {
|
|
|
|
reason_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.PlayerApplyEnterMpResultNotify.Reason reason = 13;</code>
|
|
* @return The reason.
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason getReason() {
|
|
@SuppressWarnings("deprecation")
|
|
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason result = emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.valueOf(reason_);
|
|
return result == null ? emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.UNRECOGNIZED : result;
|
|
}
|
|
/**
|
|
* <code>.PlayerApplyEnterMpResultNotify.Reason reason = 13;</code>
|
|
* @param value The reason to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setReason(emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
|
|
reason_ = value.getNumber();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.PlayerApplyEnterMpResultNotify.Reason reason = 13;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearReason() {
|
|
|
|
reason_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int targetUid_ ;
|
|
/**
|
|
* <code>uint32 target_uid = 1;</code>
|
|
* @return The targetUid.
|
|
*/
|
|
@java.lang.Override
|
|
public int getTargetUid() {
|
|
return targetUid_;
|
|
}
|
|
/**
|
|
* <code>uint32 target_uid = 1;</code>
|
|
* @param value The targetUid to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setTargetUid(int value) {
|
|
|
|
targetUid_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 target_uid = 1;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearTargetUid() {
|
|
|
|
targetUid_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
@java.lang.Override
|
|
public final Builder setUnknownFields(
|
|
final com.google.protobuf.UnknownFieldSet unknownFields) {
|
|
return super.setUnknownFields(unknownFields);
|
|
}
|
|
|
|
@java.lang.Override
|
|
public final Builder mergeUnknownFields(
|
|
final com.google.protobuf.UnknownFieldSet unknownFields) {
|
|
return super.mergeUnknownFields(unknownFields);
|
|
}
|
|
|
|
|
|
// @@protoc_insertion_point(builder_scope:PlayerApplyEnterMpResultNotify)
|
|
}
|
|
|
|
// @@protoc_insertion_point(class_scope:PlayerApplyEnterMpResultNotify)
|
|
private static final emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify DEFAULT_INSTANCE;
|
|
static {
|
|
DEFAULT_INSTANCE = new emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify();
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
private static final com.google.protobuf.Parser<PlayerApplyEnterMpResultNotify>
|
|
PARSER = new com.google.protobuf.AbstractParser<PlayerApplyEnterMpResultNotify>() {
|
|
@java.lang.Override
|
|
public PlayerApplyEnterMpResultNotify parsePartialFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return new PlayerApplyEnterMpResultNotify(input, extensionRegistry);
|
|
}
|
|
};
|
|
|
|
public static com.google.protobuf.Parser<PlayerApplyEnterMpResultNotify> parser() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Parser<PlayerApplyEnterMpResultNotify> getParserForType() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify getDefaultInstanceForType() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
}
|
|
|
|
private static final com.google.protobuf.Descriptors.Descriptor
|
|
internal_static_PlayerApplyEnterMpResultNotify_descriptor;
|
|
private static final
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internal_static_PlayerApplyEnterMpResultNotify_fieldAccessorTable;
|
|
|
|
public static com.google.protobuf.Descriptors.FileDescriptor
|
|
getDescriptor() {
|
|
return descriptor;
|
|
}
|
|
private static com.google.protobuf.Descriptors.FileDescriptor
|
|
descriptor;
|
|
static {
|
|
java.lang.String[] descriptorData = {
|
|
"\n$PlayerApplyEnterMpResultNotify.proto\"\355" +
|
|
"\004\n\036PlayerApplyEnterMpResultNotify\022\021\n\tis_" +
|
|
"agreed\030\002 \001(\010\022\027\n\017target_nickname\030\014 \001(\t\0226\n" +
|
|
"\006reason\030\r \001(\0162&.PlayerApplyEnterMpResult" +
|
|
"Notify.Reason\022\022\n\ntarget_uid\030\001 \001(\r\"\322\003\n\006Re" +
|
|
"ason\022\027\n\023REASON_PLAYER_JUDGE\020\000\022\035\n\031REASON_" +
|
|
"SCENE_CANNOT_ENTER\020\001\022!\n\035REASON_PLAYER_CA" +
|
|
"NNOT_ENTER_MP\020\002\022\027\n\023REASON_SYSTEM_JUDGE\020\003" +
|
|
"\022\"\n\036REASON_ALLOW_ENTER_PLAYER_FULL\020\004\022&\n\"" +
|
|
"REASON_WORLD_LEVEL_LOWER_THAN_HOST\020\005\022\030\n\024" +
|
|
"REASON_HOST_IN_MATCH\020\006\022\036\n\032REASON_PLAYER_" +
|
|
"IN_BLACKLIST\020\007\022&\n\"REASON_PS_PLAYER_NOT_A" +
|
|
"CCEPT_OTHERS\020\010\022\032\n\026REASON_HOST_IS_BLOCKED" +
|
|
"\020\t\022(\n$REASON_OTHER_DATA_VERSION_NOT_LATE" +
|
|
"ST\020\n\022\"\n\036REASON_DATA_VERSION_NOT_LATEST\020\013" +
|
|
"\022%\n!REASON_PLAYER_NOT_IN_PLAYER_WORLD\020\014\022" +
|
|
"\025\n\021REASON_MAX_PLAYER\020\rB\033\n\031emu.grasscutte" +
|
|
"r.net.protob\006proto3"
|
|
};
|
|
descriptor = com.google.protobuf.Descriptors.FileDescriptor
|
|
.internalBuildGeneratedFileFrom(descriptorData,
|
|
new com.google.protobuf.Descriptors.FileDescriptor[] {
|
|
});
|
|
internal_static_PlayerApplyEnterMpResultNotify_descriptor =
|
|
getDescriptor().getMessageTypes().get(0);
|
|
internal_static_PlayerApplyEnterMpResultNotify_fieldAccessorTable = new
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
|
|
internal_static_PlayerApplyEnterMpResultNotify_descriptor,
|
|
new java.lang.String[] { "IsAgreed", "TargetNickname", "Reason", "TargetUid", });
|
|
}
|
|
|
|
// @@protoc_insertion_point(outer_class_scope)
|
|
}
|