// Generated by the protocol buffer compiler. DO NOT EDIT! // source: BrickBreakerLevelInfo.proto package emu.grasscutter.net.proto; public final class BrickBreakerLevelInfoOuterClass { private BrickBreakerLevelInfoOuterClass() {} 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 BrickBreakerLevelInfoOrBuilder extends // @@protoc_insertion_point(interface_extends:BrickBreakerLevelInfo) com.google.protobuf.MessageOrBuilder { /** * uint32 max_score = 5; * @return The maxScore. */ int getMaxScore(); /** * uint32 level_id = 4; * @return The levelId. */ int getLevelId(); /** * bool BHFCMBEMGIN = 12; * @return The bHFCMBEMGIN. */ boolean getBHFCMBEMGIN(); /** * repeated uint32 chosen_avatar_list = 11; * @return A list containing the chosenAvatarList. */ java.util.List getChosenAvatarListList(); /** * repeated uint32 chosen_avatar_list = 11; * @return The count of chosenAvatarList. */ int getChosenAvatarListCount(); /** * repeated uint32 chosen_avatar_list = 11; * @param index The index of the element to return. * @return The chosenAvatarList at the given index. */ int getChosenAvatarList(int index); /** * repeated uint32 chosen_skill_list = 15; * @return A list containing the chosenSkillList. */ java.util.List getChosenSkillListList(); /** * repeated uint32 chosen_skill_list = 15; * @return The count of chosenSkillList. */ int getChosenSkillListCount(); /** * repeated uint32 chosen_skill_list = 15; * @param index The index of the element to return. * @return The chosenSkillList at the given index. */ int getChosenSkillList(int index); /** * bool is_finish = 7; * @return The isFinish. */ boolean getIsFinish(); } /** *
   * Obf: KDBGNEBONLF
   * 
