mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-06-05 01:43:47 +08:00
924 lines
32 KiB
Java
924 lines
32 KiB
Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
// source: FoundationInfo.proto
|
|
|
|
package emu.grasscutter.net.proto;
|
|
|
|
public final class FoundationInfoOuterClass {
|
|
private FoundationInfoOuterClass() {}
|
|
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 FoundationInfoOrBuilder extends
|
|
// @@protoc_insertion_point(interface_extends:FoundationInfo)
|
|
com.google.protobuf.MessageOrBuilder {
|
|
|
|
/**
|
|
* <code>.FoundationStatus status = 1;</code>
|
|
* @return The enum numeric value on the wire for status.
|
|
*/
|
|
int getStatusValue();
|
|
/**
|
|
* <code>.FoundationStatus status = 1;</code>
|
|
* @return The status.
|
|
*/
|
|
emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus getStatus();
|
|
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @return A list containing the uidList.
|
|
*/
|
|
java.util.List<java.lang.Integer> getUidListList();
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @return The count of uidList.
|
|
*/
|
|
int getUidListCount();
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @param index The index of the element to return.
|
|
* @return The uidList at the given index.
|
|
*/
|
|
int getUidList(int index);
|
|
|
|
/**
|
|
* <code>uint32 current_building_id = 3;</code>
|
|
* @return The currentBuildingId.
|
|
*/
|
|
int getCurrentBuildingId();
|
|
|
|
/**
|
|
* <code>uint32 locked_by_uid = 4;</code>
|
|
* @return The lockedByUid.
|
|
*/
|
|
int getLockedByUid();
|
|
}
|
|
/**
|
|
* <pre>
|
|
* Obf: HJBPIEDJHAP
|
|
* </pre>
|
|
*
|
|
* Protobuf type {@code FoundationInfo}
|
|
*/
|
|
public static final class FoundationInfo extends
|
|
com.google.protobuf.GeneratedMessageV3 implements
|
|
// @@protoc_insertion_point(message_implements:FoundationInfo)
|
|
FoundationInfoOrBuilder {
|
|
private static final long serialVersionUID = 0L;
|
|
// Use FoundationInfo.newBuilder() to construct.
|
|
private FoundationInfo(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
|
|
super(builder);
|
|
}
|
|
private FoundationInfo() {
|
|
status_ = 0;
|
|
uidList_ = emptyIntList();
|
|
}
|
|
|
|
@java.lang.Override
|
|
@SuppressWarnings({"unused"})
|
|
protected java.lang.Object newInstance(
|
|
UnusedPrivateParameter unused) {
|
|
return new FoundationInfo();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public final com.google.protobuf.UnknownFieldSet
|
|
getUnknownFields() {
|
|
return this.unknownFields;
|
|
}
|
|
private FoundationInfo(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
this();
|
|
if (extensionRegistry == null) {
|
|
throw new java.lang.NullPointerException();
|
|
}
|
|
int mutable_bitField0_ = 0;
|
|
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: {
|
|
int rawValue = input.readEnum();
|
|
|
|
status_ = rawValue;
|
|
break;
|
|
}
|
|
case 16: {
|
|
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
|
|
uidList_ = newIntList();
|
|
mutable_bitField0_ |= 0x00000001;
|
|
}
|
|
uidList_.addInt(input.readUInt32());
|
|
break;
|
|
}
|
|
case 18: {
|
|
int length = input.readRawVarint32();
|
|
int limit = input.pushLimit(length);
|
|
if (!((mutable_bitField0_ & 0x00000001) != 0) && input.getBytesUntilLimit() > 0) {
|
|
uidList_ = newIntList();
|
|
mutable_bitField0_ |= 0x00000001;
|
|
}
|
|
while (input.getBytesUntilLimit() > 0) {
|
|
uidList_.addInt(input.readUInt32());
|
|
}
|
|
input.popLimit(limit);
|
|
break;
|
|
}
|
|
case 24: {
|
|
|
|
currentBuildingId_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 32: {
|
|
|
|
lockedByUid_ = 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 {
|
|
if (((mutable_bitField0_ & 0x00000001) != 0)) {
|
|
uidList_.makeImmutable(); // C
|
|
}
|
|
this.unknownFields = unknownFields.build();
|
|
makeExtensionsImmutable();
|
|
}
|
|
}
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.FoundationInfoOuterClass.internal_static_FoundationInfo_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.FoundationInfoOuterClass.internal_static_FoundationInfo_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo.class, emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo.Builder.class);
|
|
}
|
|
|
|
public static final int STATUS_FIELD_NUMBER = 1;
|
|
private int status_;
|
|
/**
|
|
* <code>.FoundationStatus status = 1;</code>
|
|
* @return The enum numeric value on the wire for status.
|
|
*/
|
|
@java.lang.Override public int getStatusValue() {
|
|
return status_;
|
|
}
|
|
/**
|
|
* <code>.FoundationStatus status = 1;</code>
|
|
* @return The status.
|
|
*/
|
|
@java.lang.Override public emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus getStatus() {
|
|
@SuppressWarnings("deprecation")
|
|
emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus result = emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus.valueOf(status_);
|
|
return result == null ? emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus.UNRECOGNIZED : result;
|
|
}
|
|
|
|
public static final int UID_LIST_FIELD_NUMBER = 2;
|
|
private com.google.protobuf.Internal.IntList uidList_;
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @return A list containing the uidList.
|
|
*/
|
|
@java.lang.Override
|
|
public java.util.List<java.lang.Integer>
|
|
getUidListList() {
|
|
return uidList_;
|
|
}
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @return The count of uidList.
|
|
*/
|
|
public int getUidListCount() {
|
|
return uidList_.size();
|
|
}
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @param index The index of the element to return.
|
|
* @return The uidList at the given index.
|
|
*/
|
|
public int getUidList(int index) {
|
|
return uidList_.getInt(index);
|
|
}
|
|
private int uidListMemoizedSerializedSize = -1;
|
|
|
|
public static final int CURRENT_BUILDING_ID_FIELD_NUMBER = 3;
|
|
private int currentBuildingId_;
|
|
/**
|
|
* <code>uint32 current_building_id = 3;</code>
|
|
* @return The currentBuildingId.
|
|
*/
|
|
@java.lang.Override
|
|
public int getCurrentBuildingId() {
|
|
return currentBuildingId_;
|
|
}
|
|
|
|
public static final int LOCKED_BY_UID_FIELD_NUMBER = 4;
|
|
private int lockedByUid_;
|
|
/**
|
|
* <code>uint32 locked_by_uid = 4;</code>
|
|
* @return The lockedByUid.
|
|
*/
|
|
@java.lang.Override
|
|
public int getLockedByUid() {
|
|
return lockedByUid_;
|
|
}
|
|
|
|
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 {
|
|
getSerializedSize();
|
|
if (status_ != emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus.FOUNDATION_STATUS_NONE.getNumber()) {
|
|
output.writeEnum(1, status_);
|
|
}
|
|
if (getUidListList().size() > 0) {
|
|
output.writeUInt32NoTag(18);
|
|
output.writeUInt32NoTag(uidListMemoizedSerializedSize);
|
|
}
|
|
for (int i = 0; i < uidList_.size(); i++) {
|
|
output.writeUInt32NoTag(uidList_.getInt(i));
|
|
}
|
|
if (currentBuildingId_ != 0) {
|
|
output.writeUInt32(3, currentBuildingId_);
|
|
}
|
|
if (lockedByUid_ != 0) {
|
|
output.writeUInt32(4, lockedByUid_);
|
|
}
|
|
unknownFields.writeTo(output);
|
|
}
|
|
|
|
@java.lang.Override
|
|
public int getSerializedSize() {
|
|
int size = memoizedSize;
|
|
if (size != -1) return size;
|
|
|
|
size = 0;
|
|
if (status_ != emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus.FOUNDATION_STATUS_NONE.getNumber()) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeEnumSize(1, status_);
|
|
}
|
|
{
|
|
int dataSize = 0;
|
|
for (int i = 0; i < uidList_.size(); i++) {
|
|
dataSize += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32SizeNoTag(uidList_.getInt(i));
|
|
}
|
|
size += dataSize;
|
|
if (!getUidListList().isEmpty()) {
|
|
size += 1;
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeInt32SizeNoTag(dataSize);
|
|
}
|
|
uidListMemoizedSerializedSize = dataSize;
|
|
}
|
|
if (currentBuildingId_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(3, currentBuildingId_);
|
|
}
|
|
if (lockedByUid_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(4, lockedByUid_);
|
|
}
|
|
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.FoundationInfoOuterClass.FoundationInfo)) {
|
|
return super.equals(obj);
|
|
}
|
|
emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo other = (emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo) obj;
|
|
|
|
if (status_ != other.status_) return false;
|
|
if (!getUidListList()
|
|
.equals(other.getUidListList())) return false;
|
|
if (getCurrentBuildingId()
|
|
!= other.getCurrentBuildingId()) return false;
|
|
if (getLockedByUid()
|
|
!= other.getLockedByUid()) 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) + STATUS_FIELD_NUMBER;
|
|
hash = (53 * hash) + status_;
|
|
if (getUidListCount() > 0) {
|
|
hash = (37 * hash) + UID_LIST_FIELD_NUMBER;
|
|
hash = (53 * hash) + getUidListList().hashCode();
|
|
}
|
|
hash = (37 * hash) + CURRENT_BUILDING_ID_FIELD_NUMBER;
|
|
hash = (53 * hash) + getCurrentBuildingId();
|
|
hash = (37 * hash) + LOCKED_BY_UID_FIELD_NUMBER;
|
|
hash = (53 * hash) + getLockedByUid();
|
|
hash = (29 * hash) + unknownFields.hashCode();
|
|
memoizedHashCode = hash;
|
|
return hash;
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo parseFrom(
|
|
java.nio.ByteBuffer data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo 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.FoundationInfoOuterClass.FoundationInfo parseFrom(
|
|
com.google.protobuf.ByteString data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo 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.FoundationInfoOuterClass.FoundationInfo parseFrom(byte[] data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo parseFrom(
|
|
byte[] data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo parseFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo 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.FoundationInfoOuterClass.FoundationInfo parseDelimitedFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseDelimitedWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo 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.FoundationInfoOuterClass.FoundationInfo parseFrom(
|
|
com.google.protobuf.CodedInputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo 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.FoundationInfoOuterClass.FoundationInfo 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>
|
|
* Obf: HJBPIEDJHAP
|
|
* </pre>
|
|
*
|
|
* Protobuf type {@code FoundationInfo}
|
|
*/
|
|
public static final class Builder extends
|
|
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
|
|
// @@protoc_insertion_point(builder_implements:FoundationInfo)
|
|
emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfoOrBuilder {
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.FoundationInfoOuterClass.internal_static_FoundationInfo_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.FoundationInfoOuterClass.internal_static_FoundationInfo_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo.class, emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo.Builder.class);
|
|
}
|
|
|
|
// Construct using emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo.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();
|
|
status_ = 0;
|
|
|
|
uidList_ = emptyIntList();
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
currentBuildingId_ = 0;
|
|
|
|
lockedByUid_ = 0;
|
|
|
|
return this;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptorForType() {
|
|
return emu.grasscutter.net.proto.FoundationInfoOuterClass.internal_static_FoundationInfo_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo getDefaultInstanceForType() {
|
|
return emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo.getDefaultInstance();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo build() {
|
|
emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo result = buildPartial();
|
|
if (!result.isInitialized()) {
|
|
throw newUninitializedMessageException(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo buildPartial() {
|
|
emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo result = new emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo(this);
|
|
int from_bitField0_ = bitField0_;
|
|
result.status_ = status_;
|
|
if (((bitField0_ & 0x00000001) != 0)) {
|
|
uidList_.makeImmutable();
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
}
|
|
result.uidList_ = uidList_;
|
|
result.currentBuildingId_ = currentBuildingId_;
|
|
result.lockedByUid_ = lockedByUid_;
|
|
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.FoundationInfoOuterClass.FoundationInfo) {
|
|
return mergeFrom((emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo)other);
|
|
} else {
|
|
super.mergeFrom(other);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public Builder mergeFrom(emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo other) {
|
|
if (other == emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo.getDefaultInstance()) return this;
|
|
if (other.status_ != 0) {
|
|
setStatusValue(other.getStatusValue());
|
|
}
|
|
if (!other.uidList_.isEmpty()) {
|
|
if (uidList_.isEmpty()) {
|
|
uidList_ = other.uidList_;
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
} else {
|
|
ensureUidListIsMutable();
|
|
uidList_.addAll(other.uidList_);
|
|
}
|
|
onChanged();
|
|
}
|
|
if (other.getCurrentBuildingId() != 0) {
|
|
setCurrentBuildingId(other.getCurrentBuildingId());
|
|
}
|
|
if (other.getLockedByUid() != 0) {
|
|
setLockedByUid(other.getLockedByUid());
|
|
}
|
|
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.FoundationInfoOuterClass.FoundationInfo parsedMessage = null;
|
|
try {
|
|
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
parsedMessage = (emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo) e.getUnfinishedMessage();
|
|
throw e.unwrapIOException();
|
|
} finally {
|
|
if (parsedMessage != null) {
|
|
mergeFrom(parsedMessage);
|
|
}
|
|
}
|
|
return this;
|
|
}
|
|
private int bitField0_;
|
|
|
|
private int status_ = 0;
|
|
/**
|
|
* <code>.FoundationStatus status = 1;</code>
|
|
* @return The enum numeric value on the wire for status.
|
|
*/
|
|
@java.lang.Override public int getStatusValue() {
|
|
return status_;
|
|
}
|
|
/**
|
|
* <code>.FoundationStatus status = 1;</code>
|
|
* @param value The enum numeric value on the wire for status to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setStatusValue(int value) {
|
|
|
|
status_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.FoundationStatus status = 1;</code>
|
|
* @return The status.
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus getStatus() {
|
|
@SuppressWarnings("deprecation")
|
|
emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus result = emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus.valueOf(status_);
|
|
return result == null ? emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus.UNRECOGNIZED : result;
|
|
}
|
|
/**
|
|
* <code>.FoundationStatus status = 1;</code>
|
|
* @param value The status to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setStatus(emu.grasscutter.net.proto.FoundationStatusOuterClass.FoundationStatus value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
|
|
status_ = value.getNumber();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.FoundationStatus status = 1;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearStatus() {
|
|
|
|
status_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private com.google.protobuf.Internal.IntList uidList_ = emptyIntList();
|
|
private void ensureUidListIsMutable() {
|
|
if (!((bitField0_ & 0x00000001) != 0)) {
|
|
uidList_ = mutableCopy(uidList_);
|
|
bitField0_ |= 0x00000001;
|
|
}
|
|
}
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @return A list containing the uidList.
|
|
*/
|
|
public java.util.List<java.lang.Integer>
|
|
getUidListList() {
|
|
return ((bitField0_ & 0x00000001) != 0) ?
|
|
java.util.Collections.unmodifiableList(uidList_) : uidList_;
|
|
}
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @return The count of uidList.
|
|
*/
|
|
public int getUidListCount() {
|
|
return uidList_.size();
|
|
}
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @param index The index of the element to return.
|
|
* @return The uidList at the given index.
|
|
*/
|
|
public int getUidList(int index) {
|
|
return uidList_.getInt(index);
|
|
}
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @param index The index to set the value at.
|
|
* @param value The uidList to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setUidList(
|
|
int index, int value) {
|
|
ensureUidListIsMutable();
|
|
uidList_.setInt(index, value);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @param value The uidList to add.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder addUidList(int value) {
|
|
ensureUidListIsMutable();
|
|
uidList_.addInt(value);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @param values The uidList to add.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder addAllUidList(
|
|
java.lang.Iterable<? extends java.lang.Integer> values) {
|
|
ensureUidListIsMutable();
|
|
com.google.protobuf.AbstractMessageLite.Builder.addAll(
|
|
values, uidList_);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated uint32 uid_list = 2;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearUidList() {
|
|
uidList_ = emptyIntList();
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int currentBuildingId_ ;
|
|
/**
|
|
* <code>uint32 current_building_id = 3;</code>
|
|
* @return The currentBuildingId.
|
|
*/
|
|
@java.lang.Override
|
|
public int getCurrentBuildingId() {
|
|
return currentBuildingId_;
|
|
}
|
|
/**
|
|
* <code>uint32 current_building_id = 3;</code>
|
|
* @param value The currentBuildingId to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setCurrentBuildingId(int value) {
|
|
|
|
currentBuildingId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 current_building_id = 3;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearCurrentBuildingId() {
|
|
|
|
currentBuildingId_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int lockedByUid_ ;
|
|
/**
|
|
* <code>uint32 locked_by_uid = 4;</code>
|
|
* @return The lockedByUid.
|
|
*/
|
|
@java.lang.Override
|
|
public int getLockedByUid() {
|
|
return lockedByUid_;
|
|
}
|
|
/**
|
|
* <code>uint32 locked_by_uid = 4;</code>
|
|
* @param value The lockedByUid to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setLockedByUid(int value) {
|
|
|
|
lockedByUid_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 locked_by_uid = 4;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearLockedByUid() {
|
|
|
|
lockedByUid_ = 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:FoundationInfo)
|
|
}
|
|
|
|
// @@protoc_insertion_point(class_scope:FoundationInfo)
|
|
private static final emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo DEFAULT_INSTANCE;
|
|
static {
|
|
DEFAULT_INSTANCE = new emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo();
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
private static final com.google.protobuf.Parser<FoundationInfo>
|
|
PARSER = new com.google.protobuf.AbstractParser<FoundationInfo>() {
|
|
@java.lang.Override
|
|
public FoundationInfo parsePartialFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return new FoundationInfo(input, extensionRegistry);
|
|
}
|
|
};
|
|
|
|
public static com.google.protobuf.Parser<FoundationInfo> parser() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Parser<FoundationInfo> getParserForType() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.FoundationInfoOuterClass.FoundationInfo getDefaultInstanceForType() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
}
|
|
|
|
private static final com.google.protobuf.Descriptors.Descriptor
|
|
internal_static_FoundationInfo_descriptor;
|
|
private static final
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internal_static_FoundationInfo_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\024FoundationInfo.proto\032\026FoundationStatus" +
|
|
".proto\"y\n\016FoundationInfo\022!\n\006status\030\001 \001(\016" +
|
|
"2\021.FoundationStatus\022\020\n\010uid_list\030\002 \003(\r\022\033\n" +
|
|
"\023current_building_id\030\003 \001(\r\022\025\n\rlocked_by_" +
|
|
"uid\030\004 \001(\rB\033\n\031emu.grasscutter.net.protob\006" +
|
|
"proto3"
|
|
};
|
|
descriptor = com.google.protobuf.Descriptors.FileDescriptor
|
|
.internalBuildGeneratedFileFrom(descriptorData,
|
|
new com.google.protobuf.Descriptors.FileDescriptor[] {
|
|
emu.grasscutter.net.proto.FoundationStatusOuterClass.getDescriptor(),
|
|
});
|
|
internal_static_FoundationInfo_descriptor =
|
|
getDescriptor().getMessageTypes().get(0);
|
|
internal_static_FoundationInfo_fieldAccessorTable = new
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
|
|
internal_static_FoundationInfo_descriptor,
|
|
new java.lang.String[] { "Status", "UidList", "CurrentBuildingId", "LockedByUid", });
|
|
emu.grasscutter.net.proto.FoundationStatusOuterClass.getDescriptor();
|
|
}
|
|
|
|
// @@protoc_insertion_point(outer_class_scope)
|
|
}
|