mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-09 05:25:55 +08:00
* Remove hardcoded quest data * Remove deprecated fields * Try to fix packet * Apply fix for token exchange * Upgrade to REL3.7 * Add obfuscated protocol definitions * Add missing enum (other protos too maybe) * Re-add field setters and add note on removal
1240 lines
43 KiB
Java
1240 lines
43 KiB
Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
// source: GadgetPlayInfo.proto
|
|
|
|
package emu.grasscutter.net.proto;
|
|
|
|
public final class GadgetPlayInfoOuterClass {
|
|
private GadgetPlayInfoOuterClass() {}
|
|
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 GadgetPlayInfoOrBuilder extends
|
|
// @@protoc_insertion_point(interface_extends:GadgetPlayInfo)
|
|
com.google.protobuf.MessageOrBuilder {
|
|
|
|
/**
|
|
* <code>uint32 play_type = 1;</code>
|
|
* @return The playType.
|
|
*/
|
|
int getPlayType();
|
|
|
|
/**
|
|
* <code>uint32 duration = 2;</code>
|
|
* @return The duration.
|
|
*/
|
|
int getDuration();
|
|
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @return A list containing the progressStageList.
|
|
*/
|
|
java.util.List<java.lang.Integer> getProgressStageListList();
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @return The count of progressStageList.
|
|
*/
|
|
int getProgressStageListCount();
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @param index The index of the element to return.
|
|
* @return The progressStageList at the given index.
|
|
*/
|
|
int getProgressStageList(int index);
|
|
|
|
/**
|
|
* <code>uint32 start_cd = 4;</code>
|
|
* @return The startCd.
|
|
*/
|
|
int getStartCd();
|
|
|
|
/**
|
|
* <code>uint32 start_time = 5;</code>
|
|
* @return The startTime.
|
|
*/
|
|
int getStartTime();
|
|
|
|
/**
|
|
* <code>uint32 progress = 6;</code>
|
|
* @return The progress.
|
|
*/
|
|
int getProgress();
|
|
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
* @return Whether the crucibleInfo field is set.
|
|
*/
|
|
boolean hasCrucibleInfo();
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
* @return The crucibleInfo.
|
|
*/
|
|
emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo getCrucibleInfo();
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
*/
|
|
emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfoOrBuilder getCrucibleInfoOrBuilder();
|
|
}
|
|
/**
|
|
* <pre>
|
|
* Obf: CMNFEFNBLLD
|
|
* </pre>
|
|
*
|
|
* Protobuf type {@code GadgetPlayInfo}
|
|
*/
|
|
public static final class GadgetPlayInfo extends
|
|
com.google.protobuf.GeneratedMessageV3 implements
|
|
// @@protoc_insertion_point(message_implements:GadgetPlayInfo)
|
|
GadgetPlayInfoOrBuilder {
|
|
private static final long serialVersionUID = 0L;
|
|
// Use GadgetPlayInfo.newBuilder() to construct.
|
|
private GadgetPlayInfo(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
|
|
super(builder);
|
|
}
|
|
private GadgetPlayInfo() {
|
|
progressStageList_ = emptyIntList();
|
|
}
|
|
|
|
@java.lang.Override
|
|
@SuppressWarnings({"unused"})
|
|
protected java.lang.Object newInstance(
|
|
UnusedPrivateParameter unused) {
|
|
return new GadgetPlayInfo();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public final com.google.protobuf.UnknownFieldSet
|
|
getUnknownFields() {
|
|
return this.unknownFields;
|
|
}
|
|
private GadgetPlayInfo(
|
|
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: {
|
|
|
|
playType_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 16: {
|
|
|
|
duration_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 24: {
|
|
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
|
|
progressStageList_ = newIntList();
|
|
mutable_bitField0_ |= 0x00000001;
|
|
}
|
|
progressStageList_.addInt(input.readUInt32());
|
|
break;
|
|
}
|
|
case 26: {
|
|
int length = input.readRawVarint32();
|
|
int limit = input.pushLimit(length);
|
|
if (!((mutable_bitField0_ & 0x00000001) != 0) && input.getBytesUntilLimit() > 0) {
|
|
progressStageList_ = newIntList();
|
|
mutable_bitField0_ |= 0x00000001;
|
|
}
|
|
while (input.getBytesUntilLimit() > 0) {
|
|
progressStageList_.addInt(input.readUInt32());
|
|
}
|
|
input.popLimit(limit);
|
|
break;
|
|
}
|
|
case 32: {
|
|
|
|
startCd_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 40: {
|
|
|
|
startTime_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 48: {
|
|
|
|
progress_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 170: {
|
|
emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.Builder subBuilder = null;
|
|
if (((bitField0_ & 0x00000001) != 0)) {
|
|
subBuilder = crucibleInfo_.toBuilder();
|
|
}
|
|
crucibleInfo_ = input.readMessage(emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.parser(), extensionRegistry);
|
|
if (subBuilder != null) {
|
|
subBuilder.mergeFrom(crucibleInfo_);
|
|
crucibleInfo_ = subBuilder.buildPartial();
|
|
}
|
|
bitField0_ |= 0x00000001;
|
|
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)) {
|
|
progressStageList_.makeImmutable(); // C
|
|
}
|
|
this.unknownFields = unknownFields.build();
|
|
makeExtensionsImmutable();
|
|
}
|
|
}
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.internal_static_GadgetPlayInfo_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.internal_static_GadgetPlayInfo_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo.class, emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo.Builder.class);
|
|
}
|
|
|
|
private int bitField0_;
|
|
public static final int PLAY_TYPE_FIELD_NUMBER = 1;
|
|
private int playType_;
|
|
/**
|
|
* <code>uint32 play_type = 1;</code>
|
|
* @return The playType.
|
|
*/
|
|
@java.lang.Override
|
|
public int getPlayType() {
|
|
return playType_;
|
|
}
|
|
|
|
public static final int DURATION_FIELD_NUMBER = 2;
|
|
private int duration_;
|
|
/**
|
|
* <code>uint32 duration = 2;</code>
|
|
* @return The duration.
|
|
*/
|
|
@java.lang.Override
|
|
public int getDuration() {
|
|
return duration_;
|
|
}
|
|
|
|
public static final int PROGRESS_STAGE_LIST_FIELD_NUMBER = 3;
|
|
private com.google.protobuf.Internal.IntList progressStageList_;
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @return A list containing the progressStageList.
|
|
*/
|
|
@java.lang.Override
|
|
public java.util.List<java.lang.Integer>
|
|
getProgressStageListList() {
|
|
return progressStageList_;
|
|
}
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @return The count of progressStageList.
|
|
*/
|
|
public int getProgressStageListCount() {
|
|
return progressStageList_.size();
|
|
}
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @param index The index of the element to return.
|
|
* @return The progressStageList at the given index.
|
|
*/
|
|
public int getProgressStageList(int index) {
|
|
return progressStageList_.getInt(index);
|
|
}
|
|
private int progressStageListMemoizedSerializedSize = -1;
|
|
|
|
public static final int START_CD_FIELD_NUMBER = 4;
|
|
private int startCd_;
|
|
/**
|
|
* <code>uint32 start_cd = 4;</code>
|
|
* @return The startCd.
|
|
*/
|
|
@java.lang.Override
|
|
public int getStartCd() {
|
|
return startCd_;
|
|
}
|
|
|
|
public static final int START_TIME_FIELD_NUMBER = 5;
|
|
private int startTime_;
|
|
/**
|
|
* <code>uint32 start_time = 5;</code>
|
|
* @return The startTime.
|
|
*/
|
|
@java.lang.Override
|
|
public int getStartTime() {
|
|
return startTime_;
|
|
}
|
|
|
|
public static final int PROGRESS_FIELD_NUMBER = 6;
|
|
private int progress_;
|
|
/**
|
|
* <code>uint32 progress = 6;</code>
|
|
* @return The progress.
|
|
*/
|
|
@java.lang.Override
|
|
public int getProgress() {
|
|
return progress_;
|
|
}
|
|
|
|
public static final int CRUCIBLE_INFO_FIELD_NUMBER = 21;
|
|
private emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo crucibleInfo_;
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
* @return Whether the crucibleInfo field is set.
|
|
*/
|
|
@java.lang.Override
|
|
public boolean hasCrucibleInfo() {
|
|
return ((bitField0_ & 0x00000001) != 0);
|
|
}
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
* @return The crucibleInfo.
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo getCrucibleInfo() {
|
|
return crucibleInfo_ == null ? emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.getDefaultInstance() : crucibleInfo_;
|
|
}
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfoOrBuilder getCrucibleInfoOrBuilder() {
|
|
return crucibleInfo_ == null ? emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.getDefaultInstance() : crucibleInfo_;
|
|
}
|
|
|
|
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 (playType_ != 0) {
|
|
output.writeUInt32(1, playType_);
|
|
}
|
|
if (duration_ != 0) {
|
|
output.writeUInt32(2, duration_);
|
|
}
|
|
if (getProgressStageListList().size() > 0) {
|
|
output.writeUInt32NoTag(26);
|
|
output.writeUInt32NoTag(progressStageListMemoizedSerializedSize);
|
|
}
|
|
for (int i = 0; i < progressStageList_.size(); i++) {
|
|
output.writeUInt32NoTag(progressStageList_.getInt(i));
|
|
}
|
|
if (startCd_ != 0) {
|
|
output.writeUInt32(4, startCd_);
|
|
}
|
|
if (startTime_ != 0) {
|
|
output.writeUInt32(5, startTime_);
|
|
}
|
|
if (progress_ != 0) {
|
|
output.writeUInt32(6, progress_);
|
|
}
|
|
if (((bitField0_ & 0x00000001) != 0)) {
|
|
output.writeMessage(21, getCrucibleInfo());
|
|
}
|
|
unknownFields.writeTo(output);
|
|
}
|
|
|
|
@java.lang.Override
|
|
public int getSerializedSize() {
|
|
int size = memoizedSize;
|
|
if (size != -1) return size;
|
|
|
|
size = 0;
|
|
if (playType_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(1, playType_);
|
|
}
|
|
if (duration_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(2, duration_);
|
|
}
|
|
{
|
|
int dataSize = 0;
|
|
for (int i = 0; i < progressStageList_.size(); i++) {
|
|
dataSize += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32SizeNoTag(progressStageList_.getInt(i));
|
|
}
|
|
size += dataSize;
|
|
if (!getProgressStageListList().isEmpty()) {
|
|
size += 1;
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeInt32SizeNoTag(dataSize);
|
|
}
|
|
progressStageListMemoizedSerializedSize = dataSize;
|
|
}
|
|
if (startCd_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(4, startCd_);
|
|
}
|
|
if (startTime_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(5, startTime_);
|
|
}
|
|
if (progress_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(6, progress_);
|
|
}
|
|
if (((bitField0_ & 0x00000001) != 0)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeMessageSize(21, getCrucibleInfo());
|
|
}
|
|
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.GadgetPlayInfoOuterClass.GadgetPlayInfo)) {
|
|
return super.equals(obj);
|
|
}
|
|
emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo other = (emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo) obj;
|
|
|
|
if (getPlayType()
|
|
!= other.getPlayType()) return false;
|
|
if (getDuration()
|
|
!= other.getDuration()) return false;
|
|
if (!getProgressStageListList()
|
|
.equals(other.getProgressStageListList())) return false;
|
|
if (getStartCd()
|
|
!= other.getStartCd()) return false;
|
|
if (getStartTime()
|
|
!= other.getStartTime()) return false;
|
|
if (getProgress()
|
|
!= other.getProgress()) return false;
|
|
if (hasCrucibleInfo() != other.hasCrucibleInfo()) return false;
|
|
if (hasCrucibleInfo()) {
|
|
if (!getCrucibleInfo()
|
|
.equals(other.getCrucibleInfo())) 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) + PLAY_TYPE_FIELD_NUMBER;
|
|
hash = (53 * hash) + getPlayType();
|
|
hash = (37 * hash) + DURATION_FIELD_NUMBER;
|
|
hash = (53 * hash) + getDuration();
|
|
if (getProgressStageListCount() > 0) {
|
|
hash = (37 * hash) + PROGRESS_STAGE_LIST_FIELD_NUMBER;
|
|
hash = (53 * hash) + getProgressStageListList().hashCode();
|
|
}
|
|
hash = (37 * hash) + START_CD_FIELD_NUMBER;
|
|
hash = (53 * hash) + getStartCd();
|
|
hash = (37 * hash) + START_TIME_FIELD_NUMBER;
|
|
hash = (53 * hash) + getStartTime();
|
|
hash = (37 * hash) + PROGRESS_FIELD_NUMBER;
|
|
hash = (53 * hash) + getProgress();
|
|
if (hasCrucibleInfo()) {
|
|
hash = (37 * hash) + CRUCIBLE_INFO_FIELD_NUMBER;
|
|
hash = (53 * hash) + getCrucibleInfo().hashCode();
|
|
}
|
|
hash = (29 * hash) + unknownFields.hashCode();
|
|
memoizedHashCode = hash;
|
|
return hash;
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo parseFrom(
|
|
java.nio.ByteBuffer data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo 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.GadgetPlayInfoOuterClass.GadgetPlayInfo parseFrom(
|
|
com.google.protobuf.ByteString data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo 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.GadgetPlayInfoOuterClass.GadgetPlayInfo parseFrom(byte[] data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo parseFrom(
|
|
byte[] data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo parseFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo 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.GadgetPlayInfoOuterClass.GadgetPlayInfo parseDelimitedFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseDelimitedWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo 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.GadgetPlayInfoOuterClass.GadgetPlayInfo parseFrom(
|
|
com.google.protobuf.CodedInputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo 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.GadgetPlayInfoOuterClass.GadgetPlayInfo 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: CMNFEFNBLLD
|
|
* </pre>
|
|
*
|
|
* Protobuf type {@code GadgetPlayInfo}
|
|
*/
|
|
public static final class Builder extends
|
|
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
|
|
// @@protoc_insertion_point(builder_implements:GadgetPlayInfo)
|
|
emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfoOrBuilder {
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.internal_static_GadgetPlayInfo_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.internal_static_GadgetPlayInfo_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo.class, emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo.Builder.class);
|
|
}
|
|
|
|
// Construct using emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo.newBuilder()
|
|
private Builder() {
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
|
|
private Builder(
|
|
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
|
|
super(parent);
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
private void maybeForceBuilderInitialization() {
|
|
if (com.google.protobuf.GeneratedMessageV3
|
|
.alwaysUseFieldBuilders) {
|
|
getCrucibleInfoFieldBuilder();
|
|
}
|
|
}
|
|
@java.lang.Override
|
|
public Builder clear() {
|
|
super.clear();
|
|
playType_ = 0;
|
|
|
|
duration_ = 0;
|
|
|
|
progressStageList_ = emptyIntList();
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
startCd_ = 0;
|
|
|
|
startTime_ = 0;
|
|
|
|
progress_ = 0;
|
|
|
|
if (crucibleInfoBuilder_ == null) {
|
|
crucibleInfo_ = null;
|
|
} else {
|
|
crucibleInfoBuilder_.clear();
|
|
}
|
|
bitField0_ = (bitField0_ & ~0x00000002);
|
|
return this;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptorForType() {
|
|
return emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.internal_static_GadgetPlayInfo_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo getDefaultInstanceForType() {
|
|
return emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo.getDefaultInstance();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo build() {
|
|
emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo result = buildPartial();
|
|
if (!result.isInitialized()) {
|
|
throw newUninitializedMessageException(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo buildPartial() {
|
|
emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo result = new emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo(this);
|
|
int from_bitField0_ = bitField0_;
|
|
int to_bitField0_ = 0;
|
|
result.playType_ = playType_;
|
|
result.duration_ = duration_;
|
|
if (((bitField0_ & 0x00000001) != 0)) {
|
|
progressStageList_.makeImmutable();
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
}
|
|
result.progressStageList_ = progressStageList_;
|
|
result.startCd_ = startCd_;
|
|
result.startTime_ = startTime_;
|
|
result.progress_ = progress_;
|
|
if (((from_bitField0_ & 0x00000002) != 0)) {
|
|
if (crucibleInfoBuilder_ == null) {
|
|
result.crucibleInfo_ = crucibleInfo_;
|
|
} else {
|
|
result.crucibleInfo_ = crucibleInfoBuilder_.build();
|
|
}
|
|
to_bitField0_ |= 0x00000001;
|
|
}
|
|
result.bitField0_ = to_bitField0_;
|
|
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.GadgetPlayInfoOuterClass.GadgetPlayInfo) {
|
|
return mergeFrom((emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo)other);
|
|
} else {
|
|
super.mergeFrom(other);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public Builder mergeFrom(emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo other) {
|
|
if (other == emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo.getDefaultInstance()) return this;
|
|
if (other.getPlayType() != 0) {
|
|
setPlayType(other.getPlayType());
|
|
}
|
|
if (other.getDuration() != 0) {
|
|
setDuration(other.getDuration());
|
|
}
|
|
if (!other.progressStageList_.isEmpty()) {
|
|
if (progressStageList_.isEmpty()) {
|
|
progressStageList_ = other.progressStageList_;
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
} else {
|
|
ensureProgressStageListIsMutable();
|
|
progressStageList_.addAll(other.progressStageList_);
|
|
}
|
|
onChanged();
|
|
}
|
|
if (other.getStartCd() != 0) {
|
|
setStartCd(other.getStartCd());
|
|
}
|
|
if (other.getStartTime() != 0) {
|
|
setStartTime(other.getStartTime());
|
|
}
|
|
if (other.getProgress() != 0) {
|
|
setProgress(other.getProgress());
|
|
}
|
|
if (other.hasCrucibleInfo()) {
|
|
mergeCrucibleInfo(other.getCrucibleInfo());
|
|
}
|
|
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.GadgetPlayInfoOuterClass.GadgetPlayInfo parsedMessage = null;
|
|
try {
|
|
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
parsedMessage = (emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo) e.getUnfinishedMessage();
|
|
throw e.unwrapIOException();
|
|
} finally {
|
|
if (parsedMessage != null) {
|
|
mergeFrom(parsedMessage);
|
|
}
|
|
}
|
|
return this;
|
|
}
|
|
private int bitField0_;
|
|
|
|
private int playType_ ;
|
|
/**
|
|
* <code>uint32 play_type = 1;</code>
|
|
* @return The playType.
|
|
*/
|
|
@java.lang.Override
|
|
public int getPlayType() {
|
|
return playType_;
|
|
}
|
|
/**
|
|
* <code>uint32 play_type = 1;</code>
|
|
* @param value The playType to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setPlayType(int value) {
|
|
|
|
playType_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 play_type = 1;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearPlayType() {
|
|
|
|
playType_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int duration_ ;
|
|
/**
|
|
* <code>uint32 duration = 2;</code>
|
|
* @return The duration.
|
|
*/
|
|
@java.lang.Override
|
|
public int getDuration() {
|
|
return duration_;
|
|
}
|
|
/**
|
|
* <code>uint32 duration = 2;</code>
|
|
* @param value The duration to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setDuration(int value) {
|
|
|
|
duration_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 duration = 2;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearDuration() {
|
|
|
|
duration_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private com.google.protobuf.Internal.IntList progressStageList_ = emptyIntList();
|
|
private void ensureProgressStageListIsMutable() {
|
|
if (!((bitField0_ & 0x00000001) != 0)) {
|
|
progressStageList_ = mutableCopy(progressStageList_);
|
|
bitField0_ |= 0x00000001;
|
|
}
|
|
}
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @return A list containing the progressStageList.
|
|
*/
|
|
public java.util.List<java.lang.Integer>
|
|
getProgressStageListList() {
|
|
return ((bitField0_ & 0x00000001) != 0) ?
|
|
java.util.Collections.unmodifiableList(progressStageList_) : progressStageList_;
|
|
}
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @return The count of progressStageList.
|
|
*/
|
|
public int getProgressStageListCount() {
|
|
return progressStageList_.size();
|
|
}
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @param index The index of the element to return.
|
|
* @return The progressStageList at the given index.
|
|
*/
|
|
public int getProgressStageList(int index) {
|
|
return progressStageList_.getInt(index);
|
|
}
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @param index The index to set the value at.
|
|
* @param value The progressStageList to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setProgressStageList(
|
|
int index, int value) {
|
|
ensureProgressStageListIsMutable();
|
|
progressStageList_.setInt(index, value);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @param value The progressStageList to add.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder addProgressStageList(int value) {
|
|
ensureProgressStageListIsMutable();
|
|
progressStageList_.addInt(value);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @param values The progressStageList to add.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder addAllProgressStageList(
|
|
java.lang.Iterable<? extends java.lang.Integer> values) {
|
|
ensureProgressStageListIsMutable();
|
|
com.google.protobuf.AbstractMessageLite.Builder.addAll(
|
|
values, progressStageList_);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated uint32 progress_stage_list = 3;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearProgressStageList() {
|
|
progressStageList_ = emptyIntList();
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int startCd_ ;
|
|
/**
|
|
* <code>uint32 start_cd = 4;</code>
|
|
* @return The startCd.
|
|
*/
|
|
@java.lang.Override
|
|
public int getStartCd() {
|
|
return startCd_;
|
|
}
|
|
/**
|
|
* <code>uint32 start_cd = 4;</code>
|
|
* @param value The startCd to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setStartCd(int value) {
|
|
|
|
startCd_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 start_cd = 4;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearStartCd() {
|
|
|
|
startCd_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int startTime_ ;
|
|
/**
|
|
* <code>uint32 start_time = 5;</code>
|
|
* @return The startTime.
|
|
*/
|
|
@java.lang.Override
|
|
public int getStartTime() {
|
|
return startTime_;
|
|
}
|
|
/**
|
|
* <code>uint32 start_time = 5;</code>
|
|
* @param value The startTime to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setStartTime(int value) {
|
|
|
|
startTime_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 start_time = 5;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearStartTime() {
|
|
|
|
startTime_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int progress_ ;
|
|
/**
|
|
* <code>uint32 progress = 6;</code>
|
|
* @return The progress.
|
|
*/
|
|
@java.lang.Override
|
|
public int getProgress() {
|
|
return progress_;
|
|
}
|
|
/**
|
|
* <code>uint32 progress = 6;</code>
|
|
* @param value The progress to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setProgress(int value) {
|
|
|
|
progress_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 progress = 6;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearProgress() {
|
|
|
|
progress_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo crucibleInfo_;
|
|
private com.google.protobuf.SingleFieldBuilderV3<
|
|
emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo, emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.Builder, emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfoOrBuilder> crucibleInfoBuilder_;
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
* @return Whether the crucibleInfo field is set.
|
|
*/
|
|
public boolean hasCrucibleInfo() {
|
|
return ((bitField0_ & 0x00000002) != 0);
|
|
}
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
* @return The crucibleInfo.
|
|
*/
|
|
public emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo getCrucibleInfo() {
|
|
if (crucibleInfoBuilder_ == null) {
|
|
return crucibleInfo_ == null ? emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.getDefaultInstance() : crucibleInfo_;
|
|
} else {
|
|
return crucibleInfoBuilder_.getMessage();
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
*/
|
|
public Builder setCrucibleInfo(emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo value) {
|
|
if (crucibleInfoBuilder_ == null) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
crucibleInfo_ = value;
|
|
onChanged();
|
|
} else {
|
|
crucibleInfoBuilder_.setMessage(value);
|
|
}
|
|
bitField0_ |= 0x00000002;
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
*/
|
|
public Builder setCrucibleInfo(
|
|
emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.Builder builderForValue) {
|
|
if (crucibleInfoBuilder_ == null) {
|
|
crucibleInfo_ = builderForValue.build();
|
|
onChanged();
|
|
} else {
|
|
crucibleInfoBuilder_.setMessage(builderForValue.build());
|
|
}
|
|
bitField0_ |= 0x00000002;
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
*/
|
|
public Builder mergeCrucibleInfo(emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo value) {
|
|
if (crucibleInfoBuilder_ == null) {
|
|
if (((bitField0_ & 0x00000002) != 0) &&
|
|
crucibleInfo_ != null &&
|
|
crucibleInfo_ != emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.getDefaultInstance()) {
|
|
crucibleInfo_ =
|
|
emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.newBuilder(crucibleInfo_).mergeFrom(value).buildPartial();
|
|
} else {
|
|
crucibleInfo_ = value;
|
|
}
|
|
onChanged();
|
|
} else {
|
|
crucibleInfoBuilder_.mergeFrom(value);
|
|
}
|
|
bitField0_ |= 0x00000002;
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
*/
|
|
public Builder clearCrucibleInfo() {
|
|
if (crucibleInfoBuilder_ == null) {
|
|
crucibleInfo_ = null;
|
|
onChanged();
|
|
} else {
|
|
crucibleInfoBuilder_.clear();
|
|
}
|
|
bitField0_ = (bitField0_ & ~0x00000002);
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
*/
|
|
public emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.Builder getCrucibleInfoBuilder() {
|
|
bitField0_ |= 0x00000002;
|
|
onChanged();
|
|
return getCrucibleInfoFieldBuilder().getBuilder();
|
|
}
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
*/
|
|
public emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfoOrBuilder getCrucibleInfoOrBuilder() {
|
|
if (crucibleInfoBuilder_ != null) {
|
|
return crucibleInfoBuilder_.getMessageOrBuilder();
|
|
} else {
|
|
return crucibleInfo_ == null ?
|
|
emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.getDefaultInstance() : crucibleInfo_;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional .GadgetCrucibleInfo crucible_info = 21;</code>
|
|
*/
|
|
private com.google.protobuf.SingleFieldBuilderV3<
|
|
emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo, emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.Builder, emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfoOrBuilder>
|
|
getCrucibleInfoFieldBuilder() {
|
|
if (crucibleInfoBuilder_ == null) {
|
|
crucibleInfoBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
|
|
emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo, emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfo.Builder, emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.GadgetCrucibleInfoOrBuilder>(
|
|
getCrucibleInfo(),
|
|
getParentForChildren(),
|
|
isClean());
|
|
crucibleInfo_ = null;
|
|
}
|
|
return crucibleInfoBuilder_;
|
|
}
|
|
@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:GadgetPlayInfo)
|
|
}
|
|
|
|
// @@protoc_insertion_point(class_scope:GadgetPlayInfo)
|
|
private static final emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo DEFAULT_INSTANCE;
|
|
static {
|
|
DEFAULT_INSTANCE = new emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo();
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
private static final com.google.protobuf.Parser<GadgetPlayInfo>
|
|
PARSER = new com.google.protobuf.AbstractParser<GadgetPlayInfo>() {
|
|
@java.lang.Override
|
|
public GadgetPlayInfo parsePartialFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return new GadgetPlayInfo(input, extensionRegistry);
|
|
}
|
|
};
|
|
|
|
public static com.google.protobuf.Parser<GadgetPlayInfo> parser() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Parser<GadgetPlayInfo> getParserForType() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.GadgetPlayInfoOuterClass.GadgetPlayInfo getDefaultInstanceForType() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
}
|
|
|
|
private static final com.google.protobuf.Descriptors.Descriptor
|
|
internal_static_GadgetPlayInfo_descriptor;
|
|
private static final
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internal_static_GadgetPlayInfo_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\024GadgetPlayInfo.proto\032\030GadgetCrucibleIn" +
|
|
"fo.proto\"\315\001\n\016GadgetPlayInfo\022\021\n\tplay_type" +
|
|
"\030\001 \001(\r\022\020\n\010duration\030\002 \001(\r\022\033\n\023progress_sta" +
|
|
"ge_list\030\003 \003(\r\022\020\n\010start_cd\030\004 \001(\r\022\022\n\nstart" +
|
|
"_time\030\005 \001(\r\022\020\n\010progress\030\006 \001(\r\022/\n\rcrucibl" +
|
|
"e_info\030\025 \001(\0132\023.GadgetCrucibleInfoH\000\210\001\001B\020" +
|
|
"\n\016_crucible_infoB\033\n\031emu.grasscutter.net." +
|
|
"protob\006proto3"
|
|
};
|
|
descriptor = com.google.protobuf.Descriptors.FileDescriptor
|
|
.internalBuildGeneratedFileFrom(descriptorData,
|
|
new com.google.protobuf.Descriptors.FileDescriptor[] {
|
|
emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.getDescriptor(),
|
|
});
|
|
internal_static_GadgetPlayInfo_descriptor =
|
|
getDescriptor().getMessageTypes().get(0);
|
|
internal_static_GadgetPlayInfo_fieldAccessorTable = new
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
|
|
internal_static_GadgetPlayInfo_descriptor,
|
|
new java.lang.String[] { "PlayType", "Duration", "ProgressStageList", "StartCd", "StartTime", "Progress", "CrucibleInfo", "CrucibleInfo", });
|
|
emu.grasscutter.net.proto.GadgetCrucibleInfoOuterClass.getDescriptor();
|
|
}
|
|
|
|
// @@protoc_insertion_point(outer_class_scope)
|
|
}
|