* * Protobuf type {@code BrickBreakerLevelInfo} */ public static final class BrickBreakerLevelInfo extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:BrickBreakerLevelInfo) BrickBreakerLevelInfoOrBuilder { private static final long serialVersionUID = 0L; // Use BrickBreakerLevelInfo.newBuilder() to construct. private BrickBreakerLevelInfo(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private BrickBreakerLevelInfo() { chosenAvatarList_ = emptyIntList(); chosenSkillList_ = emptyIntList(); } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new BrickBreakerLevelInfo(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private BrickBreakerLevelInfo( 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 32: { levelId_ = input.readUInt32(); break; } case 40: { maxScore_ = input.readUInt32(); break; } case 56: { isFinish_ = input.readBool(); break; } case 88: { if (!((mutable_bitField0_ & 0x00000001) != 0)) { chosenAvatarList_ = newIntList(); mutable_bitField0_ |= 0x00000001; } chosenAvatarList_.addInt(input.readUInt32()); break; } case 90: { int length = input.readRawVarint32(); int limit = input.pushLimit(length); if (!((mutable_bitField0_ & 0x00000001) != 0) && input.getBytesUntilLimit() > 0) { chosenAvatarList_ = newIntList(); mutable_bitField0_ |= 0x00000001; } while (input.getBytesUntilLimit() > 0) { chosenAvatarList_.addInt(input.readUInt32()); } input.popLimit(limit); break; } case 96: { bHFCMBEMGIN_ = input.readBool(); break; } case 120: { if (!((mutable_bitField0_ & 0x00000002) != 0)) { chosenSkillList_ = newIntList(); mutable_bitField0_ |= 0x00000002; } chosenSkillList_.addInt(input.readUInt32()); break; } case 122: { int length = input.readRawVarint32(); int limit = input.pushLimit(length); if (!((mutable_bitField0_ & 0x00000002) != 0) && input.getBytesUntilLimit() > 0) { chosenSkillList_ = newIntList(); mutable_bitField0_ |= 0x00000002; } while (input.getBytesUntilLimit() > 0) { chosenSkillList_.addInt(input.readUInt32()); } input.popLimit(limit); 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)) { chosenAvatarList_.makeImmutable(); // C } if (((mutable_bitField0_ & 0x00000002) != 0)) { chosenSkillList_.makeImmutable(); // C } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.internal_static_BrickBreakerLevelInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.internal_static_BrickBreakerLevelInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo.class, emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo.Builder.class); } public static final int MAX_SCORE_FIELD_NUMBER = 5; private int maxScore_; /** * uint32 max_score = 5; * @return The maxScore. */ @java.lang.Override public int getMaxScore() { return maxScore_; } public static final int LEVEL_ID_FIELD_NUMBER = 4; private int levelId_; /** * uint32 level_id = 4; * @return The levelId. */ @java.lang.Override public int getLevelId() { return levelId_; } public static final int BHFCMBEMGIN_FIELD_NUMBER = 12; private boolean bHFCMBEMGIN_; /** * bool BHFCMBEMGIN = 12; * @return The bHFCMBEMGIN. */ @java.lang.Override public boolean getBHFCMBEMGIN() { return bHFCMBEMGIN_; } public static final int CHOSEN_AVATAR_LIST_FIELD_NUMBER = 11; private com.google.protobuf.Internal.IntList chosenAvatarList_; /** * repeated uint32 chosen_avatar_list = 11; * @return A list containing the chosenAvatarList. */ @java.lang.Override public java.util.List getChosenAvatarListList() { return chosenAvatarList_; } /** * repeated uint32 chosen_avatar_list = 11; * @return The count of chosenAvatarList. */ public int getChosenAvatarListCount() { return chosenAvatarList_.size(); } /** * repeated uint32 chosen_avatar_list = 11; * @param index The index of the element to return. * @return The chosenAvatarList at the given index. */ public int getChosenAvatarList(int index) { return chosenAvatarList_.getInt(index); } private int chosenAvatarListMemoizedSerializedSize = -1; public static final int CHOSEN_SKILL_LIST_FIELD_NUMBER = 15; private com.google.protobuf.Internal.IntList chosenSkillList_; /** * repeated uint32 chosen_skill_list = 15; * @return A list containing the chosenSkillList. */ @java.lang.Override public java.util.List getChosenSkillListList() { return chosenSkillList_; } /** * repeated uint32 chosen_skill_list = 15; * @return The count of chosenSkillList. */ public int getChosenSkillListCount() { return chosenSkillList_.size(); } /** * repeated uint32 chosen_skill_list = 15; * @param index The index of the element to return. * @return The chosenSkillList at the given index. */ public int getChosenSkillList(int index) { return chosenSkillList_.getInt(index); } private int chosenSkillListMemoizedSerializedSize = -1; public static final int IS_FINISH_FIELD_NUMBER = 7; private boolean isFinish_; /** * bool is_finish = 7; * @return The isFinish. */ @java.lang.Override public boolean getIsFinish() { return isFinish_; } 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 (levelId_ != 0) { output.writeUInt32(4, levelId_); } if (maxScore_ != 0) { output.writeUInt32(5, maxScore_); } if (isFinish_ != false) { output.writeBool(7, isFinish_); } if (getChosenAvatarListList().size() > 0) { output.writeUInt32NoTag(90); output.writeUInt32NoTag(chosenAvatarListMemoizedSerializedSize); } for (int i = 0; i < chosenAvatarList_.size(); i++) { output.writeUInt32NoTag(chosenAvatarList_.getInt(i)); } if (bHFCMBEMGIN_ != false) { output.writeBool(12, bHFCMBEMGIN_); } if (getChosenSkillListList().size() > 0) { output.writeUInt32NoTag(122); output.writeUInt32NoTag(chosenSkillListMemoizedSerializedSize); } for (int i = 0; i < chosenSkillList_.size(); i++) { output.writeUInt32NoTag(chosenSkillList_.getInt(i)); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (levelId_ != 0) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(4, levelId_); } if (maxScore_ != 0) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(5, maxScore_); } if (isFinish_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(7, isFinish_); } { int dataSize = 0; for (int i = 0; i < chosenAvatarList_.size(); i++) { dataSize += com.google.protobuf.CodedOutputStream .computeUInt32SizeNoTag(chosenAvatarList_.getInt(i)); } size += dataSize; if (!getChosenAvatarListList().isEmpty()) { size += 1; size += com.google.protobuf.CodedOutputStream .computeInt32SizeNoTag(dataSize); } chosenAvatarListMemoizedSerializedSize = dataSize; } if (bHFCMBEMGIN_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(12, bHFCMBEMGIN_); } { int dataSize = 0; for (int i = 0; i < chosenSkillList_.size(); i++) { dataSize += com.google.protobuf.CodedOutputStream .computeUInt32SizeNoTag(chosenSkillList_.getInt(i)); } size += dataSize; if (!getChosenSkillListList().isEmpty()) { size += 1; size += com.google.protobuf.CodedOutputStream .computeInt32SizeNoTag(dataSize); } chosenSkillListMemoizedSerializedSize = dataSize; } 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.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo)) { return super.equals(obj); } emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo other = (emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo) obj; if (getMaxScore() != other.getMaxScore()) return false; if (getLevelId() != other.getLevelId()) return false; if (getBHFCMBEMGIN() != other.getBHFCMBEMGIN()) return false; if (!getChosenAvatarListList() .equals(other.getChosenAvatarListList())) return false; if (!getChosenSkillListList() .equals(other.getChosenSkillListList())) return false; if (getIsFinish() != other.getIsFinish()) 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) + MAX_SCORE_FIELD_NUMBER; hash = (53 * hash) + getMaxScore(); hash = (37 * hash) + LEVEL_ID_FIELD_NUMBER; hash = (53 * hash) + getLevelId(); hash = (37 * hash) + BHFCMBEMGIN_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getBHFCMBEMGIN()); if (getChosenAvatarListCount() > 0) { hash = (37 * hash) + CHOSEN_AVATAR_LIST_FIELD_NUMBER; hash = (53 * hash) + getChosenAvatarListList().hashCode(); } if (getChosenSkillListCount() > 0) { hash = (37 * hash) + CHOSEN_SKILL_LIST_FIELD_NUMBER; hash = (53 * hash) + getChosenSkillListList().hashCode(); } hash = (37 * hash) + IS_FINISH_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getIsFinish()); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo 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.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo 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.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo 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.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo 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.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo 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.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo 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; } /** *
     * Obf: KDBGNEBONLF
     * 
* * Protobuf type {@code BrickBreakerLevelInfo} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:BrickBreakerLevelInfo) emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.internal_static_BrickBreakerLevelInfo_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.internal_static_BrickBreakerLevelInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo.class, emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo.Builder.class); } // Construct using emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo.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(); maxScore_ = 0; levelId_ = 0; bHFCMBEMGIN_ = false; chosenAvatarList_ = emptyIntList(); bitField0_ = (bitField0_ & ~0x00000001); chosenSkillList_ = emptyIntList(); bitField0_ = (bitField0_ & ~0x00000002); isFinish_ = false; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.internal_static_BrickBreakerLevelInfo_descriptor; } @java.lang.Override public emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo getDefaultInstanceForType() { return emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo.getDefaultInstance(); } @java.lang.Override public emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo build() { emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo buildPartial() { emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo result = new emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo(this); int from_bitField0_ = bitField0_; result.maxScore_ = maxScore_; result.levelId_ = levelId_; result.bHFCMBEMGIN_ = bHFCMBEMGIN_; if (((bitField0_ & 0x00000001) != 0)) { chosenAvatarList_.makeImmutable(); bitField0_ = (bitField0_ & ~0x00000001); } result.chosenAvatarList_ = chosenAvatarList_; if (((bitField0_ & 0x00000002) != 0)) { chosenSkillList_.makeImmutable(); bitField0_ = (bitField0_ & ~0x00000002); } result.chosenSkillList_ = chosenSkillList_; result.isFinish_ = isFinish_; 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.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo) { return mergeFrom((emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo other) { if (other == emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo.getDefaultInstance()) return this; if (other.getMaxScore() != 0) { setMaxScore(other.getMaxScore()); } if (other.getLevelId() != 0) { setLevelId(other.getLevelId()); } if (other.getBHFCMBEMGIN() != false) { setBHFCMBEMGIN(other.getBHFCMBEMGIN()); } if (!other.chosenAvatarList_.isEmpty()) { if (chosenAvatarList_.isEmpty()) { chosenAvatarList_ = other.chosenAvatarList_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureChosenAvatarListIsMutable(); chosenAvatarList_.addAll(other.chosenAvatarList_); } onChanged(); } if (!other.chosenSkillList_.isEmpty()) { if (chosenSkillList_.isEmpty()) { chosenSkillList_ = other.chosenSkillList_; bitField0_ = (bitField0_ & ~0x00000002); } else { ensureChosenSkillListIsMutable(); chosenSkillList_.addAll(other.chosenSkillList_); } onChanged(); } if (other.getIsFinish() != false) { setIsFinish(other.getIsFinish()); } 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.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private int maxScore_ ; /** * uint32 max_score = 5; * @return The maxScore. */ @java.lang.Override public int getMaxScore() { return maxScore_; } /** * uint32 max_score = 5; * @param value The maxScore to set. * @return This builder for chaining. */ public Builder setMaxScore(int value) { maxScore_ = value; onChanged(); return this; } /** * uint32 max_score = 5; * @return This builder for chaining. */ public Builder clearMaxScore() { maxScore_ = 0; onChanged(); return this; } private int levelId_ ; /** * uint32 level_id = 4; * @return The levelId. */ @java.lang.Override public int getLevelId() { return levelId_; } /** * uint32 level_id = 4; * @param value The levelId to set. * @return This builder for chaining. */ public Builder setLevelId(int value) { levelId_ = value; onChanged(); return this; } /** * uint32 level_id = 4; * @return This builder for chaining. */ public Builder clearLevelId() { levelId_ = 0; onChanged(); return this; } private boolean bHFCMBEMGIN_ ; /** * bool BHFCMBEMGIN = 12; * @return The bHFCMBEMGIN. */ @java.lang.Override public boolean getBHFCMBEMGIN() { return bHFCMBEMGIN_; } /** * bool BHFCMBEMGIN = 12; * @param value The bHFCMBEMGIN to set. * @return This builder for chaining. */ public Builder setBHFCMBEMGIN(boolean value) { bHFCMBEMGIN_ = value; onChanged(); return this; } /** * bool BHFCMBEMGIN = 12; * @return This builder for chaining. */ public Builder clearBHFCMBEMGIN() { bHFCMBEMGIN_ = false; onChanged(); return this; } private com.google.protobuf.Internal.IntList chosenAvatarList_ = emptyIntList(); private void ensureChosenAvatarListIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { chosenAvatarList_ = mutableCopy(chosenAvatarList_); bitField0_ |= 0x00000001; } } /** * repeated uint32 chosen_avatar_list = 11; * @return A list containing the chosenAvatarList. */ public java.util.List getChosenAvatarListList() { return ((bitField0_ & 0x00000001) != 0) ? java.util.Collections.unmodifiableList(chosenAvatarList_) : chosenAvatarList_; } /** * repeated uint32 chosen_avatar_list = 11; * @return The count of chosenAvatarList. */ public int getChosenAvatarListCount() { return chosenAvatarList_.size(); } /** * repeated uint32 chosen_avatar_list = 11; * @param index The index of the element to return. * @return The chosenAvatarList at the given index. */ public int getChosenAvatarList(int index) { return chosenAvatarList_.getInt(index); } /** * repeated uint32 chosen_avatar_list = 11; * @param index The index to set the value at. * @param value The chosenAvatarList to set. * @return This builder for chaining. */ public Builder setChosenAvatarList( int index, int value) { ensureChosenAvatarListIsMutable(); chosenAvatarList_.setInt(index, value); onChanged(); return this; } /** * repeated uint32 chosen_avatar_list = 11; * @param value The chosenAvatarList to add. * @return This builder for chaining. */ public Builder addChosenAvatarList(int value) { ensureChosenAvatarListIsMutable(); chosenAvatarList_.addInt(value); onChanged(); return this; } /** * repeated uint32 chosen_avatar_list = 11; * @param values The chosenAvatarList to add. * @return This builder for chaining. */ public Builder addAllChosenAvatarList( java.lang.Iterable values) { ensureChosenAvatarListIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, chosenAvatarList_); onChanged(); return this; } /** * repeated uint32 chosen_avatar_list = 11; * @return This builder for chaining. */ public Builder clearChosenAvatarList() { chosenAvatarList_ = emptyIntList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } private com.google.protobuf.Internal.IntList chosenSkillList_ = emptyIntList(); private void ensureChosenSkillListIsMutable() { if (!((bitField0_ & 0x00000002) != 0)) { chosenSkillList_ = mutableCopy(chosenSkillList_); bitField0_ |= 0x00000002; } } /** * repeated uint32 chosen_skill_list = 15; * @return A list containing the chosenSkillList. */ public java.util.List getChosenSkillListList() { return ((bitField0_ & 0x00000002) != 0) ? java.util.Collections.unmodifiableList(chosenSkillList_) : chosenSkillList_; } /** * repeated uint32 chosen_skill_list = 15; * @return The count of chosenSkillList. */ public int getChosenSkillListCount() { return chosenSkillList_.size(); } /** * repeated uint32 chosen_skill_list = 15; * @param index The index of the element to return. * @return The chosenSkillList at the given index. */ public int getChosenSkillList(int index) { return chosenSkillList_.getInt(index); } /** * repeated uint32 chosen_skill_list = 15; * @param index The index to set the value at. * @param value The chosenSkillList to set. * @return This builder for chaining. */ public Builder setChosenSkillList( int index, int value) { ensureChosenSkillListIsMutable(); chosenSkillList_.setInt(index, value); onChanged(); return this; } /** * repeated uint32 chosen_skill_list = 15; * @param value The chosenSkillList to add. * @return This builder for chaining. */ public Builder addChosenSkillList(int value) { ensureChosenSkillListIsMutable(); chosenSkillList_.addInt(value); onChanged(); return this; } /** * repeated uint32 chosen_skill_list = 15; * @param values The chosenSkillList to add. * @return This builder for chaining. */ public Builder addAllChosenSkillList( java.lang.Iterable values) { ensureChosenSkillListIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, chosenSkillList_); onChanged(); return this; } /** * repeated uint32 chosen_skill_list = 15; * @return This builder for chaining. */ public Builder clearChosenSkillList() { chosenSkillList_ = emptyIntList(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } private boolean isFinish_ ; /** * bool is_finish = 7; * @return The isFinish. */ @java.lang.Override public boolean getIsFinish() { return isFinish_; } /** * bool is_finish = 7; * @param value The isFinish to set. * @return This builder for chaining. */ public Builder setIsFinish(boolean value) { isFinish_ = value; onChanged(); return this; } /** * bool is_finish = 7; * @return This builder for chaining. */ public Builder clearIsFinish() { isFinish_ = false; 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:BrickBreakerLevelInfo) } // @@protoc_insertion_point(class_scope:BrickBreakerLevelInfo) private static final emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo(); } public static emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public BrickBreakerLevelInfo parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new BrickBreakerLevelInfo(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public emu.grasscutter.net.proto.BrickBreakerLevelInfoOuterClass.BrickBreakerLevelInfo getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } private static final com.google.protobuf.Descriptors.Descriptor internal_static_BrickBreakerLevelInfo_descriptor; private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_BrickBreakerLevelInfo_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\033BrickBreakerLevelInfo.proto\"\233\001\n\025BrickB" + "reakerLevelInfo\022\021\n\tmax_score\030\005 \001(\r\022\020\n\010le" + "vel_id\030\004 \001(\r\022\023\n\013BHFCMBEMGIN\030\014 \001(\010\022\032\n\022cho" + "sen_avatar_list\030\013 \003(\r\022\031\n\021chosen_skill_li" + "st\030\017 \003(\r\022\021\n\tis_finish\030\007 \001(\010B\033\n\031emu.grass" + "cutter.net.protob\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { }); internal_static_BrickBreakerLevelInfo_descriptor = getDescriptor().getMessageTypes().get(0); internal_static_BrickBreakerLevelInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_BrickBreakerLevelInfo_descriptor, new java.lang.String[] { "MaxScore", "LevelId", "BHFCMBEMGIN", "ChosenAvatarList", "ChosenSkillList", "IsFinish", }); } // @@protoc_insertion_point(outer_class_scope) }