From a0d031e7d8151540b2b970ff2cc1cca0418f9a1a Mon Sep 17 00:00:00 2001 From: wangyuan Date: Thu, 7 May 2020 16:31:28 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=A6=E8=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ljsd/jieling/protocols/Family.java | 10543 +++++++++++++++- .../jieling/protocols/FightInfoProto.java | 1109 +- .../jieling/protocols/MessageTypeProto.java | 1565 ++- .../jieling/protocols/PlayerInfoProto.java | 611 +- .../ljsd/common/mogodb/test/TestMongo.java | 26 +- .../mogodb/test/pojo/PlayerForTest.java | 9 +- conf/BattleMain.lua | 14 +- .../main/java/com/ljsd/fight/CheckFight.java | 1 + .../main/java/com/ljsd/fight/FightType.java | 7 +- luafight/BattleMain.lua | 14 +- luafight/LogError/test.json | 0 .../src/main/java/com/ljsd/DbClear.java | 2 +- .../clazzStaticCfg/PlayStaticConfig.java | 1 + .../com/ljsd/jieling/core/FunctionIdEnum.java | 1 + .../com/ljsd/jieling/core/GlobalsDef.java | 1 + .../core/function/CarDelayFunction.java | 16 + .../com/ljsd/jieling/db/redis/RedisKey.java | 2 + .../jieling/handler/FastChallengeHandler.java | 92 + .../family/GetCarChallengeListHandler.java | 76 + .../jieling/logic/family/GuildFightLogic.java | 106 +- .../ljsd/jieling/logic/family/GuildLogic.java | 1 + .../jieling/logic/fight/GameFightType.java | 5 +- .../jieling/logic/mission/MissionLoigc.java | 4 + .../com/ljsd/jieling/logic/rank/RankEnum.java | 1 + .../logic/rank/rankImpl/AbstractRank.java | 12 + .../logic/rank/rankImpl/CarDealyRank.java | 18 + .../ljsd/jieling/thread/task/MinuteTask.java | 3 +- .../main/java/config/SWorldBossConfig.java | 31 + .../java/config/SWorldBossRewardConfig.java | 37 + .../main/java/config/SWorldBossSetting.java | 65 + test/src/main/java/db/MongoLearn.java | 30 + test/src/main/java/db/MongoTest.java | 384 +- 32 files changed, 13790 insertions(+), 997 deletions(-) delete mode 100644 luafight/LogError/test.json create mode 100644 serverlogic/src/main/java/com/ljsd/jieling/core/function/CarDelayFunction.java create mode 100644 serverlogic/src/main/java/com/ljsd/jieling/handler/FastChallengeHandler.java create mode 100644 serverlogic/src/main/java/com/ljsd/jieling/handler/family/GetCarChallengeListHandler.java create mode 100644 serverlogic/src/main/java/com/ljsd/jieling/logic/rank/rankImpl/CarDealyRank.java create mode 100644 tablemanager/src/main/java/config/SWorldBossConfig.java create mode 100644 tablemanager/src/main/java/config/SWorldBossRewardConfig.java create mode 100644 tablemanager/src/main/java/config/SWorldBossSetting.java create mode 100644 test/src/main/java/db/MongoLearn.java diff --git a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/Family.java b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/Family.java index ba3111c68..2b003c348 100644 --- a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/Family.java +++ b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/Family.java @@ -235,6 +235,68 @@ public final class Family { * */ int getLastHurt(); + + // repeated int32 takeFeteReward = 13; + /** + * repeated int32 takeFeteReward = 13; + * + *
+     * 祭祀领取进度
+     * 
+ */ + java.util.List getTakeFeteRewardList(); + /** + * repeated int32 takeFeteReward = 13; + * + *
+     * 祭祀领取进度
+     * 
+ */ + int getTakeFeteRewardCount(); + /** + * repeated int32 takeFeteReward = 13; + * + *
+     * 祭祀领取进度
+     * 
+ */ + int getTakeFeteReward(int index); + + // optional int32 lastFeteGuildId = 14; + /** + * optional int32 lastFeteGuildId = 14; + * + *
+     * 上次祭祀公会id 
+     * 
+ */ + boolean hasLastFeteGuildId(); + /** + * optional int32 lastFeteGuildId = 14; + * + *
+     * 上次祭祀公会id 
+     * 
+ */ + int getLastFeteGuildId(); + + // optional int32 lastFeteType = 15; + /** + * optional int32 lastFeteType = 15; + * + *
+     * 上次祭祀类型 //每日清除 5点推送
+     * 
+ */ + boolean hasLastFeteType(); + /** + * optional int32 lastFeteType = 15; + * + *
+     * 上次祭祀类型 //每日清除 5点推送
+     * 
+ */ + int getLastFeteType(); } /** * Protobuf type {@code com.ljsd.jieling.protocols.FamilyUserInfo} @@ -347,6 +409,37 @@ public final class Family { lastHurt_ = input.readInt32(); break; } + case 104: { + if (!((mutable_bitField0_ & 0x00001000) == 0x00001000)) { + takeFeteReward_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00001000; + } + takeFeteReward_.add(input.readInt32()); + break; + } + case 106: { + int length = input.readRawVarint32(); + int limit = input.pushLimit(length); + if (!((mutable_bitField0_ & 0x00001000) == 0x00001000) && input.getBytesUntilLimit() > 0) { + takeFeteReward_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00001000; + } + while (input.getBytesUntilLimit() > 0) { + takeFeteReward_.add(input.readInt32()); + } + input.popLimit(limit); + break; + } + case 112: { + bitField0_ |= 0x00001000; + lastFeteGuildId_ = input.readInt32(); + break; + } + case 120: { + bitField0_ |= 0x00002000; + lastFeteType_ = input.readInt32(); + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -355,6 +448,9 @@ public final class Family { throw new com.google.protobuf.InvalidProtocolBufferException( e.getMessage()).setUnfinishedMessage(this); } finally { + if (((mutable_bitField0_ & 0x00001000) == 0x00001000)) { + takeFeteReward_ = java.util.Collections.unmodifiableList(takeFeteReward_); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } @@ -706,6 +802,89 @@ public final class Family { return lastHurt_; } + // repeated int32 takeFeteReward = 13; + public static final int TAKEFETEREWARD_FIELD_NUMBER = 13; + private java.util.List takeFeteReward_; + /** + * repeated int32 takeFeteReward = 13; + * + *
+     * 祭祀领取进度
+     * 
+ */ + public java.util.List + getTakeFeteRewardList() { + return takeFeteReward_; + } + /** + * repeated int32 takeFeteReward = 13; + * + *
+     * 祭祀领取进度
+     * 
+ */ + public int getTakeFeteRewardCount() { + return takeFeteReward_.size(); + } + /** + * repeated int32 takeFeteReward = 13; + * + *
+     * 祭祀领取进度
+     * 
+ */ + public int getTakeFeteReward(int index) { + return takeFeteReward_.get(index); + } + + // optional int32 lastFeteGuildId = 14; + public static final int LASTFETEGUILDID_FIELD_NUMBER = 14; + private int lastFeteGuildId_; + /** + * optional int32 lastFeteGuildId = 14; + * + *
+     * 上次祭祀公会id 
+     * 
+ */ + public boolean hasLastFeteGuildId() { + return ((bitField0_ & 0x00001000) == 0x00001000); + } + /** + * optional int32 lastFeteGuildId = 14; + * + *
+     * 上次祭祀公会id 
+     * 
+ */ + public int getLastFeteGuildId() { + return lastFeteGuildId_; + } + + // optional int32 lastFeteType = 15; + public static final int LASTFETETYPE_FIELD_NUMBER = 15; + private int lastFeteType_; + /** + * optional int32 lastFeteType = 15; + * + *
+     * 上次祭祀类型 //每日清除 5点推送
+     * 
+ */ + public boolean hasLastFeteType() { + return ((bitField0_ & 0x00002000) == 0x00002000); + } + /** + * optional int32 lastFeteType = 15; + * + *
+     * 上次祭祀类型 //每日清除 5点推送
+     * 
+ */ + public int getLastFeteType() { + return lastFeteType_; + } + private void initFields() { roleUid_ = 0; userName_ = ""; @@ -719,6 +898,9 @@ public final class Family { frame_ = 0; maxBossHurt_ = 0; lastHurt_ = 0; + takeFeteReward_ = java.util.Collections.emptyList(); + lastFeteGuildId_ = 0; + lastFeteType_ = 0; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -788,6 +970,15 @@ public final class Family { if (((bitField0_ & 0x00000800) == 0x00000800)) { output.writeInt32(12, lastHurt_); } + for (int i = 0; i < takeFeteReward_.size(); i++) { + output.writeInt32(13, takeFeteReward_.get(i)); + } + if (((bitField0_ & 0x00001000) == 0x00001000)) { + output.writeInt32(14, lastFeteGuildId_); + } + if (((bitField0_ & 0x00002000) == 0x00002000)) { + output.writeInt32(15, lastFeteType_); + } getUnknownFields().writeTo(output); } @@ -845,6 +1036,23 @@ public final class Family { size += com.google.protobuf.CodedOutputStream .computeInt32Size(12, lastHurt_); } + { + int dataSize = 0; + for (int i = 0; i < takeFeteReward_.size(); i++) { + dataSize += com.google.protobuf.CodedOutputStream + .computeInt32SizeNoTag(takeFeteReward_.get(i)); + } + size += dataSize; + size += 1 * getTakeFeteRewardList().size(); + } + if (((bitField0_ & 0x00001000) == 0x00001000)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(14, lastFeteGuildId_); + } + if (((bitField0_ & 0x00002000) == 0x00002000)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(15, lastFeteType_); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -985,6 +1193,12 @@ public final class Family { bitField0_ = (bitField0_ & ~0x00000400); lastHurt_ = 0; bitField0_ = (bitField0_ & ~0x00000800); + takeFeteReward_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00001000); + lastFeteGuildId_ = 0; + bitField0_ = (bitField0_ & ~0x00002000); + lastFeteType_ = 0; + bitField0_ = (bitField0_ & ~0x00004000); return this; } @@ -1061,6 +1275,19 @@ public final class Family { to_bitField0_ |= 0x00000800; } result.lastHurt_ = lastHurt_; + if (((bitField0_ & 0x00001000) == 0x00001000)) { + takeFeteReward_ = java.util.Collections.unmodifiableList(takeFeteReward_); + bitField0_ = (bitField0_ & ~0x00001000); + } + result.takeFeteReward_ = takeFeteReward_; + if (((from_bitField0_ & 0x00002000) == 0x00002000)) { + to_bitField0_ |= 0x00001000; + } + result.lastFeteGuildId_ = lastFeteGuildId_; + if (((from_bitField0_ & 0x00004000) == 0x00004000)) { + to_bitField0_ |= 0x00002000; + } + result.lastFeteType_ = lastFeteType_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -1115,6 +1342,22 @@ public final class Family { if (other.hasLastHurt()) { setLastHurt(other.getLastHurt()); } + if (!other.takeFeteReward_.isEmpty()) { + if (takeFeteReward_.isEmpty()) { + takeFeteReward_ = other.takeFeteReward_; + bitField0_ = (bitField0_ & ~0x00001000); + } else { + ensureTakeFeteRewardIsMutable(); + takeFeteReward_.addAll(other.takeFeteReward_); + } + onChanged(); + } + if (other.hasLastFeteGuildId()) { + setLastFeteGuildId(other.getLastFeteGuildId()); + } + if (other.hasLastFeteType()) { + setLastFeteType(other.getLastFeteType()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -1799,6 +2042,198 @@ public final class Family { return this; } + // repeated int32 takeFeteReward = 13; + private java.util.List takeFeteReward_ = java.util.Collections.emptyList(); + private void ensureTakeFeteRewardIsMutable() { + if (!((bitField0_ & 0x00001000) == 0x00001000)) { + takeFeteReward_ = new java.util.ArrayList(takeFeteReward_); + bitField0_ |= 0x00001000; + } + } + /** + * repeated int32 takeFeteReward = 13; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public java.util.List + getTakeFeteRewardList() { + return java.util.Collections.unmodifiableList(takeFeteReward_); + } + /** + * repeated int32 takeFeteReward = 13; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public int getTakeFeteRewardCount() { + return takeFeteReward_.size(); + } + /** + * repeated int32 takeFeteReward = 13; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public int getTakeFeteReward(int index) { + return takeFeteReward_.get(index); + } + /** + * repeated int32 takeFeteReward = 13; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public Builder setTakeFeteReward( + int index, int value) { + ensureTakeFeteRewardIsMutable(); + takeFeteReward_.set(index, value); + onChanged(); + return this; + } + /** + * repeated int32 takeFeteReward = 13; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public Builder addTakeFeteReward(int value) { + ensureTakeFeteRewardIsMutable(); + takeFeteReward_.add(value); + onChanged(); + return this; + } + /** + * repeated int32 takeFeteReward = 13; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public Builder addAllTakeFeteReward( + java.lang.Iterable values) { + ensureTakeFeteRewardIsMutable(); + super.addAll(values, takeFeteReward_); + onChanged(); + return this; + } + /** + * repeated int32 takeFeteReward = 13; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public Builder clearTakeFeteReward() { + takeFeteReward_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00001000); + onChanged(); + return this; + } + + // optional int32 lastFeteGuildId = 14; + private int lastFeteGuildId_ ; + /** + * optional int32 lastFeteGuildId = 14; + * + *
+       * 上次祭祀公会id 
+       * 
+ */ + public boolean hasLastFeteGuildId() { + return ((bitField0_ & 0x00002000) == 0x00002000); + } + /** + * optional int32 lastFeteGuildId = 14; + * + *
+       * 上次祭祀公会id 
+       * 
+ */ + public int getLastFeteGuildId() { + return lastFeteGuildId_; + } + /** + * optional int32 lastFeteGuildId = 14; + * + *
+       * 上次祭祀公会id 
+       * 
+ */ + public Builder setLastFeteGuildId(int value) { + bitField0_ |= 0x00002000; + lastFeteGuildId_ = value; + onChanged(); + return this; + } + /** + * optional int32 lastFeteGuildId = 14; + * + *
+       * 上次祭祀公会id 
+       * 
+ */ + public Builder clearLastFeteGuildId() { + bitField0_ = (bitField0_ & ~0x00002000); + lastFeteGuildId_ = 0; + onChanged(); + return this; + } + + // optional int32 lastFeteType = 15; + private int lastFeteType_ ; + /** + * optional int32 lastFeteType = 15; + * + *
+       * 上次祭祀类型 //每日清除 5点推送
+       * 
+ */ + public boolean hasLastFeteType() { + return ((bitField0_ & 0x00004000) == 0x00004000); + } + /** + * optional int32 lastFeteType = 15; + * + *
+       * 上次祭祀类型 //每日清除 5点推送
+       * 
+ */ + public int getLastFeteType() { + return lastFeteType_; + } + /** + * optional int32 lastFeteType = 15; + * + *
+       * 上次祭祀类型 //每日清除 5点推送
+       * 
+ */ + public Builder setLastFeteType(int value) { + bitField0_ |= 0x00004000; + lastFeteType_ = value; + onChanged(); + return this; + } + /** + * optional int32 lastFeteType = 15; + * + *
+       * 上次祭祀类型 //每日清除 5点推送
+       * 
+ */ + public Builder clearLastFeteType() { + bitField0_ = (bitField0_ & ~0x00004000); + lastFeteType_ = 0; + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.FamilyUserInfo) } @@ -1810,6 +2245,886 @@ public final class Family { // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.FamilyUserInfo) } + public interface CarDelayProgressIndicationOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 progress = 1; + /** + * optional int32 progress = 1; + * + *
+     *阶段 -1:未开 1 : 挑战 2:抢夺
+     * 
+ */ + boolean hasProgress(); + /** + * optional int32 progress = 1; + * + *
+     *阶段 -1:未开 1 : 挑战 2:抢夺
+     * 
+ */ + int getProgress(); + + // optional int32 endTime = 2; + /** + * optional int32 endTime = 2; + * + *
+     *结束时间
+     * 
+ */ + boolean hasEndTime(); + /** + * optional int32 endTime = 2; + * + *
+     *结束时间
+     * 
+ */ + int getEndTime(); + + // optional int32 bossIndexId = 3; + /** + * optional int32 bossIndexId = 3; + * + *
+     *boss索引id
+     * 
+ */ + boolean hasBossIndexId(); + /** + * optional int32 bossIndexId = 3; + * + *
+     *boss索引id
+     * 
+ */ + int getBossIndexId(); + + // optional int32 battleStartTime = 4; + /** + * optional int32 battleStartTime = 4; + * + *
+     * 挑战boss开启时间
+     * 
+ */ + boolean hasBattleStartTime(); + /** + * optional int32 battleStartTime = 4; + * + *
+     * 挑战boss开启时间
+     * 
+ */ + int getBattleStartTime(); + + // optional int32 grabStartTime = 5; + /** + * optional int32 grabStartTime = 5; + * + *
+     * 抢夺开启时间
+     * 
+ */ + boolean hasGrabStartTime(); + /** + * optional int32 grabStartTime = 5; + * + *
+     * 抢夺开启时间
+     * 
+ */ + int getGrabStartTime(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.CarDelayProgressIndication} + */ + public static final class CarDelayProgressIndication extends + com.google.protobuf.GeneratedMessage + implements CarDelayProgressIndicationOrBuilder { + // Use CarDelayProgressIndication.newBuilder() to construct. + private CarDelayProgressIndication(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private CarDelayProgressIndication(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final CarDelayProgressIndication defaultInstance; + public static CarDelayProgressIndication getDefaultInstance() { + return defaultInstance; + } + + public CarDelayProgressIndication getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private CarDelayProgressIndication( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + progress_ = input.readInt32(); + break; + } + case 16: { + bitField0_ |= 0x00000002; + endTime_ = input.readInt32(); + break; + } + case 24: { + bitField0_ |= 0x00000004; + bossIndexId_ = input.readInt32(); + break; + } + case 32: { + bitField0_ |= 0x00000008; + battleStartTime_ = input.readInt32(); + break; + } + case 40: { + bitField0_ |= 0x00000010; + grabStartTime_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_CarDelayProgressIndication_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_CarDelayProgressIndication_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.class, com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public CarDelayProgressIndication parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new CarDelayProgressIndication(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 progress = 1; + public static final int PROGRESS_FIELD_NUMBER = 1; + private int progress_; + /** + * optional int32 progress = 1; + * + *
+     *阶段 -1:未开 1 : 挑战 2:抢夺
+     * 
+ */ + public boolean hasProgress() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 progress = 1; + * + *
+     *阶段 -1:未开 1 : 挑战 2:抢夺
+     * 
+ */ + public int getProgress() { + return progress_; + } + + // optional int32 endTime = 2; + public static final int ENDTIME_FIELD_NUMBER = 2; + private int endTime_; + /** + * optional int32 endTime = 2; + * + *
+     *结束时间
+     * 
+ */ + public boolean hasEndTime() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 endTime = 2; + * + *
+     *结束时间
+     * 
+ */ + public int getEndTime() { + return endTime_; + } + + // optional int32 bossIndexId = 3; + public static final int BOSSINDEXID_FIELD_NUMBER = 3; + private int bossIndexId_; + /** + * optional int32 bossIndexId = 3; + * + *
+     *boss索引id
+     * 
+ */ + public boolean hasBossIndexId() { + return ((bitField0_ & 0x00000004) == 0x00000004); + } + /** + * optional int32 bossIndexId = 3; + * + *
+     *boss索引id
+     * 
+ */ + public int getBossIndexId() { + return bossIndexId_; + } + + // optional int32 battleStartTime = 4; + public static final int BATTLESTARTTIME_FIELD_NUMBER = 4; + private int battleStartTime_; + /** + * optional int32 battleStartTime = 4; + * + *
+     * 挑战boss开启时间
+     * 
+ */ + public boolean hasBattleStartTime() { + return ((bitField0_ & 0x00000008) == 0x00000008); + } + /** + * optional int32 battleStartTime = 4; + * + *
+     * 挑战boss开启时间
+     * 
+ */ + public int getBattleStartTime() { + return battleStartTime_; + } + + // optional int32 grabStartTime = 5; + public static final int GRABSTARTTIME_FIELD_NUMBER = 5; + private int grabStartTime_; + /** + * optional int32 grabStartTime = 5; + * + *
+     * 抢夺开启时间
+     * 
+ */ + public boolean hasGrabStartTime() { + return ((bitField0_ & 0x00000010) == 0x00000010); + } + /** + * optional int32 grabStartTime = 5; + * + *
+     * 抢夺开启时间
+     * 
+ */ + public int getGrabStartTime() { + return grabStartTime_; + } + + private void initFields() { + progress_ = 0; + endTime_ = 0; + bossIndexId_ = 0; + battleStartTime_ = 0; + grabStartTime_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, progress_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeInt32(2, endTime_); + } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + output.writeInt32(3, bossIndexId_); + } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + output.writeInt32(4, battleStartTime_); + } + if (((bitField0_ & 0x00000010) == 0x00000010)) { + output.writeInt32(5, grabStartTime_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, progress_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(2, endTime_); + } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(3, bossIndexId_); + } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(4, battleStartTime_); + } + if (((bitField0_ & 0x00000010) == 0x00000010)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(5, grabStartTime_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.CarDelayProgressIndication parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.CarDelayProgressIndication parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.CarDelayProgressIndication parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.CarDelayProgressIndication parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.CarDelayProgressIndication parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.CarDelayProgressIndication parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.CarDelayProgressIndication parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.CarDelayProgressIndication parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.CarDelayProgressIndication parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.CarDelayProgressIndication parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.CarDelayProgressIndication prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.CarDelayProgressIndication} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.CarDelayProgressIndicationOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_CarDelayProgressIndication_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_CarDelayProgressIndication_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.class, com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + progress_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + endTime_ = 0; + bitField0_ = (bitField0_ & ~0x00000002); + bossIndexId_ = 0; + bitField0_ = (bitField0_ & ~0x00000004); + battleStartTime_ = 0; + bitField0_ = (bitField0_ & ~0x00000008); + grabStartTime_ = 0; + bitField0_ = (bitField0_ & ~0x00000010); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_CarDelayProgressIndication_descriptor; + } + + public com.ljsd.jieling.protocols.Family.CarDelayProgressIndication getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.CarDelayProgressIndication build() { + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.CarDelayProgressIndication buildPartial() { + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication result = new com.ljsd.jieling.protocols.Family.CarDelayProgressIndication(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.progress_ = progress_; + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000002; + } + result.endTime_ = endTime_; + if (((from_bitField0_ & 0x00000004) == 0x00000004)) { + to_bitField0_ |= 0x00000004; + } + result.bossIndexId_ = bossIndexId_; + if (((from_bitField0_ & 0x00000008) == 0x00000008)) { + to_bitField0_ |= 0x00000008; + } + result.battleStartTime_ = battleStartTime_; + if (((from_bitField0_ & 0x00000010) == 0x00000010)) { + to_bitField0_ |= 0x00000010; + } + result.grabStartTime_ = grabStartTime_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.CarDelayProgressIndication) { + return mergeFrom((com.ljsd.jieling.protocols.Family.CarDelayProgressIndication)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.CarDelayProgressIndication other) { + if (other == com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.getDefaultInstance()) return this; + if (other.hasProgress()) { + setProgress(other.getProgress()); + } + if (other.hasEndTime()) { + setEndTime(other.getEndTime()); + } + if (other.hasBossIndexId()) { + setBossIndexId(other.getBossIndexId()); + } + if (other.hasBattleStartTime()) { + setBattleStartTime(other.getBattleStartTime()); + } + if (other.hasGrabStartTime()) { + setGrabStartTime(other.getGrabStartTime()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.CarDelayProgressIndication) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 progress = 1; + private int progress_ ; + /** + * optional int32 progress = 1; + * + *
+       *阶段 -1:未开 1 : 挑战 2:抢夺
+       * 
+ */ + public boolean hasProgress() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 progress = 1; + * + *
+       *阶段 -1:未开 1 : 挑战 2:抢夺
+       * 
+ */ + public int getProgress() { + return progress_; + } + /** + * optional int32 progress = 1; + * + *
+       *阶段 -1:未开 1 : 挑战 2:抢夺
+       * 
+ */ + public Builder setProgress(int value) { + bitField0_ |= 0x00000001; + progress_ = value; + onChanged(); + return this; + } + /** + * optional int32 progress = 1; + * + *
+       *阶段 -1:未开 1 : 挑战 2:抢夺
+       * 
+ */ + public Builder clearProgress() { + bitField0_ = (bitField0_ & ~0x00000001); + progress_ = 0; + onChanged(); + return this; + } + + // optional int32 endTime = 2; + private int endTime_ ; + /** + * optional int32 endTime = 2; + * + *
+       *结束时间
+       * 
+ */ + public boolean hasEndTime() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 endTime = 2; + * + *
+       *结束时间
+       * 
+ */ + public int getEndTime() { + return endTime_; + } + /** + * optional int32 endTime = 2; + * + *
+       *结束时间
+       * 
+ */ + public Builder setEndTime(int value) { + bitField0_ |= 0x00000002; + endTime_ = value; + onChanged(); + return this; + } + /** + * optional int32 endTime = 2; + * + *
+       *结束时间
+       * 
+ */ + public Builder clearEndTime() { + bitField0_ = (bitField0_ & ~0x00000002); + endTime_ = 0; + onChanged(); + return this; + } + + // optional int32 bossIndexId = 3; + private int bossIndexId_ ; + /** + * optional int32 bossIndexId = 3; + * + *
+       *boss索引id
+       * 
+ */ + public boolean hasBossIndexId() { + return ((bitField0_ & 0x00000004) == 0x00000004); + } + /** + * optional int32 bossIndexId = 3; + * + *
+       *boss索引id
+       * 
+ */ + public int getBossIndexId() { + return bossIndexId_; + } + /** + * optional int32 bossIndexId = 3; + * + *
+       *boss索引id
+       * 
+ */ + public Builder setBossIndexId(int value) { + bitField0_ |= 0x00000004; + bossIndexId_ = value; + onChanged(); + return this; + } + /** + * optional int32 bossIndexId = 3; + * + *
+       *boss索引id
+       * 
+ */ + public Builder clearBossIndexId() { + bitField0_ = (bitField0_ & ~0x00000004); + bossIndexId_ = 0; + onChanged(); + return this; + } + + // optional int32 battleStartTime = 4; + private int battleStartTime_ ; + /** + * optional int32 battleStartTime = 4; + * + *
+       * 挑战boss开启时间
+       * 
+ */ + public boolean hasBattleStartTime() { + return ((bitField0_ & 0x00000008) == 0x00000008); + } + /** + * optional int32 battleStartTime = 4; + * + *
+       * 挑战boss开启时间
+       * 
+ */ + public int getBattleStartTime() { + return battleStartTime_; + } + /** + * optional int32 battleStartTime = 4; + * + *
+       * 挑战boss开启时间
+       * 
+ */ + public Builder setBattleStartTime(int value) { + bitField0_ |= 0x00000008; + battleStartTime_ = value; + onChanged(); + return this; + } + /** + * optional int32 battleStartTime = 4; + * + *
+       * 挑战boss开启时间
+       * 
+ */ + public Builder clearBattleStartTime() { + bitField0_ = (bitField0_ & ~0x00000008); + battleStartTime_ = 0; + onChanged(); + return this; + } + + // optional int32 grabStartTime = 5; + private int grabStartTime_ ; + /** + * optional int32 grabStartTime = 5; + * + *
+       * 抢夺开启时间
+       * 
+ */ + public boolean hasGrabStartTime() { + return ((bitField0_ & 0x00000010) == 0x00000010); + } + /** + * optional int32 grabStartTime = 5; + * + *
+       * 抢夺开启时间
+       * 
+ */ + public int getGrabStartTime() { + return grabStartTime_; + } + /** + * optional int32 grabStartTime = 5; + * + *
+       * 抢夺开启时间
+       * 
+ */ + public Builder setGrabStartTime(int value) { + bitField0_ |= 0x00000010; + grabStartTime_ = value; + onChanged(); + return this; + } + /** + * optional int32 grabStartTime = 5; + * + *
+       * 抢夺开启时间
+       * 
+ */ + public Builder clearGrabStartTime() { + bitField0_ = (bitField0_ & ~0x00000010); + grabStartTime_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.CarDelayProgressIndication) + } + + static { + defaultInstance = new CarDelayProgressIndication(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.CarDelayProgressIndication) + } + public interface FamilyLogInfoOrBuilder extends com.google.protobuf.MessageOrBuilder { @@ -10024,6 +11339,32 @@ public final class Family { * */ int getGuildBossId(); + + // optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+     * 车迟玩法时间信息
+     * 
+ */ + boolean hasCarDelayProgressIndication(); + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+     * 车迟玩法时间信息
+     * 
+ */ + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication getCarDelayProgressIndication(); + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+     * 车迟玩法时间信息
+     * 
+ */ + com.ljsd.jieling.protocols.Family.CarDelayProgressIndicationOrBuilder getCarDelayProgressIndicationOrBuilder(); } /** * Protobuf type {@code com.ljsd.jieling.protocols.GetFamilyInfoResponse} @@ -10115,6 +11456,19 @@ public final class Family { guildBossId_ = input.readInt32(); break; } + case 42: { + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.Builder subBuilder = null; + if (((bitField0_ & 0x00000008) == 0x00000008)) { + subBuilder = carDelayProgressIndication_.toBuilder(); + } + carDelayProgressIndication_ = input.readMessage(com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.PARSER, extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(carDelayProgressIndication_); + carDelayProgressIndication_ = subBuilder.buildPartial(); + } + bitField0_ |= 0x00000008; + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -10306,11 +11660,46 @@ public final class Family { return guildBossId_; } + // optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + public static final int CARDELAYPROGRESSINDICATION_FIELD_NUMBER = 5; + private com.ljsd.jieling.protocols.Family.CarDelayProgressIndication carDelayProgressIndication_; + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+     * 车迟玩法时间信息
+     * 
+ */ + public boolean hasCarDelayProgressIndication() { + return ((bitField0_ & 0x00000008) == 0x00000008); + } + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+     * 车迟玩法时间信息
+     * 
+ */ + public com.ljsd.jieling.protocols.Family.CarDelayProgressIndication getCarDelayProgressIndication() { + return carDelayProgressIndication_; + } + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+     * 车迟玩法时间信息
+     * 
+ */ + public com.ljsd.jieling.protocols.Family.CarDelayProgressIndicationOrBuilder getCarDelayProgressIndicationOrBuilder() { + return carDelayProgressIndication_; + } + private void initFields() { familyBaseInfo_ = com.ljsd.jieling.protocols.CommonProto.FamilyBaseInfo.getDefaultInstance(); familyUserInfo_ = com.ljsd.jieling.protocols.Family.FamilyUserInfo.getDefaultInstance(); familyWalkIndicaiton_ = java.util.Collections.emptyList(); guildBossId_ = 0; + carDelayProgressIndication_ = com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.getDefaultInstance(); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -10342,6 +11731,9 @@ public final class Family { if (((bitField0_ & 0x00000004) == 0x00000004)) { output.writeInt32(4, guildBossId_); } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + output.writeMessage(5, carDelayProgressIndication_); + } getUnknownFields().writeTo(output); } @@ -10367,6 +11759,10 @@ public final class Family { size += com.google.protobuf.CodedOutputStream .computeInt32Size(4, guildBossId_); } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(5, carDelayProgressIndication_); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -10478,6 +11874,7 @@ public final class Family { getFamilyBaseInfoFieldBuilder(); getFamilyUserInfoFieldBuilder(); getFamilyWalkIndicaitonFieldBuilder(); + getCarDelayProgressIndicationFieldBuilder(); } } private static Builder create() { @@ -10506,6 +11903,12 @@ public final class Family { } guildBossId_ = 0; bitField0_ = (bitField0_ & ~0x00000008); + if (carDelayProgressIndicationBuilder_ == null) { + carDelayProgressIndication_ = com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.getDefaultInstance(); + } else { + carDelayProgressIndicationBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000010); return this; } @@ -10563,6 +11966,14 @@ public final class Family { to_bitField0_ |= 0x00000004; } result.guildBossId_ = guildBossId_; + if (((from_bitField0_ & 0x00000010) == 0x00000010)) { + to_bitField0_ |= 0x00000008; + } + if (carDelayProgressIndicationBuilder_ == null) { + result.carDelayProgressIndication_ = carDelayProgressIndication_; + } else { + result.carDelayProgressIndication_ = carDelayProgressIndicationBuilder_.build(); + } result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -10614,6 +12025,9 @@ public final class Family { if (other.hasGuildBossId()) { setGuildBossId(other.getGuildBossId()); } + if (other.hasCarDelayProgressIndication()) { + mergeCarDelayProgressIndication(other.getCarDelayProgressIndication()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -11314,6 +12728,159 @@ public final class Family { return this; } + // optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + private com.ljsd.jieling.protocols.Family.CarDelayProgressIndication carDelayProgressIndication_ = com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.getDefaultInstance(); + private com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication, com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.Builder, com.ljsd.jieling.protocols.Family.CarDelayProgressIndicationOrBuilder> carDelayProgressIndicationBuilder_; + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+       * 车迟玩法时间信息
+       * 
+ */ + public boolean hasCarDelayProgressIndication() { + return ((bitField0_ & 0x00000010) == 0x00000010); + } + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+       * 车迟玩法时间信息
+       * 
+ */ + public com.ljsd.jieling.protocols.Family.CarDelayProgressIndication getCarDelayProgressIndication() { + if (carDelayProgressIndicationBuilder_ == null) { + return carDelayProgressIndication_; + } else { + return carDelayProgressIndicationBuilder_.getMessage(); + } + } + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+       * 车迟玩法时间信息
+       * 
+ */ + public Builder setCarDelayProgressIndication(com.ljsd.jieling.protocols.Family.CarDelayProgressIndication value) { + if (carDelayProgressIndicationBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + carDelayProgressIndication_ = value; + onChanged(); + } else { + carDelayProgressIndicationBuilder_.setMessage(value); + } + bitField0_ |= 0x00000010; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+       * 车迟玩法时间信息
+       * 
+ */ + public Builder setCarDelayProgressIndication( + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.Builder builderForValue) { + if (carDelayProgressIndicationBuilder_ == null) { + carDelayProgressIndication_ = builderForValue.build(); + onChanged(); + } else { + carDelayProgressIndicationBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000010; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+       * 车迟玩法时间信息
+       * 
+ */ + public Builder mergeCarDelayProgressIndication(com.ljsd.jieling.protocols.Family.CarDelayProgressIndication value) { + if (carDelayProgressIndicationBuilder_ == null) { + if (((bitField0_ & 0x00000010) == 0x00000010) && + carDelayProgressIndication_ != com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.getDefaultInstance()) { + carDelayProgressIndication_ = + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.newBuilder(carDelayProgressIndication_).mergeFrom(value).buildPartial(); + } else { + carDelayProgressIndication_ = value; + } + onChanged(); + } else { + carDelayProgressIndicationBuilder_.mergeFrom(value); + } + bitField0_ |= 0x00000010; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+       * 车迟玩法时间信息
+       * 
+ */ + public Builder clearCarDelayProgressIndication() { + if (carDelayProgressIndicationBuilder_ == null) { + carDelayProgressIndication_ = com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.getDefaultInstance(); + onChanged(); + } else { + carDelayProgressIndicationBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000010); + return this; + } + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+       * 车迟玩法时间信息
+       * 
+ */ + public com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.Builder getCarDelayProgressIndicationBuilder() { + bitField0_ |= 0x00000010; + onChanged(); + return getCarDelayProgressIndicationFieldBuilder().getBuilder(); + } + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+       * 车迟玩法时间信息
+       * 
+ */ + public com.ljsd.jieling.protocols.Family.CarDelayProgressIndicationOrBuilder getCarDelayProgressIndicationOrBuilder() { + if (carDelayProgressIndicationBuilder_ != null) { + return carDelayProgressIndicationBuilder_.getMessageOrBuilder(); + } else { + return carDelayProgressIndication_; + } + } + /** + * optional .com.ljsd.jieling.protocols.CarDelayProgressIndication carDelayProgressIndication = 5; + * + *
+       * 车迟玩法时间信息
+       * 
+ */ + private com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication, com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.Builder, com.ljsd.jieling.protocols.Family.CarDelayProgressIndicationOrBuilder> + getCarDelayProgressIndicationFieldBuilder() { + if (carDelayProgressIndicationBuilder_ == null) { + carDelayProgressIndicationBuilder_ = new com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.Family.CarDelayProgressIndication, com.ljsd.jieling.protocols.Family.CarDelayProgressIndication.Builder, com.ljsd.jieling.protocols.Family.CarDelayProgressIndicationOrBuilder>( + carDelayProgressIndication_, + getParentForChildren(), + isClean()); + carDelayProgressIndication_ = null; + } + return carDelayProgressIndicationBuilder_; + } + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.GetFamilyInfoResponse) } @@ -40678,11 +42245,8398 @@ public final class Family { // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.GetAllSendLikeResponse) } + public interface GuildSkillOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 type = 1; + /** + * optional int32 type = 1; + */ + boolean hasType(); + /** + * optional int32 type = 1; + */ + int getType(); + + // optional int32 level = 2; + /** + * optional int32 level = 2; + */ + boolean hasLevel(); + /** + * optional int32 level = 2; + */ + int getLevel(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GuildSkill} + */ + public static final class GuildSkill extends + com.google.protobuf.GeneratedMessage + implements GuildSkillOrBuilder { + // Use GuildSkill.newBuilder() to construct. + private GuildSkill(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private GuildSkill(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final GuildSkill defaultInstance; + public static GuildSkill getDefaultInstance() { + return defaultInstance; + } + + public GuildSkill getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private GuildSkill( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + type_ = input.readInt32(); + break; + } + case 16: { + bitField0_ |= 0x00000002; + level_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GuildSkill_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GuildSkill_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GuildSkill.class, com.ljsd.jieling.protocols.Family.GuildSkill.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public GuildSkill parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new GuildSkill(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 type = 1; + public static final int TYPE_FIELD_NUMBER = 1; + private int type_; + /** + * optional int32 type = 1; + */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 type = 1; + */ + public int getType() { + return type_; + } + + // optional int32 level = 2; + public static final int LEVEL_FIELD_NUMBER = 2; + private int level_; + /** + * optional int32 level = 2; + */ + public boolean hasLevel() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 level = 2; + */ + public int getLevel() { + return level_; + } + + private void initFields() { + type_ = 0; + level_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, type_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeInt32(2, level_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, type_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(2, level_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.GuildSkill parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GuildSkill parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GuildSkill parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GuildSkill parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GuildSkill parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GuildSkill parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GuildSkill parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GuildSkill parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GuildSkill parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GuildSkill parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.GuildSkill prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GuildSkill} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.GuildSkillOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GuildSkill_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GuildSkill_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GuildSkill.class, com.ljsd.jieling.protocols.Family.GuildSkill.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.GuildSkill.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + type_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + level_ = 0; + bitField0_ = (bitField0_ & ~0x00000002); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GuildSkill_descriptor; + } + + public com.ljsd.jieling.protocols.Family.GuildSkill getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.GuildSkill.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.GuildSkill build() { + com.ljsd.jieling.protocols.Family.GuildSkill result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.GuildSkill buildPartial() { + com.ljsd.jieling.protocols.Family.GuildSkill result = new com.ljsd.jieling.protocols.Family.GuildSkill(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.type_ = type_; + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000002; + } + result.level_ = level_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.GuildSkill) { + return mergeFrom((com.ljsd.jieling.protocols.Family.GuildSkill)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.GuildSkill other) { + if (other == com.ljsd.jieling.protocols.Family.GuildSkill.getDefaultInstance()) return this; + if (other.hasType()) { + setType(other.getType()); + } + if (other.hasLevel()) { + setLevel(other.getLevel()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.GuildSkill parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.GuildSkill) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 type = 1; + private int type_ ; + /** + * optional int32 type = 1; + */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 type = 1; + */ + public int getType() { + return type_; + } + /** + * optional int32 type = 1; + */ + public Builder setType(int value) { + bitField0_ |= 0x00000001; + type_ = value; + onChanged(); + return this; + } + /** + * optional int32 type = 1; + */ + public Builder clearType() { + bitField0_ = (bitField0_ & ~0x00000001); + type_ = 0; + onChanged(); + return this; + } + + // optional int32 level = 2; + private int level_ ; + /** + * optional int32 level = 2; + */ + public boolean hasLevel() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 level = 2; + */ + public int getLevel() { + return level_; + } + /** + * optional int32 level = 2; + */ + public Builder setLevel(int value) { + bitField0_ |= 0x00000002; + level_ = value; + onChanged(); + return this; + } + /** + * optional int32 level = 2; + */ + public Builder clearLevel() { + bitField0_ = (bitField0_ & ~0x00000002); + level_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.GuildSkill) + } + + static { + defaultInstance = new GuildSkill(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.GuildSkill) + } + + public interface GetAllGuildSkillResponseOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + java.util.List + getSkillList(); + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + com.ljsd.jieling.protocols.Family.GuildSkill getSkill(int index); + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + int getSkillCount(); + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + java.util.List + getSkillOrBuilderList(); + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + com.ljsd.jieling.protocols.Family.GuildSkillOrBuilder getSkillOrBuilder( + int index); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GetAllGuildSkillResponse} + * + *
+   *获取所有公会技能
+   * 
+ */ + public static final class GetAllGuildSkillResponse extends + com.google.protobuf.GeneratedMessage + implements GetAllGuildSkillResponseOrBuilder { + // Use GetAllGuildSkillResponse.newBuilder() to construct. + private GetAllGuildSkillResponse(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private GetAllGuildSkillResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final GetAllGuildSkillResponse defaultInstance; + public static GetAllGuildSkillResponse getDefaultInstance() { + return defaultInstance; + } + + public GetAllGuildSkillResponse getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private GetAllGuildSkillResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: { + if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + skill_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + skill_.add(input.readMessage(com.ljsd.jieling.protocols.Family.GuildSkill.PARSER, extensionRegistry)); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + skill_ = java.util.Collections.unmodifiableList(skill_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetAllGuildSkillResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetAllGuildSkillResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse.class, com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public GetAllGuildSkillResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new GetAllGuildSkillResponse(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + // repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + public static final int SKILL_FIELD_NUMBER = 1; + private java.util.List skill_; + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public java.util.List getSkillList() { + return skill_; + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public java.util.List + getSkillOrBuilderList() { + return skill_; + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public int getSkillCount() { + return skill_.size(); + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public com.ljsd.jieling.protocols.Family.GuildSkill getSkill(int index) { + return skill_.get(index); + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public com.ljsd.jieling.protocols.Family.GuildSkillOrBuilder getSkillOrBuilder( + int index) { + return skill_.get(index); + } + + private void initFields() { + skill_ = java.util.Collections.emptyList(); + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + for (int i = 0; i < skill_.size(); i++) { + output.writeMessage(1, skill_.get(i)); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < skill_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, skill_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GetAllGuildSkillResponse} + * + *
+     *获取所有公会技能
+     * 
+ */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetAllGuildSkillResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetAllGuildSkillResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse.class, com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + getSkillFieldBuilder(); + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + if (skillBuilder_ == null) { + skill_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + skillBuilder_.clear(); + } + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetAllGuildSkillResponse_descriptor; + } + + public com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse build() { + com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse buildPartial() { + com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse result = new com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse(this); + int from_bitField0_ = bitField0_; + if (skillBuilder_ == null) { + if (((bitField0_ & 0x00000001) == 0x00000001)) { + skill_ = java.util.Collections.unmodifiableList(skill_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.skill_ = skill_; + } else { + result.skill_ = skillBuilder_.build(); + } + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse) { + return mergeFrom((com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse other) { + if (other == com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse.getDefaultInstance()) return this; + if (skillBuilder_ == null) { + if (!other.skill_.isEmpty()) { + if (skill_.isEmpty()) { + skill_ = other.skill_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureSkillIsMutable(); + skill_.addAll(other.skill_); + } + onChanged(); + } + } else { + if (!other.skill_.isEmpty()) { + if (skillBuilder_.isEmpty()) { + skillBuilder_.dispose(); + skillBuilder_ = null; + skill_ = other.skill_; + bitField0_ = (bitField0_ & ~0x00000001); + skillBuilder_ = + com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? + getSkillFieldBuilder() : null; + } else { + skillBuilder_.addAllMessages(other.skill_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.GetAllGuildSkillResponse) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + private java.util.List skill_ = + java.util.Collections.emptyList(); + private void ensureSkillIsMutable() { + if (!((bitField0_ & 0x00000001) == 0x00000001)) { + skill_ = new java.util.ArrayList(skill_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilder< + com.ljsd.jieling.protocols.Family.GuildSkill, com.ljsd.jieling.protocols.Family.GuildSkill.Builder, com.ljsd.jieling.protocols.Family.GuildSkillOrBuilder> skillBuilder_; + + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public java.util.List getSkillList() { + if (skillBuilder_ == null) { + return java.util.Collections.unmodifiableList(skill_); + } else { + return skillBuilder_.getMessageList(); + } + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public int getSkillCount() { + if (skillBuilder_ == null) { + return skill_.size(); + } else { + return skillBuilder_.getCount(); + } + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public com.ljsd.jieling.protocols.Family.GuildSkill getSkill(int index) { + if (skillBuilder_ == null) { + return skill_.get(index); + } else { + return skillBuilder_.getMessage(index); + } + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public Builder setSkill( + int index, com.ljsd.jieling.protocols.Family.GuildSkill value) { + if (skillBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSkillIsMutable(); + skill_.set(index, value); + onChanged(); + } else { + skillBuilder_.setMessage(index, value); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public Builder setSkill( + int index, com.ljsd.jieling.protocols.Family.GuildSkill.Builder builderForValue) { + if (skillBuilder_ == null) { + ensureSkillIsMutable(); + skill_.set(index, builderForValue.build()); + onChanged(); + } else { + skillBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public Builder addSkill(com.ljsd.jieling.protocols.Family.GuildSkill value) { + if (skillBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSkillIsMutable(); + skill_.add(value); + onChanged(); + } else { + skillBuilder_.addMessage(value); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public Builder addSkill( + int index, com.ljsd.jieling.protocols.Family.GuildSkill value) { + if (skillBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSkillIsMutable(); + skill_.add(index, value); + onChanged(); + } else { + skillBuilder_.addMessage(index, value); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public Builder addSkill( + com.ljsd.jieling.protocols.Family.GuildSkill.Builder builderForValue) { + if (skillBuilder_ == null) { + ensureSkillIsMutable(); + skill_.add(builderForValue.build()); + onChanged(); + } else { + skillBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public Builder addSkill( + int index, com.ljsd.jieling.protocols.Family.GuildSkill.Builder builderForValue) { + if (skillBuilder_ == null) { + ensureSkillIsMutable(); + skill_.add(index, builderForValue.build()); + onChanged(); + } else { + skillBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public Builder addAllSkill( + java.lang.Iterable values) { + if (skillBuilder_ == null) { + ensureSkillIsMutable(); + super.addAll(values, skill_); + onChanged(); + } else { + skillBuilder_.addAllMessages(values); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public Builder clearSkill() { + if (skillBuilder_ == null) { + skill_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + skillBuilder_.clear(); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public Builder removeSkill(int index) { + if (skillBuilder_ == null) { + ensureSkillIsMutable(); + skill_.remove(index); + onChanged(); + } else { + skillBuilder_.remove(index); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public com.ljsd.jieling.protocols.Family.GuildSkill.Builder getSkillBuilder( + int index) { + return getSkillFieldBuilder().getBuilder(index); + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public com.ljsd.jieling.protocols.Family.GuildSkillOrBuilder getSkillOrBuilder( + int index) { + if (skillBuilder_ == null) { + return skill_.get(index); } else { + return skillBuilder_.getMessageOrBuilder(index); + } + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public java.util.List + getSkillOrBuilderList() { + if (skillBuilder_ != null) { + return skillBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(skill_); + } + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public com.ljsd.jieling.protocols.Family.GuildSkill.Builder addSkillBuilder() { + return getSkillFieldBuilder().addBuilder( + com.ljsd.jieling.protocols.Family.GuildSkill.getDefaultInstance()); + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public com.ljsd.jieling.protocols.Family.GuildSkill.Builder addSkillBuilder( + int index) { + return getSkillFieldBuilder().addBuilder( + index, com.ljsd.jieling.protocols.Family.GuildSkill.getDefaultInstance()); + } + /** + * repeated .com.ljsd.jieling.protocols.GuildSkill skill = 1; + */ + public java.util.List + getSkillBuilderList() { + return getSkillFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilder< + com.ljsd.jieling.protocols.Family.GuildSkill, com.ljsd.jieling.protocols.Family.GuildSkill.Builder, com.ljsd.jieling.protocols.Family.GuildSkillOrBuilder> + getSkillFieldBuilder() { + if (skillBuilder_ == null) { + skillBuilder_ = new com.google.protobuf.RepeatedFieldBuilder< + com.ljsd.jieling.protocols.Family.GuildSkill, com.ljsd.jieling.protocols.Family.GuildSkill.Builder, com.ljsd.jieling.protocols.Family.GuildSkillOrBuilder>( + skill_, + ((bitField0_ & 0x00000001) == 0x00000001), + getParentForChildren(), + isClean()); + skill_ = null; + } + return skillBuilder_; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.GetAllGuildSkillResponse) + } + + static { + defaultInstance = new GetAllGuildSkillResponse(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.GetAllGuildSkillResponse) + } + + public interface GuildSkillLevelUpRequestOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 type = 1; + /** + * optional int32 type = 1; + */ + boolean hasType(); + /** + * optional int32 type = 1; + */ + int getType(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GuildSkillLevelUpRequest} + * + *
+   *公会技能升级
+   * 
+ */ + public static final class GuildSkillLevelUpRequest extends + com.google.protobuf.GeneratedMessage + implements GuildSkillLevelUpRequestOrBuilder { + // Use GuildSkillLevelUpRequest.newBuilder() to construct. + private GuildSkillLevelUpRequest(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private GuildSkillLevelUpRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final GuildSkillLevelUpRequest defaultInstance; + public static GuildSkillLevelUpRequest getDefaultInstance() { + return defaultInstance; + } + + public GuildSkillLevelUpRequest getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private GuildSkillLevelUpRequest( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + type_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GuildSkillLevelUpRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GuildSkillLevelUpRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest.class, com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public GuildSkillLevelUpRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new GuildSkillLevelUpRequest(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 type = 1; + public static final int TYPE_FIELD_NUMBER = 1; + private int type_; + /** + * optional int32 type = 1; + */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 type = 1; + */ + public int getType() { + return type_; + } + + private void initFields() { + type_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, type_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, type_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GuildSkillLevelUpRequest} + * + *
+     *公会技能升级
+     * 
+ */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GuildSkillLevelUpRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GuildSkillLevelUpRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest.class, com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + type_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GuildSkillLevelUpRequest_descriptor; + } + + public com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest build() { + com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest buildPartial() { + com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest result = new com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.type_ = type_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest) { + return mergeFrom((com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest other) { + if (other == com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest.getDefaultInstance()) return this; + if (other.hasType()) { + setType(other.getType()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.GuildSkillLevelUpRequest) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 type = 1; + private int type_ ; + /** + * optional int32 type = 1; + */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 type = 1; + */ + public int getType() { + return type_; + } + /** + * optional int32 type = 1; + */ + public Builder setType(int value) { + bitField0_ |= 0x00000001; + type_ = value; + onChanged(); + return this; + } + /** + * optional int32 type = 1; + */ + public Builder clearType() { + bitField0_ = (bitField0_ & ~0x00000001); + type_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.GuildSkillLevelUpRequest) + } + + static { + defaultInstance = new GuildSkillLevelUpRequest(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.GuildSkillLevelUpRequest) + } + + public interface ResetGuildSkillRequestOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 type = 1; + /** + * optional int32 type = 1; + */ + boolean hasType(); + /** + * optional int32 type = 1; + */ + int getType(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.ResetGuildSkillRequest} + * + *
+   *公会技能重置
+   * 
+ */ + public static final class ResetGuildSkillRequest extends + com.google.protobuf.GeneratedMessage + implements ResetGuildSkillRequestOrBuilder { + // Use ResetGuildSkillRequest.newBuilder() to construct. + private ResetGuildSkillRequest(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private ResetGuildSkillRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final ResetGuildSkillRequest defaultInstance; + public static ResetGuildSkillRequest getDefaultInstance() { + return defaultInstance; + } + + public ResetGuildSkillRequest getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private ResetGuildSkillRequest( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + type_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ResetGuildSkillRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ResetGuildSkillRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest.class, com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public ResetGuildSkillRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new ResetGuildSkillRequest(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 type = 1; + public static final int TYPE_FIELD_NUMBER = 1; + private int type_; + /** + * optional int32 type = 1; + */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 type = 1; + */ + public int getType() { + return type_; + } + + private void initFields() { + type_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, type_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, type_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.ResetGuildSkillRequest} + * + *
+     *公会技能重置
+     * 
+ */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.ResetGuildSkillRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ResetGuildSkillRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ResetGuildSkillRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest.class, com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + type_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ResetGuildSkillRequest_descriptor; + } + + public com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest build() { + com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest buildPartial() { + com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest result = new com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.type_ = type_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest) { + return mergeFrom((com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest other) { + if (other == com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest.getDefaultInstance()) return this; + if (other.hasType()) { + setType(other.getType()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.ResetGuildSkillRequest) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 type = 1; + private int type_ ; + /** + * optional int32 type = 1; + */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 type = 1; + */ + public int getType() { + return type_; + } + /** + * optional int32 type = 1; + */ + public Builder setType(int value) { + bitField0_ |= 0x00000001; + type_ = value; + onChanged(); + return this; + } + /** + * optional int32 type = 1; + */ + public Builder clearType() { + bitField0_ = (bitField0_ & ~0x00000001); + type_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.ResetGuildSkillRequest) + } + + static { + defaultInstance = new ResetGuildSkillRequest(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.ResetGuildSkillRequest) + } + + public interface ResetGuildSkillResponseOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional .com.ljsd.jieling.protocols.Drop drop = 1; + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + boolean hasDrop(); + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + com.ljsd.jieling.protocols.CommonProto.Drop getDrop(); + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + com.ljsd.jieling.protocols.CommonProto.DropOrBuilder getDropOrBuilder(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.ResetGuildSkillResponse} + */ + public static final class ResetGuildSkillResponse extends + com.google.protobuf.GeneratedMessage + implements ResetGuildSkillResponseOrBuilder { + // Use ResetGuildSkillResponse.newBuilder() to construct. + private ResetGuildSkillResponse(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private ResetGuildSkillResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final ResetGuildSkillResponse defaultInstance; + public static ResetGuildSkillResponse getDefaultInstance() { + return defaultInstance; + } + + public ResetGuildSkillResponse getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private ResetGuildSkillResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: { + com.ljsd.jieling.protocols.CommonProto.Drop.Builder subBuilder = null; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + subBuilder = drop_.toBuilder(); + } + drop_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.Drop.PARSER, extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(drop_); + drop_ = subBuilder.buildPartial(); + } + bitField0_ |= 0x00000001; + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ResetGuildSkillResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ResetGuildSkillResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse.class, com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public ResetGuildSkillResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new ResetGuildSkillResponse(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional .com.ljsd.jieling.protocols.Drop drop = 1; + public static final int DROP_FIELD_NUMBER = 1; + private com.ljsd.jieling.protocols.CommonProto.Drop drop_; + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + public boolean hasDrop() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.Drop getDrop() { + return drop_; + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.DropOrBuilder getDropOrBuilder() { + return drop_; + } + + private void initFields() { + drop_ = com.ljsd.jieling.protocols.CommonProto.Drop.getDefaultInstance(); + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeMessage(1, drop_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, drop_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.ResetGuildSkillResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.ResetGuildSkillResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ResetGuildSkillResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ResetGuildSkillResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse.class, com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + getDropFieldBuilder(); + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + if (dropBuilder_ == null) { + drop_ = com.ljsd.jieling.protocols.CommonProto.Drop.getDefaultInstance(); + } else { + dropBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ResetGuildSkillResponse_descriptor; + } + + public com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse build() { + com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse buildPartial() { + com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse result = new com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + if (dropBuilder_ == null) { + result.drop_ = drop_; + } else { + result.drop_ = dropBuilder_.build(); + } + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse) { + return mergeFrom((com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse other) { + if (other == com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse.getDefaultInstance()) return this; + if (other.hasDrop()) { + mergeDrop(other.getDrop()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.ResetGuildSkillResponse) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional .com.ljsd.jieling.protocols.Drop drop = 1; + private com.ljsd.jieling.protocols.CommonProto.Drop drop_ = com.ljsd.jieling.protocols.CommonProto.Drop.getDefaultInstance(); + private com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.Drop, com.ljsd.jieling.protocols.CommonProto.Drop.Builder, com.ljsd.jieling.protocols.CommonProto.DropOrBuilder> dropBuilder_; + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + public boolean hasDrop() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.Drop getDrop() { + if (dropBuilder_ == null) { + return drop_; + } else { + return dropBuilder_.getMessage(); + } + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + public Builder setDrop(com.ljsd.jieling.protocols.CommonProto.Drop value) { + if (dropBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + drop_ = value; + onChanged(); + } else { + dropBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + public Builder setDrop( + com.ljsd.jieling.protocols.CommonProto.Drop.Builder builderForValue) { + if (dropBuilder_ == null) { + drop_ = builderForValue.build(); + onChanged(); + } else { + dropBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + public Builder mergeDrop(com.ljsd.jieling.protocols.CommonProto.Drop value) { + if (dropBuilder_ == null) { + if (((bitField0_ & 0x00000001) == 0x00000001) && + drop_ != com.ljsd.jieling.protocols.CommonProto.Drop.getDefaultInstance()) { + drop_ = + com.ljsd.jieling.protocols.CommonProto.Drop.newBuilder(drop_).mergeFrom(value).buildPartial(); + } else { + drop_ = value; + } + onChanged(); + } else { + dropBuilder_.mergeFrom(value); + } + bitField0_ |= 0x00000001; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + public Builder clearDrop() { + if (dropBuilder_ == null) { + drop_ = com.ljsd.jieling.protocols.CommonProto.Drop.getDefaultInstance(); + onChanged(); + } else { + dropBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.Drop.Builder getDropBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getDropFieldBuilder().getBuilder(); + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.DropOrBuilder getDropOrBuilder() { + if (dropBuilder_ != null) { + return dropBuilder_.getMessageOrBuilder(); + } else { + return drop_; + } + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 1; + */ + private com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.Drop, com.ljsd.jieling.protocols.CommonProto.Drop.Builder, com.ljsd.jieling.protocols.CommonProto.DropOrBuilder> + getDropFieldBuilder() { + if (dropBuilder_ == null) { + dropBuilder_ = new com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.Drop, com.ljsd.jieling.protocols.CommonProto.Drop.Builder, com.ljsd.jieling.protocols.CommonProto.DropOrBuilder>( + drop_, + getParentForChildren(), + isClean()); + drop_ = null; + } + return dropBuilder_; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.ResetGuildSkillResponse) + } + + static { + defaultInstance = new ResetGuildSkillResponse(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.ResetGuildSkillResponse) + } + + public interface GetCarChallenegListResponseOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + java.util.List + getRankInfoList(); + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + com.ljsd.jieling.protocols.CommonProto.RankInfo getRankInfo(int index); + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + int getRankInfoCount(); + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + java.util.List + getRankInfoOrBuilderList(); + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getRankInfoOrBuilder( + int index); + + // optional int32 myRank = 2; + /** + * optional int32 myRank = 2; + * + *
+     *我的排名
+     * 
+ */ + boolean hasMyRank(); + /** + * optional int32 myRank = 2; + * + *
+     *我的排名
+     * 
+ */ + int getMyRank(); + + // optional int32 myScore = 3; + /** + * optional int32 myScore = 3; + * + *
+     *我的积分
+     * 
+ */ + boolean hasMyScore(); + /** + * optional int32 myScore = 3; + * + *
+     *我的积分
+     * 
+ */ + int getMyScore(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GetCarChallenegListResponse} + */ + public static final class GetCarChallenegListResponse extends + com.google.protobuf.GeneratedMessage + implements GetCarChallenegListResponseOrBuilder { + // Use GetCarChallenegListResponse.newBuilder() to construct. + private GetCarChallenegListResponse(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private GetCarChallenegListResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final GetCarChallenegListResponse defaultInstance; + public static GetCarChallenegListResponse getDefaultInstance() { + return defaultInstance; + } + + public GetCarChallenegListResponse getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private GetCarChallenegListResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: { + if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + rankInfo_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + rankInfo_.add(input.readMessage(com.ljsd.jieling.protocols.CommonProto.RankInfo.PARSER, extensionRegistry)); + break; + } + case 16: { + bitField0_ |= 0x00000001; + myRank_ = input.readInt32(); + break; + } + case 24: { + bitField0_ |= 0x00000002; + myScore_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + rankInfo_ = java.util.Collections.unmodifiableList(rankInfo_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetCarChallenegListResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetCarChallenegListResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse.class, com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public GetCarChallenegListResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new GetCarChallenegListResponse(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + public static final int RANKINFO_FIELD_NUMBER = 1; + private java.util.List rankInfo_; + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public java.util.List getRankInfoList() { + return rankInfo_; + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public java.util.List + getRankInfoOrBuilderList() { + return rankInfo_; + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public int getRankInfoCount() { + return rankInfo_.size(); + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.RankInfo getRankInfo(int index) { + return rankInfo_.get(index); + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getRankInfoOrBuilder( + int index) { + return rankInfo_.get(index); + } + + // optional int32 myRank = 2; + public static final int MYRANK_FIELD_NUMBER = 2; + private int myRank_; + /** + * optional int32 myRank = 2; + * + *
+     *我的排名
+     * 
+ */ + public boolean hasMyRank() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 myRank = 2; + * + *
+     *我的排名
+     * 
+ */ + public int getMyRank() { + return myRank_; + } + + // optional int32 myScore = 3; + public static final int MYSCORE_FIELD_NUMBER = 3; + private int myScore_; + /** + * optional int32 myScore = 3; + * + *
+     *我的积分
+     * 
+ */ + public boolean hasMyScore() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 myScore = 3; + * + *
+     *我的积分
+     * 
+ */ + public int getMyScore() { + return myScore_; + } + + private void initFields() { + rankInfo_ = java.util.Collections.emptyList(); + myRank_ = 0; + myScore_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + for (int i = 0; i < rankInfo_.size(); i++) { + output.writeMessage(1, rankInfo_.get(i)); + } + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(2, myRank_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeInt32(3, myScore_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < rankInfo_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, rankInfo_.get(i)); + } + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(2, myRank_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(3, myScore_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GetCarChallenegListResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.GetCarChallenegListResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetCarChallenegListResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetCarChallenegListResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse.class, com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + getRankInfoFieldBuilder(); + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + if (rankInfoBuilder_ == null) { + rankInfo_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + rankInfoBuilder_.clear(); + } + myRank_ = 0; + bitField0_ = (bitField0_ & ~0x00000002); + myScore_ = 0; + bitField0_ = (bitField0_ & ~0x00000004); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetCarChallenegListResponse_descriptor; + } + + public com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse build() { + com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse buildPartial() { + com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse result = new com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (rankInfoBuilder_ == null) { + if (((bitField0_ & 0x00000001) == 0x00000001)) { + rankInfo_ = java.util.Collections.unmodifiableList(rankInfo_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.rankInfo_ = rankInfo_; + } else { + result.rankInfo_ = rankInfoBuilder_.build(); + } + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000001; + } + result.myRank_ = myRank_; + if (((from_bitField0_ & 0x00000004) == 0x00000004)) { + to_bitField0_ |= 0x00000002; + } + result.myScore_ = myScore_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse) { + return mergeFrom((com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse other) { + if (other == com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse.getDefaultInstance()) return this; + if (rankInfoBuilder_ == null) { + if (!other.rankInfo_.isEmpty()) { + if (rankInfo_.isEmpty()) { + rankInfo_ = other.rankInfo_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureRankInfoIsMutable(); + rankInfo_.addAll(other.rankInfo_); + } + onChanged(); + } + } else { + if (!other.rankInfo_.isEmpty()) { + if (rankInfoBuilder_.isEmpty()) { + rankInfoBuilder_.dispose(); + rankInfoBuilder_ = null; + rankInfo_ = other.rankInfo_; + bitField0_ = (bitField0_ & ~0x00000001); + rankInfoBuilder_ = + com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? + getRankInfoFieldBuilder() : null; + } else { + rankInfoBuilder_.addAllMessages(other.rankInfo_); + } + } + } + if (other.hasMyRank()) { + setMyRank(other.getMyRank()); + } + if (other.hasMyScore()) { + setMyScore(other.getMyScore()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + private java.util.List rankInfo_ = + java.util.Collections.emptyList(); + private void ensureRankInfoIsMutable() { + if (!((bitField0_ & 0x00000001) == 0x00000001)) { + rankInfo_ = new java.util.ArrayList(rankInfo_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.RankInfo, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder, com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder> rankInfoBuilder_; + + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public java.util.List getRankInfoList() { + if (rankInfoBuilder_ == null) { + return java.util.Collections.unmodifiableList(rankInfo_); + } else { + return rankInfoBuilder_.getMessageList(); + } + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public int getRankInfoCount() { + if (rankInfoBuilder_ == null) { + return rankInfo_.size(); + } else { + return rankInfoBuilder_.getCount(); + } + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.RankInfo getRankInfo(int index) { + if (rankInfoBuilder_ == null) { + return rankInfo_.get(index); + } else { + return rankInfoBuilder_.getMessage(index); + } + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public Builder setRankInfo( + int index, com.ljsd.jieling.protocols.CommonProto.RankInfo value) { + if (rankInfoBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRankInfoIsMutable(); + rankInfo_.set(index, value); + onChanged(); + } else { + rankInfoBuilder_.setMessage(index, value); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public Builder setRankInfo( + int index, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder builderForValue) { + if (rankInfoBuilder_ == null) { + ensureRankInfoIsMutable(); + rankInfo_.set(index, builderForValue.build()); + onChanged(); + } else { + rankInfoBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public Builder addRankInfo(com.ljsd.jieling.protocols.CommonProto.RankInfo value) { + if (rankInfoBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRankInfoIsMutable(); + rankInfo_.add(value); + onChanged(); + } else { + rankInfoBuilder_.addMessage(value); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public Builder addRankInfo( + int index, com.ljsd.jieling.protocols.CommonProto.RankInfo value) { + if (rankInfoBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureRankInfoIsMutable(); + rankInfo_.add(index, value); + onChanged(); + } else { + rankInfoBuilder_.addMessage(index, value); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public Builder addRankInfo( + com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder builderForValue) { + if (rankInfoBuilder_ == null) { + ensureRankInfoIsMutable(); + rankInfo_.add(builderForValue.build()); + onChanged(); + } else { + rankInfoBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public Builder addRankInfo( + int index, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder builderForValue) { + if (rankInfoBuilder_ == null) { + ensureRankInfoIsMutable(); + rankInfo_.add(index, builderForValue.build()); + onChanged(); + } else { + rankInfoBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public Builder addAllRankInfo( + java.lang.Iterable values) { + if (rankInfoBuilder_ == null) { + ensureRankInfoIsMutable(); + super.addAll(values, rankInfo_); + onChanged(); + } else { + rankInfoBuilder_.addAllMessages(values); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public Builder clearRankInfo() { + if (rankInfoBuilder_ == null) { + rankInfo_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + rankInfoBuilder_.clear(); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public Builder removeRankInfo(int index) { + if (rankInfoBuilder_ == null) { + ensureRankInfoIsMutable(); + rankInfo_.remove(index); + onChanged(); + } else { + rankInfoBuilder_.remove(index); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder getRankInfoBuilder( + int index) { + return getRankInfoFieldBuilder().getBuilder(index); + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getRankInfoOrBuilder( + int index) { + if (rankInfoBuilder_ == null) { + return rankInfo_.get(index); } else { + return rankInfoBuilder_.getMessageOrBuilder(index); + } + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public java.util.List + getRankInfoOrBuilderList() { + if (rankInfoBuilder_ != null) { + return rankInfoBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(rankInfo_); + } + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder addRankInfoBuilder() { + return getRankInfoFieldBuilder().addBuilder( + com.ljsd.jieling.protocols.CommonProto.RankInfo.getDefaultInstance()); + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder addRankInfoBuilder( + int index) { + return getRankInfoFieldBuilder().addBuilder( + index, com.ljsd.jieling.protocols.CommonProto.RankInfo.getDefaultInstance()); + } + /** + * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1; + */ + public java.util.List + getRankInfoBuilderList() { + return getRankInfoFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.RankInfo, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder, com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder> + getRankInfoFieldBuilder() { + if (rankInfoBuilder_ == null) { + rankInfoBuilder_ = new com.google.protobuf.RepeatedFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.RankInfo, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder, com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder>( + rankInfo_, + ((bitField0_ & 0x00000001) == 0x00000001), + getParentForChildren(), + isClean()); + rankInfo_ = null; + } + return rankInfoBuilder_; + } + + // optional int32 myRank = 2; + private int myRank_ ; + /** + * optional int32 myRank = 2; + * + *
+       *我的排名
+       * 
+ */ + public boolean hasMyRank() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 myRank = 2; + * + *
+       *我的排名
+       * 
+ */ + public int getMyRank() { + return myRank_; + } + /** + * optional int32 myRank = 2; + * + *
+       *我的排名
+       * 
+ */ + public Builder setMyRank(int value) { + bitField0_ |= 0x00000002; + myRank_ = value; + onChanged(); + return this; + } + /** + * optional int32 myRank = 2; + * + *
+       *我的排名
+       * 
+ */ + public Builder clearMyRank() { + bitField0_ = (bitField0_ & ~0x00000002); + myRank_ = 0; + onChanged(); + return this; + } + + // optional int32 myScore = 3; + private int myScore_ ; + /** + * optional int32 myScore = 3; + * + *
+       *我的积分
+       * 
+ */ + public boolean hasMyScore() { + return ((bitField0_ & 0x00000004) == 0x00000004); + } + /** + * optional int32 myScore = 3; + * + *
+       *我的积分
+       * 
+ */ + public int getMyScore() { + return myScore_; + } + /** + * optional int32 myScore = 3; + * + *
+       *我的积分
+       * 
+ */ + public Builder setMyScore(int value) { + bitField0_ |= 0x00000004; + myScore_ = value; + onChanged(); + return this; + } + /** + * optional int32 myScore = 3; + * + *
+       *我的积分
+       * 
+ */ + public Builder clearMyScore() { + bitField0_ = (bitField0_ & ~0x00000004); + myScore_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.GetCarChallenegListResponse) + } + + static { + defaultInstance = new GetCarChallenegListResponse(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.GetCarChallenegListResponse) + } + + public interface FamilyFeteRequestOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 type = 1; + /** + * optional int32 type = 1; + * + *
+     *献祭类型
+     * 
+ */ + boolean hasType(); + /** + * optional int32 type = 1; + * + *
+     *献祭类型
+     * 
+ */ + int getType(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FamilyFeteRequest} + */ + public static final class FamilyFeteRequest extends + com.google.protobuf.GeneratedMessage + implements FamilyFeteRequestOrBuilder { + // Use FamilyFeteRequest.newBuilder() to construct. + private FamilyFeteRequest(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private FamilyFeteRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final FamilyFeteRequest defaultInstance; + public static FamilyFeteRequest getDefaultInstance() { + return defaultInstance; + } + + public FamilyFeteRequest getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private FamilyFeteRequest( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + type_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.FamilyFeteRequest.class, com.ljsd.jieling.protocols.Family.FamilyFeteRequest.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public FamilyFeteRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new FamilyFeteRequest(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 type = 1; + public static final int TYPE_FIELD_NUMBER = 1; + private int type_; + /** + * optional int32 type = 1; + * + *
+     *献祭类型
+     * 
+ */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 type = 1; + * + *
+     *献祭类型
+     * 
+ */ + public int getType() { + return type_; + } + + private void initFields() { + type_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, type_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, type_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.FamilyFeteRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRequest parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRequest parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRequest parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRequest parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRequest parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.FamilyFeteRequest prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FamilyFeteRequest} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.FamilyFeteRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.FamilyFeteRequest.class, com.ljsd.jieling.protocols.Family.FamilyFeteRequest.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.FamilyFeteRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + type_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteRequest_descriptor; + } + + public com.ljsd.jieling.protocols.Family.FamilyFeteRequest getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.FamilyFeteRequest.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.FamilyFeteRequest build() { + com.ljsd.jieling.protocols.Family.FamilyFeteRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.FamilyFeteRequest buildPartial() { + com.ljsd.jieling.protocols.Family.FamilyFeteRequest result = new com.ljsd.jieling.protocols.Family.FamilyFeteRequest(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.type_ = type_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.FamilyFeteRequest) { + return mergeFrom((com.ljsd.jieling.protocols.Family.FamilyFeteRequest)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.FamilyFeteRequest other) { + if (other == com.ljsd.jieling.protocols.Family.FamilyFeteRequest.getDefaultInstance()) return this; + if (other.hasType()) { + setType(other.getType()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.FamilyFeteRequest parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.FamilyFeteRequest) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 type = 1; + private int type_ ; + /** + * optional int32 type = 1; + * + *
+       *献祭类型
+       * 
+ */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 type = 1; + * + *
+       *献祭类型
+       * 
+ */ + public int getType() { + return type_; + } + /** + * optional int32 type = 1; + * + *
+       *献祭类型
+       * 
+ */ + public Builder setType(int value) { + bitField0_ |= 0x00000001; + type_ = value; + onChanged(); + return this; + } + /** + * optional int32 type = 1; + * + *
+       *献祭类型
+       * 
+ */ + public Builder clearType() { + bitField0_ = (bitField0_ & ~0x00000001); + type_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.FamilyFeteRequest) + } + + static { + defaultInstance = new FamilyFeteRequest(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.FamilyFeteRequest) + } + + public interface FamilyFeteResponseOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 curExp = 1; + /** + * optional int32 curExp = 1; + * + *
+     *经验
+     * 
+ */ + boolean hasCurExp(); + /** + * optional int32 curExp = 1; + * + *
+     *经验
+     * 
+ */ + int getCurExp(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FamilyFeteResponse} + */ + public static final class FamilyFeteResponse extends + com.google.protobuf.GeneratedMessage + implements FamilyFeteResponseOrBuilder { + // Use FamilyFeteResponse.newBuilder() to construct. + private FamilyFeteResponse(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private FamilyFeteResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final FamilyFeteResponse defaultInstance; + public static FamilyFeteResponse getDefaultInstance() { + return defaultInstance; + } + + public FamilyFeteResponse getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private FamilyFeteResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + curExp_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.FamilyFeteResponse.class, com.ljsd.jieling.protocols.Family.FamilyFeteResponse.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public FamilyFeteResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new FamilyFeteResponse(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 curExp = 1; + public static final int CUREXP_FIELD_NUMBER = 1; + private int curExp_; + /** + * optional int32 curExp = 1; + * + *
+     *经验
+     * 
+ */ + public boolean hasCurExp() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 curExp = 1; + * + *
+     *经验
+     * 
+ */ + public int getCurExp() { + return curExp_; + } + + private void initFields() { + curExp_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, curExp_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, curExp_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.FamilyFeteResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.FamilyFeteResponse prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FamilyFeteResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.FamilyFeteResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.FamilyFeteResponse.class, com.ljsd.jieling.protocols.Family.FamilyFeteResponse.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.FamilyFeteResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + curExp_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteResponse_descriptor; + } + + public com.ljsd.jieling.protocols.Family.FamilyFeteResponse getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.FamilyFeteResponse.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.FamilyFeteResponse build() { + com.ljsd.jieling.protocols.Family.FamilyFeteResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.FamilyFeteResponse buildPartial() { + com.ljsd.jieling.protocols.Family.FamilyFeteResponse result = new com.ljsd.jieling.protocols.Family.FamilyFeteResponse(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.curExp_ = curExp_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.FamilyFeteResponse) { + return mergeFrom((com.ljsd.jieling.protocols.Family.FamilyFeteResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.FamilyFeteResponse other) { + if (other == com.ljsd.jieling.protocols.Family.FamilyFeteResponse.getDefaultInstance()) return this; + if (other.hasCurExp()) { + setCurExp(other.getCurExp()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.FamilyFeteResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.FamilyFeteResponse) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 curExp = 1; + private int curExp_ ; + /** + * optional int32 curExp = 1; + * + *
+       *经验
+       * 
+ */ + public boolean hasCurExp() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 curExp = 1; + * + *
+       *经验
+       * 
+ */ + public int getCurExp() { + return curExp_; + } + /** + * optional int32 curExp = 1; + * + *
+       *经验
+       * 
+ */ + public Builder setCurExp(int value) { + bitField0_ |= 0x00000001; + curExp_ = value; + onChanged(); + return this; + } + /** + * optional int32 curExp = 1; + * + *
+       *经验
+       * 
+ */ + public Builder clearCurExp() { + bitField0_ = (bitField0_ & ~0x00000001); + curExp_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.FamilyFeteResponse) + } + + static { + defaultInstance = new FamilyFeteResponse(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.FamilyFeteResponse) + } + + public interface FamilyGetFeteRewardRequestOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 id = 1; + /** + * optional int32 id = 1; + * + *
+     *进度id
+     * 
+ */ + boolean hasId(); + /** + * optional int32 id = 1; + * + *
+     *进度id
+     * 
+ */ + int getId(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FamilyGetFeteRewardRequest} + */ + public static final class FamilyGetFeteRewardRequest extends + com.google.protobuf.GeneratedMessage + implements FamilyGetFeteRewardRequestOrBuilder { + // Use FamilyGetFeteRewardRequest.newBuilder() to construct. + private FamilyGetFeteRewardRequest(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private FamilyGetFeteRewardRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final FamilyGetFeteRewardRequest defaultInstance; + public static FamilyGetFeteRewardRequest getDefaultInstance() { + return defaultInstance; + } + + public FamilyGetFeteRewardRequest getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private FamilyGetFeteRewardRequest( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + id_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest.class, com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public FamilyGetFeteRewardRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new FamilyGetFeteRewardRequest(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 id = 1; + public static final int ID_FIELD_NUMBER = 1; + private int id_; + /** + * optional int32 id = 1; + * + *
+     *进度id
+     * 
+ */ + public boolean hasId() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 id = 1; + * + *
+     *进度id
+     * 
+ */ + public int getId() { + return id_; + } + + private void initFields() { + id_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, id_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, id_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FamilyGetFeteRewardRequest} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest.class, com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + id_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardRequest_descriptor; + } + + public com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest build() { + com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest buildPartial() { + com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest result = new com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.id_ = id_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest) { + return mergeFrom((com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest other) { + if (other == com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest.getDefaultInstance()) return this; + if (other.hasId()) { + setId(other.getId()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardRequest) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 id = 1; + private int id_ ; + /** + * optional int32 id = 1; + * + *
+       *进度id
+       * 
+ */ + public boolean hasId() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 id = 1; + * + *
+       *进度id
+       * 
+ */ + public int getId() { + return id_; + } + /** + * optional int32 id = 1; + * + *
+       *进度id
+       * 
+ */ + public Builder setId(int value) { + bitField0_ |= 0x00000001; + id_ = value; + onChanged(); + return this; + } + /** + * optional int32 id = 1; + * + *
+       *进度id
+       * 
+ */ + public Builder clearId() { + bitField0_ = (bitField0_ & ~0x00000001); + id_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.FamilyGetFeteRewardRequest) + } + + static { + defaultInstance = new FamilyGetFeteRewardRequest(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.FamilyGetFeteRewardRequest) + } + + public interface FamilyGetFeteRewardResponseOrBuilder + extends com.google.protobuf.MessageOrBuilder { + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FamilyGetFeteRewardResponse} + */ + public static final class FamilyGetFeteRewardResponse extends + com.google.protobuf.GeneratedMessage + implements FamilyGetFeteRewardResponseOrBuilder { + // Use FamilyGetFeteRewardResponse.newBuilder() to construct. + private FamilyGetFeteRewardResponse(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private FamilyGetFeteRewardResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final FamilyGetFeteRewardResponse defaultInstance; + public static FamilyGetFeteRewardResponse getDefaultInstance() { + return defaultInstance; + } + + public FamilyGetFeteRewardResponse getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private FamilyGetFeteRewardResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + 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.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse.class, com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public FamilyGetFeteRewardResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new FamilyGetFeteRewardResponse(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private void initFields() { + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FamilyGetFeteRewardResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse.class, com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardResponse_descriptor; + } + + public com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse build() { + com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse buildPartial() { + com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse result = new com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse(this); + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse) { + return mergeFrom((com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse other) { + if (other == com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse.getDefaultInstance()) return this; + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.FamilyGetFeteRewardResponse) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.FamilyGetFeteRewardResponse) + } + + static { + defaultInstance = new FamilyGetFeteRewardResponse(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.FamilyGetFeteRewardResponse) + } + + public interface FamilyFeteRewardProcessIndicationOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 score = 1; + /** + * optional int32 score = 1; + * + *
+     *公会祭祀进度
+     * 
+ */ + boolean hasScore(); + /** + * optional int32 score = 1; + * + *
+     *公会祭祀进度
+     * 
+ */ + int getScore(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FamilyFeteRewardProcessIndication} + */ + public static final class FamilyFeteRewardProcessIndication extends + com.google.protobuf.GeneratedMessage + implements FamilyFeteRewardProcessIndicationOrBuilder { + // Use FamilyFeteRewardProcessIndication.newBuilder() to construct. + private FamilyFeteRewardProcessIndication(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private FamilyFeteRewardProcessIndication(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final FamilyFeteRewardProcessIndication defaultInstance; + public static FamilyFeteRewardProcessIndication getDefaultInstance() { + return defaultInstance; + } + + public FamilyFeteRewardProcessIndication getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private FamilyFeteRewardProcessIndication( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + score_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteRewardProcessIndication_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteRewardProcessIndication_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication.class, com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public FamilyFeteRewardProcessIndication parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new FamilyFeteRewardProcessIndication(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 score = 1; + public static final int SCORE_FIELD_NUMBER = 1; + private int score_; + /** + * optional int32 score = 1; + * + *
+     *公会祭祀进度
+     * 
+ */ + public boolean hasScore() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 score = 1; + * + *
+     *公会祭祀进度
+     * 
+ */ + public int getScore() { + return score_; + } + + private void initFields() { + score_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, score_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, score_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FamilyFeteRewardProcessIndication} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndicationOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteRewardProcessIndication_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteRewardProcessIndication_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication.class, com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + score_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_FamilyFeteRewardProcessIndication_descriptor; + } + + public com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication build() { + com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication buildPartial() { + com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication result = new com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.score_ = score_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication) { + return mergeFrom((com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication other) { + if (other == com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication.getDefaultInstance()) return this; + if (other.hasScore()) { + setScore(other.getScore()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.FamilyFeteRewardProcessIndication) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 score = 1; + private int score_ ; + /** + * optional int32 score = 1; + * + *
+       *公会祭祀进度
+       * 
+ */ + public boolean hasScore() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 score = 1; + * + *
+       *公会祭祀进度
+       * 
+ */ + public int getScore() { + return score_; + } + /** + * optional int32 score = 1; + * + *
+       *公会祭祀进度
+       * 
+ */ + public Builder setScore(int value) { + bitField0_ |= 0x00000001; + score_ = value; + onChanged(); + return this; + } + /** + * optional int32 score = 1; + * + *
+       *公会祭祀进度
+       * 
+ */ + public Builder clearScore() { + bitField0_ = (bitField0_ & ~0x00000001); + score_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.FamilyFeteRewardProcessIndication) + } + + static { + defaultInstance = new FamilyFeteRewardProcessIndication(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.FamilyFeteRewardProcessIndication) + } + + public interface DeathPathInfoOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 pathId = 1; + /** + * optional int32 pathId = 1; + */ + boolean hasPathId(); + /** + * optional int32 pathId = 1; + */ + int getPathId(); + + // optional int32 guildId = 2; + /** + * optional int32 guildId = 2; + */ + boolean hasGuildId(); + /** + * optional int32 guildId = 2; + */ + int getGuildId(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.DeathPathInfo} + */ + public static final class DeathPathInfo extends + com.google.protobuf.GeneratedMessage + implements DeathPathInfoOrBuilder { + // Use DeathPathInfo.newBuilder() to construct. + private DeathPathInfo(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private DeathPathInfo(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final DeathPathInfo defaultInstance; + public static DeathPathInfo getDefaultInstance() { + return defaultInstance; + } + + public DeathPathInfo getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private DeathPathInfo( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + pathId_ = input.readInt32(); + break; + } + case 16: { + bitField0_ |= 0x00000002; + guildId_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_DeathPathInfo_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_DeathPathInfo_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.DeathPathInfo.class, com.ljsd.jieling.protocols.Family.DeathPathInfo.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public DeathPathInfo parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new DeathPathInfo(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 pathId = 1; + public static final int PATHID_FIELD_NUMBER = 1; + private int pathId_; + /** + * optional int32 pathId = 1; + */ + public boolean hasPathId() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 pathId = 1; + */ + public int getPathId() { + return pathId_; + } + + // optional int32 guildId = 2; + public static final int GUILDID_FIELD_NUMBER = 2; + private int guildId_; + /** + * optional int32 guildId = 2; + */ + public boolean hasGuildId() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 guildId = 2; + */ + public int getGuildId() { + return guildId_; + } + + private void initFields() { + pathId_ = 0; + guildId_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, pathId_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeInt32(2, guildId_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, pathId_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(2, guildId_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.DeathPathInfo parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.DeathPathInfo parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.DeathPathInfo parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.DeathPathInfo parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.DeathPathInfo parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.DeathPathInfo parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.DeathPathInfo parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.DeathPathInfo parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.DeathPathInfo parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.DeathPathInfo parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.DeathPathInfo prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.DeathPathInfo} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.DeathPathInfoOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_DeathPathInfo_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_DeathPathInfo_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.DeathPathInfo.class, com.ljsd.jieling.protocols.Family.DeathPathInfo.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.DeathPathInfo.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + pathId_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + guildId_ = 0; + bitField0_ = (bitField0_ & ~0x00000002); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_DeathPathInfo_descriptor; + } + + public com.ljsd.jieling.protocols.Family.DeathPathInfo getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.DeathPathInfo.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.DeathPathInfo build() { + com.ljsd.jieling.protocols.Family.DeathPathInfo result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.DeathPathInfo buildPartial() { + com.ljsd.jieling.protocols.Family.DeathPathInfo result = new com.ljsd.jieling.protocols.Family.DeathPathInfo(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.pathId_ = pathId_; + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000002; + } + result.guildId_ = guildId_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.DeathPathInfo) { + return mergeFrom((com.ljsd.jieling.protocols.Family.DeathPathInfo)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.DeathPathInfo other) { + if (other == com.ljsd.jieling.protocols.Family.DeathPathInfo.getDefaultInstance()) return this; + if (other.hasPathId()) { + setPathId(other.getPathId()); + } + if (other.hasGuildId()) { + setGuildId(other.getGuildId()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.DeathPathInfo parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.DeathPathInfo) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 pathId = 1; + private int pathId_ ; + /** + * optional int32 pathId = 1; + */ + public boolean hasPathId() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 pathId = 1; + */ + public int getPathId() { + return pathId_; + } + /** + * optional int32 pathId = 1; + */ + public Builder setPathId(int value) { + bitField0_ |= 0x00000001; + pathId_ = value; + onChanged(); + return this; + } + /** + * optional int32 pathId = 1; + */ + public Builder clearPathId() { + bitField0_ = (bitField0_ & ~0x00000001); + pathId_ = 0; + onChanged(); + return this; + } + + // optional int32 guildId = 2; + private int guildId_ ; + /** + * optional int32 guildId = 2; + */ + public boolean hasGuildId() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 guildId = 2; + */ + public int getGuildId() { + return guildId_; + } + /** + * optional int32 guildId = 2; + */ + public Builder setGuildId(int value) { + bitField0_ |= 0x00000002; + guildId_ = value; + onChanged(); + return this; + } + /** + * optional int32 guildId = 2; + */ + public Builder clearGuildId() { + bitField0_ = (bitField0_ & ~0x00000002); + guildId_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.DeathPathInfo) + } + + static { + defaultInstance = new DeathPathInfo(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.DeathPathInfo) + } + + public interface GetDeathPathStatusResponseOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 status = 1; + /** + * optional int32 status = 1; + * + *
+     *0未开启;1开启
+     * 
+ */ + boolean hasStatus(); + /** + * optional int32 status = 1; + * + *
+     *0未开启;1开启
+     * 
+ */ + int getStatus(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GetDeathPathStatusResponse} + */ + public static final class GetDeathPathStatusResponse extends + com.google.protobuf.GeneratedMessage + implements GetDeathPathStatusResponseOrBuilder { + // Use GetDeathPathStatusResponse.newBuilder() to construct. + private GetDeathPathStatusResponse(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private GetDeathPathStatusResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final GetDeathPathStatusResponse defaultInstance; + public static GetDeathPathStatusResponse getDefaultInstance() { + return defaultInstance; + } + + public GetDeathPathStatusResponse getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private GetDeathPathStatusResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + status_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetDeathPathStatusResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetDeathPathStatusResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse.class, com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public GetDeathPathStatusResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new GetDeathPathStatusResponse(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 status = 1; + public static final int STATUS_FIELD_NUMBER = 1; + private int status_; + /** + * optional int32 status = 1; + * + *
+     *0未开启;1开启
+     * 
+ */ + public boolean hasStatus() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 status = 1; + * + *
+     *0未开启;1开启
+     * 
+ */ + public int getStatus() { + return status_; + } + + private void initFields() { + status_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, status_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, status_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GetDeathPathStatusResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetDeathPathStatusResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetDeathPathStatusResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse.class, com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + status_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetDeathPathStatusResponse_descriptor; + } + + public com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse build() { + com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse buildPartial() { + com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse result = new com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.status_ = status_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse) { + return mergeFrom((com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse other) { + if (other == com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse.getDefaultInstance()) return this; + if (other.hasStatus()) { + setStatus(other.getStatus()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.GetDeathPathStatusResponse) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 status = 1; + private int status_ ; + /** + * optional int32 status = 1; + * + *
+       *0未开启;1开启
+       * 
+ */ + public boolean hasStatus() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 status = 1; + * + *
+       *0未开启;1开启
+       * 
+ */ + public int getStatus() { + return status_; + } + /** + * optional int32 status = 1; + * + *
+       *0未开启;1开启
+       * 
+ */ + public Builder setStatus(int value) { + bitField0_ |= 0x00000001; + status_ = value; + onChanged(); + return this; + } + /** + * optional int32 status = 1; + * + *
+       *0未开启;1开启
+       * 
+ */ + public Builder clearStatus() { + bitField0_ = (bitField0_ & ~0x00000001); + status_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.GetDeathPathStatusResponse) + } + + static { + defaultInstance = new GetDeathPathStatusResponse(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.GetDeathPathStatusResponse) + } + + public interface GetDeathPathInfoResponseOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 overTime = 1; + /** + * optional int32 overTime = 1; + * + *
+     *剩余时间
+     * 
+ */ + boolean hasOverTime(); + /** + * optional int32 overTime = 1; + * + *
+     *剩余时间
+     * 
+ */ + int getOverTime(); + + // optional int32 challengeCount = 2; + /** + * optional int32 challengeCount = 2; + * + *
+     *已挑战次数
+     * 
+ */ + boolean hasChallengeCount(); + /** + * optional int32 challengeCount = 2; + * + *
+     *已挑战次数
+     * 
+ */ + int getChallengeCount(); + + // repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + java.util.List + getInfosList(); + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + com.ljsd.jieling.protocols.Family.DeathPathInfo getInfos(int index); + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + int getInfosCount(); + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + java.util.List + getInfosOrBuilderList(); + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + com.ljsd.jieling.protocols.Family.DeathPathInfoOrBuilder getInfosOrBuilder( + int index); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GetDeathPathInfoResponse} + */ + public static final class GetDeathPathInfoResponse extends + com.google.protobuf.GeneratedMessage + implements GetDeathPathInfoResponseOrBuilder { + // Use GetDeathPathInfoResponse.newBuilder() to construct. + private GetDeathPathInfoResponse(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private GetDeathPathInfoResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final GetDeathPathInfoResponse defaultInstance; + public static GetDeathPathInfoResponse getDefaultInstance() { + return defaultInstance; + } + + public GetDeathPathInfoResponse getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private GetDeathPathInfoResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + overTime_ = input.readInt32(); + break; + } + case 16: { + bitField0_ |= 0x00000002; + challengeCount_ = input.readInt32(); + break; + } + case 26: { + if (!((mutable_bitField0_ & 0x00000004) == 0x00000004)) { + infos_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000004; + } + infos_.add(input.readMessage(com.ljsd.jieling.protocols.Family.DeathPathInfo.PARSER, extensionRegistry)); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000004) == 0x00000004)) { + infos_ = java.util.Collections.unmodifiableList(infos_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetDeathPathInfoResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetDeathPathInfoResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse.class, com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public GetDeathPathInfoResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new GetDeathPathInfoResponse(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 overTime = 1; + public static final int OVERTIME_FIELD_NUMBER = 1; + private int overTime_; + /** + * optional int32 overTime = 1; + * + *
+     *剩余时间
+     * 
+ */ + public boolean hasOverTime() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 overTime = 1; + * + *
+     *剩余时间
+     * 
+ */ + public int getOverTime() { + return overTime_; + } + + // optional int32 challengeCount = 2; + public static final int CHALLENGECOUNT_FIELD_NUMBER = 2; + private int challengeCount_; + /** + * optional int32 challengeCount = 2; + * + *
+     *已挑战次数
+     * 
+ */ + public boolean hasChallengeCount() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 challengeCount = 2; + * + *
+     *已挑战次数
+     * 
+ */ + public int getChallengeCount() { + return challengeCount_; + } + + // repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + public static final int INFOS_FIELD_NUMBER = 3; + private java.util.List infos_; + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public java.util.List getInfosList() { + return infos_; + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public java.util.List + getInfosOrBuilderList() { + return infos_; + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public int getInfosCount() { + return infos_.size(); + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public com.ljsd.jieling.protocols.Family.DeathPathInfo getInfos(int index) { + return infos_.get(index); + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public com.ljsd.jieling.protocols.Family.DeathPathInfoOrBuilder getInfosOrBuilder( + int index) { + return infos_.get(index); + } + + private void initFields() { + overTime_ = 0; + challengeCount_ = 0; + infos_ = java.util.Collections.emptyList(); + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, overTime_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeInt32(2, challengeCount_); + } + for (int i = 0; i < infos_.size(); i++) { + output.writeMessage(3, infos_.get(i)); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, overTime_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(2, challengeCount_); + } + for (int i = 0; i < infos_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, infos_.get(i)); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.GetDeathPathInfoResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetDeathPathInfoResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetDeathPathInfoResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse.class, com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + getInfosFieldBuilder(); + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + overTime_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + challengeCount_ = 0; + bitField0_ = (bitField0_ & ~0x00000002); + if (infosBuilder_ == null) { + infos_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000004); + } else { + infosBuilder_.clear(); + } + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_GetDeathPathInfoResponse_descriptor; + } + + public com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse build() { + com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse buildPartial() { + com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse result = new com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.overTime_ = overTime_; + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000002; + } + result.challengeCount_ = challengeCount_; + if (infosBuilder_ == null) { + if (((bitField0_ & 0x00000004) == 0x00000004)) { + infos_ = java.util.Collections.unmodifiableList(infos_); + bitField0_ = (bitField0_ & ~0x00000004); + } + result.infos_ = infos_; + } else { + result.infos_ = infosBuilder_.build(); + } + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse) { + return mergeFrom((com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse other) { + if (other == com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse.getDefaultInstance()) return this; + if (other.hasOverTime()) { + setOverTime(other.getOverTime()); + } + if (other.hasChallengeCount()) { + setChallengeCount(other.getChallengeCount()); + } + if (infosBuilder_ == null) { + if (!other.infos_.isEmpty()) { + if (infos_.isEmpty()) { + infos_ = other.infos_; + bitField0_ = (bitField0_ & ~0x00000004); + } else { + ensureInfosIsMutable(); + infos_.addAll(other.infos_); + } + onChanged(); + } + } else { + if (!other.infos_.isEmpty()) { + if (infosBuilder_.isEmpty()) { + infosBuilder_.dispose(); + infosBuilder_ = null; + infos_ = other.infos_; + bitField0_ = (bitField0_ & ~0x00000004); + infosBuilder_ = + com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? + getInfosFieldBuilder() : null; + } else { + infosBuilder_.addAllMessages(other.infos_); + } + } + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.GetDeathPathInfoResponse) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 overTime = 1; + private int overTime_ ; + /** + * optional int32 overTime = 1; + * + *
+       *剩余时间
+       * 
+ */ + public boolean hasOverTime() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 overTime = 1; + * + *
+       *剩余时间
+       * 
+ */ + public int getOverTime() { + return overTime_; + } + /** + * optional int32 overTime = 1; + * + *
+       *剩余时间
+       * 
+ */ + public Builder setOverTime(int value) { + bitField0_ |= 0x00000001; + overTime_ = value; + onChanged(); + return this; + } + /** + * optional int32 overTime = 1; + * + *
+       *剩余时间
+       * 
+ */ + public Builder clearOverTime() { + bitField0_ = (bitField0_ & ~0x00000001); + overTime_ = 0; + onChanged(); + return this; + } + + // optional int32 challengeCount = 2; + private int challengeCount_ ; + /** + * optional int32 challengeCount = 2; + * + *
+       *已挑战次数
+       * 
+ */ + public boolean hasChallengeCount() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 challengeCount = 2; + * + *
+       *已挑战次数
+       * 
+ */ + public int getChallengeCount() { + return challengeCount_; + } + /** + * optional int32 challengeCount = 2; + * + *
+       *已挑战次数
+       * 
+ */ + public Builder setChallengeCount(int value) { + bitField0_ |= 0x00000002; + challengeCount_ = value; + onChanged(); + return this; + } + /** + * optional int32 challengeCount = 2; + * + *
+       *已挑战次数
+       * 
+ */ + public Builder clearChallengeCount() { + bitField0_ = (bitField0_ & ~0x00000002); + challengeCount_ = 0; + onChanged(); + return this; + } + + // repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + private java.util.List infos_ = + java.util.Collections.emptyList(); + private void ensureInfosIsMutable() { + if (!((bitField0_ & 0x00000004) == 0x00000004)) { + infos_ = new java.util.ArrayList(infos_); + bitField0_ |= 0x00000004; + } + } + + private com.google.protobuf.RepeatedFieldBuilder< + com.ljsd.jieling.protocols.Family.DeathPathInfo, com.ljsd.jieling.protocols.Family.DeathPathInfo.Builder, com.ljsd.jieling.protocols.Family.DeathPathInfoOrBuilder> infosBuilder_; + + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public java.util.List getInfosList() { + if (infosBuilder_ == null) { + return java.util.Collections.unmodifiableList(infos_); + } else { + return infosBuilder_.getMessageList(); + } + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public int getInfosCount() { + if (infosBuilder_ == null) { + return infos_.size(); + } else { + return infosBuilder_.getCount(); + } + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public com.ljsd.jieling.protocols.Family.DeathPathInfo getInfos(int index) { + if (infosBuilder_ == null) { + return infos_.get(index); + } else { + return infosBuilder_.getMessage(index); + } + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public Builder setInfos( + int index, com.ljsd.jieling.protocols.Family.DeathPathInfo value) { + if (infosBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureInfosIsMutable(); + infos_.set(index, value); + onChanged(); + } else { + infosBuilder_.setMessage(index, value); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public Builder setInfos( + int index, com.ljsd.jieling.protocols.Family.DeathPathInfo.Builder builderForValue) { + if (infosBuilder_ == null) { + ensureInfosIsMutable(); + infos_.set(index, builderForValue.build()); + onChanged(); + } else { + infosBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public Builder addInfos(com.ljsd.jieling.protocols.Family.DeathPathInfo value) { + if (infosBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureInfosIsMutable(); + infos_.add(value); + onChanged(); + } else { + infosBuilder_.addMessage(value); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public Builder addInfos( + int index, com.ljsd.jieling.protocols.Family.DeathPathInfo value) { + if (infosBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureInfosIsMutable(); + infos_.add(index, value); + onChanged(); + } else { + infosBuilder_.addMessage(index, value); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public Builder addInfos( + com.ljsd.jieling.protocols.Family.DeathPathInfo.Builder builderForValue) { + if (infosBuilder_ == null) { + ensureInfosIsMutable(); + infos_.add(builderForValue.build()); + onChanged(); + } else { + infosBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public Builder addInfos( + int index, com.ljsd.jieling.protocols.Family.DeathPathInfo.Builder builderForValue) { + if (infosBuilder_ == null) { + ensureInfosIsMutable(); + infos_.add(index, builderForValue.build()); + onChanged(); + } else { + infosBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public Builder addAllInfos( + java.lang.Iterable values) { + if (infosBuilder_ == null) { + ensureInfosIsMutable(); + super.addAll(values, infos_); + onChanged(); + } else { + infosBuilder_.addAllMessages(values); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public Builder clearInfos() { + if (infosBuilder_ == null) { + infos_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + } else { + infosBuilder_.clear(); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public Builder removeInfos(int index) { + if (infosBuilder_ == null) { + ensureInfosIsMutable(); + infos_.remove(index); + onChanged(); + } else { + infosBuilder_.remove(index); + } + return this; + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public com.ljsd.jieling.protocols.Family.DeathPathInfo.Builder getInfosBuilder( + int index) { + return getInfosFieldBuilder().getBuilder(index); + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public com.ljsd.jieling.protocols.Family.DeathPathInfoOrBuilder getInfosOrBuilder( + int index) { + if (infosBuilder_ == null) { + return infos_.get(index); } else { + return infosBuilder_.getMessageOrBuilder(index); + } + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public java.util.List + getInfosOrBuilderList() { + if (infosBuilder_ != null) { + return infosBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(infos_); + } + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public com.ljsd.jieling.protocols.Family.DeathPathInfo.Builder addInfosBuilder() { + return getInfosFieldBuilder().addBuilder( + com.ljsd.jieling.protocols.Family.DeathPathInfo.getDefaultInstance()); + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public com.ljsd.jieling.protocols.Family.DeathPathInfo.Builder addInfosBuilder( + int index) { + return getInfosFieldBuilder().addBuilder( + index, com.ljsd.jieling.protocols.Family.DeathPathInfo.getDefaultInstance()); + } + /** + * repeated .com.ljsd.jieling.protocols.DeathPathInfo infos = 3; + */ + public java.util.List + getInfosBuilderList() { + return getInfosFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilder< + com.ljsd.jieling.protocols.Family.DeathPathInfo, com.ljsd.jieling.protocols.Family.DeathPathInfo.Builder, com.ljsd.jieling.protocols.Family.DeathPathInfoOrBuilder> + getInfosFieldBuilder() { + if (infosBuilder_ == null) { + infosBuilder_ = new com.google.protobuf.RepeatedFieldBuilder< + com.ljsd.jieling.protocols.Family.DeathPathInfo, com.ljsd.jieling.protocols.Family.DeathPathInfo.Builder, com.ljsd.jieling.protocols.Family.DeathPathInfoOrBuilder>( + infos_, + ((bitField0_ & 0x00000004) == 0x00000004), + getParentForChildren(), + isClean()); + infos_ = null; + } + return infosBuilder_; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.GetDeathPathInfoResponse) + } + + static { + defaultInstance = new GetDeathPathInfoResponse(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.GetDeathPathInfoResponse) + } + + public interface ChallengeDeathPathRequestOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 pathId = 1; + /** + * optional int32 pathId = 1; + */ + boolean hasPathId(); + /** + * optional int32 pathId = 1; + */ + int getPathId(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.ChallengeDeathPathRequest} + */ + public static final class ChallengeDeathPathRequest extends + com.google.protobuf.GeneratedMessage + implements ChallengeDeathPathRequestOrBuilder { + // Use ChallengeDeathPathRequest.newBuilder() to construct. + private ChallengeDeathPathRequest(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private ChallengeDeathPathRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final ChallengeDeathPathRequest defaultInstance; + public static ChallengeDeathPathRequest getDefaultInstance() { + return defaultInstance; + } + + public ChallengeDeathPathRequest getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private ChallengeDeathPathRequest( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + pathId_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest.class, com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public ChallengeDeathPathRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new ChallengeDeathPathRequest(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 pathId = 1; + public static final int PATHID_FIELD_NUMBER = 1; + private int pathId_; + /** + * optional int32 pathId = 1; + */ + public boolean hasPathId() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 pathId = 1; + */ + public int getPathId() { + return pathId_; + } + + private void initFields() { + pathId_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, pathId_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, pathId_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.ChallengeDeathPathRequest} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest.class, com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + pathId_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathRequest_descriptor; + } + + public com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest build() { + com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest buildPartial() { + com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest result = new com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.pathId_ = pathId_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest) { + return mergeFrom((com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest other) { + if (other == com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest.getDefaultInstance()) return this; + if (other.hasPathId()) { + setPathId(other.getPathId()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.ChallengeDeathPathRequest) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 pathId = 1; + private int pathId_ ; + /** + * optional int32 pathId = 1; + */ + public boolean hasPathId() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 pathId = 1; + */ + public int getPathId() { + return pathId_; + } + /** + * optional int32 pathId = 1; + */ + public Builder setPathId(int value) { + bitField0_ |= 0x00000001; + pathId_ = value; + onChanged(); + return this; + } + /** + * optional int32 pathId = 1; + */ + public Builder clearPathId() { + bitField0_ = (bitField0_ & ~0x00000001); + pathId_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.ChallengeDeathPathRequest) + } + + static { + defaultInstance = new ChallengeDeathPathRequest(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.ChallengeDeathPathRequest) + } + + public interface ChallengeDeathPathResponseOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional .com.ljsd.jieling.protocols.FightData fightData = 1; + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + boolean hasFightData(); + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + com.ljsd.jieling.protocols.CommonProto.FightData getFightData(); + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + com.ljsd.jieling.protocols.CommonProto.FightDataOrBuilder getFightDataOrBuilder(); + + // optional int32 damage = 2; + /** + * optional int32 damage = 2; + */ + boolean hasDamage(); + /** + * optional int32 damage = 2; + */ + int getDamage(); + + // optional .com.ljsd.jieling.protocols.Drop drop = 3; + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + boolean hasDrop(); + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + com.ljsd.jieling.protocols.CommonProto.Drop getDrop(); + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + com.ljsd.jieling.protocols.CommonProto.DropOrBuilder getDropOrBuilder(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.ChallengeDeathPathResponse} + */ + public static final class ChallengeDeathPathResponse extends + com.google.protobuf.GeneratedMessage + implements ChallengeDeathPathResponseOrBuilder { + // Use ChallengeDeathPathResponse.newBuilder() to construct. + private ChallengeDeathPathResponse(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private ChallengeDeathPathResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final ChallengeDeathPathResponse defaultInstance; + public static ChallengeDeathPathResponse getDefaultInstance() { + return defaultInstance; + } + + public ChallengeDeathPathResponse getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private ChallengeDeathPathResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: { + com.ljsd.jieling.protocols.CommonProto.FightData.Builder subBuilder = null; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + subBuilder = fightData_.toBuilder(); + } + fightData_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.FightData.PARSER, extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(fightData_); + fightData_ = subBuilder.buildPartial(); + } + bitField0_ |= 0x00000001; + break; + } + case 16: { + bitField0_ |= 0x00000002; + damage_ = input.readInt32(); + break; + } + case 26: { + com.ljsd.jieling.protocols.CommonProto.Drop.Builder subBuilder = null; + if (((bitField0_ & 0x00000004) == 0x00000004)) { + subBuilder = drop_.toBuilder(); + } + drop_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.Drop.PARSER, extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(drop_); + drop_ = subBuilder.buildPartial(); + } + bitField0_ |= 0x00000004; + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse.class, com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public ChallengeDeathPathResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new ChallengeDeathPathResponse(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional .com.ljsd.jieling.protocols.FightData fightData = 1; + public static final int FIGHTDATA_FIELD_NUMBER = 1; + private com.ljsd.jieling.protocols.CommonProto.FightData fightData_; + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + public boolean hasFightData() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.FightData getFightData() { + return fightData_; + } + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.FightDataOrBuilder getFightDataOrBuilder() { + return fightData_; + } + + // optional int32 damage = 2; + public static final int DAMAGE_FIELD_NUMBER = 2; + private int damage_; + /** + * optional int32 damage = 2; + */ + public boolean hasDamage() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 damage = 2; + */ + public int getDamage() { + return damage_; + } + + // optional .com.ljsd.jieling.protocols.Drop drop = 3; + public static final int DROP_FIELD_NUMBER = 3; + private com.ljsd.jieling.protocols.CommonProto.Drop drop_; + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + public boolean hasDrop() { + return ((bitField0_ & 0x00000004) == 0x00000004); + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + public com.ljsd.jieling.protocols.CommonProto.Drop getDrop() { + return drop_; + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + public com.ljsd.jieling.protocols.CommonProto.DropOrBuilder getDropOrBuilder() { + return drop_; + } + + private void initFields() { + fightData_ = com.ljsd.jieling.protocols.CommonProto.FightData.getDefaultInstance(); + damage_ = 0; + drop_ = com.ljsd.jieling.protocols.CommonProto.Drop.getDefaultInstance(); + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeMessage(1, fightData_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeInt32(2, damage_); + } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + output.writeMessage(3, drop_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, fightData_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(2, damage_); + } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, drop_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.ChallengeDeathPathResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse.class, com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + getFightDataFieldBuilder(); + getDropFieldBuilder(); + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + if (fightDataBuilder_ == null) { + fightData_ = com.ljsd.jieling.protocols.CommonProto.FightData.getDefaultInstance(); + } else { + fightDataBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + damage_ = 0; + bitField0_ = (bitField0_ & ~0x00000002); + if (dropBuilder_ == null) { + drop_ = com.ljsd.jieling.protocols.CommonProto.Drop.getDefaultInstance(); + } else { + dropBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000004); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathResponse_descriptor; + } + + public com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse build() { + com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse buildPartial() { + com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse result = new com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + if (fightDataBuilder_ == null) { + result.fightData_ = fightData_; + } else { + result.fightData_ = fightDataBuilder_.build(); + } + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000002; + } + result.damage_ = damage_; + if (((from_bitField0_ & 0x00000004) == 0x00000004)) { + to_bitField0_ |= 0x00000004; + } + if (dropBuilder_ == null) { + result.drop_ = drop_; + } else { + result.drop_ = dropBuilder_.build(); + } + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse) { + return mergeFrom((com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse other) { + if (other == com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse.getDefaultInstance()) return this; + if (other.hasFightData()) { + mergeFightData(other.getFightData()); + } + if (other.hasDamage()) { + setDamage(other.getDamage()); + } + if (other.hasDrop()) { + mergeDrop(other.getDrop()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.Family.ChallengeDeathPathResponse) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional .com.ljsd.jieling.protocols.FightData fightData = 1; + private com.ljsd.jieling.protocols.CommonProto.FightData fightData_ = com.ljsd.jieling.protocols.CommonProto.FightData.getDefaultInstance(); + private com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.FightData, com.ljsd.jieling.protocols.CommonProto.FightData.Builder, com.ljsd.jieling.protocols.CommonProto.FightDataOrBuilder> fightDataBuilder_; + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + public boolean hasFightData() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.FightData getFightData() { + if (fightDataBuilder_ == null) { + return fightData_; + } else { + return fightDataBuilder_.getMessage(); + } + } + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + public Builder setFightData(com.ljsd.jieling.protocols.CommonProto.FightData value) { + if (fightDataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + fightData_ = value; + onChanged(); + } else { + fightDataBuilder_.setMessage(value); + } + bitField0_ |= 0x00000001; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + public Builder setFightData( + com.ljsd.jieling.protocols.CommonProto.FightData.Builder builderForValue) { + if (fightDataBuilder_ == null) { + fightData_ = builderForValue.build(); + onChanged(); + } else { + fightDataBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000001; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + public Builder mergeFightData(com.ljsd.jieling.protocols.CommonProto.FightData value) { + if (fightDataBuilder_ == null) { + if (((bitField0_ & 0x00000001) == 0x00000001) && + fightData_ != com.ljsd.jieling.protocols.CommonProto.FightData.getDefaultInstance()) { + fightData_ = + com.ljsd.jieling.protocols.CommonProto.FightData.newBuilder(fightData_).mergeFrom(value).buildPartial(); + } else { + fightData_ = value; + } + onChanged(); + } else { + fightDataBuilder_.mergeFrom(value); + } + bitField0_ |= 0x00000001; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + public Builder clearFightData() { + if (fightDataBuilder_ == null) { + fightData_ = com.ljsd.jieling.protocols.CommonProto.FightData.getDefaultInstance(); + onChanged(); + } else { + fightDataBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.FightData.Builder getFightDataBuilder() { + bitField0_ |= 0x00000001; + onChanged(); + return getFightDataFieldBuilder().getBuilder(); + } + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + public com.ljsd.jieling.protocols.CommonProto.FightDataOrBuilder getFightDataOrBuilder() { + if (fightDataBuilder_ != null) { + return fightDataBuilder_.getMessageOrBuilder(); + } else { + return fightData_; + } + } + /** + * optional .com.ljsd.jieling.protocols.FightData fightData = 1; + */ + private com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.FightData, com.ljsd.jieling.protocols.CommonProto.FightData.Builder, com.ljsd.jieling.protocols.CommonProto.FightDataOrBuilder> + getFightDataFieldBuilder() { + if (fightDataBuilder_ == null) { + fightDataBuilder_ = new com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.FightData, com.ljsd.jieling.protocols.CommonProto.FightData.Builder, com.ljsd.jieling.protocols.CommonProto.FightDataOrBuilder>( + fightData_, + getParentForChildren(), + isClean()); + fightData_ = null; + } + return fightDataBuilder_; + } + + // optional int32 damage = 2; + private int damage_ ; + /** + * optional int32 damage = 2; + */ + public boolean hasDamage() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 damage = 2; + */ + public int getDamage() { + return damage_; + } + /** + * optional int32 damage = 2; + */ + public Builder setDamage(int value) { + bitField0_ |= 0x00000002; + damage_ = value; + onChanged(); + return this; + } + /** + * optional int32 damage = 2; + */ + public Builder clearDamage() { + bitField0_ = (bitField0_ & ~0x00000002); + damage_ = 0; + onChanged(); + return this; + } + + // optional .com.ljsd.jieling.protocols.Drop drop = 3; + private com.ljsd.jieling.protocols.CommonProto.Drop drop_ = com.ljsd.jieling.protocols.CommonProto.Drop.getDefaultInstance(); + private com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.Drop, com.ljsd.jieling.protocols.CommonProto.Drop.Builder, com.ljsd.jieling.protocols.CommonProto.DropOrBuilder> dropBuilder_; + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + public boolean hasDrop() { + return ((bitField0_ & 0x00000004) == 0x00000004); + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + public com.ljsd.jieling.protocols.CommonProto.Drop getDrop() { + if (dropBuilder_ == null) { + return drop_; + } else { + return dropBuilder_.getMessage(); + } + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + public Builder setDrop(com.ljsd.jieling.protocols.CommonProto.Drop value) { + if (dropBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + drop_ = value; + onChanged(); + } else { + dropBuilder_.setMessage(value); + } + bitField0_ |= 0x00000004; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + public Builder setDrop( + com.ljsd.jieling.protocols.CommonProto.Drop.Builder builderForValue) { + if (dropBuilder_ == null) { + drop_ = builderForValue.build(); + onChanged(); + } else { + dropBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000004; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + public Builder mergeDrop(com.ljsd.jieling.protocols.CommonProto.Drop value) { + if (dropBuilder_ == null) { + if (((bitField0_ & 0x00000004) == 0x00000004) && + drop_ != com.ljsd.jieling.protocols.CommonProto.Drop.getDefaultInstance()) { + drop_ = + com.ljsd.jieling.protocols.CommonProto.Drop.newBuilder(drop_).mergeFrom(value).buildPartial(); + } else { + drop_ = value; + } + onChanged(); + } else { + dropBuilder_.mergeFrom(value); + } + bitField0_ |= 0x00000004; + return this; + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + public Builder clearDrop() { + if (dropBuilder_ == null) { + drop_ = com.ljsd.jieling.protocols.CommonProto.Drop.getDefaultInstance(); + onChanged(); + } else { + dropBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000004); + return this; + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + public com.ljsd.jieling.protocols.CommonProto.Drop.Builder getDropBuilder() { + bitField0_ |= 0x00000004; + onChanged(); + return getDropFieldBuilder().getBuilder(); + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + public com.ljsd.jieling.protocols.CommonProto.DropOrBuilder getDropOrBuilder() { + if (dropBuilder_ != null) { + return dropBuilder_.getMessageOrBuilder(); + } else { + return drop_; + } + } + /** + * optional .com.ljsd.jieling.protocols.Drop drop = 3; + */ + private com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.Drop, com.ljsd.jieling.protocols.CommonProto.Drop.Builder, com.ljsd.jieling.protocols.CommonProto.DropOrBuilder> + getDropFieldBuilder() { + if (dropBuilder_ == null) { + dropBuilder_ = new com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.Drop, com.ljsd.jieling.protocols.CommonProto.Drop.Builder, com.ljsd.jieling.protocols.CommonProto.DropOrBuilder>( + drop_, + getParentForChildren(), + isClean()); + drop_ = null; + } + return dropBuilder_; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.ChallengeDeathPathResponse) + } + + static { + defaultInstance = new ChallengeDeathPathResponse(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.ChallengeDeathPathResponse) + } + private static com.google.protobuf.Descriptors.Descriptor internal_static_com_ljsd_jieling_protocols_FamilyUserInfo_descriptor; private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_com_ljsd_jieling_protocols_FamilyUserInfo_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_CarDelayProgressIndication_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_CarDelayProgressIndication_fieldAccessorTable; private static com.google.protobuf.Descriptors.Descriptor internal_static_com_ljsd_jieling_protocols_FamilyLogInfo_descriptor; private static @@ -40973,6 +50927,86 @@ public final class Family { private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_com_ljsd_jieling_protocols_GetAllSendLikeResponse_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_GuildSkill_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_GuildSkill_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_GetAllGuildSkillResponse_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_GetAllGuildSkillResponse_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_GuildSkillLevelUpRequest_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_GuildSkillLevelUpRequest_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_ResetGuildSkillRequest_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_ResetGuildSkillRequest_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_ResetGuildSkillResponse_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_ResetGuildSkillResponse_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_GetCarChallenegListResponse_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_GetCarChallenegListResponse_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_FamilyFeteRequest_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_FamilyFeteRequest_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_FamilyFeteResponse_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_FamilyFeteResponse_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardRequest_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardRequest_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardResponse_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardResponse_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_FamilyFeteRewardProcessIndication_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_FamilyFeteRewardProcessIndication_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_DeathPathInfo_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_DeathPathInfo_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_GetDeathPathStatusResponse_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_GetDeathPathStatusResponse_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_GetDeathPathInfoResponse_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_GetDeathPathInfoResponse_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathRequest_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathRequest_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathResponse_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathResponse_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { @@ -40983,138 +51017,171 @@ public final class Family { static { java.lang.String[] descriptorData = { "\n\014Family.proto\022\032com.ljsd.jieling.protoco" + - "ls\032\021CommonProto.proto\"\355\001\n\016FamilyUserInfo" + + "ls\032\021CommonProto.proto\"\264\002\n\016FamilyUserInfo" + "\022\017\n\007roleUid\030\001 \002(\005\022\020\n\010userName\030\002 \002(\t\022\021\n\tu" + "serLevel\030\003 \002(\005\022\020\n\010position\030\004 \002(\005\022\022\n\ncont" + "ribute\030\005 \002(\005\022\017\n\007seconds\030\006 \001(\005\022\027\n\017contrib" + "uteToday\030\007 \001(\005\022\021\n\tsoulForce\030\010 \001(\005\022\014\n\004hea" + "d\030\t \001(\005\022\r\n\005frame\030\n \001(\005\022\023\n\013maxBossHurt\030\013 " + - "\001(\005\022\020\n\010lastHurt\030\014 \001(\005\"9\n\rFamilyLogInfo\022\014" + - "\n\004name\030\001 \001(\t\022\014\n\004info\030\002 \001(\t\022\014\n\004time\030\003 \001(\005" + - "\"_\n\024FamilyWalkIndicaiton\022\014\n\004path\030\001 \003(\005\022\016", - "\n\006curPos\030\002 \001(\005\022\013\n\003uid\030\003 \001(\005\022\014\n\004name\030\004 \001(" + - "\t\022\016\n\006gender\030\005 \001(\005\"\210\001\n\013FamilyApply\022\014\n\004nam" + - "e\030\001 \001(\t\022\017\n\007roleUid\030\002 \001(\005\022\014\n\004time\030\003 \001(\005\022\r" + - "\n\005frame\030\004 \001(\005\022\017\n\007outTime\030\005 \001(\005\022\r\n\005level\030" + - "\006 \001(\005\022\017\n\007foreces\030\007 \001(\005\022\014\n\004head\030\010 \001(\005\"l\n\020" + - "FamilyNoticeInfo\022\023\n\013guildNotice\030\001 \002(\t\022\022\n" + - "\nupdateTime\030\002 \002(\005\022\r\n\005steps\030\003 \003(\005\022\020\n\010admi" + - "nres\030\004 \003(\005\022\016\n\006hasNew\030\005 \002(\005\"i\n\022FamilyReco" + - "mandInfo\022B\n\016familyBaseInfo\030\001 \001(\0132*.com.l" + - "jsd.jieling.protocols.FamilyBaseInfo\022\017\n\007", - "isApply\030\002 \001(\005\"U\n\020FamilyDefendInfo\022\013\n\003uid" + - "\030\001 \001(\005\022\021\n\tstarCount\030\002 \001(\005\022\017\n\007buildId\030\003 \001" + - "(\005\022\020\n\010curForce\030\004 \001(\005\"6\n\023FamilyBuildBuffI" + - "nfo\022\017\n\007buildId\030\001 \001(\005\022\016\n\006buffId\030\002 \003(\005\"y\n\025" + - "FamilyFightPlayerInfo\022<\n\010userInfo\030\001 \001(\0132" + - "*.com.ljsd.jieling.protocols.FamilyUserI" + - "nfo\022\021\n\tstarCount\030\002 \001(\005\022\017\n\007buildId\030\003 \001(\005\"" + - "\243\001\n\017FamilyFightInfo\022\013\n\003gid\030\001 \001(\005\022B\n\tbuil" + - "dBuff\030\002 \003(\0132/.com.ljsd.jieling.protocols" + - ".FamilyBuildBuffInfo\022?\n\004user\030\003 \003(\01321.com", - ".ljsd.jieling.protocols.FamilyFightPlaye" + - "rInfo\"\204\002\n\025GetFamilyInfoResponse\022B\n\016famil" + - "yBaseInfo\030\001 \001(\0132*.com.ljsd.jieling.proto" + - "cols.FamilyBaseInfo\022B\n\016familyUserInfo\030\002 " + - "\001(\0132*.com.ljsd.jieling.protocols.FamilyU" + - "serInfo\022N\n\024familyWalkIndicaiton\030\003 \003(\01320." + - "com.ljsd.jieling.protocols.FamilyWalkInd" + - "icaiton\022\023\n\013guildBossId\030\004 \001(\005\"5\n\023FamilyCr" + - "eateReqeust\022\014\n\004name\030\001 \001(\t\022\020\n\010announce\030\002 " + - "\001(\t\"\356\001\n\024FamilyCreateResponse\022B\n\016familyBa", - "seInfo\030\001 \001(\0132*.com.ljsd.jieling.protocol" + - "s.FamilyBaseInfo\022B\n\016familyUserInfo\030\002 \001(\013" + - "2*.com.ljsd.jieling.protocols.FamilyUser" + - "Info\022N\n\024familyWalkIndicaiton\030\003 \001(\01320.com" + - ".ljsd.jieling.protocols.FamilyWalkIndica" + - "iton\"#\n\023FamilySearchReqeust\022\014\n\004name\030\001 \001(" + - "\t\"a\n\023FamilySeachResponse\022J\n\022familyRecoma" + - "ndInfo\030\001 \003(\0132..com.ljsd.jieling.protocol" + - "s.FamilyRecomandInfo\"&\n\022FamilyApplyReque" + - "st\022\020\n\010familyId\030\001 \003(\005\"\235\001\n\023FamilyJoinIndic", - "aion\022B\n\016familyBaseInfo\030\001 \001(\0132*.com.ljsd." + - "jieling.protocols.FamilyBaseInfo\022B\n\016fami" + - "lyUserInfo\030\002 \001(\0132*.com.ljsd.jieling.prot" + - "ocols.FamilyUserInfo\"%\n\021FamilyJoinReques" + - "t\022\020\n\010familyId\030\001 \001(\005\"b\n\022FamilyJoinRespons" + - "e\022L\n\023familyJoinIndicaion\030\001 \001(\0132/.com.ljs" + - "d.jieling.protocols.FamilyJoinIndicaion\"" + - "e\n\027FamilyRecommandResponse\022J\n\022familyReco" + - "mandInfo\030\001 \003(\0132..com.ljsd.jieling.protoc" + - "ols.FamilyRecomandInfo\"a\n\033GetFamilyMembe", - "rInfoResponse\022B\n\016familyUserInfo\030\001 \003(\0132*." + - "com.ljsd.jieling.protocols.FamilyUserInf" + - "o\"X\n\024GetFamilyLogResponse\022@\n\rfamilyLogIn" + - "fo\030\001 \003(\0132).com.ljsd.jieling.protocols.Fa" + - "milyLogInfo\"V\n\026GetFamilyApplyResponse\022<\n" + - "\013familyApply\030\001 \003(\0132\'.com.ljsd.jieling.pr" + - "otocols.FamilyApply\"<\n\033FamilyOperationAp" + - "plyRequest\022\014\n\004type\030\001 \001(\005\022\017\n\007applyId\030\002 \001(" + - "\005\")\n\024FamilyKickOutRequest\022\021\n\ttargetUid\030\001" + - " \001(\005\"?\n\030FamilyAppointmentReqeust\022\021\n\ttarg", - "etUid\030\001 \001(\005\022\020\n\010position\030\002 \001(\005\"?\n\036FamilyP" + - "ositionUpdateIndication\022\020\n\010position\030\001 \001(" + - "\005\022\013\n\003uid\030\002 \001(\005\"4\n\023FamilyChangeRequest\022\014\n" + - "\004type\030\001 \001(\005\022\017\n\007content\030\002 \001(\t\"3\n\024FamilyCh" + - "angeResponse\022\016\n\006result\030\001 \001(\005\022\013\n\003err\030\002 \001(" + - "\t\">\n\033FamilyChangeJoinTypeRequest\022\014\n\004type" + - "\030\001 \001(\005\022\021\n\tintoLevel\030\002 \001(\005\"\\\n\026FamilyChang" + - "eIndication\022B\n\016familyBaseInfo\030\001 \001(\0132*.co" + - "m.ljsd.jieling.protocols.FamilyBaseInfo\"" + - "0\n\033FamilyChairmanChangeRequest\022\021\n\ttarget", - "Uid\030\001 \001(\005\"(\n\030FamilyDissolutionRequest\022\014\n" + - "\004type\030\001 \001(\005\"V\n\030FamilyDefendViewResponse\022" + - ":\n\004info\030\001 \003(\0132,.com.ljsd.jieling.protoco" + - "ls.FamilyDefendInfo\">\n\035FamilyDefendDetai" + - "lViewRequest\022\020\n\010playerId\030\001 \001(\005\022\013\n\003gid\030\002 " + - "\001(\005\"_\n\036FamilyDefendDetailViewResponse\022=\n" + - "\010teamInfo\030\001 \001(\0132+.com.ljsd.jieling.proto" + - "cols.TeamOneTeamInfo\"8\n\030FamilyQuickDefen" + - "dRequest\022\017\n\007buildId\030\001 \001(\005\022\013\n\003uid\030\002 \001(\005\"!" + - "\n\021FamilyWalkRequest\022\014\n\004path\030\001 \003(\005\"T\n\027Fam", - "ilyFightInfoResponse\0229\n\004info\030\001 \003(\0132+.com" + - ".ljsd.jieling.protocols.FamilyFightInfo\"" + - "q\n\013EnemyFamily\022\n\n\002id\030\001 \001(\005\022\014\n\004name\030\002 \001(\t" + - "\022\r\n\005level\030\003 \001(\005\022\021\n\tpictureId\030\004 \001(\005\022\021\n\tto" + - "talStar\030\005 \001(\005\022\023\n\013myTotalStar\030\006 \001(\005\"\310\001\n\030F" + - "amilyFightRoundResponse\022\014\n\004type\030\001 \001(\005\022\021\n" + - "\tstartTime\030\002 \001(\005\022\026\n\016roundStartTime\030\003 \001(\005" + - "\022\024\n\014roundEndTime\030\004 \001(\005\022\020\n\010joinType\030\005 \001(\005" + - "\0226\n\005enemy\030\006 \001(\0132\'.com.ljsd.jieling.proto" + - "cols.EnemyFamily\022\023\n\013attackCount\030\007 \001(\005\":\n", - "\030FamilyFightAttackRequest\022\021\n\tattackUid\030\001" + - " \001(\005\022\013\n\003gid\030\002 \001(\005\"s\n\031FamilyFightAttackRe" + - "sponse\022\016\n\006result\030\001 \001(\005\022\021\n\tstarCount\030\002 \001(" + - "\005\0223\n\004data\030\003 \001(\0132%.com.ljsd.jieling.proto" + - "cols.FightData\"\231\001\n\023PersonalFightResult\022\014" + - "\n\004rank\030\001 \001(\005\022\013\n\003uid\030\002 \001(\005\022\014\n\004name\030\003 \001(\t\022" + - "\014\n\004head\030\004 \001(\005\022\021\n\theadFrame\030\005 \001(\005\022\020\n\010posi" + - "tion\030\006 \001(\005\022\023\n\013attackCount\030\007 \001(\005\022\021\n\tstarC" + - "ount\030\010 \001(\005\"*\n\032PersonalFightResultRequest" + - "\022\014\n\004type\030\001 \001(\005\"^\n\033PersonalFightResultRes", - "ponse\022?\n\006result\030\001 \003(\0132/.com.ljsd.jieling" + - ".protocols.PersonalFightResult\"j\n\030GuildF" + - "ightResultResponse\022\016\n\006getExp\030\001 \001(\005\022\014\n\004st" + - "ar\030\002 \003(\005\022\021\n\textraStar\030\003 \003(\005\022\r\n\005level\030\004 \001" + - "(\005\022\016\n\006curExp\030\005 \001(\005\"3\n\016DefeatResponse\022\013\n\003" + - "uid\030\001 \001(\005\022\024\n\014teamLostStar\030\002 \001(\005\"#\n\021Chang" + - "eIconRequest\022\016\n\006iconId\030\001 \001(\005\"V\n\032GetAttac" + - "kHeroBloodResponse\0228\n\005blood\030\001 \003(\0132).com." + - "ljsd.jieling.protocols.HeroBloodInfo\" \n\020" + - "RefuseJoinFamily\022\014\n\004name\030\001 \001(\t\" \n\021KickOu", - "tIndication\022\013\n\003uid\030\001 \001(\005\"P\n\030GetAllRedPac" + - "kageResponse\0224\n\004info\030\001 \003(\0132&.com.ljsd.ji" + - "eling.protocols.RedPackage\"\"\n\024RobRedPack" + - "ageRequest\022\n\n\002id\030\001 \001(\005\"I\n\025RobRedPackageR" + - "esponse\022\021\n\tisSuccess\030\001 \001(\005\022\016\n\006itemId\030\002 \001" + - "(\005\022\r\n\005count\030\003 \001(\005\"%\n\027RedPackageDetailReq" + - "uest\022\n\n\002id\030\001 \001(\005\"\231\001\n\030RedPackageDetailRes" + - "ponse\0226\n\004info\030\001 \003(\0132(.com.ljsd.jieling.p" + - "rotocols.RedOneDetail\022\022\n\nremainTime\030\002 \001(" + - "\005\022\020\n\010sendName\030\003 \001(\t\022\014\n\004head\030\004 \001(\005\022\021\n\thea", - "dFrame\030\005 \001(\005\"$\n\025RedPackageLikeRequest\022\013\n" + - "\003uid\030\001 \001(\005\"%\n\026GetAllSendLikeResponse\022\013\n\003" + - "uid\030\001 \003(\005B\002H\001" + "\001(\005\022\020\n\010lastHurt\030\014 \001(\005\022\026\n\016takeFeteReward\030" + + "\r \003(\005\022\027\n\017lastFeteGuildId\030\016 \001(\005\022\024\n\014lastFe" + + "teType\030\017 \001(\005\"\204\001\n\032CarDelayProgressIndicat", + "ion\022\020\n\010progress\030\001 \001(\005\022\017\n\007endTime\030\002 \001(\005\022\023" + + "\n\013bossIndexId\030\003 \001(\005\022\027\n\017battleStartTime\030\004" + + " \001(\005\022\025\n\rgrabStartTime\030\005 \001(\005\"9\n\rFamilyLog" + + "Info\022\014\n\004name\030\001 \001(\t\022\014\n\004info\030\002 \001(\t\022\014\n\004time" + + "\030\003 \001(\005\"_\n\024FamilyWalkIndicaiton\022\014\n\004path\030\001" + + " \003(\005\022\016\n\006curPos\030\002 \001(\005\022\013\n\003uid\030\003 \001(\005\022\014\n\004nam" + + "e\030\004 \001(\t\022\016\n\006gender\030\005 \001(\005\"\210\001\n\013FamilyApply\022" + + "\014\n\004name\030\001 \001(\t\022\017\n\007roleUid\030\002 \001(\005\022\014\n\004time\030\003" + + " \001(\005\022\r\n\005frame\030\004 \001(\005\022\017\n\007outTime\030\005 \001(\005\022\r\n\005" + + "level\030\006 \001(\005\022\017\n\007foreces\030\007 \001(\005\022\014\n\004head\030\010 \001", + "(\005\"l\n\020FamilyNoticeInfo\022\023\n\013guildNotice\030\001 " + + "\002(\t\022\022\n\nupdateTime\030\002 \002(\005\022\r\n\005steps\030\003 \003(\005\022\020" + + "\n\010adminres\030\004 \003(\005\022\016\n\006hasNew\030\005 \002(\005\"i\n\022Fami" + + "lyRecomandInfo\022B\n\016familyBaseInfo\030\001 \001(\0132*" + + ".com.ljsd.jieling.protocols.FamilyBaseIn" + + "fo\022\017\n\007isApply\030\002 \001(\005\"U\n\020FamilyDefendInfo\022" + + "\013\n\003uid\030\001 \001(\005\022\021\n\tstarCount\030\002 \001(\005\022\017\n\007build" + + "Id\030\003 \001(\005\022\020\n\010curForce\030\004 \001(\005\"6\n\023FamilyBuil" + + "dBuffInfo\022\017\n\007buildId\030\001 \001(\005\022\016\n\006buffId\030\002 \003" + + "(\005\"y\n\025FamilyFightPlayerInfo\022<\n\010userInfo\030", + "\001 \001(\0132*.com.ljsd.jieling.protocols.Famil" + + "yUserInfo\022\021\n\tstarCount\030\002 \001(\005\022\017\n\007buildId\030" + + "\003 \001(\005\"\243\001\n\017FamilyFightInfo\022\013\n\003gid\030\001 \001(\005\022B" + + "\n\tbuildBuff\030\002 \003(\0132/.com.ljsd.jieling.pro" + + "tocols.FamilyBuildBuffInfo\022?\n\004user\030\003 \003(\013" + + "21.com.ljsd.jieling.protocols.FamilyFigh" + + "tPlayerInfo\"\340\002\n\025GetFamilyInfoResponse\022B\n" + + "\016familyBaseInfo\030\001 \001(\0132*.com.ljsd.jieling" + + ".protocols.FamilyBaseInfo\022B\n\016familyUserI" + + "nfo\030\002 \001(\0132*.com.ljsd.jieling.protocols.F", + "amilyUserInfo\022N\n\024familyWalkIndicaiton\030\003 " + + "\003(\01320.com.ljsd.jieling.protocols.FamilyW" + + "alkIndicaiton\022\023\n\013guildBossId\030\004 \001(\005\022Z\n\032ca" + + "rDelayProgressIndication\030\005 \001(\01326.com.ljs" + + "d.jieling.protocols.CarDelayProgressIndi" + + "cation\"5\n\023FamilyCreateReqeust\022\014\n\004name\030\001 " + + "\001(\t\022\020\n\010announce\030\002 \001(\t\"\356\001\n\024FamilyCreateRe" + + "sponse\022B\n\016familyBaseInfo\030\001 \001(\0132*.com.ljs" + + "d.jieling.protocols.FamilyBaseInfo\022B\n\016fa" + + "milyUserInfo\030\002 \001(\0132*.com.ljsd.jieling.pr", + "otocols.FamilyUserInfo\022N\n\024familyWalkIndi" + + "caiton\030\003 \001(\01320.com.ljsd.jieling.protocol" + + "s.FamilyWalkIndicaiton\"#\n\023FamilySearchRe" + + "qeust\022\014\n\004name\030\001 \001(\t\"a\n\023FamilySeachRespon" + + "se\022J\n\022familyRecomandInfo\030\001 \003(\0132..com.ljs" + + "d.jieling.protocols.FamilyRecomandInfo\"&" + + "\n\022FamilyApplyRequest\022\020\n\010familyId\030\001 \003(\005\"\235" + + "\001\n\023FamilyJoinIndicaion\022B\n\016familyBaseInfo" + + "\030\001 \001(\0132*.com.ljsd.jieling.protocols.Fami" + + "lyBaseInfo\022B\n\016familyUserInfo\030\002 \001(\0132*.com", + ".ljsd.jieling.protocols.FamilyUserInfo\"%" + + "\n\021FamilyJoinRequest\022\020\n\010familyId\030\001 \001(\005\"b\n" + + "\022FamilyJoinResponse\022L\n\023familyJoinIndicai" + + "on\030\001 \001(\0132/.com.ljsd.jieling.protocols.Fa" + + "milyJoinIndicaion\"e\n\027FamilyRecommandResp" + + "onse\022J\n\022familyRecomandInfo\030\001 \003(\0132..com.l" + + "jsd.jieling.protocols.FamilyRecomandInfo" + + "\"a\n\033GetFamilyMemberInfoResponse\022B\n\016famil" + + "yUserInfo\030\001 \003(\0132*.com.ljsd.jieling.proto" + + "cols.FamilyUserInfo\"X\n\024GetFamilyLogRespo", + "nse\022@\n\rfamilyLogInfo\030\001 \003(\0132).com.ljsd.ji" + + "eling.protocols.FamilyLogInfo\"V\n\026GetFami" + + "lyApplyResponse\022<\n\013familyApply\030\001 \003(\0132\'.c" + + "om.ljsd.jieling.protocols.FamilyApply\"<\n" + + "\033FamilyOperationApplyRequest\022\014\n\004type\030\001 \001" + + "(\005\022\017\n\007applyId\030\002 \001(\005\")\n\024FamilyKickOutRequ" + + "est\022\021\n\ttargetUid\030\001 \001(\005\"?\n\030FamilyAppointm" + + "entReqeust\022\021\n\ttargetUid\030\001 \001(\005\022\020\n\010positio" + + "n\030\002 \001(\005\"?\n\036FamilyPositionUpdateIndicatio" + + "n\022\020\n\010position\030\001 \001(\005\022\013\n\003uid\030\002 \001(\005\"4\n\023Fami", + "lyChangeRequest\022\014\n\004type\030\001 \001(\005\022\017\n\007content" + + "\030\002 \001(\t\"3\n\024FamilyChangeResponse\022\016\n\006result" + + "\030\001 \001(\005\022\013\n\003err\030\002 \001(\t\">\n\033FamilyChangeJoinT" + + "ypeRequest\022\014\n\004type\030\001 \001(\005\022\021\n\tintoLevel\030\002 " + + "\001(\005\"\\\n\026FamilyChangeIndication\022B\n\016familyB" + + "aseInfo\030\001 \001(\0132*.com.ljsd.jieling.protoco" + + "ls.FamilyBaseInfo\"0\n\033FamilyChairmanChang" + + "eRequest\022\021\n\ttargetUid\030\001 \001(\005\"(\n\030FamilyDis" + + "solutionRequest\022\014\n\004type\030\001 \001(\005\"V\n\030FamilyD" + + "efendViewResponse\022:\n\004info\030\001 \003(\0132,.com.lj", + "sd.jieling.protocols.FamilyDefendInfo\">\n" + + "\035FamilyDefendDetailViewRequest\022\020\n\010player" + + "Id\030\001 \001(\005\022\013\n\003gid\030\002 \001(\005\"_\n\036FamilyDefendDet" + + "ailViewResponse\022=\n\010teamInfo\030\001 \001(\0132+.com." + + "ljsd.jieling.protocols.TeamOneTeamInfo\"8" + + "\n\030FamilyQuickDefendRequest\022\017\n\007buildId\030\001 " + + "\001(\005\022\013\n\003uid\030\002 \001(\005\"!\n\021FamilyWalkRequest\022\014\n" + + "\004path\030\001 \003(\005\"T\n\027FamilyFightInfoResponse\0229" + + "\n\004info\030\001 \003(\0132+.com.ljsd.jieling.protocol" + + "s.FamilyFightInfo\"q\n\013EnemyFamily\022\n\n\002id\030\001", + " \001(\005\022\014\n\004name\030\002 \001(\t\022\r\n\005level\030\003 \001(\005\022\021\n\tpic" + + "tureId\030\004 \001(\005\022\021\n\ttotalStar\030\005 \001(\005\022\023\n\013myTot" + + "alStar\030\006 \001(\005\"\310\001\n\030FamilyFightRoundRespons" + + "e\022\014\n\004type\030\001 \001(\005\022\021\n\tstartTime\030\002 \001(\005\022\026\n\016ro" + + "undStartTime\030\003 \001(\005\022\024\n\014roundEndTime\030\004 \001(\005" + + "\022\020\n\010joinType\030\005 \001(\005\0226\n\005enemy\030\006 \001(\0132\'.com." + + "ljsd.jieling.protocols.EnemyFamily\022\023\n\013at" + + "tackCount\030\007 \001(\005\":\n\030FamilyFightAttackRequ" + + "est\022\021\n\tattackUid\030\001 \001(\005\022\013\n\003gid\030\002 \001(\005\"s\n\031F" + + "amilyFightAttackResponse\022\016\n\006result\030\001 \001(\005", + "\022\021\n\tstarCount\030\002 \001(\005\0223\n\004data\030\003 \001(\0132%.com." + + "ljsd.jieling.protocols.FightData\"\231\001\n\023Per" + + "sonalFightResult\022\014\n\004rank\030\001 \001(\005\022\013\n\003uid\030\002 " + + "\001(\005\022\014\n\004name\030\003 \001(\t\022\014\n\004head\030\004 \001(\005\022\021\n\theadF" + + "rame\030\005 \001(\005\022\020\n\010position\030\006 \001(\005\022\023\n\013attackCo" + + "unt\030\007 \001(\005\022\021\n\tstarCount\030\010 \001(\005\"*\n\032Personal" + + "FightResultRequest\022\014\n\004type\030\001 \001(\005\"^\n\033Pers" + + "onalFightResultResponse\022?\n\006result\030\001 \003(\0132" + + "/.com.ljsd.jieling.protocols.PersonalFig" + + "htResult\"j\n\030GuildFightResultResponse\022\016\n\006", + "getExp\030\001 \001(\005\022\014\n\004star\030\002 \003(\005\022\021\n\textraStar\030" + + "\003 \003(\005\022\r\n\005level\030\004 \001(\005\022\016\n\006curExp\030\005 \001(\005\"3\n\016" + + "DefeatResponse\022\013\n\003uid\030\001 \001(\005\022\024\n\014teamLostS" + + "tar\030\002 \001(\005\"#\n\021ChangeIconRequest\022\016\n\006iconId" + + "\030\001 \001(\005\"V\n\032GetAttackHeroBloodResponse\0228\n\005" + + "blood\030\001 \003(\0132).com.ljsd.jieling.protocols" + + ".HeroBloodInfo\" \n\020RefuseJoinFamily\022\014\n\004na" + + "me\030\001 \001(\t\" \n\021KickOutIndication\022\013\n\003uid\030\001 \001" + + "(\005\"P\n\030GetAllRedPackageResponse\0224\n\004info\030\001" + + " \003(\0132&.com.ljsd.jieling.protocols.RedPac", + "kage\"\"\n\024RobRedPackageRequest\022\n\n\002id\030\001 \001(\005" + + "\"I\n\025RobRedPackageResponse\022\021\n\tisSuccess\030\001" + + " \001(\005\022\016\n\006itemId\030\002 \001(\005\022\r\n\005count\030\003 \001(\005\"%\n\027R" + + "edPackageDetailRequest\022\n\n\002id\030\001 \001(\005\"\231\001\n\030R" + + "edPackageDetailResponse\0226\n\004info\030\001 \003(\0132(." + + "com.ljsd.jieling.protocols.RedOneDetail\022" + + "\022\n\nremainTime\030\002 \001(\005\022\020\n\010sendName\030\003 \001(\t\022\014\n" + + "\004head\030\004 \001(\005\022\021\n\theadFrame\030\005 \001(\005\"$\n\025RedPac" + + "kageLikeRequest\022\013\n\003uid\030\001 \001(\005\"%\n\026GetAllSe" + + "ndLikeResponse\022\013\n\003uid\030\001 \003(\005\")\n\nGuildSkil", + "l\022\014\n\004type\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\"Q\n\030GetAll" + + "GuildSkillResponse\0225\n\005skill\030\001 \003(\0132&.com." + + "ljsd.jieling.protocols.GuildSkill\"(\n\030Gui" + + "ldSkillLevelUpRequest\022\014\n\004type\030\001 \001(\005\"&\n\026R" + + "esetGuildSkillRequest\022\014\n\004type\030\001 \001(\005\"I\n\027R" + + "esetGuildSkillResponse\022.\n\004drop\030\001 \001(\0132 .c" + + "om.ljsd.jieling.protocols.Drop\"v\n\033GetCar" + + "ChallenegListResponse\0226\n\010rankInfo\030\001 \003(\0132" + + "$.com.ljsd.jieling.protocols.RankInfo\022\016\n" + + "\006myRank\030\002 \001(\005\022\017\n\007myScore\030\003 \001(\005\"!\n\021Family", + "FeteRequest\022\014\n\004type\030\001 \001(\005\"$\n\022FamilyFeteR" + + "esponse\022\016\n\006curExp\030\001 \001(\005\"(\n\032FamilyGetFete" + + "RewardRequest\022\n\n\002id\030\001 \001(\005\"\035\n\033FamilyGetFe" + + "teRewardResponse\"2\n!FamilyFeteRewardProc" + + "essIndication\022\r\n\005score\030\001 \001(\005\"0\n\rDeathPat" + + "hInfo\022\016\n\006pathId\030\001 \001(\005\022\017\n\007guildId\030\002 \001(\005\"," + + "\n\032GetDeathPathStatusResponse\022\016\n\006status\030\001" + + " \001(\005\"~\n\030GetDeathPathInfoResponse\022\020\n\010over" + + "Time\030\001 \001(\005\022\026\n\016challengeCount\030\002 \001(\005\0228\n\005in" + + "fos\030\003 \003(\0132).com.ljsd.jieling.protocols.D", + "eathPathInfo\"+\n\031ChallengeDeathPathReques" + + "t\022\016\n\006pathId\030\001 \001(\005\"\226\001\n\032ChallengeDeathPath" + + "Response\0228\n\tfightData\030\001 \001(\0132%.com.ljsd.j" + + "ieling.protocols.FightData\022\016\n\006damage\030\002 \001" + + "(\005\022.\n\004drop\030\003 \001(\0132 .com.ljsd.jieling.prot" + + "ocols.DropB\002H\001" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -41126,355 +51193,457 @@ public final class Family { internal_static_com_ljsd_jieling_protocols_FamilyUserInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyUserInfo_descriptor, - new java.lang.String[] { "RoleUid", "UserName", "UserLevel", "Position", "Contribute", "Seconds", "ContributeToday", "SoulForce", "Head", "Frame", "MaxBossHurt", "LastHurt", }); - internal_static_com_ljsd_jieling_protocols_FamilyLogInfo_descriptor = + new java.lang.String[] { "RoleUid", "UserName", "UserLevel", "Position", "Contribute", "Seconds", "ContributeToday", "SoulForce", "Head", "Frame", "MaxBossHurt", "LastHurt", "TakeFeteReward", "LastFeteGuildId", "LastFeteType", }); + internal_static_com_ljsd_jieling_protocols_CarDelayProgressIndication_descriptor = getDescriptor().getMessageTypes().get(1); + internal_static_com_ljsd_jieling_protocols_CarDelayProgressIndication_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_CarDelayProgressIndication_descriptor, + new java.lang.String[] { "Progress", "EndTime", "BossIndexId", "BattleStartTime", "GrabStartTime", }); + internal_static_com_ljsd_jieling_protocols_FamilyLogInfo_descriptor = + getDescriptor().getMessageTypes().get(2); internal_static_com_ljsd_jieling_protocols_FamilyLogInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyLogInfo_descriptor, new java.lang.String[] { "Name", "Info", "Time", }); internal_static_com_ljsd_jieling_protocols_FamilyWalkIndicaiton_descriptor = - getDescriptor().getMessageTypes().get(2); + getDescriptor().getMessageTypes().get(3); internal_static_com_ljsd_jieling_protocols_FamilyWalkIndicaiton_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyWalkIndicaiton_descriptor, new java.lang.String[] { "Path", "CurPos", "Uid", "Name", "Gender", }); internal_static_com_ljsd_jieling_protocols_FamilyApply_descriptor = - getDescriptor().getMessageTypes().get(3); + getDescriptor().getMessageTypes().get(4); internal_static_com_ljsd_jieling_protocols_FamilyApply_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyApply_descriptor, new java.lang.String[] { "Name", "RoleUid", "Time", "Frame", "OutTime", "Level", "Foreces", "Head", }); internal_static_com_ljsd_jieling_protocols_FamilyNoticeInfo_descriptor = - getDescriptor().getMessageTypes().get(4); + getDescriptor().getMessageTypes().get(5); internal_static_com_ljsd_jieling_protocols_FamilyNoticeInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyNoticeInfo_descriptor, new java.lang.String[] { "GuildNotice", "UpdateTime", "Steps", "Adminres", "HasNew", }); internal_static_com_ljsd_jieling_protocols_FamilyRecomandInfo_descriptor = - getDescriptor().getMessageTypes().get(5); + getDescriptor().getMessageTypes().get(6); internal_static_com_ljsd_jieling_protocols_FamilyRecomandInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyRecomandInfo_descriptor, new java.lang.String[] { "FamilyBaseInfo", "IsApply", }); internal_static_com_ljsd_jieling_protocols_FamilyDefendInfo_descriptor = - getDescriptor().getMessageTypes().get(6); + getDescriptor().getMessageTypes().get(7); internal_static_com_ljsd_jieling_protocols_FamilyDefendInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyDefendInfo_descriptor, new java.lang.String[] { "Uid", "StarCount", "BuildId", "CurForce", }); internal_static_com_ljsd_jieling_protocols_FamilyBuildBuffInfo_descriptor = - getDescriptor().getMessageTypes().get(7); + getDescriptor().getMessageTypes().get(8); internal_static_com_ljsd_jieling_protocols_FamilyBuildBuffInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyBuildBuffInfo_descriptor, new java.lang.String[] { "BuildId", "BuffId", }); internal_static_com_ljsd_jieling_protocols_FamilyFightPlayerInfo_descriptor = - getDescriptor().getMessageTypes().get(8); + getDescriptor().getMessageTypes().get(9); internal_static_com_ljsd_jieling_protocols_FamilyFightPlayerInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyFightPlayerInfo_descriptor, new java.lang.String[] { "UserInfo", "StarCount", "BuildId", }); internal_static_com_ljsd_jieling_protocols_FamilyFightInfo_descriptor = - getDescriptor().getMessageTypes().get(9); + getDescriptor().getMessageTypes().get(10); internal_static_com_ljsd_jieling_protocols_FamilyFightInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyFightInfo_descriptor, new java.lang.String[] { "Gid", "BuildBuff", "User", }); internal_static_com_ljsd_jieling_protocols_GetFamilyInfoResponse_descriptor = - getDescriptor().getMessageTypes().get(10); + getDescriptor().getMessageTypes().get(11); internal_static_com_ljsd_jieling_protocols_GetFamilyInfoResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_GetFamilyInfoResponse_descriptor, - new java.lang.String[] { "FamilyBaseInfo", "FamilyUserInfo", "FamilyWalkIndicaiton", "GuildBossId", }); + new java.lang.String[] { "FamilyBaseInfo", "FamilyUserInfo", "FamilyWalkIndicaiton", "GuildBossId", "CarDelayProgressIndication", }); internal_static_com_ljsd_jieling_protocols_FamilyCreateReqeust_descriptor = - getDescriptor().getMessageTypes().get(11); + getDescriptor().getMessageTypes().get(12); internal_static_com_ljsd_jieling_protocols_FamilyCreateReqeust_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyCreateReqeust_descriptor, new java.lang.String[] { "Name", "Announce", }); internal_static_com_ljsd_jieling_protocols_FamilyCreateResponse_descriptor = - getDescriptor().getMessageTypes().get(12); + getDescriptor().getMessageTypes().get(13); internal_static_com_ljsd_jieling_protocols_FamilyCreateResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyCreateResponse_descriptor, new java.lang.String[] { "FamilyBaseInfo", "FamilyUserInfo", "FamilyWalkIndicaiton", }); internal_static_com_ljsd_jieling_protocols_FamilySearchReqeust_descriptor = - getDescriptor().getMessageTypes().get(13); + getDescriptor().getMessageTypes().get(14); internal_static_com_ljsd_jieling_protocols_FamilySearchReqeust_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilySearchReqeust_descriptor, new java.lang.String[] { "Name", }); internal_static_com_ljsd_jieling_protocols_FamilySeachResponse_descriptor = - getDescriptor().getMessageTypes().get(14); + getDescriptor().getMessageTypes().get(15); internal_static_com_ljsd_jieling_protocols_FamilySeachResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilySeachResponse_descriptor, new java.lang.String[] { "FamilyRecomandInfo", }); internal_static_com_ljsd_jieling_protocols_FamilyApplyRequest_descriptor = - getDescriptor().getMessageTypes().get(15); + getDescriptor().getMessageTypes().get(16); internal_static_com_ljsd_jieling_protocols_FamilyApplyRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyApplyRequest_descriptor, new java.lang.String[] { "FamilyId", }); internal_static_com_ljsd_jieling_protocols_FamilyJoinIndicaion_descriptor = - getDescriptor().getMessageTypes().get(16); + getDescriptor().getMessageTypes().get(17); internal_static_com_ljsd_jieling_protocols_FamilyJoinIndicaion_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyJoinIndicaion_descriptor, new java.lang.String[] { "FamilyBaseInfo", "FamilyUserInfo", }); internal_static_com_ljsd_jieling_protocols_FamilyJoinRequest_descriptor = - getDescriptor().getMessageTypes().get(17); + getDescriptor().getMessageTypes().get(18); internal_static_com_ljsd_jieling_protocols_FamilyJoinRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyJoinRequest_descriptor, new java.lang.String[] { "FamilyId", }); internal_static_com_ljsd_jieling_protocols_FamilyJoinResponse_descriptor = - getDescriptor().getMessageTypes().get(18); + getDescriptor().getMessageTypes().get(19); internal_static_com_ljsd_jieling_protocols_FamilyJoinResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyJoinResponse_descriptor, new java.lang.String[] { "FamilyJoinIndicaion", }); internal_static_com_ljsd_jieling_protocols_FamilyRecommandResponse_descriptor = - getDescriptor().getMessageTypes().get(19); + getDescriptor().getMessageTypes().get(20); internal_static_com_ljsd_jieling_protocols_FamilyRecommandResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyRecommandResponse_descriptor, new java.lang.String[] { "FamilyRecomandInfo", }); internal_static_com_ljsd_jieling_protocols_GetFamilyMemberInfoResponse_descriptor = - getDescriptor().getMessageTypes().get(20); + getDescriptor().getMessageTypes().get(21); internal_static_com_ljsd_jieling_protocols_GetFamilyMemberInfoResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_GetFamilyMemberInfoResponse_descriptor, new java.lang.String[] { "FamilyUserInfo", }); internal_static_com_ljsd_jieling_protocols_GetFamilyLogResponse_descriptor = - getDescriptor().getMessageTypes().get(21); + getDescriptor().getMessageTypes().get(22); internal_static_com_ljsd_jieling_protocols_GetFamilyLogResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_GetFamilyLogResponse_descriptor, new java.lang.String[] { "FamilyLogInfo", }); internal_static_com_ljsd_jieling_protocols_GetFamilyApplyResponse_descriptor = - getDescriptor().getMessageTypes().get(22); + getDescriptor().getMessageTypes().get(23); internal_static_com_ljsd_jieling_protocols_GetFamilyApplyResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_GetFamilyApplyResponse_descriptor, new java.lang.String[] { "FamilyApply", }); internal_static_com_ljsd_jieling_protocols_FamilyOperationApplyRequest_descriptor = - getDescriptor().getMessageTypes().get(23); + getDescriptor().getMessageTypes().get(24); internal_static_com_ljsd_jieling_protocols_FamilyOperationApplyRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyOperationApplyRequest_descriptor, new java.lang.String[] { "Type", "ApplyId", }); internal_static_com_ljsd_jieling_protocols_FamilyKickOutRequest_descriptor = - getDescriptor().getMessageTypes().get(24); + getDescriptor().getMessageTypes().get(25); internal_static_com_ljsd_jieling_protocols_FamilyKickOutRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyKickOutRequest_descriptor, new java.lang.String[] { "TargetUid", }); internal_static_com_ljsd_jieling_protocols_FamilyAppointmentReqeust_descriptor = - getDescriptor().getMessageTypes().get(25); + getDescriptor().getMessageTypes().get(26); internal_static_com_ljsd_jieling_protocols_FamilyAppointmentReqeust_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyAppointmentReqeust_descriptor, new java.lang.String[] { "TargetUid", "Position", }); internal_static_com_ljsd_jieling_protocols_FamilyPositionUpdateIndication_descriptor = - getDescriptor().getMessageTypes().get(26); + getDescriptor().getMessageTypes().get(27); internal_static_com_ljsd_jieling_protocols_FamilyPositionUpdateIndication_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyPositionUpdateIndication_descriptor, new java.lang.String[] { "Position", "Uid", }); internal_static_com_ljsd_jieling_protocols_FamilyChangeRequest_descriptor = - getDescriptor().getMessageTypes().get(27); + getDescriptor().getMessageTypes().get(28); internal_static_com_ljsd_jieling_protocols_FamilyChangeRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyChangeRequest_descriptor, new java.lang.String[] { "Type", "Content", }); internal_static_com_ljsd_jieling_protocols_FamilyChangeResponse_descriptor = - getDescriptor().getMessageTypes().get(28); + getDescriptor().getMessageTypes().get(29); internal_static_com_ljsd_jieling_protocols_FamilyChangeResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyChangeResponse_descriptor, new java.lang.String[] { "Result", "Err", }); internal_static_com_ljsd_jieling_protocols_FamilyChangeJoinTypeRequest_descriptor = - getDescriptor().getMessageTypes().get(29); + getDescriptor().getMessageTypes().get(30); internal_static_com_ljsd_jieling_protocols_FamilyChangeJoinTypeRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyChangeJoinTypeRequest_descriptor, new java.lang.String[] { "Type", "IntoLevel", }); internal_static_com_ljsd_jieling_protocols_FamilyChangeIndication_descriptor = - getDescriptor().getMessageTypes().get(30); + getDescriptor().getMessageTypes().get(31); internal_static_com_ljsd_jieling_protocols_FamilyChangeIndication_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyChangeIndication_descriptor, new java.lang.String[] { "FamilyBaseInfo", }); internal_static_com_ljsd_jieling_protocols_FamilyChairmanChangeRequest_descriptor = - getDescriptor().getMessageTypes().get(31); + getDescriptor().getMessageTypes().get(32); internal_static_com_ljsd_jieling_protocols_FamilyChairmanChangeRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyChairmanChangeRequest_descriptor, new java.lang.String[] { "TargetUid", }); internal_static_com_ljsd_jieling_protocols_FamilyDissolutionRequest_descriptor = - getDescriptor().getMessageTypes().get(32); + getDescriptor().getMessageTypes().get(33); internal_static_com_ljsd_jieling_protocols_FamilyDissolutionRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyDissolutionRequest_descriptor, new java.lang.String[] { "Type", }); internal_static_com_ljsd_jieling_protocols_FamilyDefendViewResponse_descriptor = - getDescriptor().getMessageTypes().get(33); + getDescriptor().getMessageTypes().get(34); internal_static_com_ljsd_jieling_protocols_FamilyDefendViewResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyDefendViewResponse_descriptor, new java.lang.String[] { "Info", }); internal_static_com_ljsd_jieling_protocols_FamilyDefendDetailViewRequest_descriptor = - getDescriptor().getMessageTypes().get(34); + getDescriptor().getMessageTypes().get(35); internal_static_com_ljsd_jieling_protocols_FamilyDefendDetailViewRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyDefendDetailViewRequest_descriptor, new java.lang.String[] { "PlayerId", "Gid", }); internal_static_com_ljsd_jieling_protocols_FamilyDefendDetailViewResponse_descriptor = - getDescriptor().getMessageTypes().get(35); + getDescriptor().getMessageTypes().get(36); internal_static_com_ljsd_jieling_protocols_FamilyDefendDetailViewResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyDefendDetailViewResponse_descriptor, new java.lang.String[] { "TeamInfo", }); internal_static_com_ljsd_jieling_protocols_FamilyQuickDefendRequest_descriptor = - getDescriptor().getMessageTypes().get(36); + getDescriptor().getMessageTypes().get(37); internal_static_com_ljsd_jieling_protocols_FamilyQuickDefendRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyQuickDefendRequest_descriptor, new java.lang.String[] { "BuildId", "Uid", }); internal_static_com_ljsd_jieling_protocols_FamilyWalkRequest_descriptor = - getDescriptor().getMessageTypes().get(37); + getDescriptor().getMessageTypes().get(38); internal_static_com_ljsd_jieling_protocols_FamilyWalkRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyWalkRequest_descriptor, new java.lang.String[] { "Path", }); internal_static_com_ljsd_jieling_protocols_FamilyFightInfoResponse_descriptor = - getDescriptor().getMessageTypes().get(38); + getDescriptor().getMessageTypes().get(39); internal_static_com_ljsd_jieling_protocols_FamilyFightInfoResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyFightInfoResponse_descriptor, new java.lang.String[] { "Info", }); internal_static_com_ljsd_jieling_protocols_EnemyFamily_descriptor = - getDescriptor().getMessageTypes().get(39); + getDescriptor().getMessageTypes().get(40); internal_static_com_ljsd_jieling_protocols_EnemyFamily_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_EnemyFamily_descriptor, new java.lang.String[] { "Id", "Name", "Level", "PictureId", "TotalStar", "MyTotalStar", }); internal_static_com_ljsd_jieling_protocols_FamilyFightRoundResponse_descriptor = - getDescriptor().getMessageTypes().get(40); + getDescriptor().getMessageTypes().get(41); internal_static_com_ljsd_jieling_protocols_FamilyFightRoundResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyFightRoundResponse_descriptor, new java.lang.String[] { "Type", "StartTime", "RoundStartTime", "RoundEndTime", "JoinType", "Enemy", "AttackCount", }); internal_static_com_ljsd_jieling_protocols_FamilyFightAttackRequest_descriptor = - getDescriptor().getMessageTypes().get(41); + getDescriptor().getMessageTypes().get(42); internal_static_com_ljsd_jieling_protocols_FamilyFightAttackRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyFightAttackRequest_descriptor, new java.lang.String[] { "AttackUid", "Gid", }); internal_static_com_ljsd_jieling_protocols_FamilyFightAttackResponse_descriptor = - getDescriptor().getMessageTypes().get(42); + getDescriptor().getMessageTypes().get(43); internal_static_com_ljsd_jieling_protocols_FamilyFightAttackResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FamilyFightAttackResponse_descriptor, new java.lang.String[] { "Result", "StarCount", "Data", }); internal_static_com_ljsd_jieling_protocols_PersonalFightResult_descriptor = - getDescriptor().getMessageTypes().get(43); + getDescriptor().getMessageTypes().get(44); internal_static_com_ljsd_jieling_protocols_PersonalFightResult_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_PersonalFightResult_descriptor, new java.lang.String[] { "Rank", "Uid", "Name", "Head", "HeadFrame", "Position", "AttackCount", "StarCount", }); internal_static_com_ljsd_jieling_protocols_PersonalFightResultRequest_descriptor = - getDescriptor().getMessageTypes().get(44); + getDescriptor().getMessageTypes().get(45); internal_static_com_ljsd_jieling_protocols_PersonalFightResultRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_PersonalFightResultRequest_descriptor, new java.lang.String[] { "Type", }); internal_static_com_ljsd_jieling_protocols_PersonalFightResultResponse_descriptor = - getDescriptor().getMessageTypes().get(45); + getDescriptor().getMessageTypes().get(46); internal_static_com_ljsd_jieling_protocols_PersonalFightResultResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_PersonalFightResultResponse_descriptor, new java.lang.String[] { "Result", }); internal_static_com_ljsd_jieling_protocols_GuildFightResultResponse_descriptor = - getDescriptor().getMessageTypes().get(46); + getDescriptor().getMessageTypes().get(47); internal_static_com_ljsd_jieling_protocols_GuildFightResultResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_GuildFightResultResponse_descriptor, new java.lang.String[] { "GetExp", "Star", "ExtraStar", "Level", "CurExp", }); internal_static_com_ljsd_jieling_protocols_DefeatResponse_descriptor = - getDescriptor().getMessageTypes().get(47); + getDescriptor().getMessageTypes().get(48); internal_static_com_ljsd_jieling_protocols_DefeatResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_DefeatResponse_descriptor, new java.lang.String[] { "Uid", "TeamLostStar", }); internal_static_com_ljsd_jieling_protocols_ChangeIconRequest_descriptor = - getDescriptor().getMessageTypes().get(48); + getDescriptor().getMessageTypes().get(49); internal_static_com_ljsd_jieling_protocols_ChangeIconRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_ChangeIconRequest_descriptor, new java.lang.String[] { "IconId", }); internal_static_com_ljsd_jieling_protocols_GetAttackHeroBloodResponse_descriptor = - getDescriptor().getMessageTypes().get(49); + getDescriptor().getMessageTypes().get(50); internal_static_com_ljsd_jieling_protocols_GetAttackHeroBloodResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_GetAttackHeroBloodResponse_descriptor, new java.lang.String[] { "Blood", }); internal_static_com_ljsd_jieling_protocols_RefuseJoinFamily_descriptor = - getDescriptor().getMessageTypes().get(50); + getDescriptor().getMessageTypes().get(51); internal_static_com_ljsd_jieling_protocols_RefuseJoinFamily_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_RefuseJoinFamily_descriptor, new java.lang.String[] { "Name", }); internal_static_com_ljsd_jieling_protocols_KickOutIndication_descriptor = - getDescriptor().getMessageTypes().get(51); + getDescriptor().getMessageTypes().get(52); internal_static_com_ljsd_jieling_protocols_KickOutIndication_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_KickOutIndication_descriptor, new java.lang.String[] { "Uid", }); internal_static_com_ljsd_jieling_protocols_GetAllRedPackageResponse_descriptor = - getDescriptor().getMessageTypes().get(52); + getDescriptor().getMessageTypes().get(53); internal_static_com_ljsd_jieling_protocols_GetAllRedPackageResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_GetAllRedPackageResponse_descriptor, new java.lang.String[] { "Info", }); internal_static_com_ljsd_jieling_protocols_RobRedPackageRequest_descriptor = - getDescriptor().getMessageTypes().get(53); + getDescriptor().getMessageTypes().get(54); internal_static_com_ljsd_jieling_protocols_RobRedPackageRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_RobRedPackageRequest_descriptor, new java.lang.String[] { "Id", }); internal_static_com_ljsd_jieling_protocols_RobRedPackageResponse_descriptor = - getDescriptor().getMessageTypes().get(54); + getDescriptor().getMessageTypes().get(55); internal_static_com_ljsd_jieling_protocols_RobRedPackageResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_RobRedPackageResponse_descriptor, new java.lang.String[] { "IsSuccess", "ItemId", "Count", }); internal_static_com_ljsd_jieling_protocols_RedPackageDetailRequest_descriptor = - getDescriptor().getMessageTypes().get(55); + getDescriptor().getMessageTypes().get(56); internal_static_com_ljsd_jieling_protocols_RedPackageDetailRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_RedPackageDetailRequest_descriptor, new java.lang.String[] { "Id", }); internal_static_com_ljsd_jieling_protocols_RedPackageDetailResponse_descriptor = - getDescriptor().getMessageTypes().get(56); + getDescriptor().getMessageTypes().get(57); internal_static_com_ljsd_jieling_protocols_RedPackageDetailResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_RedPackageDetailResponse_descriptor, new java.lang.String[] { "Info", "RemainTime", "SendName", "Head", "HeadFrame", }); internal_static_com_ljsd_jieling_protocols_RedPackageLikeRequest_descriptor = - getDescriptor().getMessageTypes().get(57); + getDescriptor().getMessageTypes().get(58); internal_static_com_ljsd_jieling_protocols_RedPackageLikeRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_RedPackageLikeRequest_descriptor, new java.lang.String[] { "Uid", }); internal_static_com_ljsd_jieling_protocols_GetAllSendLikeResponse_descriptor = - getDescriptor().getMessageTypes().get(58); + getDescriptor().getMessageTypes().get(59); internal_static_com_ljsd_jieling_protocols_GetAllSendLikeResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_GetAllSendLikeResponse_descriptor, new java.lang.String[] { "Uid", }); + internal_static_com_ljsd_jieling_protocols_GuildSkill_descriptor = + getDescriptor().getMessageTypes().get(60); + internal_static_com_ljsd_jieling_protocols_GuildSkill_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_GuildSkill_descriptor, + new java.lang.String[] { "Type", "Level", }); + internal_static_com_ljsd_jieling_protocols_GetAllGuildSkillResponse_descriptor = + getDescriptor().getMessageTypes().get(61); + internal_static_com_ljsd_jieling_protocols_GetAllGuildSkillResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_GetAllGuildSkillResponse_descriptor, + new java.lang.String[] { "Skill", }); + internal_static_com_ljsd_jieling_protocols_GuildSkillLevelUpRequest_descriptor = + getDescriptor().getMessageTypes().get(62); + internal_static_com_ljsd_jieling_protocols_GuildSkillLevelUpRequest_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_GuildSkillLevelUpRequest_descriptor, + new java.lang.String[] { "Type", }); + internal_static_com_ljsd_jieling_protocols_ResetGuildSkillRequest_descriptor = + getDescriptor().getMessageTypes().get(63); + internal_static_com_ljsd_jieling_protocols_ResetGuildSkillRequest_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_ResetGuildSkillRequest_descriptor, + new java.lang.String[] { "Type", }); + internal_static_com_ljsd_jieling_protocols_ResetGuildSkillResponse_descriptor = + getDescriptor().getMessageTypes().get(64); + internal_static_com_ljsd_jieling_protocols_ResetGuildSkillResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_ResetGuildSkillResponse_descriptor, + new java.lang.String[] { "Drop", }); + internal_static_com_ljsd_jieling_protocols_GetCarChallenegListResponse_descriptor = + getDescriptor().getMessageTypes().get(65); + internal_static_com_ljsd_jieling_protocols_GetCarChallenegListResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_GetCarChallenegListResponse_descriptor, + new java.lang.String[] { "RankInfo", "MyRank", "MyScore", }); + internal_static_com_ljsd_jieling_protocols_FamilyFeteRequest_descriptor = + getDescriptor().getMessageTypes().get(66); + internal_static_com_ljsd_jieling_protocols_FamilyFeteRequest_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_FamilyFeteRequest_descriptor, + new java.lang.String[] { "Type", }); + internal_static_com_ljsd_jieling_protocols_FamilyFeteResponse_descriptor = + getDescriptor().getMessageTypes().get(67); + internal_static_com_ljsd_jieling_protocols_FamilyFeteResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_FamilyFeteResponse_descriptor, + new java.lang.String[] { "CurExp", }); + internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardRequest_descriptor = + getDescriptor().getMessageTypes().get(68); + internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardRequest_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardRequest_descriptor, + new java.lang.String[] { "Id", }); + internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardResponse_descriptor = + getDescriptor().getMessageTypes().get(69); + internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_FamilyGetFeteRewardResponse_descriptor, + new java.lang.String[] { }); + internal_static_com_ljsd_jieling_protocols_FamilyFeteRewardProcessIndication_descriptor = + getDescriptor().getMessageTypes().get(70); + internal_static_com_ljsd_jieling_protocols_FamilyFeteRewardProcessIndication_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_FamilyFeteRewardProcessIndication_descriptor, + new java.lang.String[] { "Score", }); + internal_static_com_ljsd_jieling_protocols_DeathPathInfo_descriptor = + getDescriptor().getMessageTypes().get(71); + internal_static_com_ljsd_jieling_protocols_DeathPathInfo_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_DeathPathInfo_descriptor, + new java.lang.String[] { "PathId", "GuildId", }); + internal_static_com_ljsd_jieling_protocols_GetDeathPathStatusResponse_descriptor = + getDescriptor().getMessageTypes().get(72); + internal_static_com_ljsd_jieling_protocols_GetDeathPathStatusResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_GetDeathPathStatusResponse_descriptor, + new java.lang.String[] { "Status", }); + internal_static_com_ljsd_jieling_protocols_GetDeathPathInfoResponse_descriptor = + getDescriptor().getMessageTypes().get(73); + internal_static_com_ljsd_jieling_protocols_GetDeathPathInfoResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_GetDeathPathInfoResponse_descriptor, + new java.lang.String[] { "OverTime", "ChallengeCount", "Infos", }); + internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathRequest_descriptor = + getDescriptor().getMessageTypes().get(74); + internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathRequest_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathRequest_descriptor, + new java.lang.String[] { "PathId", }); + internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathResponse_descriptor = + getDescriptor().getMessageTypes().get(75); + internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_ChallengeDeathPathResponse_descriptor, + new java.lang.String[] { "FightData", "Damage", "Drop", }); return null; } }; diff --git a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/FightInfoProto.java b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/FightInfoProto.java index a4838bf44..a3fad4054 100644 --- a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/FightInfoProto.java +++ b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/FightInfoProto.java @@ -22819,6 +22819,1088 @@ public final class FightInfoProto { // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.MainLevelFightUpdateIndication) } + public interface FastFightChallengeRequestOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 type = 1; + /** + * optional int32 type = 1; + * + *
+     *类型 1:车迟斗法挑战boss 2:车迟斗法抢夺
+     * 
+ */ + boolean hasType(); + /** + * optional int32 type = 1; + * + *
+     *类型 1:车迟斗法挑战boss 2:车迟斗法抢夺
+     * 
+ */ + int getType(); + + // optional int32 challeageId = 2; + /** + * optional int32 challeageId = 2; + * + *
+     *挑战id
+     * 
+ */ + boolean hasChalleageId(); + /** + * optional int32 challeageId = 2; + * + *
+     *挑战id
+     * 
+ */ + int getChalleageId(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FastFightChallengeRequest} + */ + public static final class FastFightChallengeRequest extends + com.google.protobuf.GeneratedMessage + implements FastFightChallengeRequestOrBuilder { + // Use FastFightChallengeRequest.newBuilder() to construct. + private FastFightChallengeRequest(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private FastFightChallengeRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final FastFightChallengeRequest defaultInstance; + public static FastFightChallengeRequest getDefaultInstance() { + return defaultInstance; + } + + public FastFightChallengeRequest getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private FastFightChallengeRequest( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + type_ = input.readInt32(); + break; + } + case 16: { + bitField0_ |= 0x00000002; + challeageId_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_FastFightChallengeRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_FastFightChallengeRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest.class, com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public FastFightChallengeRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new FastFightChallengeRequest(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 type = 1; + public static final int TYPE_FIELD_NUMBER = 1; + private int type_; + /** + * optional int32 type = 1; + * + *
+     *类型 1:车迟斗法挑战boss 2:车迟斗法抢夺
+     * 
+ */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 type = 1; + * + *
+     *类型 1:车迟斗法挑战boss 2:车迟斗法抢夺
+     * 
+ */ + public int getType() { + return type_; + } + + // optional int32 challeageId = 2; + public static final int CHALLEAGEID_FIELD_NUMBER = 2; + private int challeageId_; + /** + * optional int32 challeageId = 2; + * + *
+     *挑战id
+     * 
+ */ + public boolean hasChalleageId() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 challeageId = 2; + * + *
+     *挑战id
+     * 
+ */ + public int getChalleageId() { + return challeageId_; + } + + private void initFields() { + type_ = 0; + challeageId_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, type_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeInt32(2, challeageId_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, type_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(2, challeageId_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FastFightChallengeRequest} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_FastFightChallengeRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_FastFightChallengeRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest.class, com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + type_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + challeageId_ = 0; + bitField0_ = (bitField0_ & ~0x00000002); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_FastFightChallengeRequest_descriptor; + } + + public com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest build() { + com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest buildPartial() { + com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest result = new com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.type_ = type_; + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000002; + } + result.challeageId_ = challeageId_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest) { + return mergeFrom((com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest other) { + if (other == com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest.getDefaultInstance()) return this; + if (other.hasType()) { + setType(other.getType()); + } + if (other.hasChalleageId()) { + setChalleageId(other.getChalleageId()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeRequest) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 type = 1; + private int type_ ; + /** + * optional int32 type = 1; + * + *
+       *类型 1:车迟斗法挑战boss 2:车迟斗法抢夺
+       * 
+ */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 type = 1; + * + *
+       *类型 1:车迟斗法挑战boss 2:车迟斗法抢夺
+       * 
+ */ + public int getType() { + return type_; + } + /** + * optional int32 type = 1; + * + *
+       *类型 1:车迟斗法挑战boss 2:车迟斗法抢夺
+       * 
+ */ + public Builder setType(int value) { + bitField0_ |= 0x00000001; + type_ = value; + onChanged(); + return this; + } + /** + * optional int32 type = 1; + * + *
+       *类型 1:车迟斗法挑战boss 2:车迟斗法抢夺
+       * 
+ */ + public Builder clearType() { + bitField0_ = (bitField0_ & ~0x00000001); + type_ = 0; + onChanged(); + return this; + } + + // optional int32 challeageId = 2; + private int challeageId_ ; + /** + * optional int32 challeageId = 2; + * + *
+       *挑战id
+       * 
+ */ + public boolean hasChalleageId() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 challeageId = 2; + * + *
+       *挑战id
+       * 
+ */ + public int getChalleageId() { + return challeageId_; + } + /** + * optional int32 challeageId = 2; + * + *
+       *挑战id
+       * 
+ */ + public Builder setChalleageId(int value) { + bitField0_ |= 0x00000002; + challeageId_ = value; + onChanged(); + return this; + } + /** + * optional int32 challeageId = 2; + * + *
+       *挑战id
+       * 
+ */ + public Builder clearChalleageId() { + bitField0_ = (bitField0_ & ~0x00000002); + challeageId_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.FastFightChallengeRequest) + } + + static { + defaultInstance = new FastFightChallengeRequest(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.FastFightChallengeRequest) + } + + public interface FastFightChallengeResponseOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 score = 1; + /** + * optional int32 score = 1; + * + *
+     *获取积分信息
+     * 
+ */ + boolean hasScore(); + /** + * optional int32 score = 1; + * + *
+     *获取积分信息
+     * 
+ */ + int getScore(); + + // optional int32 hurt = 2; + /** + * optional int32 hurt = 2; + * + *
+     * 伤害值
+     * 
+ */ + boolean hasHurt(); + /** + * optional int32 hurt = 2; + * + *
+     * 伤害值
+     * 
+ */ + int getHurt(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FastFightChallengeResponse} + */ + public static final class FastFightChallengeResponse extends + com.google.protobuf.GeneratedMessage + implements FastFightChallengeResponseOrBuilder { + // Use FastFightChallengeResponse.newBuilder() to construct. + private FastFightChallengeResponse(com.google.protobuf.GeneratedMessage.Builder builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private FastFightChallengeResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final FastFightChallengeResponse defaultInstance; + public static FastFightChallengeResponse getDefaultInstance() { + return defaultInstance; + } + + public FastFightChallengeResponse getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private FastFightChallengeResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + initFields(); + 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; + default: { + if (!parseUnknownField(input, unknownFields, + extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: { + bitField0_ |= 0x00000001; + score_ = input.readInt32(); + break; + } + case 16: { + bitField0_ |= 0x00000002; + hurt_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e.getMessage()).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_FastFightChallengeResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_FastFightChallengeResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse.class, com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse.Builder.class); + } + + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public FastFightChallengeResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new FastFightChallengeResponse(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 score = 1; + public static final int SCORE_FIELD_NUMBER = 1; + private int score_; + /** + * optional int32 score = 1; + * + *
+     *获取积分信息
+     * 
+ */ + public boolean hasScore() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 score = 1; + * + *
+     *获取积分信息
+     * 
+ */ + public int getScore() { + return score_; + } + + // optional int32 hurt = 2; + public static final int HURT_FIELD_NUMBER = 2; + private int hurt_; + /** + * optional int32 hurt = 2; + * + *
+     * 伤害值
+     * 
+ */ + public boolean hasHurt() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 hurt = 2; + * + *
+     * 伤害值
+     * 
+ */ + public int getHurt() { + return hurt_; + } + + private void initFields() { + score_ = 0; + hurt_ = 0; + } + private byte memoizedIsInitialized = -1; + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized != -1) return isInitialized == 1; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeInt32(1, score_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeInt32(2, hurt_); + } + getUnknownFields().writeTo(output); + } + + private int memoizedSerializedSize = -1; + public int getSerializedSize() { + int size = memoizedSerializedSize; + if (size != -1) return size; + + size = 0; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(1, score_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(2, hurt_); + } + size += getUnknownFields().getSerializedSize(); + memoizedSerializedSize = size; + return size; + } + + private static final long serialVersionUID = 0L; + @java.lang.Override + protected java.lang.Object writeReplace() + throws java.io.ObjectStreamException { + return super.writeReplace(); + } + + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input, extensionRegistry); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return PARSER.parseFrom(input, extensionRegistry); + } + + public static Builder newBuilder() { return Builder.create(); } + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder(com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse prototype) { + return newBuilder().mergeFrom(prototype); + } + public Builder toBuilder() { return newBuilder(this); } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.FastFightChallengeResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder + implements com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_FastFightChallengeResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_FastFightChallengeResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse.class, com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessage.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { + } + } + private static Builder create() { + return new Builder(); + } + + public Builder clear() { + super.clear(); + score_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + hurt_ = 0; + bitField0_ = (bitField0_ & ~0x00000002); + return this; + } + + public Builder clone() { + return create().mergeFrom(buildPartial()); + } + + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_FastFightChallengeResponse_descriptor; + } + + public com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse build() { + com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse buildPartial() { + com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse result = new com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.score_ = score_; + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000002; + } + result.hurt_ = hurt_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse) { + return mergeFrom((com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse other) { + if (other == com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse.getDefaultInstance()) return this; + if (other.hasScore()) { + setScore(other.getScore()); + } + if (other.hasHurt()) { + setHurt(other.getHurt()); + } + this.mergeUnknownFields(other.getUnknownFields()); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.FightInfoProto.FastFightChallengeResponse) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 score = 1; + private int score_ ; + /** + * optional int32 score = 1; + * + *
+       *获取积分信息
+       * 
+ */ + public boolean hasScore() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional int32 score = 1; + * + *
+       *获取积分信息
+       * 
+ */ + public int getScore() { + return score_; + } + /** + * optional int32 score = 1; + * + *
+       *获取积分信息
+       * 
+ */ + public Builder setScore(int value) { + bitField0_ |= 0x00000001; + score_ = value; + onChanged(); + return this; + } + /** + * optional int32 score = 1; + * + *
+       *获取积分信息
+       * 
+ */ + public Builder clearScore() { + bitField0_ = (bitField0_ & ~0x00000001); + score_ = 0; + onChanged(); + return this; + } + + // optional int32 hurt = 2; + private int hurt_ ; + /** + * optional int32 hurt = 2; + * + *
+       * 伤害值
+       * 
+ */ + public boolean hasHurt() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional int32 hurt = 2; + * + *
+       * 伤害值
+       * 
+ */ + public int getHurt() { + return hurt_; + } + /** + * optional int32 hurt = 2; + * + *
+       * 伤害值
+       * 
+ */ + public Builder setHurt(int value) { + bitField0_ |= 0x00000002; + hurt_ = value; + onChanged(); + return this; + } + /** + * optional int32 hurt = 2; + * + *
+       * 伤害值
+       * 
+ */ + public Builder clearHurt() { + bitField0_ = (bitField0_ & ~0x00000002); + hurt_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.FastFightChallengeResponse) + } + + static { + defaultInstance = new FastFightChallengeResponse(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.FastFightChallengeResponse) + } + private static com.google.protobuf.Descriptors.Descriptor internal_static_com_ljsd_jieling_protocols_FightStartRequest_descriptor; private static @@ -22964,6 +24046,16 @@ public final class FightInfoProto { private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_com_ljsd_jieling_protocols_MainLevelFightUpdateIndication_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_FastFightChallengeRequest_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_FastFightChallengeRequest_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_FastFightChallengeResponse_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_FastFightChallengeResponse_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { @@ -23060,7 +24152,10 @@ public final class FightInfoProto { "nLevelRankInfo\030\002 \001(\0132-.com.ljsd.jieling." + "protocols.MainLevelRankInfo\"@\n\036MainLevel" + "FightUpdateIndication\022\017\n\007fightId\030\001 \001(\005\022\r" + - "\n\005state\030\002 \001(\005B\002H\001" + "\n\005state\030\002 \001(\005\">\n\031FastFightChallengeReque" + + "st\022\014\n\004type\030\001 \001(\005\022\023\n\013challeageId\030\002 \001(\005\"9\n" + + "\032FastFightChallengeResponse\022\r\n\005score\030\001 \001", + "(\005\022\014\n\004hurt\030\002 \001(\005B\002H\001" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -23241,6 +24336,18 @@ public final class FightInfoProto { com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_MainLevelFightUpdateIndication_descriptor, new java.lang.String[] { "FightId", "State", }); + internal_static_com_ljsd_jieling_protocols_FastFightChallengeRequest_descriptor = + getDescriptor().getMessageTypes().get(29); + internal_static_com_ljsd_jieling_protocols_FastFightChallengeRequest_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_FastFightChallengeRequest_descriptor, + new java.lang.String[] { "Type", "ChalleageId", }); + internal_static_com_ljsd_jieling_protocols_FastFightChallengeResponse_descriptor = + getDescriptor().getMessageTypes().get(30); + internal_static_com_ljsd_jieling_protocols_FastFightChallengeResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_FastFightChallengeResponse_descriptor, + new java.lang.String[] { "Score", "Hurt", }); return null; } }; diff --git a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/MessageTypeProto.java b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/MessageTypeProto.java index 0e3d3129d..db53a89c9 100644 --- a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/MessageTypeProto.java +++ b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/MessageTypeProto.java @@ -565,6 +565,14 @@ public final class MessageTypeProto { * */ CHAMPION_GUESS_SUCCESS_INDICATION(87, 10220), + /** + * CAR_DELAY_PROGRESS_INDICATION = 10221; + * + *
+     *车迟进度变更
+     * 
+ */ + CAR_DELAY_PROGRESS_INDICATION(88, 10221), /** * DRAW_HERO_REQUEST = 10300; * @@ -572,11 +580,11 @@ public final class MessageTypeProto { * D 10300 * */ - DRAW_HERO_REQUEST(88, 10300), + DRAW_HERO_REQUEST(89, 10300), /** * DRAW_HERO_RESPONSE = 10301; */ - DRAW_HERO_RESPONSE(89, 10301), + DRAW_HERO_RESPONSE(90, 10301), /** * DEL_FRIEND_REQUEST = 10302; * @@ -584,11 +592,11 @@ public final class MessageTypeProto { *删除好友 * */ - DEL_FRIEND_REQUEST(90, 10302), + DEL_FRIEND_REQUEST(91, 10302), /** * DEL_FRIEND_RESPONSE = 10303; */ - DEL_FRIEND_RESPONSE(91, 10303), + DEL_FRIEND_RESPONSE(92, 10303), /** * DIFFICULT_MAP_OPTION_RECORD_REQUEST = 10304; * @@ -596,11 +604,11 @@ public final class MessageTypeProto { *精英副本选择记录 * */ - DIFFICULT_MAP_OPTION_RECORD_REQUEST(92, 10304), + DIFFICULT_MAP_OPTION_RECORD_REQUEST(93, 10304), /** * DIFFICULT_MAP_OPTION_RECORD_RESPONSE = 10305; */ - DIFFICULT_MAP_OPTION_RECORD_RESPONSE(93, 10305), + DIFFICULT_MAP_OPTION_RECORD_RESPONSE(94, 10305), /** * DIRECT_BUY_GOODS_INDICATION = 10306; * @@ -608,7 +616,7 @@ public final class MessageTypeProto { *道具直购 * */ - DIRECT_BUY_GOODS_INDICATION(94, 10306), + DIRECT_BUY_GOODS_INDICATION(95, 10306), /** * DAILY_CHALLENGE_REQUEST = 10307; * @@ -616,11 +624,47 @@ public final class MessageTypeProto { *日常挑战 * */ - DAILY_CHALLENGE_REQUEST(95, 10307), + DAILY_CHALLENGE_REQUEST(96, 10307), /** * DAILY_CHALLENGE_RESPONSE = 10308; */ - DAILY_CHALLENGE_RESPONSE(96, 10308), + DAILY_CHALLENGE_RESPONSE(97, 10308), + /** + * DEATH_PATH_GET_STATUS_REQUEST = 10309; + * + *
+     *获取十绝阵状态信息
+     * 
+ */ + DEATH_PATH_GET_STATUS_REQUEST(98, 10309), + /** + * DEATH_PATH_GET_STATUS_RESPONSE = 10310; + */ + DEATH_PATH_GET_STATUS_RESPONSE(99, 10310), + /** + * DEATH_PATH_INFO_REQUEST = 10311; + * + *
+     *十绝阵内信息
+     * 
+ */ + DEATH_PATH_INFO_REQUEST(100, 10311), + /** + * DEATH_PATH_INFO_RESPONSE = 10312; + */ + DEATH_PATH_INFO_RESPONSE(101, 10312), + /** + * DEATH_PATH_CHALLENGE_REQUEST = 10313; + * + *
+     *挑战十绝阵
+     * 
+ */ + DEATH_PATH_CHALLENGE_REQUEST(102, 10313), + /** + * DEATH_PATH_CHALLENGE_RESPONSE = 10314; + */ + DEATH_PATH_CHALLENGE_RESPONSE(103, 10314), /** * ERROR_CODE_INDICATION = 10400; * @@ -628,7 +672,7 @@ public final class MessageTypeProto { * E 10400 * */ - ERROR_CODE_INDICATION(97, 10400), + ERROR_CODE_INDICATION(104, 10400), /** * EQUIP_WEAR_REQUEST = 10402; * @@ -636,11 +680,11 @@ public final class MessageTypeProto { * 穿装备 * */ - EQUIP_WEAR_REQUEST(98, 10402), + EQUIP_WEAR_REQUEST(105, 10402), /** * EQUIP_WEAR_RESPONSE = 10403; */ - EQUIP_WEAR_RESPONSE(99, 10403), + EQUIP_WEAR_RESPONSE(106, 10403), /** * EQUIP_UNLOAD_OPT_REQUEST = 10404; * @@ -648,11 +692,11 @@ public final class MessageTypeProto { *脱下装备操作 * */ - EQUIP_UNLOAD_OPT_REQUEST(100, 10404), + EQUIP_UNLOAD_OPT_REQUEST(107, 10404), /** * EQUIP_UNLOAD_OPT_RESPONSE = 10405; */ - EQUIP_UNLOAD_OPT_RESPONSE(101, 10405), + EQUIP_UNLOAD_OPT_RESPONSE(108, 10405), /** * EVENT_UPDATE_REQUEST = 10406; * @@ -660,11 +704,11 @@ public final class MessageTypeProto { * 更新事件 * */ - EVENT_UPDATE_REQUEST(102, 10406), + EVENT_UPDATE_REQUEST(109, 10406), /** * EVENT_UPDATE_RESPONSE = 10407; */ - EVENT_UPDATE_RESPONSE(103, 10407), + EVENT_UPDATE_RESPONSE(110, 10407), /** * EQUIP_LOCK_REQUEST = 10408; * @@ -672,11 +716,11 @@ public final class MessageTypeProto { *装备锁定 * */ - EQUIP_LOCK_REQUEST(104, 10408), + EQUIP_LOCK_REQUEST(111, 10408), /** * EQUIP_LOCK_RESPONSE = 10409; */ - EQUIP_LOCK_RESPONSE(105, 10409), + EQUIP_LOCK_RESPONSE(112, 10409), /** * ENDLESS_MAP_HERO_INFO_REQUEST = 10410; * @@ -684,11 +728,11 @@ public final class MessageTypeProto { *无尽副本英雄信息 * */ - ENDLESS_MAP_HERO_INFO_REQUEST(106, 10410), + ENDLESS_MAP_HERO_INFO_REQUEST(113, 10410), /** * ENDLESS_MAP_HERO_INFO_RESPONSE = 10411; */ - ENDLESS_MAP_HERO_INFO_RESPONSE(107, 10411), + ENDLESS_MAP_HERO_INFO_RESPONSE(114, 10411), /** * ENDLESS_MAP_RESET_REQUEST = 10412; * @@ -696,11 +740,11 @@ public final class MessageTypeProto { *无尽副本重置 * */ - ENDLESS_MAP_RESET_REQUEST(108, 10412), + ENDLESS_MAP_RESET_REQUEST(115, 10412), /** * ENDLESS_MAP_RESET_RESPONSE = 10413; */ - ENDLESS_MAP_RESET_RESPONSE(109, 10413), + ENDLESS_MAP_RESET_RESPONSE(116, 10413), /** * ENDLESS_MAP_SIGN_REQUEST = 10414; * @@ -708,11 +752,11 @@ public final class MessageTypeProto { *无尽副本设置标记 * */ - ENDLESS_MAP_SIGN_REQUEST(110, 10414), + ENDLESS_MAP_SIGN_REQUEST(117, 10414), /** * ENDLESS_MAP_SIGN_RESPONSE = 10415; */ - ENDLESS_MAP_SIGN_RESPONSE(111, 10415), + ENDLESS_MAP_SIGN_RESPONSE(118, 10415), /** * ENDLESS_EXECUTION_REFRESH_REQUEST = 10416; * @@ -720,11 +764,11 @@ public final class MessageTypeProto { *无尽副本请求刷新行动力 * */ - ENDLESS_EXECUTION_REFRESH_REQUEST(112, 10416), + ENDLESS_EXECUTION_REFRESH_REQUEST(119, 10416), /** * ENDLESS_EXECUTION_REFRESH_RESPONSE = 10417; */ - ENDLESS_EXECUTION_REFRESH_RESPONSE(113, 10417), + ENDLESS_EXECUTION_REFRESH_RESPONSE(120, 10417), /** * ENDLESS_OUT_CONSUME_REQUEST = 10418; * @@ -732,11 +776,11 @@ public final class MessageTypeProto { *无尽副本最后统计信息 * */ - ENDLESS_OUT_CONSUME_REQUEST(114, 10418), + ENDLESS_OUT_CONSUME_REQUEST(121, 10418), /** * ENDLESS_OUT_CONSUME_RESPONSE = 10419; */ - ENDLESS_OUT_CONSUME_RESPONSE(115, 10419), + ENDLESS_OUT_CONSUME_RESPONSE(122, 10419), /** * ENDLESS_REFRESH_INDICAITON = 10420; * @@ -744,7 +788,7 @@ public final class MessageTypeProto { *无尽副本推送刷新时间 * */ - ENDLESS_REFRESH_INDICAITON(116, 10420), + ENDLESS_REFRESH_INDICAITON(123, 10420), /** * ENDLESS_MIN_MAP_INFO_REQUEST = 10421; * @@ -752,11 +796,11 @@ public final class MessageTypeProto { *无尽副本小地图信息 * */ - ENDLESS_MIN_MAP_INFO_REQUEST(117, 10421), + ENDLESS_MIN_MAP_INFO_REQUEST(124, 10421), /** * ENDLESS_MIN_MAP_INFO_RESPONSE = 10422; */ - ENDLESS_MIN_MAP_INFO_RESPONSE(118, 10422), + ENDLESS_MIN_MAP_INFO_RESPONSE(125, 10422), /** * ENDLESS_MONSTER_REFRESH_INDICATION = 10423; * @@ -764,7 +808,7 @@ public final class MessageTypeProto { *无尽副本空地刷新小怪 * */ - ENDLESS_MONSTER_REFRESH_INDICATION(119, 10423), + ENDLESS_MONSTER_REFRESH_INDICATION(126, 10423), /** * ENDLESS_SET_SKIPFIGHT_REQUEST = 10424; * @@ -772,11 +816,11 @@ public final class MessageTypeProto { *无尽副本是否跳过战斗 * */ - ENDLESS_SET_SKIPFIGHT_REQUEST(120, 10424), + ENDLESS_SET_SKIPFIGHT_REQUEST(127, 10424), /** * ENDLESS_SET_SKIPFIGHT_RESPONSE = 10425; */ - ENDLESS_SET_SKIPFIGHT_RESPONSE(121, 10425), + ENDLESS_SET_SKIPFIGHT_RESPONSE(128, 10425), /** * ENDLESS_MAP_SET_TEAM_INDICATION = 10426; * @@ -784,7 +828,7 @@ public final class MessageTypeProto { *无尽副本修改编队推送 * */ - ENDLESS_MAP_SET_TEAM_INDICATION(122, 10426), + ENDLESS_MAP_SET_TEAM_INDICATION(129, 10426), /** * EXCHANGE_CDK_REQUEST = 10427; * @@ -792,7 +836,7 @@ public final class MessageTypeProto { *兑换cdkey * */ - EXCHANGE_CDK_REQUEST(123, 10427), + EXCHANGE_CDK_REQUEST(130, 10427), /** * EXCHANGE_CDK_RESPONSE = 10428; * @@ -800,7 +844,7 @@ public final class MessageTypeProto { *兑换cdkey * */ - EXCHANGE_CDK_RESPONSE(124, 10428), + EXCHANGE_CDK_RESPONSE(131, 10428), /** * ENDLESS_MAP_CHANGE_INDICATION = 10429; * @@ -808,7 +852,7 @@ public final class MessageTypeProto { *无尽地图修改推送 * */ - ENDLESS_MAP_CHANGE_INDICATION(125, 10429), + ENDLESS_MAP_CHANGE_INDICATION(132, 10429), /** * FIGHT_START_REQUEST = 10500; * @@ -816,22 +860,22 @@ public final class MessageTypeProto { * F 10500 * */ - FIGHT_START_REQUEST(126, 10500), + FIGHT_START_REQUEST(133, 10500), /** * FIGHT_START_RESPONSE = 10501; */ - FIGHT_START_RESPONSE(127, 10501), + FIGHT_START_RESPONSE(134, 10501), /** * FIGHT_END_REQUEST = 10502; * *
      * 
*/ - FIGHT_END_REQUEST(128, 10502), + FIGHT_END_REQUEST(135, 10502), /** * FIGHT_END_RESPONSE = 10503; */ - FIGHT_END_RESPONSE(129, 10503), + FIGHT_END_RESPONSE(136, 10503), /** * FRIEND_INVITE_REQUEST = 10504; * @@ -839,11 +883,11 @@ public final class MessageTypeProto { * 好友申请 * */ - FRIEND_INVITE_REQUEST(130, 10504), + FRIEND_INVITE_REQUEST(137, 10504), /** * FRIEND_INVITE_RESPONSE = 10505; */ - FRIEND_INVITE_RESPONSE(131, 10505), + FRIEND_INVITE_RESPONSE(138, 10505), /** * FRIEND_INVITE_OPERATION_REQUEST = 10506; * @@ -851,11 +895,11 @@ public final class MessageTypeProto { *同意或者拒绝添加好友 * */ - FRIEND_INVITE_OPERATION_REQUEST(132, 10506), + FRIEND_INVITE_OPERATION_REQUEST(139, 10506), /** * FRIEND_INVITE_OPERATION_RESPONSE = 10507; */ - FRIEND_INVITE_OPERATION_RESPONSE(133, 10507), + FRIEND_INVITE_OPERATION_RESPONSE(140, 10507), /** * FRIEND_TAKE_HEART_REQUEST = 10508; * @@ -863,11 +907,11 @@ public final class MessageTypeProto { * 领取赠送体力 * */ - FRIEND_TAKE_HEART_REQUEST(134, 10508), + FRIEND_TAKE_HEART_REQUEST(141, 10508), /** * FRIEND_TAKE_HEART_RESPONSE = 10509; */ - FRIEND_TAKE_HEART_RESPONSE(135, 10509), + FRIEND_TAKE_HEART_RESPONSE(142, 10509), /** * FRIEND_GIVE_PRESENT_REQUEST = 10510; * @@ -875,11 +919,11 @@ public final class MessageTypeProto { *好友赠送体力 * */ - FRIEND_GIVE_PRESENT_REQUEST(136, 10510), + FRIEND_GIVE_PRESENT_REQUEST(143, 10510), /** * FRIEND_GIVE_PRESENT_RESPONSE = 10511; */ - FRIEND_GIVE_PRESENT_RESPONSE(137, 10511), + FRIEND_GIVE_PRESENT_RESPONSE(144, 10511), /** * FRIEND_SEARCH_REQUEST = 10512; * @@ -887,11 +931,11 @@ public final class MessageTypeProto { *搜索好友 * */ - FRIEND_SEARCH_REQUEST(138, 10512), + FRIEND_SEARCH_REQUEST(145, 10512), /** * FRIEND_SEARCH_RESPONSE = 10513; */ - FRIEND_SEARCH_RESPONSE(139, 10513), + FRIEND_SEARCH_RESPONSE(146, 10513), /** * FIVE_PLAYER_REFLUSH_INDICATION = 10514; * @@ -899,7 +943,7 @@ public final class MessageTypeProto { *五点玩家信息刷新 * */ - FIVE_PLAYER_REFLUSH_INDICATION(140, 10514), + FIVE_PLAYER_REFLUSH_INDICATION(147, 10514), /** * SERVER_FIVE_REQEUST = 10516; * @@ -907,7 +951,7 @@ public final class MessageTypeProto { *服务器专用用于五点刷新用户数据 * */ - SERVER_FIVE_REQEUST(141, 10516), + SERVER_FIVE_REQEUST(148, 10516), /** * FB_STAR_REWARD_REQUEST = 10517; * @@ -915,11 +959,11 @@ public final class MessageTypeProto { *副本星级奖励 * */ - FB_STAR_REWARD_REQUEST(142, 10517), + FB_STAR_REWARD_REQUEST(149, 10517), /** * FB_STAR_REWARD_RESPONSE = 10518; */ - FB_STAR_REWARD_RESPONSE(143, 10518), + FB_STAR_REWARD_RESPONSE(150, 10518), /** * FAMILY_CREATE_REQUEST = 10519; * @@ -927,11 +971,11 @@ public final class MessageTypeProto { *创建公会 * */ - FAMILY_CREATE_REQUEST(144, 10519), + FAMILY_CREATE_REQUEST(151, 10519), /** * FAMILY_CREATE_RESPONSE = 10520; */ - FAMILY_CREATE_RESPONSE(145, 10520), + FAMILY_CREATE_RESPONSE(152, 10520), /** * FAMILY_RECOMEND_REQUEST = 10521; * @@ -939,11 +983,11 @@ public final class MessageTypeProto { * 公会推荐列表 * */ - FAMILY_RECOMEND_REQUEST(146, 10521), + FAMILY_RECOMEND_REQUEST(153, 10521), /** * FAMILY_RECOMEND_RESPONSE = 10522; */ - FAMILY_RECOMEND_RESPONSE(147, 10522), + FAMILY_RECOMEND_RESPONSE(154, 10522), /** * FAMILY_JOIN_REQUEST = 10523; * @@ -951,11 +995,11 @@ public final class MessageTypeProto { * 加入公会 * */ - FAMILY_JOIN_REQUEST(148, 10523), + FAMILY_JOIN_REQUEST(155, 10523), /** * FAMILY_JOIN_RESPONSE = 10524; */ - FAMILY_JOIN_RESPONSE(149, 10524), + FAMILY_JOIN_RESPONSE(156, 10524), /** * FAMILY_APPLY_REQEUST = 10525; * @@ -963,11 +1007,11 @@ public final class MessageTypeProto { *申请公会 * */ - FAMILY_APPLY_REQEUST(150, 10525), + FAMILY_APPLY_REQEUST(157, 10525), /** * FAMILY_APPLY_RESPONSE = 10526; */ - FAMILY_APPLY_RESPONSE(151, 10526), + FAMILY_APPLY_RESPONSE(158, 10526), /** * FAMILY_SEARCH_REQEUST = 10527; * @@ -975,11 +1019,11 @@ public final class MessageTypeProto { * 公会搜素 * */ - FAMILY_SEARCH_REQEUST(152, 10527), + FAMILY_SEARCH_REQEUST(159, 10527), /** * FAMILY_SEARCH_RESPONSE = 10528; */ - FAMILY_SEARCH_RESPONSE(153, 10528), + FAMILY_SEARCH_RESPONSE(160, 10528), /** * FAMILY_JOIN_INDICATION = 10529; * @@ -987,7 +1031,7 @@ public final class MessageTypeProto { *公会推送 * */ - FAMILY_JOIN_INDICATION(154, 10529), + FAMILY_JOIN_INDICATION(161, 10529), /** * FAMILY_GET_INFO_REQUEST = 10530; * @@ -995,11 +1039,11 @@ public final class MessageTypeProto { * 获取公会信息 * */ - FAMILY_GET_INFO_REQUEST(155, 10530), + FAMILY_GET_INFO_REQUEST(162, 10530), /** * FAMILY_GET_INFO_RESPONSE = 10531; */ - FAMILY_GET_INFO_RESPONSE(156, 10531), + FAMILY_GET_INFO_RESPONSE(163, 10531), /** * FAMILY_GET_LOG_REQUEST = 10532; * @@ -1007,11 +1051,11 @@ public final class MessageTypeProto { * 获取公会日志信息 * */ - FAMILY_GET_LOG_REQUEST(157, 10532), + FAMILY_GET_LOG_REQUEST(164, 10532), /** * FAMILY_GET_LOG_RESPOSNE = 10533; */ - FAMILY_GET_LOG_RESPOSNE(158, 10533), + FAMILY_GET_LOG_RESPOSNE(165, 10533), /** * FAMILY_GET_MEMBER_REQUEST = 10534; * @@ -1019,11 +1063,11 @@ public final class MessageTypeProto { * 获取公会成员信息 * */ - FAMILY_GET_MEMBER_REQUEST(159, 10534), + FAMILY_GET_MEMBER_REQUEST(166, 10534), /** * FAMILY_GET_MEMBER_RESPOSNE = 10535; */ - FAMILY_GET_MEMBER_RESPOSNE(160, 10535), + FAMILY_GET_MEMBER_RESPOSNE(167, 10535), /** * FAMILY_GET_APPLY_REQUEST = 10536; * @@ -1031,11 +1075,11 @@ public final class MessageTypeProto { * 获取申请列表信息 * */ - FAMILY_GET_APPLY_REQUEST(161, 10536), + FAMILY_GET_APPLY_REQUEST(168, 10536), /** * FAMILY_GET_APPLY_RESPOSNE = 10537; */ - FAMILY_GET_APPLY_RESPOSNE(162, 10537), + FAMILY_GET_APPLY_RESPOSNE(169, 10537), /** * FAMILY_OPERATION_APPLY_LIST_REQUEST = 10538; * @@ -1043,11 +1087,11 @@ public final class MessageTypeProto { *操作申请列表 * */ - FAMILY_OPERATION_APPLY_LIST_REQUEST(163, 10538), + FAMILY_OPERATION_APPLY_LIST_REQUEST(170, 10538), /** * FAMILY_OPERATION_APPLY_LIST_RESPONSE = 10539; */ - FAMILY_OPERATION_APPLY_LIST_RESPONSE(164, 10539), + FAMILY_OPERATION_APPLY_LIST_RESPONSE(171, 10539), /** * FAMILY_KICK_OUT_REQUEST = 10540; * @@ -1055,11 +1099,11 @@ public final class MessageTypeProto { * 公会踢人 * */ - FAMILY_KICK_OUT_REQUEST(165, 10540), + FAMILY_KICK_OUT_REQUEST(172, 10540), /** * FAMILY_KICK_OUT_RESPONSE = 10541; */ - FAMILY_KICK_OUT_RESPONSE(166, 10541), + FAMILY_KICK_OUT_RESPONSE(173, 10541), /** * FAMILY_APPOINTMENT_REQEUST = 10542; * @@ -1067,11 +1111,11 @@ public final class MessageTypeProto { * 公会委任 * */ - FAMILY_APPOINTMENT_REQEUST(167, 10542), + FAMILY_APPOINTMENT_REQEUST(174, 10542), /** * FAMILY_APPOINTMENT_RESPONSE = 10543; */ - FAMILY_APPOINTMENT_RESPONSE(168, 10543), + FAMILY_APPOINTMENT_RESPONSE(175, 10543), /** * FAMILY_KICK_INDICATION = 10544; * @@ -1079,7 +1123,7 @@ public final class MessageTypeProto { * 被踢出宗门 * */ - FAMILY_KICK_INDICATION(169, 10544), + FAMILY_KICK_INDICATION(176, 10544), /** * FAMILY_POSITION_UPDATE_INDICAITON = 10545; * @@ -1087,7 +1131,7 @@ public final class MessageTypeProto { * 公会成员职位变更 * */ - FAMILY_POSITION_UPDATE_INDICAITON(170, 10545), + FAMILY_POSITION_UPDATE_INDICAITON(177, 10545), /** * FAMILY_DISSOLUTION_REQUEST = 10546; * @@ -1095,11 +1139,11 @@ public final class MessageTypeProto { *解散公会 * */ - FAMILY_DISSOLUTION_REQUEST(171, 10546), + FAMILY_DISSOLUTION_REQUEST(178, 10546), /** * FAMILY_DISSOLUTION_RESPONSE = 10547; */ - FAMILY_DISSOLUTION_RESPONSE(172, 10547), + FAMILY_DISSOLUTION_RESPONSE(179, 10547), /** * FAMILY_CHANGE_NOTICE_REQUEST = 10548; * @@ -1107,11 +1151,11 @@ public final class MessageTypeProto { *编辑宣言 * */ - FAMILY_CHANGE_NOTICE_REQUEST(173, 10548), + FAMILY_CHANGE_NOTICE_REQUEST(180, 10548), /** * FAMILY_CHANGE_NOTICE_RESPONSE = 10549; */ - FAMILY_CHANGE_NOTICE_RESPONSE(174, 10549), + FAMILY_CHANGE_NOTICE_RESPONSE(181, 10549), /** * FAMILY_CHANGE_JOIN_TYPE_REQUEST = 10550; * @@ -1119,11 +1163,11 @@ public final class MessageTypeProto { * 修改公会加入类型 * */ - FAMILY_CHANGE_JOIN_TYPE_REQUEST(175, 10550), + FAMILY_CHANGE_JOIN_TYPE_REQUEST(182, 10550), /** * FAMILY_CHANGE_JOIN_TYPE_RESPONSE = 10551; */ - FAMILY_CHANGE_JOIN_TYPE_RESPONSE(176, 10551), + FAMILY_CHANGE_JOIN_TYPE_RESPONSE(183, 10551), /** * FAMILY_CHANGE_BASE_INDICATION = 10552; * @@ -1131,7 +1175,7 @@ public final class MessageTypeProto { * 公会信息变更推送 * */ - FAMILY_CHANGE_BASE_INDICATION(177, 10552), + FAMILY_CHANGE_BASE_INDICATION(184, 10552), /** * FAMILY_TRANSFER_CHAIRMAN_REQUEST = 10553; * @@ -1139,11 +1183,11 @@ public final class MessageTypeProto { * 转让会长 * */ - FAMILY_TRANSFER_CHAIRMAN_REQUEST(178, 10553), + FAMILY_TRANSFER_CHAIRMAN_REQUEST(185, 10553), /** * FAMILY_TRANSFER_CHAIRMAN_RESPONSE = 10554; */ - FAMILY_TRANSFER_CHAIRMAN_RESPONSE(179, 10554), + FAMILY_TRANSFER_CHAIRMAN_RESPONSE(186, 10554), /** * FAMILY_LEVEL_REQUEST = 10555; * @@ -1151,11 +1195,11 @@ public final class MessageTypeProto { *离开公会 * */ - FAMILY_LEVEL_REQUEST(180, 10555), + FAMILY_LEVEL_REQUEST(187, 10555), /** * FAMILY_LEVEL_RESPONSE = 10556; */ - FAMILY_LEVEL_RESPONSE(181, 10556), + FAMILY_LEVEL_RESPONSE(188, 10556), /** * FAMILY_QUICK_SET_DEFEND_REQEUST = 10557; * @@ -1163,11 +1207,11 @@ public final class MessageTypeProto { *公会一键布防 * */ - FAMILY_QUICK_SET_DEFEND_REQEUST(182, 10557), + FAMILY_QUICK_SET_DEFEND_REQEUST(189, 10557), /** * FAMILY_QUICK_SET_DEFEND_RESPONSE = 10558; */ - FAMILY_QUICK_SET_DEFEND_RESPONSE(183, 10558), + FAMILY_QUICK_SET_DEFEND_RESPONSE(190, 10558), /** * FAMILY_VIEW_DEFEND_REQUEST = 10559; * @@ -1175,11 +1219,11 @@ public final class MessageTypeProto { *查看公会布防信息 * */ - FAMILY_VIEW_DEFEND_REQUEST(184, 10559), + FAMILY_VIEW_DEFEND_REQUEST(191, 10559), /** * FAMILY_VIEW_DEFEND_RESPONSE = 10560; */ - FAMILY_VIEW_DEFEND_RESPONSE(185, 10560), + FAMILY_VIEW_DEFEND_RESPONSE(192, 10560), /** * FAMILY_VIEW_DEFEND_DETAIL_REQUEST = 10561; * @@ -1187,11 +1231,11 @@ public final class MessageTypeProto { *查看具体编队信息 * */ - FAMILY_VIEW_DEFEND_DETAIL_REQUEST(186, 10561), + FAMILY_VIEW_DEFEND_DETAIL_REQUEST(193, 10561), /** * FAMILY_VIEW_DEFEND_DETAIL_RESPONSE = 10562; */ - FAMILY_VIEW_DEFEND_DETAIL_RESPONSE(187, 10562), + FAMILY_VIEW_DEFEND_DETAIL_RESPONSE(194, 10562), /** * FAMILY_WALK_REQUEST = 10563; * @@ -1199,19 +1243,19 @@ public final class MessageTypeProto { *公会人员行走 * */ - FAMILY_WALK_REQUEST(188, 10563), + FAMILY_WALK_REQUEST(195, 10563), /** * FAMILY_WALK_RESPONSE = 10564; */ - FAMILY_WALK_RESPONSE(189, 10564), + FAMILY_WALK_RESPONSE(196, 10564), /** * FAMILY_WALK_INDICATION = 10565; */ - FAMILY_WALK_INDICATION(190, 10565), + FAMILY_WALK_INDICATION(197, 10565), /** * FAMILY_QUICK_SET_DEFEND_INDICATION = 10566; */ - FAMILY_QUICK_SET_DEFEND_INDICATION(191, 10566), + FAMILY_QUICK_SET_DEFEND_INDICATION(198, 10566), /** * FAMILY_FIGHT_INFO_REQUEST = 10567; * @@ -1219,11 +1263,11 @@ public final class MessageTypeProto { *公会对战具体信息 * */ - FAMILY_FIGHT_INFO_REQUEST(192, 10567), + FAMILY_FIGHT_INFO_REQUEST(199, 10567), /** * FAMILY_FIGHT_INFO_RESPONSE = 10568; */ - FAMILY_FIGHT_INFO_RESPONSE(193, 10568), + FAMILY_FIGHT_INFO_RESPONSE(200, 10568), /** * FAMILY_FIGHT_ROUND_INFO_REQUEST = 10569; * @@ -1231,11 +1275,11 @@ public final class MessageTypeProto { *公会战阶段信息 * */ - FAMILY_FIGHT_ROUND_INFO_REQUEST(194, 10569), + FAMILY_FIGHT_ROUND_INFO_REQUEST(201, 10569), /** * FAMILY_FIGHT_ROUND_INFO_RESPONSE = 10570; */ - FAMILY_FIGHT_ROUND_INFO_RESPONSE(195, 10570), + FAMILY_FIGHT_ROUND_INFO_RESPONSE(202, 10570), /** * FAMILY_FIGHT_MATCHING_SUCCESS_INDICATION = 10571; * @@ -1243,7 +1287,7 @@ public final class MessageTypeProto { *公会战匹配成功提示 * */ - FAMILY_FIGHT_MATCHING_SUCCESS_INDICATION(196, 10571), + FAMILY_FIGHT_MATCHING_SUCCESS_INDICATION(203, 10571), /** * FAMILY_FIGHT_ATTACK_REQUEST = 10572; * @@ -1251,11 +1295,11 @@ public final class MessageTypeProto { *公会战进攻 * */ - FAMILY_FIGHT_ATTACK_REQUEST(197, 10572), + FAMILY_FIGHT_ATTACK_REQUEST(204, 10572), /** * FAMILY_FIGHT_ATTACK_RESPONSE = 10573; */ - FAMILY_FIGHT_ATTACK_RESPONSE(198, 10573), + FAMILY_FIGHT_ATTACK_RESPONSE(205, 10573), /** * FAMILY_PERSONAL_FIGHT_RESULT_REQUEST = 10574; * @@ -1263,15 +1307,15 @@ public final class MessageTypeProto { *公会战个人战绩 * */ - FAMILY_PERSONAL_FIGHT_RESULT_REQUEST(199, 10574), + FAMILY_PERSONAL_FIGHT_RESULT_REQUEST(206, 10574), /** * FAMILY_PERSONAL_FIGHT_RESULT_RESPONSE = 10575; */ - FAMILY_PERSONAL_FIGHT_RESULT_RESPONSE(200, 10575), + FAMILY_PERSONAL_FIGHT_RESULT_RESPONSE(207, 10575), /** * FAMILY_DEFEATE_INDICATION = 10576; */ - FAMILY_DEFEATE_INDICATION(201, 10576), + FAMILY_DEFEATE_INDICATION(208, 10576), /** * FAMILY_FIGHT_TOTAL_RESULT_REQUEST = 10577; * @@ -1279,11 +1323,11 @@ public final class MessageTypeProto { *公会战总战绩 * */ - FAMILY_FIGHT_TOTAL_RESULT_REQUEST(202, 10577), + FAMILY_FIGHT_TOTAL_RESULT_REQUEST(209, 10577), /** * FAMILY_FIGHT_TOTAL_RESULT_RESPONSE = 10578; */ - FAMILY_FIGHT_TOTAL_RESULT_RESPONSE(203, 10578), + FAMILY_FIGHT_TOTAL_RESULT_RESPONSE(210, 10578), /** * FAMILY_CHANGE_ICON_REQUEST = 10579; * @@ -1291,11 +1335,11 @@ public final class MessageTypeProto { *修改公会图腾 * */ - FAMILY_CHANGE_ICON_REQUEST(204, 10579), + FAMILY_CHANGE_ICON_REQUEST(211, 10579), /** * FAMILY_CHANGE_ICON_RESPONSE = 10580; */ - FAMILY_CHANGE_ICON_RESPONSE(205, 10580), + FAMILY_CHANGE_ICON_RESPONSE(212, 10580), /** * FAMILY_ATTACK_BLOOD_REQUEST = 10581; * @@ -1303,11 +1347,11 @@ public final class MessageTypeProto { *查看攻击血量 * */ - FAMILY_ATTACK_BLOOD_REQUEST(206, 10581), + FAMILY_ATTACK_BLOOD_REQUEST(213, 10581), /** * FAMILY_ATTACK_BLOOD_RESPONSE = 10582; */ - FAMILY_ATTACK_BLOOD_RESPONSE(207, 10582), + FAMILY_ATTACK_BLOOD_RESPONSE(214, 10582), /** * FAMILY_REFUSE_JOIN_INDICATION = 10583; * @@ -1315,7 +1359,7 @@ public final class MessageTypeProto { *拒绝玩家加入工会indication * */ - FAMILY_REFUSE_JOIN_INDICATION(208, 10583), + FAMILY_REFUSE_JOIN_INDICATION(215, 10583), /** * FRIEND_BLACK_OPT_REQUEST = 10584; * @@ -1323,11 +1367,23 @@ public final class MessageTypeProto { * 黑名单操作 * */ - FRIEND_BLACK_OPT_REQUEST(209, 10584), + FRIEND_BLACK_OPT_REQUEST(216, 10584), /** * FRIEND_BLACK_OPT_RESPONSE = 10585; */ - FRIEND_BLACK_OPT_RESPONSE(210, 10585), + FRIEND_BLACK_OPT_RESPONSE(217, 10585), + /** + * FAST_FIGHT_CHALLENGE_REQUEST = 10586; + * + *
+     * 快速战斗
+     * 
+ */ + FAST_FIGHT_CHALLENGE_REQUEST(218, 10586), + /** + * FAST_FIGHT_CHALLENGE_RESPONSE = 10587; + */ + FAST_FIGHT_CHALLENGE_RESPONSE(219, 10587), /** * GET_PLAYERINFO_REQUEST = 10600; * @@ -1335,33 +1391,33 @@ public final class MessageTypeProto { * G 10600 * */ - GET_PLAYERINFO_REQUEST(211, 10600), + GET_PLAYERINFO_REQUEST(220, 10600), /** * GET_PLAYERINFO_RESPONSE = 10601; */ - GET_PLAYERINFO_RESPONSE(212, 10601), + GET_PLAYERINFO_RESPONSE(221, 10601), /** * GET_HEROINFO_REQUEST = 10602; * *
      * 
*/ - GET_HEROINFO_REQUEST(213, 10602), + GET_HEROINFO_REQUEST(222, 10602), /** * GET_HEROINFO_RESPONSE = 10603; */ - GET_HEROINFO_RESPONSE(214, 10603), + GET_HEROINFO_RESPONSE(223, 10603), /** * GET_ITEMINFO_REQUEST = 10604; * *
      * 
*/ - GET_ITEMINFO_REQUEST(215, 10604), + GET_ITEMINFO_REQUEST(224, 10604), /** * GET_ITEMINFO_RESPONSE = 10605; */ - GET_ITEMINFO_RESPONSE(216, 10605), + GET_ITEMINFO_RESPONSE(225, 10605), /** * GM_REQUEST = 10606; * @@ -1369,7 +1425,7 @@ public final class MessageTypeProto { *GM * */ - GM_REQUEST(217, 10606), + GM_REQUEST(226, 10606), /** * GM_RESPONSE = 10607; * @@ -1377,7 +1433,7 @@ public final class MessageTypeProto { *GM * */ - GM_RESPONSE(218, 10607), + GM_RESPONSE(227, 10607), /** * GET_ALL_MAIL_INFO_REQUEST = 10608; * @@ -1385,11 +1441,11 @@ public final class MessageTypeProto { * 获取用户所有邮件 * */ - GET_ALL_MAIL_INFO_REQUEST(219, 10608), + GET_ALL_MAIL_INFO_REQUEST(228, 10608), /** * GET_ALL_MAIL_INFO_RESPONSE = 10609; */ - GET_ALL_MAIL_INFO_RESPONSE(220, 10609), + GET_ALL_MAIL_INFO_RESPONSE(229, 10609), /** * GET_TEAMPOS_INFO_REQUEST = 16612; * @@ -1397,11 +1453,11 @@ public final class MessageTypeProto { *获取编队信息 * */ - GET_TEAMPOS_INFO_REQUEST(221, 16612), + GET_TEAMPOS_INFO_REQUEST(230, 16612), /** * GET_TEAMPOS_INFO_RESPONSE = 16613; */ - GET_TEAMPOS_INFO_RESPONSE(222, 16613), + GET_TEAMPOS_INFO_RESPONSE(231, 16613), /** * GET_ALL_EQUIP_REQUEST = 16614; * @@ -1409,11 +1465,11 @@ public final class MessageTypeProto { *装备 * */ - GET_ALL_EQUIP_REQUEST(223, 16614), + GET_ALL_EQUIP_REQUEST(232, 16614), /** * GET_ALL_EQUIP_RESPONSE = 16615; */ - GET_ALL_EQUIP_RESPONSE(224, 16615), + GET_ALL_EQUIP_RESPONSE(233, 16615), /** * GET_ALL_POKEMON_REQUEST = 16616; * @@ -1421,11 +1477,11 @@ public final class MessageTypeProto { *获取所有异妖 * */ - GET_ALL_POKEMON_REQUEST(225, 16616), + GET_ALL_POKEMON_REQUEST(234, 16616), /** * GET_ALL_POKEMON_RESPONSE = 16617; */ - GET_ALL_POKEMON_RESPONSE(226, 16617), + GET_ALL_POKEMON_RESPONSE(235, 16617), /** * GET_WORKSHOP_INFO_REQUEST = 16618; * @@ -1433,11 +1489,11 @@ public final class MessageTypeProto { * 获取作坊信息 * */ - GET_WORKSHOP_INFO_REQUEST(227, 16618), + GET_WORKSHOP_INFO_REQUEST(236, 16618), /** * GET_WORKSHOP_INFO_RESPONSE = 16619; */ - GET_WORKSHOP_INFO_RESPONSE(228, 16619), + GET_WORKSHOP_INFO_RESPONSE(237, 16619), /** * GET_ALL_LEVE_DIFFICULTT_REQUEST = 16622; * @@ -1445,11 +1501,11 @@ public final class MessageTypeProto { * 获取关卡信息 * */ - GET_ALL_LEVE_DIFFICULTT_REQUEST(229, 16622), + GET_ALL_LEVE_DIFFICULTT_REQUEST(238, 16622), /** * GET_ALL_LEVE_DIFFICULTT_RESPONSE = 16623; */ - GET_ALL_LEVE_DIFFICULTT_RESPONSE(230, 16623), + GET_ALL_LEVE_DIFFICULTT_RESPONSE(239, 16623), /** * GET_ALL_ACTIVITY_REQUEST = 16624; * @@ -1457,11 +1513,11 @@ public final class MessageTypeProto { *获取所有活动信息 * */ - GET_ALL_ACTIVITY_REQUEST(231, 16624), + GET_ALL_ACTIVITY_REQUEST(240, 16624), /** * GET_ALL_ACTIVITY_RESPONSE = 16625; */ - GET_ALL_ACTIVITY_RESPONSE(232, 16625), + GET_ALL_ACTIVITY_RESPONSE(241, 16625), /** * GET_SECRETBOX_REQUEST = 16626; * @@ -1469,11 +1525,11 @@ public final class MessageTypeProto { *获取秘盒信息 * */ - GET_SECRETBOX_REQUEST(233, 16626), + GET_SECRETBOX_REQUEST(242, 16626), /** * GET_SECRETBOX_RESPONSE = 16627; */ - GET_SECRETBOX_RESPONSE(234, 16627), + GET_SECRETBOX_RESPONSE(243, 16627), /** * GET_STARE_INFOS_REQUEST = 16628; * @@ -1481,11 +1537,11 @@ public final class MessageTypeProto { *获取商店信息 * */ - GET_STARE_INFOS_REQUEST(235, 16628), + GET_STARE_INFOS_REQUEST(244, 16628), /** * GET_STARE_INFOS_RESPONSE = 16629; */ - GET_STARE_INFOS_RESPONSE(236, 16629), + GET_STARE_INFOS_RESPONSE(245, 16629), /** * GET_FUNCTIONOFTIME_REQUEST = 16630; * @@ -1493,11 +1549,11 @@ public final class MessageTypeProto { *获取功能开放时间 * */ - GET_FUNCTIONOFTIME_REQUEST(237, 16630), + GET_FUNCTIONOFTIME_REQUEST(246, 16630), /** * GET_FUNCTIONOFTIME_RESPONSE = 16631; */ - GET_FUNCTIONOFTIME_RESPONSE(238, 16631), + GET_FUNCTIONOFTIME_RESPONSE(247, 16631), /** * GET_CHAT_MESSAGE_REQUEST = 16636; * @@ -1505,11 +1561,11 @@ public final class MessageTypeProto { * 获取聊天信息 * */ - GET_CHAT_MESSAGE_REQUEST(239, 16636), + GET_CHAT_MESSAGE_REQUEST(248, 16636), /** * GET_CHAT_MESSAGE_REPONSE = 16637; */ - GET_CHAT_MESSAGE_REPONSE(240, 16637), + GET_CHAT_MESSAGE_REPONSE(249, 16637), /** * GET_FRIEND_INFO_REQUEST = 16638; * @@ -1517,11 +1573,11 @@ public final class MessageTypeProto { * 获取好友信息 * */ - GET_FRIEND_INFO_REQUEST(241, 16638), + GET_FRIEND_INFO_REQUEST(250, 16638), /** * GET_FRIEND_INFO_REPONSE = 16639; */ - GET_FRIEND_INFO_REPONSE(242, 16639), + GET_FRIEND_INFO_REPONSE(251, 16639), /** * GET_RINGFIRE_INFO_REQUEST = 16640; * @@ -1529,11 +1585,11 @@ public final class MessageTypeProto { * 获取天赋异妖信息 * */ - GET_RINGFIRE_INFO_REQUEST(243, 16640), + GET_RINGFIRE_INFO_REQUEST(252, 16640), /** * GET_RINGFIRE_INFO_RESPONSE = 16641; */ - GET_RINGFIRE_INFO_RESPONSE(244, 16641), + GET_RINGFIRE_INFO_RESPONSE(253, 16641), /** * GET_MISSION_REQUEST = 16642; * @@ -1541,27 +1597,27 @@ public final class MessageTypeProto { * 获取任务 * */ - GET_MISSION_REQUEST(245, 16642), + GET_MISSION_REQUEST(254, 16642), /** * GET_MISSION_RESPONSE = 16643; */ - GET_MISSION_RESPONSE(246, 16643), + GET_MISSION_RESPONSE(255, 16643), /** * GETF_FORCE_RANK_INFO_REQUEST = 16646; */ - GETF_FORCE_RANK_INFO_REQUEST(247, 16646), + GETF_FORCE_RANK_INFO_REQUEST(256, 16646), /** * GETF_FORCE_RANK_INFO_RESPONSE = 16647; */ - GETF_FORCE_RANK_INFO_RESPONSE(248, 16647), + GETF_FORCE_RANK_INFO_RESPONSE(257, 16647), /** * GETF_EXPERT_RANK_INFO_REQUEST = 16648; */ - GETF_EXPERT_RANK_INFO_REQUEST(249, 16648), + GETF_EXPERT_RANK_INFO_REQUEST(258, 16648), /** * GETF_EXPERT_RANK_INFO_RESPONSE = 16649; */ - GETF_EXPERT_RANK_INFO_RESPONSE(250, 16649), + GETF_EXPERT_RANK_INFO_RESPONSE(259, 16649), /** * GET_PLAYER_ONE_TEAM_INFO_REQUEST = 16650; * @@ -1569,11 +1625,11 @@ public final class MessageTypeProto { *获取第一编队信息 * */ - GET_PLAYER_ONE_TEAM_INFO_REQUEST(251, 16650), + GET_PLAYER_ONE_TEAM_INFO_REQUEST(260, 16650), /** * GET_PLAYER_ONE_TEAM_INFO_RESPONSE = 16651; */ - GET_PLAYER_ONE_TEAM_INFO_RESPONSE(252, 16651), + GET_PLAYER_ONE_TEAM_INFO_RESPONSE(261, 16651), /** * GET_MONSTER_RANK_INFO_REQUEST = 16652; * @@ -1581,11 +1637,11 @@ public final class MessageTypeProto { *获取妖兽排行 * */ - GET_MONSTER_RANK_INFO_REQUEST(253, 16652), + GET_MONSTER_RANK_INFO_REQUEST(262, 16652), /** * GET_MONSTER_RANK_INFO_RESPONSE = 1663; */ - GET_MONSTER_RANK_INFO_RESPONSE(254, 1663), + GET_MONSTER_RANK_INFO_RESPONSE(263, 1663), /** * GET_PHONE_REWARD_REQUEST = 1664; * @@ -1593,11 +1649,11 @@ public final class MessageTypeProto { *获取绑定手机号奖励 * */ - GET_PHONE_REWARD_REQUEST(255, 1664), + GET_PHONE_REWARD_REQUEST(264, 1664), /** * GET_PHONE_REWARD_RESPONSE = 1665; */ - GET_PHONE_REWARD_RESPONSE(256, 1665), + GET_PHONE_REWARD_RESPONSE(265, 1665), /** * GET_QUESTION_REQUEST = 1666; * @@ -1605,11 +1661,11 @@ public final class MessageTypeProto { *问卷 * */ - GET_QUESTION_REQUEST(257, 1666), + GET_QUESTION_REQUEST(266, 1666), /** * GET_QUESTION_RESPONSE = 1667; */ - GET_QUESTION_RESPONSE(258, 1667), + GET_QUESTION_RESPONSE(267, 1667), /** * GET_LUCKWHEEL_RANDREWARD_REQUEST = 1668; * @@ -1617,7 +1673,7 @@ public final class MessageTypeProto { *幸运探宝 * */ - GET_LUCKWHEEL_RANDREWARD_REQUEST(259, 1668), + GET_LUCKWHEEL_RANDREWARD_REQUEST(268, 1668), /** * GET_LUCKWHEEL_RANDREWARD_RESPONSE = 1669; * @@ -1625,7 +1681,7 @@ public final class MessageTypeProto { *幸运探宝 * */ - GET_LUCKWHEEL_RANDREWARD_RESPONSE(260, 1669), + GET_LUCKWHEEL_RANDREWARD_RESPONSE(269, 1669), /** * GET_LUCKWHEEL_REQUEST = 1670; * @@ -1633,11 +1689,11 @@ public final class MessageTypeProto { *幸运探宝 * */ - GET_LUCKWHEEL_REQUEST(261, 1670), + GET_LUCKWHEEL_REQUEST(270, 1670), /** * GET_LUCKWHEEL_RESPONSE = 1671; */ - GET_LUCKWHEEL_RESPONSE(262, 1671), + GET_LUCKWHEEL_RESPONSE(271, 1671), /** * GET_ONE_RANK_REQUEST = 16662; * @@ -1645,11 +1701,11 @@ public final class MessageTypeProto { *排行榜统一协议 * */ - GET_ONE_RANK_REQUEST(263, 16662), + GET_ONE_RANK_REQUEST(272, 16662), /** * GET_ONE_RANK_RESPONSE = 16663; */ - GET_ONE_RANK_RESPONSE(264, 16663), + GET_ONE_RANK_RESPONSE(273, 16663), /** * GET_SOME_ACTIVITY_INFO_REQUEST = 16664; * @@ -1657,11 +1713,59 @@ public final class MessageTypeProto { * 获取某些活动信息 * */ - GET_SOME_ACTIVITY_INFO_REQUEST(265, 16664), + GET_SOME_ACTIVITY_INFO_REQUEST(274, 16664), /** * GET_SOME_ACTIVITY_INFO_RESPONSE = 16665; */ - GET_SOME_ACTIVITY_INFO_RESPONSE(266, 16665), + GET_SOME_ACTIVITY_INFO_RESPONSE(275, 16665), + /** + * GUILD_SKILL_RESET_REQUEST = 16666; + * + *
+     *重置公会技能
+     * 
+ */ + GUILD_SKILL_RESET_REQUEST(276, 16666), + /** + * GUILD_SKILL_RESET_RESPONSE = 16667; + */ + GUILD_SKILL_RESET_RESPONSE(277, 16667), + /** + * GUILD_SKILL_LEVEL_UP_REQUEST = 16668; + * + *
+     *升级公会技能
+     * 
+ */ + GUILD_SKILL_LEVEL_UP_REQUEST(278, 16668), + /** + * GUILD_SKILL_LEVEL_UP_RESPONSE = 16669; + */ + GUILD_SKILL_LEVEL_UP_RESPONSE(279, 16669), + /** + * GET_ALL_GUILD_SKILL_REQUEST = 16670; + * + *
+     *获取所有公会技能
+     * 
+ */ + GET_ALL_GUILD_SKILL_REQUEST(280, 16670), + /** + * GET_ALL_GUILD_SKILL_RESPONSE = 16671; + */ + GET_ALL_GUILD_SKILL_RESPONSE(281, 16671), + /** + * GET_CAR_CHALLENEG_LIST_REQUEST = 16672; + * + *
+     * 获取车迟匹配信息
+     * 
+ */ + GET_CAR_CHALLENEG_LIST_REQUEST(282, 16672), + /** + * GET_CAR_CHALLENEG_LIST_RESPONSE = 16673; + */ + GET_CAR_CHALLENEG_LIST_RESPONSE(283, 16673), /** * HERO_RAND_REQQUEST = 10701; * @@ -1669,11 +1773,11 @@ public final class MessageTypeProto { * H 10700 * */ - HERO_RAND_REQQUEST(267, 10701), + HERO_RAND_REQQUEST(284, 10701), /** * HERO_RAND_RESPONSE = 10702; */ - HERO_RAND_RESPONSE(268, 10702), + HERO_RAND_RESPONSE(285, 10702), /** * HERO_COMPOSE_REQUEST = 10703; * @@ -1681,11 +1785,11 @@ public final class MessageTypeProto { * 合成英雄 * */ - HERO_COMPOSE_REQUEST(269, 10703), + HERO_COMPOSE_REQUEST(286, 10703), /** * HERO_COMPOSE_RESPONSE = 10704; */ - HERO_COMPOSE_RESPONSE(270, 10704), + HERO_COMPOSE_RESPONSE(287, 10704), /** * HERO_RETURN_REQUEST = 10705; * @@ -1693,11 +1797,11 @@ public final class MessageTypeProto { *英雄回溯 * */ - HERO_RETURN_REQUEST(271, 10705), + HERO_RETURN_REQUEST(288, 10705), /** * HERO_RETURN_RESPONSE = 10706; */ - HERO_RETURN_RESPONSE(272, 10706), + HERO_RETURN_RESPONSE(289, 10706), /** * HERO_LOCK_CHANGE_REQUEST = 10707; * @@ -1705,7 +1809,7 @@ public final class MessageTypeProto { * 英雄上锁操作 * */ - HERO_LOCK_CHANGE_REQUEST(273, 10707), + HERO_LOCK_CHANGE_REQUEST(290, 10707), /** * HERO_LOCK_CHANGE_RESPONSE = 10708; * @@ -1714,7 +1818,7 @@ public final class MessageTypeProto { * J 10900 * */ - HERO_LOCK_CHANGE_RESPONSE(274, 10708), + HERO_LOCK_CHANGE_RESPONSE(291, 10708), /** * J_GET_ALL_REDPACKAGE_INFO_REQUEST = 10903; * @@ -1722,11 +1826,11 @@ public final class MessageTypeProto { *获取所有红包 * */ - J_GET_ALL_REDPACKAGE_INFO_REQUEST(275, 10903), + J_GET_ALL_REDPACKAGE_INFO_REQUEST(292, 10903), /** * J_GET_ALL_REDPACKAGE_INFO_RESPONSE = 10904; */ - J_GET_ALL_REDPACKAGE_INFO_RESPONSE(276, 10904), + J_GET_ALL_REDPACKAGE_INFO_RESPONSE(293, 10904), /** * J_ROB_REDPACKAGE_INFO_REQUEST = 10905; * @@ -1734,11 +1838,11 @@ public final class MessageTypeProto { *抢红包 * */ - J_ROB_REDPACKAGE_INFO_REQUEST(277, 10905), + J_ROB_REDPACKAGE_INFO_REQUEST(294, 10905), /** * J_ROB_REDPACKAGE_INFO_RESPONSE = 10906; */ - J_ROB_REDPACKAGE_INFO_RESPONSE(278, 10906), + J_ROB_REDPACKAGE_INFO_RESPONSE(295, 10906), /** * J_GET_REDPACKAGE_DETAIL_REQUEST = 10907; * @@ -1746,11 +1850,11 @@ public final class MessageTypeProto { *查看红包详情 * */ - J_GET_REDPACKAGE_DETAIL_REQUEST(279, 10907), + J_GET_REDPACKAGE_DETAIL_REQUEST(296, 10907), /** * J_GET_REDPACKAGE_DETAIL_RESPONSE = 10908; */ - J_GET_REDPACKAGE_DETAIL_RESPONSE(280, 10908), + J_GET_REDPACKAGE_DETAIL_RESPONSE(297, 10908), /** * J_REDPACKAGE_SEND_LIKE_REQUEST = 10910; * @@ -1758,11 +1862,11 @@ public final class MessageTypeProto { *红包榜点赞 * */ - J_REDPACKAGE_SEND_LIKE_REQUEST(281, 10910), + J_REDPACKAGE_SEND_LIKE_REQUEST(298, 10910), /** * J_REDPACKAGE_SEND_LIKE_RESPONSE = 10911; */ - J_REDPACKAGE_SEND_LIKE_RESPONSE(282, 10911), + J_REDPACKAGE_SEND_LIKE_RESPONSE(299, 10911), /** * J_GET_ALL_SEND_LIKE_REQUEST = 10912; * @@ -1770,11 +1874,11 @@ public final class MessageTypeProto { *获取今天点赞过的 * */ - J_GET_ALL_SEND_LIKE_REQUEST(283, 10912), + J_GET_ALL_SEND_LIKE_REQUEST(300, 10912), /** * J_GET_ALL_SEND_LIKE_RESPONSE = 10913; */ - J_GET_ALL_SEND_LIKE_RESPONSE(284, 10913), + J_GET_ALL_SEND_LIKE_RESPONSE(301, 10913), /** * JEWEL_BUILD_REQUEST = 10914; * @@ -1782,7 +1886,7 @@ public final class MessageTypeProto { *宝器强化或精炼 * */ - JEWEL_BUILD_REQUEST(285, 10914), + JEWEL_BUILD_REQUEST(302, 10914), /** * JEWEL_BUILD_RESPONSE = 10915; * @@ -1791,7 +1895,7 @@ public final class MessageTypeProto { * L 11100 * */ - JEWEL_BUILD_RESPONSE(286, 10915), + JEWEL_BUILD_RESPONSE(303, 10915), /** * LOGIN_REQUEST = 11100; * @@ -1799,11 +1903,11 @@ public final class MessageTypeProto { * 登陆或注册 * */ - LOGIN_REQUEST(287, 11100), + LOGIN_REQUEST(304, 11100), /** * LOGIN_RESPONSE = 11101; */ - LOGIN_RESPONSE(288, 11101), + LOGIN_RESPONSE(305, 11101), /** * LUCKWHEEL_POOL_INDICATION = 11102; * @@ -1811,7 +1915,7 @@ public final class MessageTypeProto { *幸运探宝奖池信息 * */ - LUCKWHEEL_POOL_INDICATION(289, 11102), + LUCKWHEEL_POOL_INDICATION(306, 11102), /** * MAP_ENTER_REQUEST = 11200; * @@ -1819,22 +1923,22 @@ public final class MessageTypeProto { * M 11200 * */ - MAP_ENTER_REQUEST(290, 11200), + MAP_ENTER_REQUEST(307, 11200), /** * MAP_ENTER_RESPONSE = 11201; */ - MAP_ENTER_RESPONSE(291, 11201), + MAP_ENTER_RESPONSE(308, 11201), /** * MAP_OUT_REQUEST = 11202; * *
      * 
*/ - MAP_OUT_REQUEST(292, 11202), + MAP_OUT_REQUEST(309, 11202), /** * MAP_OUT_RESPONSE = 11203; */ - MAP_OUT_RESPONSE(293, 11203), + MAP_OUT_RESPONSE(310, 11203), /** * MAP_UDPATE_REQUEST = 11204; * @@ -1842,11 +1946,11 @@ public final class MessageTypeProto { * 更新地图 * */ - MAP_UDPATE_REQUEST(294, 11204), + MAP_UDPATE_REQUEST(311, 11204), /** * MAP_UDPATE_RESPONSE = 11205; */ - MAP_UDPATE_RESPONSE(295, 11205), + MAP_UDPATE_RESPONSE(312, 11205), /** * MAIL_READ_REQUEST = 11206; * @@ -1854,11 +1958,11 @@ public final class MessageTypeProto { *读取邮件 * */ - MAIL_READ_REQUEST(296, 11206), + MAIL_READ_REQUEST(313, 11206), /** * MAIL_READ_RESPONSE = 11207; */ - MAIL_READ_RESPONSE(297, 11207), + MAIL_READ_RESPONSE(314, 11207), /** * MAIL_TAKE_MAIL_ITEM_REQUEST = 11208; * @@ -1866,11 +1970,11 @@ public final class MessageTypeProto { *领取附件 * */ - MAIL_TAKE_MAIL_ITEM_REQUEST(298, 11208), + MAIL_TAKE_MAIL_ITEM_REQUEST(315, 11208), /** * MAIL_TAKE_MAIL_ITEM_RESPONESE = 11209; */ - MAIL_TAKE_MAIL_ITEM_RESPONESE(299, 11209), + MAIL_TAKE_MAIL_ITEM_RESPONESE(316, 11209), /** * MAP_START_EXPLORE_REQUEST = 11210; * @@ -1878,11 +1982,11 @@ public final class MessageTypeProto { * 开始探索 * */ - MAP_START_EXPLORE_REQUEST(300, 11210), + MAP_START_EXPLORE_REQUEST(317, 11210), /** * MAP_START_EXPLORE_RESPONSE = 11211; */ - MAP_START_EXPLORE_RESPONSE(301, 11211), + MAP_START_EXPLORE_RESPONSE(318, 11211), /** * MAP_GET_RANK_INFO_REQUEST = 11212; * @@ -1890,11 +1994,11 @@ public final class MessageTypeProto { * 获取地图排行榜 * */ - MAP_GET_RANK_INFO_REQUEST(302, 11212), + MAP_GET_RANK_INFO_REQUEST(319, 11212), /** * MAP_GET_RANK_INFO_RESPONSE = 11213; */ - MAP_GET_RANK_INFO_RESPONSE(303, 11213), + MAP_GET_RANK_INFO_RESPONSE(320, 11213), /** * MAP_BUY_FIGHT_COUNT_REQUEST = 11214; * @@ -1902,11 +2006,11 @@ public final class MessageTypeProto { * 购买挑战次数 * */ - MAP_BUY_FIGHT_COUNT_REQUEST(304, 11214), + MAP_BUY_FIGHT_COUNT_REQUEST(321, 11214), /** * MAP_BUY_FIGHT_COUNT_RESPONSE = 11215; */ - MAP_BUY_FIGHT_COUNT_RESPONSE(305, 11215), + MAP_BUY_FIGHT_COUNT_RESPONSE(322, 11215), /** * MAP_SWEEP_REQUEST = 11216; * @@ -1914,11 +2018,11 @@ public final class MessageTypeProto { * 扫荡三星通关副本 * */ - MAP_SWEEP_REQUEST(306, 11216), + MAP_SWEEP_REQUEST(323, 11216), /** * MAP_SWEEP_RESPONSE = 11217; */ - MAP_SWEEP_RESPONSE(307, 11217), + MAP_SWEEP_RESPONSE(324, 11217), /** * MAP_FAST_FIGHT_REQUEST = 11218; * @@ -1926,11 +2030,11 @@ public final class MessageTypeProto { * 快速战斗结算 * */ - MAP_FAST_FIGHT_REQUEST(308, 11218), + MAP_FAST_FIGHT_REQUEST(325, 11218), /** * MAP_FAST_FIGHT_RESPONSE = 11219; */ - MAP_FAST_FIGHT_RESPONSE(309, 11219), + MAP_FAST_FIGHT_RESPONSE(326, 11219), /** * MISSION_UPDATE_INDICATION = 11220; * @@ -1938,7 +2042,7 @@ public final class MessageTypeProto { *任务更细 * */ - MISSION_UPDATE_INDICATION(310, 11220), + MISSION_UPDATE_INDICATION(327, 11220), /** * MAP_TOWER_RESET_REQUEST = 11223; * @@ -1946,11 +2050,11 @@ public final class MessageTypeProto { * 重置爬塔副本(试炼副本) * */ - MAP_TOWER_RESET_REQUEST(311, 11223), + MAP_TOWER_RESET_REQUEST(328, 11223), /** * MAP_TOWER_RESET_RESPONSE = 11224; */ - MAP_TOWER_RESET_RESPONSE(312, 11224), + MAP_TOWER_RESET_RESPONSE(329, 11224), /** * MAP_TOWER_CALL_CHIEF_REQUEST = 11225; * @@ -1958,11 +2062,11 @@ public final class MessageTypeProto { * 爬塔副本召唤首领(试炼副本) * */ - MAP_TOWER_CALL_CHIEF_REQUEST(313, 11225), + MAP_TOWER_CALL_CHIEF_REQUEST(330, 11225), /** * MAP_TOWER_CALL_CHIEF_RESPONSE = 11226; */ - MAP_TOWER_CALL_CHIEF_RESPONSE(314, 11226), + MAP_TOWER_CALL_CHIEF_RESPONSE(331, 11226), /** * MAP_TOWER_USEBOMB_REQUEST = 11229; * @@ -1970,11 +2074,11 @@ public final class MessageTypeProto { * 爬塔副本使用炸弹(试炼副本) * */ - MAP_TOWER_USEBOMB_REQUEST(315, 11229), + MAP_TOWER_USEBOMB_REQUEST(332, 11229), /** * MAP_TOWER_USEBOMB_RESPONSE = 11230; */ - MAP_TOWER_USEBOMB_RESPONSE(316, 11230), + MAP_TOWER_USEBOMB_RESPONSE(333, 11230), /** * MAP_TOWER_USEBUFF_REQUEST = 11231; * @@ -1982,11 +2086,11 @@ public final class MessageTypeProto { * 爬塔副本使用Buff(试炼副本) * */ - MAP_TOWER_USEBUFF_REQUEST(317, 11231), + MAP_TOWER_USEBUFF_REQUEST(334, 11231), /** * MAP_TOWER_USEBUFF_RESPONSE = 11232; */ - MAP_TOWER_USEBUFF_RESPONSE(318, 11232), + MAP_TOWER_USEBUFF_RESPONSE(335, 11232), /** * MODIFY_DECORATION_REQUEST = 11233; * @@ -1994,11 +2098,11 @@ public final class MessageTypeProto { *修改外观装饰 * */ - MODIFY_DECORATION_REQUEST(319, 11233), + MODIFY_DECORATION_REQUEST(336, 11233), /** * MODIFY_DECORATION_RESPONSE = 11234; */ - MODIFY_DECORATION_RESPONSE(320, 11234), + MODIFY_DECORATION_RESPONSE(337, 11234), /** * MAP_OUT_INDICATION = 11235; * @@ -2006,7 +2110,7 @@ public final class MessageTypeProto { *出图indication * */ - MAP_OUT_INDICATION(321, 11235), + MAP_OUT_INDICATION(338, 11235), /** * MAIN_LEVEL_GET_INFO_REQUEST = 11236; * @@ -2014,11 +2118,11 @@ public final class MessageTypeProto { * 获取关卡信息 * */ - MAIN_LEVEL_GET_INFO_REQUEST(322, 11236), + MAIN_LEVEL_GET_INFO_REQUEST(339, 11236), /** * MAIN_LEVEL_GET_INFO_RESPONSE = 11237; */ - MAIN_LEVEL_GET_INFO_RESPONSE(323, 11237), + MAIN_LEVEL_GET_INFO_RESPONSE(340, 11237), /** * MAIN_LEVEL_TAKE_STATE_REWARD_REQUEST = 11238; * @@ -2026,11 +2130,11 @@ public final class MessageTypeProto { *领取关卡挂机奖励 * */ - MAIN_LEVEL_TAKE_STATE_REWARD_REQUEST(324, 11238), + MAIN_LEVEL_TAKE_STATE_REWARD_REQUEST(341, 11238), /** * MAIN_LEVEL_TAKE_STATE_REWARD_RESPONSE = 11239; */ - MAIN_LEVEL_TAKE_STATE_REWARD_RESPONSE(325, 11239), + MAIN_LEVEL_TAKE_STATE_REWARD_RESPONSE(342, 11239), /** * MAIN_LEVEL_GET_RANK_REQUEST = 11240; * @@ -2038,7 +2142,7 @@ public final class MessageTypeProto { * 获取关卡排行 * */ - MAIN_LEVEL_GET_RANK_REQUEST(326, 11240), + MAIN_LEVEL_GET_RANK_REQUEST(343, 11240), /** * MAIN_LEVEL_GET_RANK_RESPONSE = 11241; * @@ -2046,7 +2150,7 @@ public final class MessageTypeProto { * * */ - MAIN_LEVEL_GET_RANK_RESPONSE(327, 11241), + MAIN_LEVEL_GET_RANK_RESPONSE(344, 11241), /** * MAIL_DELETE_REQUEST = 11242; * @@ -2054,15 +2158,15 @@ public final class MessageTypeProto { *删除邮件 * */ - MAIL_DELETE_REQUEST(328, 11242), + MAIL_DELETE_REQUEST(345, 11242), /** * MAIL_DELETE_RESPONSE = 11243; */ - MAIL_DELETE_RESPONSE(329, 11243), + MAIL_DELETE_RESPONSE(346, 11243), /** * MAIN_LEVEL_FIGHT_UPDATE_INDICATION = 11244; */ - MAIN_LEVEL_FIGHT_UPDATE_INDICATION(330, 11244), + MAIN_LEVEL_FIGHT_UPDATE_INDICATION(347, 11244), /** * MISSING_ROOM_MISSION_REFRESH_REQUEST = 11245; * @@ -2070,11 +2174,11 @@ public final class MessageTypeProto { *任务刷新 * */ - MISSING_ROOM_MISSION_REFRESH_REQUEST(331, 11245), + MISSING_ROOM_MISSION_REFRESH_REQUEST(348, 11245), /** * MISSING_ROOM_MISSION_REFRESH_RESPONSE = 11246; */ - MISSING_ROOM_MISSION_REFRESH_RESPONSE(332, 11246), + MISSING_ROOM_MISSION_REFRESH_RESPONSE(349, 11246), /** * MISSING_ROOM_MISSION_ACCELERATE_REQUEST = 11247; * @@ -2082,11 +2186,11 @@ public final class MessageTypeProto { *任务加速 * */ - MISSING_ROOM_MISSION_ACCELERATE_REQUEST(333, 11247), + MISSING_ROOM_MISSION_ACCELERATE_REQUEST(350, 11247), /** * MISSING_ROOM_MISSION_ACCELERATE_RESPONSE = 11248; */ - MISSING_ROOM_MISSION_ACCELERATE_RESPONSE(334, 11248), + MISSING_ROOM_MISSION_ACCELERATE_RESPONSE(351, 11248), /** * MISSING_ROOM_HERO_SEND_REQUEST = 11249; * @@ -2094,11 +2198,11 @@ public final class MessageTypeProto { *迷宫寻宝探险 * */ - MISSING_ROOM_HERO_SEND_REQUEST(335, 11249), + MISSING_ROOM_HERO_SEND_REQUEST(352, 11249), /** * MISSING_ROOM_HERO_SEND_RESPONSE = 11250; */ - MISSING_ROOM_HERO_SEND_RESPONSE(336, 11250), + MISSING_ROOM_HERO_SEND_RESPONSE(353, 11250), /** * NOTIFY_PAY_SUCCESS_INDICATION = 11300; * @@ -2106,7 +2210,7 @@ public final class MessageTypeProto { * N 11300 * */ - NOTIFY_PAY_SUCCESS_INDICATION(337, 11300), + NOTIFY_PAY_SUCCESS_INDICATION(354, 11300), /** * NEXT_ACTIVITY_REQUEST = 11301; * @@ -2114,11 +2218,11 @@ public final class MessageTypeProto { *活动预告 * */ - NEXT_ACTIVITY_REQUEST(338, 11301), + NEXT_ACTIVITY_REQUEST(355, 11301), /** * NEXT_ACTIVITY_RESPONSE = 11302; */ - NEXT_ACTIVITY_RESPONSE(339, 11302), + NEXT_ACTIVITY_RESPONSE(356, 11302), /** * POKEMON_COMONPENT_LEVELUP_REQUEST = 11500; * @@ -2127,11 +2231,11 @@ public final class MessageTypeProto { * P 11500 * */ - POKEMON_COMONPENT_LEVELUP_REQUEST(340, 11500), + POKEMON_COMONPENT_LEVELUP_REQUEST(357, 11500), /** * POKEMON_COMONPENT_LEVELUP_RESPONSE = 11501; */ - POKEMON_COMONPENT_LEVELUP_RESPONSE(341, 11501), + POKEMON_COMONPENT_LEVELUP_RESPONSE(358, 11501), /** * POKEMON_ADVANCED_REQUEST = 11502; * @@ -2139,11 +2243,11 @@ public final class MessageTypeProto { *异妖进阶 * */ - POKEMON_ADVANCED_REQUEST(342, 11502), + POKEMON_ADVANCED_REQUEST(359, 11502), /** * POKEMON_ADVANCED_RESPONSE = 11503; */ - POKEMON_ADVANCED_RESPONSE(343, 11503), + POKEMON_ADVANCED_RESPONSE(360, 11503), /** * PLAYER_BACKCINFO_INDICATION = 11504; * @@ -2151,7 +2255,7 @@ public final class MessageTypeProto { *客服平台推送 * */ - PLAYER_BACKCINFO_INDICATION(344, 11504), + PLAYER_BACKCINFO_INDICATION(361, 11504), /** * PLAY_WITH_SB_REQUEST = 11505; * @@ -2159,11 +2263,11 @@ public final class MessageTypeProto { *切磋 * */ - PLAY_WITH_SB_REQUEST(345, 11505), + PLAY_WITH_SB_REQUEST(362, 11505), /** * PLAY_WITH_SB_RESPONSE = 11506; */ - PLAY_WITH_SB_RESPONSE(346, 11506), + PLAY_WITH_SB_RESPONSE(363, 11506), /** * PRIVILLEGE_ADD_INDICATION = 11507; * @@ -2171,7 +2275,7 @@ public final class MessageTypeProto { *特权添加推送 * */ - PRIVILLEGE_ADD_INDICATION(347, 11507), + PRIVILLEGE_ADD_INDICATION(364, 11507), /** * QUESTION_INDICATION = 11600; * @@ -2179,7 +2283,7 @@ public final class MessageTypeProto { * Q 11600 * */ - QUESTION_INDICATION(348, 11600), + QUESTION_INDICATION(365, 11600), /** * QUICK_START_MONSTERFIGHTER_REQUEST = 11601; * @@ -2187,11 +2291,11 @@ public final class MessageTypeProto { *兽潮快速战斗 * */ - QUICK_START_MONSTERFIGHTER_REQUEST(349, 11601), + QUICK_START_MONSTERFIGHTER_REQUEST(366, 11601), /** * QUICK_START_MONSTERFIGHTER_REPONSE = 11602; */ - QUICK_START_MONSTERFIGHTER_REPONSE(350, 11602), + QUICK_START_MONSTERFIGHTER_REPONSE(367, 11602), /** * RECONNECT_REQUEST = 11700; * @@ -2199,11 +2303,11 @@ public final class MessageTypeProto { * R 11700 * */ - RECONNECT_REQUEST(351, 11700), + RECONNECT_REQUEST(368, 11700), /** * RECONNECT_RESPONSE = 11701; */ - RECONNECT_RESPONSE(352, 11701), + RECONNECT_RESPONSE(369, 11701), /** * RANDOMNAME_REQUEST = 11702; * @@ -2211,11 +2315,11 @@ public final class MessageTypeProto { * 随机名字 * */ - RANDOMNAME_REQUEST(353, 11702), + RANDOMNAME_REQUEST(370, 11702), /** * RANDOMNAME_RESPONSE = 11703; */ - RANDOMNAME_RESPONSE(354, 11703), + RANDOMNAME_RESPONSE(371, 11703), /** * RENAME_REQUEST = 11704; * @@ -2223,11 +2327,11 @@ public final class MessageTypeProto { * 修改名字 * */ - RENAME_REQUEST(355, 11704), + RENAME_REQUEST(372, 11704), /** * RENAME_RESPONSE = 11705; */ - RENAME_RESPONSE(356, 11705), + RENAME_RESPONSE(373, 11705), /** * RINGFIRE_LOAD_REQUEST = 11706; * @@ -2235,11 +2339,11 @@ public final class MessageTypeProto { *天赋异妖组件放置 * */ - RINGFIRE_LOAD_REQUEST(357, 11706), + RINGFIRE_LOAD_REQUEST(374, 11706), /** * RINGFIRE_LOAD_RESPONSE = 11707; */ - RINGFIRE_LOAD_RESPONSE(358, 11707), + RINGFIRE_LOAD_RESPONSE(375, 11707), /** * RINGFIRE_ADVANCED_REQUEST = 11708; * @@ -2247,11 +2351,11 @@ public final class MessageTypeProto { *天赋异妖进阶 * */ - RINGFIRE_ADVANCED_REQUEST(359, 11708), + RINGFIRE_ADVANCED_REQUEST(376, 11708), /** * RINGFIRE_ADVANCED_RESPONSE = 11709; */ - RINGFIRE_ADVANCED_RESPONSE(360, 11709), + RINGFIRE_ADVANCED_RESPONSE(377, 11709), /** * REFRESH_FRIEND_STATE_REQEUST = 11710; * @@ -2259,11 +2363,11 @@ public final class MessageTypeProto { *刷新好友在线状态 * */ - REFRESH_FRIEND_STATE_REQEUST(361, 11710), + REFRESH_FRIEND_STATE_REQEUST(378, 11710), /** * REFRESH_FRIEND_STATE_RESPONSE = 11711; */ - REFRESH_FRIEND_STATE_RESPONSE(362, 11711), + REFRESH_FRIEND_STATE_RESPONSE(379, 11711), /** * ROOM_MATCH_REQUEST = 11712; * @@ -2271,11 +2375,11 @@ public final class MessageTypeProto { *请求匹配 * */ - ROOM_MATCH_REQUEST(363, 11712), + ROOM_MATCH_REQUEST(380, 11712), /** * ROOM_MATCH_RESPONSE = 11713; */ - ROOM_MATCH_RESPONSE(364, 11713), + ROOM_MATCH_RESPONSE(381, 11713), /** * ROOM_CANCEL_MATCH_REQUEST = 11714; * @@ -2283,15 +2387,15 @@ public final class MessageTypeProto { *取消匹配 * */ - ROOM_CANCEL_MATCH_REQUEST(365, 11714), + ROOM_CANCEL_MATCH_REQUEST(382, 11714), /** * ROOM_CANCEL_MATCH_RESPONSE = 11715; */ - ROOM_CANCEL_MATCH_RESPONSE(366, 11715), + ROOM_CANCEL_MATCH_RESPONSE(383, 11715), /** * ROOM_MATCH_SUCCESS_INDICATION = 11716; */ - ROOM_MATCH_SUCCESS_INDICATION(367, 11716), + ROOM_MATCH_SUCCESS_INDICATION(384, 11716), /** * ROOM_START_GAME_READY_REQUEST = 11718; * @@ -2299,11 +2403,11 @@ public final class MessageTypeProto { *准备 * */ - ROOM_START_GAME_READY_REQUEST(368, 11718), + ROOM_START_GAME_READY_REQUEST(385, 11718), /** * ROOM_START_GAME_READY_RESPONSE = 11719; */ - ROOM_START_GAME_READY_RESPONSE(369, 11719), + ROOM_START_GAME_READY_RESPONSE(386, 11719), /** * ROOM_START_GAME_INDICATION = 11720; * @@ -2311,7 +2415,7 @@ public final class MessageTypeProto { *开始游戏推送 * */ - ROOM_START_GAME_INDICATION(370, 11720), + ROOM_START_GAME_INDICATION(387, 11720), /** * ROOM_GAME_START_REQUEST = 11722; * @@ -2319,11 +2423,11 @@ public final class MessageTypeProto { *开始游戏 * */ - ROOM_GAME_START_REQUEST(371, 11722), + ROOM_GAME_START_REQUEST(388, 11722), /** * ROOM_GAME_START_RESPONSE = 11723; */ - ROOM_GAME_START_RESPONSE(372, 11723), + ROOM_GAME_START_RESPONSE(389, 11723), /** * ROOM_GAME_END_INDICATION = 11724; * @@ -2331,7 +2435,7 @@ public final class MessageTypeProto { *游戏结束 * */ - ROOM_GAME_END_INDICATION(373, 11724), + ROOM_GAME_END_INDICATION(390, 11724), /** * ROOM_SYNC_MYSELF_MOVE_REQUEST = 11726; * @@ -2339,11 +2443,11 @@ public final class MessageTypeProto { *移动同步 * */ - ROOM_SYNC_MYSELF_MOVE_REQUEST(374, 11726), + ROOM_SYNC_MYSELF_MOVE_REQUEST(391, 11726), /** * ROOM_SYNC_MYSELF_MOVE_RESPONSE = 11727; */ - ROOM_SYNC_MYSELF_MOVE_RESPONSE(375, 11727), + ROOM_SYNC_MYSELF_MOVE_RESPONSE(392, 11727), /** * ROOM_SYNC_OTHER_MOVE_INDICTION = 11728; * @@ -2351,7 +2455,7 @@ public final class MessageTypeProto { *移动其他用户的位置 * */ - ROOM_SYNC_OTHER_MOVE_INDICTION(376, 11728), + ROOM_SYNC_OTHER_MOVE_INDICTION(393, 11728), /** * ROOM_TRIGGER_FIGHT_INDICATION = 11730; * @@ -2359,7 +2463,7 @@ public final class MessageTypeProto { *触发战斗 * */ - ROOM_TRIGGER_FIGHT_INDICATION(377, 11730), + ROOM_TRIGGER_FIGHT_INDICATION(394, 11730), /** * ROOM_GET_FULL_INFO_REQEUST = 11731; * @@ -2367,11 +2471,11 @@ public final class MessageTypeProto { *获取房间全量信息 * */ - ROOM_GET_FULL_INFO_REQEUST(378, 11731), + ROOM_GET_FULL_INFO_REQEUST(395, 11731), /** * ROOM_GET_FULL_INFO_RESPONSE = 11732; */ - ROOM_GET_FULL_INFO_RESPONSE(379, 11732), + ROOM_GET_FULL_INFO_RESPONSE(396, 11732), /** * ROOM_MAP_UPDATE_EVENT_REQUEST = 11733; * @@ -2379,11 +2483,11 @@ public final class MessageTypeProto { *更新事件 * */ - ROOM_MAP_UPDATE_EVENT_REQUEST(380, 11733), + ROOM_MAP_UPDATE_EVENT_REQUEST(397, 11733), /** * ROOM_MAP_UPDATE_EVENT_RESPONSE = 11734; */ - ROOM_MAP_UPDATE_EVENT_RESPONSE(381, 11734), + ROOM_MAP_UPDATE_EVENT_RESPONSE(398, 11734), /** * ROOM_MAP_POINT_INDICATION = 11735; * @@ -2391,7 +2495,7 @@ public final class MessageTypeProto { * 地图位置更新 * */ - ROOM_MAP_POINT_INDICATION(382, 11735), + ROOM_MAP_POINT_INDICATION(399, 11735), /** * ROOM_PLAY_HP_UPDATE_INDICATION = 11736; * @@ -2399,7 +2503,7 @@ public final class MessageTypeProto { * 玩家血量更新 * */ - ROOM_PLAY_HP_UPDATE_INDICATION(383, 11736), + ROOM_PLAY_HP_UPDATE_INDICATION(400, 11736), /** * REFRESH_ITEM_NUM_REQUEST = 11737; * @@ -2407,11 +2511,11 @@ public final class MessageTypeProto { *刷新道具数量 * */ - REFRESH_ITEM_NUM_REQUEST(384, 11737), + REFRESH_ITEM_NUM_REQUEST(401, 11737), /** * REFRESH_ITEM_NUM_RESPONSE = 11738; */ - REFRESH_ITEM_NUM_RESPONSE(385, 11738), + REFRESH_ITEM_NUM_RESPONSE(402, 11738), /** * ROOM_ADDRESS_INDICATION = 11739; * @@ -2419,7 +2523,7 @@ public final class MessageTypeProto { * 房间地址信息 * */ - ROOM_ADDRESS_INDICATION(386, 11739), + ROOM_ADDRESS_INDICATION(403, 11739), /** * ROOM_LOGIN_REQEUST = 11740; * @@ -2427,11 +2531,11 @@ public final class MessageTypeProto { * 登录房间 * */ - ROOM_LOGIN_REQEUST(387, 11740), + ROOM_LOGIN_REQEUST(404, 11740), /** * ROOM_LOGIN_RESPONSE = 11750; */ - ROOM_LOGIN_RESPONSE(388, 11750), + ROOM_LOGIN_RESPONSE(405, 11750), /** * REFRESH_LUCKWHEEL_REQUEST = 11751; * @@ -2439,11 +2543,11 @@ public final class MessageTypeProto { *幸运探宝 * */ - REFRESH_LUCKWHEEL_REQUEST(389, 11751), + REFRESH_LUCKWHEEL_REQUEST(406, 11751), /** * REFRESH_LUCKWHEEL_RESPONSE = 11752; */ - REFRESH_LUCKWHEEL_RESPONSE(390, 11752), + REFRESH_LUCKWHEEL_RESPONSE(407, 11752), /** * RIDE_LEVEL_UP_REQUEST = 11753; * @@ -2451,11 +2555,11 @@ public final class MessageTypeProto { *坐骑升级 * */ - RIDE_LEVEL_UP_REQUEST(391, 11753), + RIDE_LEVEL_UP_REQUEST(408, 11753), /** * RIDE_LEVEL_UP_RESPONSE = 11754; */ - RIDE_LEVEL_UP_RESPONSE(392, 11754), + RIDE_LEVEL_UP_RESPONSE(409, 11754), /** * REFRESH_RECHARGE_INDICATION = 11755; * @@ -2463,7 +2567,7 @@ public final class MessageTypeProto { *充值推送 * */ - REFRESH_RECHARGE_INDICATION(393, 11755), + REFRESH_RECHARGE_INDICATION(410, 11755), /** * SUCCESS_RESPONSE = 11800; * @@ -2471,7 +2575,7 @@ public final class MessageTypeProto { * S 11800 * */ - SUCCESS_RESPONSE(394, 11800), + SUCCESS_RESPONSE(411, 11800), /** * SWITCH_WORLDCHANNEL_REQUEST = 11802; * @@ -2479,11 +2583,11 @@ public final class MessageTypeProto { *切换世界聊天频道 * */ - SWITCH_WORLDCHANNEL_REQUEST(395, 11802), + SWITCH_WORLDCHANNEL_REQUEST(412, 11802), /** * SWITCH_WORLDCHANNEL_RESPONSE = 11803; */ - SWITCH_WORLDCHANNEL_RESPONSE(396, 11803), + SWITCH_WORLDCHANNEL_RESPONSE(413, 11803), /** * SEND_CHAT_INFO_REQUEST = 11804; * @@ -2491,11 +2595,11 @@ public final class MessageTypeProto { *发送聊天 * */ - SEND_CHAT_INFO_REQUEST(397, 11804), + SEND_CHAT_INFO_REQUEST(414, 11804), /** * SEND_CHAT_INFO_RESPONSE = 11805; */ - SEND_CHAT_INFO_RESPONSE(398, 11805), + SEND_CHAT_INFO_RESPONSE(415, 11805), /** * SEND_RED_POINT_INDICATION = 11806; * @@ -2503,7 +2607,7 @@ public final class MessageTypeProto { *红点消息推送 * */ - SEND_RED_POINT_INDICATION(399, 11806), + SEND_RED_POINT_INDICATION(416, 11806), /** * SAVE_NEW_PLAYER_GUIDE_POINT_REQUEST = 11807; * @@ -2511,11 +2615,11 @@ public final class MessageTypeProto { *保存新手引导节点 * */ - SAVE_NEW_PLAYER_GUIDE_POINT_REQUEST(400, 11807), + SAVE_NEW_PLAYER_GUIDE_POINT_REQUEST(417, 11807), /** * SAVE_NEW_PLAYER_GUIDE_POINT_RESPONSE = 11808; */ - SAVE_NEW_PLAYER_GUIDE_POINT_RESPONSE(401, 11808), + SAVE_NEW_PLAYER_GUIDE_POINT_RESPONSE(418, 11808), /** * SWEEP_RIGHT_REQUEST = 11809; * @@ -2523,11 +2627,11 @@ public final class MessageTypeProto { * 扫荡 * */ - SWEEP_RIGHT_REQUEST(402, 11809), + SWEEP_RIGHT_REQUEST(419, 11809), /** * SWEEP_RIGHT_RESPONSE = 11810; */ - SWEEP_RIGHT_RESPONSE(403, 11810), + SWEEP_RIGHT_RESPONSE(420, 11810), /** * SECRETBOX_RANDOM_REQUEST = 11811; * @@ -2535,11 +2639,11 @@ public final class MessageTypeProto { *秘盒抽取 * */ - SECRETBOX_RANDOM_REQUEST(404, 11811), + SECRETBOX_RANDOM_REQUEST(421, 11811), /** * SECRETBOX_RANDOM_RESPONSE = 11812; */ - SECRETBOX_RANDOM_RESPONSE(405, 11812), + SECRETBOX_RANDOM_RESPONSE(422, 11812), /** * STORE_GOODS_REFRESH_REQUEST = 11813; * @@ -2547,11 +2651,11 @@ public final class MessageTypeProto { *商店刷新 * */ - STORE_GOODS_REFRESH_REQUEST(406, 11813), + STORE_GOODS_REFRESH_REQUEST(423, 11813), /** * STORE_GOODS_REFRESH_RESPONSE = 11814; */ - STORE_GOODS_REFRESH_RESPONSE(407, 11814), + STORE_GOODS_REFRESH_RESPONSE(424, 11814), /** * RECHARGE_INFO_REQUEST = 11815; * @@ -2559,11 +2663,11 @@ public final class MessageTypeProto { *充值 * */ - RECHARGE_INFO_REQUEST(408, 11815), + RECHARGE_INFO_REQUEST(425, 11815), /** * RECHARGE_INFO_RESPONSE = 11816; */ - RECHARGE_INFO_RESPONSE(409, 11816), + RECHARGE_INFO_RESPONSE(426, 11816), /** * SEND_FRIEND_INFO_INDICATION = 11817; * @@ -2571,7 +2675,7 @@ public final class MessageTypeProto { *好友信息推送 * */ - SEND_FRIEND_INFO_INDICATION(410, 11817), + SEND_FRIEND_INFO_INDICATION(427, 11817), /** * SEND_CHAT_INFO_INDICATION = 11818; * @@ -2579,7 +2683,7 @@ public final class MessageTypeProto { *好友聊天推送 * */ - SEND_CHAT_INFO_INDICATION(411, 11818), + SEND_CHAT_INFO_INDICATION(428, 11818), /** * SEND_FRIEND_STATE_INDICATION = 11819; * @@ -2587,7 +2691,7 @@ public final class MessageTypeProto { * 推送好友信息 * */ - SEND_FRIEND_STATE_INDICATION(412, 11819), + SEND_FRIEND_STATE_INDICATION(429, 11819), /** * SCENE_MSG_UPDATE_INDICATION = 11820; * @@ -2595,7 +2699,7 @@ public final class MessageTypeProto { * 场景信息变更 * */ - SCENE_MSG_UPDATE_INDICATION(413, 11820), + SCENE_MSG_UPDATE_INDICATION(430, 11820), /** * SCENE_GET_FULL_MSG_REQUEST = 11821; * @@ -2603,11 +2707,11 @@ public final class MessageTypeProto { *获取场景所有信息 * */ - SCENE_GET_FULL_MSG_REQUEST(414, 11821), + SCENE_GET_FULL_MSG_REQUEST(431, 11821), /** * SCENE_GET_FULL_MSG_RESPONSE = 11822; */ - SCENE_GET_FULL_MSG_RESPONSE(415, 11822), + SCENE_GET_FULL_MSG_RESPONSE(432, 11822), /** * SCENE_COMMAND_REQUEST = 11823; * @@ -2615,11 +2719,11 @@ public final class MessageTypeProto { *在场景中发送的指令请求 * */ - SCENE_COMMAND_REQUEST(416, 11823), + SCENE_COMMAND_REQUEST(433, 11823), /** * SCENE_COMMAND_RESPONSE = 11824; */ - SCENE_COMMAND_RESPONSE(417, 11824), + SCENE_COMMAND_RESPONSE(434, 11824), /** * SERVER_ZERO_REQUEST = 11825; * @@ -2627,7 +2731,7 @@ public final class MessageTypeProto { *服务器12点更新用户数据 * */ - SERVER_ZERO_REQUEST(418, 11825), + SERVER_ZERO_REQUEST(435, 11825), /** * STORE_UPDATE_INDICATION = 11826; * @@ -2635,7 +2739,7 @@ public final class MessageTypeProto { * 商店更新信息 * */ - STORE_UPDATE_INDICATION(419, 11826), + STORE_UPDATE_INDICATION(436, 11826), /** * SIGN_IN_REQUEST = 11827; * @@ -2643,11 +2747,11 @@ public final class MessageTypeProto { *签到 * */ - SIGN_IN_REQUEST(420, 11827), + SIGN_IN_REQUEST(437, 11827), /** * SIGN_IN_RESPONSE = 11828; */ - SIGN_IN_RESPONSE(421, 11828), + SIGN_IN_RESPONSE(438, 11828), /** * SCENE_GAME_OVER_READY_INDICATION = 11829; * @@ -2655,7 +2759,7 @@ public final class MessageTypeProto { * 最后狂欢时刻到来 * */ - SCENE_GAME_OVER_READY_INDICATION(422, 11829), + SCENE_GAME_OVER_READY_INDICATION(439, 11829), /** * SCENE_GAME_OVER_INDICATION = 11830; * @@ -2663,7 +2767,7 @@ public final class MessageTypeProto { * 场景结算 * */ - SCENE_GAME_OVER_INDICATION(423, 11830), + SCENE_GAME_OVER_INDICATION(440, 11830), /** * SOUL_EQUIP_WEAR_REQUEST = 11831; * @@ -2671,11 +2775,11 @@ public final class MessageTypeProto { * 安装魂印 * */ - SOUL_EQUIP_WEAR_REQUEST(424, 11831), + SOUL_EQUIP_WEAR_REQUEST(441, 11831), /** * SOUL_EQUIP_WEAR_RESPONSE = 11832; */ - SOUL_EQUIP_WEAR_RESPONSE(425, 11832), + SOUL_EQUIP_WEAR_RESPONSE(442, 11832), /** * SOUL_EQUIP_UNLOAD_OPT_REQUEST = 11833; * @@ -2683,11 +2787,11 @@ public final class MessageTypeProto { *卸下魂印 * */ - SOUL_EQUIP_UNLOAD_OPT_REQUEST(426, 11833), + SOUL_EQUIP_UNLOAD_OPT_REQUEST(443, 11833), /** * SOUL_EQUIP_UNLOAD_OPT_RESPONSE = 11834; */ - SOUL_EQUIP_UNLOAD_OPT_RESPONSE(427, 11834), + SOUL_EQUIP_UNLOAD_OPT_RESPONSE(444, 11834), /** * SOUL_RAND_EQUIP_REQUEST = 11835; * @@ -2695,11 +2799,11 @@ public final class MessageTypeProto { *抽魂印 * */ - SOUL_RAND_EQUIP_REQUEST(428, 11835), + SOUL_RAND_EQUIP_REQUEST(445, 11835), /** * SOUL_RAND_EQUIP_RESPONSE = 11836; */ - SOUL_RAND_EQUIP_RESPONSE(429, 11836), + SOUL_RAND_EQUIP_RESPONSE(446, 11836), /** * SOUL_FORCE_RAND_EQUIP_REQUEST = 11837; * @@ -2707,11 +2811,11 @@ public final class MessageTypeProto { *抽魂印 * */ - SOUL_FORCE_RAND_EQUIP_REQUEST(430, 11837), + SOUL_FORCE_RAND_EQUIP_REQUEST(447, 11837), /** * SOUL_FORCE_RAND_EQUIP_RESPONSE = 11838; */ - SOUL_FORCE_RAND_EQUIP_RESPONSE(431, 11838), + SOUL_FORCE_RAND_EQUIP_RESPONSE(448, 11838), /** * SOUL_MERGE_REQUEST = 11839; * @@ -2719,11 +2823,11 @@ public final class MessageTypeProto { *合成魂印 * */ - SOUL_MERGE_REQUEST(432, 11839), + SOUL_MERGE_REQUEST(449, 11839), /** * SOUL_MERGE_RESPONSE = 11840; */ - SOUL_MERGE_RESPONSE(433, 11840), + SOUL_MERGE_RESPONSE(450, 11840), /** * TRIGGER_EVENT_REQUEST = 11900; * @@ -2731,11 +2835,11 @@ public final class MessageTypeProto { * T 11900 * */ - TRIGGER_EVENT_REQUEST(434, 11900), + TRIGGER_EVENT_REQUEST(451, 11900), /** * TRIGGER_EVENT_RESPONSE = 11901; */ - TRIGGER_EVENT_RESPONSE(435, 11901), + TRIGGER_EVENT_RESPONSE(452, 11901), /** * TEAM_POS_SAVE_REQUEST = 11902; * @@ -2743,11 +2847,11 @@ public final class MessageTypeProto { *保存阵容 * */ - TEAM_POS_SAVE_REQUEST(436, 11902), + TEAM_POS_SAVE_REQUEST(453, 11902), /** * TEAM_POS_SAVE_RESPONSE = 11903; */ - TEAM_POS_SAVE_RESPONSE(437, 11903), + TEAM_POS_SAVE_RESPONSE(454, 11903), /** * TAKE_ACTIVITY_REWARD_REQUEST = 11904; * @@ -2755,11 +2859,11 @@ public final class MessageTypeProto { *领取活动奖励 * */ - TAKE_ACTIVITY_REWARD_REQUEST(438, 11904), + TAKE_ACTIVITY_REWARD_REQUEST(455, 11904), /** * TAKE_ACTIVITY_REWARD_RESPONSE = 11905; */ - TAKE_ACTIVITY_REWARD_RESPONSE(439, 11905), + TAKE_ACTIVITY_REWARD_RESPONSE(456, 11905), /** * TAKE_MISSION_REWARD_REQUEST = 11906; * @@ -2767,11 +2871,11 @@ public final class MessageTypeProto { *领取任务奖励 * */ - TAKE_MISSION_REWARD_REQUEST(440, 11906), + TAKE_MISSION_REWARD_REQUEST(457, 11906), /** * TAKE_MISSION_REWARD_RESPONSE = 11907; */ - TAKE_MISSION_REWARD_RESPONSE(441, 11907), + TAKE_MISSION_REWARD_RESPONSE(458, 11907), /** * TEST_BUY_GIGT_GOODS_REQEUST = 11908; * @@ -2779,11 +2883,11 @@ public final class MessageTypeProto { *测试购买礼包 * */ - TEST_BUY_GIGT_GOODS_REQEUST(442, 11908), + TEST_BUY_GIGT_GOODS_REQEUST(459, 11908), /** * TEST_BUY_GIGT_GOODS_RESPONSE = 11909; */ - TEST_BUY_GIGT_GOODS_RESPONSE(443, 11909), + TEST_BUY_GIGT_GOODS_RESPONSE(460, 11909), /** * TAKE_TOWER_REWARD_REQUEST = 11910; * @@ -2791,11 +2895,11 @@ public final class MessageTypeProto { *领取层级奖励 * */ - TAKE_TOWER_REWARD_REQUEST(444, 11910), + TAKE_TOWER_REWARD_REQUEST(461, 11910), /** * TAKE_TOWER_REWARD_RESPONSE = 11911; */ - TAKE_TOWER_REWARD_RESPONSE(445, 11911), + TAKE_TOWER_REWARD_RESPONSE(462, 11911), /** * TAKE_SEVEN_HAPPY_REWARD_REQUEST = 11912; * @@ -2803,11 +2907,11 @@ public final class MessageTypeProto { * 领取七日狂欢积分奖励 * */ - TAKE_SEVEN_HAPPY_REWARD_REQUEST(446, 11912), + TAKE_SEVEN_HAPPY_REWARD_REQUEST(463, 11912), /** * TAKE_SEVEN_HAPPY_REWARD_RESPONSE = 11913; */ - TAKE_SEVEN_HAPPY_REWARD_RESPONSE(447, 11913), + TAKE_SEVEN_HAPPY_REWARD_RESPONSE(464, 11913), /** * TO_BE_STRONGER_REQUEST = 11914; * @@ -2815,11 +2919,11 @@ public final class MessageTypeProto { *我要变强 * */ - TO_BE_STRONGER_REQUEST(448, 11914), + TO_BE_STRONGER_REQUEST(465, 11914), /** * TO_BE_STRONGER_RESPONSE = 11915; */ - TO_BE_STRONGER_RESPONSE(449, 11915), + TO_BE_STRONGER_RESPONSE(466, 11915), /** * TREASURE_REFRESH_INDICATION = 11916; * @@ -2827,7 +2931,7 @@ public final class MessageTypeProto { *戒灵秘宝刷新推送 * */ - TREASURE_REFRESH_INDICATION(450, 11916), + TREASURE_REFRESH_INDICATION(467, 11916), /** * TREASURE_LEVELUP_INDICATION = 11917; * @@ -2835,7 +2939,7 @@ public final class MessageTypeProto { *戒灵秘宝等级提升推送 * */ - TREASURE_LEVELUP_INDICATION(451, 11917), + TREASURE_LEVELUP_INDICATION(468, 11917), /** * TREASURE_REFRESH_TIME_REQUEST = 11918; * @@ -2843,11 +2947,11 @@ public final class MessageTypeProto { *戒灵秘宝刷新时间获取 * */ - TREASURE_REFRESH_TIME_REQUEST(452, 11918), + TREASURE_REFRESH_TIME_REQUEST(469, 11918), /** * TREASURE_REFRESH_TIME_RESPONSE = 11919; */ - TREASURE_REFRESH_TIME_RESPONSE(453, 11919), + TREASURE_REFRESH_TIME_RESPONSE(470, 11919), /** * UP_HERO_LEVEL_REQUEST = 12000; * @@ -2855,11 +2959,11 @@ public final class MessageTypeProto { * U 12000 * */ - UP_HERO_LEVEL_REQUEST(454, 12000), + UP_HERO_LEVEL_REQUEST(471, 12000), /** * UP_HERO_LEVEL_RESPONSE = 12001; */ - UP_HERO_LEVEL_RESPONSE(455, 12001), + UP_HERO_LEVEL_RESPONSE(472, 12001), /** * UP_HERO_STAR_REQUEST = 12002; * @@ -2867,11 +2971,11 @@ public final class MessageTypeProto { * 升星 * */ - UP_HERO_STAR_REQUEST(456, 12002), + UP_HERO_STAR_REQUEST(473, 12002), /** * UP_HERO_STAR_RESPONSE = 12003; */ - UP_HERO_STAR_RESPONSE(457, 12003), + UP_HERO_STAR_RESPONSE(474, 12003), /** * USER_AND_PRICE_ITEM_REQUEST = 12004; * @@ -2879,11 +2983,11 @@ public final class MessageTypeProto { *使用出售道具 * */ - USER_AND_PRICE_ITEM_REQUEST(458, 12004), + USER_AND_PRICE_ITEM_REQUEST(475, 12004), /** * USER_AND_PRICE_ITEM_RESPONSE = 12005; */ - USER_AND_PRICE_ITEM_RESPONSE(459, 12005), + USER_AND_PRICE_ITEM_RESPONSE(476, 12005), /** * USER_FORCE_CHANGE_REQUEST = 12006; * @@ -2891,11 +2995,11 @@ public final class MessageTypeProto { *用户战力提升 * */ - USER_FORCE_CHANGE_REQUEST(460, 12006), + USER_FORCE_CHANGE_REQUEST(477, 12006), /** * USER_FORCE_CHANGE_RESPONSE = 12007; */ - USER_FORCE_CHANGE_RESPONSE(461, 12007), + USER_FORCE_CHANGE_RESPONSE(478, 12007), /** * UPDATE_BAG_INDICATION = 12008; * @@ -2903,7 +3007,7 @@ public final class MessageTypeProto { *更新背包 * */ - UPDATE_BAG_INDICATION(462, 12008), + UPDATE_BAG_INDICATION(479, 12008), /** * UPDATE_STATE_REQUEST = 12009; * @@ -2911,11 +3015,11 @@ public final class MessageTypeProto { * 更新客户状态 * */ - UPDATE_STATE_REQUEST(463, 12009), + UPDATE_STATE_REQUEST(480, 12009), /** * UPDATE_STATE_RESPONSE = 12010; */ - UPDATE_STATE_RESPONSE(464, 12010), + UPDATE_STATE_RESPONSE(481, 12010), /** * UPDATE_USER_EXP_INDICATION = 12011; * @@ -2923,7 +3027,7 @@ public final class MessageTypeProto { * 更新玩家等级经验信息 * */ - UPDATE_USER_EXP_INDICATION(465, 12011), + UPDATE_USER_EXP_INDICATION(482, 12011), /** * UPDATE_SECRET_BOX_SEASON_INDICATION = 12012; * @@ -2931,7 +3035,7 @@ public final class MessageTypeProto { * 更新秘盒赛季信息 * */ - UPDATE_SECRET_BOX_SEASON_INDICATION(466, 12012), + UPDATE_SECRET_BOX_SEASON_INDICATION(483, 12012), /** * UPDATE_PHONE_INFO_REQUEST = 12013; * @@ -2939,11 +3043,11 @@ public final class MessageTypeProto { *更新手机号 * */ - UPDATE_PHONE_INFO_REQUEST(467, 12013), + UPDATE_PHONE_INFO_REQUEST(484, 12013), /** * UPDATE_PHONE_INFO_RESPONSE = 12014; */ - UPDATE_PHONE_INFO_RESPONSE(468, 12014), + UPDATE_PHONE_INFO_RESPONSE(485, 12014), /** * UPDATE_QUESTION_REQUEST = 12015; * @@ -2951,15 +3055,15 @@ public final class MessageTypeProto { *问卷 * */ - UPDATE_QUESTION_REQUEST(469, 12015), + UPDATE_QUESTION_REQUEST(486, 12015), /** * UPDATE_QUESTION_RESPONSE = 12016; */ - UPDATE_QUESTION_RESPONSE(470, 12016), + UPDATE_QUESTION_RESPONSE(487, 12016), /** * UP_SOUL_EQUIP_QUICK_REQUEST = 12018; */ - UP_SOUL_EQUIP_QUICK_REQUEST(471, 12018), + UP_SOUL_EQUIP_QUICK_REQUEST(488, 12018), /** * UP_SOUL_EQUIP_RESPONSE = 12019; * @@ -2967,7 +3071,7 @@ public final class MessageTypeProto { *魂印升级 * */ - UP_SOUL_EQUIP_RESPONSE(472, 12019), + UP_SOUL_EQUIP_RESPONSE(489, 12019), /** * VIEW_FIGHTREPLAY_REQUEST = 12100; * @@ -2975,11 +3079,11 @@ public final class MessageTypeProto { * V 12100 * */ - VIEW_FIGHTREPLAY_REQUEST(473, 12100), + VIEW_FIGHTREPLAY_REQUEST(490, 12100), /** * VIEW_FIGHTREPLAY_RESPONSE = 12101; */ - VIEW_FIGHTREPLAY_RESPONSE(474, 12101), + VIEW_FIGHTREPLAY_RESPONSE(491, 12101), /** * VIP_LEVELUP_REQEUST = 12102; * @@ -2987,11 +3091,11 @@ public final class MessageTypeProto { *VIP等级提升 * */ - VIP_LEVELUP_REQEUST(475, 12102), + VIP_LEVELUP_REQEUST(492, 12102), /** * VIP_LEVELUP_RESPONSE = 12103; */ - VIP_LEVELUP_RESPONSE(476, 12103), + VIP_LEVELUP_RESPONSE(493, 12103), /** * VIP_TAKE_REWARD_REQUEST = 12104; * @@ -2999,11 +3103,11 @@ public final class MessageTypeProto { *领取vip等级或每日礼包 * */ - VIP_TAKE_REWARD_REQUEST(477, 12104), + VIP_TAKE_REWARD_REQUEST(494, 12104), /** * VIP_TAKE_REWARD_RESPONSE = 12105; */ - VIP_TAKE_REWARD_RESPONSE(478, 12105), + VIP_TAKE_REWARD_RESPONSE(495, 12105), /** * VIEW_HERO_INFO_REQUEST = 12106; * @@ -3011,11 +3115,11 @@ public final class MessageTypeProto { * 查看英雄详情信息 * */ - VIEW_HERO_INFO_REQUEST(479, 12106), + VIEW_HERO_INFO_REQUEST(496, 12106), /** * VIEW_HERO_INFO_RESPONSE = 12107; */ - VIEW_HERO_INFO_RESPONSE(480, 12107), + VIEW_HERO_INFO_RESPONSE(497, 12107), /** * VIP_TAKE_DAILY_REQUEST = 12108; * @@ -3023,11 +3127,11 @@ public final class MessageTypeProto { *领取vip每日礼包 * */ - VIP_TAKE_DAILY_REQUEST(481, 12108), + VIP_TAKE_DAILY_REQUEST(498, 12108), /** * VIP_TAKE_DAILY_RESPONSE = 12109; */ - VIP_TAKE_DAILY_RESPONSE(482, 12109), + VIP_TAKE_DAILY_RESPONSE(499, 12109), /** * WORKSHOP_FOUNDATION_REQUEST = 12200; * @@ -3035,11 +3139,11 @@ public final class MessageTypeProto { * W 12200 * */ - WORKSHOP_FOUNDATION_REQUEST(483, 12200), + WORKSHOP_FOUNDATION_REQUEST(500, 12200), /** * WORKSHOP_FOUNDATION_RESPONSE = 12201; */ - WORKSHOP_FOUNDATION_RESPONSE(484, 12201), + WORKSHOP_FOUNDATION_RESPONSE(501, 12201), /** * WORKSHOP_EQUIP_CREATE_REQUEST = 12202; * @@ -3047,11 +3151,11 @@ public final class MessageTypeProto { *装备打造 * */ - WORKSHOP_EQUIP_CREATE_REQUEST(485, 12202), + WORKSHOP_EQUIP_CREATE_REQUEST(502, 12202), /** * WORKSHOP_EQUIP_CREATE_RESPONSE = 12203; */ - WORKSHOP_EQUIP_CREATE_RESPONSE(486, 12203), + WORKSHOP_EQUIP_CREATE_RESPONSE(503, 12203), /** * WORKSHOP_REBUILD_REQUEST = 12204; * @@ -3059,11 +3163,11 @@ public final class MessageTypeProto { *装备重铸 * */ - WORKSHOP_REBUILD_REQUEST(487, 12204), + WORKSHOP_REBUILD_REQUEST(504, 12204), /** * WORKSHOP_REBUILD_RESPONSE = 12205; */ - WORKSHOP_REBUILD_RESPONSE(488, 12205), + WORKSHOP_REBUILD_RESPONSE(505, 12205), /** * WORKSHOP_REBUILD_CONFIRM_REQUEST = 12206; * @@ -3071,11 +3175,11 @@ public final class MessageTypeProto { * 重铸确认 * */ - WORKSHOP_REBUILD_CONFIRM_REQUEST(489, 12206), + WORKSHOP_REBUILD_CONFIRM_REQUEST(506, 12206), /** * WORKSHOP_REBUILD_CONFIRM_RESONSE = 12207; */ - WORKSHOP_REBUILD_CONFIRM_RESONSE(490, 12207), + WORKSHOP_REBUILD_CONFIRM_RESONSE(507, 12207), /** * WORKSHOP_LEVELUP_REQUEST = 12208; * @@ -3083,11 +3187,11 @@ public final class MessageTypeProto { *工坊升级 * */ - WORKSHOP_LEVELUP_REQUEST(491, 12208), + WORKSHOP_LEVELUP_REQUEST(508, 12208), /** * WORKSHOP_LEVELUP_RESPONSE = 12209; */ - WORKSHOP_LEVELUP_RESPONSE(492, 12209), + WORKSHOP_LEVELUP_RESPONSE(509, 12209), /** * WORKSHOP_TECHNOLOGY_LEVEL_REQUEST = 12210; * @@ -3095,11 +3199,11 @@ public final class MessageTypeProto { *科技树升级 * */ - WORKSHOP_TECHNOLOGY_LEVEL_REQUEST(493, 12210), + WORKSHOP_TECHNOLOGY_LEVEL_REQUEST(510, 12210), /** * WORKSHOP_TECHNOLOGY_RESPONSE = 12211; */ - WORKSHOP_TECHNOLOGY_RESPONSE(494, 12211), + WORKSHOP_TECHNOLOGY_RESPONSE(511, 12211), /** * WORKSHOP_TECHNOLOGY_RESET_REQUEST = 12212; * @@ -3107,11 +3211,11 @@ public final class MessageTypeProto { *科技树重置 * */ - WORKSHOP_TECHNOLOGY_RESET_REQUEST(495, 12212), + WORKSHOP_TECHNOLOGY_RESET_REQUEST(512, 12212), /** * WORKSHOP_TECHNOLOGY_RESET_RESPONSE = 12213; */ - WORKSHOP_TECHNOLOGY_RESET_RESPONSE(496, 12213), + WORKSHOP_TECHNOLOGY_RESET_RESPONSE(513, 12213), /** * EXPEDITION_GET_EXPEDITION_REQUEST = 20002; * @@ -3119,11 +3223,11 @@ public final class MessageTypeProto { *获取节点信息 * */ - EXPEDITION_GET_EXPEDITION_REQUEST(497, 20002), + EXPEDITION_GET_EXPEDITION_REQUEST(514, 20002), /** * EXPEDITION_GET_EXPEDITION_RESONSE = 20003; */ - EXPEDITION_GET_EXPEDITION_RESONSE(498, 20003), + EXPEDITION_GET_EXPEDITION_RESONSE(515, 20003), /** * EXPEDITION_TAKE_BOXREWARD_REQUEST = 20004; * @@ -3131,11 +3235,11 @@ public final class MessageTypeProto { *获取层级奖励 * */ - EXPEDITION_TAKE_BOXREWARD_REQUEST(499, 20004), + EXPEDITION_TAKE_BOXREWARD_REQUEST(516, 20004), /** * EXPEDITION_TAKE_BOXREWARD_RESONSE = 20005; */ - EXPEDITION_TAKE_BOXREWARD_RESONSE(500, 20005), + EXPEDITION_TAKE_BOXREWARD_RESONSE(517, 20005), /** * EXPEDITION_RELIVE_HERO_REQUEST = 20006; * @@ -3143,11 +3247,11 @@ public final class MessageTypeProto { *复活英雄 * */ - EXPEDITION_RELIVE_HERO_REQUEST(501, 20006), + EXPEDITION_RELIVE_HERO_REQUEST(518, 20006), /** * EXPEDITION_RELIVE_HERO_RESONSE = 20007; */ - EXPEDITION_RELIVE_HERO_RESONSE(502, 20007), + EXPEDITION_RELIVE_HERO_RESONSE(519, 20007), /** * EXPEDITION_START_BATTLE_REQUEST = 20008; * @@ -3155,11 +3259,11 @@ public final class MessageTypeProto { *开始节点战斗操作 * */ - EXPEDITION_START_BATTLE_REQUEST(503, 20008), + EXPEDITION_START_BATTLE_REQUEST(520, 20008), /** * EXPEDITION_START_BATTLE_RESONSE = 20009; */ - EXPEDITION_START_BATTLE_RESONSE(504, 20009), + EXPEDITION_START_BATTLE_RESONSE(521, 20009), /** * EXPEDITION_END_BATTLE_REQUEST = 20010; * @@ -3167,11 +3271,11 @@ public final class MessageTypeProto { *结束节点战斗操作 * */ - EXPEDITION_END_BATTLE_REQUEST(505, 20010), + EXPEDITION_END_BATTLE_REQUEST(522, 20010), /** * EXPEDITION_END_BATTLE_RESONSE = 20011; */ - EXPEDITION_END_BATTLE_RESONSE(506, 20011), + EXPEDITION_END_BATTLE_RESONSE(523, 20011), /** * EXPEDITION_TAKE_HOLY_EQUIP_REQUEST = 20012; * @@ -3179,11 +3283,11 @@ public final class MessageTypeProto { *领取圣物 * */ - EXPEDITION_TAKE_HOLY_EQUIP_REQUEST(507, 20012), + EXPEDITION_TAKE_HOLY_EQUIP_REQUEST(524, 20012), /** * EXPEDITION_TAKE_HOLY_EQUIP_RESONSE = 20013; */ - EXPEDITION_TAKE_HOLY_EQUIP_RESONSE(508, 20013), + EXPEDITION_TAKE_HOLY_EQUIP_RESONSE(525, 20013), /** * EXPEDITION_RECOVER_HERO_REQUEST = 20014; * @@ -3191,11 +3295,11 @@ public final class MessageTypeProto { *恢复英雄 * */ - EXPEDITION_RECOVER_HERO_REQUEST(509, 20014), + EXPEDITION_RECOVER_HERO_REQUEST(526, 20014), /** * EXPEDITION_RECOVER_HERO_RESONSE = 20015; */ - EXPEDITION_RECOVER_HERO_RESONSE(510, 20015), + EXPEDITION_RECOVER_HERO_RESONSE(527, 20015), /** * EXPEDITION_HOLY_BAG_INDICATION = 20016; * @@ -3203,7 +3307,7 @@ public final class MessageTypeProto { *臨時背包推送 * */ - EXPEDITION_HOLY_BAG_INDICATION(511, 20016), + EXPEDITION_HOLY_BAG_INDICATION(528, 20016), /** * EXPEDITION_NOINFO_INDICATION = 20017; * @@ -3211,7 +3315,7 @@ public final class MessageTypeProto { *节点状态推送 * */ - EXPEDITION_NOINFO_INDICATION(512, 20017), + EXPEDITION_NOINFO_INDICATION(529, 20017), /** * MONTHCARD_TAKE_DAILY_REQUEST = 20101; * @@ -3219,15 +3323,15 @@ public final class MessageTypeProto { * 20101 - 20110 月卡 * */ - MONTHCARD_TAKE_DAILY_REQUEST(513, 20101), + MONTHCARD_TAKE_DAILY_REQUEST(530, 20101), /** * MONTHCARD_TAKE_DAILY_RESPONSE = 20102; */ - MONTHCARD_TAKE_DAILY_RESPONSE(514, 20102), + MONTHCARD_TAKE_DAILY_RESPONSE(531, 20102), /** * MONTHCARD_INDICATION = 20103; */ - MONTHCARD_INDICATION(515, 20103), + MONTHCARD_INDICATION(532, 20103), /** * EQUIP_COMPLEX_REQUEST = 20111; * @@ -3235,11 +3339,50 @@ public final class MessageTypeProto { *20111 - 20200 装备、 * */ - EQUIP_COMPLEX_REQUEST(516, 20111), + EQUIP_COMPLEX_REQUEST(533, 20111), /** * EQUIP_COMPLEX_RESPONSE = 20112; */ - EQUIP_COMPLEX_RESPONSE(517, 20112), + EQUIP_COMPLEX_RESPONSE(534, 20112), + /** + * FamilyFeteRequest = 30001; + * + *
+     *祭祀
+     * 
+ */ + FamilyFeteRequest(535, 30001), + /** + * FamilyFeteResponse = 30002; + * + *
+     *祭祀
+     * 
+ */ + FamilyFeteResponse(536, 30002), + /** + * FamilyGetFeteRewardRequest = 30003; + * + *
+     *领取公会祭祀
+     * 
+ */ + FamilyGetFeteRewardRequest(537, 30003), + /** + * FamilyGetFeteRewardResponse = 30004; + * + *
+     * 
+ */ + FamilyGetFeteRewardResponse(538, 30004), + /** + * FamilyFeteRewardProcessIndication = 30005; + * + *
+     * 更新公会进度
+     * 
+ */ + FamilyFeteRewardProcessIndication(539, 30005), ; /** @@ -3794,6 +3937,14 @@ public final class MessageTypeProto { * */ public static final int CHAMPION_GUESS_SUCCESS_INDICATION_VALUE = 10220; + /** + * CAR_DELAY_PROGRESS_INDICATION = 10221; + * + *
+     *车迟进度变更
+     * 
+ */ + public static final int CAR_DELAY_PROGRESS_INDICATION_VALUE = 10221; /** * DRAW_HERO_REQUEST = 10300; * @@ -3850,6 +4001,42 @@ public final class MessageTypeProto { * DAILY_CHALLENGE_RESPONSE = 10308; */ public static final int DAILY_CHALLENGE_RESPONSE_VALUE = 10308; + /** + * DEATH_PATH_GET_STATUS_REQUEST = 10309; + * + *
+     *获取十绝阵状态信息
+     * 
+ */ + public static final int DEATH_PATH_GET_STATUS_REQUEST_VALUE = 10309; + /** + * DEATH_PATH_GET_STATUS_RESPONSE = 10310; + */ + public static final int DEATH_PATH_GET_STATUS_RESPONSE_VALUE = 10310; + /** + * DEATH_PATH_INFO_REQUEST = 10311; + * + *
+     *十绝阵内信息
+     * 
+ */ + public static final int DEATH_PATH_INFO_REQUEST_VALUE = 10311; + /** + * DEATH_PATH_INFO_RESPONSE = 10312; + */ + public static final int DEATH_PATH_INFO_RESPONSE_VALUE = 10312; + /** + * DEATH_PATH_CHALLENGE_REQUEST = 10313; + * + *
+     *挑战十绝阵
+     * 
+ */ + public static final int DEATH_PATH_CHALLENGE_REQUEST_VALUE = 10313; + /** + * DEATH_PATH_CHALLENGE_RESPONSE = 10314; + */ + public static final int DEATH_PATH_CHALLENGE_RESPONSE_VALUE = 10314; /** * ERROR_CODE_INDICATION = 10400; * @@ -4557,6 +4744,18 @@ public final class MessageTypeProto { * FRIEND_BLACK_OPT_RESPONSE = 10585; */ public static final int FRIEND_BLACK_OPT_RESPONSE_VALUE = 10585; + /** + * FAST_FIGHT_CHALLENGE_REQUEST = 10586; + * + *
+     * 快速战斗
+     * 
+ */ + public static final int FAST_FIGHT_CHALLENGE_REQUEST_VALUE = 10586; + /** + * FAST_FIGHT_CHALLENGE_RESPONSE = 10587; + */ + public static final int FAST_FIGHT_CHALLENGE_RESPONSE_VALUE = 10587; /** * GET_PLAYERINFO_REQUEST = 10600; * @@ -4891,6 +5090,54 @@ public final class MessageTypeProto { * GET_SOME_ACTIVITY_INFO_RESPONSE = 16665; */ public static final int GET_SOME_ACTIVITY_INFO_RESPONSE_VALUE = 16665; + /** + * GUILD_SKILL_RESET_REQUEST = 16666; + * + *
+     *重置公会技能
+     * 
+ */ + public static final int GUILD_SKILL_RESET_REQUEST_VALUE = 16666; + /** + * GUILD_SKILL_RESET_RESPONSE = 16667; + */ + public static final int GUILD_SKILL_RESET_RESPONSE_VALUE = 16667; + /** + * GUILD_SKILL_LEVEL_UP_REQUEST = 16668; + * + *
+     *升级公会技能
+     * 
+ */ + public static final int GUILD_SKILL_LEVEL_UP_REQUEST_VALUE = 16668; + /** + * GUILD_SKILL_LEVEL_UP_RESPONSE = 16669; + */ + public static final int GUILD_SKILL_LEVEL_UP_RESPONSE_VALUE = 16669; + /** + * GET_ALL_GUILD_SKILL_REQUEST = 16670; + * + *
+     *获取所有公会技能
+     * 
+ */ + public static final int GET_ALL_GUILD_SKILL_REQUEST_VALUE = 16670; + /** + * GET_ALL_GUILD_SKILL_RESPONSE = 16671; + */ + public static final int GET_ALL_GUILD_SKILL_RESPONSE_VALUE = 16671; + /** + * GET_CAR_CHALLENEG_LIST_REQUEST = 16672; + * + *
+     * 获取车迟匹配信息
+     * 
+ */ + public static final int GET_CAR_CHALLENEG_LIST_REQUEST_VALUE = 16672; + /** + * GET_CAR_CHALLENEG_LIST_RESPONSE = 16673; + */ + public static final int GET_CAR_CHALLENEG_LIST_RESPONSE_VALUE = 16673; /** * HERO_RAND_REQQUEST = 10701; * @@ -6469,6 +6716,45 @@ public final class MessageTypeProto { * EQUIP_COMPLEX_RESPONSE = 20112; */ public static final int EQUIP_COMPLEX_RESPONSE_VALUE = 20112; + /** + * FamilyFeteRequest = 30001; + * + *
+     *祭祀
+     * 
+ */ + public static final int FamilyFeteRequest_VALUE = 30001; + /** + * FamilyFeteResponse = 30002; + * + *
+     *祭祀
+     * 
+ */ + public static final int FamilyFeteResponse_VALUE = 30002; + /** + * FamilyGetFeteRewardRequest = 30003; + * + *
+     *领取公会祭祀
+     * 
+ */ + public static final int FamilyGetFeteRewardRequest_VALUE = 30003; + /** + * FamilyGetFeteRewardResponse = 30004; + * + *
+     * 
+ */ + public static final int FamilyGetFeteRewardResponse_VALUE = 30004; + /** + * FamilyFeteRewardProcessIndication = 30005; + * + *
+     * 更新公会进度
+     * 
+ */ + public static final int FamilyFeteRewardProcessIndication_VALUE = 30005; public final int getNumber() { return value; } @@ -6563,6 +6849,7 @@ public final class MessageTypeProto { case 10218: return CHAMPION_VIEW_FINAL_REQUEST; case 10219: return CHAMPION_VIEW_FINAL_RESPONSE; case 10220: return CHAMPION_GUESS_SUCCESS_INDICATION; + case 10221: return CAR_DELAY_PROGRESS_INDICATION; case 10300: return DRAW_HERO_REQUEST; case 10301: return DRAW_HERO_RESPONSE; case 10302: return DEL_FRIEND_REQUEST; @@ -6572,6 +6859,12 @@ public final class MessageTypeProto { case 10306: return DIRECT_BUY_GOODS_INDICATION; case 10307: return DAILY_CHALLENGE_REQUEST; case 10308: return DAILY_CHALLENGE_RESPONSE; + case 10309: return DEATH_PATH_GET_STATUS_REQUEST; + case 10310: return DEATH_PATH_GET_STATUS_RESPONSE; + case 10311: return DEATH_PATH_INFO_REQUEST; + case 10312: return DEATH_PATH_INFO_RESPONSE; + case 10313: return DEATH_PATH_CHALLENGE_REQUEST; + case 10314: return DEATH_PATH_CHALLENGE_RESPONSE; case 10400: return ERROR_CODE_INDICATION; case 10402: return EQUIP_WEAR_REQUEST; case 10403: return EQUIP_WEAR_RESPONSE; @@ -6686,6 +6979,8 @@ public final class MessageTypeProto { case 10583: return FAMILY_REFUSE_JOIN_INDICATION; case 10584: return FRIEND_BLACK_OPT_REQUEST; case 10585: return FRIEND_BLACK_OPT_RESPONSE; + case 10586: return FAST_FIGHT_CHALLENGE_REQUEST; + case 10587: return FAST_FIGHT_CHALLENGE_RESPONSE; case 10600: return GET_PLAYERINFO_REQUEST; case 10601: return GET_PLAYERINFO_RESPONSE; case 10602: return GET_HEROINFO_REQUEST; @@ -6742,6 +7037,14 @@ public final class MessageTypeProto { case 16663: return GET_ONE_RANK_RESPONSE; case 16664: return GET_SOME_ACTIVITY_INFO_REQUEST; case 16665: return GET_SOME_ACTIVITY_INFO_RESPONSE; + case 16666: return GUILD_SKILL_RESET_REQUEST; + case 16667: return GUILD_SKILL_RESET_RESPONSE; + case 16668: return GUILD_SKILL_LEVEL_UP_REQUEST; + case 16669: return GUILD_SKILL_LEVEL_UP_RESPONSE; + case 16670: return GET_ALL_GUILD_SKILL_REQUEST; + case 16671: return GET_ALL_GUILD_SKILL_RESPONSE; + case 16672: return GET_CAR_CHALLENEG_LIST_REQUEST; + case 16673: return GET_CAR_CHALLENEG_LIST_RESPONSE; case 10701: return HERO_RAND_REQQUEST; case 10702: return HERO_RAND_RESPONSE; case 10703: return HERO_COMPOSE_REQUEST; @@ -6993,6 +7296,11 @@ public final class MessageTypeProto { case 20103: return MONTHCARD_INDICATION; case 20111: return EQUIP_COMPLEX_REQUEST; case 20112: return EQUIP_COMPLEX_RESPONSE; + case 30001: return FamilyFeteRequest; + case 30002: return FamilyFeteResponse; + case 30003: return FamilyGetFeteRewardRequest; + case 30004: return FamilyGetFeteRewardResponse; + case 30005: return FamilyFeteRewardProcessIndication; default: return null; } } @@ -7054,7 +7362,7 @@ public final class MessageTypeProto { static { java.lang.String[] descriptorData = { "\n\026MessageTypeProto.proto\022\032com.ljsd.jieli" + - "ng.protocols*\273\203\001\n\013MessageType\022\027\n\022HEART_B" + + "ng.protocols*\264\211\001\n\013MessageType\022\027\n\022HEART_B" + "EAT_REQUEST\020\350\007\022\030\n\023HEART_BEAT_RESPONSE\020\351\007" + "\022\036\n\031ACTIVITE_WORKSHOP_REQUEST\020\224N\022\037\n\032ACTI" + "VITE_WORKSHOP_RESPONSE\020\225N\022\027\n\022ARENA_INFO_" + @@ -7125,357 +7433,376 @@ public final class MessageTypeProto { "NDICATION\020\351O\022 \n\033CHAMPION_VIEW_FINAL_REQU", "EST\020\352O\022!\n\034CHAMPION_VIEW_FINAL_RESPONSE\020\353" + "O\022&\n!CHAMPION_GUESS_SUCCESS_INDICATION\020\354" + - "O\022\026\n\021DRAW_HERO_REQUEST\020\274P\022\027\n\022DRAW_HERO_R" + - "ESPONSE\020\275P\022\027\n\022DEL_FRIEND_REQUEST\020\276P\022\030\n\023D" + - "EL_FRIEND_RESPONSE\020\277P\022(\n#DIFFICULT_MAP_O" + - "PTION_RECORD_REQUEST\020\300P\022)\n$DIFFICULT_MAP" + - "_OPTION_RECORD_RESPONSE\020\301P\022 \n\033DIRECT_BUY" + - "_GOODS_INDICATION\020\302P\022\034\n\027DAILY_CHALLENGE_" + - "REQUEST\020\303P\022\035\n\030DAILY_CHALLENGE_RESPONSE\020\304" + - "P\022\032\n\025ERROR_CODE_INDICATION\020\240Q\022\027\n\022EQUIP_W", - "EAR_REQUEST\020\242Q\022\030\n\023EQUIP_WEAR_RESPONSE\020\243Q" + - "\022\035\n\030EQUIP_UNLOAD_OPT_REQUEST\020\244Q\022\036\n\031EQUIP" + - "_UNLOAD_OPT_RESPONSE\020\245Q\022\031\n\024EVENT_UPDATE_" + - "REQUEST\020\246Q\022\032\n\025EVENT_UPDATE_RESPONSE\020\247Q\022\027" + - "\n\022EQUIP_LOCK_REQUEST\020\250Q\022\030\n\023EQUIP_LOCK_RE" + - "SPONSE\020\251Q\022\"\n\035ENDLESS_MAP_HERO_INFO_REQUE" + - "ST\020\252Q\022#\n\036ENDLESS_MAP_HERO_INFO_RESPONSE\020" + - "\253Q\022\036\n\031ENDLESS_MAP_RESET_REQUEST\020\254Q\022\037\n\032EN" + - "DLESS_MAP_RESET_RESPONSE\020\255Q\022\035\n\030ENDLESS_M" + - "AP_SIGN_REQUEST\020\256Q\022\036\n\031ENDLESS_MAP_SIGN_R", - "ESPONSE\020\257Q\022&\n!ENDLESS_EXECUTION_REFRESH_" + - "REQUEST\020\260Q\022\'\n\"ENDLESS_EXECUTION_REFRESH_" + - "RESPONSE\020\261Q\022 \n\033ENDLESS_OUT_CONSUME_REQUE" + - "ST\020\262Q\022!\n\034ENDLESS_OUT_CONSUME_RESPONSE\020\263Q" + - "\022\037\n\032ENDLESS_REFRESH_INDICAITON\020\264Q\022!\n\034END" + - "LESS_MIN_MAP_INFO_REQUEST\020\265Q\022\"\n\035ENDLESS_" + - "MIN_MAP_INFO_RESPONSE\020\266Q\022\'\n\"ENDLESS_MONS" + - "TER_REFRESH_INDICATION\020\267Q\022\"\n\035ENDLESS_SET" + - "_SKIPFIGHT_REQUEST\020\270Q\022#\n\036ENDLESS_SET_SKI" + - "PFIGHT_RESPONSE\020\271Q\022$\n\037ENDLESS_MAP_SET_TE", - "AM_INDICATION\020\272Q\022\031\n\024EXCHANGE_CDK_REQUEST" + - "\020\273Q\022\032\n\025EXCHANGE_CDK_RESPONSE\020\274Q\022\"\n\035ENDLE" + - "SS_MAP_CHANGE_INDICATION\020\275Q\022\030\n\023FIGHT_STA" + - "RT_REQUEST\020\204R\022\031\n\024FIGHT_START_RESPONSE\020\205R" + - "\022\026\n\021FIGHT_END_REQUEST\020\206R\022\027\n\022FIGHT_END_RE" + - "SPONSE\020\207R\022\032\n\025FRIEND_INVITE_REQUEST\020\210R\022\033\n" + - "\026FRIEND_INVITE_RESPONSE\020\211R\022$\n\037FRIEND_INV" + - "ITE_OPERATION_REQUEST\020\212R\022%\n FRIEND_INVIT" + - "E_OPERATION_RESPONSE\020\213R\022\036\n\031FRIEND_TAKE_H" + - "EART_REQUEST\020\214R\022\037\n\032FRIEND_TAKE_HEART_RES", - "PONSE\020\215R\022 \n\033FRIEND_GIVE_PRESENT_REQUEST\020" + - "\216R\022!\n\034FRIEND_GIVE_PRESENT_RESPONSE\020\217R\022\032\n" + - "\025FRIEND_SEARCH_REQUEST\020\220R\022\033\n\026FRIEND_SEAR" + - "CH_RESPONSE\020\221R\022#\n\036FIVE_PLAYER_REFLUSH_IN" + - "DICATION\020\222R\022\030\n\023SERVER_FIVE_REQEUST\020\224R\022\033\n" + - "\026FB_STAR_REWARD_REQUEST\020\225R\022\034\n\027FB_STAR_RE" + - "WARD_RESPONSE\020\226R\022\032\n\025FAMILY_CREATE_REQUES" + - "T\020\227R\022\033\n\026FAMILY_CREATE_RESPONSE\020\230R\022\034\n\027FAM" + - "ILY_RECOMEND_REQUEST\020\231R\022\035\n\030FAMILY_RECOME" + - "ND_RESPONSE\020\232R\022\030\n\023FAMILY_JOIN_REQUEST\020\233R", - "\022\031\n\024FAMILY_JOIN_RESPONSE\020\234R\022\031\n\024FAMILY_AP" + - "PLY_REQEUST\020\235R\022\032\n\025FAMILY_APPLY_RESPONSE\020" + - "\236R\022\032\n\025FAMILY_SEARCH_REQEUST\020\237R\022\033\n\026FAMILY" + - "_SEARCH_RESPONSE\020\240R\022\033\n\026FAMILY_JOIN_INDIC" + - "ATION\020\241R\022\034\n\027FAMILY_GET_INFO_REQUEST\020\242R\022\035" + - "\n\030FAMILY_GET_INFO_RESPONSE\020\243R\022\033\n\026FAMILY_" + - "GET_LOG_REQUEST\020\244R\022\034\n\027FAMILY_GET_LOG_RES" + - "POSNE\020\245R\022\036\n\031FAMILY_GET_MEMBER_REQUEST\020\246R" + - "\022\037\n\032FAMILY_GET_MEMBER_RESPOSNE\020\247R\022\035\n\030FAM" + - "ILY_GET_APPLY_REQUEST\020\250R\022\036\n\031FAMILY_GET_A", - "PPLY_RESPOSNE\020\251R\022(\n#FAMILY_OPERATION_APP" + - "LY_LIST_REQUEST\020\252R\022)\n$FAMILY_OPERATION_A" + - "PPLY_LIST_RESPONSE\020\253R\022\034\n\027FAMILY_KICK_OUT" + - "_REQUEST\020\254R\022\035\n\030FAMILY_KICK_OUT_RESPONSE\020" + - "\255R\022\037\n\032FAMILY_APPOINTMENT_REQEUST\020\256R\022 \n\033F" + - "AMILY_APPOINTMENT_RESPONSE\020\257R\022\033\n\026FAMILY_" + - "KICK_INDICATION\020\260R\022&\n!FAMILY_POSITION_UP" + - "DATE_INDICAITON\020\261R\022\037\n\032FAMILY_DISSOLUTION" + - "_REQUEST\020\262R\022 \n\033FAMILY_DISSOLUTION_RESPON" + - "SE\020\263R\022!\n\034FAMILY_CHANGE_NOTICE_REQUEST\020\264R", - "\022\"\n\035FAMILY_CHANGE_NOTICE_RESPONSE\020\265R\022$\n\037" + - "FAMILY_CHANGE_JOIN_TYPE_REQUEST\020\266R\022%\n FA" + - "MILY_CHANGE_JOIN_TYPE_RESPONSE\020\267R\022\"\n\035FAM" + - "ILY_CHANGE_BASE_INDICATION\020\270R\022%\n FAMILY_" + - "TRANSFER_CHAIRMAN_REQUEST\020\271R\022&\n!FAMILY_T" + - "RANSFER_CHAIRMAN_RESPONSE\020\272R\022\031\n\024FAMILY_L" + - "EVEL_REQUEST\020\273R\022\032\n\025FAMILY_LEVEL_RESPONSE" + - "\020\274R\022$\n\037FAMILY_QUICK_SET_DEFEND_REQEUST\020\275" + - "R\022%\n FAMILY_QUICK_SET_DEFEND_RESPONSE\020\276R" + - "\022\037\n\032FAMILY_VIEW_DEFEND_REQUEST\020\277R\022 \n\033FAM", - "ILY_VIEW_DEFEND_RESPONSE\020\300R\022&\n!FAMILY_VI" + - "EW_DEFEND_DETAIL_REQUEST\020\301R\022\'\n\"FAMILY_VI" + - "EW_DEFEND_DETAIL_RESPONSE\020\302R\022\030\n\023FAMILY_W" + - "ALK_REQUEST\020\303R\022\031\n\024FAMILY_WALK_RESPONSE\020\304" + - "R\022\033\n\026FAMILY_WALK_INDICATION\020\305R\022\'\n\"FAMILY" + - "_QUICK_SET_DEFEND_INDICATION\020\306R\022\036\n\031FAMIL" + - "Y_FIGHT_INFO_REQUEST\020\307R\022\037\n\032FAMILY_FIGHT_" + - "INFO_RESPONSE\020\310R\022$\n\037FAMILY_FIGHT_ROUND_I" + - "NFO_REQUEST\020\311R\022%\n FAMILY_FIGHT_ROUND_INF" + - "O_RESPONSE\020\312R\022-\n(FAMILY_FIGHT_MATCHING_S", - "UCCESS_INDICATION\020\313R\022 \n\033FAMILY_FIGHT_ATT" + - "ACK_REQUEST\020\314R\022!\n\034FAMILY_FIGHT_ATTACK_RE" + - "SPONSE\020\315R\022)\n$FAMILY_PERSONAL_FIGHT_RESUL" + - "T_REQUEST\020\316R\022*\n%FAMILY_PERSONAL_FIGHT_RE" + - "SULT_RESPONSE\020\317R\022\036\n\031FAMILY_DEFEATE_INDIC" + - "ATION\020\320R\022&\n!FAMILY_FIGHT_TOTAL_RESULT_RE" + - "QUEST\020\321R\022\'\n\"FAMILY_FIGHT_TOTAL_RESULT_RE" + - "SPONSE\020\322R\022\037\n\032FAMILY_CHANGE_ICON_REQUEST\020" + - "\323R\022 \n\033FAMILY_CHANGE_ICON_RESPONSE\020\324R\022 \n\033" + - "FAMILY_ATTACK_BLOOD_REQUEST\020\325R\022!\n\034FAMILY", - "_ATTACK_BLOOD_RESPONSE\020\326R\022\"\n\035FAMILY_REFU" + - "SE_JOIN_INDICATION\020\327R\022\035\n\030FRIEND_BLACK_OP" + - "T_REQUEST\020\330R\022\036\n\031FRIEND_BLACK_OPT_RESPONS" + - "E\020\331R\022\033\n\026GET_PLAYERINFO_REQUEST\020\350R\022\034\n\027GET" + - "_PLAYERINFO_RESPONSE\020\351R\022\031\n\024GET_HEROINFO_" + - "REQUEST\020\352R\022\032\n\025GET_HEROINFO_RESPONSE\020\353R\022\031" + - "\n\024GET_ITEMINFO_REQUEST\020\354R\022\032\n\025GET_ITEMINF" + - "O_RESPONSE\020\355R\022\017\n\nGM_REQUEST\020\356R\022\020\n\013GM_RES" + - "PONSE\020\357R\022\036\n\031GET_ALL_MAIL_INFO_REQUEST\020\360R" + - "\022\037\n\032GET_ALL_MAIL_INFO_RESPONSE\020\361R\022\036\n\030GET", - "_TEAMPOS_INFO_REQUEST\020\344\201\001\022\037\n\031GET_TEAMPOS" + - "_INFO_RESPONSE\020\345\201\001\022\033\n\025GET_ALL_EQUIP_REQU" + - "EST\020\346\201\001\022\034\n\026GET_ALL_EQUIP_RESPONSE\020\347\201\001\022\035\n" + - "\027GET_ALL_POKEMON_REQUEST\020\350\201\001\022\036\n\030GET_ALL_" + - "POKEMON_RESPONSE\020\351\201\001\022\037\n\031GET_WORKSHOP_INF" + - "O_REQUEST\020\352\201\001\022 \n\032GET_WORKSHOP_INFO_RESPO" + - "NSE\020\353\201\001\022%\n\037GET_ALL_LEVE_DIFFICULTT_REQUE" + - "ST\020\356\201\001\022&\n GET_ALL_LEVE_DIFFICULTT_RESPON" + - "SE\020\357\201\001\022\036\n\030GET_ALL_ACTIVITY_REQUEST\020\360\201\001\022\037" + - "\n\031GET_ALL_ACTIVITY_RESPONSE\020\361\201\001\022\033\n\025GET_S", - "ECRETBOX_REQUEST\020\362\201\001\022\034\n\026GET_SECRETBOX_RE" + - "SPONSE\020\363\201\001\022\035\n\027GET_STARE_INFOS_REQUEST\020\364\201" + - "\001\022\036\n\030GET_STARE_INFOS_RESPONSE\020\365\201\001\022 \n\032GET" + - "_FUNCTIONOFTIME_REQUEST\020\366\201\001\022!\n\033GET_FUNCT" + - "IONOFTIME_RESPONSE\020\367\201\001\022\036\n\030GET_CHAT_MESSA" + - "GE_REQUEST\020\374\201\001\022\036\n\030GET_CHAT_MESSAGE_REPON" + - "SE\020\375\201\001\022\035\n\027GET_FRIEND_INFO_REQUEST\020\376\201\001\022\035\n" + - "\027GET_FRIEND_INFO_REPONSE\020\377\201\001\022\037\n\031GET_RING" + - "FIRE_INFO_REQUEST\020\200\202\001\022 \n\032GET_RINGFIRE_IN" + - "FO_RESPONSE\020\201\202\001\022\031\n\023GET_MISSION_REQUEST\020\202", - "\202\001\022\032\n\024GET_MISSION_RESPONSE\020\203\202\001\022\"\n\034GETF_F" + - "ORCE_RANK_INFO_REQUEST\020\206\202\001\022#\n\035GETF_FORCE" + - "_RANK_INFO_RESPONSE\020\207\202\001\022#\n\035GETF_EXPERT_R" + - "ANK_INFO_REQUEST\020\210\202\001\022$\n\036GETF_EXPERT_RANK" + - "_INFO_RESPONSE\020\211\202\001\022&\n GET_PLAYER_ONE_TEA" + - "M_INFO_REQUEST\020\212\202\001\022\'\n!GET_PLAYER_ONE_TEA" + - "M_INFO_RESPONSE\020\213\202\001\022#\n\035GET_MONSTER_RANK_" + - "INFO_REQUEST\020\214\202\001\022#\n\036GET_MONSTER_RANK_INF" + - "O_RESPONSE\020\377\014\022\035\n\030GET_PHONE_REWARD_REQUES" + - "T\020\200\r\022\036\n\031GET_PHONE_REWARD_RESPONSE\020\201\r\022\031\n\024", - "GET_QUESTION_REQUEST\020\202\r\022\032\n\025GET_QUESTION_" + - "RESPONSE\020\203\r\022%\n GET_LUCKWHEEL_RANDREWARD_" + - "REQUEST\020\204\r\022&\n!GET_LUCKWHEEL_RANDREWARD_R" + - "ESPONSE\020\205\r\022\032\n\025GET_LUCKWHEEL_REQUEST\020\206\r\022\033" + - "\n\026GET_LUCKWHEEL_RESPONSE\020\207\r\022\032\n\024GET_ONE_R" + - "ANK_REQUEST\020\226\202\001\022\033\n\025GET_ONE_RANK_RESPONSE" + - "\020\227\202\001\022$\n\036GET_SOME_ACTIVITY_INFO_REQUEST\020\230" + - "\202\001\022%\n\037GET_SOME_ACTIVITY_INFO_RESPONSE\020\231\202" + + "O\022\"\n\035CAR_DELAY_PROGRESS_INDICATION\020\355O\022\026\n" + + "\021DRAW_HERO_REQUEST\020\274P\022\027\n\022DRAW_HERO_RESPO" + + "NSE\020\275P\022\027\n\022DEL_FRIEND_REQUEST\020\276P\022\030\n\023DEL_F" + + "RIEND_RESPONSE\020\277P\022(\n#DIFFICULT_MAP_OPTIO" + + "N_RECORD_REQUEST\020\300P\022)\n$DIFFICULT_MAP_OPT" + + "ION_RECORD_RESPONSE\020\301P\022 \n\033DIRECT_BUY_GOO" + + "DS_INDICATION\020\302P\022\034\n\027DAILY_CHALLENGE_REQU" + + "EST\020\303P\022\035\n\030DAILY_CHALLENGE_RESPONSE\020\304P\022\"\n", + "\035DEATH_PATH_GET_STATUS_REQUEST\020\305P\022#\n\036DEA" + + "TH_PATH_GET_STATUS_RESPONSE\020\306P\022\034\n\027DEATH_" + + "PATH_INFO_REQUEST\020\307P\022\035\n\030DEATH_PATH_INFO_" + + "RESPONSE\020\310P\022!\n\034DEATH_PATH_CHALLENGE_REQU" + + "EST\020\311P\022\"\n\035DEATH_PATH_CHALLENGE_RESPONSE\020" + + "\312P\022\032\n\025ERROR_CODE_INDICATION\020\240Q\022\027\n\022EQUIP_" + + "WEAR_REQUEST\020\242Q\022\030\n\023EQUIP_WEAR_RESPONSE\020\243" + + "Q\022\035\n\030EQUIP_UNLOAD_OPT_REQUEST\020\244Q\022\036\n\031EQUI" + + "P_UNLOAD_OPT_RESPONSE\020\245Q\022\031\n\024EVENT_UPDATE" + + "_REQUEST\020\246Q\022\032\n\025EVENT_UPDATE_RESPONSE\020\247Q\022", + "\027\n\022EQUIP_LOCK_REQUEST\020\250Q\022\030\n\023EQUIP_LOCK_R" + + "ESPONSE\020\251Q\022\"\n\035ENDLESS_MAP_HERO_INFO_REQU" + + "EST\020\252Q\022#\n\036ENDLESS_MAP_HERO_INFO_RESPONSE" + + "\020\253Q\022\036\n\031ENDLESS_MAP_RESET_REQUEST\020\254Q\022\037\n\032E" + + "NDLESS_MAP_RESET_RESPONSE\020\255Q\022\035\n\030ENDLESS_" + + "MAP_SIGN_REQUEST\020\256Q\022\036\n\031ENDLESS_MAP_SIGN_" + + "RESPONSE\020\257Q\022&\n!ENDLESS_EXECUTION_REFRESH" + + "_REQUEST\020\260Q\022\'\n\"ENDLESS_EXECUTION_REFRESH" + + "_RESPONSE\020\261Q\022 \n\033ENDLESS_OUT_CONSUME_REQU" + + "EST\020\262Q\022!\n\034ENDLESS_OUT_CONSUME_RESPONSE\020\263", + "Q\022\037\n\032ENDLESS_REFRESH_INDICAITON\020\264Q\022!\n\034EN" + + "DLESS_MIN_MAP_INFO_REQUEST\020\265Q\022\"\n\035ENDLESS" + + "_MIN_MAP_INFO_RESPONSE\020\266Q\022\'\n\"ENDLESS_MON" + + "STER_REFRESH_INDICATION\020\267Q\022\"\n\035ENDLESS_SE" + + "T_SKIPFIGHT_REQUEST\020\270Q\022#\n\036ENDLESS_SET_SK" + + "IPFIGHT_RESPONSE\020\271Q\022$\n\037ENDLESS_MAP_SET_T" + + "EAM_INDICATION\020\272Q\022\031\n\024EXCHANGE_CDK_REQUES" + + "T\020\273Q\022\032\n\025EXCHANGE_CDK_RESPONSE\020\274Q\022\"\n\035ENDL" + + "ESS_MAP_CHANGE_INDICATION\020\275Q\022\030\n\023FIGHT_ST" + + "ART_REQUEST\020\204R\022\031\n\024FIGHT_START_RESPONSE\020\205", + "R\022\026\n\021FIGHT_END_REQUEST\020\206R\022\027\n\022FIGHT_END_R" + + "ESPONSE\020\207R\022\032\n\025FRIEND_INVITE_REQUEST\020\210R\022\033" + + "\n\026FRIEND_INVITE_RESPONSE\020\211R\022$\n\037FRIEND_IN" + + "VITE_OPERATION_REQUEST\020\212R\022%\n FRIEND_INVI" + + "TE_OPERATION_RESPONSE\020\213R\022\036\n\031FRIEND_TAKE_" + + "HEART_REQUEST\020\214R\022\037\n\032FRIEND_TAKE_HEART_RE" + + "SPONSE\020\215R\022 \n\033FRIEND_GIVE_PRESENT_REQUEST" + + "\020\216R\022!\n\034FRIEND_GIVE_PRESENT_RESPONSE\020\217R\022\032" + + "\n\025FRIEND_SEARCH_REQUEST\020\220R\022\033\n\026FRIEND_SEA" + + "RCH_RESPONSE\020\221R\022#\n\036FIVE_PLAYER_REFLUSH_I", + "NDICATION\020\222R\022\030\n\023SERVER_FIVE_REQEUST\020\224R\022\033" + + "\n\026FB_STAR_REWARD_REQUEST\020\225R\022\034\n\027FB_STAR_R" + + "EWARD_RESPONSE\020\226R\022\032\n\025FAMILY_CREATE_REQUE" + + "ST\020\227R\022\033\n\026FAMILY_CREATE_RESPONSE\020\230R\022\034\n\027FA" + + "MILY_RECOMEND_REQUEST\020\231R\022\035\n\030FAMILY_RECOM" + + "END_RESPONSE\020\232R\022\030\n\023FAMILY_JOIN_REQUEST\020\233" + + "R\022\031\n\024FAMILY_JOIN_RESPONSE\020\234R\022\031\n\024FAMILY_A" + + "PPLY_REQEUST\020\235R\022\032\n\025FAMILY_APPLY_RESPONSE" + + "\020\236R\022\032\n\025FAMILY_SEARCH_REQEUST\020\237R\022\033\n\026FAMIL" + + "Y_SEARCH_RESPONSE\020\240R\022\033\n\026FAMILY_JOIN_INDI", + "CATION\020\241R\022\034\n\027FAMILY_GET_INFO_REQUEST\020\242R\022" + + "\035\n\030FAMILY_GET_INFO_RESPONSE\020\243R\022\033\n\026FAMILY" + + "_GET_LOG_REQUEST\020\244R\022\034\n\027FAMILY_GET_LOG_RE" + + "SPOSNE\020\245R\022\036\n\031FAMILY_GET_MEMBER_REQUEST\020\246" + + "R\022\037\n\032FAMILY_GET_MEMBER_RESPOSNE\020\247R\022\035\n\030FA" + + "MILY_GET_APPLY_REQUEST\020\250R\022\036\n\031FAMILY_GET_" + + "APPLY_RESPOSNE\020\251R\022(\n#FAMILY_OPERATION_AP" + + "PLY_LIST_REQUEST\020\252R\022)\n$FAMILY_OPERATION_" + + "APPLY_LIST_RESPONSE\020\253R\022\034\n\027FAMILY_KICK_OU" + + "T_REQUEST\020\254R\022\035\n\030FAMILY_KICK_OUT_RESPONSE", + "\020\255R\022\037\n\032FAMILY_APPOINTMENT_REQEUST\020\256R\022 \n\033" + + "FAMILY_APPOINTMENT_RESPONSE\020\257R\022\033\n\026FAMILY" + + "_KICK_INDICATION\020\260R\022&\n!FAMILY_POSITION_U" + + "PDATE_INDICAITON\020\261R\022\037\n\032FAMILY_DISSOLUTIO" + + "N_REQUEST\020\262R\022 \n\033FAMILY_DISSOLUTION_RESPO" + + "NSE\020\263R\022!\n\034FAMILY_CHANGE_NOTICE_REQUEST\020\264" + + "R\022\"\n\035FAMILY_CHANGE_NOTICE_RESPONSE\020\265R\022$\n" + + "\037FAMILY_CHANGE_JOIN_TYPE_REQUEST\020\266R\022%\n F" + + "AMILY_CHANGE_JOIN_TYPE_RESPONSE\020\267R\022\"\n\035FA" + + "MILY_CHANGE_BASE_INDICATION\020\270R\022%\n FAMILY", + "_TRANSFER_CHAIRMAN_REQUEST\020\271R\022&\n!FAMILY_" + + "TRANSFER_CHAIRMAN_RESPONSE\020\272R\022\031\n\024FAMILY_" + + "LEVEL_REQUEST\020\273R\022\032\n\025FAMILY_LEVEL_RESPONS" + + "E\020\274R\022$\n\037FAMILY_QUICK_SET_DEFEND_REQEUST\020" + + "\275R\022%\n FAMILY_QUICK_SET_DEFEND_RESPONSE\020\276" + + "R\022\037\n\032FAMILY_VIEW_DEFEND_REQUEST\020\277R\022 \n\033FA" + + "MILY_VIEW_DEFEND_RESPONSE\020\300R\022&\n!FAMILY_V" + + "IEW_DEFEND_DETAIL_REQUEST\020\301R\022\'\n\"FAMILY_V" + + "IEW_DEFEND_DETAIL_RESPONSE\020\302R\022\030\n\023FAMILY_" + + "WALK_REQUEST\020\303R\022\031\n\024FAMILY_WALK_RESPONSE\020", + "\304R\022\033\n\026FAMILY_WALK_INDICATION\020\305R\022\'\n\"FAMIL" + + "Y_QUICK_SET_DEFEND_INDICATION\020\306R\022\036\n\031FAMI" + + "LY_FIGHT_INFO_REQUEST\020\307R\022\037\n\032FAMILY_FIGHT" + + "_INFO_RESPONSE\020\310R\022$\n\037FAMILY_FIGHT_ROUND_" + + "INFO_REQUEST\020\311R\022%\n FAMILY_FIGHT_ROUND_IN" + + "FO_RESPONSE\020\312R\022-\n(FAMILY_FIGHT_MATCHING_" + + "SUCCESS_INDICATION\020\313R\022 \n\033FAMILY_FIGHT_AT" + + "TACK_REQUEST\020\314R\022!\n\034FAMILY_FIGHT_ATTACK_R" + + "ESPONSE\020\315R\022)\n$FAMILY_PERSONAL_FIGHT_RESU" + + "LT_REQUEST\020\316R\022*\n%FAMILY_PERSONAL_FIGHT_R", + "ESULT_RESPONSE\020\317R\022\036\n\031FAMILY_DEFEATE_INDI" + + "CATION\020\320R\022&\n!FAMILY_FIGHT_TOTAL_RESULT_R" + + "EQUEST\020\321R\022\'\n\"FAMILY_FIGHT_TOTAL_RESULT_R" + + "ESPONSE\020\322R\022\037\n\032FAMILY_CHANGE_ICON_REQUEST" + + "\020\323R\022 \n\033FAMILY_CHANGE_ICON_RESPONSE\020\324R\022 \n" + + "\033FAMILY_ATTACK_BLOOD_REQUEST\020\325R\022!\n\034FAMIL" + + "Y_ATTACK_BLOOD_RESPONSE\020\326R\022\"\n\035FAMILY_REF" + + "USE_JOIN_INDICATION\020\327R\022\035\n\030FRIEND_BLACK_O" + + "PT_REQUEST\020\330R\022\036\n\031FRIEND_BLACK_OPT_RESPON" + + "SE\020\331R\022!\n\034FAST_FIGHT_CHALLENGE_REQUEST\020\332R", + "\022\"\n\035FAST_FIGHT_CHALLENGE_RESPONSE\020\333R\022\033\n\026" + + "GET_PLAYERINFO_REQUEST\020\350R\022\034\n\027GET_PLAYERI" + + "NFO_RESPONSE\020\351R\022\031\n\024GET_HEROINFO_REQUEST\020" + + "\352R\022\032\n\025GET_HEROINFO_RESPONSE\020\353R\022\031\n\024GET_IT" + + "EMINFO_REQUEST\020\354R\022\032\n\025GET_ITEMINFO_RESPON" + + "SE\020\355R\022\017\n\nGM_REQUEST\020\356R\022\020\n\013GM_RESPONSE\020\357R" + + "\022\036\n\031GET_ALL_MAIL_INFO_REQUEST\020\360R\022\037\n\032GET_" + + "ALL_MAIL_INFO_RESPONSE\020\361R\022\036\n\030GET_TEAMPOS" + + "_INFO_REQUEST\020\344\201\001\022\037\n\031GET_TEAMPOS_INFO_RE" + + "SPONSE\020\345\201\001\022\033\n\025GET_ALL_EQUIP_REQUEST\020\346\201\001\022", + "\034\n\026GET_ALL_EQUIP_RESPONSE\020\347\201\001\022\035\n\027GET_ALL" + + "_POKEMON_REQUEST\020\350\201\001\022\036\n\030GET_ALL_POKEMON_" + + "RESPONSE\020\351\201\001\022\037\n\031GET_WORKSHOP_INFO_REQUES" + + "T\020\352\201\001\022 \n\032GET_WORKSHOP_INFO_RESPONSE\020\353\201\001\022" + + "%\n\037GET_ALL_LEVE_DIFFICULTT_REQUEST\020\356\201\001\022&" + + "\n GET_ALL_LEVE_DIFFICULTT_RESPONSE\020\357\201\001\022\036" + + "\n\030GET_ALL_ACTIVITY_REQUEST\020\360\201\001\022\037\n\031GET_AL" + + "L_ACTIVITY_RESPONSE\020\361\201\001\022\033\n\025GET_SECRETBOX" + + "_REQUEST\020\362\201\001\022\034\n\026GET_SECRETBOX_RESPONSE\020\363" + + "\201\001\022\035\n\027GET_STARE_INFOS_REQUEST\020\364\201\001\022\036\n\030GET", + "_STARE_INFOS_RESPONSE\020\365\201\001\022 \n\032GET_FUNCTIO" + + "NOFTIME_REQUEST\020\366\201\001\022!\n\033GET_FUNCTIONOFTIM" + + "E_RESPONSE\020\367\201\001\022\036\n\030GET_CHAT_MESSAGE_REQUE" + + "ST\020\374\201\001\022\036\n\030GET_CHAT_MESSAGE_REPONSE\020\375\201\001\022\035" + + "\n\027GET_FRIEND_INFO_REQUEST\020\376\201\001\022\035\n\027GET_FRI" + + "END_INFO_REPONSE\020\377\201\001\022\037\n\031GET_RINGFIRE_INF" + + "O_REQUEST\020\200\202\001\022 \n\032GET_RINGFIRE_INFO_RESPO" + + "NSE\020\201\202\001\022\031\n\023GET_MISSION_REQUEST\020\202\202\001\022\032\n\024GE" + + "T_MISSION_RESPONSE\020\203\202\001\022\"\n\034GETF_FORCE_RAN" + + "K_INFO_REQUEST\020\206\202\001\022#\n\035GETF_FORCE_RANK_IN", + "FO_RESPONSE\020\207\202\001\022#\n\035GETF_EXPERT_RANK_INFO" + + "_REQUEST\020\210\202\001\022$\n\036GETF_EXPERT_RANK_INFO_RE" + + "SPONSE\020\211\202\001\022&\n GET_PLAYER_ONE_TEAM_INFO_R" + + "EQUEST\020\212\202\001\022\'\n!GET_PLAYER_ONE_TEAM_INFO_R" + + "ESPONSE\020\213\202\001\022#\n\035GET_MONSTER_RANK_INFO_REQ" + + "UEST\020\214\202\001\022#\n\036GET_MONSTER_RANK_INFO_RESPON" + + "SE\020\377\014\022\035\n\030GET_PHONE_REWARD_REQUEST\020\200\r\022\036\n\031" + + "GET_PHONE_REWARD_RESPONSE\020\201\r\022\031\n\024GET_QUES" + + "TION_REQUEST\020\202\r\022\032\n\025GET_QUESTION_RESPONSE" + + "\020\203\r\022%\n GET_LUCKWHEEL_RANDREWARD_REQUEST\020", + "\204\r\022&\n!GET_LUCKWHEEL_RANDREWARD_RESPONSE\020" + + "\205\r\022\032\n\025GET_LUCKWHEEL_REQUEST\020\206\r\022\033\n\026GET_LU" + + "CKWHEEL_RESPONSE\020\207\r\022\032\n\024GET_ONE_RANK_REQU" + + "EST\020\226\202\001\022\033\n\025GET_ONE_RANK_RESPONSE\020\227\202\001\022$\n\036" + + "GET_SOME_ACTIVITY_INFO_REQUEST\020\230\202\001\022%\n\037GE" + + "T_SOME_ACTIVITY_INFO_RESPONSE\020\231\202\001\022\037\n\031GUI" + + "LD_SKILL_RESET_REQUEST\020\232\202\001\022 \n\032GUILD_SKIL" + + "L_RESET_RESPONSE\020\233\202\001\022\"\n\034GUILD_SKILL_LEVE" + + "L_UP_REQUEST\020\234\202\001\022#\n\035GUILD_SKILL_LEVEL_UP" + + "_RESPONSE\020\235\202\001\022!\n\033GET_ALL_GUILD_SKILL_REQ", + "UEST\020\236\202\001\022\"\n\034GET_ALL_GUILD_SKILL_RESPONSE" + + "\020\237\202\001\022$\n\036GET_CAR_CHALLENEG_LIST_REQUEST\020\240" + + "\202\001\022%\n\037GET_CAR_CHALLENEG_LIST_RESPONSE\020\241\202" + "\001\022\027\n\022HERO_RAND_REQQUEST\020\315S\022\027\n\022HERO_RAND_" + - "RESPONSE\020\316S\022\031\n\024HERO_COMPOSE_REQUEST\020\317S\022\032", + "RESPONSE\020\316S\022\031\n\024HERO_COMPOSE_REQUEST\020\317S\022\032" + "\n\025HERO_COMPOSE_RESPONSE\020\320S\022\030\n\023HERO_RETUR" + "N_REQUEST\020\321S\022\031\n\024HERO_RETURN_RESPONSE\020\322S\022" + "\035\n\030HERO_LOCK_CHANGE_REQUEST\020\323S\022\036\n\031HERO_L" + "OCK_CHANGE_RESPONSE\020\324S\022&\n!J_GET_ALL_REDP" + - "ACKAGE_INFO_REQUEST\020\227U\022\'\n\"J_GET_ALL_REDP" + + "ACKAGE_INFO_REQUEST\020\227U\022\'\n\"J_GET_ALL_REDP", "ACKAGE_INFO_RESPONSE\020\230U\022\"\n\035J_ROB_REDPACK" + "AGE_INFO_REQUEST\020\231U\022#\n\036J_ROB_REDPACKAGE_" + "INFO_RESPONSE\020\232U\022$\n\037J_GET_REDPACKAGE_DET" + "AIL_REQUEST\020\233U\022%\n J_GET_REDPACKAGE_DETAI" + - "L_RESPONSE\020\234U\022#\n\036J_REDPACKAGE_SEND_LIKE_", + "L_RESPONSE\020\234U\022#\n\036J_REDPACKAGE_SEND_LIKE_" + "REQUEST\020\236U\022$\n\037J_REDPACKAGE_SEND_LIKE_RES" + "PONSE\020\237U\022 \n\033J_GET_ALL_SEND_LIKE_REQUEST\020" + "\240U\022!\n\034J_GET_ALL_SEND_LIKE_RESPONSE\020\241U\022\030\n" + "\023JEWEL_BUILD_REQUEST\020\242U\022\031\n\024JEWEL_BUILD_R" + - "ESPONSE\020\243U\022\022\n\rLOGIN_REQUEST\020\334V\022\023\n\016LOGIN_" + + "ESPONSE\020\243U\022\022\n\rLOGIN_REQUEST\020\334V\022\023\n\016LOGIN_", "RESPONSE\020\335V\022\036\n\031LUCKWHEEL_POOL_INDICATION" + "\020\336V\022\026\n\021MAP_ENTER_REQUEST\020\300W\022\027\n\022MAP_ENTER" + "_RESPONSE\020\301W\022\024\n\017MAP_OUT_REQUEST\020\302W\022\025\n\020MA" + "P_OUT_RESPONSE\020\303W\022\027\n\022MAP_UDPATE_REQUEST\020" + - "\304W\022\030\n\023MAP_UDPATE_RESPONSE\020\305W\022\026\n\021MAIL_REA", + "\304W\022\030\n\023MAP_UDPATE_RESPONSE\020\305W\022\026\n\021MAIL_REA" + "D_REQUEST\020\306W\022\027\n\022MAIL_READ_RESPONSE\020\307W\022 \n" + "\033MAIL_TAKE_MAIL_ITEM_REQUEST\020\310W\022\"\n\035MAIL_" + "TAKE_MAIL_ITEM_RESPONESE\020\311W\022\036\n\031MAP_START" + "_EXPLORE_REQUEST\020\312W\022\037\n\032MAP_START_EXPLORE" + - "_RESPONSE\020\313W\022\036\n\031MAP_GET_RANK_INFO_REQUES" + + "_RESPONSE\020\313W\022\036\n\031MAP_GET_RANK_INFO_REQUES", "T\020\314W\022\037\n\032MAP_GET_RANK_INFO_RESPONSE\020\315W\022 \n" + "\033MAP_BUY_FIGHT_COUNT_REQUEST\020\316W\022!\n\034MAP_B" + "UY_FIGHT_COUNT_RESPONSE\020\317W\022\026\n\021MAP_SWEEP_" + "REQUEST\020\320W\022\027\n\022MAP_SWEEP_RESPONSE\020\321W\022\033\n\026M" + - "AP_FAST_FIGHT_REQUEST\020\322W\022\034\n\027MAP_FAST_FIG", + "AP_FAST_FIGHT_REQUEST\020\322W\022\034\n\027MAP_FAST_FIG" + "HT_RESPONSE\020\323W\022\036\n\031MISSION_UPDATE_INDICAT" + "ION\020\324W\022\034\n\027MAP_TOWER_RESET_REQUEST\020\327W\022\035\n\030" + "MAP_TOWER_RESET_RESPONSE\020\330W\022!\n\034MAP_TOWER" + "_CALL_CHIEF_REQUEST\020\331W\022\"\n\035MAP_TOWER_CALL" + - "_CHIEF_RESPONSE\020\332W\022\036\n\031MAP_TOWER_USEBOMB_" + + "_CHIEF_RESPONSE\020\332W\022\036\n\031MAP_TOWER_USEBOMB_", "REQUEST\020\335W\022\037\n\032MAP_TOWER_USEBOMB_RESPONSE" + "\020\336W\022\036\n\031MAP_TOWER_USEBUFF_REQUEST\020\337W\022\037\n\032M" + "AP_TOWER_USEBUFF_RESPONSE\020\340W\022\036\n\031MODIFY_D" + "ECORATION_REQUEST\020\341W\022\037\n\032MODIFY_DECORATIO" + - "N_RESPONSE\020\342W\022\027\n\022MAP_OUT_INDICATION\020\343W\022 ", + "N_RESPONSE\020\342W\022\027\n\022MAP_OUT_INDICATION\020\343W\022 " + "\n\033MAIN_LEVEL_GET_INFO_REQUEST\020\344W\022!\n\034MAIN" + "_LEVEL_GET_INFO_RESPONSE\020\345W\022)\n$MAIN_LEVE" + "L_TAKE_STATE_REWARD_REQUEST\020\346W\022*\n%MAIN_L" + "EVEL_TAKE_STATE_REWARD_RESPONSE\020\347W\022 \n\033MA" + - "IN_LEVEL_GET_RANK_REQUEST\020\350W\022!\n\034MAIN_LEV" + + "IN_LEVEL_GET_RANK_REQUEST\020\350W\022!\n\034MAIN_LEV", "EL_GET_RANK_RESPONSE\020\351W\022\030\n\023MAIL_DELETE_R" + "EQUEST\020\352W\022\031\n\024MAIL_DELETE_RESPONSE\020\353W\022\'\n\"" + "MAIN_LEVEL_FIGHT_UPDATE_INDICATION\020\354W\022)\n" + "$MISSING_ROOM_MISSION_REFRESH_REQUEST\020\355W" + - "\022*\n%MISSING_ROOM_MISSION_REFRESH_RESPONS", + "\022*\n%MISSING_ROOM_MISSION_REFRESH_RESPONS" + "E\020\356W\022,\n\'MISSING_ROOM_MISSION_ACCELERATE_" + "REQUEST\020\357W\022-\n(MISSING_ROOM_MISSION_ACCEL" + "ERATE_RESPONSE\020\360W\022#\n\036MISSING_ROOM_HERO_S" + "END_REQUEST\020\361W\022$\n\037MISSING_ROOM_HERO_SEND" + - "_RESPONSE\020\362W\022\"\n\035NOTIFY_PAY_SUCCESS_INDIC" + + "_RESPONSE\020\362W\022\"\n\035NOTIFY_PAY_SUCCESS_INDIC", "ATION\020\244X\022\032\n\025NEXT_ACTIVITY_REQUEST\020\245X\022\033\n\026" + "NEXT_ACTIVITY_RESPONSE\020\246X\022&\n!POKEMON_COM" + "ONPENT_LEVELUP_REQUEST\020\354Y\022\'\n\"POKEMON_COM" + "ONPENT_LEVELUP_RESPONSE\020\355Y\022\035\n\030POKEMON_AD" + - "VANCED_REQUEST\020\356Y\022\036\n\031POKEMON_ADVANCED_RE", + "VANCED_REQUEST\020\356Y\022\036\n\031POKEMON_ADVANCED_RE" + "SPONSE\020\357Y\022 \n\033PLAYER_BACKCINFO_INDICATION" + "\020\360Y\022\031\n\024PLAY_WITH_SB_REQUEST\020\361Y\022\032\n\025PLAY_W" + "ITH_SB_RESPONSE\020\362Y\022\036\n\031PRIVILLEGE_ADD_IND" + "ICATION\020\363Y\022\030\n\023QUESTION_INDICATION\020\320Z\022\'\n\"" + - "QUICK_START_MONSTERFIGHTER_REQUEST\020\321Z\022\'\n" + + "QUICK_START_MONSTERFIGHTER_REQUEST\020\321Z\022\'\n", "\"QUICK_START_MONSTERFIGHTER_REPONSE\020\322Z\022\026" + "\n\021RECONNECT_REQUEST\020\264[\022\027\n\022RECONNECT_RESP" + "ONSE\020\265[\022\027\n\022RANDOMNAME_REQUEST\020\266[\022\030\n\023RAND" + "OMNAME_RESPONSE\020\267[\022\023\n\016RENAME_REQUEST\020\270[\022" + - "\024\n\017RENAME_RESPONSE\020\271[\022\032\n\025RINGFIRE_LOAD_R", + "\024\n\017RENAME_RESPONSE\020\271[\022\032\n\025RINGFIRE_LOAD_R" + "EQUEST\020\272[\022\033\n\026RINGFIRE_LOAD_RESPONSE\020\273[\022\036" + "\n\031RINGFIRE_ADVANCED_REQUEST\020\274[\022\037\n\032RINGFI" + "RE_ADVANCED_RESPONSE\020\275[\022!\n\034REFRESH_FRIEN" + "D_STATE_REQEUST\020\276[\022\"\n\035REFRESH_FRIEND_STA" + - "TE_RESPONSE\020\277[\022\027\n\022ROOM_MATCH_REQUEST\020\300[\022" + + "TE_RESPONSE\020\277[\022\027\n\022ROOM_MATCH_REQUEST\020\300[\022", "\030\n\023ROOM_MATCH_RESPONSE\020\301[\022\036\n\031ROOM_CANCEL" + "_MATCH_REQUEST\020\302[\022\037\n\032ROOM_CANCEL_MATCH_R" + "ESPONSE\020\303[\022\"\n\035ROOM_MATCH_SUCCESS_INDICAT" + "ION\020\304[\022\"\n\035ROOM_START_GAME_READY_REQUEST\020" + - "\306[\022#\n\036ROOM_START_GAME_READY_RESPONSE\020\307[\022", + "\306[\022#\n\036ROOM_START_GAME_READY_RESPONSE\020\307[\022" + "\037\n\032ROOM_START_GAME_INDICATION\020\310[\022\034\n\027ROOM" + "_GAME_START_REQUEST\020\312[\022\035\n\030ROOM_GAME_STAR" + "T_RESPONSE\020\313[\022\035\n\030ROOM_GAME_END_INDICATIO" + "N\020\314[\022\"\n\035ROOM_SYNC_MYSELF_MOVE_REQUEST\020\316[" + - "\022#\n\036ROOM_SYNC_MYSELF_MOVE_RESPONSE\020\317[\022#\n" + + "\022#\n\036ROOM_SYNC_MYSELF_MOVE_RESPONSE\020\317[\022#\n", "\036ROOM_SYNC_OTHER_MOVE_INDICTION\020\320[\022\"\n\035RO" + "OM_TRIGGER_FIGHT_INDICATION\020\322[\022\037\n\032ROOM_G" + "ET_FULL_INFO_REQEUST\020\323[\022 \n\033ROOM_GET_FULL" + "_INFO_RESPONSE\020\324[\022\"\n\035ROOM_MAP_UPDATE_EVE" + - "NT_REQUEST\020\325[\022#\n\036ROOM_MAP_UPDATE_EVENT_R", + "NT_REQUEST\020\325[\022#\n\036ROOM_MAP_UPDATE_EVENT_R" + "ESPONSE\020\326[\022\036\n\031ROOM_MAP_POINT_INDICATION\020" + "\327[\022#\n\036ROOM_PLAY_HP_UPDATE_INDICATION\020\330[\022" + "\035\n\030REFRESH_ITEM_NUM_REQUEST\020\331[\022\036\n\031REFRES" + "H_ITEM_NUM_RESPONSE\020\332[\022\034\n\027ROOM_ADDRESS_I" + - "NDICATION\020\333[\022\027\n\022ROOM_LOGIN_REQEUST\020\334[\022\030\n" + + "NDICATION\020\333[\022\027\n\022ROOM_LOGIN_REQEUST\020\334[\022\030\n", "\023ROOM_LOGIN_RESPONSE\020\346[\022\036\n\031REFRESH_LUCKW" + "HEEL_REQUEST\020\347[\022\037\n\032REFRESH_LUCKWHEEL_RES" + "PONSE\020\350[\022\032\n\025RIDE_LEVEL_UP_REQUEST\020\351[\022\033\n\026" + "RIDE_LEVEL_UP_RESPONSE\020\352[\022 \n\033REFRESH_REC" + - "HARGE_INDICATION\020\353[\022\025\n\020SUCCESS_RESPONSE\020", + "HARGE_INDICATION\020\353[\022\025\n\020SUCCESS_RESPONSE\020" + "\230\\\022 \n\033SWITCH_WORLDCHANNEL_REQUEST\020\232\\\022!\n\034" + "SWITCH_WORLDCHANNEL_RESPONSE\020\233\\\022\033\n\026SEND_" + "CHAT_INFO_REQUEST\020\234\\\022\034\n\027SEND_CHAT_INFO_R" + "ESPONSE\020\235\\\022\036\n\031SEND_RED_POINT_INDICATION\020" + - "\236\\\022(\n#SAVE_NEW_PLAYER_GUIDE_POINT_REQUES" + + "\236\\\022(\n#SAVE_NEW_PLAYER_GUIDE_POINT_REQUES", "T\020\237\\\022)\n$SAVE_NEW_PLAYER_GUIDE_POINT_RESP" + "ONSE\020\240\\\022\030\n\023SWEEP_RIGHT_REQUEST\020\241\\\022\031\n\024SWE" + "EP_RIGHT_RESPONSE\020\242\\\022\035\n\030SECRETBOX_RANDOM" + "_REQUEST\020\243\\\022\036\n\031SECRETBOX_RANDOM_RESPONSE" + - "\020\244\\\022 \n\033STORE_GOODS_REFRESH_REQUEST\020\245\\\022!\n", + "\020\244\\\022 \n\033STORE_GOODS_REFRESH_REQUEST\020\245\\\022!\n" + "\034STORE_GOODS_REFRESH_RESPONSE\020\246\\\022\032\n\025RECH" + "ARGE_INFO_REQUEST\020\247\\\022\033\n\026RECHARGE_INFO_RE" + "SPONSE\020\250\\\022 \n\033SEND_FRIEND_INFO_INDICATION" + "\020\251\\\022\036\n\031SEND_CHAT_INFO_INDICATION\020\252\\\022!\n\034S" + - "END_FRIEND_STATE_INDICATION\020\253\\\022 \n\033SCENE_" + + "END_FRIEND_STATE_INDICATION\020\253\\\022 \n\033SCENE_", "MSG_UPDATE_INDICATION\020\254\\\022\037\n\032SCENE_GET_FU" + "LL_MSG_REQUEST\020\255\\\022 \n\033SCENE_GET_FULL_MSG_" + "RESPONSE\020\256\\\022\032\n\025SCENE_COMMAND_REQUEST\020\257\\\022" + "\033\n\026SCENE_COMMAND_RESPONSE\020\260\\\022\030\n\023SERVER_Z" + - "ERO_REQUEST\020\261\\\022\034\n\027STORE_UPDATE_INDICATIO", + "ERO_REQUEST\020\261\\\022\034\n\027STORE_UPDATE_INDICATIO" + "N\020\262\\\022\024\n\017SIGN_IN_REQUEST\020\263\\\022\025\n\020SIGN_IN_RE" + "SPONSE\020\264\\\022%\n SCENE_GAME_OVER_READY_INDIC" + "ATION\020\265\\\022\037\n\032SCENE_GAME_OVER_INDICATION\020\266" + "\\\022\034\n\027SOUL_EQUIP_WEAR_REQUEST\020\267\\\022\035\n\030SOUL_" + - "EQUIP_WEAR_RESPONSE\020\270\\\022\"\n\035SOUL_EQUIP_UNL" + + "EQUIP_WEAR_RESPONSE\020\270\\\022\"\n\035SOUL_EQUIP_UNL", "OAD_OPT_REQUEST\020\271\\\022#\n\036SOUL_EQUIP_UNLOAD_" + "OPT_RESPONSE\020\272\\\022\034\n\027SOUL_RAND_EQUIP_REQUE" + "ST\020\273\\\022\035\n\030SOUL_RAND_EQUIP_RESPONSE\020\274\\\022\"\n\035" + "SOUL_FORCE_RAND_EQUIP_REQUEST\020\275\\\022#\n\036SOUL" + - "_FORCE_RAND_EQUIP_RESPONSE\020\276\\\022\027\n\022SOUL_ME", + "_FORCE_RAND_EQUIP_RESPONSE\020\276\\\022\027\n\022SOUL_ME" + "RGE_REQUEST\020\277\\\022\030\n\023SOUL_MERGE_RESPONSE\020\300\\" + "\022\032\n\025TRIGGER_EVENT_REQUEST\020\374\\\022\033\n\026TRIGGER_" + "EVENT_RESPONSE\020\375\\\022\032\n\025TEAM_POS_SAVE_REQUE" + "ST\020\376\\\022\033\n\026TEAM_POS_SAVE_RESPONSE\020\377\\\022!\n\034TA" + - "KE_ACTIVITY_REWARD_REQUEST\020\200]\022\"\n\035TAKE_AC" + + "KE_ACTIVITY_REWARD_REQUEST\020\200]\022\"\n\035TAKE_AC", "TIVITY_REWARD_RESPONSE\020\201]\022 \n\033TAKE_MISSIO" + "N_REWARD_REQUEST\020\202]\022!\n\034TAKE_MISSION_REWA" + "RD_RESPONSE\020\203]\022 \n\033TEST_BUY_GIGT_GOODS_RE" + "QEUST\020\204]\022!\n\034TEST_BUY_GIGT_GOODS_RESPONSE" + - "\020\205]\022\036\n\031TAKE_TOWER_REWARD_REQUEST\020\206]\022\037\n\032T", + "\020\205]\022\036\n\031TAKE_TOWER_REWARD_REQUEST\020\206]\022\037\n\032T" + "AKE_TOWER_REWARD_RESPONSE\020\207]\022$\n\037TAKE_SEV" + "EN_HAPPY_REWARD_REQUEST\020\210]\022%\n TAKE_SEVEN" + "_HAPPY_REWARD_RESPONSE\020\211]\022\033\n\026TO_BE_STRON" + "GER_REQUEST\020\212]\022\034\n\027TO_BE_STRONGER_RESPONS" + - "E\020\213]\022 \n\033TREASURE_REFRESH_INDICATION\020\214]\022 " + + "E\020\213]\022 \n\033TREASURE_REFRESH_INDICATION\020\214]\022 ", "\n\033TREASURE_LEVELUP_INDICATION\020\215]\022\"\n\035TREA" + "SURE_REFRESH_TIME_REQUEST\020\216]\022#\n\036TREASURE" + "_REFRESH_TIME_RESPONSE\020\217]\022\032\n\025UP_HERO_LEV" + "EL_REQUEST\020\340]\022\033\n\026UP_HERO_LEVEL_RESPONSE\020" + - "\341]\022\031\n\024UP_HERO_STAR_REQUEST\020\342]\022\032\n\025UP_HERO", + "\341]\022\031\n\024UP_HERO_STAR_REQUEST\020\342]\022\032\n\025UP_HERO" + "_STAR_RESPONSE\020\343]\022 \n\033USER_AND_PRICE_ITEM" + "_REQUEST\020\344]\022!\n\034USER_AND_PRICE_ITEM_RESPO" + "NSE\020\345]\022\036\n\031USER_FORCE_CHANGE_REQUEST\020\346]\022\037" + "\n\032USER_FORCE_CHANGE_RESPONSE\020\347]\022\032\n\025UPDAT" + - "E_BAG_INDICATION\020\350]\022\031\n\024UPDATE_STATE_REQU" + + "E_BAG_INDICATION\020\350]\022\031\n\024UPDATE_STATE_REQU", "EST\020\351]\022\032\n\025UPDATE_STATE_RESPONSE\020\352]\022\037\n\032UP" + "DATE_USER_EXP_INDICATION\020\353]\022(\n#UPDATE_SE" + "CRET_BOX_SEASON_INDICATION\020\354]\022\036\n\031UPDATE_" + "PHONE_INFO_REQUEST\020\355]\022\037\n\032UPDATE_PHONE_IN" + - "FO_RESPONSE\020\356]\022\034\n\027UPDATE_QUESTION_REQUES", + "FO_RESPONSE\020\356]\022\034\n\027UPDATE_QUESTION_REQUES" + "T\020\357]\022\035\n\030UPDATE_QUESTION_RESPONSE\020\360]\022 \n\033U" + "P_SOUL_EQUIP_QUICK_REQUEST\020\362]\022\033\n\026UP_SOUL" + "_EQUIP_RESPONSE\020\363]\022\035\n\030VIEW_FIGHTREPLAY_R" + "EQUEST\020\304^\022\036\n\031VIEW_FIGHTREPLAY_RESPONSE\020\305" + - "^\022\030\n\023VIP_LEVELUP_REQEUST\020\306^\022\031\n\024VIP_LEVEL" + + "^\022\030\n\023VIP_LEVELUP_REQEUST\020\306^\022\031\n\024VIP_LEVEL", "UP_RESPONSE\020\307^\022\034\n\027VIP_TAKE_REWARD_REQUES" + "T\020\310^\022\035\n\030VIP_TAKE_REWARD_RESPONSE\020\311^\022\033\n\026V" + "IEW_HERO_INFO_REQUEST\020\312^\022\034\n\027VIEW_HERO_IN" + "FO_RESPONSE\020\313^\022\033\n\026VIP_TAKE_DAILY_REQUEST" + - "\020\314^\022\034\n\027VIP_TAKE_DAILY_RESPONSE\020\315^\022 \n\033WOR", + "\020\314^\022\034\n\027VIP_TAKE_DAILY_RESPONSE\020\315^\022 \n\033WOR" + "KSHOP_FOUNDATION_REQUEST\020\250_\022!\n\034WORKSHOP_" + "FOUNDATION_RESPONSE\020\251_\022\"\n\035WORKSHOP_EQUIP" + "_CREATE_REQUEST\020\252_\022#\n\036WORKSHOP_EQUIP_CRE" + "ATE_RESPONSE\020\253_\022\035\n\030WORKSHOP_REBUILD_REQU" + - "EST\020\254_\022\036\n\031WORKSHOP_REBUILD_RESPONSE\020\255_\022%" + + "EST\020\254_\022\036\n\031WORKSHOP_REBUILD_RESPONSE\020\255_\022%", "\n WORKSHOP_REBUILD_CONFIRM_REQUEST\020\256_\022%\n" + " WORKSHOP_REBUILD_CONFIRM_RESONSE\020\257_\022\035\n\030" + "WORKSHOP_LEVELUP_REQUEST\020\260_\022\036\n\031WORKSHOP_" + "LEVELUP_RESPONSE\020\261_\022&\n!WORKSHOP_TECHNOLO" + - "GY_LEVEL_REQUEST\020\262_\022!\n\034WORKSHOP_TECHNOLO", + "GY_LEVEL_REQUEST\020\262_\022!\n\034WORKSHOP_TECHNOLO" + "GY_RESPONSE\020\263_\022&\n!WORKSHOP_TECHNOLOGY_RE" + "SET_REQUEST\020\264_\022\'\n\"WORKSHOP_TECHNOLOGY_RE" + "SET_RESPONSE\020\265_\022\'\n!EXPEDITION_GET_EXPEDI" + "TION_REQUEST\020\242\234\001\022\'\n!EXPEDITION_GET_EXPED" + - "ITION_RESONSE\020\243\234\001\022\'\n!EXPEDITION_TAKE_BOX" + + "ITION_RESONSE\020\243\234\001\022\'\n!EXPEDITION_TAKE_BOX", "REWARD_REQUEST\020\244\234\001\022\'\n!EXPEDITION_TAKE_BO" + "XREWARD_RESONSE\020\245\234\001\022$\n\036EXPEDITION_RELIVE" + "_HERO_REQUEST\020\246\234\001\022$\n\036EXPEDITION_RELIVE_H" + "ERO_RESONSE\020\247\234\001\022%\n\037EXPEDITION_START_BATT" + - "LE_REQUEST\020\250\234\001\022%\n\037EXPEDITION_START_BATTL", + "LE_REQUEST\020\250\234\001\022%\n\037EXPEDITION_START_BATTL" + "E_RESONSE\020\251\234\001\022#\n\035EXPEDITION_END_BATTLE_R" + "EQUEST\020\252\234\001\022#\n\035EXPEDITION_END_BATTLE_RESO" + "NSE\020\253\234\001\022(\n\"EXPEDITION_TAKE_HOLY_EQUIP_RE" + "QUEST\020\254\234\001\022(\n\"EXPEDITION_TAKE_HOLY_EQUIP_" + - "RESONSE\020\255\234\001\022%\n\037EXPEDITION_RECOVER_HERO_R" + + "RESONSE\020\255\234\001\022%\n\037EXPEDITION_RECOVER_HERO_R", "EQUEST\020\256\234\001\022%\n\037EXPEDITION_RECOVER_HERO_RE" + "SONSE\020\257\234\001\022$\n\036EXPEDITION_HOLY_BAG_INDICAT" + "ION\020\260\234\001\022\"\n\034EXPEDITION_NOINFO_INDICATION\020" + "\261\234\001\022\"\n\034MONTHCARD_TAKE_DAILY_REQUEST\020\205\235\001\022" + - "#\n\035MONTHCARD_TAKE_DAILY_RESPONSE\020\206\235\001\022\032\n\024", + "#\n\035MONTHCARD_TAKE_DAILY_RESPONSE\020\206\235\001\022\032\n\024" + "MONTHCARD_INDICATION\020\207\235\001\022\033\n\025EQUIP_COMPLE" + "X_REQUEST\020\217\235\001\022\034\n\026EQUIP_COMPLEX_RESPONSE\020" + - "\220\235\001B\002H\001" + "\220\235\001\022\027\n\021FamilyFeteRequest\020\261\352\001\022\030\n\022FamilyFe" + + "teResponse\020\262\352\001\022 \n\032FamilyGetFeteRewardReq" + + "uest\020\263\352\001\022!\n\033FamilyGetFeteRewardResponse\020", + "\264\352\001\022\'\n!FamilyFeteRewardProcessIndication" + + "\020\265\352\001B\002H\001" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { diff --git a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/PlayerInfoProto.java b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/PlayerInfoProto.java index b9f815249..398d79ae3 100644 --- a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/PlayerInfoProto.java +++ b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/PlayerInfoProto.java @@ -50038,6 +50038,50 @@ public final class PlayerInfoProto { * */ int getMonthDailyTake(int index); + + // optional int32 lastFeteType = 11; + /** + * optional int32 lastFeteType = 11; + * + *
+     * 上次祭祀类型 //每日清除 5点推送
+     * 
+ */ + boolean hasLastFeteType(); + /** + * optional int32 lastFeteType = 11; + * + *
+     * 上次祭祀类型 //每日清除 5点推送
+     * 
+ */ + int getLastFeteType(); + + // repeated int32 takeFeteReward = 12; + /** + * repeated int32 takeFeteReward = 12; + * + *
+     * 祭祀领取进度
+     * 
+ */ + java.util.List getTakeFeteRewardList(); + /** + * repeated int32 takeFeteReward = 12; + * + *
+     * 祭祀领取进度
+     * 
+ */ + int getTakeFeteRewardCount(); + /** + * repeated int32 takeFeteReward = 12; + * + *
+     * 祭祀领取进度
+     * 
+ */ + int getTakeFeteReward(int index); } /** * Protobuf type {@code com.ljsd.jieling.protocols.FivePlayerUpdateIndication} @@ -50195,6 +50239,32 @@ public final class PlayerInfoProto { input.popLimit(limit); break; } + case 88: { + bitField0_ |= 0x00000010; + lastFeteType_ = input.readInt32(); + break; + } + case 96: { + if (!((mutable_bitField0_ & 0x00000800) == 0x00000800)) { + takeFeteReward_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000800; + } + takeFeteReward_.add(input.readInt32()); + break; + } + case 98: { + int length = input.readRawVarint32(); + int limit = input.pushLimit(length); + if (!((mutable_bitField0_ & 0x00000800) == 0x00000800) && input.getBytesUntilLimit() > 0) { + takeFeteReward_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000800; + } + while (input.getBytesUntilLimit() > 0) { + takeFeteReward_.add(input.readInt32()); + } + input.popLimit(limit); + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -50221,6 +50291,9 @@ public final class PlayerInfoProto { if (((mutable_bitField0_ & 0x00000200) == 0x00000200)) { monthDailyTake_ = java.util.Collections.unmodifiableList(monthDailyTake_); } + if (((mutable_bitField0_ & 0x00000800) == 0x00000800)) { + takeFeteReward_ = java.util.Collections.unmodifiableList(takeFeteReward_); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } @@ -50694,6 +50767,65 @@ public final class PlayerInfoProto { return monthDailyTake_.get(index); } + // optional int32 lastFeteType = 11; + public static final int LASTFETETYPE_FIELD_NUMBER = 11; + private int lastFeteType_; + /** + * optional int32 lastFeteType = 11; + * + *
+     * 上次祭祀类型 //每日清除 5点推送
+     * 
+ */ + public boolean hasLastFeteType() { + return ((bitField0_ & 0x00000010) == 0x00000010); + } + /** + * optional int32 lastFeteType = 11; + * + *
+     * 上次祭祀类型 //每日清除 5点推送
+     * 
+ */ + public int getLastFeteType() { + return lastFeteType_; + } + + // repeated int32 takeFeteReward = 12; + public static final int TAKEFETEREWARD_FIELD_NUMBER = 12; + private java.util.List takeFeteReward_; + /** + * repeated int32 takeFeteReward = 12; + * + *
+     * 祭祀领取进度
+     * 
+ */ + public java.util.List + getTakeFeteRewardList() { + return takeFeteReward_; + } + /** + * repeated int32 takeFeteReward = 12; + * + *
+     * 祭祀领取进度
+     * 
+ */ + public int getTakeFeteRewardCount() { + return takeFeteReward_.size(); + } + /** + * repeated int32 takeFeteReward = 12; + * + *
+     * 祭祀领取进度
+     * 
+ */ + public int getTakeFeteReward(int index) { + return takeFeteReward_.get(index); + } + private void initFields() { hadTakeDailyBox_ = 0; privilege_ = java.util.Collections.emptyList(); @@ -50705,6 +50837,8 @@ public final class PlayerInfoProto { posInfos_ = java.util.Collections.emptyList(); posInfosAdvance_ = java.util.Collections.emptyList(); monthDailyTake_ = java.util.Collections.emptyList(); + lastFeteType_ = 0; + takeFeteReward_ = java.util.Collections.emptyList(); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -50754,6 +50888,12 @@ public final class PlayerInfoProto { for (int i = 0; i < monthDailyTake_.size(); i++) { output.writeInt32(10, monthDailyTake_.get(i)); } + if (((bitField0_ & 0x00000010) == 0x00000010)) { + output.writeInt32(11, lastFeteType_); + } + for (int i = 0; i < takeFeteReward_.size(); i++) { + output.writeInt32(12, takeFeteReward_.get(i)); + } getUnknownFields().writeTo(output); } @@ -50808,6 +50948,19 @@ public final class PlayerInfoProto { size += dataSize; size += 1 * getMonthDailyTakeList().size(); } + if (((bitField0_ & 0x00000010) == 0x00000010)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(11, lastFeteType_); + } + { + int dataSize = 0; + for (int i = 0; i < takeFeteReward_.size(); i++) { + dataSize += com.google.protobuf.CodedOutputStream + .computeInt32SizeNoTag(takeFeteReward_.get(i)); + } + size += dataSize; + size += 1 * getTakeFeteRewardList().size(); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -50984,6 +51137,10 @@ public final class PlayerInfoProto { } monthDailyTake_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000200); + lastFeteType_ = 0; + bitField0_ = (bitField0_ & ~0x00000400); + takeFeteReward_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000800); return this; } @@ -51090,6 +51247,15 @@ public final class PlayerInfoProto { bitField0_ = (bitField0_ & ~0x00000200); } result.monthDailyTake_ = monthDailyTake_; + if (((from_bitField0_ & 0x00000400) == 0x00000400)) { + to_bitField0_ |= 0x00000010; + } + result.lastFeteType_ = lastFeteType_; + if (((bitField0_ & 0x00000800) == 0x00000800)) { + takeFeteReward_ = java.util.Collections.unmodifiableList(takeFeteReward_); + bitField0_ = (bitField0_ & ~0x00000800); + } + result.takeFeteReward_ = takeFeteReward_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -51258,6 +51424,19 @@ public final class PlayerInfoProto { } onChanged(); } + if (other.hasLastFeteType()) { + setLastFeteType(other.getLastFeteType()); + } + if (!other.takeFeteReward_.isEmpty()) { + if (takeFeteReward_.isEmpty()) { + takeFeteReward_ = other.takeFeteReward_; + bitField0_ = (bitField0_ & ~0x00000800); + } else { + ensureTakeFeteRewardIsMutable(); + takeFeteReward_.addAll(other.takeFeteReward_); + } + onChanged(); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -53453,6 +53632,149 @@ public final class PlayerInfoProto { return this; } + // optional int32 lastFeteType = 11; + private int lastFeteType_ ; + /** + * optional int32 lastFeteType = 11; + * + *
+       * 上次祭祀类型 //每日清除 5点推送
+       * 
+ */ + public boolean hasLastFeteType() { + return ((bitField0_ & 0x00000400) == 0x00000400); + } + /** + * optional int32 lastFeteType = 11; + * + *
+       * 上次祭祀类型 //每日清除 5点推送
+       * 
+ */ + public int getLastFeteType() { + return lastFeteType_; + } + /** + * optional int32 lastFeteType = 11; + * + *
+       * 上次祭祀类型 //每日清除 5点推送
+       * 
+ */ + public Builder setLastFeteType(int value) { + bitField0_ |= 0x00000400; + lastFeteType_ = value; + onChanged(); + return this; + } + /** + * optional int32 lastFeteType = 11; + * + *
+       * 上次祭祀类型 //每日清除 5点推送
+       * 
+ */ + public Builder clearLastFeteType() { + bitField0_ = (bitField0_ & ~0x00000400); + lastFeteType_ = 0; + onChanged(); + return this; + } + + // repeated int32 takeFeteReward = 12; + private java.util.List takeFeteReward_ = java.util.Collections.emptyList(); + private void ensureTakeFeteRewardIsMutable() { + if (!((bitField0_ & 0x00000800) == 0x00000800)) { + takeFeteReward_ = new java.util.ArrayList(takeFeteReward_); + bitField0_ |= 0x00000800; + } + } + /** + * repeated int32 takeFeteReward = 12; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public java.util.List + getTakeFeteRewardList() { + return java.util.Collections.unmodifiableList(takeFeteReward_); + } + /** + * repeated int32 takeFeteReward = 12; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public int getTakeFeteRewardCount() { + return takeFeteReward_.size(); + } + /** + * repeated int32 takeFeteReward = 12; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public int getTakeFeteReward(int index) { + return takeFeteReward_.get(index); + } + /** + * repeated int32 takeFeteReward = 12; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public Builder setTakeFeteReward( + int index, int value) { + ensureTakeFeteRewardIsMutable(); + takeFeteReward_.set(index, value); + onChanged(); + return this; + } + /** + * repeated int32 takeFeteReward = 12; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public Builder addTakeFeteReward(int value) { + ensureTakeFeteRewardIsMutable(); + takeFeteReward_.add(value); + onChanged(); + return this; + } + /** + * repeated int32 takeFeteReward = 12; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public Builder addAllTakeFeteReward( + java.lang.Iterable values) { + ensureTakeFeteRewardIsMutable(); + super.addAll(values, takeFeteReward_); + onChanged(); + return this; + } + /** + * repeated int32 takeFeteReward = 12; + * + *
+       * 祭祀领取进度
+       * 
+ */ + public Builder clearTakeFeteReward() { + takeFeteReward_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000800); + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.FivePlayerUpdateIndication) } @@ -101292,7 +101614,7 @@ public final class PlayerInfoProto { "\004type\030\001 \001(\005\022\020\n\010friendId\030\002 \001(\005\"/\n\032Refresh" + "FriendStateResponse\022\021\n\tfriendIds\030\001 \003(\005\"7" + "\n\025FriendBlackOptRequest\022\014\n\004type\030\001 \001(\005\022\020\n" + - "\010blackUid\030\002 \001(\005\"\356\004\n\032FivePlayerUpdateIndi" + + "\010blackUid\030\002 \001(\005\"\234\005\n\032FivePlayerUpdateIndi" + "cation\022\027\n\017hadTakeDailyBox\030\001 \001(\005\0228\n\tprivi", "lege\030\002 \003(\0132%.com.ljsd.jieling.protocols." + "Privilege\022>\n\014activityInfo\030\003 \003(\0132(.com.lj" + @@ -101308,148 +101630,149 @@ public final class PlayerInfoProto { "kWheelRewardPosInfo\022K\n\017posInfosAdvance\030\t" + " \003(\01322.com.ljsd.jieling.protocols.LuckWh" + "eelRewardPosInfo\022\026\n\016MonthDailyTake\030\n \003(\005" + - "\"Z\n\022GetMissionResponse\022D\n\017userMissionInf" + - "o\030\001 \003(\0132+.com.ljsd.jieling.protocols.Use" + - "rMissionInfo\"\'\n\025RefreshItemNumRequest\022\016\n" + - "\006itemId\030\001 \003(\005\"P\n\026RefreshItemNumResponse\022" + - "6\n\010itemInfo\030\001 \003(\0132$.com.ljsd.jieling.pro" + - "tocols.ItemInfo\"S\n\023UpdateBagIndication\022\014", - "\n\004type\030\001 \001(\005\022.\n\004item\030\002 \003(\0132 .com.ljsd.ji" + - "eling.protocols.Item\"=\n\027ModifyDecoration" + - "Request\022\024\n\014decorationId\030\001 \001(\005\022\014\n\004type\030\002 " + - "\001(\005\"\336\002\n\rblessResponse\022:\n\tfixReward\030\001 \003(\013" + - "2\'.com.ljsd.jieling.protocols.blessRewar" + - "d\022=\n\014legendReward\030\002 \003(\0132\'.com.ljsd.jieli" + - "ng.protocols.blessReward\022>\n\rsupremeRewar" + - "d\030\003 \003(\0132\'.com.ljsd.jieling.protocols.ble" + - "ssReward\022<\n\013countReward\030\004 \003(\0132\'.com.ljsd" + - ".jieling.protocols.blessReward\022;\n\nreward", - "View\030\005 \003(\0132\'.com.ljsd.jieling.protocols." + - "blessReward\022\027\n\017lastRefreshTime\030\006 \001(\005\"%\n\020" + - "blessSaveRequest\022\021\n\trewardIds\030\001 \003(\005\"(\n\022b" + - "lessChooseRequest\022\022\n\nlocationId\030\001 \001(\005\"_\n" + - "\023blessChooseResponse\0220\n\006reward\030\001 \001(\0132 .c" + - "om.ljsd.jieling.protocols.Drop\022\026\n\016choose" + - "RewardId\030\002 \001(\005\"I\n\014blessRefresh\0229\n\006reward" + - "\030\001 \001(\0132).com.ljsd.jieling.protocols.bles" + - "sResponse\"Q\n\025storeUpdateIndication\0228\n\tst" + - "oreInfo\030\001 \003(\0132%.com.ljsd.jieling.protoco", - "ls.StoreInfo\"%\n\tLockEquip\022\n\n\002id\030\001 \003(\t\022\014\n" + - "\004type\030\002 \001(\005\"r\n\027ActivityUpateIndication\022>" + - "\n\014activityInfo\030\001 \003(\0132(.com.ljsd.jieling." + - "protocols.ActivityInfo\022\027\n\017closeActivityI" + - "d\030\002 \003(\005\";\n\027GetForceRankInfoRequest\022\014\n\004pa" + - "ge\030\001 \001(\005\022\022\n\nactiviteId\030\002 \001(\005\"{\n\030GetForce" + - "RankInfoResponse\022>\n\014useForceInfo\030\001 \003(\0132(" + - ".com.ljsd.jieling.protocols.UseForceInfo" + - "\022\017\n\007myForce\030\002 \001(\005\022\016\n\006myRank\030\003 \001(\005\"a\n\037Act" + - "ivityUpateProgressIndication\022>\n\014activity", - "Info\030\001 \002(\0132(.com.ljsd.jieling.protocols." + - "ActivityInfo\"*\n\024GetExpertInfoRequest\022\022\n\n" + - "activiteId\030\001 \001(\005\"p\n\025GetExpertInfoRespons" + - "e\0226\n\006expert\030\001 \003(\0132&.com.ljsd.jieling.pro" + - "tocols.ExpertInfo\022\017\n\007myScore\030\002 \001(\005\022\016\n\006my" + - "Rank\030\003 \001(\005\"!\n\rSignInRequest\022\020\n\010dayIndex\030" + - "\001 \001(\005\"@\n\016SignInResponse\022.\n\004drop\030\001 \001(\0132 ." + - "com.ljsd.jieling.protocols.Drop\"?\n\033GetPl" + - "ayerOneTeamInfoRequest\022\020\n\010playerId\030\001 \001(\005" + - "\022\016\n\006teamId\030\002 \001(\005\"Y\n\034GetPlayerOneTeamInfo", - "Response\0229\n\010teamInfo\030\001 \001(\0132\'.com.ljsd.ji" + - "eling.protocols.TeamOneInfo\"O\n\035TakeSenve" + - "nScoreRewardResponse\022.\n\004drop\030\001 \001(\0132 .com" + - ".ljsd.jieling.protocols.Drop\"\"\n\022UpdateSt" + - "ateRequest\022\014\n\004type\030\001 \001(\005\"5\n\027UpdateUserEx" + - "pIndicaiton\022\r\n\005level\030\001 \001(\005\022\013\n\003exp\030\002 \001(\005\"" + - "6\n\037UpdateSecretBoxSeasonIndication\022\023\n\013ne" + - "wSeasonId\030\001 \001(\005\"\033\n\031GetMonsterRankInfoReq" + - "uest\"{\n\032GetMonsterRankInfoResponse\022<\n\007mo" + - "nster\030\001 \003(\0132+.com.ljsd.jieling.protocols", - ".MonsterRankInfo\022\017\n\007myScore\030\002 \001(\005\022\016\n\006myR" + - "ank\030\003 \001(\005\"-\n\031PlayerBackCInfoIndication\022\020" + - "\n\010nickName\030\001 \001(\t\"*\n\026UpdatePhoneinfoReque" + - "st\022\020\n\010phoneNum\030\001 \001(\t\"(\n\027UpdatePhoneinfoR" + - "esponse\022\r\n\005state\030\001 \001(\005\"\027\n\025GetPhoneReward" + - "Request\"H\n\026GetPhoneRewardResponse\022.\n\004dro" + - "p\030\001 \001(\0132 .com.ljsd.jieling.protocols.Dro" + - "p\"#\n\022QuestionIndication\022\r\n\005state\030\001 \001(\005\"\024" + - "\n\022GetQuestionRequest\"\226\001\n\023GetQuestionResp" + - "onse\022\n\n\002id\030\001 \001(\t\022\020\n\010questDes\030\002 \001(\t\022\r\n\005st", - "art\030\003 \001(\t\022\017\n\007endtime\030\004 \001(\t\022A\n\014questOptio" + - "ns\030\005 \003(\0132+.com.ljsd.jieling.protocols.Qu" + - "estionOptions\"(\n\025upDataQuestionRequest\022\017" + - "\n\007options\030\001 \003(\t\"(\n\026upDataQuestionRespons" + - "e\022\016\n\006result\030\001 \001(\005\"\013\n\tBloodRank\"!\n\022Exchan" + - "geCdkRequest\022\013\n\003key\030\001 \001(\t\"0\n\035NotifyPaySu" + - "ccessfulIndicaiton\022\017\n\007goodsId\030\001 \001(\005\"V\n\023D" + - "irectBuyIndication\022\017\n\007goodsId\030\001 \001(\005\022.\n\004d" + - "rop\030\002 \001(\0132 .com.ljsd.jieling.protocols.D" + - "rop\"=\n\027RefreshLuckWheelRequest\022\022\n\nactivi", - "tyId\030\001 \001(\005\022\016\n\006isFree\030\002 \001(\010\"`\n\030RefreshLuc" + - "kWheelResponse\022D\n\010posInfos\030\001 \003(\01322.com.l" + - "jsd.jieling.protocols.LuckWheelRewardPos" + - "Info\"E\n\035GetLuckWheelRandRewardRequest\022\022\n" + - "\nactivityId\030\001 \001(\005\022\020\n\010repeated\030\002 \001(\010\"\252\001\n\036" + - "GetLuckWheelRandRewardResponse\022\022\n\nactivi" + - "tyId\030\001 \001(\005\022D\n\010posInfos\030\002 \003(\01322.com.ljsd." + - "jieling.protocols.LuckWheelRewardPosInfo" + - "\022.\n\004drop\030\003 \001(\0132 .com.ljsd.jieling.protoc" + - "ols.Drop\"\250\001\n\023LuckWheelIndication\022D\n\010posI", - "nfos\030\001 \003(\01322.com.ljsd.jieling.protocols." + - "LuckWheelRewardPosInfo\022K\n\017posInfosAdvanc" + - "e\030\002 \003(\01322.com.ljsd.jieling.protocols.Luc" + - "kWheelRewardPosInfo\"\246\001\n\030GetMainLevelInfo" + - "Response\022\017\n\007fightId\030\001 \001(\005\022\r\n\005state\030\002 \001(\005" + - "\022\020\n\010duration\030\003 \001(\005\022H\n\021adventureBossInfo\030" + - "\004 \003(\0132-.com.ljsd.jieling.protocols.Adven" + - "tureBossInfo\022\016\n\006reward\030\005 \001(\t\"-\n\034QuickBuy" + - "TreasureLevelRequest\022\r\n\005level\030\001 \001(\005\"S\n\031T" + - "reasureRefreshIndication\0226\n\005tasks\030\001 \003(\0132", - "\'.com.ljsd.jieling.protocols.RefreshTask" + - "\"*\n\031TreasureLevelUpIndication\022\r\n\005level\030\001" + - " \001(\005\" \n\016MailDelRequest\022\016\n\006mailId\030\001 \003(\t\"8" + - "\n\023ViewHeroInfoRequest\022\021\n\ttargetUid\030\001 \001(\005" + - "\022\016\n\006heroId\030\002 \001(\t\"\313\001\n\024ViewHeroInfoRespons" + - "e\022.\n\004hero\030\001 \001(\0132 .com.ljsd.jieling.proto" + - "cols.Hero\0220\n\005equip\030\002 \003(\0132!.com.ljsd.jiel" + - "ing.protocols.Equip\022B\n\016SpecialEffects\030\003 " + - "\003(\0132*.com.ljsd.jieling.protocols.Special" + - "Effects\022\r\n\005force\030\004 \001(\005\"/\n\013RankRequest\022\014\n", - "\004type\030\001 \001(\005\022\022\n\nactiviteId\030\002 \001(\005\"}\n\014RankR" + - "esponse\0223\n\005ranks\030\001 \003(\0132$.com.ljsd.jielin" + - "g.protocols.UserRank\0228\n\nmyRankInfo\030\002 \001(\013" + - "2$.com.ljsd.jieling.protocols.RankInfo\")" + - "\n\023NextActivityRequest\022\022\n\nactivityId\030\001 \001(" + - "\005\"0\n\024NextActivityResponse\022\n\n\002id\030\001 \001(\005\022\014\n" + - "\004time\030\002 \001(\005\"X\n\031RefreshRechargeIndication" + - "\022\016\n\006amount\030\001 \001(\005\022\024\n\014monthSaveAmt\030\002 \001(\005\022\025" + - "\n\rsmonthSaveAmt\030\003 \001(\005\"\024\n\022VipTakeDilyRequ" + - "est\"E\n\023VipTakeDilyResponse\022.\n\004drop\030\001 \001(\013", - "2 .com.ljsd.jieling.protocols.Drop\"X\n\032Mi" + - "ssingRoomRefreshResponse\022:\n\005infos\030\001 \003(\0132" + - "+.com.ljsd.jieling.protocols.UserMission" + - "Info\"@\n\032MissingRoomSendHeroRequest\022\017\n\007he" + - "roIds\030\001 \003(\t\022\021\n\tmissionId\030\002 \001(\005\"1\n\034Missin" + - "gRoomAccelerateRequest\022\021\n\tmissionId\030\001 \001(" + - "\005\"\037\n\020SexChangeRequest\022\013\n\003sex\030\001 \001(\005\"\023\n\021Se" + - "xChangeResponse\"K\n\023PrivilegeIndication\0224" + - "\n\005infos\030\001 \003(\0132%.com.ljsd.jieling.protoco" + - "ls.Privilege\"@\n\033TreasureRefreshTimeRespo", - "nse\022\017\n\007dayTime\030\001 \001(\005\022\020\n\010weekTime\030\002 \001(\005\"T" + - "\n\023MonthCardIndication\022=\n\nmonthinfos\030\001 \003(" + - "\0132).com.ljsd.jieling.protocols.MonthCard" + - "Info\"#\n\023TakeMothDilyRequest\022\014\n\004type\030\001 \001(" + - "\005\"F\n\024TakeMothDilyResponse\022.\n\004drop\030\001 \001(\0132" + - " .com.ljsd.jieling.protocols.Drop\"1\n\025Dai" + - "lyChallengeRequest\022\n\n\002id\030\001 \001(\005\022\014\n\004type\030\002" + - " \001(\005\"\202\001\n\026DailyChallengeResponse\022.\n\004drop\030" + - "\001 \001(\0132 .com.ljsd.jieling.protocols.Drop\022" + - "8\n\tfightData\030\002 \001(\0132%.com.ljsd.jieling.pr", - "otocols.FightData\"(\n\032GetSomeActivityInfo" + - "Request\022\n\n\002id\030\001 \003(\005\"\\\n\032GetSomeActitityIn" + - "foRespone\022>\n\014activityInfo\030\001 \003(\0132(.com.lj" + - "sd.jieling.protocols.ActivityInfo\";\n\021Jew" + - "elBuildRequest\022\n\n\002id\030\001 \001(\t\022\014\n\004type\030\002 \001(\005" + - "\022\014\n\004item\030\003 \003(\tB\002H\001" + "\022\024\n\014lastFeteType\030\013 \001(\005\022\026\n\016takeFeteReward" + + "\030\014 \003(\005\"Z\n\022GetMissionResponse\022D\n\017userMiss" + + "ionInfo\030\001 \003(\0132+.com.ljsd.jieling.protoco" + + "ls.UserMissionInfo\"\'\n\025RefreshItemNumRequ" + + "est\022\016\n\006itemId\030\001 \003(\005\"P\n\026RefreshItemNumRes" + + "ponse\0226\n\010itemInfo\030\001 \003(\0132$.com.ljsd.jieli", + "ng.protocols.ItemInfo\"S\n\023UpdateBagIndica" + + "tion\022\014\n\004type\030\001 \001(\005\022.\n\004item\030\002 \003(\0132 .com.l" + + "jsd.jieling.protocols.Item\"=\n\027ModifyDeco" + + "rationRequest\022\024\n\014decorationId\030\001 \001(\005\022\014\n\004t" + + "ype\030\002 \001(\005\"\336\002\n\rblessResponse\022:\n\tfixReward" + + "\030\001 \003(\0132\'.com.ljsd.jieling.protocols.bles" + + "sReward\022=\n\014legendReward\030\002 \003(\0132\'.com.ljsd" + + ".jieling.protocols.blessReward\022>\n\rsuprem" + + "eReward\030\003 \003(\0132\'.com.ljsd.jieling.protoco" + + "ls.blessReward\022<\n\013countReward\030\004 \003(\0132\'.co", + "m.ljsd.jieling.protocols.blessReward\022;\n\n" + + "rewardView\030\005 \003(\0132\'.com.ljsd.jieling.prot" + + "ocols.blessReward\022\027\n\017lastRefreshTime\030\006 \001" + + "(\005\"%\n\020blessSaveRequest\022\021\n\trewardIds\030\001 \003(" + + "\005\"(\n\022blessChooseRequest\022\022\n\nlocationId\030\001 " + + "\001(\005\"_\n\023blessChooseResponse\0220\n\006reward\030\001 \001" + + "(\0132 .com.ljsd.jieling.protocols.Drop\022\026\n\016" + + "chooseRewardId\030\002 \001(\005\"I\n\014blessRefresh\0229\n\006" + + "reward\030\001 \001(\0132).com.ljsd.jieling.protocol" + + "s.blessResponse\"Q\n\025storeUpdateIndication", + "\0228\n\tstoreInfo\030\001 \003(\0132%.com.ljsd.jieling.p" + + "rotocols.StoreInfo\"%\n\tLockEquip\022\n\n\002id\030\001 " + + "\003(\t\022\014\n\004type\030\002 \001(\005\"r\n\027ActivityUpateIndica" + + "tion\022>\n\014activityInfo\030\001 \003(\0132(.com.ljsd.ji" + + "eling.protocols.ActivityInfo\022\027\n\017closeAct" + + "ivityId\030\002 \003(\005\";\n\027GetForceRankInfoRequest" + + "\022\014\n\004page\030\001 \001(\005\022\022\n\nactiviteId\030\002 \001(\005\"{\n\030Ge" + + "tForceRankInfoResponse\022>\n\014useForceInfo\030\001" + + " \003(\0132(.com.ljsd.jieling.protocols.UseFor" + + "ceInfo\022\017\n\007myForce\030\002 \001(\005\022\016\n\006myRank\030\003 \001(\005\"", + "a\n\037ActivityUpateProgressIndication\022>\n\014ac" + + "tivityInfo\030\001 \002(\0132(.com.ljsd.jieling.prot" + + "ocols.ActivityInfo\"*\n\024GetExpertInfoReque" + + "st\022\022\n\nactiviteId\030\001 \001(\005\"p\n\025GetExpertInfoR" + + "esponse\0226\n\006expert\030\001 \003(\0132&.com.ljsd.jieli" + + "ng.protocols.ExpertInfo\022\017\n\007myScore\030\002 \001(\005" + + "\022\016\n\006myRank\030\003 \001(\005\"!\n\rSignInRequest\022\020\n\010day" + + "Index\030\001 \001(\005\"@\n\016SignInResponse\022.\n\004drop\030\001 " + + "\001(\0132 .com.ljsd.jieling.protocols.Drop\"?\n" + + "\033GetPlayerOneTeamInfoRequest\022\020\n\010playerId", + "\030\001 \001(\005\022\016\n\006teamId\030\002 \001(\005\"Y\n\034GetPlayerOneTe" + + "amInfoResponse\0229\n\010teamInfo\030\001 \001(\0132\'.com.l" + + "jsd.jieling.protocols.TeamOneInfo\"O\n\035Tak" + + "eSenvenScoreRewardResponse\022.\n\004drop\030\001 \001(\013" + + "2 .com.ljsd.jieling.protocols.Drop\"\"\n\022Up" + + "dateStateRequest\022\014\n\004type\030\001 \001(\005\"5\n\027Update" + + "UserExpIndicaiton\022\r\n\005level\030\001 \001(\005\022\013\n\003exp\030" + + "\002 \001(\005\"6\n\037UpdateSecretBoxSeasonIndication" + + "\022\023\n\013newSeasonId\030\001 \001(\005\"\033\n\031GetMonsterRankI" + + "nfoRequest\"{\n\032GetMonsterRankInfoResponse", + "\022<\n\007monster\030\001 \003(\0132+.com.ljsd.jieling.pro" + + "tocols.MonsterRankInfo\022\017\n\007myScore\030\002 \001(\005\022" + + "\016\n\006myRank\030\003 \001(\005\"-\n\031PlayerBackCInfoIndica" + + "tion\022\020\n\010nickName\030\001 \001(\t\"*\n\026UpdatePhoneinf" + + "oRequest\022\020\n\010phoneNum\030\001 \001(\t\"(\n\027UpdatePhon" + + "einfoResponse\022\r\n\005state\030\001 \001(\005\"\027\n\025GetPhone" + + "RewardRequest\"H\n\026GetPhoneRewardResponse\022" + + ".\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.protoco" + + "ls.Drop\"#\n\022QuestionIndication\022\r\n\005state\030\001" + + " \001(\005\"\024\n\022GetQuestionRequest\"\226\001\n\023GetQuesti", + "onResponse\022\n\n\002id\030\001 \001(\t\022\020\n\010questDes\030\002 \001(\t" + + "\022\r\n\005start\030\003 \001(\t\022\017\n\007endtime\030\004 \001(\t\022A\n\014ques" + + "tOptions\030\005 \003(\0132+.com.ljsd.jieling.protoc" + + "ols.QuestionOptions\"(\n\025upDataQuestionReq" + + "uest\022\017\n\007options\030\001 \003(\t\"(\n\026upDataQuestionR" + + "esponse\022\016\n\006result\030\001 \001(\005\"\013\n\tBloodRank\"!\n\022" + + "ExchangeCdkRequest\022\013\n\003key\030\001 \001(\t\"0\n\035Notif" + + "yPaySuccessfulIndicaiton\022\017\n\007goodsId\030\001 \001(" + + "\005\"V\n\023DirectBuyIndication\022\017\n\007goodsId\030\001 \001(" + + "\005\022.\n\004drop\030\002 \001(\0132 .com.ljsd.jieling.proto", + "cols.Drop\"=\n\027RefreshLuckWheelRequest\022\022\n\n" + + "activityId\030\001 \001(\005\022\016\n\006isFree\030\002 \001(\010\"`\n\030Refr" + + "eshLuckWheelResponse\022D\n\010posInfos\030\001 \003(\01322" + + ".com.ljsd.jieling.protocols.LuckWheelRew" + + "ardPosInfo\"E\n\035GetLuckWheelRandRewardRequ" + + "est\022\022\n\nactivityId\030\001 \001(\005\022\020\n\010repeated\030\002 \001(" + + "\010\"\252\001\n\036GetLuckWheelRandRewardResponse\022\022\n\n" + + "activityId\030\001 \001(\005\022D\n\010posInfos\030\002 \003(\01322.com" + + ".ljsd.jieling.protocols.LuckWheelRewardP" + + "osInfo\022.\n\004drop\030\003 \001(\0132 .com.ljsd.jieling.", + "protocols.Drop\"\250\001\n\023LuckWheelIndication\022D" + + "\n\010posInfos\030\001 \003(\01322.com.ljsd.jieling.prot" + + "ocols.LuckWheelRewardPosInfo\022K\n\017posInfos" + + "Advance\030\002 \003(\01322.com.ljsd.jieling.protoco" + + "ls.LuckWheelRewardPosInfo\"\246\001\n\030GetMainLev" + + "elInfoResponse\022\017\n\007fightId\030\001 \001(\005\022\r\n\005state" + + "\030\002 \001(\005\022\020\n\010duration\030\003 \001(\005\022H\n\021adventureBos" + + "sInfo\030\004 \003(\0132-.com.ljsd.jieling.protocols" + + ".AdventureBossInfo\022\016\n\006reward\030\005 \001(\t\"-\n\034Qu" + + "ickBuyTreasureLevelRequest\022\r\n\005level\030\001 \001(", + "\005\"S\n\031TreasureRefreshIndication\0226\n\005tasks\030" + + "\001 \003(\0132\'.com.ljsd.jieling.protocols.Refre" + + "shTask\"*\n\031TreasureLevelUpIndication\022\r\n\005l" + + "evel\030\001 \001(\005\" \n\016MailDelRequest\022\016\n\006mailId\030\001" + + " \003(\t\"8\n\023ViewHeroInfoRequest\022\021\n\ttargetUid" + + "\030\001 \001(\005\022\016\n\006heroId\030\002 \001(\t\"\313\001\n\024ViewHeroInfoR" + + "esponse\022.\n\004hero\030\001 \001(\0132 .com.ljsd.jieling" + + ".protocols.Hero\0220\n\005equip\030\002 \003(\0132!.com.ljs" + + "d.jieling.protocols.Equip\022B\n\016SpecialEffe" + + "cts\030\003 \003(\0132*.com.ljsd.jieling.protocols.S", + "pecialEffects\022\r\n\005force\030\004 \001(\005\"/\n\013RankRequ" + + "est\022\014\n\004type\030\001 \001(\005\022\022\n\nactiviteId\030\002 \001(\005\"}\n" + + "\014RankResponse\0223\n\005ranks\030\001 \003(\0132$.com.ljsd." + + "jieling.protocols.UserRank\0228\n\nmyRankInfo" + + "\030\002 \001(\0132$.com.ljsd.jieling.protocols.Rank" + + "Info\")\n\023NextActivityRequest\022\022\n\nactivityI" + + "d\030\001 \001(\005\"0\n\024NextActivityResponse\022\n\n\002id\030\001 " + + "\001(\005\022\014\n\004time\030\002 \001(\005\"X\n\031RefreshRechargeIndi" + + "cation\022\016\n\006amount\030\001 \001(\005\022\024\n\014monthSaveAmt\030\002" + + " \001(\005\022\025\n\rsmonthSaveAmt\030\003 \001(\005\"\024\n\022VipTakeDi", + "lyRequest\"E\n\023VipTakeDilyResponse\022.\n\004drop" + + "\030\001 \001(\0132 .com.ljsd.jieling.protocols.Drop" + + "\"X\n\032MissingRoomRefreshResponse\022:\n\005infos\030" + + "\001 \003(\0132+.com.ljsd.jieling.protocols.UserM" + + "issionInfo\"@\n\032MissingRoomSendHeroRequest" + + "\022\017\n\007heroIds\030\001 \003(\t\022\021\n\tmissionId\030\002 \001(\005\"1\n\034" + + "MissingRoomAccelerateRequest\022\021\n\tmissionI" + + "d\030\001 \001(\005\"\037\n\020SexChangeRequest\022\013\n\003sex\030\001 \001(\005" + + "\"\023\n\021SexChangeResponse\"K\n\023PrivilegeIndica" + + "tion\0224\n\005infos\030\001 \003(\0132%.com.ljsd.jieling.p", + "rotocols.Privilege\"@\n\033TreasureRefreshTim" + + "eResponse\022\017\n\007dayTime\030\001 \001(\005\022\020\n\010weekTime\030\002" + + " \001(\005\"T\n\023MonthCardIndication\022=\n\nmonthinfo" + + "s\030\001 \003(\0132).com.ljsd.jieling.protocols.Mon" + + "thCardInfo\"#\n\023TakeMothDilyRequest\022\014\n\004typ" + + "e\030\001 \001(\005\"F\n\024TakeMothDilyResponse\022.\n\004drop\030" + + "\001 \001(\0132 .com.ljsd.jieling.protocols.Drop\"" + + "1\n\025DailyChallengeRequest\022\n\n\002id\030\001 \001(\005\022\014\n\004" + + "type\030\002 \001(\005\"\202\001\n\026DailyChallengeResponse\022.\n" + + "\004drop\030\001 \001(\0132 .com.ljsd.jieling.protocols", + ".Drop\0228\n\tfightData\030\002 \001(\0132%.com.ljsd.jiel" + + "ing.protocols.FightData\"(\n\032GetSomeActivi" + + "tyInfoRequest\022\n\n\002id\030\001 \003(\005\"\\\n\032GetSomeActi" + + "tityInfoRespone\022>\n\014activityInfo\030\001 \003(\0132(." + + "com.ljsd.jieling.protocols.ActivityInfo\"" + + ";\n\021JewelBuildRequest\022\n\n\002id\030\001 \001(\t\022\014\n\004type" + + "\030\002 \001(\005\022\014\n\004item\030\003 \003(\tB\002H\001" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -101875,7 +102198,7 @@ public final class PlayerInfoProto { internal_static_com_ljsd_jieling_protocols_FivePlayerUpdateIndication_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FivePlayerUpdateIndication_descriptor, - new java.lang.String[] { "HadTakeDailyBox", "Privilege", "ActivityInfo", "UserMissionInfo", "FiveResetTowerInfo", "SignInInfo", "PlayerBindPhone", "PosInfos", "PosInfosAdvance", "MonthDailyTake", }); + new java.lang.String[] { "HadTakeDailyBox", "Privilege", "ActivityInfo", "UserMissionInfo", "FiveResetTowerInfo", "SignInInfo", "PlayerBindPhone", "PosInfos", "PosInfosAdvance", "MonthDailyTake", "LastFeteType", "TakeFeteReward", }); internal_static_com_ljsd_jieling_protocols_GetMissionResponse_descriptor = getDescriptor().getMessageTypes().get(70); internal_static_com_ljsd_jieling_protocols_GetMissionResponse_fieldAccessorTable = new diff --git a/common/src/main/java/com/ljsd/common/mogodb/test/TestMongo.java b/common/src/main/java/com/ljsd/common/mogodb/test/TestMongo.java index ff15f0f7e..11c6fd302 100644 --- a/common/src/main/java/com/ljsd/common/mogodb/test/TestMongo.java +++ b/common/src/main/java/com/ljsd/common/mogodb/test/TestMongo.java @@ -1,20 +1,23 @@ package com.ljsd.common.mogodb.test; import com.ljsd.common.mogodb.LjsdMongoTemplate; +import com.ljsd.common.mogodb.MongoRootConverter; import com.ljsd.common.mogodb.test.pojo.BaseInfoForTest; import com.ljsd.common.mogodb.test.pojo.CardTestInfo; import com.ljsd.common.mogodb.test.pojo.PlayerForTest; import com.mongodb.MongoClientURI; +import org.springframework.core.convert.converter.Converter; import org.springframework.data.mongodb.core.MongoTemplate; import org.springframework.data.mongodb.core.SimpleMongoDbFactory; +import org.springframework.data.mongodb.core.convert.CustomConversions; import org.springframework.data.mongodb.core.convert.DefaultDbRefResolver; import org.springframework.data.mongodb.core.convert.DefaultMongoTypeMapper; import org.springframework.data.mongodb.core.convert.MappingMongoConverter; import org.springframework.data.mongodb.core.mapping.MongoMappingContext; -import org.springframework.data.mongodb.core.query.Criteria; -import org.springframework.data.mongodb.core.query.Query; import java.net.UnknownHostException; +import java.util.ArrayList; +import java.util.List; public class TestMongo { private static LjsdMongoTemplate ljsdMongoTemplate; @@ -22,7 +25,9 @@ public class TestMongo { public static void main(String[] args) { try { ljsdMongoTemplate = getLjsdMongoTemplate(); - + save(); + PlayerForTest one = findOne(); + System.out.println(one); } catch (UnknownHostException e) { e.printStackTrace(); @@ -56,20 +61,19 @@ public class TestMongo { } public static LjsdMongoTemplate getLjsdMongoTemplate() throws UnknownHostException { - SimpleMongoDbFactory simpleMongoDbFactory = new SimpleMongoDbFactory(new MongoClientURI("mongodb://60.1.1.14:27017/ysj_20215999999")); + SimpleMongoDbFactory simpleMongoDbFactory = new SimpleMongoDbFactory(new MongoClientURI("mongodb://60.1.1.14:27017/test_10215")); DefaultDbRefResolver dbRefResolver = new DefaultDbRefResolver(simpleMongoDbFactory); MappingMongoConverter converter = new MappingMongoConverter(dbRefResolver, new MongoMappingContext()); converter.setTypeMapper(new DefaultMongoTypeMapper(null)); - // MongoTemplate mongoTemplate = new MongoTemplate(simpleMongoDbFactory, converter); - /* MappingMongoConverter mongoMapping = (MappingMongoConverter) mongoTemplate.getConverter(); - mongoMapping.setCustomConversions(customConversions()); // tell mongodb to use the custom converters - mongoMapping.afterPropertiesSet();*/ - return new LjsdMongoTemplate(new MongoTemplate(simpleMongoDbFactory, converter)); + // converter.setCustomConversions(customConversions()); + converter.afterPropertiesSet(); + MongoTemplate mongoTemplate = new MongoTemplate(simpleMongoDbFactory, converter); + return new LjsdMongoTemplate(mongoTemplate); } - /* private static CustomConversions customConversions() { + private static CustomConversions customConversions() { List> converterList = new ArrayList>(); converterList.add(new MongoRootConverter()); return new CustomConversions(converterList); - }*/ + } } diff --git a/common/src/main/java/com/ljsd/common/mogodb/test/pojo/PlayerForTest.java b/common/src/main/java/com/ljsd/common/mogodb/test/pojo/PlayerForTest.java index cb2caa7d2..3146897da 100644 --- a/common/src/main/java/com/ljsd/common/mogodb/test/pojo/PlayerForTest.java +++ b/common/src/main/java/com/ljsd/common/mogodb/test/pojo/PlayerForTest.java @@ -6,7 +6,7 @@ import com.ljsd.common.mogodb.MongoRoot; import java.util.Map; public class PlayerForTest extends MongoRoot { - public final static String _COLLECTION_NAME = "play_test"; + public final static String _COLLECTION_NAME = "playerForTest"; private BaseInfoForTest baseInfoForTest; public PlayerForTest(int playerId,BaseInfoForTest baseInfoForTest){ @@ -15,10 +15,9 @@ public class PlayerForTest extends MongoRoot { baseInfoForTest.init(playerId,"baseInfoForTest"); } -// public PlayerForTest(){ -// this.baseInfoForTest = new BaseInfoForTest(); -// baseInfoForTest.init(this,"baseInfoForTest",false); -// } + public PlayerForTest(){ + + } public BaseInfoForTest getBaseInfoForTest() { diff --git a/conf/BattleMain.lua b/conf/BattleMain.lua index 1ea152578..f9090dc92 100644 --- a/conf/BattleMain.lua +++ b/conf/BattleMain.lua @@ -28,6 +28,7 @@ local _BattleErrorCache = {} local _BattleErrorIndex = 0 local _seed local _type +local _maxRound local _fightData local _optionData @@ -199,9 +200,9 @@ local function AddRecord(fightData) end end function BattleMain.Execute(args, fightData, optionData) - print("trfghjdfgucvhbjnfdcgvj") _seed = args.seed _type = args.type + _maxRound = args.maxRound _fightData = fightData _optionData = optionData or {} @@ -212,7 +213,7 @@ function BattleMain.Execute(args, fightData, optionData) local errorCache if xpcall(function () Random.SetSeed(args.seed) - BattleLogic.Init(fightData, optionData) + BattleLogic.Init(fightData, optionData, _maxRound) BattleLogic.Type = _type if _type == 9 or _type == 10 then AddRecord(fightData) @@ -228,12 +229,12 @@ function BattleMain.Execute(args, fightData, optionData) end) then local resultList = {} if BattleLogic.Result == 1 then --胜利记录我方剩余血量 - local arr = BattleLogic.Query(function (r) return r.camp == 0 end, true) + local arr = RoleManager.Query(function (r) return r.camp == 0 end, true) for i=1, #arr do resultList[i] = arr[i]:GetRoleData(RoleDataName.Hp) end elseif BattleLogic.Result == 0 then --失败记录敌方剩余血量 - local arr = BattleLogic.Query(function (r) return r.camp == 1 end, true) + local arr = RoleManager.Query(function (r) return r.camp == 1 end, true) for i=1, #arr do resultList[i] = arr[i]:GetRoleData(RoleDataName.Hp) end @@ -249,7 +250,7 @@ function BattleMain.Execute(args, fightData, optionData) -- print("hp:"..resultList[i]) --end --print("最终运行帧数:"..BattleLogic.CurFrame()) - local curRound, maxRound = BattleLogic.GetCurRound() + local curRound, maxRound = BattleLogic.GetCurRound() if curRound > maxRound and _type == 9 then local playerDamage=0 local enemyDamage=0 @@ -265,7 +266,7 @@ function BattleMain.Execute(args, fightData, optionData) resultList.result = BattleLogic.Result end - if _type == 10 then + if _type == 10 or _type == 11 then -- 公会boss和车迟斗法boss返回伤害值 local playerDamage=0 for k,v in pairs(BattleRecord)do if v.camp == 0 then @@ -304,4 +305,5 @@ function BattleMain.Execute(args, fightData, optionData) end return { result = -1 } end + return BattleMain \ No newline at end of file diff --git a/fightmanager/src/main/java/com/ljsd/fight/CheckFight.java b/fightmanager/src/main/java/com/ljsd/fight/CheckFight.java index ccc99b93a..e3b50c852 100644 --- a/fightmanager/src/main/java/com/ljsd/fight/CheckFight.java +++ b/fightmanager/src/main/java/com/ljsd/fight/CheckFight.java @@ -99,6 +99,7 @@ public class CheckFight { args.set("seed",seed); //todo type args.set("type",fightType.getType()); + args.set("maxRound",maxTime); LuaValue result = func.call( args,fightData,optionData); int status = result.get("result").toint(); int duration = result.get("duration").toint(); diff --git a/fightmanager/src/main/java/com/ljsd/fight/FightType.java b/fightmanager/src/main/java/com/ljsd/fight/FightType.java index 72a2b2b51..ab6def3cc 100644 --- a/fightmanager/src/main/java/com/ljsd/fight/FightType.java +++ b/fightmanager/src/main/java/com/ljsd/fight/FightType.java @@ -11,7 +11,12 @@ public enum FightType { MonterFight(8), // 兽潮 TOPFight(9), // 巅峰赛 GuildBossFight(10), // 工会boss - EXPEDITION(11), // 远征 + + + CarBossFight(11), // 车迟斗法挑战boss + CarPersonFight(12), // 车迟斗法抢夺 + + EXPEDITION(13), // 远征 ; diff --git a/luafight/BattleMain.lua b/luafight/BattleMain.lua index 00c87a744..e2ee58921 100644 --- a/luafight/BattleMain.lua +++ b/luafight/BattleMain.lua @@ -29,6 +29,7 @@ local _BattleErrorCache = {} local _BattleErrorIndex = 0 local _seed local _type +local _maxRound local _fightData local _optionData @@ -200,9 +201,9 @@ local function AddRecord(fightData) end end function BattleMain.Execute(args, fightData, optionData) - print("trfghjdfgucvhbjnfdcgvj") _seed = args.seed _type = args.type + _maxRound = args.maxRound _fightData = fightData _optionData = optionData or {} @@ -213,7 +214,7 @@ function BattleMain.Execute(args, fightData, optionData) local errorCache if xpcall(function () Random.SetSeed(args.seed) - BattleLogic.Init(fightData, optionData) + BattleLogic.Init(fightData, optionData, _maxRound) BattleLogic.Type = _type if _type == 9 or _type == 10 then AddRecord(fightData) @@ -229,12 +230,12 @@ function BattleMain.Execute(args, fightData, optionData) end) then local resultList = {} if BattleLogic.Result == 1 then --胜利记录我方剩余血量 - local arr = BattleLogic.Query(function (r) return r.camp == 0 end, true) + local arr = RoleManager.Query(function (r) return r.camp == 0 end, true) for i=1, #arr do resultList[i] = arr[i]:GetRoleData(RoleDataName.Hp) end elseif BattleLogic.Result == 0 then --失败记录敌方剩余血量 - local arr = BattleLogic.Query(function (r) return r.camp == 1 end, true) + local arr = RoleManager.Query(function (r) return r.camp == 1 end, true) for i=1, #arr do resultList[i] = arr[i]:GetRoleData(RoleDataName.Hp) end @@ -250,7 +251,7 @@ function BattleMain.Execute(args, fightData, optionData) -- print("hp:"..resultList[i]) --end --print("最终运行帧数:"..BattleLogic.CurFrame()) - local curRound, maxRound = BattleLogic.GetCurRound() + local curRound, maxRound = BattleLogic.GetCurRound() if curRound > maxRound and _type == 9 then local playerDamage=0 local enemyDamage=0 @@ -266,7 +267,7 @@ function BattleMain.Execute(args, fightData, optionData) resultList.result = BattleLogic.Result end - if _type == 10 then + if _type == 10 or _type == 11 then -- 公会boss和车迟斗法boss返回伤害值 local playerDamage=0 for k,v in pairs(BattleRecord)do if v.camp == 0 then @@ -305,4 +306,5 @@ function BattleMain.Execute(args, fightData, optionData) end return { result = -1 } end + return BattleMain \ No newline at end of file diff --git a/luafight/LogError/test.json b/luafight/LogError/test.json deleted file mode 100644 index e69de29bb..000000000 diff --git a/serverlogic/src/main/java/com/ljsd/DbClear.java b/serverlogic/src/main/java/com/ljsd/DbClear.java index 686c13100..3a774a7bd 100644 --- a/serverlogic/src/main/java/com/ljsd/DbClear.java +++ b/serverlogic/src/main/java/com/ljsd/DbClear.java @@ -15,7 +15,7 @@ import java.util.Properties; public class DbClear { public static void main(String[] args) throws IOException { Properties properties = new Properties(); - URL resource = DbClear.class.getClassLoader().getResource("application.properties"); + URL resource = DbClear.class.getClassLoader().getResource( "application.properties"); File file = new File(resource.getFile()); //BufferedInputStream bufferedInputStream = new BufferedInputStream(DbClear.class.getResourceAsStream("application.properties")); System.out.println(file.getAbsolutePath()); diff --git a/serverlogic/src/main/java/com/ljsd/jieling/config/clazzStaticCfg/PlayStaticConfig.java b/serverlogic/src/main/java/com/ljsd/jieling/config/clazzStaticCfg/PlayStaticConfig.java index ebe060160..c86ea261b 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/config/clazzStaticCfg/PlayStaticConfig.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/config/clazzStaticCfg/PlayStaticConfig.java @@ -17,6 +17,7 @@ import java.util.Set; public class PlayStaticConfig extends AbstractClassStaticConfig { private static Map expeditioonRewardBoxMap; + @Override public void registConfigs(Set registConfigs) { registConfigs.add(SExpeditionFloorConfig.class.getAnnotation(Table.class).name()); diff --git a/serverlogic/src/main/java/com/ljsd/jieling/core/FunctionIdEnum.java b/serverlogic/src/main/java/com/ljsd/jieling/core/FunctionIdEnum.java index 77c2a41bd..33a27ccb0 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/core/FunctionIdEnum.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/core/FunctionIdEnum.java @@ -63,6 +63,7 @@ public enum FunctionIdEnum { WorkShopRebuildEquip(104,null,MessageTypeProto.MessageType.WORKSHOP_REBUILD_REQUEST_VALUE), Expedition(64,null), Achieve(65,null), + Car_Delay(73,null), ; private int functionType; diff --git a/serverlogic/src/main/java/com/ljsd/jieling/core/GlobalsDef.java b/serverlogic/src/main/java/com/ljsd/jieling/core/GlobalsDef.java index 8c9ea3c13..f50b188dd 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/core/GlobalsDef.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/core/GlobalsDef.java @@ -88,6 +88,7 @@ public interface GlobalsDef { int ENDLESS_TEAM = 401;//无尽编队 int BLOODY_TEAM =701; //血战队伍 int CHAMPION_ATTACK_TEAM =801; // + int CAR_DELAY_TEAM =901; //车迟斗法 //特权解锁类型 int LEVEL_UNLOCK_PRIVILEGE = 1; diff --git a/serverlogic/src/main/java/com/ljsd/jieling/core/function/CarDelayFunction.java b/serverlogic/src/main/java/com/ljsd/jieling/core/function/CarDelayFunction.java new file mode 100644 index 000000000..aa5d09a27 --- /dev/null +++ b/serverlogic/src/main/java/com/ljsd/jieling/core/function/CarDelayFunction.java @@ -0,0 +1,16 @@ +package com.ljsd.jieling.core.function; + +import com.ljsd.jieling.core.FunctionManager; +import com.ljsd.jieling.logic.dao.TimeControllerOfFunction; + +public class CarDelayFunction implements FunctionManager { + @Override + public void startAction(TimeControllerOfFunction timeControllerOfFunction) throws Exception { + + } + + @Override + public void closeAction() throws Exception { + + } +} diff --git a/serverlogic/src/main/java/com/ljsd/jieling/db/redis/RedisKey.java b/serverlogic/src/main/java/com/ljsd/jieling/db/redis/RedisKey.java index cc6675c94..843f62b02 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/db/redis/RedisKey.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/db/redis/RedisKey.java @@ -137,6 +137,8 @@ public class RedisKey { public static final String GUILD_RED_PACKAGE_RANK = "GUILD_RED_PACKAGE_RANK"; + public static final String CAR_DEALY_RANK = "CAR_DEALY_RANK"; + public static final String FAMILY_ID = "FAMILY_ID"; public static final String FAMILY_JOIN = "FAMILY_JOIN"; diff --git a/serverlogic/src/main/java/com/ljsd/jieling/handler/FastChallengeHandler.java b/serverlogic/src/main/java/com/ljsd/jieling/handler/FastChallengeHandler.java new file mode 100644 index 000000000..7286f6067 --- /dev/null +++ b/serverlogic/src/main/java/com/ljsd/jieling/handler/FastChallengeHandler.java @@ -0,0 +1,92 @@ +package com.ljsd.jieling.handler; + +import com.ljsd.jieling.core.GlobalsDef; +import com.ljsd.jieling.db.redis.RedisUtil; +import com.ljsd.jieling.exception.ErrorCode; +import com.ljsd.jieling.exception.ErrorCodeException; +import com.ljsd.jieling.logic.dao.TeamPosHeroInfo; +import com.ljsd.jieling.logic.dao.UserManager; +import com.ljsd.jieling.logic.dao.root.User; +import com.ljsd.jieling.logic.family.GuildFightLogic; +import com.ljsd.jieling.logic.fight.FightDispatcher; +import com.ljsd.jieling.logic.fight.GameFightType; +import com.ljsd.jieling.logic.fight.PVPFightEvent; +import com.ljsd.jieling.logic.fight.result.FightResult; +import com.ljsd.jieling.logic.player.PlayerLogic; +import com.ljsd.jieling.logic.rank.RankEnum; +import com.ljsd.jieling.network.session.ISession; +import com.ljsd.jieling.protocols.FightInfoProto; +import com.ljsd.jieling.protocols.MessageTypeProto; +import com.ljsd.jieling.util.MessageUtil; +import config.SWorldBossConfig; +import config.SWorldBossSetting; +import manager.STableManager; + +import java.util.List; + +public class FastChallengeHandler extends BaseHandler{ + @Override + public MessageTypeProto.MessageType getMessageCode() { + return MessageTypeProto.MessageType.FAST_FIGHT_CHALLENGE_REQUEST; + } + + @Override + public void processWithProto(ISession iSession, FightInfoProto.FastFightChallengeRequest proto) throws Exception { + int type = proto.getType(); + int uid = iSession.getUid(); + User user = UserManager.getUser(uid); + SWorldBossSetting sWorldBossSetting = STableManager.getConfig(SWorldBossSetting.class).get(1); + if(type == 1 || type == 2){ + if(GuildFightLogic.carDelayProgressIndication.getProgress()!=type){ + throw new ErrorCodeException(ErrorCode.SERVER_DEFINE); + } + if(user.getPlayerInfoManager().getGuildId() == 0){ + throw new ErrorCodeException(ErrorCode.FAMILY_NO); + } + List teamPosHeroInfos = user.getTeamPosManager().getTeamPosForHero().get(GlobalsDef.CAR_DELAY_TEAM); + + if(teamPosHeroInfos == null || teamPosHeroInfos.isEmpty()){ + throw new ErrorCodeException(ErrorCode.SERVER_DEFINE); + } + int privilege = sWorldBossSetting.getPrivilege()[type - 1]; + boolean b = PlayerLogic.getInstance().checkAndUpdate(user, privilege, 1); + if(!b){ + throw new ErrorCodeException(ErrorCode.SERVER_DEFINE); + } + } + int hurt = 0; + int gainScore = 0; + int challeageId = proto.getChalleageId(); + int battleRound = sWorldBossSetting.getBattleRound(); + switch (type){ + case 1:{ + int monsterId = STableManager.getConfig(SWorldBossConfig.class).get(GuildFightLogic.carDelayProgressIndication.getBossIndexId()).getMonsterId(); + PVPFightEvent pvpFightEvent = new PVPFightEvent(uid,GlobalsDef.CAR_DELAY_TEAM, battleRound,"", GameFightType.CarBossChallenge,monsterId,3); + FightResult fightResult = FightDispatcher.dispatcher(pvpFightEvent); + hurt = fightResult.getCheckResult()[1]; + gainScore = (int) (hurt*(sWorldBossSetting.getScorePercent()/10000F)); + RankEnum.toRank(RankEnum.CAR_DEALY_RANK.getType()).incrementRankScore(uid,"",gainScore); + + }break; + case 2:{ + PVPFightEvent pvpFightEvent = new PVPFightEvent(uid,GlobalsDef.CAR_DELAY_TEAM, battleRound,"", GameFightType.CarPersonChallenge,challeageId,GlobalsDef.CAR_DELAY_TEAM); + FightResult fightResult = FightDispatcher.dispatcher(pvpFightEvent); + int fight = fightResult.getCheckResult()[0]; + if(fight == 1){ + int challenegScore = RedisUtil.getInstence().getZSetScore(RankEnum.CAR_DEALY_RANK.getRedisKey(), "", String.valueOf(challeageId)).intValue(); + if(challenegScore !=-1){ + gainScore = (int) (challenegScore*(sWorldBossSetting.getGrabPercent()/10000F)); + RankEnum.toRank(RankEnum.CAR_DEALY_RANK.getType()).incrementRankScore(uid,"",gainScore); + RankEnum.toRank(RankEnum.CAR_DEALY_RANK.getType()).incrementRankScore(challeageId,"",-gainScore); + } + } + + }break; + default: + throw new ErrorCodeException(ErrorCode.SERVER_DEFINE); + + } + FightInfoProto.FastFightChallengeResponse build = FightInfoProto.FastFightChallengeResponse.newBuilder().setHurt(hurt).setScore(gainScore).build(); + MessageUtil.sendMessage(iSession,1, MessageTypeProto.MessageType.FAST_FIGHT_CHALLENGE_RESPONSE_VALUE,build,true); + } +} diff --git a/serverlogic/src/main/java/com/ljsd/jieling/handler/family/GetCarChallengeListHandler.java b/serverlogic/src/main/java/com/ljsd/jieling/handler/family/GetCarChallengeListHandler.java new file mode 100644 index 000000000..2c6da1e3b --- /dev/null +++ b/serverlogic/src/main/java/com/ljsd/jieling/handler/family/GetCarChallengeListHandler.java @@ -0,0 +1,76 @@ +package com.ljsd.jieling.handler.family; + +import com.ljsd.jieling.db.redis.RedisKey; +import com.ljsd.jieling.db.redis.RedisUtil; +import com.ljsd.jieling.exception.ErrorCode; +import com.ljsd.jieling.exception.ErrorCodeException; +import com.ljsd.jieling.handler.BaseHandler; +import com.ljsd.jieling.logic.dao.GuilidManager; +import com.ljsd.jieling.logic.dao.UserManager; +import com.ljsd.jieling.logic.dao.root.GuildCache; +import com.ljsd.jieling.logic.dao.root.GuildInfo; +import com.ljsd.jieling.logic.dao.root.User; +import com.ljsd.jieling.logic.rank.RankEnum; +import com.ljsd.jieling.netty.cocdex.PacketNetData; +import com.ljsd.jieling.network.session.ISession; +import com.ljsd.jieling.protocols.MessageTypeProto; +import config.SWorldBossSetting; +import manager.STableManager; +import org.springframework.data.redis.core.ZSetOperations; + +import java.util.HashSet; +import java.util.LinkedHashSet; +import java.util.Set; + +public class GetCarChallengeListHandler extends BaseHandler { + @Override + public MessageTypeProto.MessageType getMessageCode() { + return MessageTypeProto.MessageType.GET_CAR_CHALLENEG_LIST_REQUEST; + } + + @Override + public void process(ISession iSession, PacketNetData netData) throws Exception { + int uid = iSession.getUid(); + User user = UserManager.getUser(uid); + int guildId = user.getPlayerInfoManager().getGuildId(); + if(guildId == 0){ + throw new ErrorCodeException(ErrorCode.SERVER_SELF_DEFINE); + } + Long myRank = RedisUtil.getInstence().getZSetreverseRank(RedisKey.CAR_DEALY_RANK, "", String.valueOf(uid)); + int[] matchSection = STableManager.getConfig(SWorldBossSetting.class).get(1).getMatchSection(); + int matchNums = matchSection[0] + matchSection[1]; + Set> infos = new LinkedHashSet<>(matchNums); + GuildInfo guildInfo = GuilidManager.guildInfoMap.get(guildId); + Set members = new HashSet<>(); + guildInfo.getMembers().values().forEach(integers ->members.addAll(integers)); + String key = RedisUtil.getInstence().getKey(RedisKey.CAR_DEALY_RANK, ""); + int zsetSize = RedisUtil.getInstence().getZsetSize(key); + if(myRank == -1){ + int start = zsetSize - matchNums; + int end=-1; + while (start>=0 && infos.size()> zsetreverseRangeWithScores = RedisUtil.getInstence().getZsetreverseRangeWithScores(RedisKey.CAR_DEALY_RANK, "", start, end); + for(ZSetOperations.TypedTuple item : zsetreverseRangeWithScores){ + if(!members.contains(Integer.parseInt(item.getValue()))){ + zsetreverseRangeWithScores.add(item); + } + } + end=start; + start-=matchNums; + } + }else{ + //取前面 + /* int start = (int) (myRank - matchSection[0]); + while (start>0 && infos.size()> zsetreverseRangeWithScores = RedisUtil.getInstence().getZsetreverseRangeWithScores(RedisKey.CAR_DEALY_RANK, "", start, end); + zsetreverseRangeWithScores.forEach(item->{ + if(!members.contains(Integer.parseInt(item.getValue()))){ + zsetreverseRangeWithScores.add(item); + } + }); + } + RedisUtil.getInstence().getZsetreverseRangeWithScores(RedisKey.CAR_DEALY_RANK, "", myRank - matchSection[0], myRank+5);*/ + } + } +} diff --git a/serverlogic/src/main/java/com/ljsd/jieling/logic/family/GuildFightLogic.java b/serverlogic/src/main/java/com/ljsd/jieling/logic/family/GuildFightLogic.java index 7d46d3f56..4d7cd06cc 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/logic/family/GuildFightLogic.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/logic/family/GuildFightLogic.java @@ -1,7 +1,10 @@ package com.ljsd.jieling.logic.family; +import com.googlecode.protobuf.format.JsonFormat; import com.ljsd.GameApplication; import com.ljsd.fight.FightType; +import com.ljsd.jieling.config.clazzStaticCfg.CommonStaticConfig; +import com.ljsd.jieling.core.FunctionIdEnum; import com.ljsd.jieling.core.GlobalsDef; import com.ljsd.jieling.core.VipPrivilegeType; import com.ljsd.jieling.db.mongo.MongoUtil; @@ -15,6 +18,8 @@ import com.ljsd.jieling.handler.map.behavior.BehaviorUtil; import com.ljsd.jieling.ktbeans.KTGameType; import com.ljsd.jieling.ktbeans.KtEventUtils; import com.ljsd.jieling.ktbeans.parmsBean.ParamEventBean; +import com.ljsd.jieling.logic.GlobalDataManaager; +import com.ljsd.jieling.logic.OnlineUserManager; import com.ljsd.jieling.logic.blood.BloodLogic; import com.ljsd.jieling.logic.dao.*; import com.ljsd.jieling.logic.dao.root.GuildCache; @@ -30,10 +35,7 @@ import com.ljsd.jieling.logic.player.PlayerLogic; import com.ljsd.jieling.logic.rank.RankEnum; import com.ljsd.jieling.logic.rank.rankImpl.GuildBossRank; import com.ljsd.jieling.network.session.ISession; -import com.ljsd.jieling.protocols.CommonProto; -import com.ljsd.jieling.protocols.Family; -import com.ljsd.jieling.protocols.FightInfoProto; -import com.ljsd.jieling.protocols.MessageTypeProto; +import com.ljsd.jieling.protocols.*; import com.ljsd.jieling.thread.ThreadManager; import com.ljsd.jieling.thread.task.GuildFightMatchingTask; import com.ljsd.jieling.util.*; @@ -1216,4 +1218,100 @@ public class GuildFightLogic { public static SGuildBossConfig getCurSGuildBossConfig() { return curSGuildBossConfig; } + + + + + //车迟玩法 + + private static int carProgress=-2 ; + public static Family.CarDelayProgressIndication carDelayProgressIndication; + + public static void minuteCheckForCarFight() throws Exception { + TimeControllerOfFunction timeControllerOfFunction = GlobalDataManaager.getInstance().getTimeControllerOfFunctionByFunctinoType(FunctionIdEnum.Car_Delay); + if (null == timeControllerOfFunction) { + carProgress = -1; + carDelayProgressIndication= Family.CarDelayProgressIndication.newBuilder().setProgress(carProgress).build(); + return; + } + int times = timeControllerOfFunction.getTimes(); + long startTime = timeControllerOfFunction.getStartTime(); + + int size = STableManager.getConfig(SWorldBossConfig.class).size(); + int id = times%size; + if(id == 0){ + id = size; + } + Calendar calendar = Calendar.getInstance(); + SWorldBossSetting sWorldBossSetting = STableManager.getConfig(SWorldBossSetting.class).get(1); + int[][] battleTime = sWorldBossSetting.getBattleTime(); + int[][] grabTime = sWorldBossSetting.getGrabTime(); + int hour = calendar.get(Calendar.HOUR_OF_DAY); + int minute = calendar.get(Calendar.MINUTE); + int endTime = 0; + int carProgressTmp =carProgress; + int sourceCompare = hour*100 + minute; + int battleCompareStart =battleTime[0][0]*100 + battleTime[0][1]; + int battleCompaeEnd =battleTime[1][0]*100 + battleTime[1][1]; + + int grapCompareStart =grabTime[0][0]*100 + grabTime[0][1]; + int grapCompaeEnd =grabTime[1][0]*100 + grabTime[1][1]; + if(sourceCompare>=battleCompareStart && sourceCompare<=battleCompaeEnd){ + if(carProgressTmp == 1){ + return; + } + carProgressTmp = 1; + calendar.set(calendar.HOUR_OF_DAY,battleTime[1][0]); + calendar.set(calendar.MINUTE,battleTime[1][1]); + calendar.set(calendar.SECOND,0); + endTime = (int)(calendar.getTimeInMillis()/1000); + + }else if(sourceCompare>=grapCompareStart && sourceCompare<=grapCompaeEnd){ + if(carProgressTmp == 2){ + return; + } + carProgressTmp = 2; + calendar.set(calendar.HOUR_OF_DAY,grabTime[1][0]); + calendar.set(calendar.MINUTE,grabTime[1][1]); + calendar.set(calendar.SECOND,0); + endTime = (int)(calendar.getTimeInMillis()/1000); + + }else{ + carProgressTmp = -1; + } + if(carProgressTmp!=carProgress){ + int battleStartTime = 0; + int grapStartTime = 0; + Calendar instance = Calendar.getInstance(); + instance.setTimeInMillis(startTime); + calendar.set(calendar.HOUR_OF_DAY,grabTime[0][0]); + calendar.set(calendar.MINUTE,grabTime[0][1]); + calendar.set(calendar.SECOND,0); + grapStartTime = (int)(calendar.getTimeInMillis()/1000); + + + calendar.set(calendar.HOUR_OF_DAY,battleTime[0][0]); + calendar.set(calendar.MINUTE,battleTime[0][1]); + calendar.set(calendar.SECOND,0); + + battleStartTime = (int)(calendar.getTimeInMillis()/1000); + + carProgress = carProgressTmp; + carDelayProgressIndication= Family.CarDelayProgressIndication.newBuilder().setBossIndexId(id).setProgress(carProgress).setEndTime(endTime). + setBattleStartTime(battleStartTime).setGrabStartTime(grapStartTime). + build(); + sendAllProgressUpdate(); + System.out.println(JsonFormat.printToString(carDelayProgressIndication)); + } + + } + + public static void sendAllProgressUpdate(){ + //向全服玩家广播进度变更信息 + for(ISession session : OnlineUserManager.sessionMap.values()){ + MessageUtil.sendIndicationMessage(session,1, MessageTypeProto.MessageType.CAR_DELAY_PROGRESS_INDICATION_VALUE,carDelayProgressIndication,true); + } + } + + } diff --git a/serverlogic/src/main/java/com/ljsd/jieling/logic/family/GuildLogic.java b/serverlogic/src/main/java/com/ljsd/jieling/logic/family/GuildLogic.java index 221b51d36..7c36e67d3 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/logic/family/GuildLogic.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/logic/family/GuildLogic.java @@ -71,6 +71,7 @@ public class GuildLogic { builder.addFamilyWalkIndicaiton(CBean2Proto.getFamilyWalkIndicaiton(userMember)); } } + builder.setCarDelayProgressIndication(GuildFightLogic.carDelayProgressIndication); MessageUtil.sendMessage(session,1,msgId,builder.build(),true); } diff --git a/serverlogic/src/main/java/com/ljsd/jieling/logic/fight/GameFightType.java b/serverlogic/src/main/java/com/ljsd/jieling/logic/fight/GameFightType.java index 231169072..b7a544d10 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/logic/fight/GameFightType.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/logic/fight/GameFightType.java @@ -41,7 +41,10 @@ public enum GameFightType { GuildFight(FightType.GuildFight,new PVPFightHandler(),null), GuildBossFight(FightType.GuildBossFight,new DefaultOfRedisCacheFightHandler(),RedisKey.GUILD_MONSTER_FIGHT), - DailyChallenge(FightType.StoryFight,new DefaultWithoutHandFightHandler(),null) + DailyChallenge(FightType.StoryFight,new DefaultWithoutHandFightHandler(),null), + + CarBossChallenge(FightType.StoryFight,new DefaultWithoutHandFightHandler(),null), + CarPersonChallenge(FightType.StoryFight,new DefaultWithoutHandFightHandler(),null), ; diff --git a/serverlogic/src/main/java/com/ljsd/jieling/logic/mission/MissionLoigc.java b/serverlogic/src/main/java/com/ljsd/jieling/logic/mission/MissionLoigc.java index 849ad25d1..6bed8198f 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/logic/mission/MissionLoigc.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/logic/mission/MissionLoigc.java @@ -33,6 +33,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.*; +import java.util.stream.Collectors; public class MissionLoigc { private static final Logger LOGGER = LoggerFactory.getLogger(MissionLoigc.class); @@ -733,6 +734,9 @@ public class MissionLoigc { count = cumulationData.rechargeTotal; break; case FINISH_MISSING_ROOM: + if(missionSubType[0] == 0){ + cumulationData.finishMissionTimes.values().stream().collect(Collectors.summarizingInt(x->x)); + } count = cumulationData.finishMissionTimes.get(missionSubType[0]); break; case REFRESH_MISSING_ROOM: diff --git a/serverlogic/src/main/java/com/ljsd/jieling/logic/rank/RankEnum.java b/serverlogic/src/main/java/com/ljsd/jieling/logic/rank/RankEnum.java index 6c6f00a0c..c3d36ef3e 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/logic/rank/RankEnum.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/logic/rank/RankEnum.java @@ -22,6 +22,7 @@ public enum RankEnum { RANDOM_CARD_PERFECT_RANK(11,RedisKey.RANDOM_CARD_PERFECT_RANK,RandomCardPerfectRank::new),//param1:时间 param2:英雄tempId param3:uid GUILD_BOSS_RANK(12,RedisKey.GUILD_BOSS_RANK,GuildBossRank::new),//param1:时间 param2:英雄tempId param3:uid GUILD_RED_PACKAGE_RANK(13,RedisKey.GUILD_RED_PACKAGE_RANK,GuildRedPackageRank::new),//param1:红包总价格 param2:无 param3:无 + CAR_DEALY_RANK(14,RedisKey.CAR_DEALY_RANK,CarDealyRank::new),//param1:伤害 param2:无 param3:无 ; private int type; diff --git a/serverlogic/src/main/java/com/ljsd/jieling/logic/rank/rankImpl/AbstractRank.java b/serverlogic/src/main/java/com/ljsd/jieling/logic/rank/rankImpl/AbstractRank.java index 42e5e92a1..3e63f3020 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/logic/rank/rankImpl/AbstractRank.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/logic/rank/rankImpl/AbstractRank.java @@ -63,6 +63,18 @@ public abstract class AbstractRank implements IRank { String key = RedisKey.getKey(redisKey,rkey,false); RedisUtil.getInstence().zsetAddOne(key,String.valueOf(uid), getScore(data)); } + + /** + * 向排行榜增减分数 + * @param uid + * @param rkey + * @param data + */ + public void incrementRankScore(int uid,String rkey,double... data){ + String key = RedisKey.getKey(redisKey,rkey,false); + RedisUtil.getInstence().zsetAddOne(key,String.valueOf(uid), getScore(data)); + } + public AbstractRank(int type,String redisKey){ this.type = type; this.redisKey = redisKey; diff --git a/serverlogic/src/main/java/com/ljsd/jieling/logic/rank/rankImpl/CarDealyRank.java b/serverlogic/src/main/java/com/ljsd/jieling/logic/rank/rankImpl/CarDealyRank.java new file mode 100644 index 000000000..ae471eca7 --- /dev/null +++ b/serverlogic/src/main/java/com/ljsd/jieling/logic/rank/rankImpl/CarDealyRank.java @@ -0,0 +1,18 @@ +package com.ljsd.jieling.logic.rank.rankImpl; + +public class CarDealyRank extends AbstractRank{ + + public CarDealyRank(int type, String redisKey) { + super(type, redisKey); + } + + @Override + public int[] getDataByScore(Double score) { + return new int[0]; + } + + @Override + public double getScore(double... data) { + return data[0]; + } +} diff --git a/serverlogic/src/main/java/com/ljsd/jieling/thread/task/MinuteTask.java b/serverlogic/src/main/java/com/ljsd/jieling/thread/task/MinuteTask.java index f193a0b93..89730c118 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/thread/task/MinuteTask.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/thread/task/MinuteTask.java @@ -21,7 +21,6 @@ import com.ljsd.jieling.logic.activity.event.HourTaskEvent; import com.ljsd.jieling.logic.activity.event.MinuteTaskEvent; import com.ljsd.jieling.logic.activity.event.Poster; import com.ljsd.jieling.logic.arena.ArenaLogic; -import com.ljsd.jieling.logic.championship.ChampionshipLogic; import com.ljsd.jieling.logic.dao.GuilidManager; import com.ljsd.jieling.logic.dao.root.GuildInfo; import com.ljsd.jieling.logic.family.GuildFightLogic; @@ -78,7 +77,7 @@ public class MinuteTask extends Thread { CoreLogic.getInstance().checkCoreCdk(); BuyGoodsLogic.minuteCheckReharge(); RedisUtil.getInstence().set(RedisKey.ONLINE_NUM+RedisKey.Delimiter_colon+GameApplication.serverId, String.valueOf(OnlineUserManager.sessionMap.entrySet().size())); - + GuildFightLogic.minuteCheckForCarFight(); LOGGER.info("MinuteTask end..."); } catch (Exception e) { LOGGER.error("e",e); diff --git a/tablemanager/src/main/java/config/SWorldBossConfig.java b/tablemanager/src/main/java/config/SWorldBossConfig.java new file mode 100644 index 000000000..4af9bfaec --- /dev/null +++ b/tablemanager/src/main/java/config/SWorldBossConfig.java @@ -0,0 +1,31 @@ +package config; + +import manager.STableManager; +import manager.Table; + +import java.util.Map; + +@Table(name ="WorldBossConfig") +public class SWorldBossConfig implements BaseConfig { + + private int id; + + private int monsterId; + + + @Override + public void init() throws Exception { + + } + + + public int getId() { + return id; + } + + public int getMonsterId() { + return monsterId; + } + + +} \ No newline at end of file diff --git a/tablemanager/src/main/java/config/SWorldBossRewardConfig.java b/tablemanager/src/main/java/config/SWorldBossRewardConfig.java new file mode 100644 index 000000000..f1a096723 --- /dev/null +++ b/tablemanager/src/main/java/config/SWorldBossRewardConfig.java @@ -0,0 +1,37 @@ +package config; + +import manager.STableManager; +import manager.Table; + +import java.util.Map; + +@Table(name ="WorldBossRewardConfig") +public class SWorldBossRewardConfig implements BaseConfig { + + private int id; + + private int[] section; + + private int[][] reward; + + + @Override + public void init() throws Exception { + + } + + + public int getId() { + return id; + } + + public int[] getSection() { + return section; + } + + public int[][] getReward() { + return reward; + } + + +} \ No newline at end of file diff --git a/tablemanager/src/main/java/config/SWorldBossSetting.java b/tablemanager/src/main/java/config/SWorldBossSetting.java new file mode 100644 index 000000000..5485a24f1 --- /dev/null +++ b/tablemanager/src/main/java/config/SWorldBossSetting.java @@ -0,0 +1,65 @@ +package config; + +import manager.STableManager; +import manager.Table; + +import java.util.Map; + +@Table(name ="WorldBossSetting") +public class SWorldBossSetting implements BaseConfig { + + private int id; + + private int[][] battleTime; + + private int[][] grabTime; + + private int[] matchSection; + + private int[] privilege; + + private int scorePercent; + + private int grabPercent; + + private int battleRound; + + + @Override + public void init() throws Exception { + + } + + + public int getid() { + return id; + } + + public int[][] getBattleTime() { + return battleTime; + } + + public int[][] getGrabTime() { + return grabTime; + } + + public int[] getMatchSection() { + return matchSection; + } + + public int[] getPrivilege() { + return privilege; + } + + public int getScorePercent() { + return scorePercent; + } + + public int getGrabPercent() { + return grabPercent; + } + + public int getBattleRound() { + return battleRound; + } +} \ No newline at end of file diff --git a/test/src/main/java/db/MongoLearn.java b/test/src/main/java/db/MongoLearn.java new file mode 100644 index 000000000..cbde60236 --- /dev/null +++ b/test/src/main/java/db/MongoLearn.java @@ -0,0 +1,30 @@ +package db; + +import com.ljsd.jieling.logic.dao.root.User; +import com.mongodb.MongoClientURI; +import org.springframework.data.mongodb.core.MongoTemplate; +import org.springframework.data.mongodb.core.SimpleMongoDbFactory; +import org.springframework.data.mongodb.core.convert.DefaultDbRefResolver; +import org.springframework.data.mongodb.core.convert.DefaultMongoTypeMapper; +import org.springframework.data.mongodb.core.convert.MappingMongoConverter; +import org.springframework.data.mongodb.core.mapping.MongoMappingContext; +import org.springframework.data.mongodb.core.query.Query; + +import java.net.UnknownHostException; +import java.util.List; + +public class MongoLearn { + public static void main(String[] args) throws UnknownHostException { + SimpleMongoDbFactory simpleMongoDbFactory = new SimpleMongoDbFactory(new MongoClientURI( "mongodb://60.1.1.14:27017/jieling_20215")); + DefaultDbRefResolver dbRefResolver = new DefaultDbRefResolver(simpleMongoDbFactory); + MappingMongoConverter converter = new MappingMongoConverter(dbRefResolver, new MongoMappingContext()); + converter.setTypeMapper(new DefaultMongoTypeMapper(null)); + MongoTemplate mongoTemplate = new MongoTemplate(simpleMongoDbFactory, converter); + + Query querySize = new Query(); + querySize.fields().include("playerManager.level"); + List userList = mongoTemplate.find(querySize, User.class); + System.out.println(userList.size()); + + } +} diff --git a/test/src/main/java/db/MongoTest.java b/test/src/main/java/db/MongoTest.java index 55f7b51aa..65d897226 100644 --- a/test/src/main/java/db/MongoTest.java +++ b/test/src/main/java/db/MongoTest.java @@ -29,22 +29,388 @@ import org.springframework.data.redis.core.query.QueryUtils; import java.net.URLEncoder; import java.net.UnknownHostException; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.TreeMap; +import java.util.*; +import java.util.function.Supplier; import static org.springframework.data.mongodb.core.aggregation.Aggregation.*; public class MongoTest { public static void main(String[] args) throws UnknownHostException { String encode = URLEncoder.encode("mongodb://rwuser:JkA!6VE@Gj@cMqu@139.9.84.15:8635/test?authSource=admin"); - SimpleMongoDbFactory simpleMongoDbFactory = new SimpleMongoDbFactory(new MongoClientURI( "mongodb://rwuser:JkA!6VE%40Gj%40cMqu@139.9.84.15:8635/jieling_10021?authSource=admin")); + SimpleMongoDbFactory simpleMongoDbFactory = new SimpleMongoDbFactory(new MongoClientURI( "mongodb://rwuser:JkA!6VE%40Gj%40cMqu@139.9.84.15:8635/jieling_10011?authSource=admin")); DefaultDbRefResolver dbRefResolver = new DefaultDbRefResolver(simpleMongoDbFactory); MappingMongoConverter converter = new MappingMongoConverter(dbRefResolver, new MongoMappingContext()); converter.setTypeMapper(new DefaultMongoTypeMapper(null)); MongoTemplate mongoTemplate = new MongoTemplate(simpleMongoDbFactory, converter); - Query querySize = new Query(); + + + Query query = new Query(Criteria.where("playerManager.rechargeInfo.saveAmt").gt(0)); + query.with(new Sort(Sort.Direction.DESC,"playerManager.rechargeInfo.saveAmt")); + query.fields().include("playerManager.rechargeInfo.saveAmt"); + query.fields().include("playerManager.maxForce"); + List users = null; + try { + users =mongoTemplate.find(query, User.class); + } catch (Exception e) { + e.printStackTrace(); + } + Supplier supplier = MongoTest::new; + + String s = + "41#1007046|1579553355|10011|10011|10007648\n" + + "2#1007046|1416865334|10011|10011|10000116\n" + + "2#1007046|1579523423|10011|10011|10007517\n" + + "2#1007046|1580194278|10011|10011|10009016\n" + + "2#1007046|1451373741|10011|10011|10001103\n" + + "41#1007046|1589298208|10011|10011|10007589\n" + + "2#1007046|1591547208|10011|10011|10010143\n" + + "2#1007046|1581274762|10011|10011|10009991\n" + + "41#1007046|1589720244|10011|10011|10008518\n" + + "41#1007046|1590137662|10011|10011|10009159\n" + + "2#1007046|1589627395|10011|10011|10008371\n" + + "2#1007046|1591564969|10011|10011|10010160\n" + + "5#1007046|1430446172|10011|10011|10000399\n" + + "41#1007046|1580433468|10011|10011|10009491\n" + + "41#1007046|1580328796|10011|10011|10009237\n" + + "41#1007046|1579579174|10011|10011|10007748\n" + + "41#1007046|1589336773|10011|10011|10007733\n" + + "2#1007046|1589583413|10011|10011|10008307\n" + + "2#1007046|1589252743|10011|10011|10007392\n" + + "2#1007046|1416862229|10011|10011|10007475\n" + + "2#1007046|1589353791|10011|10011|10007788\n" + + "2#1007046|1472254088|10011|10011|10008170\n" + + "2#1007046|1365586915|10011|10011|10004108\n" + + "41#1007046|1579584041|10011|10011|10007775\n" + + "2#1007046|1452100200|10011|10011|10005064\n" + + "2#1007046|1589261867|10011|10011|10007394\n" + + "41#1007046|1590467348|10011|10011|10009642\n" + + "41#1007046|1588759282|10011|10011|10007385\n" + + "41#1007046|1589324963|10011|10011|10007686\n" + + "41#1007046|1579628472|10011|10011|10007920\n" + + "2#1007046|1591363662|10011|10011|10010249\n" + + "2#1007046|1416978527|10011|10011|10000123\n" + + "2#1007046|1365253611|10011|10011|10000039\n" + + "41#1007046|1591412440|10011|10011|10010076\n" + + "2#1007046|1581647746|10011|10011|10010217\n" + + "41#1007046|1580428472|10011|10011|10009916\n" + + "2#1007046|1589854372|10011|10011|10008739\n" + + "2#1007046|1589281649|10011|10011|10007531\n" + + "2#1007046|1589756197|10011|10011|10008573\n" + + "41#1007046|1581591110|10011|10011|10010184\n" + + "41#1007046|1589711973|10011|10011|10008495\n" + + "2#1007046|1451358170|10011|10011|10001298\n" + + "2#1007046|1579498827|10011|10011|10007405\n" + + "41#1007046|1590039538|10011|10011|10009022\n" + + "41#1007046|1589234131|10011|10011|10007560\n" + + "2#1007046|1592778963|10011|10011|10010402\n" + + "2#1007046|1451606479|10011|10011|10003258\n" + + "41#1007046|1589979672|10011|10011|10008953\n" + + "2#1007046|1590074130|10011|10011|10009071\n" + + "41#1007046|1590002678|10011|10011|10008982\n" + + "41#1007046|1589976549|10011|10011|10008950\n" + + "41#1007046|1589623151|10011|10011|10008367\n" + + "2#1007046|1589759451|10011|10011|10008575\n" + + "2#1007046|1580005765|10011|10011|10008671\n" + + "2#1007046|1581650182|10011|10011|10010219\n" + + "2#1007046|1365405120|10011|10011|10002052\n" + + "2#1007046|1589252868|10011|10011|10007406\n" + + "41#1007046|1590188859|10011|10011|10009244\n" + + "41#1007046|1590186037|10011|10011|10009234\n" + + "41#1007046|1589994621|10011|10011|10008973\n" + + "2#1007046|1591174590|10011|10011|10009952\n" + + "41#1007046|1581218096|10011|10011|10009953\n" + + "2#1007046|1589468625|10011|10011|10008082\n" + + "2#1007046|1581581926|10011|10011|10010180\n" + + "41#1007046|1580040749|10011|10011|10008753\n" + + "2#1007046|1590309698|10011|10011|10009503\n" + + "2#1007046|1581370480|10011|10011|10010039\n" + + "2#1007046|1589782855|10011|10011|10008618\n" + + "2#1007046|1567511638|10011|10011|10007299\n" + + "41#1007046|1589443264|10011|10011|10008019\n" + + "41#1007046|1579612738|10011|10011|10007871\n" + + "2#1007046|1591843416|10011|10011|10010251\n" + + "2#1007046|1589267115|10011|10011|10007458\n" + + "41#1007046|1591589239|10011|10011|10010179\n" + + "41#1007046|1589629798|10011|10011|10008374\n" + + "2#1007046|1591058215|10011|10011|10009888\n" + + "2#1007046|1581259252|10011|10011|10009980\n" + + "2#1007046|1580465427|10011|10011|10009563\n" + + "2#1007046|1579902495|10011|10011|10008480\n" + + "2#1007046|1451593897|10011|10011|10003124\n" + + "41#1007046|1589344797|10011|10011|10007754\n" + + "2#1007046|1589554713|10011|10011|10008264\n" + + "41#1007046|1590102331|10011|10011|10009105\n" + + "41#1007046|1581551488|10011|10011|10010151\n" + + "41#1007046|1579722380|10011|10011|10008163\n" + + "2#1007046|1589740005|10011|10011|10008546\n" + + "2#1007046|1580893218|10011|10011|10009792\n" + + "2#1007046|1579547256|10011|10011|10007616\n" + + "2#1007046|1368175494|10011|10011|10007040\n" + + "41#1007046|1590772554|10011|10011|10009762\n" + + "41#1007046|1589709434|10011|10011|10008493\n" + + "41#1007046|1581567401|10011|10011|10010167\n" + + "41#1007046|1580435300|10011|10011|10009498\n" + + "41#1007046|1580197937|10011|10011|10009026\n" + + "2#1007046|1590573978|10011|10011|10009682\n" + + "2#1007046|1589295579|10011|10011|10007577\n" + + "2#1007046|1580355520|10011|10011|10009315\n" + + "41#1007046|1589843452|10011|10011|10008712\n" + + "2#1007046|1453383702|10011|10011|10006251\n" + + "41#1007046|1589302973|10011|10011|10007603\n" + + "41#1007046|1580867158|10011|10011|10009773\n" + + "41#1007046|1580158668|10011|10011|10008978\n" + + "41#1007046|1579720184|10011|10011|10008155\n" + + "2#1007046|1580014751|10011|10011|10008687\n" + + "2#1007046|1453078161|10011|10011|10006104\n" + + "1#1006856|753048854|10011|10011|10007343\n" + + "41#1007046|1589557777|10011|10011|10008270\n" + + "41#1007046|1579765381|10011|10011|10008252\n" + + "2#1007046|1589446339|10011|10011|10008026\n" + + "41#1007046|1602693005|10011|10011|10010415\n" + + "41#1007046|1592937068|10011|10011|10010444\n" + + "41#1007046|1592799647|10011|10011|10010410\n" + + "41#1007046|1592413160|10011|10011|10010350\n" + + "41#1007046|1592354886|10011|10011|10010341\n" + + "41#1007046|1592110984|10011|10011|10010292\n" + + "41#1007046|1591673405|10011|10011|10010227\n" + + "41#1007046|1591672160|10011|10011|10010224\n" + + "41#1007046|1591649193|10011|10011|10010210\n" + + "41#1007046|1591610415|10011|10011|10010190\n" + + "41#1007046|1591583702|10011|10011|10010174\n" + + "41#1007046|1591575489|10011|10011|10010168\n" + + "41#1007046|1590533454|10011|10011|10009667\n" + + "41#1007046|1590431407|10011|10011|10009622\n" + + "41#1007046|1590372528|10011|10011|10009602\n" + + "41#1007046|1590338937|10011|10011|10009558\n" + + "41#1007046|1590322763|10011|10011|10009533\n" + + "41#1007046|1590318249|10011|10011|10009522\n" + + "41#1007046|1590317716|10011|10011|10009520\n" + + "41#1007046|1590305798|10011|10011|10009494\n" + + "41#1007046|1590300910|10011|10011|10009483\n" + + "41#1007046|1590274742|10011|10011|10009444\n" + + "41#1007046|1590267826|10011|10011|10009431\n" + + "41#1007046|1590263850|10011|10011|10009425\n" + + "41#1007046|1590249516|10011|10011|10009400\n" + + "41#1007046|1590233841|10011|10011|10009364\n" + + "41#1007046|1590218846|10011|10011|10009317\n" + + "41#1007046|1590153307|10011|10011|10009177\n" + + "41#1007046|1590101352|10011|10011|10009106\n" + + "41#1007046|1590080854|10011|10011|10009081\n" + + "41#1007046|1589903677|10011|10011|10008835\n" + + "41#1007046|1589885920|10011|10011|10008797\n" + + "41#1007046|1589878765|10011|10011|10008783\n" + + "41#1007046|1589854357|10011|10011|10008737\n" + + "41#1007046|1589853979|10011|10011|10008738\n" + + "41#1007046|1589800869|10011|10011|10008647\n" + + "41#1007046|1589770095|10011|10011|10008599\n" + + "41#1007046|1589739097|10011|10011|10008545\n" + + "41#1007046|1589730172|10011|10011|10008531\n" + + "41#1007046|1589715330|10011|10011|10008504\n" + + "41#1007046|1589712472|10011|10011|10008496\n" + + "41#1007046|1589699725|10011|10011|10008471\n" + + "41#1007046|1589673665|10011|10011|10008429\n" + + "41#1007046|1589612079|10011|10011|10008349\n" + + "41#1007046|1589588050|10011|10011|10008314\n" + + "41#1007046|1589516777|10011|10011|10008188\n" + + "41#1007046|1589516729|10011|10011|10008187\n" + + "41#1007046|1589462369|10011|10011|10008067\n" + + "41#1007046|1589456951|10011|10011|10008055\n" + + "41#1007046|1589455592|10011|10011|10008050\n" + + "41#1007046|1589432622|10011|10011|10007991\n" + + "41#1007046|1589391846|10011|10011|10007910\n" + + "41#1007046|1589370545|10011|10011|10007836\n" + + "41#1007046|1589358687|10011|10011|10007802\n" + + "41#1007046|1589314932|10011|10011|10007655\n" + + "41#1007046|1589297178|10011|10011|10007582\n" + + "41#1007046|1581652475|10011|10011|10010221\n" + + "41#1007046|1581616011|10011|10011|10010199\n" + + "41#1007046|1581540284|10011|10011|10010142\n" + + "41#1007046|1581499814|10011|10011|10010110\n" + + "41#1007046|1581208182|10011|10011|10009948\n" + + "41#1007046|1580730719|10011|10011|10009701\n" + + "41#1007046|1580624630|10011|10011|10009658\n" + + "41#1007046|1580544708|10011|10011|10009619\n" + + "41#1007046|1580508057|10011|10011|10009603\n" + + "41#1007046|1580432739|10011|10011|10009488\n" + + "41#1007046|1580364734|10011|10011|10009333\n" + + "41#1007046|1580344255|10011|10011|10009292\n" + + "41#1007046|1580334586|10011|10011|10009259\n" + + "41#1007046|1580305911|10011|10011|10009194\n" + + "41#1007046|1580259842|10011|10011|10009116\n" + + "41#1007046|1580167504|10011|10011|10008986\n" + + "41#1007046|1580136512|10011|10011|10008931\n" + + "41#1007046|1580111071|10011|10011|10008882\n" + + "41#1007046|1580086704|10011|10011|10008844\n" + + "41#1007046|1580069397|10011|10011|10008814\n" + + "41#1007046|1580068033|10011|10011|10008813\n" + + "41#1007046|1580054044|10011|10011|10008779\n" + + "41#1007046|1580022906|10011|10011|10008714\n" + + "41#1007046|1579998173|10011|10011|10008665\n" + + "41#1007046|1579985691|10011|10011|10008650\n" + + "41#1007046|1579956960|10011|10011|10008593\n" + + "41#1007046|1579943625|10011|10011|10008564\n" + + "41#1007046|1579931992|10011|10011|10008543\n" + + "41#1007046|1579914885|10011|10011|10008512\n" + + "41#1007046|1579890553|10011|10011|10008459\n" + + "41#1007046|1579810617|10011|10011|10008330\n" + + "41#1007046|1579791170|10011|10011|10008296\n" + + "41#1007046|1579746943|10011|10011|10008213\n" + + "41#1007046|1579744648|10011|10011|10008209\n" + + "41#1007046|1579729551|10011|10011|10008178\n" + + "41#1007046|1579684917|10011|10011|10008066\n" + + "41#1007046|1579611114|10011|10011|10007861\n" + + "41#1007046|1579602971|10011|10011|10007829\n" + + "41#1007046|1579602765|10011|10011|10007828\n" + + "41#1007046|1579584902|10011|10011|10007776\n" + + "41#1007046|1579583787|10011|10011|10007764\n" + + "41#1007046|1579560213|10011|10011|10007673\n" + + "41#1007046|1579558587|10011|10011|10007664\n" + + "41#1007046|1579556209|10011|10011|10007660\n" + + "41#1007046|1579547585|10011|10011|10007618\n" + + "41#1007046|1572434507|10011|10011|10007321\n" + + "2#1007046|1592786276|10011|10011|10010405\n" + + "2#1007046|1592628863|10011|10011|10010382\n" + + "2#1007046|1592212380|10011|10011|10010308\n" + + "2#1007046|1591682639|10011|10011|10010233\n" + + "2#1007046|1591629344|10011|10011|10010198\n" + + "2#1007046|1591562324|10011|10011|10010155\n" + + "2#1007046|1591357966|10011|10011|10010045\n" + + "2#1007046|1591255988|10011|10011|10009993\n" + + "2#1007046|1591162578|10011|10011|10009940\n" + + "2#1007046|1591017980|10011|10011|10009872\n" + + "2#1007046|1590978232|10011|10011|10009856\n" + + "2#1007046|1590943494|10011|10011|10009841\n" + + "2#1007046|1590905635|10011|10011|10009830\n" + + "2#1007046|1590897932|10011|10011|10009826\n" + + "2#1007046|1590857357|10011|10011|10009807\n" + + "2#1007046|1590788679|10011|10011|10009777\n" + + "2#1007046|1590788097|10011|10011|10009776\n" + + "2#1007046|1590484179|10011|10011|10009646\n" + + "2#1007046|1590375401|10011|10011|10009596\n" + + "2#1007046|1590315885|10011|10011|10009517\n" + + "2#1007046|1590302228|10011|10011|10009485\n" + + "2#1007046|1590228218|10011|10011|10009341\n" + + "2#1007046|1590228066|10011|10011|10009335\n" + + "2#1007046|1590166249|10011|10011|10009202\n" + + "2#1007046|1590163311|10011|10011|10009195\n" + + "2#1007046|1590146148|10011|10011|10009169\n" + + "2#1007046|1590140215|10011|10011|10009160\n" + + "2#1007046|1590111325|10011|10011|10009122\n" + + "2#1007046|1590090162|10011|10011|10009089\n" + + "2#1007046|1590070394|10011|10011|10009068\n" + + "2#1007046|1590039615|10011|10011|10009025\n" + + "2#1007046|1589918028|10011|10011|10008849\n" + + "2#1007046|1589905274|10011|10011|10008839\n" + + "2#1007046|1589900760|10011|10011|10008828\n" + + "2#1007046|1589896164|10011|10011|10008816\n" + + "2#1007046|1589893899|10011|10011|10008812\n" + + "2#1007046|1589892909|10011|10011|10008840\n" + + "2#1007046|1589842650|10011|10011|10008722\n" + + "2#1007046|1589824653|10011|10011|10008679\n" + + "2#1007046|1589809633|10011|10011|10008661\n" + + "2#1007046|1589803022|10011|10011|10008651\n" + + "2#1007046|1589677809|10011|10011|10008435\n" + + "2#1007046|1589673711|10011|10011|10008430\n" + + "2#1007046|1589622336|10011|10011|10008365\n" + + "2#1007046|1589559593|10011|10011|10008273\n" + + "2#1007046|1589515165|10011|10011|10008186\n" + + "2#1007046|1589446627|10011|10011|10008027\n" + + "2#1007046|1589442506|10011|10011|10008015\n" + + "2#1007046|1589423156|10011|10011|10007975\n" + + "2#1007046|1589408331|10011|10011|10007943\n" + + "2#1007046|1589383680|10011|10011|10007956\n" + + "2#1007046|1589347497|10011|10011|10007771\n" + + "2#1007046|1589335466|10011|10011|10007726\n" + + "2#1007046|1589277575|10011|10011|10007509\n" + + "2#1007046|1589275324|10011|10011|10007495\n" + + "2#1007046|1589258121|10011|10011|10007397\n" + + "2#1007046|1589254993|10011|10011|10007412\n" + + "2#1007046|1581655823|10011|10011|10010226\n" + + "2#1007046|1581162288|10011|10011|10009912\n" + + "2#1007046|1580576464|10011|10011|10009636\n" + + "2#1007046|1580573779|10011|10011|10009635\n" + + "2#1007046|1580483159|10011|10011|10009586\n" + + "2#1007046|1580455142|10011|10011|10009541\n" + + "2#1007046|1580391470|10011|10011|10009418\n" + + "2#1007046|1580370350|10011|10011|10009360\n" + + "2#1007046|1580308310|10011|10011|10009197\n" + + "2#1007046|1580033212|10011|10011|10008734\n" + + "2#1007046|1580015787|10011|10011|10008694\n" + + "2#1007046|1579975989|10011|10011|10008630\n" + + "2#1007046|1579859410|10011|10011|10008410\n" + + "2#1007046|1579762508|10011|10011|10008248\n" + + "2#1007046|1579737619|10011|10011|10008195\n" + + "2#1007046|1579727716|10011|10011|10008174\n" + + "2#1007046|1579709291|10011|10011|10008123\n" + + "2#1007046|1579706178|10011|10011|10008115\n" + + "2#1007046|1579693193|10011|10011|10008086\n" + + "2#1007046|1579679601|10011|10011|10008047\n" + + "2#1007046|1579675249|10011|10011|10008035\n" + + "2#1007046|1579643915|10011|10011|10007960\n" + + "2#1007046|1579643598|10011|10011|10007963\n" + + "2#1007046|1579618237|10011|10011|10007887\n" + + "2#1007046|1579611617|10011|10011|10007864\n" + + "2#1007046|1579578884|10011|10011|10007743\n" + + "2#1007046|1579575610|10011|10011|10007735\n" + + "2#1007046|1579567615|10011|10011|10007875\n" + + "2#1007046|1579554607|10011|10011|10007654\n" + + "2#1007046|1579544513|10011|10011|10007599\n" + + "2#1007046|1579520391|10011|10011|10007497\n" + + "2#1007046|1579516579|10011|10011|10007483\n" + + "2#1007046|1579512072|10011|10011|10007449\n" + + "2#1007046|1579512059|10011|10011|10007447\n" + + "2#1007046|1579510531|10011|10011|10007423\n" + + "2#1007046|1579509632|10011|10011|10007411\n" + + "2#1007046|1579507447|10011|10011|10007578\n" + + "2#1007046|1452374530|10011|10011|10005532\n" + + "2#1007046|1416936652|10011|10011|10007403\n" + + "2#1007046|1414071318|10011|10011|10007529\n" + + "2#1007046|1366237231|10011|10011|10005761\n" + + "2#1007046|1365566167|10011|10011|10003979\n" + + "2#1007046|1365279513|10011|10011|10000731\n" + + "2#1007046|1365263741|10011|10011|10000407\n" + + "2#1007046|1365260594|10011|10011|10000308\n" + + "2#1007046|1365257784|10011|10011|10000280\n" + + "2#1007046|1365254948|10011|10011|10000090\n" + + "2#1007046|1365250820|10011|10011|10000078\n" + + "2#1007046|1364877535|10011|10011|10008239\n" + + "2#1007046|1316437265|10011|10011|10010108\n" + + "2#1007046|1315235997|10011|10011|10001906\n" + + "2#1007046|1315179862|10011|10011|10007464\n" + + "1#1006856|565050818|10011|10011|10007446\n" + + "1#1006856|45334096|10011|10011|10010099\n" + + "1#1006856|1589487986|10011|10011|10008120\n" + + "1#1006856|1579482010|10011|10011|10007484\n" + + "1#1006856|1574897775|10011|10011|10007338\n" + + "1#1006856|1284394587|10011|10011|10007324\n" + + "1#1006856|1283941155|10011|10011|10007308\n" + + "41#1007046|1590093180|10011|10011|10009096\n" + + "41#1007046|1589981355|10011|10011|10008954\n" + + "41#1007046|1589461383|10011|10011|10008064\n" + + "41#1007046|1589335861|10011|10011|10007730\n" + + "41#1007046|1589285232|10011|10011|10007545\n" + + "41#1007046|1581528257|10011|10011|10010131\n" + + "2#1007046|1590353751|10011|10011|10009578\n" + + "2#1007046|1590304117|10011|10011|10009489\n" + + "2#1007046|1580435219|10011|10011|10009501\n" + + "2#1007046|1580169422|10011|10011|10008992\n" + + "2#1007046|1417149222|10011|10011|10007782\n"; + String[] split = s.split("\n"); + Map userFOrce = new LinkedHashMap<>(); + for(String row : split){ + userFOrce.put(Integer.parseInt( row.split("\\|")[4]),0); + } + + users.forEach(user -> { + if(userFOrce.containsKey(user.getId())){ + userFOrce.put(user.getId(),user.getPlayerInfoManager().getMaxForce()); + } + System.out.println("the uid=" + user.getId() + " --- " + "amount = " + user.getPlayerInfoManager().getRechargeInfo().getSaveAmt() + "-- force" +user.getPlayerInfoManager().getMaxForce()); + }); + userFOrce.forEach((k,v)->{ + System.out.println(v); + }); + /* Query querySize = new Query(); querySize.fields().include("playerManager.level"); long count = mongoTemplate.count(querySize, User.class); System.out.println(count); @@ -53,8 +419,8 @@ public class MongoTest { Query query = new Query(); query.with(new Sort(Sort.Direction.DESC,"playerManager.level")); query.fields().include("playerManager.level"); - List users = mongoTemplate.find(query, User.class); - int level = 0; + List users = mongoTemplate.find(query, User.class);*/ + /* int level = 0; Map levelCount = new TreeMap<>(); for(int i = 0 ; i item : levelCount.entrySet()){ System.out.println("level :=" + item.getKey() + " count:=" + item.getValue()); } - System.out.println("计算世界等级为{}"+(level/nums)); + System.out.println("计算世界等级为{}"+(level/nums));*/ // MongoClientURI mongoClientURI = new MongoClientURI("mongodb://rwuser:JkA!6VE@Gj@cMqu@139.9.84.15:8635/test?authSource=admin");