// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: ServerUpdateGlobalValueNotify.proto
package emu.grasscutter.net.proto;
public final class ServerUpdateGlobalValueNotifyOuterClass {
private ServerUpdateGlobalValueNotifyOuterClass() {}
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 ServerUpdateGlobalValueNotifyOrBuilder extends
// @@protoc_insertion_point(interface_extends:ServerUpdateGlobalValueNotify)
com.google.protobuf.MessageOrBuilder {
/**
* float delta = 2;
* @return The delta.
*/
float getDelta();
/**
* uint32 entity_id = 8;
* @return The entityId.
*/
int getEntityId();
/**
* uint32 key_hash = 5;
* @return The keyHash.
*/
int getKeyHash();
/**
* .ServerUpdateGlobalValueNotify.UpdateType update_type = 3;
* @return The enum numeric value on the wire for updateType.
*/
int getUpdateTypeValue();
/**
* .ServerUpdateGlobalValueNotify.UpdateType update_type = 3;
* @return The updateType.
*/
emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType getUpdateType();
/**
* float value = 1;
* @return The value.
*/
float getValue();
}
/**
*
* CmdId: 1181 * Obf: BKDHPPNCFBO ** * Protobuf type {@code ServerUpdateGlobalValueNotify} */ public static final class ServerUpdateGlobalValueNotify extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:ServerUpdateGlobalValueNotify) ServerUpdateGlobalValueNotifyOrBuilder { private static final long serialVersionUID = 0L; // Use ServerUpdateGlobalValueNotify.newBuilder() to construct. private ServerUpdateGlobalValueNotify(com.google.protobuf.GeneratedMessageV3.Builder> builder) { super(builder); } private ServerUpdateGlobalValueNotify() { updateType_ = 0; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new ServerUpdateGlobalValueNotify(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private ServerUpdateGlobalValueNotify( 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 13: { value_ = input.readFloat(); break; } case 21: { delta_ = input.readFloat(); break; } case 24: { int rawValue = input.readEnum(); updateType_ = rawValue; break; } case 40: { keyHash_ = input.readUInt32(); break; } case 64: { entityId_ = input.readUInt32(); 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.ServerUpdateGlobalValueNotifyOuterClass.internal_static_ServerUpdateGlobalValueNotify_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.internal_static_ServerUpdateGlobalValueNotify_fieldAccessorTable .ensureFieldAccessorsInitialized( emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.class, emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.Builder.class); } /** *
* Obf: AHKBKOMMMJD
*
*
* Protobuf enum {@code ServerUpdateGlobalValueNotify.UpdateType}
*/
public enum UpdateType
implements com.google.protobuf.ProtocolMessageEnum {
/**
* INVALUE = 0;
*/
INVALUE(0),
/**
* ADD = 1;
*/
ADD(1),
/**
* SET = 2;
*/
SET(2),
UNRECOGNIZED(-1),
;
/**
* INVALUE = 0;
*/
public static final int INVALUE_VALUE = 0;
/**
* ADD = 1;
*/
public static final int ADD_VALUE = 1;
/**
* SET = 2;
*/
public static final int SET_VALUE = 2;
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 UpdateType 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 UpdateType forNumber(int value) {
switch (value) {
case 0: return INVALUE;
case 1: return ADD;
case 2: return SET;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMapfloat delta = 2;
* @return The delta.
*/
@java.lang.Override
public float getDelta() {
return delta_;
}
public static final int ENTITY_ID_FIELD_NUMBER = 8;
private int entityId_;
/**
* uint32 entity_id = 8;
* @return The entityId.
*/
@java.lang.Override
public int getEntityId() {
return entityId_;
}
public static final int KEY_HASH_FIELD_NUMBER = 5;
private int keyHash_;
/**
* uint32 key_hash = 5;
* @return The keyHash.
*/
@java.lang.Override
public int getKeyHash() {
return keyHash_;
}
public static final int UPDATE_TYPE_FIELD_NUMBER = 3;
private int updateType_;
/**
* .ServerUpdateGlobalValueNotify.UpdateType update_type = 3;
* @return The enum numeric value on the wire for updateType.
*/
@java.lang.Override public int getUpdateTypeValue() {
return updateType_;
}
/**
* .ServerUpdateGlobalValueNotify.UpdateType update_type = 3;
* @return The updateType.
*/
@java.lang.Override public emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType getUpdateType() {
@SuppressWarnings("deprecation")
emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType result = emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType.valueOf(updateType_);
return result == null ? emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType.UNRECOGNIZED : result;
}
public static final int VALUE_FIELD_NUMBER = 1;
private float value_;
/**
* float value = 1;
* @return The value.
*/
@java.lang.Override
public float getValue() {
return value_;
}
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 (value_ != 0F) {
output.writeFloat(1, value_);
}
if (delta_ != 0F) {
output.writeFloat(2, delta_);
}
if (updateType_ != emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType.INVALUE.getNumber()) {
output.writeEnum(3, updateType_);
}
if (keyHash_ != 0) {
output.writeUInt32(5, keyHash_);
}
if (entityId_ != 0) {
output.writeUInt32(8, entityId_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (value_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(1, value_);
}
if (delta_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(2, delta_);
}
if (updateType_ != emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType.INVALUE.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(3, updateType_);
}
if (keyHash_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(5, keyHash_);
}
if (entityId_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(8, entityId_);
}
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.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify)) {
return super.equals(obj);
}
emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify other = (emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify) obj;
if (java.lang.Float.floatToIntBits(getDelta())
!= java.lang.Float.floatToIntBits(
other.getDelta())) return false;
if (getEntityId()
!= other.getEntityId()) return false;
if (getKeyHash()
!= other.getKeyHash()) return false;
if (updateType_ != other.updateType_) return false;
if (java.lang.Float.floatToIntBits(getValue())
!= java.lang.Float.floatToIntBits(
other.getValue())) 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) + DELTA_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getDelta());
hash = (37 * hash) + ENTITY_ID_FIELD_NUMBER;
hash = (53 * hash) + getEntityId();
hash = (37 * hash) + KEY_HASH_FIELD_NUMBER;
hash = (53 * hash) + getKeyHash();
hash = (37 * hash) + UPDATE_TYPE_FIELD_NUMBER;
hash = (53 * hash) + updateType_;
hash = (37 * hash) + VALUE_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getValue());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify 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.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify 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.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify 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.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify 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.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify 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.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify 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;
}
/**
*
* CmdId: 1181
* Obf: BKDHPPNCFBO
*
*
* Protobuf type {@code ServerUpdateGlobalValueNotify}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builderfloat delta = 2;
* @return The delta.
*/
@java.lang.Override
public float getDelta() {
return delta_;
}
/**
* float delta = 2;
* @param value The delta to set.
* @return This builder for chaining.
*/
public Builder setDelta(float value) {
delta_ = value;
onChanged();
return this;
}
/**
* float delta = 2;
* @return This builder for chaining.
*/
public Builder clearDelta() {
delta_ = 0F;
onChanged();
return this;
}
private int entityId_ ;
/**
* uint32 entity_id = 8;
* @return The entityId.
*/
@java.lang.Override
public int getEntityId() {
return entityId_;
}
/**
* uint32 entity_id = 8;
* @param value The entityId to set.
* @return This builder for chaining.
*/
public Builder setEntityId(int value) {
entityId_ = value;
onChanged();
return this;
}
/**
* uint32 entity_id = 8;
* @return This builder for chaining.
*/
public Builder clearEntityId() {
entityId_ = 0;
onChanged();
return this;
}
private int keyHash_ ;
/**
* uint32 key_hash = 5;
* @return The keyHash.
*/
@java.lang.Override
public int getKeyHash() {
return keyHash_;
}
/**
* uint32 key_hash = 5;
* @param value The keyHash to set.
* @return This builder for chaining.
*/
public Builder setKeyHash(int value) {
keyHash_ = value;
onChanged();
return this;
}
/**
* uint32 key_hash = 5;
* @return This builder for chaining.
*/
public Builder clearKeyHash() {
keyHash_ = 0;
onChanged();
return this;
}
private int updateType_ = 0;
/**
* .ServerUpdateGlobalValueNotify.UpdateType update_type = 3;
* @return The enum numeric value on the wire for updateType.
*/
@java.lang.Override public int getUpdateTypeValue() {
return updateType_;
}
/**
* .ServerUpdateGlobalValueNotify.UpdateType update_type = 3;
* @param value The enum numeric value on the wire for updateType to set.
* @return This builder for chaining.
*/
public Builder setUpdateTypeValue(int value) {
updateType_ = value;
onChanged();
return this;
}
/**
* .ServerUpdateGlobalValueNotify.UpdateType update_type = 3;
* @return The updateType.
*/
@java.lang.Override
public emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType getUpdateType() {
@SuppressWarnings("deprecation")
emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType result = emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType.valueOf(updateType_);
return result == null ? emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType.UNRECOGNIZED : result;
}
/**
* .ServerUpdateGlobalValueNotify.UpdateType update_type = 3;
* @param value The updateType to set.
* @return This builder for chaining.
*/
public Builder setUpdateType(emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify.UpdateType value) {
if (value == null) {
throw new NullPointerException();
}
updateType_ = value.getNumber();
onChanged();
return this;
}
/**
* .ServerUpdateGlobalValueNotify.UpdateType update_type = 3;
* @return This builder for chaining.
*/
public Builder clearUpdateType() {
updateType_ = 0;
onChanged();
return this;
}
private float value_ ;
/**
* float value = 1;
* @return The value.
*/
@java.lang.Override
public float getValue() {
return value_;
}
/**
* float value = 1;
* @param value The value to set.
* @return This builder for chaining.
*/
public Builder setValue(float value) {
value_ = value;
onChanged();
return this;
}
/**
* float value = 1;
* @return This builder for chaining.
*/
public Builder clearValue() {
value_ = 0F;
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:ServerUpdateGlobalValueNotify)
}
// @@protoc_insertion_point(class_scope:ServerUpdateGlobalValueNotify)
private static final emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify();
}
public static emu.grasscutter.net.proto.ServerUpdateGlobalValueNotifyOuterClass.ServerUpdateGlobalValueNotify getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser