diff --git a/bloodybattle/src/main/java/com/ljsd/BattleServerApplication.java b/bloodybattle/src/main/java/com/ljsd/BattleServerApplication.java
index baa1233da..ce323097f 100644
--- a/bloodybattle/src/main/java/com/ljsd/BattleServerApplication.java
+++ b/bloodybattle/src/main/java/com/ljsd/BattleServerApplication.java
@@ -8,13 +8,11 @@ import com.ljsd.jieling.NetWorkFactory;
import com.ljsd.jieling.config.json.CoreSettings;
import com.ljsd.jieling.db.redis.RedisKey;
import com.ljsd.jieling.db.redis.RedisUtil;
-import com.ljsd.jieling.logic.fight.CheckFight;
import com.ljsd.jieling.netty.config.EndPortCfg;
import com.ljsd.jieling.netty.server.NettyGameServer;
import com.ljsd.jieling.network.NettyProperties;
import com.ljsd.jieling.network.NettyServerAutoConfiguration;
-import com.ljsd.jieling.network.server.ProtocolsManager;
-import com.ljsd.jieling.session.GameSession;
+import com.ljsd.jieling.network.server.SessionManager;
import com.ljsd.jieling.session.GameSessionFactory;
import com.ljsd.jieling.thrift.RPCSceneServerTask;
import com.ljsd.jieling.thrift.pool.ThriftPoolUtils;
@@ -65,7 +63,6 @@ public class BattleServerApplication {
ThriftPoolUtils.getInstance().initContext();
new RPCSceneServerTask(configurableApplicationContext).start();
// 加载lua文件
- CheckFight.getInstance().init("luafight/BattleMain.lua");
final NettyServerAutoConfiguration netServerConfig = configurableApplicationContext.getBean(NettyServerAutoConfiguration.class);
NettyProperties properties = netServerConfig.getNettyProperties();
register(properties);
@@ -77,16 +74,10 @@ public class BattleServerApplication {
}));
try {
LOGGER.info("main->BattleServerApplication start...");
- GameSessionFactory gameSessionFactory = () -> new ISession();
-
-// nettyServer = new NettyGameServer(properties.getTcpPort(), properties.getReadTimeout(),
-// properties.getWriteTimeout(), properties.getAllTimeout(),BloodyProtocolsManager.getInstance(),
-// gameSessionFactory);
-
nettyServer = NetWorkFactory.getServer(new EndPortCfg(properties.getTcpPort(), properties.getReadTimeout(),
- properties.getWriteTimeout(), properties.getAllTimeout()), ProtocolsManager.getInstance(),
- gameSessionFactory);
+ properties.getWriteTimeout(), properties.getAllTimeout()), SessionManager.getInstance());
nettyServer.start();
+
} catch (Exception e) {
LOGGER.error("main->msg={}", e.getMessage(), e);
}
diff --git a/bloodybattle/src/main/java/com/ljsd/battle/manager/BattleManager.java b/bloodybattle/src/main/java/com/ljsd/battle/manager/BattleManager.java
index ffeb53f02..afccf4146 100644
--- a/bloodybattle/src/main/java/com/ljsd/battle/manager/BattleManager.java
+++ b/bloodybattle/src/main/java/com/ljsd/battle/manager/BattleManager.java
@@ -12,12 +12,12 @@ import com.ljsd.battle.util.HeroLogic;
import com.ljsd.battle.vo.FamilyHeroInfo;
import com.ljsd.battle.vo.HeroAttributeEnum;
import com.ljsd.battle.vo.UserBloodySnpInfo;
+import com.ljsd.fight.CheckFight;
+import com.ljsd.fight.FightType;
import config.*;
import com.ljsd.jieling.globals.Global;
import com.ljsd.jieling.handler.map.behavior.BehaviorUtil;
-import com.ljsd.jieling.logic.fight.CheckFight;
import com.ljsd.jieling.logic.fight.CombatLogic;
-import com.ljsd.jieling.logic.fight.FightType;
import com.ljsd.jieling.protocols.CommonProto;
import com.ljsd.jieling.util.FightDataUtil;
import com.ljsd.jieling.util.MonsterUtil;
diff --git a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/ArenaInfoProto.java b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/ArenaInfoProto.java
index 2524b4197..875267a0e 100644
--- a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/ArenaInfoProto.java
+++ b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/ArenaInfoProto.java
@@ -1706,6 +1706,24 @@ public final class ArenaInfoProto {
*
*/
com.ljsd.jieling.protocols.CommonProto.FightDataOrBuilder getFightDataOrBuilder();
+
+ // optional int32 fightResult = 5;
+ /**
+ * optional int32 fightResult = 5;
+ *
+ *
+ * 战斗结果 + *+ */ + boolean hasFightResult(); + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + int getFightResult(); } /** * Protobuf type {@code com.ljsd.jieling.protocols.ArenaChallengeResponse} @@ -1789,6 +1807,11 @@ public final class ArenaInfoProto { bitField0_ |= 0x00000004; break; } + case 40: { + bitField0_ |= 0x00000008; + fightResult_ = input.readInt32(); + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -1970,11 +1993,36 @@ public final class ArenaInfoProto { return fightData_; } + // optional int32 fightResult = 5; + public static final int FIGHTRESULT_FIELD_NUMBER = 5; + private int fightResult_; + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public boolean hasFightResult() { + return ((bitField0_ & 0x00000008) == 0x00000008); + } + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public int getFightResult() { + return fightResult_; + } + private void initFields() { myScoreChange_ = 0; defScoreChange_ = 0; arenaEnemys_ = java.util.Collections.emptyList(); fightData_ = com.ljsd.jieling.protocols.CommonProto.FightData.getDefaultInstance(); + fightResult_ = 0; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -2000,6 +2048,9 @@ public final class ArenaInfoProto { if (((bitField0_ & 0x00000004) == 0x00000004)) { output.writeMessage(4, fightData_); } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + output.writeInt32(5, fightResult_); + } getUnknownFields().writeTo(output); } @@ -2025,6 +2076,10 @@ public final class ArenaInfoProto { size += com.google.protobuf.CodedOutputStream .computeMessageSize(4, fightData_); } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(5, fightResult_); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -2159,6 +2214,8 @@ public final class ArenaInfoProto { fightDataBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000008); + fightResult_ = 0; + bitField0_ = (bitField0_ & ~0x00000010); return this; } @@ -2212,6 +2269,10 @@ public final class ArenaInfoProto { } else { result.fightData_ = fightDataBuilder_.build(); } + if (((from_bitField0_ & 0x00000010) == 0x00000010)) { + to_bitField0_ |= 0x00000008; + } + result.fightResult_ = fightResult_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -2263,6 +2324,9 @@ public final class ArenaInfoProto { if (other.hasFightData()) { mergeFightData(other.getFightData()); } + if (other.hasFightResult()) { + setFightResult(other.getFightResult()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -2853,6 +2917,55 @@ public final class ArenaInfoProto { return fightDataBuilder_; } + // optional int32 fightResult = 5; + private int fightResult_ ; + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public boolean hasFightResult() { + return ((bitField0_ & 0x00000010) == 0x00000010); + } + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public int getFightResult() { + return fightResult_; + } + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public Builder setFightResult(int value) { + bitField0_ |= 0x00000010; + fightResult_ = value; + onChanged(); + return this; + } + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public Builder clearFightResult() { + bitField0_ = (bitField0_ & ~0x00000010); + fightResult_ = 0; + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.ArenaChallengeResponse) } @@ -6443,23 +6556,24 @@ public final class ArenaInfoProto { "jsd.jieling.protocols.ArenaInfo\"\'\n\027GetAr" + "enaRankInfoRequest\022\014\n\004page\030\001 \001(\005\"P\n\025Aren" + "aChallengeRequest\022\016\n\006teamId\030\001 \001(\005\022\024\n\014cha" + - "llengeUid\030\002 \001(\005\022\021\n\tskipFight\030\003 \001(\005\"\276\001\n\026A" + + "llengeUid\030\002 \001(\005\022\021\n\tskipFight\030\003 \001(\005\"\323\001\n\026A" + "renaChallengeResponse\022\025\n\rmyScoreChange\030\001" + " \001(\005\022\026\n\016defScoreChange\030\002 \001(\005\022;\n\013arenaEne" + "mys\030\003 \003(\0132&.com.ljsd.jieling.protocols.A", "renaEnemy\0228\n\tfightData\030\004 \001(\0132%.com.ljsd." + - "jieling.protocols.FightData\"v\n\030GetArenaR" + - "ankInfoResponse\0229\n\trankInfos\030\001 \003(\0132&.com" + - ".ljsd.jieling.protocols.ArenaEnemy\022\017\n\007my" + - "score\030\002 \001(\005\022\016\n\006myRank\030\003 \001(\005\"R\n\023ArenaRand" + - "omResponse\022;\n\013arenaEnemys\030\001 \003(\0132&.com.lj" + - "sd.jieling.protocols.ArenaEnemy\"_\n\027Arena" + - "RecordInfoResponse\022D\n\017arenaRecordInfo\030\001 " + - "\003(\0132+.com.ljsd.jieling.protocols.ArenaRe" + - "cordInfo\";\n\021PlayWithSbRequest\022\024\n\014challen", - "geUid\030\001 \001(\005\022\020\n\010myteamId\030\002 \001(\005\"N\n\022PlayWit" + - "hSbResponse\0228\n\tfightData\030\001 \001(\0132%.com.ljs" + - "d.jieling.protocols.FightDataB\002H\001" + "jieling.protocols.FightData\022\023\n\013fightResu" + + "lt\030\005 \001(\005\"v\n\030GetArenaRankInfoResponse\0229\n\t" + + "rankInfos\030\001 \003(\0132&.com.ljsd.jieling.proto" + + "cols.ArenaEnemy\022\017\n\007myscore\030\002 \001(\005\022\016\n\006myRa" + + "nk\030\003 \001(\005\"R\n\023ArenaRandomResponse\022;\n\013arena" + + "Enemys\030\001 \003(\0132&.com.ljsd.jieling.protocol" + + "s.ArenaEnemy\"_\n\027ArenaRecordInfoResponse\022" + + "D\n\017arenaRecordInfo\030\001 \003(\0132+.com.ljsd.jiel" + + "ing.protocols.ArenaRecordInfo\";\n\021PlayWit", + "hSbRequest\022\024\n\014challengeUid\030\001 \001(\005\022\020\n\010myte" + + "amId\030\002 \001(\005\"N\n\022PlayWithSbResponse\0228\n\tfigh" + + "tData\030\001 \001(\0132%.com.ljsd.jieling.protocols" + + ".FightDataB\002H\001" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -6489,7 +6603,7 @@ public final class ArenaInfoProto { internal_static_com_ljsd_jieling_protocols_ArenaChallengeResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_ArenaChallengeResponse_descriptor, - new java.lang.String[] { "MyScoreChange", "DefScoreChange", "ArenaEnemys", "FightData", }); + new java.lang.String[] { "MyScoreChange", "DefScoreChange", "ArenaEnemys", "FightData", "FightResult", }); internal_static_com_ljsd_jieling_protocols_GetArenaRankInfoResponse_descriptor = getDescriptor().getMessageTypes().get(4); internal_static_com_ljsd_jieling_protocols_GetArenaRankInfoResponse_fieldAccessorTable = new diff --git a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/CommonProto.java b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/CommonProto.java index b27916999..37b4038ee 100644 --- a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/CommonProto.java +++ b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/CommonProto.java @@ -16,7 +16,7 @@ public final class CommonProto { *
optional int32 errCode = 1;
*
* - * 错误码,默认为0 + * 错误码,默认为0,-1 读errMSg ,其他的读配置 **/ boolean hasErrCode(); @@ -24,7 +24,7 @@ public final class CommonProto { *
optional int32 errCode = 1;
*
* - * 错误码,默认为0 + * 错误码,默认为0,-1 读errMSg ,其他的读配置 **/ int getErrCode(); @@ -55,6 +55,42 @@ public final class CommonProto { */ com.google.protobuf.ByteString getErrMsgBytes(); + + // repeated string errParams = 3; + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + java.util.List
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + int getErrParamsCount(); + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + java.lang.String getErrParams(int index); + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + com.google.protobuf.ByteString + getErrParamsBytes(int index); } /** * Protobuf type {@code com.ljsd.jieling.protocols.ErrorResponse} @@ -117,6 +153,14 @@ public final class CommonProto { errMsg_ = input.readBytes(); break; } + case 26: { + if (!((mutable_bitField0_ & 0x00000004) == 0x00000004)) { + errParams_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000004; + } + errParams_.add(input.readBytes()); + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -125,6 +169,9 @@ public final class CommonProto { throw new com.google.protobuf.InvalidProtocolBufferException( e.getMessage()).setUnfinishedMessage(this); } finally { + if (((mutable_bitField0_ & 0x00000004) == 0x00000004)) { + errParams_ = new com.google.protobuf.UnmodifiableLazyStringList(errParams_); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } @@ -164,7 +211,7 @@ public final class CommonProto { *
optional int32 errCode = 1;
*
* - * 错误码,默认为0 + * 错误码,默认为0,-1 读errMSg ,其他的读配置 **/ public boolean hasErrCode() { @@ -174,7 +221,7 @@ public final class CommonProto { *
optional int32 errCode = 1;
*
* - * 错误码,默认为0 + * 错误码,默认为0,-1 读errMSg ,其他的读配置 **/ public int getErrCode() { @@ -236,9 +283,56 @@ public final class CommonProto { } } + // repeated string errParams = 3; + public static final int ERRPARAMS_FIELD_NUMBER = 3; + private com.google.protobuf.LazyStringList errParams_; + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public java.util.List
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public int getErrParamsCount() { + return errParams_.size(); + } + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public java.lang.String getErrParams(int index) { + return errParams_.get(index); + } + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public com.google.protobuf.ByteString + getErrParamsBytes(int index) { + return errParams_.getByteString(index); + } + private void initFields() { errCode_ = 0; errMsg_ = ""; + errParams_ = com.google.protobuf.LazyStringArrayList.EMPTY; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -258,6 +352,9 @@ public final class CommonProto { if (((bitField0_ & 0x00000002) == 0x00000002)) { output.writeBytes(2, getErrMsgBytes()); } + for (int i = 0; i < errParams_.size(); i++) { + output.writeBytes(3, errParams_.getByteString(i)); + } getUnknownFields().writeTo(output); } @@ -275,6 +372,15 @@ public final class CommonProto { size += com.google.protobuf.CodedOutputStream .computeBytesSize(2, getErrMsgBytes()); } + { + int dataSize = 0; + for (int i = 0; i < errParams_.size(); i++) { + dataSize += com.google.protobuf.CodedOutputStream + .computeBytesSizeNoTag(errParams_.getByteString(i)); + } + size += dataSize; + size += 1 * getErrParamsList().size(); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -395,6 +501,8 @@ public final class CommonProto { bitField0_ = (bitField0_ & ~0x00000001); errMsg_ = ""; bitField0_ = (bitField0_ & ~0x00000002); + errParams_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000004); return this; } @@ -431,6 +539,12 @@ public final class CommonProto { to_bitField0_ |= 0x00000002; } result.errMsg_ = errMsg_; + if (((bitField0_ & 0x00000004) == 0x00000004)) { + errParams_ = new com.google.protobuf.UnmodifiableLazyStringList( + errParams_); + bitField0_ = (bitField0_ & ~0x00000004); + } + result.errParams_ = errParams_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -455,6 +569,16 @@ public final class CommonProto { errMsg_ = other.errMsg_; onChanged(); } + if (!other.errParams_.isEmpty()) { + if (errParams_.isEmpty()) { + errParams_ = other.errParams_; + bitField0_ = (bitField0_ & ~0x00000004); + } else { + ensureErrParamsIsMutable(); + errParams_.addAll(other.errParams_); + } + onChanged(); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -488,7 +612,7 @@ public final class CommonProto { *
optional int32 errCode = 1;
*
* - * 错误码,默认为0 + * 错误码,默认为0,-1 读errMSg ,其他的读配置 **/ public boolean hasErrCode() { @@ -498,7 +622,7 @@ public final class CommonProto { *
optional int32 errCode = 1;
*
* - * 错误码,默认为0 + * 错误码,默认为0,-1 读errMSg ,其他的读配置 **/ public int getErrCode() { @@ -508,7 +632,7 @@ public final class CommonProto { *
optional int32 errCode = 1;
*
* - * 错误码,默认为0 + * 错误码,默认为0,-1 读errMSg ,其他的读配置 **/ public Builder setErrCode(int value) { @@ -521,7 +645,7 @@ public final class CommonProto { *
optional int32 errCode = 1;
*
* - * 错误码,默认为0 + * 错误码,默认为0,-1 读errMSg ,其他的读配置 **/ public Builder clearErrCode() { @@ -629,6 +753,135 @@ public final class CommonProto { return this; } + // repeated string errParams = 3; + private com.google.protobuf.LazyStringList errParams_ = com.google.protobuf.LazyStringArrayList.EMPTY; + private void ensureErrParamsIsMutable() { + if (!((bitField0_ & 0x00000004) == 0x00000004)) { + errParams_ = new com.google.protobuf.LazyStringArrayList(errParams_); + bitField0_ |= 0x00000004; + } + } + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public java.util.List
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public int getErrParamsCount() { + return errParams_.size(); + } + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public java.lang.String getErrParams(int index) { + return errParams_.get(index); + } + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public com.google.protobuf.ByteString + getErrParamsBytes(int index) { + return errParams_.getByteString(index); + } + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public Builder setErrParams( + int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureErrParamsIsMutable(); + errParams_.set(index, value); + onChanged(); + return this; + } + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public Builder addErrParams( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureErrParamsIsMutable(); + errParams_.add(value); + onChanged(); + return this; + } + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public Builder addAllErrParams( + java.lang.Iterable
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public Builder clearErrParams() { + errParams_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + return this; + } + /** + *
repeated string errParams = 3;
+ *
+ * + *错误参数 + *+ */ + public Builder addErrParamsBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + ensureErrParamsIsMutable(); + errParams_.add(value); + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.ErrorResponse) } @@ -934,6 +1187,78 @@ public final class CommonProto { */ com.google.protobuf.ByteString getRoomAddreessBytes(); + + // optional int32 designation = 20; + /** + *
optional int32 designation = 20;
+ *
+ * + *称号 + *+ */ + boolean hasDesignation(); + /** + *
optional int32 designation = 20;
+ *
+ * + *称号 + *+ */ + int getDesignation(); + + // optional int32 decrotion = 21; + /** + *
optional int32 decrotion = 21;
+ *
+ * + *皮肤 + *+ */ + boolean hasDecrotion(); + /** + *
optional int32 decrotion = 21;
+ *
+ * + *皮肤 + *+ */ + int getDecrotion(); + + // optional int32 ride = 22; + /** + *
optional int32 ride = 22;
+ *
+ * + *坐骑 + *+ */ + boolean hasRide(); + /** + *
optional int32 ride = 22;
+ *
+ * + *坐骑 + *+ */ + int getRide(); + + // optional int32 rideLevel = 23; + /** + *
optional int32 rideLevel = 23;
+ *
+ * + *坐骑等级 + *+ */ + boolean hasRideLevel(); + /** + *
optional int32 rideLevel = 23;
+ *
+ * + *坐骑等级 + *+ */ + int getRideLevel(); } /** * Protobuf type {@code com.ljsd.jieling.protocols.Player} @@ -1081,6 +1406,26 @@ public final class CommonProto { roomAddreess_ = input.readBytes(); break; } + case 160: { + bitField0_ |= 0x00080000; + designation_ = input.readInt32(); + break; + } + case 168: { + bitField0_ |= 0x00100000; + decrotion_ = input.readInt32(); + break; + } + case 176: { + bitField0_ |= 0x00200000; + ride_ = input.readInt32(); + break; + } + case 184: { + bitField0_ |= 0x00400000; + rideLevel_ = input.readInt32(); + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -1571,6 +1916,102 @@ public final class CommonProto { } } + // optional int32 designation = 20; + public static final int DESIGNATION_FIELD_NUMBER = 20; + private int designation_; + /** + *
optional int32 designation = 20;
+ *
+ * + *称号 + *+ */ + public boolean hasDesignation() { + return ((bitField0_ & 0x00080000) == 0x00080000); + } + /** + *
optional int32 designation = 20;
+ *
+ * + *称号 + *+ */ + public int getDesignation() { + return designation_; + } + + // optional int32 decrotion = 21; + public static final int DECROTION_FIELD_NUMBER = 21; + private int decrotion_; + /** + *
optional int32 decrotion = 21;
+ *
+ * + *皮肤 + *+ */ + public boolean hasDecrotion() { + return ((bitField0_ & 0x00100000) == 0x00100000); + } + /** + *
optional int32 decrotion = 21;
+ *
+ * + *皮肤 + *+ */ + public int getDecrotion() { + return decrotion_; + } + + // optional int32 ride = 22; + public static final int RIDE_FIELD_NUMBER = 22; + private int ride_; + /** + *
optional int32 ride = 22;
+ *
+ * + *坐骑 + *+ */ + public boolean hasRide() { + return ((bitField0_ & 0x00200000) == 0x00200000); + } + /** + *
optional int32 ride = 22;
+ *
+ * + *坐骑 + *+ */ + public int getRide() { + return ride_; + } + + // optional int32 rideLevel = 23; + public static final int RIDELEVEL_FIELD_NUMBER = 23; + private int rideLevel_; + /** + *
optional int32 rideLevel = 23;
+ *
+ * + *坐骑等级 + *+ */ + public boolean hasRideLevel() { + return ((bitField0_ & 0x00400000) == 0x00400000); + } + /** + *
optional int32 rideLevel = 23;
+ *
+ * + *坐骑等级 + *+ */ + public int getRideLevel() { + return rideLevel_; + } + private void initFields() { uid_ = 0; nickName_ = ""; @@ -1591,6 +2032,10 @@ public final class CommonProto { curRoomType_ = 0; headFrame_ = 0; roomAddreess_ = ""; + designation_ = 0; + decrotion_ = 0; + ride_ = 0; + rideLevel_ = 0; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -1661,6 +2106,18 @@ public final class CommonProto { if (((bitField0_ & 0x00040000) == 0x00040000)) { output.writeBytes(19, getRoomAddreessBytes()); } + if (((bitField0_ & 0x00080000) == 0x00080000)) { + output.writeInt32(20, designation_); + } + if (((bitField0_ & 0x00100000) == 0x00100000)) { + output.writeInt32(21, decrotion_); + } + if (((bitField0_ & 0x00200000) == 0x00200000)) { + output.writeInt32(22, ride_); + } + if (((bitField0_ & 0x00400000) == 0x00400000)) { + output.writeInt32(23, rideLevel_); + } getUnknownFields().writeTo(output); } @@ -1746,6 +2203,22 @@ public final class CommonProto { size += com.google.protobuf.CodedOutputStream .computeBytesSize(19, getRoomAddreessBytes()); } + if (((bitField0_ & 0x00080000) == 0x00080000)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(20, designation_); + } + if (((bitField0_ & 0x00100000) == 0x00100000)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(21, decrotion_); + } + if (((bitField0_ & 0x00200000) == 0x00200000)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(22, ride_); + } + if (((bitField0_ & 0x00400000) == 0x00400000)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(23, rideLevel_); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -1900,6 +2373,14 @@ public final class CommonProto { bitField0_ = (bitField0_ & ~0x00020000); roomAddreess_ = ""; bitField0_ = (bitField0_ & ~0x00040000); + designation_ = 0; + bitField0_ = (bitField0_ & ~0x00080000); + decrotion_ = 0; + bitField0_ = (bitField0_ & ~0x00100000); + ride_ = 0; + bitField0_ = (bitField0_ & ~0x00200000); + rideLevel_ = 0; + bitField0_ = (bitField0_ & ~0x00400000); return this; } @@ -2004,6 +2485,22 @@ public final class CommonProto { to_bitField0_ |= 0x00040000; } result.roomAddreess_ = roomAddreess_; + if (((from_bitField0_ & 0x00080000) == 0x00080000)) { + to_bitField0_ |= 0x00080000; + } + result.designation_ = designation_; + if (((from_bitField0_ & 0x00100000) == 0x00100000)) { + to_bitField0_ |= 0x00100000; + } + result.decrotion_ = decrotion_; + if (((from_bitField0_ & 0x00200000) == 0x00200000)) { + to_bitField0_ |= 0x00200000; + } + result.ride_ = ride_; + if (((from_bitField0_ & 0x00400000) == 0x00400000)) { + to_bitField0_ |= 0x00400000; + } + result.rideLevel_ = rideLevel_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -2081,6 +2578,18 @@ public final class CommonProto { roomAddreess_ = other.roomAddreess_; onChanged(); } + if (other.hasDesignation()) { + setDesignation(other.getDesignation()); + } + if (other.hasDecrotion()) { + setDecrotion(other.getDecrotion()); + } + if (other.hasRide()) { + setRide(other.getRide()); + } + if (other.hasRideLevel()) { + setRideLevel(other.getRideLevel()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -3001,6 +3510,202 @@ public final class CommonProto { return this; } + // optional int32 designation = 20; + private int designation_ ; + /** + *
optional int32 designation = 20;
+ *
+ * + *称号 + *+ */ + public boolean hasDesignation() { + return ((bitField0_ & 0x00080000) == 0x00080000); + } + /** + *
optional int32 designation = 20;
+ *
+ * + *称号 + *+ */ + public int getDesignation() { + return designation_; + } + /** + *
optional int32 designation = 20;
+ *
+ * + *称号 + *+ */ + public Builder setDesignation(int value) { + bitField0_ |= 0x00080000; + designation_ = value; + onChanged(); + return this; + } + /** + *
optional int32 designation = 20;
+ *
+ * + *称号 + *+ */ + public Builder clearDesignation() { + bitField0_ = (bitField0_ & ~0x00080000); + designation_ = 0; + onChanged(); + return this; + } + + // optional int32 decrotion = 21; + private int decrotion_ ; + /** + *
optional int32 decrotion = 21;
+ *
+ * + *皮肤 + *+ */ + public boolean hasDecrotion() { + return ((bitField0_ & 0x00100000) == 0x00100000); + } + /** + *
optional int32 decrotion = 21;
+ *
+ * + *皮肤 + *+ */ + public int getDecrotion() { + return decrotion_; + } + /** + *
optional int32 decrotion = 21;
+ *
+ * + *皮肤 + *+ */ + public Builder setDecrotion(int value) { + bitField0_ |= 0x00100000; + decrotion_ = value; + onChanged(); + return this; + } + /** + *
optional int32 decrotion = 21;
+ *
+ * + *皮肤 + *+ */ + public Builder clearDecrotion() { + bitField0_ = (bitField0_ & ~0x00100000); + decrotion_ = 0; + onChanged(); + return this; + } + + // optional int32 ride = 22; + private int ride_ ; + /** + *
optional int32 ride = 22;
+ *
+ * + *坐骑 + *+ */ + public boolean hasRide() { + return ((bitField0_ & 0x00200000) == 0x00200000); + } + /** + *
optional int32 ride = 22;
+ *
+ * + *坐骑 + *+ */ + public int getRide() { + return ride_; + } + /** + *
optional int32 ride = 22;
+ *
+ * + *坐骑 + *+ */ + public Builder setRide(int value) { + bitField0_ |= 0x00200000; + ride_ = value; + onChanged(); + return this; + } + /** + *
optional int32 ride = 22;
+ *
+ * + *坐骑 + *+ */ + public Builder clearRide() { + bitField0_ = (bitField0_ & ~0x00200000); + ride_ = 0; + onChanged(); + return this; + } + + // optional int32 rideLevel = 23; + private int rideLevel_ ; + /** + *
optional int32 rideLevel = 23;
+ *
+ * + *坐骑等级 + *+ */ + public boolean hasRideLevel() { + return ((bitField0_ & 0x00400000) == 0x00400000); + } + /** + *
optional int32 rideLevel = 23;
+ *
+ * + *坐骑等级 + *+ */ + public int getRideLevel() { + return rideLevel_; + } + /** + *
optional int32 rideLevel = 23;
+ *
+ * + *坐骑等级 + *+ */ + public Builder setRideLevel(int value) { + bitField0_ |= 0x00400000; + rideLevel_ = value; + onChanged(); + return this; + } + /** + *
optional int32 rideLevel = 23;
+ *
+ * + *坐骑等级 + *+ */ + public Builder clearRideLevel() { + bitField0_ = (bitField0_ & ~0x00400000); + rideLevel_ = 0; + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.Player) } @@ -7072,20 +7777,6 @@ public final class CommonProto { */ int getSkinId(); - // repeated int32 skillIdList = 7; - /** - *
repeated int32 skillIdList = 7;
- */
- java.util.Listrepeated int32 skillIdList = 7;
- */
- int getSkillIdListCount();
- /**
- * repeated int32 skillIdList = 7;
- */
- int getSkillIdList(int index);
-
// repeated string equipIdList = 8;
/**
* repeated string equipIdList = 8;
@@ -7322,31 +8013,10 @@ public final class CommonProto {
skinId_ = input.readInt32();
break;
}
- case 56: {
- if (!((mutable_bitField0_ & 0x00000040) == 0x00000040)) {
- skillIdList_ = new java.util.ArrayListrepeated int32 skillIdList = 7;
- */
- public java.util.Listrepeated int32 skillIdList = 7;
- */
- public int getSkillIdListCount() {
- return skillIdList_.size();
- }
- /**
- * repeated int32 skillIdList = 7;
- */
- public int getSkillIdList(int index) {
- return skillIdList_.get(index);
- }
-
// repeated string equipIdList = 8;
public static final int EQUIPIDLIST_FIELD_NUMBER = 8;
private com.google.protobuf.LazyStringList equipIdList_;
@@ -7791,7 +8435,6 @@ public final class CommonProto {
breakId_ = 0;
star_ = 0;
skinId_ = 0;
- skillIdList_ = java.util.Collections.emptyList();
equipIdList_ = com.google.protobuf.LazyStringArrayList.EMPTY;
createTime_ = 0;
starBreakId_ = 0;
@@ -7829,9 +8472,6 @@ public final class CommonProto {
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeInt32(6, skinId_);
}
- for (int i = 0; i < skillIdList_.size(); i++) {
- output.writeInt32(7, skillIdList_.get(i));
- }
for (int i = 0; i < equipIdList_.size(); i++) {
output.writeBytes(8, equipIdList_.getByteString(i));
}
@@ -7883,15 +8523,6 @@ public final class CommonProto {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(6, skinId_);
}
- {
- int dataSize = 0;
- for (int i = 0; i < skillIdList_.size(); i++) {
- dataSize += com.google.protobuf.CodedOutputStream
- .computeInt32SizeNoTag(skillIdList_.get(i));
- }
- size += dataSize;
- size += 1 * getSkillIdListList().size();
- }
{
int dataSize = 0;
for (int i = 0; i < equipIdList_.size(); i++) {
@@ -8055,24 +8686,22 @@ public final class CommonProto {
bitField0_ = (bitField0_ & ~0x00000010);
skinId_ = 0;
bitField0_ = (bitField0_ & ~0x00000020);
- skillIdList_ = java.util.Collections.emptyList();
- bitField0_ = (bitField0_ & ~0x00000040);
equipIdList_ = com.google.protobuf.LazyStringArrayList.EMPTY;
- bitField0_ = (bitField0_ & ~0x00000080);
+ bitField0_ = (bitField0_ & ~0x00000040);
createTime_ = 0;
- bitField0_ = (bitField0_ & ~0x00000100);
+ bitField0_ = (bitField0_ & ~0x00000080);
starBreakId_ = 0;
- bitField0_ = (bitField0_ & ~0x00000200);
+ bitField0_ = (bitField0_ & ~0x00000100);
especialEquip_ = com.google.protobuf.LazyStringArrayList.EMPTY;
- bitField0_ = (bitField0_ & ~0x00000400);
+ bitField0_ = (bitField0_ & ~0x00000200);
if (soulPosBuilder_ == null) {
soulPos_ = java.util.Collections.emptyList();
- bitField0_ = (bitField0_ & ~0x00000800);
+ bitField0_ = (bitField0_ & ~0x00000400);
} else {
soulPosBuilder_.clear();
}
lockState_ = 0;
- bitField0_ = (bitField0_ & ~0x00001000);
+ bitField0_ = (bitField0_ & ~0x00000800);
return this;
}
@@ -8126,40 +8755,35 @@ public final class CommonProto {
}
result.skinId_ = skinId_;
if (((bitField0_ & 0x00000040) == 0x00000040)) {
- skillIdList_ = java.util.Collections.unmodifiableList(skillIdList_);
- bitField0_ = (bitField0_ & ~0x00000040);
- }
- result.skillIdList_ = skillIdList_;
- if (((bitField0_ & 0x00000080) == 0x00000080)) {
equipIdList_ = new com.google.protobuf.UnmodifiableLazyStringList(
equipIdList_);
- bitField0_ = (bitField0_ & ~0x00000080);
+ bitField0_ = (bitField0_ & ~0x00000040);
}
result.equipIdList_ = equipIdList_;
- if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
+ if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000040;
}
result.createTime_ = createTime_;
- if (((from_bitField0_ & 0x00000200) == 0x00000200)) {
+ if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
to_bitField0_ |= 0x00000080;
}
result.starBreakId_ = starBreakId_;
- if (((bitField0_ & 0x00000400) == 0x00000400)) {
+ if (((bitField0_ & 0x00000200) == 0x00000200)) {
especialEquip_ = new com.google.protobuf.UnmodifiableLazyStringList(
especialEquip_);
- bitField0_ = (bitField0_ & ~0x00000400);
+ bitField0_ = (bitField0_ & ~0x00000200);
}
result.especialEquip_ = especialEquip_;
if (soulPosBuilder_ == null) {
- if (((bitField0_ & 0x00000800) == 0x00000800)) {
+ if (((bitField0_ & 0x00000400) == 0x00000400)) {
soulPos_ = java.util.Collections.unmodifiableList(soulPos_);
- bitField0_ = (bitField0_ & ~0x00000800);
+ bitField0_ = (bitField0_ & ~0x00000400);
}
result.soulPos_ = soulPos_;
} else {
result.soulPos_ = soulPosBuilder_.build();
}
- if (((from_bitField0_ & 0x00001000) == 0x00001000)) {
+ if (((from_bitField0_ & 0x00000800) == 0x00000800)) {
to_bitField0_ |= 0x00000100;
}
result.lockState_ = lockState_;
@@ -8199,20 +8823,10 @@ public final class CommonProto {
if (other.hasSkinId()) {
setSkinId(other.getSkinId());
}
- if (!other.skillIdList_.isEmpty()) {
- if (skillIdList_.isEmpty()) {
- skillIdList_ = other.skillIdList_;
- bitField0_ = (bitField0_ & ~0x00000040);
- } else {
- ensureSkillIdListIsMutable();
- skillIdList_.addAll(other.skillIdList_);
- }
- onChanged();
- }
if (!other.equipIdList_.isEmpty()) {
if (equipIdList_.isEmpty()) {
equipIdList_ = other.equipIdList_;
- bitField0_ = (bitField0_ & ~0x00000080);
+ bitField0_ = (bitField0_ & ~0x00000040);
} else {
ensureEquipIdListIsMutable();
equipIdList_.addAll(other.equipIdList_);
@@ -8228,7 +8842,7 @@ public final class CommonProto {
if (!other.especialEquip_.isEmpty()) {
if (especialEquip_.isEmpty()) {
especialEquip_ = other.especialEquip_;
- bitField0_ = (bitField0_ & ~0x00000400);
+ bitField0_ = (bitField0_ & ~0x00000200);
} else {
ensureEspecialEquipIsMutable();
especialEquip_.addAll(other.especialEquip_);
@@ -8239,7 +8853,7 @@ public final class CommonProto {
if (!other.soulPos_.isEmpty()) {
if (soulPos_.isEmpty()) {
soulPos_ = other.soulPos_;
- bitField0_ = (bitField0_ & ~0x00000800);
+ bitField0_ = (bitField0_ & ~0x00000400);
} else {
ensureSoulPosIsMutable();
soulPos_.addAll(other.soulPos_);
@@ -8252,7 +8866,7 @@ public final class CommonProto {
soulPosBuilder_.dispose();
soulPosBuilder_ = null;
soulPos_ = other.soulPos_;
- bitField0_ = (bitField0_ & ~0x00000800);
+ bitField0_ = (bitField0_ & ~0x00000400);
soulPosBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
getSoulPosFieldBuilder() : null;
@@ -8530,78 +9144,12 @@ public final class CommonProto {
return this;
}
- // repeated int32 skillIdList = 7;
- private java.util.Listrepeated int32 skillIdList = 7;
- */
- public java.util.Listrepeated int32 skillIdList = 7;
- */
- public int getSkillIdListCount() {
- return skillIdList_.size();
- }
- /**
- * repeated int32 skillIdList = 7;
- */
- public int getSkillIdList(int index) {
- return skillIdList_.get(index);
- }
- /**
- * repeated int32 skillIdList = 7;
- */
- public Builder setSkillIdList(
- int index, int value) {
- ensureSkillIdListIsMutable();
- skillIdList_.set(index, value);
- onChanged();
- return this;
- }
- /**
- * repeated int32 skillIdList = 7;
- */
- public Builder addSkillIdList(int value) {
- ensureSkillIdListIsMutable();
- skillIdList_.add(value);
- onChanged();
- return this;
- }
- /**
- * repeated int32 skillIdList = 7;
- */
- public Builder addAllSkillIdList(
- java.lang.Iterable extends java.lang.Integer> values) {
- ensureSkillIdListIsMutable();
- super.addAll(values, skillIdList_);
- onChanged();
- return this;
- }
- /**
- * repeated int32 skillIdList = 7;
- */
- public Builder clearSkillIdList() {
- skillIdList_ = java.util.Collections.emptyList();
- bitField0_ = (bitField0_ & ~0x00000040);
- onChanged();
- return this;
- }
-
// repeated string equipIdList = 8;
private com.google.protobuf.LazyStringList equipIdList_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureEquipIdListIsMutable() {
- if (!((bitField0_ & 0x00000080) == 0x00000080)) {
+ if (!((bitField0_ & 0x00000040) == 0x00000040)) {
equipIdList_ = new com.google.protobuf.LazyStringArrayList(equipIdList_);
- bitField0_ |= 0x00000080;
+ bitField0_ |= 0x00000040;
}
}
/**
@@ -8671,7 +9219,7 @@ public final class CommonProto {
*/
public Builder clearEquipIdList() {
equipIdList_ = com.google.protobuf.LazyStringArrayList.EMPTY;
- bitField0_ = (bitField0_ & ~0x00000080);
+ bitField0_ = (bitField0_ & ~0x00000040);
onChanged();
return this;
}
@@ -8699,7 +9247,7 @@ public final class CommonProto {
*
*/
public boolean hasCreateTime() {
- return ((bitField0_ & 0x00000100) == 0x00000100);
+ return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional int32 createTime = 9;
@@ -8719,7 +9267,7 @@ public final class CommonProto {
*
*/
public Builder setCreateTime(int value) {
- bitField0_ |= 0x00000100;
+ bitField0_ |= 0x00000080;
createTime_ = value;
onChanged();
return this;
@@ -8732,7 +9280,7 @@ public final class CommonProto {
*
*/
public Builder clearCreateTime() {
- bitField0_ = (bitField0_ & ~0x00000100);
+ bitField0_ = (bitField0_ & ~0x00000080);
createTime_ = 0;
onChanged();
return this;
@@ -8748,7 +9296,7 @@ public final class CommonProto {
*
*/
public boolean hasStarBreakId() {
- return ((bitField0_ & 0x00000200) == 0x00000200);
+ return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional int32 starBreakId = 10;
@@ -8768,7 +9316,7 @@ public final class CommonProto {
*
*/
public Builder setStarBreakId(int value) {
- bitField0_ |= 0x00000200;
+ bitField0_ |= 0x00000100;
starBreakId_ = value;
onChanged();
return this;
@@ -8781,7 +9329,7 @@ public final class CommonProto {
*
*/
public Builder clearStarBreakId() {
- bitField0_ = (bitField0_ & ~0x00000200);
+ bitField0_ = (bitField0_ & ~0x00000100);
starBreakId_ = 0;
onChanged();
return this;
@@ -8790,9 +9338,9 @@ public final class CommonProto {
// repeated string especialEquip = 11;
private com.google.protobuf.LazyStringList especialEquip_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureEspecialEquipIsMutable() {
- if (!((bitField0_ & 0x00000400) == 0x00000400)) {
+ if (!((bitField0_ & 0x00000200) == 0x00000200)) {
especialEquip_ = new com.google.protobuf.LazyStringArrayList(especialEquip_);
- bitField0_ |= 0x00000400;
+ bitField0_ |= 0x00000200;
}
}
/**
@@ -8894,7 +9442,7 @@ public final class CommonProto {
*/
public Builder clearEspecialEquip() {
especialEquip_ = com.google.protobuf.LazyStringArrayList.EMPTY;
- bitField0_ = (bitField0_ & ~0x00000400);
+ bitField0_ = (bitField0_ & ~0x00000200);
onChanged();
return this;
}
@@ -8920,9 +9468,9 @@ public final class CommonProto {
private java.util.Listoptional int32 lockState = 13;
@@ -9258,7 +9806,7 @@ public final class CommonProto {
*
*/
public Builder setLockState(int value) {
- bitField0_ |= 0x00001000;
+ bitField0_ |= 0x00000800;
lockState_ = value;
onChanged();
return this;
@@ -9271,7 +9819,7 @@ public final class CommonProto {
*
*/
public Builder clearLockState() {
- bitField0_ = (bitField0_ & ~0x00001000);
+ bitField0_ = (bitField0_ & ~0x00000800);
lockState_ = 0;
onChanged();
return this;
@@ -18644,1940 +19192,6 @@ public final class CommonProto {
// @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.GMCommand)
}
- public interface AdventureBossSimpleInfoOrBuilder
- extends com.google.protobuf.MessageOrBuilder {
-
- // optional int32 arenaId = 1;
- /**
- * optional int32 arenaId = 1;
- */
- boolean hasArenaId();
- /**
- * optional int32 arenaId = 1;
- */
- int getArenaId();
-
- // optional string bossId = 2;
- /**
- * optional string bossId = 2;
- */
- boolean hasBossId();
- /**
- * optional string bossId = 2;
- */
- java.lang.String getBossId();
- /**
- * optional string bossId = 2;
- */
- com.google.protobuf.ByteString
- getBossIdBytes();
-
- // optional int32 bossGroupId = 3;
- /**
- * optional int32 bossGroupId = 3;
- */
- boolean hasBossGroupId();
- /**
- * optional int32 bossGroupId = 3;
- */
- int getBossGroupId();
-
- // optional int32 remainTime = 4;
- /**
- * optional int32 remainTime = 4;
- */
- boolean hasRemainTime();
- /**
- * optional int32 remainTime = 4;
- */
- int getRemainTime();
-
- // optional string findUserName = 5;
- /**
- * optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - boolean hasFindUserName(); - /** - *
optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - java.lang.String getFindUserName(); - /** - *
optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - com.google.protobuf.ByteString - getFindUserNameBytes(); - } - /** - * Protobuf type {@code com.ljsd.jieling.protocols.AdventureBossSimpleInfo} - */ - public static final class AdventureBossSimpleInfo extends - com.google.protobuf.GeneratedMessage - implements AdventureBossSimpleInfoOrBuilder { - // Use AdventureBossSimpleInfo.newBuilder() to construct. - private AdventureBossSimpleInfo(com.google.protobuf.GeneratedMessage.Builder> builder) { - super(builder); - this.unknownFields = builder.getUnknownFields(); - } - private AdventureBossSimpleInfo(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } - - private static final AdventureBossSimpleInfo defaultInstance; - public static AdventureBossSimpleInfo getDefaultInstance() { - return defaultInstance; - } - - public AdventureBossSimpleInfo getDefaultInstanceForType() { - return defaultInstance; - } - - private final com.google.protobuf.UnknownFieldSet unknownFields; - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private AdventureBossSimpleInfo( - 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; - arenaId_ = input.readInt32(); - break; - } - case 18: { - bitField0_ |= 0x00000002; - bossId_ = input.readBytes(); - break; - } - case 24: { - bitField0_ |= 0x00000004; - bossGroupId_ = input.readInt32(); - break; - } - case 32: { - bitField0_ |= 0x00000008; - remainTime_ = input.readInt32(); - break; - } - case 42: { - bitField0_ |= 0x00000010; - findUserName_ = input.readBytes(); - 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.CommonProto.internal_static_com_ljsd_jieling_protocols_AdventureBossSimpleInfo_descriptor; - } - - protected com.google.protobuf.GeneratedMessage.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.ljsd.jieling.protocols.CommonProto.internal_static_com_ljsd_jieling_protocols_AdventureBossSimpleInfo_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.class, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder.class); - } - - public static com.google.protobuf.Parser
optional int32 arenaId = 1;
- */
- public boolean hasArenaId() {
- return ((bitField0_ & 0x00000001) == 0x00000001);
- }
- /**
- * optional int32 arenaId = 1;
- */
- public int getArenaId() {
- return arenaId_;
- }
-
- // optional string bossId = 2;
- public static final int BOSSID_FIELD_NUMBER = 2;
- private java.lang.Object bossId_;
- /**
- * optional string bossId = 2;
- */
- public boolean hasBossId() {
- return ((bitField0_ & 0x00000002) == 0x00000002);
- }
- /**
- * optional string bossId = 2;
- */
- public java.lang.String getBossId() {
- java.lang.Object ref = bossId_;
- if (ref instanceof java.lang.String) {
- return (java.lang.String) ref;
- } else {
- com.google.protobuf.ByteString bs =
- (com.google.protobuf.ByteString) ref;
- java.lang.String s = bs.toStringUtf8();
- if (bs.isValidUtf8()) {
- bossId_ = s;
- }
- return s;
- }
- }
- /**
- * optional string bossId = 2;
- */
- public com.google.protobuf.ByteString
- getBossIdBytes() {
- java.lang.Object ref = bossId_;
- if (ref instanceof java.lang.String) {
- com.google.protobuf.ByteString b =
- com.google.protobuf.ByteString.copyFromUtf8(
- (java.lang.String) ref);
- bossId_ = b;
- return b;
- } else {
- return (com.google.protobuf.ByteString) ref;
- }
- }
-
- // optional int32 bossGroupId = 3;
- public static final int BOSSGROUPID_FIELD_NUMBER = 3;
- private int bossGroupId_;
- /**
- * optional int32 bossGroupId = 3;
- */
- public boolean hasBossGroupId() {
- return ((bitField0_ & 0x00000004) == 0x00000004);
- }
- /**
- * optional int32 bossGroupId = 3;
- */
- public int getBossGroupId() {
- return bossGroupId_;
- }
-
- // optional int32 remainTime = 4;
- public static final int REMAINTIME_FIELD_NUMBER = 4;
- private int remainTime_;
- /**
- * optional int32 remainTime = 4;
- */
- public boolean hasRemainTime() {
- return ((bitField0_ & 0x00000008) == 0x00000008);
- }
- /**
- * optional int32 remainTime = 4;
- */
- public int getRemainTime() {
- return remainTime_;
- }
-
- // optional string findUserName = 5;
- public static final int FINDUSERNAME_FIELD_NUMBER = 5;
- private java.lang.Object findUserName_;
- /**
- * optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - public boolean hasFindUserName() { - return ((bitField0_ & 0x00000010) == 0x00000010); - } - /** - *
optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - public java.lang.String getFindUserName() { - java.lang.Object ref = findUserName_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (bs.isValidUtf8()) { - findUserName_ = s; - } - return s; - } - } - /** - *
optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - public com.google.protobuf.ByteString - getFindUserNameBytes() { - java.lang.Object ref = findUserName_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - findUserName_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - private void initFields() { - arenaId_ = 0; - bossId_ = ""; - bossGroupId_ = 0; - remainTime_ = 0; - findUserName_ = ""; - } - 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, arenaId_); - } - if (((bitField0_ & 0x00000002) == 0x00000002)) { - output.writeBytes(2, getBossIdBytes()); - } - if (((bitField0_ & 0x00000004) == 0x00000004)) { - output.writeInt32(3, bossGroupId_); - } - if (((bitField0_ & 0x00000008) == 0x00000008)) { - output.writeInt32(4, remainTime_); - } - if (((bitField0_ & 0x00000010) == 0x00000010)) { - output.writeBytes(5, getFindUserNameBytes()); - } - 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, arenaId_); - } - if (((bitField0_ & 0x00000002) == 0x00000002)) { - size += com.google.protobuf.CodedOutputStream - .computeBytesSize(2, getBossIdBytes()); - } - if (((bitField0_ & 0x00000004) == 0x00000004)) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(3, bossGroupId_); - } - if (((bitField0_ & 0x00000008) == 0x00000008)) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(4, remainTime_); - } - if (((bitField0_ & 0x00000010) == 0x00000010)) { - size += com.google.protobuf.CodedOutputStream - .computeBytesSize(5, getFindUserNameBytes()); - } - 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.CommonProto.AdventureBossSimpleInfo parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo 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.CommonProto.AdventureBossSimpleInfo parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data, extensionRegistry); - } - public static com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo parseFrom(java.io.InputStream input) - throws java.io.IOException { - return PARSER.parseFrom(input); - } - public static com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo 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.CommonProto.AdventureBossSimpleInfo parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return PARSER.parseDelimitedFrom(input); - } - public static com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo 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.CommonProto.AdventureBossSimpleInfo parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return PARSER.parseFrom(input); - } - public static com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo 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.CommonProto.AdventureBossSimpleInfo 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.AdventureBossSimpleInfo} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessage.Builder
optional int32 arenaId = 1;
- */
- public boolean hasArenaId() {
- return ((bitField0_ & 0x00000001) == 0x00000001);
- }
- /**
- * optional int32 arenaId = 1;
- */
- public int getArenaId() {
- return arenaId_;
- }
- /**
- * optional int32 arenaId = 1;
- */
- public Builder setArenaId(int value) {
- bitField0_ |= 0x00000001;
- arenaId_ = value;
- onChanged();
- return this;
- }
- /**
- * optional int32 arenaId = 1;
- */
- public Builder clearArenaId() {
- bitField0_ = (bitField0_ & ~0x00000001);
- arenaId_ = 0;
- onChanged();
- return this;
- }
-
- // optional string bossId = 2;
- private java.lang.Object bossId_ = "";
- /**
- * optional string bossId = 2;
- */
- public boolean hasBossId() {
- return ((bitField0_ & 0x00000002) == 0x00000002);
- }
- /**
- * optional string bossId = 2;
- */
- public java.lang.String getBossId() {
- java.lang.Object ref = bossId_;
- if (!(ref instanceof java.lang.String)) {
- java.lang.String s = ((com.google.protobuf.ByteString) ref)
- .toStringUtf8();
- bossId_ = s;
- return s;
- } else {
- return (java.lang.String) ref;
- }
- }
- /**
- * optional string bossId = 2;
- */
- public com.google.protobuf.ByteString
- getBossIdBytes() {
- java.lang.Object ref = bossId_;
- if (ref instanceof String) {
- com.google.protobuf.ByteString b =
- com.google.protobuf.ByteString.copyFromUtf8(
- (java.lang.String) ref);
- bossId_ = b;
- return b;
- } else {
- return (com.google.protobuf.ByteString) ref;
- }
- }
- /**
- * optional string bossId = 2;
- */
- public Builder setBossId(
- java.lang.String value) {
- if (value == null) {
- throw new NullPointerException();
- }
- bitField0_ |= 0x00000002;
- bossId_ = value;
- onChanged();
- return this;
- }
- /**
- * optional string bossId = 2;
- */
- public Builder clearBossId() {
- bitField0_ = (bitField0_ & ~0x00000002);
- bossId_ = getDefaultInstance().getBossId();
- onChanged();
- return this;
- }
- /**
- * optional string bossId = 2;
- */
- public Builder setBossIdBytes(
- com.google.protobuf.ByteString value) {
- if (value == null) {
- throw new NullPointerException();
- }
- bitField0_ |= 0x00000002;
- bossId_ = value;
- onChanged();
- return this;
- }
-
- // optional int32 bossGroupId = 3;
- private int bossGroupId_ ;
- /**
- * optional int32 bossGroupId = 3;
- */
- public boolean hasBossGroupId() {
- return ((bitField0_ & 0x00000004) == 0x00000004);
- }
- /**
- * optional int32 bossGroupId = 3;
- */
- public int getBossGroupId() {
- return bossGroupId_;
- }
- /**
- * optional int32 bossGroupId = 3;
- */
- public Builder setBossGroupId(int value) {
- bitField0_ |= 0x00000004;
- bossGroupId_ = value;
- onChanged();
- return this;
- }
- /**
- * optional int32 bossGroupId = 3;
- */
- public Builder clearBossGroupId() {
- bitField0_ = (bitField0_ & ~0x00000004);
- bossGroupId_ = 0;
- onChanged();
- return this;
- }
-
- // optional int32 remainTime = 4;
- private int remainTime_ ;
- /**
- * optional int32 remainTime = 4;
- */
- public boolean hasRemainTime() {
- return ((bitField0_ & 0x00000008) == 0x00000008);
- }
- /**
- * optional int32 remainTime = 4;
- */
- public int getRemainTime() {
- return remainTime_;
- }
- /**
- * optional int32 remainTime = 4;
- */
- public Builder setRemainTime(int value) {
- bitField0_ |= 0x00000008;
- remainTime_ = value;
- onChanged();
- return this;
- }
- /**
- * optional int32 remainTime = 4;
- */
- public Builder clearRemainTime() {
- bitField0_ = (bitField0_ & ~0x00000008);
- remainTime_ = 0;
- onChanged();
- return this;
- }
-
- // optional string findUserName = 5;
- private java.lang.Object findUserName_ = "";
- /**
- * optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - public boolean hasFindUserName() { - return ((bitField0_ & 0x00000010) == 0x00000010); - } - /** - *
optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - public java.lang.String getFindUserName() { - java.lang.Object ref = findUserName_; - if (!(ref instanceof java.lang.String)) { - java.lang.String s = ((com.google.protobuf.ByteString) ref) - .toStringUtf8(); - findUserName_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - *
optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - public com.google.protobuf.ByteString - getFindUserNameBytes() { - java.lang.Object ref = findUserName_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - findUserName_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - *
optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - public Builder setFindUserName( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000010; - findUserName_ = value; - onChanged(); - return this; - } - /** - *
optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - public Builder clearFindUserName() { - bitField0_ = (bitField0_ & ~0x00000010); - findUserName_ = getDefaultInstance().getFindUserName(); - onChanged(); - return this; - } - /** - *
optional string findUserName = 5;
- *
- * - * 发现者名字 - *- */ - public Builder setFindUserNameBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000010; - findUserName_ = value; - onChanged(); - return this; - } - - // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.AdventureBossSimpleInfo) - } - - static { - defaultInstance = new AdventureBossSimpleInfo(true); - defaultInstance.initFields(); - } - - // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.AdventureBossSimpleInfo) - } - - public interface AdventureStateInfoOrBuilder - extends com.google.protobuf.MessageOrBuilder { - - // optional int32 positionId = 1; - /** - *
optional int32 positionId = 1;
- *
- * - * 区域编号 - *- */ - boolean hasPositionId(); - /** - *
optional int32 positionId = 1;
- *
- * - * 区域编号 - *- */ - int getPositionId(); - - // optional int32 level = 2; - /** - *
optional int32 level = 2;
- *
- * - *区域等级 - *- */ - boolean hasLevel(); - /** - *
optional int32 level = 2;
- *
- * - *区域等级 - *- */ - int getLevel(); - - // optional int32 stateTime = 3; - /** - *
optional int32 stateTime = 3;
- *
- * - *挂机时长 - *- */ - boolean hasStateTime(); - /** - *
optional int32 stateTime = 3;
- *
- * - *挂机时长 - *- */ - int getStateTime(); - - // repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4; - /** - *
repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- java.util.Listrepeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo(int index);
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- int getAdventureBossSimpleInfoCount();
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder>
- getAdventureBossSimpleInfoOrBuilderList();
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder(
- int index);
- }
- /**
- * Protobuf type {@code com.ljsd.jieling.protocols.AdventureStateInfo}
- */
- public static final class AdventureStateInfo extends
- com.google.protobuf.GeneratedMessage
- implements AdventureStateInfoOrBuilder {
- // Use AdventureStateInfo.newBuilder() to construct.
- private AdventureStateInfo(com.google.protobuf.GeneratedMessage.Builder> builder) {
- super(builder);
- this.unknownFields = builder.getUnknownFields();
- }
- private AdventureStateInfo(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
-
- private static final AdventureStateInfo defaultInstance;
- public static AdventureStateInfo getDefaultInstance() {
- return defaultInstance;
- }
-
- public AdventureStateInfo getDefaultInstanceForType() {
- return defaultInstance;
- }
-
- private final com.google.protobuf.UnknownFieldSet unknownFields;
- @java.lang.Override
- public final com.google.protobuf.UnknownFieldSet
- getUnknownFields() {
- return this.unknownFields;
- }
- private AdventureStateInfo(
- 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;
- positionId_ = input.readInt32();
- break;
- }
- case 16: {
- bitField0_ |= 0x00000002;
- level_ = input.readInt32();
- break;
- }
- case 24: {
- bitField0_ |= 0x00000004;
- stateTime_ = input.readInt32();
- break;
- }
- case 34: {
- if (!((mutable_bitField0_ & 0x00000008) == 0x00000008)) {
- adventureBossSimpleInfo_ = new java.util.ArrayListoptional int32 positionId = 1;
- *
- * - * 区域编号 - *- */ - public boolean hasPositionId() { - return ((bitField0_ & 0x00000001) == 0x00000001); - } - /** - *
optional int32 positionId = 1;
- *
- * - * 区域编号 - *- */ - public int getPositionId() { - return positionId_; - } - - // 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_; - } - - // optional int32 stateTime = 3; - public static final int STATETIME_FIELD_NUMBER = 3; - private int stateTime_; - /** - *
optional int32 stateTime = 3;
- *
- * - *挂机时长 - *- */ - public boolean hasStateTime() { - return ((bitField0_ & 0x00000004) == 0x00000004); - } - /** - *
optional int32 stateTime = 3;
- *
- * - *挂机时长 - *- */ - public int getStateTime() { - return stateTime_; - } - - // repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4; - public static final int ADVENTUREBOSSSIMPLEINFO_FIELD_NUMBER = 4; - private java.util.List
repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public java.util.Listrepeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder>
- getAdventureBossSimpleInfoOrBuilderList() {
- return adventureBossSimpleInfo_;
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public int getAdventureBossSimpleInfoCount() {
- return adventureBossSimpleInfo_.size();
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo(int index) {
- return adventureBossSimpleInfo_.get(index);
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder(
- int index) {
- return adventureBossSimpleInfo_.get(index);
- }
-
- private void initFields() {
- positionId_ = 0;
- level_ = 0;
- stateTime_ = 0;
- adventureBossSimpleInfo_ = 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, positionId_);
- }
- if (((bitField0_ & 0x00000002) == 0x00000002)) {
- output.writeInt32(2, level_);
- }
- if (((bitField0_ & 0x00000004) == 0x00000004)) {
- output.writeInt32(3, stateTime_);
- }
- for (int i = 0; i < adventureBossSimpleInfo_.size(); i++) {
- output.writeMessage(4, adventureBossSimpleInfo_.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, positionId_);
- }
- if (((bitField0_ & 0x00000002) == 0x00000002)) {
- size += com.google.protobuf.CodedOutputStream
- .computeInt32Size(2, level_);
- }
- if (((bitField0_ & 0x00000004) == 0x00000004)) {
- size += com.google.protobuf.CodedOutputStream
- .computeInt32Size(3, stateTime_);
- }
- for (int i = 0; i < adventureBossSimpleInfo_.size(); i++) {
- size += com.google.protobuf.CodedOutputStream
- .computeMessageSize(4, adventureBossSimpleInfo_.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.CommonProto.AdventureStateInfo parseFrom(
- com.google.protobuf.ByteString data)
- throws com.google.protobuf.InvalidProtocolBufferException {
- return PARSER.parseFrom(data);
- }
- public static com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo 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.CommonProto.AdventureStateInfo parseFrom(byte[] data)
- throws com.google.protobuf.InvalidProtocolBufferException {
- return PARSER.parseFrom(data);
- }
- public static com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo parseFrom(
- byte[] data,
- com.google.protobuf.ExtensionRegistryLite extensionRegistry)
- throws com.google.protobuf.InvalidProtocolBufferException {
- return PARSER.parseFrom(data, extensionRegistry);
- }
- public static com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo parseFrom(java.io.InputStream input)
- throws java.io.IOException {
- return PARSER.parseFrom(input);
- }
- public static com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo 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.CommonProto.AdventureStateInfo parseDelimitedFrom(java.io.InputStream input)
- throws java.io.IOException {
- return PARSER.parseDelimitedFrom(input);
- }
- public static com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo 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.CommonProto.AdventureStateInfo parseFrom(
- com.google.protobuf.CodedInputStream input)
- throws java.io.IOException {
- return PARSER.parseFrom(input);
- }
- public static com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo 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.CommonProto.AdventureStateInfo 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.AdventureStateInfo}
- */
- public static final class Builder extends
- com.google.protobuf.GeneratedMessage.Builderoptional int32 positionId = 1;
- *
- * - * 区域编号 - *- */ - public boolean hasPositionId() { - return ((bitField0_ & 0x00000001) == 0x00000001); - } - /** - *
optional int32 positionId = 1;
- *
- * - * 区域编号 - *- */ - public int getPositionId() { - return positionId_; - } - /** - *
optional int32 positionId = 1;
- *
- * - * 区域编号 - *- */ - public Builder setPositionId(int value) { - bitField0_ |= 0x00000001; - positionId_ = value; - onChanged(); - return this; - } - /** - *
optional int32 positionId = 1;
- *
- * - * 区域编号 - *- */ - public Builder clearPositionId() { - bitField0_ = (bitField0_ & ~0x00000001); - positionId_ = 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; - } - - // optional int32 stateTime = 3; - private int stateTime_ ; - /** - *
optional int32 stateTime = 3;
- *
- * - *挂机时长 - *- */ - public boolean hasStateTime() { - return ((bitField0_ & 0x00000004) == 0x00000004); - } - /** - *
optional int32 stateTime = 3;
- *
- * - *挂机时长 - *- */ - public int getStateTime() { - return stateTime_; - } - /** - *
optional int32 stateTime = 3;
- *
- * - *挂机时长 - *- */ - public Builder setStateTime(int value) { - bitField0_ |= 0x00000004; - stateTime_ = value; - onChanged(); - return this; - } - /** - *
optional int32 stateTime = 3;
- *
- * - *挂机时长 - *- */ - public Builder clearStateTime() { - bitField0_ = (bitField0_ & ~0x00000004); - stateTime_ = 0; - onChanged(); - return this; - } - - // repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4; - private java.util.List
repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public java.util.Listrepeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public int getAdventureBossSimpleInfoCount() {
- if (adventureBossSimpleInfoBuilder_ == null) {
- return adventureBossSimpleInfo_.size();
- } else {
- return adventureBossSimpleInfoBuilder_.getCount();
- }
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo(int index) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- return adventureBossSimpleInfo_.get(index);
- } else {
- return adventureBossSimpleInfoBuilder_.getMessage(index);
- }
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public Builder setAdventureBossSimpleInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- if (value == null) {
- throw new NullPointerException();
- }
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.set(index, value);
- onChanged();
- } else {
- adventureBossSimpleInfoBuilder_.setMessage(index, value);
- }
- return this;
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public Builder setAdventureBossSimpleInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder builderForValue) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.set(index, builderForValue.build());
- onChanged();
- } else {
- adventureBossSimpleInfoBuilder_.setMessage(index, builderForValue.build());
- }
- return this;
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public Builder addAdventureBossSimpleInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- if (value == null) {
- throw new NullPointerException();
- }
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.add(value);
- onChanged();
- } else {
- adventureBossSimpleInfoBuilder_.addMessage(value);
- }
- return this;
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public Builder addAdventureBossSimpleInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- if (value == null) {
- throw new NullPointerException();
- }
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.add(index, value);
- onChanged();
- } else {
- adventureBossSimpleInfoBuilder_.addMessage(index, value);
- }
- return this;
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public Builder addAdventureBossSimpleInfo(
- com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder builderForValue) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.add(builderForValue.build());
- onChanged();
- } else {
- adventureBossSimpleInfoBuilder_.addMessage(builderForValue.build());
- }
- return this;
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public Builder addAdventureBossSimpleInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder builderForValue) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.add(index, builderForValue.build());
- onChanged();
- } else {
- adventureBossSimpleInfoBuilder_.addMessage(index, builderForValue.build());
- }
- return this;
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public Builder addAllAdventureBossSimpleInfo(
- java.lang.Iterable extends com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo> values) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- ensureAdventureBossSimpleInfoIsMutable();
- super.addAll(values, adventureBossSimpleInfo_);
- onChanged();
- } else {
- adventureBossSimpleInfoBuilder_.addAllMessages(values);
- }
- return this;
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public Builder clearAdventureBossSimpleInfo() {
- if (adventureBossSimpleInfoBuilder_ == null) {
- adventureBossSimpleInfo_ = java.util.Collections.emptyList();
- bitField0_ = (bitField0_ & ~0x00000008);
- onChanged();
- } else {
- adventureBossSimpleInfoBuilder_.clear();
- }
- return this;
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public Builder removeAdventureBossSimpleInfo(int index) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.remove(index);
- onChanged();
- } else {
- adventureBossSimpleInfoBuilder_.remove(index);
- }
- return this;
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder getAdventureBossSimpleInfoBuilder(
- int index) {
- return getAdventureBossSimpleInfoFieldBuilder().getBuilder(index);
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder(
- int index) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- return adventureBossSimpleInfo_.get(index); } else {
- return adventureBossSimpleInfoBuilder_.getMessageOrBuilder(index);
- }
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder>
- getAdventureBossSimpleInfoOrBuilderList() {
- if (adventureBossSimpleInfoBuilder_ != null) {
- return adventureBossSimpleInfoBuilder_.getMessageOrBuilderList();
- } else {
- return java.util.Collections.unmodifiableList(adventureBossSimpleInfo_);
- }
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder addAdventureBossSimpleInfoBuilder() {
- return getAdventureBossSimpleInfoFieldBuilder().addBuilder(
- com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance());
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder addAdventureBossSimpleInfoBuilder(
- int index) {
- return getAdventureBossSimpleInfoFieldBuilder().addBuilder(
- index, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance());
- }
- /**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- */
- public java.util.Listoptional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + boolean hasFightResult(); + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + int getFightResult(); } /** * Protobuf type {@code com.ljsd.jieling.protocols.ArenaRecordInfo} @@ -39652,6 +38284,11 @@ public final class CommonProto { myScoreChange_ = input.readInt32(); break; } + case 40: { + bitField0_ |= 0x00000010; + fightResult_ = input.readInt32(); + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -39829,11 +38466,36 @@ public final class CommonProto { return myScoreChange_; } + // optional int32 fightResult = 5; + public static final int FIGHTRESULT_FIELD_NUMBER = 5; + private int fightResult_; + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public boolean hasFightResult() { + return ((bitField0_ & 0x00000010) == 0x00000010); + } + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public int getFightResult() { + return fightResult_; + } + private void initFields() { id_ = ""; attackInfo_ = com.ljsd.jieling.protocols.CommonProto.ArenaPersonInfo.getDefaultInstance(); attackTime_ = 0; myScoreChange_ = 0; + fightResult_ = 0; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -39859,6 +38521,9 @@ public final class CommonProto { if (((bitField0_ & 0x00000008) == 0x00000008)) { output.writeInt32(4, myScoreChange_); } + if (((bitField0_ & 0x00000010) == 0x00000010)) { + output.writeInt32(5, fightResult_); + } getUnknownFields().writeTo(output); } @@ -39884,6 +38549,10 @@ public final class CommonProto { size += com.google.protobuf.CodedOutputStream .computeInt32Size(4, myScoreChange_); } + if (((bitField0_ & 0x00000010) == 0x00000010)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(5, fightResult_); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -40013,6 +38682,8 @@ public final class CommonProto { bitField0_ = (bitField0_ & ~0x00000004); myScoreChange_ = 0; bitField0_ = (bitField0_ & ~0x00000008); + fightResult_ = 0; + bitField0_ = (bitField0_ & ~0x00000010); return this; } @@ -40061,6 +38732,10 @@ public final class CommonProto { to_bitField0_ |= 0x00000008; } result.myScoreChange_ = myScoreChange_; + if (((from_bitField0_ & 0x00000010) == 0x00000010)) { + to_bitField0_ |= 0x00000010; + } + result.fightResult_ = fightResult_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -40091,6 +38766,9 @@ public final class CommonProto { if (other.hasMyScoreChange()) { setMyScoreChange(other.getMyScoreChange()); } + if (other.hasFightResult()) { + setFightResult(other.getFightResult()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -40467,6 +39145,55 @@ public final class CommonProto { return this; } + // optional int32 fightResult = 5; + private int fightResult_ ; + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public boolean hasFightResult() { + return ((bitField0_ & 0x00000010) == 0x00000010); + } + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public int getFightResult() { + return fightResult_; + } + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public Builder setFightResult(int value) { + bitField0_ |= 0x00000010; + fightResult_ = value; + onChanged(); + return this; + } + /** + *
optional int32 fightResult = 5;
+ *
+ * + * 战斗结果 + *+ */ + public Builder clearFightResult() { + bitField0_ = (bitField0_ & ~0x00000010); + fightResult_ = 0; + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.ArenaRecordInfo) } @@ -41336,6 +40063,16 @@ public final class CommonProto { * */ int getHeadFrame(); + + // optional int32 uid = 7; + /** + *
optional int32 uid = 7;
+ */
+ boolean hasUid();
+ /**
+ * optional int32 uid = 7;
+ */
+ int getUid();
}
/**
* Protobuf type {@code com.ljsd.jieling.protocols.AdventureRankItemInfo}
@@ -41418,6 +40155,11 @@ public final class CommonProto {
headFrame_ = input.readInt32();
break;
}
+ case 56: {
+ bitField0_ |= 0x00000040;
+ uid_ = input.readInt32();
+ break;
+ }
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -41605,6 +40347,22 @@ public final class CommonProto {
return headFrame_;
}
+ // optional int32 uid = 7;
+ public static final int UID_FIELD_NUMBER = 7;
+ private int uid_;
+ /**
+ * optional int32 uid = 7;
+ */
+ public boolean hasUid() {
+ return ((bitField0_ & 0x00000040) == 0x00000040);
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public int getUid() {
+ return uid_;
+ }
+
private void initFields() {
level_ = 0;
name_ = "";
@@ -41612,6 +40370,7 @@ public final class CommonProto {
head_ = 0;
rank_ = 0;
headFrame_ = 0;
+ uid_ = 0;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
@@ -41643,6 +40402,9 @@ public final class CommonProto {
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeInt32(6, headFrame_);
}
+ if (((bitField0_ & 0x00000040) == 0x00000040)) {
+ output.writeInt32(7, uid_);
+ }
getUnknownFields().writeTo(output);
}
@@ -41676,6 +40438,10 @@ public final class CommonProto {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(6, headFrame_);
}
+ if (((bitField0_ & 0x00000040) == 0x00000040)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(7, uid_);
+ }
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
@@ -41804,6 +40570,8 @@ public final class CommonProto {
bitField0_ = (bitField0_ & ~0x00000010);
headFrame_ = 0;
bitField0_ = (bitField0_ & ~0x00000020);
+ uid_ = 0;
+ bitField0_ = (bitField0_ & ~0x00000040);
return this;
}
@@ -41856,6 +40624,10 @@ public final class CommonProto {
to_bitField0_ |= 0x00000020;
}
result.headFrame_ = headFrame_;
+ if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
+ to_bitField0_ |= 0x00000040;
+ }
+ result.uid_ = uid_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
@@ -41892,6 +40664,9 @@ public final class CommonProto {
if (other.hasHeadFrame()) {
setHeadFrame(other.getHeadFrame());
}
+ if (other.hasUid()) {
+ setUid(other.getUid());
+ }
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
@@ -42206,6 +40981,39 @@ public final class CommonProto {
return this;
}
+ // optional int32 uid = 7;
+ private int uid_ ;
+ /**
+ * optional int32 uid = 7;
+ */
+ public boolean hasUid() {
+ return ((bitField0_ & 0x00000040) == 0x00000040);
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public int getUid() {
+ return uid_;
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public Builder setUid(int value) {
+ bitField0_ |= 0x00000040;
+ uid_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public Builder clearUid() {
+ bitField0_ = (bitField0_ & ~0x00000040);
+ uid_ = 0;
+ onChanged();
+ return this;
+ }
+
// @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.AdventureRankItemInfo)
}
@@ -42338,15 +41146,15 @@ public final class CommonProto {
*/
int getMyHurt();
- // optional int32 remainTime = 7;
+ // optional int32 levelTime = 7;
/**
- * optional int32 remainTime = 7;
+ * optional int32 levelTime = 7;
*/
- boolean hasRemainTime();
+ boolean hasLevelTime();
/**
- * optional int32 remainTime = 7;
+ * optional int32 levelTime = 7;
*/
- int getRemainTime();
+ int getLevelTime();
// optional int32 totalHp = 8;
/**
@@ -42485,7 +41293,7 @@ public final class CommonProto {
}
case 56: {
bitField0_ |= 0x00000040;
- remainTime_ = input.readInt32();
+ levelTime_ = input.readInt32();
break;
}
case 64: {
@@ -42741,20 +41549,20 @@ public final class CommonProto {
return myHurt_;
}
- // optional int32 remainTime = 7;
- public static final int REMAINTIME_FIELD_NUMBER = 7;
- private int remainTime_;
+ // optional int32 levelTime = 7;
+ public static final int LEVELTIME_FIELD_NUMBER = 7;
+ private int levelTime_;
/**
- * optional int32 remainTime = 7;
+ * optional int32 levelTime = 7;
*/
- public boolean hasRemainTime() {
+ public boolean hasLevelTime() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
- * optional int32 remainTime = 7;
+ * optional int32 levelTime = 7;
*/
- public int getRemainTime() {
- return remainTime_;
+ public int getLevelTime() {
+ return levelTime_;
}
// optional int32 totalHp = 8;
@@ -42836,7 +41644,7 @@ public final class CommonProto {
bossId_ = "";
bossGroupId_ = 0;
myHurt_ = 0;
- remainTime_ = 0;
+ levelTime_ = 0;
totalHp_ = 0;
bossRemainlHp_ = 0;
arenaLevel_ = 0;
@@ -42872,7 +41680,7 @@ public final class CommonProto {
output.writeInt32(6, myHurt_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
- output.writeInt32(7, remainTime_);
+ output.writeInt32(7, levelTime_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
output.writeInt32(8, totalHp_);
@@ -42918,7 +41726,7 @@ public final class CommonProto {
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
- .computeInt32Size(7, remainTime_);
+ .computeInt32Size(7, levelTime_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
size += com.google.protobuf.CodedOutputStream
@@ -43060,7 +41868,7 @@ public final class CommonProto {
bitField0_ = (bitField0_ & ~0x00000010);
myHurt_ = 0;
bitField0_ = (bitField0_ & ~0x00000020);
- remainTime_ = 0;
+ levelTime_ = 0;
bitField0_ = (bitField0_ & ~0x00000040);
totalHp_ = 0;
bitField0_ = (bitField0_ & ~0x00000080);
@@ -43123,7 +41931,7 @@ public final class CommonProto {
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
- result.remainTime_ = remainTime_;
+ result.levelTime_ = levelTime_;
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000080;
}
@@ -43174,8 +41982,8 @@ public final class CommonProto {
if (other.hasMyHurt()) {
setMyHurt(other.getMyHurt());
}
- if (other.hasRemainTime()) {
- setRemainTime(other.getRemainTime());
+ if (other.hasLevelTime()) {
+ setLevelTime(other.getLevelTime());
}
if (other.hasTotalHp()) {
setTotalHp(other.getTotalHp());
@@ -43589,35 +42397,35 @@ public final class CommonProto {
return this;
}
- // optional int32 remainTime = 7;
- private int remainTime_ ;
+ // optional int32 levelTime = 7;
+ private int levelTime_ ;
/**
- * optional int32 remainTime = 7;
+ * optional int32 levelTime = 7;
*/
- public boolean hasRemainTime() {
+ public boolean hasLevelTime() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
- * optional int32 remainTime = 7;
+ * optional int32 levelTime = 7;
*/
- public int getRemainTime() {
- return remainTime_;
+ public int getLevelTime() {
+ return levelTime_;
}
/**
- * optional int32 remainTime = 7;
+ * optional int32 levelTime = 7;
*/
- public Builder setRemainTime(int value) {
+ public Builder setLevelTime(int value) {
bitField0_ |= 0x00000040;
- remainTime_ = value;
+ levelTime_ = value;
onChanged();
return this;
}
/**
- * optional int32 remainTime = 7;
+ * optional int32 levelTime = 7;
*/
- public Builder clearRemainTime() {
+ public Builder clearLevelTime() {
bitField0_ = (bitField0_ & ~0x00000040);
- remainTime_ = 0;
+ levelTime_ = 0;
onChanged();
return this;
}
@@ -45402,6 +44210,24 @@ public final class CommonProto {
*/
int getIsGive();
+ // optional int32 isApplyed = 7;
+ /**
+ * optional int32 isApplyed = 7;
+ *
+ * + *是否已经申请过 + *+ */ + boolean hasIsApplyed(); + /** + *
optional int32 isApplyed = 7;
+ *
+ * + *是否已经申请过 + *+ */ + int getIsApplyed(); + // optional int32 head = 12; /** *
optional int32 head = 12;
@@ -45537,18 +44363,23 @@ public final class CommonProto {
isGive_ = input.readInt32();
break;
}
- case 96: {
+ case 56: {
bitField0_ |= 0x00000040;
+ isApplyed_ = input.readInt32();
+ break;
+ }
+ case 96: {
+ bitField0_ |= 0x00000080;
head_ = input.readInt32();
break;
}
case 104: {
- bitField0_ |= 0x00000080;
+ bitField0_ |= 0x00000100;
frame_ = input.readInt32();
break;
}
case 112: {
- bitField0_ |= 0x00000100;
+ bitField0_ |= 0x00000200;
soulVal_ = input.readInt32();
break;
}
@@ -45767,6 +44598,30 @@ public final class CommonProto {
return isGive_;
}
+ // optional int32 isApplyed = 7;
+ public static final int ISAPPLYED_FIELD_NUMBER = 7;
+ private int isApplyed_;
+ /**
+ * optional int32 isApplyed = 7;
+ *
+ * + *是否已经申请过 + *+ */ + public boolean hasIsApplyed() { + return ((bitField0_ & 0x00000040) == 0x00000040); + } + /** + *
optional int32 isApplyed = 7;
+ *
+ * + *是否已经申请过 + *+ */ + public int getIsApplyed() { + return isApplyed_; + } + // optional int32 head = 12; public static final int HEAD_FIELD_NUMBER = 12; private int head_; @@ -45778,7 +44633,7 @@ public final class CommonProto { * */ public boolean hasHead() { - return ((bitField0_ & 0x00000040) == 0x00000040); + return ((bitField0_ & 0x00000080) == 0x00000080); } /** *
optional int32 head = 12;
@@ -45802,7 +44657,7 @@ public final class CommonProto {
*
*/
public boolean hasFrame() {
- return ((bitField0_ & 0x00000080) == 0x00000080);
+ return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional int32 frame = 13;
@@ -45826,7 +44681,7 @@ public final class CommonProto {
*
*/
public boolean hasSoulVal() {
- return ((bitField0_ & 0x00000100) == 0x00000100);
+ return ((bitField0_ & 0x00000200) == 0x00000200);
}
/**
* optional int32 soulVal = 14;
@@ -45846,6 +44701,7 @@ public final class CommonProto {
offLineTime_ = 0L;
haveReward_ = 0;
isGive_ = 0;
+ isApplyed_ = 0;
head_ = 0;
frame_ = 0;
soulVal_ = 0;
@@ -45881,12 +44737,15 @@ public final class CommonProto {
output.writeInt32(6, isGive_);
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
- output.writeInt32(12, head_);
+ output.writeInt32(7, isApplyed_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
- output.writeInt32(13, frame_);
+ output.writeInt32(12, head_);
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
+ output.writeInt32(13, frame_);
+ }
+ if (((bitField0_ & 0x00000200) == 0x00000200)) {
output.writeInt32(14, soulVal_);
}
getUnknownFields().writeTo(output);
@@ -45924,13 +44783,17 @@ public final class CommonProto {
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
- .computeInt32Size(12, head_);
+ .computeInt32Size(7, isApplyed_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
size += com.google.protobuf.CodedOutputStream
- .computeInt32Size(13, frame_);
+ .computeInt32Size(12, head_);
}
if (((bitField0_ & 0x00000100) == 0x00000100)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(13, frame_);
+ }
+ if (((bitField0_ & 0x00000200) == 0x00000200)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(14, soulVal_);
}
@@ -46062,12 +44925,14 @@ public final class CommonProto {
bitField0_ = (bitField0_ & ~0x00000010);
isGive_ = 0;
bitField0_ = (bitField0_ & ~0x00000020);
- head_ = 0;
+ isApplyed_ = 0;
bitField0_ = (bitField0_ & ~0x00000040);
- frame_ = 0;
+ head_ = 0;
bitField0_ = (bitField0_ & ~0x00000080);
- soulVal_ = 0;
+ frame_ = 0;
bitField0_ = (bitField0_ & ~0x00000100);
+ soulVal_ = 0;
+ bitField0_ = (bitField0_ & ~0x00000200);
return this;
}
@@ -46123,14 +44988,18 @@ public final class CommonProto {
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
- result.head_ = head_;
+ result.isApplyed_ = isApplyed_;
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000080;
}
- result.frame_ = frame_;
+ result.head_ = head_;
if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
to_bitField0_ |= 0x00000100;
}
+ result.frame_ = frame_;
+ if (((from_bitField0_ & 0x00000200) == 0x00000200)) {
+ to_bitField0_ |= 0x00000200;
+ }
result.soulVal_ = soulVal_;
result.bitField0_ = to_bitField0_;
onBuilt();
@@ -46168,6 +45037,9 @@ public final class CommonProto {
if (other.hasIsGive()) {
setIsGive(other.getIsGive());
}
+ if (other.hasIsApplyed()) {
+ setIsApplyed(other.getIsApplyed());
+ }
if (other.hasHead()) {
setHead(other.getHead());
}
@@ -46547,6 +45419,55 @@ public final class CommonProto {
return this;
}
+ // optional int32 isApplyed = 7;
+ private int isApplyed_ ;
+ /**
+ * optional int32 isApplyed = 7;
+ *
+ * + *是否已经申请过 + *+ */ + public boolean hasIsApplyed() { + return ((bitField0_ & 0x00000040) == 0x00000040); + } + /** + *
optional int32 isApplyed = 7;
+ *
+ * + *是否已经申请过 + *+ */ + public int getIsApplyed() { + return isApplyed_; + } + /** + *
optional int32 isApplyed = 7;
+ *
+ * + *是否已经申请过 + *+ */ + public Builder setIsApplyed(int value) { + bitField0_ |= 0x00000040; + isApplyed_ = value; + onChanged(); + return this; + } + /** + *
optional int32 isApplyed = 7;
+ *
+ * + *是否已经申请过 + *+ */ + public Builder clearIsApplyed() { + bitField0_ = (bitField0_ & ~0x00000040); + isApplyed_ = 0; + onChanged(); + return this; + } + // optional int32 head = 12; private int head_ ; /** @@ -46557,7 +45478,7 @@ public final class CommonProto { * */ public boolean hasHead() { - return ((bitField0_ & 0x00000040) == 0x00000040); + return ((bitField0_ & 0x00000080) == 0x00000080); } /** *
optional int32 head = 12;
@@ -46577,7 +45498,7 @@ public final class CommonProto {
*
*/
public Builder setHead(int value) {
- bitField0_ |= 0x00000040;
+ bitField0_ |= 0x00000080;
head_ = value;
onChanged();
return this;
@@ -46590,7 +45511,7 @@ public final class CommonProto {
*
*/
public Builder clearHead() {
- bitField0_ = (bitField0_ & ~0x00000040);
+ bitField0_ = (bitField0_ & ~0x00000080);
head_ = 0;
onChanged();
return this;
@@ -46606,7 +45527,7 @@ public final class CommonProto {
*
*/
public boolean hasFrame() {
- return ((bitField0_ & 0x00000080) == 0x00000080);
+ return ((bitField0_ & 0x00000100) == 0x00000100);
}
/**
* optional int32 frame = 13;
@@ -46626,7 +45547,7 @@ public final class CommonProto {
*
*/
public Builder setFrame(int value) {
- bitField0_ |= 0x00000080;
+ bitField0_ |= 0x00000100;
frame_ = value;
onChanged();
return this;
@@ -46639,7 +45560,7 @@ public final class CommonProto {
*
*/
public Builder clearFrame() {
- bitField0_ = (bitField0_ & ~0x00000080);
+ bitField0_ = (bitField0_ & ~0x00000100);
frame_ = 0;
onChanged();
return this;
@@ -46655,7 +45576,7 @@ public final class CommonProto {
*
*/
public boolean hasSoulVal() {
- return ((bitField0_ & 0x00000100) == 0x00000100);
+ return ((bitField0_ & 0x00000200) == 0x00000200);
}
/**
* optional int32 soulVal = 14;
@@ -46675,7 +45596,7 @@ public final class CommonProto {
*
*/
public Builder setSoulVal(int value) {
- bitField0_ |= 0x00000100;
+ bitField0_ |= 0x00000200;
soulVal_ = value;
onChanged();
return this;
@@ -46688,7 +45609,7 @@ public final class CommonProto {
*
*/
public Builder clearSoulVal() {
- bitField0_ = (bitField0_ & ~0x00000100);
+ bitField0_ = (bitField0_ & ~0x00000200);
soulVal_ = 0;
onChanged();
return this;
@@ -51439,6 +50360,1664 @@ public final class CommonProto {
// @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.TowerRank)
}
+ public interface UserRankOrBuilder
+ extends com.google.protobuf.MessageOrBuilder {
+
+ // optional int32 uid = 1;
+ /**
+ * optional int32 uid = 1;
+ */
+ boolean hasUid();
+ /**
+ * optional int32 uid = 1;
+ */
+ int getUid();
+
+ // optional int32 level = 2;
+ /**
+ * optional int32 level = 2;
+ */
+ boolean hasLevel();
+ /**
+ * optional int32 level = 2;
+ */
+ int getLevel();
+
+ // optional int32 head = 3;
+ /**
+ * optional int32 head = 3;
+ */
+ boolean hasHead();
+ /**
+ * optional int32 head = 3;
+ */
+ int getHead();
+
+ // optional string userName = 4;
+ /**
+ * optional string userName = 4;
+ */
+ boolean hasUserName();
+ /**
+ * optional string userName = 4;
+ */
+ java.lang.String getUserName();
+ /**
+ * optional string userName = 4;
+ */
+ com.google.protobuf.ByteString
+ getUserNameBytes();
+
+ // optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ boolean hasRankInfo();
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ com.ljsd.jieling.protocols.CommonProto.RankInfo getRankInfo();
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getRankInfoOrBuilder();
+
+ // optional int32 headFrame = 6;
+ /**
+ * optional int32 headFrame = 6;
+ *
+ * + *头像框 + *+ */ + boolean hasHeadFrame(); + /** + *
optional int32 headFrame = 6;
+ *
+ * + *头像框 + *+ */ + int getHeadFrame(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.UserRank} + */ + public static final class UserRank extends + com.google.protobuf.GeneratedMessage + implements UserRankOrBuilder { + // Use UserRank.newBuilder() to construct. + private UserRank(com.google.protobuf.GeneratedMessage.Builder> builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private UserRank(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final UserRank defaultInstance; + public static UserRank getDefaultInstance() { + return defaultInstance; + } + + public UserRank getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private UserRank( + 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; + uid_ = input.readInt32(); + break; + } + case 16: { + bitField0_ |= 0x00000002; + level_ = input.readInt32(); + break; + } + case 24: { + bitField0_ |= 0x00000004; + head_ = input.readInt32(); + break; + } + case 34: { + bitField0_ |= 0x00000008; + userName_ = input.readBytes(); + break; + } + case 42: { + com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder subBuilder = null; + if (((bitField0_ & 0x00000010) == 0x00000010)) { + subBuilder = rankInfo_.toBuilder(); + } + rankInfo_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.RankInfo.PARSER, extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(rankInfo_); + rankInfo_ = subBuilder.buildPartial(); + } + bitField0_ |= 0x00000010; + break; + } + case 48: { + bitField0_ |= 0x00000020; + headFrame_ = 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.CommonProto.internal_static_com_ljsd_jieling_protocols_UserRank_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.CommonProto.internal_static_com_ljsd_jieling_protocols_UserRank_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.CommonProto.UserRank.class, com.ljsd.jieling.protocols.CommonProto.UserRank.Builder.class); + } + + public static com.google.protobuf.Parser
optional int32 uid = 1;
+ */
+ public boolean hasUid() {
+ return ((bitField0_ & 0x00000001) == 0x00000001);
+ }
+ /**
+ * optional int32 uid = 1;
+ */
+ public int getUid() {
+ return uid_;
+ }
+
+ // 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_;
+ }
+
+ // optional int32 head = 3;
+ public static final int HEAD_FIELD_NUMBER = 3;
+ private int head_;
+ /**
+ * optional int32 head = 3;
+ */
+ public boolean hasHead() {
+ return ((bitField0_ & 0x00000004) == 0x00000004);
+ }
+ /**
+ * optional int32 head = 3;
+ */
+ public int getHead() {
+ return head_;
+ }
+
+ // optional string userName = 4;
+ public static final int USERNAME_FIELD_NUMBER = 4;
+ private java.lang.Object userName_;
+ /**
+ * optional string userName = 4;
+ */
+ public boolean hasUserName() {
+ return ((bitField0_ & 0x00000008) == 0x00000008);
+ }
+ /**
+ * optional string userName = 4;
+ */
+ public java.lang.String getUserName() {
+ java.lang.Object ref = userName_;
+ if (ref instanceof java.lang.String) {
+ return (java.lang.String) ref;
+ } else {
+ com.google.protobuf.ByteString bs =
+ (com.google.protobuf.ByteString) ref;
+ java.lang.String s = bs.toStringUtf8();
+ if (bs.isValidUtf8()) {
+ userName_ = s;
+ }
+ return s;
+ }
+ }
+ /**
+ * optional string userName = 4;
+ */
+ public com.google.protobuf.ByteString
+ getUserNameBytes() {
+ java.lang.Object ref = userName_;
+ if (ref instanceof java.lang.String) {
+ com.google.protobuf.ByteString b =
+ com.google.protobuf.ByteString.copyFromUtf8(
+ (java.lang.String) ref);
+ userName_ = b;
+ return b;
+ } else {
+ return (com.google.protobuf.ByteString) ref;
+ }
+ }
+
+ // optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ public static final int RANKINFO_FIELD_NUMBER = 5;
+ private com.ljsd.jieling.protocols.CommonProto.RankInfo rankInfo_;
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ public boolean hasRankInfo() {
+ return ((bitField0_ & 0x00000010) == 0x00000010);
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.RankInfo getRankInfo() {
+ return rankInfo_;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getRankInfoOrBuilder() {
+ return rankInfo_;
+ }
+
+ // optional int32 headFrame = 6;
+ public static final int HEADFRAME_FIELD_NUMBER = 6;
+ private int headFrame_;
+ /**
+ * optional int32 headFrame = 6;
+ *
+ * + *头像框 + *+ */ + public boolean hasHeadFrame() { + return ((bitField0_ & 0x00000020) == 0x00000020); + } + /** + *
optional int32 headFrame = 6;
+ *
+ * + *头像框 + *+ */ + public int getHeadFrame() { + return headFrame_; + } + + private void initFields() { + uid_ = 0; + level_ = 0; + head_ = 0; + userName_ = ""; + rankInfo_ = com.ljsd.jieling.protocols.CommonProto.RankInfo.getDefaultInstance(); + headFrame_ = 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, uid_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeInt32(2, level_); + } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + output.writeInt32(3, head_); + } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + output.writeBytes(4, getUserNameBytes()); + } + if (((bitField0_ & 0x00000010) == 0x00000010)) { + output.writeMessage(5, rankInfo_); + } + if (((bitField0_ & 0x00000020) == 0x00000020)) { + output.writeInt32(6, headFrame_); + } + 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, uid_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(2, level_); + } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(3, head_); + } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + size += com.google.protobuf.CodedOutputStream + .computeBytesSize(4, getUserNameBytes()); + } + if (((bitField0_ & 0x00000010) == 0x00000010)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(5, rankInfo_); + } + if (((bitField0_ & 0x00000020) == 0x00000020)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(6, headFrame_); + } + 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.CommonProto.UserRank parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.CommonProto.UserRank 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.CommonProto.UserRank parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.CommonProto.UserRank parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.CommonProto.UserRank parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.CommonProto.UserRank 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.CommonProto.UserRank parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.CommonProto.UserRank 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.CommonProto.UserRank parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.CommonProto.UserRank 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.CommonProto.UserRank 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.UserRank} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder
optional int32 uid = 1;
+ */
+ public boolean hasUid() {
+ return ((bitField0_ & 0x00000001) == 0x00000001);
+ }
+ /**
+ * optional int32 uid = 1;
+ */
+ public int getUid() {
+ return uid_;
+ }
+ /**
+ * optional int32 uid = 1;
+ */
+ public Builder setUid(int value) {
+ bitField0_ |= 0x00000001;
+ uid_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 uid = 1;
+ */
+ public Builder clearUid() {
+ bitField0_ = (bitField0_ & ~0x00000001);
+ uid_ = 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;
+ }
+
+ // optional int32 head = 3;
+ private int head_ ;
+ /**
+ * optional int32 head = 3;
+ */
+ public boolean hasHead() {
+ return ((bitField0_ & 0x00000004) == 0x00000004);
+ }
+ /**
+ * optional int32 head = 3;
+ */
+ public int getHead() {
+ return head_;
+ }
+ /**
+ * optional int32 head = 3;
+ */
+ public Builder setHead(int value) {
+ bitField0_ |= 0x00000004;
+ head_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 head = 3;
+ */
+ public Builder clearHead() {
+ bitField0_ = (bitField0_ & ~0x00000004);
+ head_ = 0;
+ onChanged();
+ return this;
+ }
+
+ // optional string userName = 4;
+ private java.lang.Object userName_ = "";
+ /**
+ * optional string userName = 4;
+ */
+ public boolean hasUserName() {
+ return ((bitField0_ & 0x00000008) == 0x00000008);
+ }
+ /**
+ * optional string userName = 4;
+ */
+ public java.lang.String getUserName() {
+ java.lang.Object ref = userName_;
+ if (!(ref instanceof java.lang.String)) {
+ java.lang.String s = ((com.google.protobuf.ByteString) ref)
+ .toStringUtf8();
+ userName_ = s;
+ return s;
+ } else {
+ return (java.lang.String) ref;
+ }
+ }
+ /**
+ * optional string userName = 4;
+ */
+ public com.google.protobuf.ByteString
+ getUserNameBytes() {
+ java.lang.Object ref = userName_;
+ if (ref instanceof String) {
+ com.google.protobuf.ByteString b =
+ com.google.protobuf.ByteString.copyFromUtf8(
+ (java.lang.String) ref);
+ userName_ = b;
+ return b;
+ } else {
+ return (com.google.protobuf.ByteString) ref;
+ }
+ }
+ /**
+ * optional string userName = 4;
+ */
+ public Builder setUserName(
+ java.lang.String value) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ bitField0_ |= 0x00000008;
+ userName_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional string userName = 4;
+ */
+ public Builder clearUserName() {
+ bitField0_ = (bitField0_ & ~0x00000008);
+ userName_ = getDefaultInstance().getUserName();
+ onChanged();
+ return this;
+ }
+ /**
+ * optional string userName = 4;
+ */
+ public Builder setUserNameBytes(
+ com.google.protobuf.ByteString value) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ bitField0_ |= 0x00000008;
+ userName_ = value;
+ onChanged();
+ return this;
+ }
+
+ // optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ private com.ljsd.jieling.protocols.CommonProto.RankInfo rankInfo_ = com.ljsd.jieling.protocols.CommonProto.RankInfo.getDefaultInstance();
+ private com.google.protobuf.SingleFieldBuilder<
+ com.ljsd.jieling.protocols.CommonProto.RankInfo, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder, com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder> rankInfoBuilder_;
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ public boolean hasRankInfo() {
+ return ((bitField0_ & 0x00000010) == 0x00000010);
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.RankInfo getRankInfo() {
+ if (rankInfoBuilder_ == null) {
+ return rankInfo_;
+ } else {
+ return rankInfoBuilder_.getMessage();
+ }
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ public Builder setRankInfo(com.ljsd.jieling.protocols.CommonProto.RankInfo value) {
+ if (rankInfoBuilder_ == null) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ rankInfo_ = value;
+ onChanged();
+ } else {
+ rankInfoBuilder_.setMessage(value);
+ }
+ bitField0_ |= 0x00000010;
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ public Builder setRankInfo(
+ com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder builderForValue) {
+ if (rankInfoBuilder_ == null) {
+ rankInfo_ = builderForValue.build();
+ onChanged();
+ } else {
+ rankInfoBuilder_.setMessage(builderForValue.build());
+ }
+ bitField0_ |= 0x00000010;
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ public Builder mergeRankInfo(com.ljsd.jieling.protocols.CommonProto.RankInfo value) {
+ if (rankInfoBuilder_ == null) {
+ if (((bitField0_ & 0x00000010) == 0x00000010) &&
+ rankInfo_ != com.ljsd.jieling.protocols.CommonProto.RankInfo.getDefaultInstance()) {
+ rankInfo_ =
+ com.ljsd.jieling.protocols.CommonProto.RankInfo.newBuilder(rankInfo_).mergeFrom(value).buildPartial();
+ } else {
+ rankInfo_ = value;
+ }
+ onChanged();
+ } else {
+ rankInfoBuilder_.mergeFrom(value);
+ }
+ bitField0_ |= 0x00000010;
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ public Builder clearRankInfo() {
+ if (rankInfoBuilder_ == null) {
+ rankInfo_ = com.ljsd.jieling.protocols.CommonProto.RankInfo.getDefaultInstance();
+ onChanged();
+ } else {
+ rankInfoBuilder_.clear();
+ }
+ bitField0_ = (bitField0_ & ~0x00000010);
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder getRankInfoBuilder() {
+ bitField0_ |= 0x00000010;
+ onChanged();
+ return getRankInfoFieldBuilder().getBuilder();
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getRankInfoOrBuilder() {
+ if (rankInfoBuilder_ != null) {
+ return rankInfoBuilder_.getMessageOrBuilder();
+ } else {
+ return rankInfo_;
+ }
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo rankInfo = 5;
+ */
+ private com.google.protobuf.SingleFieldBuilder<
+ 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.SingleFieldBuilder<
+ com.ljsd.jieling.protocols.CommonProto.RankInfo, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder, com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder>(
+ rankInfo_,
+ getParentForChildren(),
+ isClean());
+ rankInfo_ = null;
+ }
+ return rankInfoBuilder_;
+ }
+
+ // optional int32 headFrame = 6;
+ private int headFrame_ ;
+ /**
+ * optional int32 headFrame = 6;
+ *
+ * + *头像框 + *+ */ + public boolean hasHeadFrame() { + return ((bitField0_ & 0x00000020) == 0x00000020); + } + /** + *
optional int32 headFrame = 6;
+ *
+ * + *头像框 + *+ */ + public int getHeadFrame() { + return headFrame_; + } + /** + *
optional int32 headFrame = 6;
+ *
+ * + *头像框 + *+ */ + public Builder setHeadFrame(int value) { + bitField0_ |= 0x00000020; + headFrame_ = value; + onChanged(); + return this; + } + /** + *
optional int32 headFrame = 6;
+ *
+ * + *头像框 + *+ */ + public Builder clearHeadFrame() { + bitField0_ = (bitField0_ & ~0x00000020); + headFrame_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.UserRank) + } + + static { + defaultInstance = new UserRank(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.UserRank) + } + + public interface RankInfoOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 rank = 1; + /** + *
optional int32 rank = 1;
+ */
+ boolean hasRank();
+ /**
+ * optional int32 rank = 1;
+ */
+ int getRank();
+
+ // optional int32 param1 = 2;
+ /**
+ * optional int32 param1 = 2;
+ */
+ boolean hasParam1();
+ /**
+ * optional int32 param1 = 2;
+ */
+ int getParam1();
+
+ // optional int32 param2 = 3;
+ /**
+ * optional int32 param2 = 3;
+ */
+ boolean hasParam2();
+ /**
+ * optional int32 param2 = 3;
+ */
+ int getParam2();
+
+ // optional int32 param3 = 4;
+ /**
+ * optional int32 param3 = 4;
+ */
+ boolean hasParam3();
+ /**
+ * optional int32 param3 = 4;
+ */
+ int getParam3();
+ }
+ /**
+ * Protobuf type {@code com.ljsd.jieling.protocols.RankInfo}
+ */
+ public static final class RankInfo extends
+ com.google.protobuf.GeneratedMessage
+ implements RankInfoOrBuilder {
+ // Use RankInfo.newBuilder() to construct.
+ private RankInfo(com.google.protobuf.GeneratedMessage.Builder> builder) {
+ super(builder);
+ this.unknownFields = builder.getUnknownFields();
+ }
+ private RankInfo(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
+
+ private static final RankInfo defaultInstance;
+ public static RankInfo getDefaultInstance() {
+ return defaultInstance;
+ }
+
+ public RankInfo getDefaultInstanceForType() {
+ return defaultInstance;
+ }
+
+ private final com.google.protobuf.UnknownFieldSet unknownFields;
+ @java.lang.Override
+ public final com.google.protobuf.UnknownFieldSet
+ getUnknownFields() {
+ return this.unknownFields;
+ }
+ private RankInfo(
+ 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;
+ rank_ = input.readInt32();
+ break;
+ }
+ case 16: {
+ bitField0_ |= 0x00000002;
+ param1_ = input.readInt32();
+ break;
+ }
+ case 24: {
+ bitField0_ |= 0x00000004;
+ param2_ = input.readInt32();
+ break;
+ }
+ case 32: {
+ bitField0_ |= 0x00000008;
+ param3_ = 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.CommonProto.internal_static_com_ljsd_jieling_protocols_RankInfo_descriptor;
+ }
+
+ protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
+ internalGetFieldAccessorTable() {
+ return com.ljsd.jieling.protocols.CommonProto.internal_static_com_ljsd_jieling_protocols_RankInfo_fieldAccessorTable
+ .ensureFieldAccessorsInitialized(
+ com.ljsd.jieling.protocols.CommonProto.RankInfo.class, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder.class);
+ }
+
+ public static com.google.protobuf.Parseroptional int32 rank = 1;
+ */
+ public boolean hasRank() {
+ return ((bitField0_ & 0x00000001) == 0x00000001);
+ }
+ /**
+ * optional int32 rank = 1;
+ */
+ public int getRank() {
+ return rank_;
+ }
+
+ // optional int32 param1 = 2;
+ public static final int PARAM1_FIELD_NUMBER = 2;
+ private int param1_;
+ /**
+ * optional int32 param1 = 2;
+ */
+ public boolean hasParam1() {
+ return ((bitField0_ & 0x00000002) == 0x00000002);
+ }
+ /**
+ * optional int32 param1 = 2;
+ */
+ public int getParam1() {
+ return param1_;
+ }
+
+ // optional int32 param2 = 3;
+ public static final int PARAM2_FIELD_NUMBER = 3;
+ private int param2_;
+ /**
+ * optional int32 param2 = 3;
+ */
+ public boolean hasParam2() {
+ return ((bitField0_ & 0x00000004) == 0x00000004);
+ }
+ /**
+ * optional int32 param2 = 3;
+ */
+ public int getParam2() {
+ return param2_;
+ }
+
+ // optional int32 param3 = 4;
+ public static final int PARAM3_FIELD_NUMBER = 4;
+ private int param3_;
+ /**
+ * optional int32 param3 = 4;
+ */
+ public boolean hasParam3() {
+ return ((bitField0_ & 0x00000008) == 0x00000008);
+ }
+ /**
+ * optional int32 param3 = 4;
+ */
+ public int getParam3() {
+ return param3_;
+ }
+
+ private void initFields() {
+ rank_ = 0;
+ param1_ = 0;
+ param2_ = 0;
+ param3_ = 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, rank_);
+ }
+ if (((bitField0_ & 0x00000002) == 0x00000002)) {
+ output.writeInt32(2, param1_);
+ }
+ if (((bitField0_ & 0x00000004) == 0x00000004)) {
+ output.writeInt32(3, param2_);
+ }
+ if (((bitField0_ & 0x00000008) == 0x00000008)) {
+ output.writeInt32(4, param3_);
+ }
+ 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, rank_);
+ }
+ if (((bitField0_ & 0x00000002) == 0x00000002)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(2, param1_);
+ }
+ if (((bitField0_ & 0x00000004) == 0x00000004)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(3, param2_);
+ }
+ if (((bitField0_ & 0x00000008) == 0x00000008)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(4, param3_);
+ }
+ 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.CommonProto.RankInfo parseFrom(
+ com.google.protobuf.ByteString data)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data);
+ }
+ public static com.ljsd.jieling.protocols.CommonProto.RankInfo 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.CommonProto.RankInfo parseFrom(byte[] data)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data);
+ }
+ public static com.ljsd.jieling.protocols.CommonProto.RankInfo parseFrom(
+ byte[] data,
+ com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data, extensionRegistry);
+ }
+ public static com.ljsd.jieling.protocols.CommonProto.RankInfo parseFrom(java.io.InputStream input)
+ throws java.io.IOException {
+ return PARSER.parseFrom(input);
+ }
+ public static com.ljsd.jieling.protocols.CommonProto.RankInfo 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.CommonProto.RankInfo parseDelimitedFrom(java.io.InputStream input)
+ throws java.io.IOException {
+ return PARSER.parseDelimitedFrom(input);
+ }
+ public static com.ljsd.jieling.protocols.CommonProto.RankInfo 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.CommonProto.RankInfo parseFrom(
+ com.google.protobuf.CodedInputStream input)
+ throws java.io.IOException {
+ return PARSER.parseFrom(input);
+ }
+ public static com.ljsd.jieling.protocols.CommonProto.RankInfo 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.CommonProto.RankInfo 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.RankInfo}
+ */
+ public static final class Builder extends
+ com.google.protobuf.GeneratedMessage.Builderoptional int32 rank = 1;
+ */
+ public boolean hasRank() {
+ return ((bitField0_ & 0x00000001) == 0x00000001);
+ }
+ /**
+ * optional int32 rank = 1;
+ */
+ public int getRank() {
+ return rank_;
+ }
+ /**
+ * optional int32 rank = 1;
+ */
+ public Builder setRank(int value) {
+ bitField0_ |= 0x00000001;
+ rank_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 rank = 1;
+ */
+ public Builder clearRank() {
+ bitField0_ = (bitField0_ & ~0x00000001);
+ rank_ = 0;
+ onChanged();
+ return this;
+ }
+
+ // optional int32 param1 = 2;
+ private int param1_ ;
+ /**
+ * optional int32 param1 = 2;
+ */
+ public boolean hasParam1() {
+ return ((bitField0_ & 0x00000002) == 0x00000002);
+ }
+ /**
+ * optional int32 param1 = 2;
+ */
+ public int getParam1() {
+ return param1_;
+ }
+ /**
+ * optional int32 param1 = 2;
+ */
+ public Builder setParam1(int value) {
+ bitField0_ |= 0x00000002;
+ param1_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 param1 = 2;
+ */
+ public Builder clearParam1() {
+ bitField0_ = (bitField0_ & ~0x00000002);
+ param1_ = 0;
+ onChanged();
+ return this;
+ }
+
+ // optional int32 param2 = 3;
+ private int param2_ ;
+ /**
+ * optional int32 param2 = 3;
+ */
+ public boolean hasParam2() {
+ return ((bitField0_ & 0x00000004) == 0x00000004);
+ }
+ /**
+ * optional int32 param2 = 3;
+ */
+ public int getParam2() {
+ return param2_;
+ }
+ /**
+ * optional int32 param2 = 3;
+ */
+ public Builder setParam2(int value) {
+ bitField0_ |= 0x00000004;
+ param2_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 param2 = 3;
+ */
+ public Builder clearParam2() {
+ bitField0_ = (bitField0_ & ~0x00000004);
+ param2_ = 0;
+ onChanged();
+ return this;
+ }
+
+ // optional int32 param3 = 4;
+ private int param3_ ;
+ /**
+ * optional int32 param3 = 4;
+ */
+ public boolean hasParam3() {
+ return ((bitField0_ & 0x00000008) == 0x00000008);
+ }
+ /**
+ * optional int32 param3 = 4;
+ */
+ public int getParam3() {
+ return param3_;
+ }
+ /**
+ * optional int32 param3 = 4;
+ */
+ public Builder setParam3(int value) {
+ bitField0_ |= 0x00000008;
+ param3_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 param3 = 4;
+ */
+ public Builder clearParam3() {
+ bitField0_ = (bitField0_ & ~0x00000008);
+ param3_ = 0;
+ onChanged();
+ return this;
+ }
+
+ // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.RankInfo)
+ }
+
+ static {
+ defaultInstance = new RankInfo(true);
+ defaultInstance.initFields();
+ }
+
+ // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.RankInfo)
+ }
+
public interface ActorEffectBufferInfoOrBuilder
extends com.google.protobuf.MessageOrBuilder {
@@ -65168,6 +65747,16 @@ public final class CommonProto {
* optional int32 headFrame = 6;
*/
int getHeadFrame();
+
+ // optional int32 uid = 7;
+ /**
+ * optional int32 uid = 7;
+ */
+ boolean hasUid();
+ /**
+ * optional int32 uid = 7;
+ */
+ int getUid();
}
/**
* Protobuf type {@code com.ljsd.jieling.protocols.UseForceInfo}
@@ -65254,6 +65843,11 @@ public final class CommonProto {
headFrame_ = input.readInt32();
break;
}
+ case 56: {
+ bitField0_ |= 0x00000040;
+ uid_ = input.readInt32();
+ break;
+ }
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -65417,6 +66011,22 @@ public final class CommonProto {
return headFrame_;
}
+ // optional int32 uid = 7;
+ public static final int UID_FIELD_NUMBER = 7;
+ private int uid_;
+ /**
+ * optional int32 uid = 7;
+ */
+ public boolean hasUid() {
+ return ((bitField0_ & 0x00000040) == 0x00000040);
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public int getUid() {
+ return uid_;
+ }
+
private void initFields() {
name_ = "";
leve_ = 0;
@@ -65424,6 +66034,7 @@ public final class CommonProto {
rank_ = 0;
head_ = 0;
headFrame_ = 0;
+ uid_ = 0;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
@@ -65455,6 +66066,9 @@ public final class CommonProto {
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeInt32(6, headFrame_);
}
+ if (((bitField0_ & 0x00000040) == 0x00000040)) {
+ output.writeInt32(7, uid_);
+ }
getUnknownFields().writeTo(output);
}
@@ -65488,6 +66102,10 @@ public final class CommonProto {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(6, headFrame_);
}
+ if (((bitField0_ & 0x00000040) == 0x00000040)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(7, uid_);
+ }
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
@@ -65620,6 +66238,8 @@ public final class CommonProto {
bitField0_ = (bitField0_ & ~0x00000010);
headFrame_ = 0;
bitField0_ = (bitField0_ & ~0x00000020);
+ uid_ = 0;
+ bitField0_ = (bitField0_ & ~0x00000040);
return this;
}
@@ -65672,6 +66292,10 @@ public final class CommonProto {
to_bitField0_ |= 0x00000020;
}
result.headFrame_ = headFrame_;
+ if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
+ to_bitField0_ |= 0x00000040;
+ }
+ result.uid_ = uid_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
@@ -65708,6 +66332,9 @@ public final class CommonProto {
if (other.hasHeadFrame()) {
setHeadFrame(other.getHeadFrame());
}
+ if (other.hasUid()) {
+ setUid(other.getUid());
+ }
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
@@ -65974,6 +66601,39 @@ public final class CommonProto {
return this;
}
+ // optional int32 uid = 7;
+ private int uid_ ;
+ /**
+ * optional int32 uid = 7;
+ */
+ public boolean hasUid() {
+ return ((bitField0_ & 0x00000040) == 0x00000040);
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public int getUid() {
+ return uid_;
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public Builder setUid(int value) {
+ bitField0_ |= 0x00000040;
+ uid_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public Builder clearUid() {
+ bitField0_ = (bitField0_ & ~0x00000040);
+ uid_ = 0;
+ onChanged();
+ return this;
+ }
+
// @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.UseForceInfo)
}
@@ -70060,6 +70720,33 @@ public final class CommonProto {
*/
int getHeadFrame();
+ // optional string guildName = 7;
+ /**
+ * optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + boolean hasGuildName(); + /** + *
optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + java.lang.String getGuildName(); + /** + *
optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + com.google.protobuf.ByteString + getGuildNameBytes(); + // optional .com.ljsd.jieling.protocols.TeamOneTeamInfo team = 6; /** *
optional .com.ljsd.jieling.protocols.TeamOneTeamInfo team = 6;
@@ -70073,6 +70760,24 @@ public final class CommonProto {
* optional .com.ljsd.jieling.protocols.TeamOneTeamInfo team = 6;
*/
com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfoOrBuilder getTeamOrBuilder();
+
+ // optional int32 isApplyed = 8;
+ /**
+ * optional int32 isApplyed = 8;
+ *
+ * + *是否已经申请过 + *+ */ + boolean hasIsApplyed(); + /** + *
optional int32 isApplyed = 8;
+ *
+ * + *是否已经申请过 + *+ */ + int getIsApplyed(); } /** * Protobuf type {@code com.ljsd.jieling.protocols.TeamOneInfo} @@ -70156,7 +70861,7 @@ public final class CommonProto { } case 50: { com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfo.Builder subBuilder = null; - if (((bitField0_ & 0x00000020) == 0x00000020)) { + if (((bitField0_ & 0x00000040) == 0x00000040)) { subBuilder = team_.toBuilder(); } team_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfo.PARSER, extensionRegistry); @@ -70164,7 +70869,17 @@ public final class CommonProto { subBuilder.mergeFrom(team_); team_ = subBuilder.buildPartial(); } + bitField0_ |= 0x00000040; + break; + } + case 58: { bitField0_ |= 0x00000020; + guildName_ = input.readBytes(); + break; + } + case 64: { + bitField0_ |= 0x00000080; + isApplyed_ = input.readInt32(); break; } } @@ -70314,6 +71029,61 @@ public final class CommonProto { return headFrame_; } + // optional string guildName = 7; + public static final int GUILDNAME_FIELD_NUMBER = 7; + private java.lang.Object guildName_; + /** + *
optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + public boolean hasGuildName() { + return ((bitField0_ & 0x00000020) == 0x00000020); + } + /** + *
optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + public java.lang.String getGuildName() { + java.lang.Object ref = guildName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (bs.isValidUtf8()) { + guildName_ = s; + } + return s; + } + } + /** + *
optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + public com.google.protobuf.ByteString + getGuildNameBytes() { + java.lang.Object ref = guildName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + guildName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + // optional .com.ljsd.jieling.protocols.TeamOneTeamInfo team = 6; public static final int TEAM_FIELD_NUMBER = 6; private com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfo team_; @@ -70321,7 +71091,7 @@ public final class CommonProto { *
optional .com.ljsd.jieling.protocols.TeamOneTeamInfo team = 6;
*/
public boolean hasTeam() {
- return ((bitField0_ & 0x00000020) == 0x00000020);
+ return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional .com.ljsd.jieling.protocols.TeamOneTeamInfo team = 6;
@@ -70336,13 +71106,39 @@ public final class CommonProto {
return team_;
}
+ // optional int32 isApplyed = 8;
+ public static final int ISAPPLYED_FIELD_NUMBER = 8;
+ private int isApplyed_;
+ /**
+ * optional int32 isApplyed = 8;
+ *
+ * + *是否已经申请过 + *+ */ + public boolean hasIsApplyed() { + return ((bitField0_ & 0x00000080) == 0x00000080); + } + /** + *
optional int32 isApplyed = 8;
+ *
+ * + *是否已经申请过 + *+ */ + public int getIsApplyed() { + return isApplyed_; + } + private void initFields() { uid_ = 0; level_ = 0; name_ = ""; head_ = 0; headFrame_ = 0; + guildName_ = ""; team_ = com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfo.getDefaultInstance(); + isApplyed_ = 0; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -70371,9 +71167,15 @@ public final class CommonProto { if (((bitField0_ & 0x00000010) == 0x00000010)) { output.writeInt32(5, headFrame_); } - if (((bitField0_ & 0x00000020) == 0x00000020)) { + if (((bitField0_ & 0x00000040) == 0x00000040)) { output.writeMessage(6, team_); } + if (((bitField0_ & 0x00000020) == 0x00000020)) { + output.writeBytes(7, getGuildNameBytes()); + } + if (((bitField0_ & 0x00000080) == 0x00000080)) { + output.writeInt32(8, isApplyed_); + } getUnknownFields().writeTo(output); } @@ -70403,10 +71205,18 @@ public final class CommonProto { size += com.google.protobuf.CodedOutputStream .computeInt32Size(5, headFrame_); } - if (((bitField0_ & 0x00000020) == 0x00000020)) { + if (((bitField0_ & 0x00000040) == 0x00000040)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(6, team_); } + if (((bitField0_ & 0x00000020) == 0x00000020)) { + size += com.google.protobuf.CodedOutputStream + .computeBytesSize(7, getGuildNameBytes()); + } + if (((bitField0_ & 0x00000080) == 0x00000080)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(8, isApplyed_); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -70538,12 +71348,16 @@ public final class CommonProto { bitField0_ = (bitField0_ & ~0x00000008); headFrame_ = 0; bitField0_ = (bitField0_ & ~0x00000010); + guildName_ = ""; + bitField0_ = (bitField0_ & ~0x00000020); if (teamBuilder_ == null) { team_ = com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfo.getDefaultInstance(); } else { teamBuilder_.clear(); } - bitField0_ = (bitField0_ & ~0x00000020); + bitField0_ = (bitField0_ & ~0x00000040); + isApplyed_ = 0; + bitField0_ = (bitField0_ & ~0x00000080); return this; } @@ -70595,11 +71409,19 @@ public final class CommonProto { if (((from_bitField0_ & 0x00000020) == 0x00000020)) { to_bitField0_ |= 0x00000020; } + result.guildName_ = guildName_; + if (((from_bitField0_ & 0x00000040) == 0x00000040)) { + to_bitField0_ |= 0x00000040; + } if (teamBuilder_ == null) { result.team_ = team_; } else { result.team_ = teamBuilder_.build(); } + if (((from_bitField0_ & 0x00000080) == 0x00000080)) { + to_bitField0_ |= 0x00000080; + } + result.isApplyed_ = isApplyed_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -70633,9 +71455,17 @@ public final class CommonProto { if (other.hasHeadFrame()) { setHeadFrame(other.getHeadFrame()); } + if (other.hasGuildName()) { + bitField0_ |= 0x00000020; + guildName_ = other.guildName_; + onChanged(); + } if (other.hasTeam()) { mergeTeam(other.getTeam()); } + if (other.hasIsApplyed()) { + setIsApplyed(other.getIsApplyed()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -70869,6 +71699,104 @@ public final class CommonProto { return this; } + // optional string guildName = 7; + private java.lang.Object guildName_ = ""; + /** + *
optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + public boolean hasGuildName() { + return ((bitField0_ & 0x00000020) == 0x00000020); + } + /** + *
optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + public java.lang.String getGuildName() { + java.lang.Object ref = guildName_; + if (!(ref instanceof java.lang.String)) { + java.lang.String s = ((com.google.protobuf.ByteString) ref) + .toStringUtf8(); + guildName_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + public com.google.protobuf.ByteString + getGuildNameBytes() { + java.lang.Object ref = guildName_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + guildName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + public Builder setGuildName( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000020; + guildName_ = value; + onChanged(); + return this; + } + /** + *
optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + public Builder clearGuildName() { + bitField0_ = (bitField0_ & ~0x00000020); + guildName_ = getDefaultInstance().getGuildName(); + onChanged(); + return this; + } + /** + *
optional string guildName = 7;
+ *
+ * + *公会名称 + *+ */ + public Builder setGuildNameBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000020; + guildName_ = value; + onChanged(); + return this; + } + // optional .com.ljsd.jieling.protocols.TeamOneTeamInfo team = 6; private com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfo team_ = com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfo.getDefaultInstance(); private com.google.protobuf.SingleFieldBuilder< @@ -70877,7 +71805,7 @@ public final class CommonProto { *
optional .com.ljsd.jieling.protocols.TeamOneTeamInfo team = 6;
*/
public boolean hasTeam() {
- return ((bitField0_ & 0x00000020) == 0x00000020);
+ return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional .com.ljsd.jieling.protocols.TeamOneTeamInfo team = 6;
@@ -70902,7 +71830,7 @@ public final class CommonProto {
} else {
teamBuilder_.setMessage(value);
}
- bitField0_ |= 0x00000020;
+ bitField0_ |= 0x00000040;
return this;
}
/**
@@ -70916,7 +71844,7 @@ public final class CommonProto {
} else {
teamBuilder_.setMessage(builderForValue.build());
}
- bitField0_ |= 0x00000020;
+ bitField0_ |= 0x00000040;
return this;
}
/**
@@ -70924,7 +71852,7 @@ public final class CommonProto {
*/
public Builder mergeTeam(com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfo value) {
if (teamBuilder_ == null) {
- if (((bitField0_ & 0x00000020) == 0x00000020) &&
+ if (((bitField0_ & 0x00000040) == 0x00000040) &&
team_ != com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfo.getDefaultInstance()) {
team_ =
com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfo.newBuilder(team_).mergeFrom(value).buildPartial();
@@ -70935,7 +71863,7 @@ public final class CommonProto {
} else {
teamBuilder_.mergeFrom(value);
}
- bitField0_ |= 0x00000020;
+ bitField0_ |= 0x00000040;
return this;
}
/**
@@ -70948,14 +71876,14 @@ public final class CommonProto {
} else {
teamBuilder_.clear();
}
- bitField0_ = (bitField0_ & ~0x00000020);
+ bitField0_ = (bitField0_ & ~0x00000040);
return this;
}
/**
* optional .com.ljsd.jieling.protocols.TeamOneTeamInfo team = 6;
*/
public com.ljsd.jieling.protocols.CommonProto.TeamOneTeamInfo.Builder getTeamBuilder() {
- bitField0_ |= 0x00000020;
+ bitField0_ |= 0x00000040;
onChanged();
return getTeamFieldBuilder().getBuilder();
}
@@ -70986,6 +71914,55 @@ public final class CommonProto {
return teamBuilder_;
}
+ // optional int32 isApplyed = 8;
+ private int isApplyed_ ;
+ /**
+ * optional int32 isApplyed = 8;
+ *
+ * + *是否已经申请过 + *+ */ + public boolean hasIsApplyed() { + return ((bitField0_ & 0x00000080) == 0x00000080); + } + /** + *
optional int32 isApplyed = 8;
+ *
+ * + *是否已经申请过 + *+ */ + public int getIsApplyed() { + return isApplyed_; + } + /** + *
optional int32 isApplyed = 8;
+ *
+ * + *是否已经申请过 + *+ */ + public Builder setIsApplyed(int value) { + bitField0_ |= 0x00000080; + isApplyed_ = value; + onChanged(); + return this; + } + /** + *
optional int32 isApplyed = 8;
+ *
+ * + *是否已经申请过 + *+ */ + public Builder clearIsApplyed() { + bitField0_ = (bitField0_ & ~0x00000080); + isApplyed_ = 0; + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.TeamOneInfo) } @@ -71064,6 +72041,16 @@ public final class CommonProto { *
optional int32 headFrame = 6;
*/
int getHeadFrame();
+
+ // optional int32 uid = 7;
+ /**
+ * optional int32 uid = 7;
+ */
+ boolean hasUid();
+ /**
+ * optional int32 uid = 7;
+ */
+ int getUid();
}
/**
* Protobuf type {@code com.ljsd.jieling.protocols.MonsterRankInfo}
@@ -71150,6 +72137,11 @@ public final class CommonProto {
headFrame_ = input.readInt32();
break;
}
+ case 56: {
+ bitField0_ |= 0x00000040;
+ uid_ = input.readInt32();
+ break;
+ }
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
@@ -71313,6 +72305,22 @@ public final class CommonProto {
return headFrame_;
}
+ // optional int32 uid = 7;
+ public static final int UID_FIELD_NUMBER = 7;
+ private int uid_;
+ /**
+ * optional int32 uid = 7;
+ */
+ public boolean hasUid() {
+ return ((bitField0_ & 0x00000040) == 0x00000040);
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public int getUid() {
+ return uid_;
+ }
+
private void initFields() {
name_ = "";
score_ = 0;
@@ -71320,6 +72328,7 @@ public final class CommonProto {
level_ = 0;
head_ = 0;
headFrame_ = 0;
+ uid_ = 0;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
@@ -71351,6 +72360,9 @@ public final class CommonProto {
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeInt32(6, headFrame_);
}
+ if (((bitField0_ & 0x00000040) == 0x00000040)) {
+ output.writeInt32(7, uid_);
+ }
getUnknownFields().writeTo(output);
}
@@ -71384,6 +72396,10 @@ public final class CommonProto {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(6, headFrame_);
}
+ if (((bitField0_ & 0x00000040) == 0x00000040)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(7, uid_);
+ }
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
@@ -71516,6 +72532,8 @@ public final class CommonProto {
bitField0_ = (bitField0_ & ~0x00000010);
headFrame_ = 0;
bitField0_ = (bitField0_ & ~0x00000020);
+ uid_ = 0;
+ bitField0_ = (bitField0_ & ~0x00000040);
return this;
}
@@ -71568,6 +72586,10 @@ public final class CommonProto {
to_bitField0_ |= 0x00000020;
}
result.headFrame_ = headFrame_;
+ if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
+ to_bitField0_ |= 0x00000040;
+ }
+ result.uid_ = uid_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
@@ -71604,6 +72626,9 @@ public final class CommonProto {
if (other.hasHeadFrame()) {
setHeadFrame(other.getHeadFrame());
}
+ if (other.hasUid()) {
+ setUid(other.getUid());
+ }
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
@@ -71870,6 +72895,39 @@ public final class CommonProto {
return this;
}
+ // optional int32 uid = 7;
+ private int uid_ ;
+ /**
+ * optional int32 uid = 7;
+ */
+ public boolean hasUid() {
+ return ((bitField0_ & 0x00000040) == 0x00000040);
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public int getUid() {
+ return uid_;
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public Builder setUid(int value) {
+ bitField0_ |= 0x00000040;
+ uid_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 uid = 7;
+ */
+ public Builder clearUid() {
+ bitField0_ = (bitField0_ & ~0x00000040);
+ uid_ = 0;
+ onChanged();
+ return this;
+ }
+
// @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.MonsterRankInfo)
}
@@ -79204,16 +80262,6 @@ public final class CommonProto {
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_com_ljsd_jieling_protocols_GMCommand_fieldAccessorTable;
- private static com.google.protobuf.Descriptors.Descriptor
- internal_static_com_ljsd_jieling_protocols_AdventureBossSimpleInfo_descriptor;
- private static
- com.google.protobuf.GeneratedMessage.FieldAccessorTable
- internal_static_com_ljsd_jieling_protocols_AdventureBossSimpleInfo_fieldAccessorTable;
- private static com.google.protobuf.Descriptors.Descriptor
- internal_static_com_ljsd_jieling_protocols_AdventureStateInfo_descriptor;
- private static
- com.google.protobuf.GeneratedMessage.FieldAccessorTable
- internal_static_com_ljsd_jieling_protocols_AdventureStateInfo_fieldAccessorTable;
private static com.google.protobuf.Descriptors.Descriptor
internal_static_com_ljsd_jieling_protocols_TeamHeroInfo_descriptor;
private static
@@ -79404,6 +80452,16 @@ public final class CommonProto {
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_com_ljsd_jieling_protocols_TowerRank_fieldAccessorTable;
+ private static com.google.protobuf.Descriptors.Descriptor
+ internal_static_com_ljsd_jieling_protocols_UserRank_descriptor;
+ private static
+ com.google.protobuf.GeneratedMessage.FieldAccessorTable
+ internal_static_com_ljsd_jieling_protocols_UserRank_fieldAccessorTable;
+ private static com.google.protobuf.Descriptors.Descriptor
+ internal_static_com_ljsd_jieling_protocols_RankInfo_descriptor;
+ private static
+ com.google.protobuf.GeneratedMessage.FieldAccessorTable
+ internal_static_com_ljsd_jieling_protocols_RankInfo_fieldAccessorTable;
private static com.google.protobuf.Descriptors.Descriptor
internal_static_com_ljsd_jieling_protocols_ActorEffectBufferInfo_descriptor;
private static
@@ -79574,239 +80632,242 @@ public final class CommonProto {
static {
java.lang.String[] descriptorData = {
"\n\021CommonProto.proto\022\032com.ljsd.jieling.pr" +
- "otocols\"0\n\rErrorResponse\022\017\n\007errCode\030\001 \001(" +
- "\005\022\016\n\006errMsg\030\002 \001(\t\"\356\002\n\006Player\022\013\n\003uid\030\001 \001(" +
- "\005\022\020\n\010nickName\030\002 \001(\t\022\r\n\005level\030\003 \001(\005\022\013\n\003ex" +
- "p\030\004 \001(\005\022\020\n\010vipLevel\030\005 \001(\005\022\020\n\010familyId\030\006 " +
- "\001(\005\022\014\n\004head\030\007 \001(\005\022\020\n\010curMapId\030\010 \001(\005\022\016\n\006e" +
- "nergy\030\t \001(\005\022\034\n\024lastUpdateEnergyTime\030\n \001(" +
- "\005\022\022\n\nserverTime\030\013 \001(\005\022\020\n\010maxForce\030\014 \001(\005\022" +
- "\017\n\007saveAmt\030\r \001(\005\022\024\n\014rechargeTime\030\016 \001(\005\022\027" +
- "\n\017isFirstRecharge\030\017 \001(\005\022\023\n\013isMatchRoom\030\020",
- " \001(\005\022\023\n\013curRoomType\030\021 \001(\005\022\021\n\theadFrame\030\022" +
- " \001(\005\022\024\n\014roomAddreess\030\023 \001(\t\"*\n\tPrivilege\022" +
- "\n\n\002id\030\001 \001(\005\022\021\n\tusedTimes\030\002 \001(\005\"R\n\004Item\022\016" +
- "\n\006itemId\030\001 \001(\005\022\017\n\007itemNum\030\002 \001(\005\022\022\n\nendin" +
- "gTime\030\003 \001(\005\022\025\n\rnextFlushTime\030\004 \001(\005\";\n\016Sp" +
- "ecialEffects\022\022\n\npropertyId\030\001 \001(\005\022\025\n\rprop" +
- "ertyValue\030\002 \001(\005\"\206\002\n\005Equip\022\n\n\002id\030\001 \001(\t\022\017\n" +
- "\007equipId\030\002 \001(\005\022A\n\rmainAttribute\030\003 \001(\0132*." +
- "com.ljsd.jieling.protocols.SpecialEffect" +
- "s\022C\n\017secondAttribute\030\004 \003(\0132*.com.ljsd.ji",
- "eling.protocols.SpecialEffects\022\024\n\014rebuil" +
- "dLevel\030\005 \001(\005\022\022\n\ncreateTime\030\006 \001(\005\022\017\n\007skil" +
- "lId\030\007 \001(\005\022\020\n\010isLocked\030\010 \001(\005\022\013\n\003exp\030\t \001(\005" +
- "\",\n\007SoulPos\022\017\n\007equipId\030\001 \001(\t\022\020\n\010position" +
- "\030\002 \001(\005\"\223\002\n\004Hero\022\n\n\002id\030\001 \001(\t\022\016\n\006heroId\030\002 " +
- "\001(\005\022\r\n\005level\030\003 \001(\005\022\017\n\007breakId\030\004 \001(\005\022\014\n\004s" +
- "tar\030\005 \001(\005\022\016\n\006skinId\030\006 \001(\005\022\023\n\013skillIdList" +
- "\030\007 \003(\005\022\023\n\013equipIdList\030\010 \003(\t\022\022\n\ncreateTim" +
- "e\030\t \001(\005\022\023\n\013starBreakId\030\n \001(\005\022\025\n\respecial" +
- "Equip\030\013 \003(\t\0224\n\007soulPos\030\014 \003(\0132#.com.ljsd.",
- "jieling.protocols.SoulPos\022\021\n\tlockState\030\r" +
- " \001(\005\"G\n\rFightUnitInfo\022\016\n\006unitId\030\001 \001(\t\022\024\n" +
- "\014unitSkillIds\030\002 \001(\t\022\020\n\010property\030\003 \001(\t\"\201\001" +
- "\n\rFightTeamInfo\022@\n\rfightUnitList\030\001 \003(\0132)" +
- ".com.ljsd.jieling.protocols.FightUnitInf" +
- "o\022\025\n\rteamSkillList\030\002 \001(\t\022\027\n\017teamPassiveL" +
- "ist\030\003 \001(\t\"-\n\023EventBehaviorValues\022\026\n\016beha" +
- "viorValues\030\001 \003(\005\"y\n\023EventBehaviorCommon\022" +
- "\024\n\014behaviorType\030\001 \001(\005\022L\n\023eventBehaviorVa" +
- "lues\030\002 \003(\0132/.com.ljsd.jieling.protocols.",
- "EventBehaviorValues\"=\n\004Cell\022\016\n\006cellId\030\001 " +
- "\001(\005\022\017\n\007pointId\030\002 \001(\005\022\024\n\014monsterForce\030\003 \001" +
- "(\005\"^\n\007Mission\022\016\n\006itemId\030\001 \001(\005\022\r\n\005state\030\002" +
- " \001(\t\022\023\n\013missionStep\030\003 \001(\005\022\014\n\004time\030\004 \001(\005\022" +
- "\021\n\tdeadTimes\030\005 \001(\005\"\243\001\n\004Mail\022\016\n\006mailId\030\001 " +
- "\001(\t\022\r\n\005state\030\002 \001(\005\022\014\n\004head\030\003 \001(\t\022\017\n\007cont" +
- "ent\030\004 \001(\t\022\020\n\010mailItem\030\005 \001(\t\022\020\n\010sendTime\030" +
- "\006 \001(\005\022\025\n\reffectiveTime\030\007 \001(\005\022\020\n\010sendName" +
- "\030\010 \001(\t\022\020\n\010mailType\030\t \001(\005\"\220\002\n\004Drop\0222\n\010ite" +
- "mlist\030\001 \003(\0132 .com.ljsd.jieling.protocols",
- ".Item\0222\n\007equipId\030\002 \003(\0132!.com.ljsd.jielin" +
- "g.protocols.Equip\022.\n\004Hero\030\003 \003(\0132 .com.lj" +
- "sd.jieling.protocols.Hero\022:\n\017especialEqu" +
- "ipId\030\004 \003(\0132!.com.ljsd.jieling.protocols." +
- "Equip\0224\n\tsoulEquip\030\005 \003(\0132!.com.ljsd.jiel" +
- "ing.protocols.Equip\"\034\n\tGMCommand\022\017\n\007comm" +
- "and\030\001 \001(\t\"y\n\027AdventureBossSimpleInfo\022\017\n\007" +
- "arenaId\030\001 \001(\005\022\016\n\006bossId\030\002 \001(\t\022\023\n\013bossGro" +
- "upId\030\003 \001(\005\022\022\n\nremainTime\030\004 \001(\005\022\024\n\014findUs" +
- "erName\030\005 \001(\t\"\240\001\n\022AdventureStateInfo\022\022\n\np",
- "ositionId\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\021\n\tstateT" +
- "ime\030\003 \001(\005\022T\n\027adventureBossSimpleInfo\030\004 \003" +
- "(\01323.com.ljsd.jieling.protocols.Adventur" +
- "eBossSimpleInfo\"0\n\014TeamHeroInfo\022\020\n\010posit" +
- "ion\030\001 \001(\005\022\016\n\006heroId\030\002 \001(\t\"6\n\017TeamPokemon" +
- "Info\022\020\n\010position\030\001 \001(\005\022\021\n\tpokemonId\030\002 \001(" +
- "\005\"\267\001\n\013TeamPosInfo\022\016\n\006teamId\030\001 \001(\005\022\020\n\010tea" +
- "mName\030\002 \001(\t\022?\n\rteamHeroInfos\030\003 \003(\0132(.com" +
- ".ljsd.jieling.protocols.TeamHeroInfo\022E\n\020" +
- "teamPokemonInfos\030\004 \003(\0132+.com.ljsd.jielin",
- "g.protocols.TeamPokemonInfo\"-\n\020Pokemonco" +
- "monpent\022\n\n\002id\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\"p\n\013Po" +
- "kemonInfo\022\n\n\002id\030\001 \001(\005\022\r\n\005stage\030\002 \001(\005\022F\n\020" +
- "pokemoncomonpent\030\003 \003(\0132,.com.ljsd.jielin" +
- "g.protocols.Pokemoncomonpent\">\n\014RingFire" +
- "Info\022\n\n\002id\030\001 \001(\005\022\r\n\005stage\030\002 \001(\005\022\023\n\013comon" +
- "pentId\030\003 \003(\005\"<\n\020WorkShopBaseInfo\022\014\n\004type" +
- "\030\001 \001(\005\022\r\n\005levle\030\002 \001(\005\022\013\n\003exp\030\003 \001(\005\".\n\022Wo" +
- "rkShopUnLockInfo\022\014\n\004type\030\001 \001(\005\022\n\n\002id\030\004 \003" +
- "(\005\"\312\001\n\tFightData\022A\n\016heroFightInfos\030\001 \001(\013",
- "2).com.ljsd.jieling.protocols.FightTeamI" +
- "nfo\022>\n\013monsterList\030\002 \003(\0132).com.ljsd.jiel" +
- "ing.protocols.FightTeamInfo\022\021\n\tfightSeed" +
- "\030\003 \001(\005\022\024\n\014fightMaxTime\030\004 \001(\005\022\021\n\tfightTyp" +
- "e\030\005 \001(\005\"-\n\rExploreDetail\022\n\n\002id\030\001 \001(\005\022\020\n\010" +
- "progress\030\002 \001(\005\"0\n\nFoodBuffer\022\020\n\010bufferId" +
- "\030\001 \001(\005\022\020\n\010leftStep\030\002 \001(\005\"/\n\023NewPlayerGui" +
- "dePoint\022\014\n\004type\030\001 \001(\005\022\n\n\002id\030\002 \001(\005\"L\n\017Lev" +
- "elDifficulty\022\017\n\007fightId\030\001 \001(\005\022\r\n\005state\030\002" +
- " \001(\005\022\013\n\003num\030\003 \001(\005\022\014\n\004type\030\004 \001(\005\"l\n\024Level",
- "DifficultyInfos\022\016\n\006areaId\030\001 \001(\005\022D\n\017Level" +
- "Difficulty\030\002 \003(\0132+.com.ljsd.jieling.prot" +
- "ocols.LevelDifficulty\":\n\007MapInfo\022\r\n\005mapI" +
- "d\030\001 \001(\005\022\021\n\tleastTime\030\002 \001(\005\022\r\n\005stars\030\003 \003(" +
- "\005\"\363\001\n\014ActivityInfo\022\022\n\nactivityId\030\001 \002(\005\022E" +
- "\n\007mission\030\002 \003(\01324.com.ljsd.jieling.proto" +
- "cols.ActivityInfo.MissionInfo\022\r\n\005value\030\006" +
- " \001(\005\022\021\n\tstartTime\030\005 \001(\005\022\017\n\007endTime\030\003 \001(\005" +
- "\022\022\n\nreallyOpen\030\004 \001(\005\032A\n\013MissionInfo\022\021\n\tm" +
- "issionId\030\001 \002(\005\022\020\n\010progress\030\002 \002(\005\022\r\n\005stat",
- "e\030\003 \002(\005\"J\n\nGmResponse\022.\n\004drop\030\001 \001(\0132 .co" +
- "m.ljsd.jieling.protocols.Drop\022\014\n\004info\030\002 " +
- "\001(\t\"\215\001\n\017ArenaPersonInfo\022\013\n\003uid\030\001 \001(\005\022\r\n\005" +
- "level\030\002 \001(\005\022\014\n\004name\030\003 \001(\t\022\r\n\005score\030\004 \001(\005" +
- "\022\014\n\004head\030\005 \001(\005\022\014\n\004rank\030\006 \001(\005\022\022\n\ntotalFor" +
- "ce\030\007 \001(\005\022\021\n\theadFrame\030\010 \001(\005\"\027\n\004Team\022\017\n\007h" +
- "eroTid\030\001 \003(\005\"}\n\nArenaEnemy\022?\n\npersonInfo" +
- "\030\001 \001(\0132+.com.ljsd.jieling.protocols.Aren" +
- "aPersonInfo\022.\n\004team\030\002 \001(\0132 .com.ljsd.jie" +
- "ling.protocols.Team\"~\n\tArenaInfo\022\020\n\010fail",
- "Nums\030\001 \001(\005\022\023\n\013successNums\030\002 \001(\005\022\r\n\005score" +
- "\030\003 \001(\005\022;\n\013arenaEnemys\030\004 \003(\0132&.com.ljsd.j" +
- "ieling.protocols.ArenaEnemy\"\'\n\tStoreItem" +
- "\022\n\n\002id\030\001 \001(\005\022\016\n\006buyNum\030\002 \001(\005\"\216\001\n\tStoreIn" +
- "fo\022\n\n\002id\030\001 \001(\005\022\027\n\017lastRefreshTime\030\002 \001(\003\022" +
- "\021\n\tstartTime\030\004 \001(\003\022\017\n\007endTime\030\005 \001(\003\0228\n\ts" +
- "toreItem\030\006 \003(\0132%.com.ljsd.jieling.protoc" +
- "ols.StoreItem\"\211\001\n\017ArenaRecordInfo\022\n\n\002id\030" +
- "\001 \001(\t\022?\n\nattackInfo\030\002 \001(\0132+.com.ljsd.jie" +
- "ling.protocols.ArenaPersonInfo\022\022\n\nattack",
- "Time\030\003 \001(\005\022\025\n\rmyScoreChange\030\004 \001(\005\"Z\n\016Fun" +
- "ctionOfTime\022\022\n\nfunctionId\030\001 \001(\005\022\021\n\tstart" +
- "Time\030\002 \001(\005\022\017\n\007endTime\030\003 \001(\005\022\020\n\010interval\030" +
- "\004 \001(\005\"q\n\025AdventureRankItemInfo\022\r\n\005level\030" +
- "\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\014\n\004hurt\030\003 \001(\005\022\014\n\004hea" +
- "d\030\004 \001(\005\022\014\n\004rank\030\005 \001(\005\022\021\n\theadFrame\030\006 \001(\005" +
- "\"\314\001\n\021AdventureBossInfo\022\017\n\007arenaId\030\001 \001(\005\022" +
- "\017\n\007findUid\030\002 \001(\005\022\020\n\010findName\030\003 \001(\t\022\016\n\006bo" +
- "ssId\030\004 \001(\t\022\023\n\013bossGroupId\030\005 \001(\005\022\016\n\006myHur" +
- "t\030\006 \001(\005\022\022\n\nremainTime\030\007 \001(\005\022\017\n\007totalHp\030\010",
- " \001(\005\022\025\n\rbossRemainlHp\030\t \001(\005\022\022\n\narenaLeve" +
- "l\030\n \001(\005\"f\n\017UserMissionInfo\022\021\n\tmissionId\030" +
- "\001 \001(\005\022\020\n\010progress\030\002 \001(\005\022\r\n\005state\030\003 \001(\005\022\014" +
- "\n\004type\030\004 \001(\005\022\021\n\ttakeTimes\030\005 \001(\005\"Q\n\013VipBa" +
- "seInfo\022\020\n\010vipLevel\030\001 \001(\005\022\027\n\017hadTakeLevel" +
- "Box\030\002 \001(\005\022\027\n\017hadTakeDailyBox\030\003 \001(\005\"\225\001\n\006F" +
- "riend\022\n\n\002id\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\n\n\002lv\030\003 " +
- "\001(\005\022\023\n\013offLineTime\030\004 \001(\004\022\022\n\nhaveReward\030\005" +
- " \001(\005\022\016\n\006isGive\030\006 \001(\005\022\014\n\004head\030\014 \001(\005\022\r\n\005fr" +
- "ame\030\r \001(\005\022\017\n\007soulVal\030\016 \001(\005\"V\n\rGiftGoodsI",
- "nfo\022\017\n\007goodsId\030\001 \001(\005\022\020\n\010buyTimes\030\002 \001(\005\022\021" +
- "\n\tstartTime\030\003 \001(\005\022\017\n\007endTime\030\004 \001(\005\"7\n\021Go" +
- "odsTypeDuration\022\021\n\tgoodsType\030\001 \001(\005\022\017\n\007en" +
- "dTime\030\002 \001(\005\"/\n\016TechnologyInfo\022\016\n\006techId\030" +
- "\001 \001(\005\022\r\n\005levle\030\002 \001(\005\"J\n\020SuddenlyBossInfo" +
- "\022\022\n\nsuddBossId\030\006 \001(\005\022\017\n\007endTime\030\007 \001(\005\022\021\n" +
- "\tfindMapId\030\010 \001(\005\"H\n\010ItemInfo\022\022\n\ntemplate" +
- "Id\030\001 \001(\005\022\017\n\007overlap\030\002 \001(\005\022\027\n\017nextRefresh" +
- "Time\030\003 \001(\005\"A\n\rTowerRankInfo\022\014\n\004rank\030\001 \001(" +
- "\005\022\024\n\014highestTower\030\002 \001(\005\022\014\n\004time\030\003 \001(\005\"\234\001",
- "\n\tTowerRank\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022" +
- "\014\n\004head\030\003 \001(\005\022\020\n\010userName\030\004 \001(\t\022@\n\rtower" +
- "RankInfo\030\005 \001(\0132).com.ljsd.jieling.protoc" +
- "ols.TowerRankInfo\022\021\n\theadFrame\030\006 \001(\005\"\204\001\n" +
- "\025ActorEffectBufferInfo\022\n\n\002id\030\001 \001(\005\022\014\n\004ty" +
- "pe\030\002 \001(\005\022\021\n\tstartTime\030\003 \001(\005\022\017\n\007endTime\030\004" +
- " \001(\005\022\016\n\006target\030\005 \001(\005\022\016\n\006caster\030\006 \001(\005\022\r\n\005" +
- "value\030\007 \003(\005\"T\n\016BloodyHeroInfo\022\016\n\006heroId\030" +
- "\001 \001(\t\022\016\n\006heroHp\030\002 \001(\005\022\021\n\theroMaxHp\030\003 \001(\005" +
- "\022\017\n\007heroTid\030\004 \001(\005\"%\n\010SceneMsg\022\014\n\004time\030\001 ",
- "\001(\005\022\013\n\003msg\030\002 \001(\t\"\'\n\nPosMineral\022\013\n\003pos\030\001 " +
- "\001(\005\022\014\n\004nums\030\002 \001(\005\"\264\001\n\010Creature\022\014\n\004path\030\001" +
- " \003(\005\022\r\n\005speed\030\002 \001(\005\022\r\n\005maxHp\030\003 \001(\005\022\r\n\005cu" +
- "rHp\030\004 \001(\005\022\017\n\007mineral\030\005 \001(\005\022\014\n\004camp\030\006 \001(\005" +
- "\022<\n\010heroInfo\030\007 \003(\0132*.com.ljsd.jieling.pr" +
- "otocols.BloodyHeroInfo\022\020\n\010killNums\030\010 \001(\005" +
- "\"\217\001\n\nSceneActor\022\n\n\002id\030\001 \001(\005\022\016\n\006curPos\030\002 " +
- "\001(\005\022\r\n\005state\030\003 \001(\005\022\014\n\004type\030\004 \001(\005\0226\n\010Crea" +
- "ture\030\006 \001(\0132$.com.ljsd.jieling.protocols." +
- "Creature\022\020\n\010userName\030\007 \001(\t\"\236\002\n\tSceneInfo",
- "\022\016\n\006roomId\030\001 \001(\005\022\r\n\005mapId\030\002 \001(\005\022:\n\nScene" +
- "Actor\030\003 \003(\0132&.com.ljsd.jieling.protocols" +
- ".SceneActor\022P\n\025actorEffectBufferInfo\030\004 \003" +
- "(\01321.com.ljsd.jieling.protocols.ActorEff" +
- "ectBufferInfo\022\024\n\014barrierPoint\030\005 \003(\005\022:\n\np" +
- "osMineral\030\006 \003(\0132&.com.ljsd.jieling.proto" +
- "cols.PosMineral\022\022\n\nremainTime\030\007 \001(\005\"S\n\027S" +
- "ceneGetFullMsgResponse\0228\n\tsceneInfo\030\001 \001(" +
- "\0132%.com.ljsd.jieling.protocols.SceneInfo" +
- "\"B\n\013blessReward\022\022\n\nlocationId\030\001 \001(\005\022\r\n\005s",
- "tate\030\002 \001(\005\022\020\n\010rewardId\030\003 \001(\005\"5\n\022fiveRese" +
- "tTowerInfo\022\r\n\005tower\030\001 \001(\005\022\020\n\010intoType\030\002 " +
- "\001(\005\";\n\020FamilyContribute\022\013\n\003win\030\001 \001(\005\022\014\n\004" +
- "draw\030\002 \001(\005\022\014\n\004fail\030\003 \001(\005\"\210\002\n\016FamilyBaseI" +
- "nfo\022\n\n\002id\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\017\n\007annouce" +
- "\030\003 \001(\t\022\r\n\005levle\030\004 \001(\005\022\013\n\003exp\030\005 \001(\005\022\020\n\010to" +
- "talNum\030\006 \001(\005\022\016\n\006maxNum\030\007 \001(\005\022\020\n\010joinType" +
- "\030\010 \001(\005\022\014\n\004icon\030\t \001(\005\022\021\n\tlevelTime\030\n \001(\005\022" +
- "A\n\013fightResult\030\013 \001(\0132,.com.ljsd.jieling." +
- "protocols.FamilyContribute\022\027\n\017playerInto",
- "Level\030\014 \001(\005\")\n\013endlessHero\022\016\n\006heroId\030\001 \001" +
- "(\t\022\n\n\002hp\030\002 \001(\005\"2\n\022EndlessRefreshInfo\022\016\n\006" +
- "cellId\030\001 \001(\005\022\014\n\004time\030\002 \001(\005\"h\n\014UseForceIn" +
- "fo\022\014\n\004name\030\001 \001(\t\022\014\n\004leve\030\002 \001(\005\022\r\n\005force\030" +
- "\003 \001(\005\022\014\n\004rank\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022\021\n\thea" +
- "dFrame\030\006 \001(\005\"H\n\013endlessSign\022\r\n\005mapId\030\001 \001" +
- "(\005\022\016\n\006cellId\030\002 \001(\005\022\014\n\004info\030\003 \001(\t\022\014\n\004type" +
- "\030\004 \001(\005\"g\n\nExpertInfo\022\014\n\004name\030\001 \001(\t\022\r\n\005sc" +
- "ore\030\002 \001(\005\022\014\n\004rank\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\022\014" +
- "\n\004head\030\005 \001(\005\022\021\n\theadFrame\030\006 \001(\005\")\n\nSignI",
- "nInfo\022\014\n\004days\030\001 \001(\005\022\r\n\005state\030\002 \001(\005\"N\n\016Te" +
- "amSimpleInfo\022\016\n\006heroid\030\001 \001(\t\022\017\n\007heroTid\030" +
- "\002 \001(\005\022\014\n\004star\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\"\207\001\n\017T" +
- "eamOneTeamInfo\0228\n\004team\030\001 \003(\0132*.com.ljsd." +
- "jieling.protocols.TeamSimpleInfo\022\024\n\014Poke" +
- "monInfos\030\002 \003(\005\022\022\n\ntotalForce\030\003 \001(\005\022\020\n\010re" +
- "mainHp\030\004 \003(\005\"\223\001\n\013TeamOneInfo\022\013\n\003uid\030\001 \001(" +
- "\005\022\r\n\005level\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\0229\n\004team\030\006 \001(\0132+." +
- "com.ljsd.jieling.protocols.TeamOneTeamIn",
- "fo\"l\n\017MonsterRankInfo\022\014\n\004name\030\001 \001(\t\022\r\n\005s" +
- "core\030\002 \001(\005\022\014\n\004rank\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\022" +
- "\014\n\004head\030\005 \001(\005\022\021\n\theadFrame\030\006 \001(\005\"2\n\rHero" +
- "BloodInfo\022\016\n\006heroId\030\001 \001(\t\022\021\n\tlostBlood\030\002" +
- " \001(\005\"D\n\013EndlessInfo\022\r\n\005mapId\030\001 \001(\005\022\022\n\nwo" +
- "rldLevel\030\002 \001(\005\022\022\n\nbloodScore\030\003 \001(\005\"2\n\017Pl" +
- "ayerBindPhone\022\020\n\010phoneNum\030\001 \001(\t\022\r\n\005state" +
- "\030\002 \001(\005\"3\n\014EndlessPoint\022\020\n\010location\030\001 \001(\005" +
- "\022\021\n\tmonsterId\030\002 \001(\005\"2\n\014StrongerInfo\022\020\n\010c" +
- "urScore\030\001 \001(\005\022\020\n\010maxScore\030\002 \001(\005\"U\n\017Quest",
- "ionOptions\022\017\n\007content\030\001 \001(\t\022\014\n\004type\030\002 \001(" +
- "\005\022\017\n\007options\030\003 \003(\t\022\022\n\nanswerType\030\004 \001(\005\"\212" +
- "\001\n\017BloodPersonInfo\022\n\n\002id\030\001 \001(\005\022\014\n\004name\030\002" +
- " \001(\t\022\021\n\theadFrame\030\003 \001(\005\022\014\n\004head\030\004 \001(\005\022\020\n" +
- "\010serverId\030\005 \001(\005\022\r\n\005level\030\006 \001(\005\022\014\n\004rank\030\007" +
- " \001(\005\022\r\n\005score\030\010 \001(\005\"H\n\026LuckWheelRewardPo" +
- "sInfo\022\013\n\003pos\030\001 \001(\005\022\016\n\006luckId\030\002 \001(\005\022\021\n\tlu" +
- "ckTimes\030\003 \001(\005\"W\n\013RefreshTask\022\014\n\004type\030\001 \001" +
- "(\005\022:\n\005tasks\030\002 \003(\0132+.com.ljsd.jieling.pro" +
- "tocols.UserMissionInfo\"\221\001\n\021MainLevelRank",
- "Info\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004name" +
- "\030\003 \001(\t\022\017\n\007fightId\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022\014\n" +
- "\004rank\030\006 \001(\005\022\022\n\ntotalForce\030\007 \001(\005\022\021\n\theadF" +
- "rame\030\010 \001(\005B\002H\001"
+ "otocols\"C\n\rErrorResponse\022\017\n\007errCode\030\001 \001(" +
+ "\005\022\016\n\006errMsg\030\002 \001(\t\022\021\n\terrParams\030\003 \003(\t\"\267\003\n" +
+ "\006Player\022\013\n\003uid\030\001 \001(\005\022\020\n\010nickName\030\002 \001(\t\022\r" +
+ "\n\005level\030\003 \001(\005\022\013\n\003exp\030\004 \001(\005\022\020\n\010vipLevel\030\005" +
+ " \001(\005\022\020\n\010familyId\030\006 \001(\005\022\014\n\004head\030\007 \001(\005\022\020\n\010" +
+ "curMapId\030\010 \001(\005\022\016\n\006energy\030\t \001(\005\022\034\n\024lastUp" +
+ "dateEnergyTime\030\n \001(\005\022\022\n\nserverTime\030\013 \001(\005" +
+ "\022\020\n\010maxForce\030\014 \001(\005\022\017\n\007saveAmt\030\r \001(\005\022\024\n\014r" +
+ "echargeTime\030\016 \001(\005\022\027\n\017isFirstRecharge\030\017 \001",
+ "(\005\022\023\n\013isMatchRoom\030\020 \001(\005\022\023\n\013curRoomType\030\021" +
+ " \001(\005\022\021\n\theadFrame\030\022 \001(\005\022\024\n\014roomAddreess\030" +
+ "\023 \001(\t\022\023\n\013designation\030\024 \001(\005\022\021\n\tdecrotion\030" +
+ "\025 \001(\005\022\014\n\004ride\030\026 \001(\005\022\021\n\trideLevel\030\027 \001(\005\"*" +
+ "\n\tPrivilege\022\n\n\002id\030\001 \001(\005\022\021\n\tusedTimes\030\002 \001" +
+ "(\005\"R\n\004Item\022\016\n\006itemId\030\001 \001(\005\022\017\n\007itemNum\030\002 " +
+ "\001(\005\022\022\n\nendingTime\030\003 \001(\005\022\025\n\rnextFlushTime" +
+ "\030\004 \001(\005\";\n\016SpecialEffects\022\022\n\npropertyId\030\001" +
+ " \001(\005\022\025\n\rpropertyValue\030\002 \001(\005\"\206\002\n\005Equip\022\n\n" +
+ "\002id\030\001 \001(\t\022\017\n\007equipId\030\002 \001(\005\022A\n\rmainAttrib",
+ "ute\030\003 \001(\0132*.com.ljsd.jieling.protocols.S" +
+ "pecialEffects\022C\n\017secondAttribute\030\004 \003(\0132*" +
+ ".com.ljsd.jieling.protocols.SpecialEffec" +
+ "ts\022\024\n\014rebuildLevel\030\005 \001(\005\022\022\n\ncreateTime\030\006" +
+ " \001(\005\022\017\n\007skillId\030\007 \001(\005\022\020\n\010isLocked\030\010 \001(\005\022" +
+ "\013\n\003exp\030\t \001(\005\",\n\007SoulPos\022\017\n\007equipId\030\001 \001(\t" +
+ "\022\020\n\010position\030\002 \001(\005\"\376\001\n\004Hero\022\n\n\002id\030\001 \001(\t\022" +
+ "\016\n\006heroId\030\002 \001(\005\022\r\n\005level\030\003 \001(\005\022\017\n\007breakI" +
+ "d\030\004 \001(\005\022\014\n\004star\030\005 \001(\005\022\016\n\006skinId\030\006 \001(\005\022\023\n" +
+ "\013equipIdList\030\010 \003(\t\022\022\n\ncreateTime\030\t \001(\005\022\023",
+ "\n\013starBreakId\030\n \001(\005\022\025\n\respecialEquip\030\013 \003" +
+ "(\t\0224\n\007soulPos\030\014 \003(\0132#.com.ljsd.jieling.p" +
+ "rotocols.SoulPos\022\021\n\tlockState\030\r \001(\005\"G\n\rF" +
+ "ightUnitInfo\022\016\n\006unitId\030\001 \001(\t\022\024\n\014unitSkil" +
+ "lIds\030\002 \001(\t\022\020\n\010property\030\003 \001(\t\"\201\001\n\rFightTe" +
+ "amInfo\022@\n\rfightUnitList\030\001 \003(\0132).com.ljsd" +
+ ".jieling.protocols.FightUnitInfo\022\025\n\rteam" +
+ "SkillList\030\002 \001(\t\022\027\n\017teamPassiveList\030\003 \001(\t" +
+ "\"-\n\023EventBehaviorValues\022\026\n\016behaviorValue" +
+ "s\030\001 \003(\005\"y\n\023EventBehaviorCommon\022\024\n\014behavi",
+ "orType\030\001 \001(\005\022L\n\023eventBehaviorValues\030\002 \003(" +
+ "\0132/.com.ljsd.jieling.protocols.EventBeha" +
+ "viorValues\"=\n\004Cell\022\016\n\006cellId\030\001 \001(\005\022\017\n\007po" +
+ "intId\030\002 \001(\005\022\024\n\014monsterForce\030\003 \001(\005\"^\n\007Mis" +
+ "sion\022\016\n\006itemId\030\001 \001(\005\022\r\n\005state\030\002 \001(\t\022\023\n\013m" +
+ "issionStep\030\003 \001(\005\022\014\n\004time\030\004 \001(\005\022\021\n\tdeadTi" +
+ "mes\030\005 \001(\005\"\243\001\n\004Mail\022\016\n\006mailId\030\001 \001(\t\022\r\n\005st" +
+ "ate\030\002 \001(\005\022\014\n\004head\030\003 \001(\t\022\017\n\007content\030\004 \001(\t" +
+ "\022\020\n\010mailItem\030\005 \001(\t\022\020\n\010sendTime\030\006 \001(\005\022\025\n\r" +
+ "effectiveTime\030\007 \001(\005\022\020\n\010sendName\030\010 \001(\t\022\020\n",
+ "\010mailType\030\t \001(\005\"\220\002\n\004Drop\0222\n\010itemlist\030\001 \003" +
+ "(\0132 .com.ljsd.jieling.protocols.Item\0222\n\007" +
+ "equipId\030\002 \003(\0132!.com.ljsd.jieling.protoco" +
+ "ls.Equip\022.\n\004Hero\030\003 \003(\0132 .com.ljsd.jielin" +
+ "g.protocols.Hero\022:\n\017especialEquipId\030\004 \003(" +
+ "\0132!.com.ljsd.jieling.protocols.Equip\0224\n\t" +
+ "soulEquip\030\005 \003(\0132!.com.ljsd.jieling.proto" +
+ "cols.Equip\"\034\n\tGMCommand\022\017\n\007command\030\001 \001(\t" +
+ "\"0\n\014TeamHeroInfo\022\020\n\010position\030\001 \001(\005\022\016\n\006he" +
+ "roId\030\002 \001(\t\"6\n\017TeamPokemonInfo\022\020\n\010positio",
+ "n\030\001 \001(\005\022\021\n\tpokemonId\030\002 \001(\005\"\267\001\n\013TeamPosIn" +
+ "fo\022\016\n\006teamId\030\001 \001(\005\022\020\n\010teamName\030\002 \001(\t\022?\n\r" +
+ "teamHeroInfos\030\003 \003(\0132(.com.ljsd.jieling.p" +
+ "rotocols.TeamHeroInfo\022E\n\020teamPokemonInfo" +
+ "s\030\004 \003(\0132+.com.ljsd.jieling.protocols.Tea" +
+ "mPokemonInfo\"-\n\020Pokemoncomonpent\022\n\n\002id\030\001" +
+ " \001(\005\022\r\n\005level\030\002 \001(\005\"p\n\013PokemonInfo\022\n\n\002id" +
+ "\030\001 \001(\005\022\r\n\005stage\030\002 \001(\005\022F\n\020pokemoncomonpen" +
+ "t\030\003 \003(\0132,.com.ljsd.jieling.protocols.Pok" +
+ "emoncomonpent\">\n\014RingFireInfo\022\n\n\002id\030\001 \001(",
+ "\005\022\r\n\005stage\030\002 \001(\005\022\023\n\013comonpentId\030\003 \003(\005\"<\n" +
+ "\020WorkShopBaseInfo\022\014\n\004type\030\001 \001(\005\022\r\n\005levle" +
+ "\030\002 \001(\005\022\013\n\003exp\030\003 \001(\005\".\n\022WorkShopUnLockInf" +
+ "o\022\014\n\004type\030\001 \001(\005\022\n\n\002id\030\004 \003(\005\"\312\001\n\tFightDat" +
+ "a\022A\n\016heroFightInfos\030\001 \001(\0132).com.ljsd.jie" +
+ "ling.protocols.FightTeamInfo\022>\n\013monsterL" +
+ "ist\030\002 \003(\0132).com.ljsd.jieling.protocols.F" +
+ "ightTeamInfo\022\021\n\tfightSeed\030\003 \001(\005\022\024\n\014fight" +
+ "MaxTime\030\004 \001(\005\022\021\n\tfightType\030\005 \001(\005\"-\n\rExpl" +
+ "oreDetail\022\n\n\002id\030\001 \001(\005\022\020\n\010progress\030\002 \001(\005\"",
+ "0\n\nFoodBuffer\022\020\n\010bufferId\030\001 \001(\005\022\020\n\010leftS" +
+ "tep\030\002 \001(\005\"/\n\023NewPlayerGuidePoint\022\014\n\004type" +
+ "\030\001 \001(\005\022\n\n\002id\030\002 \001(\005\"L\n\017LevelDifficulty\022\017\n" +
+ "\007fightId\030\001 \001(\005\022\r\n\005state\030\002 \001(\005\022\013\n\003num\030\003 \001" +
+ "(\005\022\014\n\004type\030\004 \001(\005\"l\n\024LevelDifficultyInfos" +
+ "\022\016\n\006areaId\030\001 \001(\005\022D\n\017LevelDifficulty\030\002 \003(" +
+ "\0132+.com.ljsd.jieling.protocols.LevelDiff" +
+ "iculty\":\n\007MapInfo\022\r\n\005mapId\030\001 \001(\005\022\021\n\tleas" +
+ "tTime\030\002 \001(\005\022\r\n\005stars\030\003 \003(\005\"\363\001\n\014ActivityI" +
+ "nfo\022\022\n\nactivityId\030\001 \002(\005\022E\n\007mission\030\002 \003(\013",
+ "24.com.ljsd.jieling.protocols.ActivityIn" +
+ "fo.MissionInfo\022\r\n\005value\030\006 \001(\005\022\021\n\tstartTi" +
+ "me\030\005 \001(\005\022\017\n\007endTime\030\003 \001(\005\022\022\n\nreallyOpen\030" +
+ "\004 \001(\005\032A\n\013MissionInfo\022\021\n\tmissionId\030\001 \002(\005\022" +
+ "\020\n\010progress\030\002 \002(\005\022\r\n\005state\030\003 \002(\005\"J\n\nGmRe" +
+ "sponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling." +
+ "protocols.Drop\022\014\n\004info\030\002 \001(\t\"\215\001\n\017ArenaPe" +
+ "rsonInfo\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004" +
+ "name\030\003 \001(\t\022\r\n\005score\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022" +
+ "\014\n\004rank\030\006 \001(\005\022\022\n\ntotalForce\030\007 \001(\005\022\021\n\thea",
+ "dFrame\030\010 \001(\005\"\027\n\004Team\022\017\n\007heroTid\030\001 \003(\005\"}\n" +
+ "\nArenaEnemy\022?\n\npersonInfo\030\001 \001(\0132+.com.lj" +
+ "sd.jieling.protocols.ArenaPersonInfo\022.\n\004" +
+ "team\030\002 \001(\0132 .com.ljsd.jieling.protocols." +
+ "Team\"~\n\tArenaInfo\022\020\n\010failNums\030\001 \001(\005\022\023\n\013s" +
+ "uccessNums\030\002 \001(\005\022\r\n\005score\030\003 \001(\005\022;\n\013arena" +
+ "Enemys\030\004 \003(\0132&.com.ljsd.jieling.protocol" +
+ "s.ArenaEnemy\"\'\n\tStoreItem\022\n\n\002id\030\001 \001(\005\022\016\n" +
+ "\006buyNum\030\002 \001(\005\"\216\001\n\tStoreInfo\022\n\n\002id\030\001 \001(\005\022" +
+ "\027\n\017lastRefreshTime\030\002 \001(\003\022\021\n\tstartTime\030\004 ",
+ "\001(\003\022\017\n\007endTime\030\005 \001(\003\0228\n\tstoreItem\030\006 \003(\0132" +
+ "%.com.ljsd.jieling.protocols.StoreItem\"\236" +
+ "\001\n\017ArenaRecordInfo\022\n\n\002id\030\001 \001(\t\022?\n\nattack" +
+ "Info\030\002 \001(\0132+.com.ljsd.jieling.protocols." +
+ "ArenaPersonInfo\022\022\n\nattackTime\030\003 \001(\005\022\025\n\rm" +
+ "yScoreChange\030\004 \001(\005\022\023\n\013fightResult\030\005 \001(\005\"" +
+ "Z\n\016FunctionOfTime\022\022\n\nfunctionId\030\001 \001(\005\022\021\n" +
+ "\tstartTime\030\002 \001(\005\022\017\n\007endTime\030\003 \001(\005\022\020\n\010int" +
+ "erval\030\004 \001(\005\"~\n\025AdventureRankItemInfo\022\r\n\005" +
+ "level\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\014\n\004hurt\030\003 \001(\005\022",
+ "\014\n\004head\030\004 \001(\005\022\014\n\004rank\030\005 \001(\005\022\021\n\theadFrame" +
+ "\030\006 \001(\005\022\013\n\003uid\030\007 \001(\005\"\313\001\n\021AdventureBossInf" +
+ "o\022\017\n\007arenaId\030\001 \001(\005\022\017\n\007findUid\030\002 \001(\005\022\020\n\010f" +
+ "indName\030\003 \001(\t\022\016\n\006bossId\030\004 \001(\t\022\023\n\013bossGro" +
+ "upId\030\005 \001(\005\022\016\n\006myHurt\030\006 \001(\005\022\021\n\tlevelTime\030" +
+ "\007 \001(\005\022\017\n\007totalHp\030\010 \001(\005\022\025\n\rbossRemainlHp\030" +
+ "\t \001(\005\022\022\n\narenaLevel\030\n \001(\005\"f\n\017UserMission" +
+ "Info\022\021\n\tmissionId\030\001 \001(\005\022\020\n\010progress\030\002 \001(" +
+ "\005\022\r\n\005state\030\003 \001(\005\022\014\n\004type\030\004 \001(\005\022\021\n\ttakeTi" +
+ "mes\030\005 \001(\005\"Q\n\013VipBaseInfo\022\020\n\010vipLevel\030\001 \001",
+ "(\005\022\027\n\017hadTakeLevelBox\030\002 \001(\005\022\027\n\017hadTakeDa" +
+ "ilyBox\030\003 \001(\005\"\250\001\n\006Friend\022\n\n\002id\030\001 \001(\005\022\014\n\004n" +
+ "ame\030\002 \001(\t\022\n\n\002lv\030\003 \001(\005\022\023\n\013offLineTime\030\004 \001" +
+ "(\004\022\022\n\nhaveReward\030\005 \001(\005\022\016\n\006isGive\030\006 \001(\005\022\021" +
+ "\n\tisApplyed\030\007 \001(\005\022\014\n\004head\030\014 \001(\005\022\r\n\005frame" +
+ "\030\r \001(\005\022\017\n\007soulVal\030\016 \001(\005\"V\n\rGiftGoodsInfo" +
+ "\022\017\n\007goodsId\030\001 \001(\005\022\020\n\010buyTimes\030\002 \001(\005\022\021\n\ts" +
+ "tartTime\030\003 \001(\005\022\017\n\007endTime\030\004 \001(\005\"7\n\021Goods" +
+ "TypeDuration\022\021\n\tgoodsType\030\001 \001(\005\022\017\n\007endTi" +
+ "me\030\002 \001(\005\"/\n\016TechnologyInfo\022\016\n\006techId\030\001 \001",
+ "(\005\022\r\n\005levle\030\002 \001(\005\"J\n\020SuddenlyBossInfo\022\022\n" +
+ "\nsuddBossId\030\006 \001(\005\022\017\n\007endTime\030\007 \001(\005\022\021\n\tfi" +
+ "ndMapId\030\010 \001(\005\"H\n\010ItemInfo\022\022\n\ntemplateId\030" +
+ "\001 \001(\005\022\017\n\007overlap\030\002 \001(\005\022\027\n\017nextRefreshTim" +
+ "e\030\003 \001(\005\"A\n\rTowerRankInfo\022\014\n\004rank\030\001 \001(\005\022\024" +
+ "\n\014highestTower\030\002 \001(\005\022\014\n\004time\030\003 \001(\005\"\234\001\n\tT" +
+ "owerRank\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004" +
+ "head\030\003 \001(\005\022\020\n\010userName\030\004 \001(\t\022@\n\rtowerRan" +
+ "kInfo\030\005 \001(\0132).com.ljsd.jieling.protocols" +
+ ".TowerRankInfo\022\021\n\theadFrame\030\006 \001(\005\"\221\001\n\010Us",
+ "erRank\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004he" +
+ "ad\030\003 \001(\005\022\020\n\010userName\030\004 \001(\t\0226\n\010rankInfo\030\005" +
+ " \001(\0132$.com.ljsd.jieling.protocols.RankIn" +
+ "fo\022\021\n\theadFrame\030\006 \001(\005\"H\n\010RankInfo\022\014\n\004ran" +
+ "k\030\001 \001(\005\022\016\n\006param1\030\002 \001(\005\022\016\n\006param2\030\003 \001(\005\022" +
+ "\016\n\006param3\030\004 \001(\005\"\204\001\n\025ActorEffectBufferInf" +
+ "o\022\n\n\002id\030\001 \001(\005\022\014\n\004type\030\002 \001(\005\022\021\n\tstartTime" +
+ "\030\003 \001(\005\022\017\n\007endTime\030\004 \001(\005\022\016\n\006target\030\005 \001(\005\022" +
+ "\016\n\006caster\030\006 \001(\005\022\r\n\005value\030\007 \003(\005\"T\n\016Bloody" +
+ "HeroInfo\022\016\n\006heroId\030\001 \001(\t\022\016\n\006heroHp\030\002 \001(\005",
+ "\022\021\n\theroMaxHp\030\003 \001(\005\022\017\n\007heroTid\030\004 \001(\005\"%\n\010" +
+ "SceneMsg\022\014\n\004time\030\001 \001(\005\022\013\n\003msg\030\002 \001(\t\"\'\n\nP" +
+ "osMineral\022\013\n\003pos\030\001 \001(\005\022\014\n\004nums\030\002 \001(\005\"\264\001\n" +
+ "\010Creature\022\014\n\004path\030\001 \003(\005\022\r\n\005speed\030\002 \001(\005\022\r" +
+ "\n\005maxHp\030\003 \001(\005\022\r\n\005curHp\030\004 \001(\005\022\017\n\007mineral\030" +
+ "\005 \001(\005\022\014\n\004camp\030\006 \001(\005\022<\n\010heroInfo\030\007 \003(\0132*." +
+ "com.ljsd.jieling.protocols.BloodyHeroInf" +
+ "o\022\020\n\010killNums\030\010 \001(\005\"\217\001\n\nSceneActor\022\n\n\002id" +
+ "\030\001 \001(\005\022\016\n\006curPos\030\002 \001(\005\022\r\n\005state\030\003 \001(\005\022\014\n" +
+ "\004type\030\004 \001(\005\0226\n\010Creature\030\006 \001(\0132$.com.ljsd",
+ ".jieling.protocols.Creature\022\020\n\010userName\030" +
+ "\007 \001(\t\"\236\002\n\tSceneInfo\022\016\n\006roomId\030\001 \001(\005\022\r\n\005m" +
+ "apId\030\002 \001(\005\022:\n\nSceneActor\030\003 \003(\0132&.com.ljs" +
+ "d.jieling.protocols.SceneActor\022P\n\025actorE" +
+ "ffectBufferInfo\030\004 \003(\01321.com.ljsd.jieling" +
+ ".protocols.ActorEffectBufferInfo\022\024\n\014barr" +
+ "ierPoint\030\005 \003(\005\022:\n\nposMineral\030\006 \003(\0132&.com" +
+ ".ljsd.jieling.protocols.PosMineral\022\022\n\nre" +
+ "mainTime\030\007 \001(\005\"S\n\027SceneGetFullMsgRespons" +
+ "e\0228\n\tsceneInfo\030\001 \001(\0132%.com.ljsd.jieling.",
+ "protocols.SceneInfo\"B\n\013blessReward\022\022\n\nlo" +
+ "cationId\030\001 \001(\005\022\r\n\005state\030\002 \001(\005\022\020\n\010rewardI" +
+ "d\030\003 \001(\005\"5\n\022fiveResetTowerInfo\022\r\n\005tower\030\001" +
+ " \001(\005\022\020\n\010intoType\030\002 \001(\005\";\n\020FamilyContribu" +
+ "te\022\013\n\003win\030\001 \001(\005\022\014\n\004draw\030\002 \001(\005\022\014\n\004fail\030\003 " +
+ "\001(\005\"\210\002\n\016FamilyBaseInfo\022\n\n\002id\030\001 \001(\005\022\014\n\004na" +
+ "me\030\002 \001(\t\022\017\n\007annouce\030\003 \001(\t\022\r\n\005levle\030\004 \001(\005" +
+ "\022\013\n\003exp\030\005 \001(\005\022\020\n\010totalNum\030\006 \001(\005\022\016\n\006maxNu" +
+ "m\030\007 \001(\005\022\020\n\010joinType\030\010 \001(\005\022\014\n\004icon\030\t \001(\005\022" +
+ "\021\n\tlevelTime\030\n \001(\005\022A\n\013fightResult\030\013 \001(\0132",
+ ",.com.ljsd.jieling.protocols.FamilyContr" +
+ "ibute\022\027\n\017playerIntoLevel\030\014 \001(\005\")\n\013endles" +
+ "sHero\022\016\n\006heroId\030\001 \001(\t\022\n\n\002hp\030\002 \001(\005\"2\n\022End" +
+ "lessRefreshInfo\022\016\n\006cellId\030\001 \001(\005\022\014\n\004time\030" +
+ "\002 \001(\005\"u\n\014UseForceInfo\022\014\n\004name\030\001 \001(\t\022\014\n\004l" +
+ "eve\030\002 \001(\005\022\r\n\005force\030\003 \001(\005\022\014\n\004rank\030\004 \001(\005\022\014" +
+ "\n\004head\030\005 \001(\005\022\021\n\theadFrame\030\006 \001(\005\022\013\n\003uid\030\007" +
+ " \001(\005\"H\n\013endlessSign\022\r\n\005mapId\030\001 \001(\005\022\016\n\006ce" +
+ "llId\030\002 \001(\005\022\014\n\004info\030\003 \001(\t\022\014\n\004type\030\004 \001(\005\"g" +
+ "\n\nExpertInfo\022\014\n\004name\030\001 \001(\t\022\r\n\005score\030\002 \001(",
+ "\005\022\014\n\004rank\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\022\014\n\004head\030\005" +
+ " \001(\005\022\021\n\theadFrame\030\006 \001(\005\")\n\nSignInInfo\022\014\n" +
+ "\004days\030\001 \001(\005\022\r\n\005state\030\002 \001(\005\"N\n\016TeamSimple" +
+ "Info\022\016\n\006heroid\030\001 \001(\t\022\017\n\007heroTid\030\002 \001(\005\022\014\n" +
+ "\004star\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\"\207\001\n\017TeamOneTe" +
+ "amInfo\0228\n\004team\030\001 \003(\0132*.com.ljsd.jieling." +
+ "protocols.TeamSimpleInfo\022\024\n\014PokemonInfos" +
+ "\030\002 \003(\005\022\022\n\ntotalForce\030\003 \001(\005\022\020\n\010remainHp\030\004" +
+ " \003(\005\"\271\001\n\013TeamOneInfo\022\013\n\003uid\030\001 \001(\005\022\r\n\005lev" +
+ "el\030\002 \001(\005\022\014\n\004name\030\003 \001(\t\022\014\n\004head\030\004 \001(\005\022\021\n\t",
+ "headFrame\030\005 \001(\005\022\021\n\tguildName\030\007 \001(\t\0229\n\004te" +
+ "am\030\006 \001(\0132+.com.ljsd.jieling.protocols.Te" +
+ "amOneTeamInfo\022\021\n\tisApplyed\030\010 \001(\005\"y\n\017Mons" +
+ "terRankInfo\022\014\n\004name\030\001 \001(\t\022\r\n\005score\030\002 \001(\005" +
+ "\022\014\n\004rank\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\022\014\n\004head\030\005 " +
+ "\001(\005\022\021\n\theadFrame\030\006 \001(\005\022\013\n\003uid\030\007 \001(\005\"2\n\rH" +
+ "eroBloodInfo\022\016\n\006heroId\030\001 \001(\t\022\021\n\tlostBloo" +
+ "d\030\002 \001(\005\"D\n\013EndlessInfo\022\r\n\005mapId\030\001 \001(\005\022\022\n" +
+ "\nworldLevel\030\002 \001(\005\022\022\n\nbloodScore\030\003 \001(\005\"2\n" +
+ "\017PlayerBindPhone\022\020\n\010phoneNum\030\001 \001(\t\022\r\n\005st",
+ "ate\030\002 \001(\005\"3\n\014EndlessPoint\022\020\n\010location\030\001 " +
+ "\001(\005\022\021\n\tmonsterId\030\002 \001(\005\"2\n\014StrongerInfo\022\020" +
+ "\n\010curScore\030\001 \001(\005\022\020\n\010maxScore\030\002 \001(\005\"U\n\017Qu" +
+ "estionOptions\022\017\n\007content\030\001 \001(\t\022\014\n\004type\030\002" +
+ " \001(\005\022\017\n\007options\030\003 \003(\t\022\022\n\nanswerType\030\004 \001(" +
+ "\005\"\212\001\n\017BloodPersonInfo\022\n\n\002id\030\001 \001(\005\022\014\n\004nam" +
+ "e\030\002 \001(\t\022\021\n\theadFrame\030\003 \001(\005\022\014\n\004head\030\004 \001(\005" +
+ "\022\020\n\010serverId\030\005 \001(\005\022\r\n\005level\030\006 \001(\005\022\014\n\004ran" +
+ "k\030\007 \001(\005\022\r\n\005score\030\010 \001(\005\"H\n\026LuckWheelRewar" +
+ "dPosInfo\022\013\n\003pos\030\001 \001(\005\022\016\n\006luckId\030\002 \001(\005\022\021\n",
+ "\tluckTimes\030\003 \001(\005\"W\n\013RefreshTask\022\014\n\004type\030" +
+ "\001 \001(\005\022:\n\005tasks\030\002 \003(\0132+.com.ljsd.jieling." +
+ "protocols.UserMissionInfo\"\221\001\n\021MainLevelR" +
+ "ankInfo\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004n" +
+ "ame\030\003 \001(\t\022\017\n\007fightId\030\004 \001(\005\022\014\n\004head\030\005 \001(\005" +
+ "\022\014\n\004rank\030\006 \001(\005\022\022\n\ntotalForce\030\007 \001(\005\022\021\n\the" +
+ "adFrame\030\010 \001(\005B\002H\001"
};
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
@@ -79818,13 +80879,13 @@ public final class CommonProto {
internal_static_com_ljsd_jieling_protocols_ErrorResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_ErrorResponse_descriptor,
- new java.lang.String[] { "ErrCode", "ErrMsg", });
+ new java.lang.String[] { "ErrCode", "ErrMsg", "ErrParams", });
internal_static_com_ljsd_jieling_protocols_Player_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_com_ljsd_jieling_protocols_Player_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_Player_descriptor,
- new java.lang.String[] { "Uid", "NickName", "Level", "Exp", "VipLevel", "FamilyId", "Head", "CurMapId", "Energy", "LastUpdateEnergyTime", "ServerTime", "MaxForce", "SaveAmt", "RechargeTime", "IsFirstRecharge", "IsMatchRoom", "CurRoomType", "HeadFrame", "RoomAddreess", });
+ new java.lang.String[] { "Uid", "NickName", "Level", "Exp", "VipLevel", "FamilyId", "Head", "CurMapId", "Energy", "LastUpdateEnergyTime", "ServerTime", "MaxForce", "SaveAmt", "RechargeTime", "IsFirstRecharge", "IsMatchRoom", "CurRoomType", "HeadFrame", "RoomAddreess", "Designation", "Decrotion", "Ride", "RideLevel", });
internal_static_com_ljsd_jieling_protocols_Privilege_descriptor =
getDescriptor().getMessageTypes().get(2);
internal_static_com_ljsd_jieling_protocols_Privilege_fieldAccessorTable = new
@@ -79860,7 +80921,7 @@ public final class CommonProto {
internal_static_com_ljsd_jieling_protocols_Hero_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_Hero_descriptor,
- new java.lang.String[] { "Id", "HeroId", "Level", "BreakId", "Star", "SkinId", "SkillIdList", "EquipIdList", "CreateTime", "StarBreakId", "EspecialEquip", "SoulPos", "LockState", });
+ new java.lang.String[] { "Id", "HeroId", "Level", "BreakId", "Star", "SkinId", "EquipIdList", "CreateTime", "StarBreakId", "EspecialEquip", "SoulPos", "LockState", });
internal_static_com_ljsd_jieling_protocols_FightUnitInfo_descriptor =
getDescriptor().getMessageTypes().get(8);
internal_static_com_ljsd_jieling_protocols_FightUnitInfo_fieldAccessorTable = new
@@ -79915,110 +80976,98 @@ public final class CommonProto {
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_GMCommand_descriptor,
new java.lang.String[] { "Command", });
- internal_static_com_ljsd_jieling_protocols_AdventureBossSimpleInfo_descriptor =
- getDescriptor().getMessageTypes().get(17);
- internal_static_com_ljsd_jieling_protocols_AdventureBossSimpleInfo_fieldAccessorTable = new
- com.google.protobuf.GeneratedMessage.FieldAccessorTable(
- internal_static_com_ljsd_jieling_protocols_AdventureBossSimpleInfo_descriptor,
- new java.lang.String[] { "ArenaId", "BossId", "BossGroupId", "RemainTime", "FindUserName", });
- internal_static_com_ljsd_jieling_protocols_AdventureStateInfo_descriptor =
- getDescriptor().getMessageTypes().get(18);
- internal_static_com_ljsd_jieling_protocols_AdventureStateInfo_fieldAccessorTable = new
- com.google.protobuf.GeneratedMessage.FieldAccessorTable(
- internal_static_com_ljsd_jieling_protocols_AdventureStateInfo_descriptor,
- new java.lang.String[] { "PositionId", "Level", "StateTime", "AdventureBossSimpleInfo", });
internal_static_com_ljsd_jieling_protocols_TeamHeroInfo_descriptor =
- getDescriptor().getMessageTypes().get(19);
+ getDescriptor().getMessageTypes().get(17);
internal_static_com_ljsd_jieling_protocols_TeamHeroInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_TeamHeroInfo_descriptor,
new java.lang.String[] { "Position", "HeroId", });
internal_static_com_ljsd_jieling_protocols_TeamPokemonInfo_descriptor =
- getDescriptor().getMessageTypes().get(20);
+ getDescriptor().getMessageTypes().get(18);
internal_static_com_ljsd_jieling_protocols_TeamPokemonInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_TeamPokemonInfo_descriptor,
new java.lang.String[] { "Position", "PokemonId", });
internal_static_com_ljsd_jieling_protocols_TeamPosInfo_descriptor =
- getDescriptor().getMessageTypes().get(21);
+ getDescriptor().getMessageTypes().get(19);
internal_static_com_ljsd_jieling_protocols_TeamPosInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_TeamPosInfo_descriptor,
new java.lang.String[] { "TeamId", "TeamName", "TeamHeroInfos", "TeamPokemonInfos", });
internal_static_com_ljsd_jieling_protocols_Pokemoncomonpent_descriptor =
- getDescriptor().getMessageTypes().get(22);
+ getDescriptor().getMessageTypes().get(20);
internal_static_com_ljsd_jieling_protocols_Pokemoncomonpent_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_Pokemoncomonpent_descriptor,
new java.lang.String[] { "Id", "Level", });
internal_static_com_ljsd_jieling_protocols_PokemonInfo_descriptor =
- getDescriptor().getMessageTypes().get(23);
+ getDescriptor().getMessageTypes().get(21);
internal_static_com_ljsd_jieling_protocols_PokemonInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_PokemonInfo_descriptor,
new java.lang.String[] { "Id", "Stage", "Pokemoncomonpent", });
internal_static_com_ljsd_jieling_protocols_RingFireInfo_descriptor =
- getDescriptor().getMessageTypes().get(24);
+ getDescriptor().getMessageTypes().get(22);
internal_static_com_ljsd_jieling_protocols_RingFireInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_RingFireInfo_descriptor,
new java.lang.String[] { "Id", "Stage", "ComonpentId", });
internal_static_com_ljsd_jieling_protocols_WorkShopBaseInfo_descriptor =
- getDescriptor().getMessageTypes().get(25);
+ getDescriptor().getMessageTypes().get(23);
internal_static_com_ljsd_jieling_protocols_WorkShopBaseInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_WorkShopBaseInfo_descriptor,
new java.lang.String[] { "Type", "Levle", "Exp", });
internal_static_com_ljsd_jieling_protocols_WorkShopUnLockInfo_descriptor =
- getDescriptor().getMessageTypes().get(26);
+ getDescriptor().getMessageTypes().get(24);
internal_static_com_ljsd_jieling_protocols_WorkShopUnLockInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_WorkShopUnLockInfo_descriptor,
new java.lang.String[] { "Type", "Id", });
internal_static_com_ljsd_jieling_protocols_FightData_descriptor =
- getDescriptor().getMessageTypes().get(27);
+ getDescriptor().getMessageTypes().get(25);
internal_static_com_ljsd_jieling_protocols_FightData_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_FightData_descriptor,
new java.lang.String[] { "HeroFightInfos", "MonsterList", "FightSeed", "FightMaxTime", "FightType", });
internal_static_com_ljsd_jieling_protocols_ExploreDetail_descriptor =
- getDescriptor().getMessageTypes().get(28);
+ getDescriptor().getMessageTypes().get(26);
internal_static_com_ljsd_jieling_protocols_ExploreDetail_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_ExploreDetail_descriptor,
new java.lang.String[] { "Id", "Progress", });
internal_static_com_ljsd_jieling_protocols_FoodBuffer_descriptor =
- getDescriptor().getMessageTypes().get(29);
+ getDescriptor().getMessageTypes().get(27);
internal_static_com_ljsd_jieling_protocols_FoodBuffer_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_FoodBuffer_descriptor,
new java.lang.String[] { "BufferId", "LeftStep", });
internal_static_com_ljsd_jieling_protocols_NewPlayerGuidePoint_descriptor =
- getDescriptor().getMessageTypes().get(30);
+ getDescriptor().getMessageTypes().get(28);
internal_static_com_ljsd_jieling_protocols_NewPlayerGuidePoint_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_NewPlayerGuidePoint_descriptor,
new java.lang.String[] { "Type", "Id", });
internal_static_com_ljsd_jieling_protocols_LevelDifficulty_descriptor =
- getDescriptor().getMessageTypes().get(31);
+ getDescriptor().getMessageTypes().get(29);
internal_static_com_ljsd_jieling_protocols_LevelDifficulty_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_LevelDifficulty_descriptor,
new java.lang.String[] { "FightId", "State", "Num", "Type", });
internal_static_com_ljsd_jieling_protocols_LevelDifficultyInfos_descriptor =
- getDescriptor().getMessageTypes().get(32);
+ getDescriptor().getMessageTypes().get(30);
internal_static_com_ljsd_jieling_protocols_LevelDifficultyInfos_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_LevelDifficultyInfos_descriptor,
new java.lang.String[] { "AreaId", "LevelDifficulty", });
internal_static_com_ljsd_jieling_protocols_MapInfo_descriptor =
- getDescriptor().getMessageTypes().get(33);
+ getDescriptor().getMessageTypes().get(31);
internal_static_com_ljsd_jieling_protocols_MapInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_MapInfo_descriptor,
new java.lang.String[] { "MapId", "LeastTime", "Stars", });
internal_static_com_ljsd_jieling_protocols_ActivityInfo_descriptor =
- getDescriptor().getMessageTypes().get(34);
+ getDescriptor().getMessageTypes().get(32);
internal_static_com_ljsd_jieling_protocols_ActivityInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_ActivityInfo_descriptor,
@@ -80030,131 +81079,143 @@ public final class CommonProto {
internal_static_com_ljsd_jieling_protocols_ActivityInfo_MissionInfo_descriptor,
new java.lang.String[] { "MissionId", "Progress", "State", });
internal_static_com_ljsd_jieling_protocols_GmResponse_descriptor =
- getDescriptor().getMessageTypes().get(35);
+ getDescriptor().getMessageTypes().get(33);
internal_static_com_ljsd_jieling_protocols_GmResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_GmResponse_descriptor,
new java.lang.String[] { "Drop", "Info", });
internal_static_com_ljsd_jieling_protocols_ArenaPersonInfo_descriptor =
- getDescriptor().getMessageTypes().get(36);
+ getDescriptor().getMessageTypes().get(34);
internal_static_com_ljsd_jieling_protocols_ArenaPersonInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_ArenaPersonInfo_descriptor,
new java.lang.String[] { "Uid", "Level", "Name", "Score", "Head", "Rank", "TotalForce", "HeadFrame", });
internal_static_com_ljsd_jieling_protocols_Team_descriptor =
- getDescriptor().getMessageTypes().get(37);
+ getDescriptor().getMessageTypes().get(35);
internal_static_com_ljsd_jieling_protocols_Team_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_Team_descriptor,
new java.lang.String[] { "HeroTid", });
internal_static_com_ljsd_jieling_protocols_ArenaEnemy_descriptor =
- getDescriptor().getMessageTypes().get(38);
+ getDescriptor().getMessageTypes().get(36);
internal_static_com_ljsd_jieling_protocols_ArenaEnemy_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_ArenaEnemy_descriptor,
new java.lang.String[] { "PersonInfo", "Team", });
internal_static_com_ljsd_jieling_protocols_ArenaInfo_descriptor =
- getDescriptor().getMessageTypes().get(39);
+ getDescriptor().getMessageTypes().get(37);
internal_static_com_ljsd_jieling_protocols_ArenaInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_ArenaInfo_descriptor,
new java.lang.String[] { "FailNums", "SuccessNums", "Score", "ArenaEnemys", });
internal_static_com_ljsd_jieling_protocols_StoreItem_descriptor =
- getDescriptor().getMessageTypes().get(40);
+ getDescriptor().getMessageTypes().get(38);
internal_static_com_ljsd_jieling_protocols_StoreItem_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_StoreItem_descriptor,
new java.lang.String[] { "Id", "BuyNum", });
internal_static_com_ljsd_jieling_protocols_StoreInfo_descriptor =
- getDescriptor().getMessageTypes().get(41);
+ getDescriptor().getMessageTypes().get(39);
internal_static_com_ljsd_jieling_protocols_StoreInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_StoreInfo_descriptor,
new java.lang.String[] { "Id", "LastRefreshTime", "StartTime", "EndTime", "StoreItem", });
internal_static_com_ljsd_jieling_protocols_ArenaRecordInfo_descriptor =
- getDescriptor().getMessageTypes().get(42);
+ getDescriptor().getMessageTypes().get(40);
internal_static_com_ljsd_jieling_protocols_ArenaRecordInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_ArenaRecordInfo_descriptor,
- new java.lang.String[] { "Id", "AttackInfo", "AttackTime", "MyScoreChange", });
+ new java.lang.String[] { "Id", "AttackInfo", "AttackTime", "MyScoreChange", "FightResult", });
internal_static_com_ljsd_jieling_protocols_FunctionOfTime_descriptor =
- getDescriptor().getMessageTypes().get(43);
+ getDescriptor().getMessageTypes().get(41);
internal_static_com_ljsd_jieling_protocols_FunctionOfTime_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_FunctionOfTime_descriptor,
new java.lang.String[] { "FunctionId", "StartTime", "EndTime", "Interval", });
internal_static_com_ljsd_jieling_protocols_AdventureRankItemInfo_descriptor =
- getDescriptor().getMessageTypes().get(44);
+ getDescriptor().getMessageTypes().get(42);
internal_static_com_ljsd_jieling_protocols_AdventureRankItemInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_AdventureRankItemInfo_descriptor,
- new java.lang.String[] { "Level", "Name", "Hurt", "Head", "Rank", "HeadFrame", });
+ new java.lang.String[] { "Level", "Name", "Hurt", "Head", "Rank", "HeadFrame", "Uid", });
internal_static_com_ljsd_jieling_protocols_AdventureBossInfo_descriptor =
- getDescriptor().getMessageTypes().get(45);
+ getDescriptor().getMessageTypes().get(43);
internal_static_com_ljsd_jieling_protocols_AdventureBossInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_AdventureBossInfo_descriptor,
- new java.lang.String[] { "ArenaId", "FindUid", "FindName", "BossId", "BossGroupId", "MyHurt", "RemainTime", "TotalHp", "BossRemainlHp", "ArenaLevel", });
+ new java.lang.String[] { "ArenaId", "FindUid", "FindName", "BossId", "BossGroupId", "MyHurt", "LevelTime", "TotalHp", "BossRemainlHp", "ArenaLevel", });
internal_static_com_ljsd_jieling_protocols_UserMissionInfo_descriptor =
- getDescriptor().getMessageTypes().get(46);
+ getDescriptor().getMessageTypes().get(44);
internal_static_com_ljsd_jieling_protocols_UserMissionInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_UserMissionInfo_descriptor,
new java.lang.String[] { "MissionId", "Progress", "State", "Type", "TakeTimes", });
internal_static_com_ljsd_jieling_protocols_VipBaseInfo_descriptor =
- getDescriptor().getMessageTypes().get(47);
+ getDescriptor().getMessageTypes().get(45);
internal_static_com_ljsd_jieling_protocols_VipBaseInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_VipBaseInfo_descriptor,
new java.lang.String[] { "VipLevel", "HadTakeLevelBox", "HadTakeDailyBox", });
internal_static_com_ljsd_jieling_protocols_Friend_descriptor =
- getDescriptor().getMessageTypes().get(48);
+ getDescriptor().getMessageTypes().get(46);
internal_static_com_ljsd_jieling_protocols_Friend_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_Friend_descriptor,
- new java.lang.String[] { "Id", "Name", "Lv", "OffLineTime", "HaveReward", "IsGive", "Head", "Frame", "SoulVal", });
+ new java.lang.String[] { "Id", "Name", "Lv", "OffLineTime", "HaveReward", "IsGive", "IsApplyed", "Head", "Frame", "SoulVal", });
internal_static_com_ljsd_jieling_protocols_GiftGoodsInfo_descriptor =
- getDescriptor().getMessageTypes().get(49);
+ getDescriptor().getMessageTypes().get(47);
internal_static_com_ljsd_jieling_protocols_GiftGoodsInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_GiftGoodsInfo_descriptor,
new java.lang.String[] { "GoodsId", "BuyTimes", "StartTime", "EndTime", });
internal_static_com_ljsd_jieling_protocols_GoodsTypeDuration_descriptor =
- getDescriptor().getMessageTypes().get(50);
+ getDescriptor().getMessageTypes().get(48);
internal_static_com_ljsd_jieling_protocols_GoodsTypeDuration_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_GoodsTypeDuration_descriptor,
new java.lang.String[] { "GoodsType", "EndTime", });
internal_static_com_ljsd_jieling_protocols_TechnologyInfo_descriptor =
- getDescriptor().getMessageTypes().get(51);
+ getDescriptor().getMessageTypes().get(49);
internal_static_com_ljsd_jieling_protocols_TechnologyInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_TechnologyInfo_descriptor,
new java.lang.String[] { "TechId", "Levle", });
internal_static_com_ljsd_jieling_protocols_SuddenlyBossInfo_descriptor =
- getDescriptor().getMessageTypes().get(52);
+ getDescriptor().getMessageTypes().get(50);
internal_static_com_ljsd_jieling_protocols_SuddenlyBossInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_SuddenlyBossInfo_descriptor,
new java.lang.String[] { "SuddBossId", "EndTime", "FindMapId", });
internal_static_com_ljsd_jieling_protocols_ItemInfo_descriptor =
- getDescriptor().getMessageTypes().get(53);
+ getDescriptor().getMessageTypes().get(51);
internal_static_com_ljsd_jieling_protocols_ItemInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_ItemInfo_descriptor,
new java.lang.String[] { "TemplateId", "Overlap", "NextRefreshTime", });
internal_static_com_ljsd_jieling_protocols_TowerRankInfo_descriptor =
- getDescriptor().getMessageTypes().get(54);
+ getDescriptor().getMessageTypes().get(52);
internal_static_com_ljsd_jieling_protocols_TowerRankInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_TowerRankInfo_descriptor,
new java.lang.String[] { "Rank", "HighestTower", "Time", });
internal_static_com_ljsd_jieling_protocols_TowerRank_descriptor =
- getDescriptor().getMessageTypes().get(55);
+ getDescriptor().getMessageTypes().get(53);
internal_static_com_ljsd_jieling_protocols_TowerRank_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_TowerRank_descriptor,
new java.lang.String[] { "Uid", "Level", "Head", "UserName", "TowerRankInfo", "HeadFrame", });
+ internal_static_com_ljsd_jieling_protocols_UserRank_descriptor =
+ getDescriptor().getMessageTypes().get(54);
+ internal_static_com_ljsd_jieling_protocols_UserRank_fieldAccessorTable = new
+ com.google.protobuf.GeneratedMessage.FieldAccessorTable(
+ internal_static_com_ljsd_jieling_protocols_UserRank_descriptor,
+ new java.lang.String[] { "Uid", "Level", "Head", "UserName", "RankInfo", "HeadFrame", });
+ internal_static_com_ljsd_jieling_protocols_RankInfo_descriptor =
+ getDescriptor().getMessageTypes().get(55);
+ internal_static_com_ljsd_jieling_protocols_RankInfo_fieldAccessorTable = new
+ com.google.protobuf.GeneratedMessage.FieldAccessorTable(
+ internal_static_com_ljsd_jieling_protocols_RankInfo_descriptor,
+ new java.lang.String[] { "Rank", "Param1", "Param2", "Param3", });
internal_static_com_ljsd_jieling_protocols_ActorEffectBufferInfo_descriptor =
getDescriptor().getMessageTypes().get(56);
internal_static_com_ljsd_jieling_protocols_ActorEffectBufferInfo_fieldAccessorTable = new
@@ -80244,7 +81305,7 @@ public final class CommonProto {
internal_static_com_ljsd_jieling_protocols_UseForceInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_UseForceInfo_descriptor,
- new java.lang.String[] { "Name", "Leve", "Force", "Rank", "Head", "HeadFrame", });
+ new java.lang.String[] { "Name", "Leve", "Force", "Rank", "Head", "HeadFrame", "Uid", });
internal_static_com_ljsd_jieling_protocols_endlessSign_descriptor =
getDescriptor().getMessageTypes().get(71);
internal_static_com_ljsd_jieling_protocols_endlessSign_fieldAccessorTable = new
@@ -80280,13 +81341,13 @@ public final class CommonProto {
internal_static_com_ljsd_jieling_protocols_TeamOneInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_TeamOneInfo_descriptor,
- new java.lang.String[] { "Uid", "Level", "Name", "Head", "HeadFrame", "Team", });
+ new java.lang.String[] { "Uid", "Level", "Name", "Head", "HeadFrame", "GuildName", "Team", "IsApplyed", });
internal_static_com_ljsd_jieling_protocols_MonsterRankInfo_descriptor =
getDescriptor().getMessageTypes().get(77);
internal_static_com_ljsd_jieling_protocols_MonsterRankInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_MonsterRankInfo_descriptor,
- new java.lang.String[] { "Name", "Score", "Rank", "Level", "Head", "HeadFrame", });
+ new java.lang.String[] { "Name", "Score", "Rank", "Level", "Head", "HeadFrame", "Uid", });
internal_static_com_ljsd_jieling_protocols_HeroBloodInfo_descriptor =
getDescriptor().getMessageTypes().get(78);
internal_static_com_ljsd_jieling_protocols_HeroBloodInfo_fieldAccessorTable = new
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 a2371358d..808f5dc85 100644
--- a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/Family.java
+++ b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/Family.java
@@ -3503,6 +3503,24 @@ public final class Family {
*
*/
int getForeces();
+
+ // optional int32 head = 8;
+ /**
+ * optional int32 head = 8;
+ *
+ * + *玩家头像 + *+ */ + boolean hasHead(); + /** + *
optional int32 head = 8;
+ *
+ * + *玩家头像 + *+ */ + int getHead(); } /** * Protobuf type {@code com.ljsd.jieling.protocols.FamilyApply} @@ -3590,6 +3608,11 @@ public final class Family { foreces_ = input.readInt32(); break; } + case 64: { + bitField0_ |= 0x00000080; + head_ = input.readInt32(); + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -3821,6 +3844,30 @@ public final class Family { return foreces_; } + // optional int32 head = 8; + public static final int HEAD_FIELD_NUMBER = 8; + private int head_; + /** + *
optional int32 head = 8;
+ *
+ * + *玩家头像 + *+ */ + public boolean hasHead() { + return ((bitField0_ & 0x00000080) == 0x00000080); + } + /** + *
optional int32 head = 8;
+ *
+ * + *玩家头像 + *+ */ + public int getHead() { + return head_; + } + private void initFields() { name_ = ""; roleUid_ = 0; @@ -3829,6 +3876,7 @@ public final class Family { outTime_ = 0; level_ = 0; foreces_ = 0; + head_ = 0; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -3863,6 +3911,9 @@ public final class Family { if (((bitField0_ & 0x00000040) == 0x00000040)) { output.writeInt32(7, foreces_); } + if (((bitField0_ & 0x00000080) == 0x00000080)) { + output.writeInt32(8, head_); + } getUnknownFields().writeTo(output); } @@ -3900,6 +3951,10 @@ public final class Family { size += com.google.protobuf.CodedOutputStream .computeInt32Size(7, foreces_); } + if (((bitField0_ & 0x00000080) == 0x00000080)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(8, head_); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -4030,6 +4085,8 @@ public final class Family { bitField0_ = (bitField0_ & ~0x00000020); foreces_ = 0; bitField0_ = (bitField0_ & ~0x00000040); + head_ = 0; + bitField0_ = (bitField0_ & ~0x00000080); return this; } @@ -4086,6 +4143,10 @@ public final class Family { to_bitField0_ |= 0x00000040; } result.foreces_ = foreces_; + if (((from_bitField0_ & 0x00000080) == 0x00000080)) { + to_bitField0_ |= 0x00000080; + } + result.head_ = head_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -4125,6 +4186,9 @@ public final class Family { if (other.hasForeces()) { setForeces(other.getForeces()); } + if (other.hasHead()) { + setHead(other.getHead()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -4528,6 +4592,55 @@ public final class Family { return this; } + // optional int32 head = 8; + private int head_ ; + /** + *
optional int32 head = 8;
+ *
+ * + *玩家头像 + *+ */ + public boolean hasHead() { + return ((bitField0_ & 0x00000080) == 0x00000080); + } + /** + *
optional int32 head = 8;
+ *
+ * + *玩家头像 + *+ */ + public int getHead() { + return head_; + } + /** + *
optional int32 head = 8;
+ *
+ * + *玩家头像 + *+ */ + public Builder setHead(int value) { + bitField0_ |= 0x00000080; + head_ = value; + onChanged(); + return this; + } + /** + *
optional int32 head = 8;
+ *
+ * + *玩家头像 + *+ */ + public Builder clearHead() { + bitField0_ = (bitField0_ & ~0x00000080); + head_ = 0; + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.FamilyApply) } @@ -20235,23 +20348,41 @@ public final class Family { public interface FamilyPositionUpdateIndicationOrBuilder extends com.google.protobuf.MessageOrBuilder { - // optional int32 postiion = 1; + // optional int32 position = 1; /** - *
optional int32 postiion = 1;
+ * optional int32 position = 1;
*
* *公会职位 **/ - boolean hasPostiion(); + boolean hasPosition(); /** - *
optional int32 postiion = 1;
+ * optional int32 position = 1;
*
* *公会职位 **/ - int getPostiion(); + int getPosition(); + + // optional int32 uid = 2; + /** + *
optional int32 uid = 2;
+ *
+ * + *公会人员id + *+ */ + boolean hasUid(); + /** + *
optional int32 uid = 2;
+ *
+ * + *公会人员id + *+ */ + int getUid(); } /** * Protobuf type {@code com.ljsd.jieling.protocols.FamilyPositionUpdateIndication} @@ -20310,7 +20441,12 @@ public final class Family { } case 8: { bitField0_ |= 0x00000001; - postiion_ = input.readInt32(); + position_ = input.readInt32(); + break; + } + case 16: { + bitField0_ |= 0x00000002; + uid_ = input.readInt32(); break; } } @@ -20353,32 +20489,57 @@ public final class Family { } private int bitField0_; - // optional int32 postiion = 1; - public static final int POSTIION_FIELD_NUMBER = 1; - private int postiion_; + // optional int32 position = 1; + public static final int POSITION_FIELD_NUMBER = 1; + private int position_; /** - *
optional int32 postiion = 1;
+ * optional int32 position = 1;
*
* *公会职位 **/ - public boolean hasPostiion() { + public boolean hasPosition() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - *
optional int32 postiion = 1;
+ * optional int32 position = 1;
*
* *公会职位 **/ - public int getPostiion() { - return postiion_; + public int getPosition() { + return position_; + } + + // optional int32 uid = 2; + public static final int UID_FIELD_NUMBER = 2; + private int uid_; + /** + *
optional int32 uid = 2;
+ *
+ * + *公会人员id + *+ */ + public boolean hasUid() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + *
optional int32 uid = 2;
+ *
+ * + *公会人员id + *+ */ + public int getUid() { + return uid_; } private void initFields() { - postiion_ = 0; + position_ = 0; + uid_ = 0; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -20393,7 +20554,10 @@ public final class Family { throws java.io.IOException { getSerializedSize(); if (((bitField0_ & 0x00000001) == 0x00000001)) { - output.writeInt32(1, postiion_); + output.writeInt32(1, position_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeInt32(2, uid_); } getUnknownFields().writeTo(output); } @@ -20406,7 +20570,11 @@ public final class Family { size = 0; if (((bitField0_ & 0x00000001) == 0x00000001)) { size += com.google.protobuf.CodedOutputStream - .computeInt32Size(1, postiion_); + .computeInt32Size(1, position_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(2, uid_); } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; @@ -20528,8 +20696,10 @@ public final class Family { public Builder clear() { super.clear(); - postiion_ = 0; + position_ = 0; bitField0_ = (bitField0_ & ~0x00000001); + uid_ = 0; + bitField0_ = (bitField0_ & ~0x00000002); return this; } @@ -20561,7 +20731,11 @@ public final class Family { if (((from_bitField0_ & 0x00000001) == 0x00000001)) { to_bitField0_ |= 0x00000001; } - result.postiion_ = postiion_; + result.position_ = position_; + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000002; + } + result.uid_ = uid_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -20578,8 +20752,11 @@ public final class Family { public Builder mergeFrom(com.ljsd.jieling.protocols.Family.FamilyPositionUpdateIndication other) { if (other == com.ljsd.jieling.protocols.Family.FamilyPositionUpdateIndication.getDefaultInstance()) return this; - if (other.hasPostiion()) { - setPostiion(other.getPostiion()); + if (other.hasPosition()) { + setPosition(other.getPosition()); + } + if (other.hasUid()) { + setUid(other.getUid()); } this.mergeUnknownFields(other.getUnknownFields()); return this; @@ -20608,51 +20785,100 @@ public final class Family { } private int bitField0_; - // optional int32 postiion = 1; - private int postiion_ ; + // optional int32 position = 1; + private int position_ ; /** - *
optional int32 postiion = 1;
+ * optional int32 position = 1;
*
* *公会职位 **/ - public boolean hasPostiion() { + public boolean hasPosition() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - *
optional int32 postiion = 1;
+ * optional int32 position = 1;
*
* *公会职位 **/ - public int getPostiion() { - return postiion_; + public int getPosition() { + return position_; } /** - *
optional int32 postiion = 1;
+ * optional int32 position = 1;
*
* *公会职位 **/ - public Builder setPostiion(int value) { + public Builder setPosition(int value) { bitField0_ |= 0x00000001; - postiion_ = value; + position_ = value; onChanged(); return this; } /** - *
optional int32 postiion = 1;
+ * optional int32 position = 1;
*
* *公会职位 **/ - public Builder clearPostiion() { + public Builder clearPosition() { bitField0_ = (bitField0_ & ~0x00000001); - postiion_ = 0; + position_ = 0; + onChanged(); + return this; + } + + // optional int32 uid = 2; + private int uid_ ; + /** + *
optional int32 uid = 2;
+ *
+ * + *公会人员id + *+ */ + public boolean hasUid() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + *
optional int32 uid = 2;
+ *
+ * + *公会人员id + *+ */ + public int getUid() { + return uid_; + } + /** + *
optional int32 uid = 2;
+ *
+ * + *公会人员id + *+ */ + public Builder setUid(int value) { + bitField0_ |= 0x00000002; + uid_ = value; + onChanged(); + return this; + } + /** + *
optional int32 uid = 2;
+ *
+ * + *公会人员id + *+ */ + public Builder clearUid() { + bitField0_ = (bitField0_ & ~0x00000002); + uid_ = 0; onChanged(); return this; } @@ -20671,9 +20897,27 @@ public final class Family { public interface FamilyChangeRequestOrBuilder extends com.google.protobuf.MessageOrBuilder { - // optional string content = 1; + // optional int32 type = 1; /** - *
optional string content = 1;
+ * optional int32 type = 1;
+ *
+ * + *0为修改公会名,1为修改公会宣言 + *+ */ + boolean hasType(); + /** + *
optional int32 type = 1;
+ *
+ * + *0为修改公会名,1为修改公会宣言 + *+ */ + int getType(); + + // optional string content = 2; + /** + *
optional string content = 2;
*
* * 宣言内容 @@ -20681,7 +20925,7 @@ public final class Family { */ boolean hasContent(); /** - **/ - RECONNECT_REQUEST(309, 11700), + RECONNECT_REQUEST(310, 11700), /** *optional string content = 1;
+ *optional string content = 2;
* ** 宣言内容 @@ -20689,7 +20933,7 @@ public final class Family { */ java.lang.String getContent(); /** - **/ - QUICK_START_MONSTERFIGHTER_REQUEST(307, 11601), + QUICK_START_MONSTERFIGHTER_REQUEST(308, 11601), /** *optional string content = 1;
+ *optional string content = 2;
* ** 宣言内容 @@ -20749,8 +20993,13 @@ public final class Family { } break; } - case 10: { + case 8: { bitField0_ |= 0x00000001; + type_ = input.readInt32(); + break; + } + case 18: { + bitField0_ |= 0x00000002; content_ = input.readBytes(); break; } @@ -20794,21 +21043,45 @@ public final class Family { } private int bitField0_; - // optional string content = 1; - public static final int CONTENT_FIELD_NUMBER = 1; + // optional int32 type = 1; + public static final int TYPE_FIELD_NUMBER = 1; + private int type_; + /** + **/ - QUESTION_INDICATION(306, 11600), + QUESTION_INDICATION(307, 11600), /** *optional int32 type = 1;
+ * + *+ *0为修改公会名,1为修改公会宣言 + *+ */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + *optional int32 type = 1;
+ * + *+ *0为修改公会名,1为修改公会宣言 + *+ */ + public int getType() { + return type_; + } + + // optional string content = 2; + public static final int CONTENT_FIELD_NUMBER = 2; private java.lang.Object content_; /** - *optional string content = 1;
+ *optional string content = 2;
* ** 宣言内容 **/ public boolean hasContent() { - return ((bitField0_ & 0x00000001) == 0x00000001); + return ((bitField0_ & 0x00000002) == 0x00000002); } /** - *optional string content = 1;
+ *optional string content = 2;
* ** 宣言内容 @@ -20829,7 +21102,7 @@ public final class Family { } } /** - **/ - PLAY_WITH_SB_REQUEST(304, 11505), + PLAY_WITH_SB_REQUEST(305, 11505), /** *optional string content = 1;
+ *optional string content = 2;
* ** 宣言内容 @@ -20850,6 +21123,7 @@ public final class Family { } private void initFields() { + type_ = 0; content_ = ""; } private byte memoizedIsInitialized = -1; @@ -20865,7 +21139,10 @@ public final class Family { throws java.io.IOException { getSerializedSize(); if (((bitField0_ & 0x00000001) == 0x00000001)) { - output.writeBytes(1, getContentBytes()); + output.writeInt32(1, type_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeBytes(2, getContentBytes()); } getUnknownFields().writeTo(output); } @@ -20878,7 +21155,11 @@ public final class Family { size = 0; if (((bitField0_ & 0x00000001) == 0x00000001)) { size += com.google.protobuf.CodedOutputStream - .computeBytesSize(1, getContentBytes()); + .computeInt32Size(1, type_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeBytesSize(2, getContentBytes()); } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; @@ -20996,8 +21277,10 @@ public final class Family { public Builder clear() { super.clear(); - content_ = ""; + type_ = 0; bitField0_ = (bitField0_ & ~0x00000001); + content_ = ""; + bitField0_ = (bitField0_ & ~0x00000002); return this; } @@ -21029,6 +21312,10 @@ public final class Family { if (((from_bitField0_ & 0x00000001) == 0x00000001)) { to_bitField0_ |= 0x00000001; } + result.type_ = type_; + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000002; + } result.content_ = content_; result.bitField0_ = to_bitField0_; onBuilt(); @@ -21046,8 +21333,11 @@ public final class Family { public Builder mergeFrom(com.ljsd.jieling.protocols.Family.FamilyChangeRequest other) { if (other == com.ljsd.jieling.protocols.Family.FamilyChangeRequest.getDefaultInstance()) return this; + if (other.hasType()) { + setType(other.getType()); + } if (other.hasContent()) { - bitField0_ |= 0x00000001; + bitField0_ |= 0x00000002; content_ = other.content_; onChanged(); } @@ -21078,20 +21368,69 @@ public final class Family { } private int bitField0_; - // optional string content = 1; + // optional int32 type = 1; + private int type_ ; + /** + **/ - PLAYER_BACKCINFO_INDICATION(303, 11504), + PLAYER_BACKCINFO_INDICATION(304, 11504), /** *optional int32 type = 1;
+ * + *+ *0为修改公会名,1为修改公会宣言 + *+ */ + public boolean hasType() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + *optional int32 type = 1;
+ * + *+ *0为修改公会名,1为修改公会宣言 + *+ */ + public int getType() { + return type_; + } + /** + *optional int32 type = 1;
+ * + *+ *0为修改公会名,1为修改公会宣言 + *+ */ + public Builder setType(int value) { + bitField0_ |= 0x00000001; + type_ = value; + onChanged(); + return this; + } + /** + *optional int32 type = 1;
+ * + *+ *0为修改公会名,1为修改公会宣言 + *+ */ + public Builder clearType() { + bitField0_ = (bitField0_ & ~0x00000001); + type_ = 0; + onChanged(); + return this; + } + + // optional string content = 2; private java.lang.Object content_ = ""; /** - *optional string content = 1;
+ *optional string content = 2;
* ** 宣言内容 **/ public boolean hasContent() { - return ((bitField0_ & 0x00000001) == 0x00000001); + return ((bitField0_ & 0x00000002) == 0x00000002); } /** - *optional string content = 1;
+ *optional string content = 2;
* ** 宣言内容 @@ -21109,7 +21448,7 @@ public final class Family { } } /** - **/ - POKEMON_ADVANCED_REQUEST(301, 11502), + POKEMON_ADVANCED_REQUEST(302, 11502), /** *optional string content = 1;
+ *optional string content = 2;
* ** 宣言内容 @@ -21129,7 +21468,7 @@ public final class Family { } } /** - **/ - POKEMON_COMONPENT_LEVELUP_REQUEST(299, 11500), + POKEMON_COMONPENT_LEVELUP_REQUEST(300, 11500), /** *optional string content = 1;
+ *optional string content = 2;
* ** 宣言内容 @@ -21140,26 +21479,26 @@ public final class Family { if (value == null) { throw new NullPointerException(); } - bitField0_ |= 0x00000001; + bitField0_ |= 0x00000002; content_ = value; onChanged(); return this; } /** - **/ - NOTIFY_PAY_SUCCESS_INDICATION(298, 11300), + NOTIFY_PAY_SUCCESS_INDICATION(299, 11300), /** *optional string content = 1;
+ *optional string content = 2;
* ** 宣言内容 **/ public Builder clearContent() { - bitField0_ = (bitField0_ & ~0x00000001); + bitField0_ = (bitField0_ & ~0x00000002); content_ = getDefaultInstance().getContent(); onChanged(); return this; } /** - *optional string content = 1;
+ *optional string content = 2;
* ** 宣言内容 @@ -21170,7 +21509,7 @@ public final class Family { if (value == null) { throw new NullPointerException(); } - bitField0_ |= 0x00000001; + bitField0_ |= 0x00000002; content_ = value; onChanged(); return this; @@ -36177,114 +36516,115 @@ public final class Family { "\014\n\004name\030\001 \001(\t\022\014\n\004info\030\002 \001(\t\022\014\n\004time\030\003 \001(" + "\005\"O\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\"z\n\013FamilyApply\022\014\n\004name\030\001 \001(\t\022\017\n\007roleU" + - "id\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\"l\n\020FamilyNoticeInfo\022\023\n\013guildNotic" + - "e\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\022" + - "FamilyRecomandInfo\022B\n\016familyBaseInfo\030\001 \001" + - "(\0132*.com.ljsd.jieling.protocols.FamilyBa" + - "seInfo\022\017\n\007isApply\030\002 \001(\005\"U\n\020FamilyDefendI" + - "nfo\022\013\n\003uid\030\001 \001(\005\022\021\n\tstarCount\030\002 \001(\005\022\017\n\007b", - "uildId\030\003 \001(\005\022\020\n\010curForce\030\004 \001(\005\"6\n\023Family" + - "BuildBuffInfo\022\017\n\007buildId\030\001 \001(\005\022\016\n\006buffId" + - "\030\002 \003(\005\"y\n\025FamilyFightPlayerInfo\022<\n\010userI" + - "nfo\030\001 \001(\0132*.com.ljsd.jieling.protocols.F" + - "amilyUserInfo\022\021\n\tstarCount\030\002 \001(\005\022\017\n\007buil" + - "dId\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" + - ".protocols.FamilyBuildBuffInfo\022?\n\004user\030\003" + - " \003(\01321.com.ljsd.jieling.protocols.Family" + - "FightPlayerInfo\"\357\001\n\025GetFamilyInfoRespons", - "e\022B\n\016familyBaseInfo\030\001 \001(\0132*.com.ljsd.jie" + - "ling.protocols.FamilyBaseInfo\022B\n\016familyU" + - "serInfo\030\002 \001(\0132*.com.ljsd.jieling.protoco" + - "ls.FamilyUserInfo\022N\n\024familyWalkIndicaito" + - "n\030\003 \003(\01320.com.ljsd.jieling.protocols.Fam" + - "ilyWalkIndicaiton\"5\n\023FamilyCreateReqeust" + - "\022\014\n\004name\030\001 \001(\t\022\020\n\010announce\030\002 \001(\t\"\356\001\n\024Fam" + - "ilyCreateResponse\022B\n\016familyBaseInfo\030\001 \001(" + - "\0132*.com.ljsd.jieling.protocols.FamilyBas" + - "eInfo\022B\n\016familyUserInfo\030\002 \001(\0132*.com.ljsd", - ".jieling.protocols.FamilyUserInfo\022N\n\024fam" + - "ilyWalkIndicaiton\030\003 \001(\01320.com.ljsd.jieli" + - "ng.protocols.FamilyWalkIndicaiton\"#\n\023Fam" + - "ilySearchReqeust\022\014\n\004name\030\001 \001(\t\"a\n\023Family" + - "SeachResponse\022J\n\022familyRecomandInfo\030\001 \003(" + - "\0132..com.ljsd.jieling.protocols.FamilyRec" + - "omandInfo\"&\n\022FamilyApplyRequest\022\020\n\010famil" + - "yId\030\001 \003(\005\"\235\001\n\023FamilyJoinIndicaion\022B\n\016fam" + + "(\t\"\210\001\n\013FamilyApply\022\014\n\004name\030\001 \001(\t\022\017\n\007role" + + "Uid\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\007forece" + + "s\030\007 \001(\005\022\014\n\004head\030\010 \001(\005\"l\n\020FamilyNoticeInf" + + "o\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\006h" + + "asNew\030\005 \002(\005\"i\n\022FamilyRecomandInfo\022B\n\016fam" + "ilyBaseInfo\030\001 \001(\0132*.com.ljsd.jieling.pro" + - "tocols.FamilyBaseInfo\022B\n\016familyUserInfo\030", - "\002 \001(\0132*.com.ljsd.jieling.protocols.Famil" + - "yUserInfo\"%\n\021FamilyJoinRequest\022\020\n\010family" + - "Id\030\001 \001(\005\"b\n\022FamilyJoinResponse\022L\n\023family" + - "JoinIndicaion\030\001 \001(\0132/.com.ljsd.jieling.p" + - "rotocols.FamilyJoinIndicaion\"e\n\027FamilyRe" + - "commandResponse\022J\n\022familyRecomandInfo\030\001 " + - "\003(\0132..com.ljsd.jieling.protocols.FamilyR" + - "ecomandInfo\"a\n\033GetFamilyMemberInfoRespon" + - "se\022B\n\016familyUserInfo\030\001 \003(\0132*.com.ljsd.ji" + - "eling.protocols.FamilyUserInfo\"X\n\024GetFam", - "ilyLogResponse\022@\n\rfamilyLogInfo\030\001 \003(\0132)." + - "com.ljsd.jieling.protocols.FamilyLogInfo" + - "\"V\n\026GetFamilyApplyResponse\022<\n\013familyAppl" + - "y\030\001 \003(\0132\'.com.ljsd.jieling.protocols.Fam" + - "ilyApply\"<\n\033FamilyOperationApplyRequest\022" + - "\014\n\004type\030\001 \001(\005\022\017\n\007applyId\030\002 \001(\005\")\n\024Family" + - "KickOutRequest\022\021\n\ttargetUid\030\001 \001(\005\"?\n\030Fam" + - "ilyAppointmentReqeust\022\021\n\ttargetUid\030\001 \001(\005" + - "\022\020\n\010position\030\002 \001(\005\"2\n\036FamilyPositionUpda" + - "teIndication\022\020\n\010postiion\030\001 \001(\005\"&\n\023Family", - "ChangeRequest\022\017\n\007content\030\001 \001(\t\"3\n\024Family" + - "ChangeResponse\022\016\n\006result\030\001 \001(\005\022\013\n\003err\030\002 " + - "\001(\t\">\n\033FamilyChangeJoinTypeRequest\022\014\n\004ty" + - "pe\030\001 \001(\005\022\021\n\tintoLevel\030\002 \001(\005\"\\\n\026FamilyCha" + - "ngeIndication\022B\n\016familyBaseInfo\030\001 \001(\0132*." + - "com.ljsd.jieling.protocols.FamilyBaseInf" + - "o\"0\n\033FamilyChairmanChangeRequest\022\021\n\ttarg" + - "etUid\030\001 \001(\005\"(\n\030FamilyDissolutionRequest\022" + - "\014\n\004type\030\001 \001(\005\"V\n\030FamilyDefendViewRespons" + - "e\022:\n\004info\030\001 \003(\0132,.com.ljsd.jieling.proto", - "cols.FamilyDefendInfo\">\n\035FamilyDefendDet" + - "ailViewRequest\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.pro" + - "tocols.TeamOneTeamInfo\"8\n\030FamilyQuickDef" + - "endRequest\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\027F" + - "amilyFightInfoResponse\0229\n\004info\030\001 \003(\0132+.c" + - "om.ljsd.jieling.protocols.FamilyFightInf" + - "o\"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\t" + - "totalStar\030\005 \001(\005\022\023\n\013myTotalStar\030\006 \001(\005\"\310\001\n" + - "\030FamilyFightRoundResponse\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.pro" + - "tocols.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\031FamilyFightAttack" + - "Response\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.pro" + - "tocols.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\010po" + - "sition\030\006 \001(\005\022\023\n\013attackCount\030\007 \001(\005\022\021\n\tsta" + - "rCount\030\010 \001(\005\"*\n\032PersonalFightResultReque" + - "st\022\014\n\004type\030\001 \001(\005\"^\n\033PersonalFightResultR" + - "esponse\022?\n\006result\030\001 \003(\0132/.com.ljsd.jieli" + - "ng.protocols.PersonalFightResult\"j\n\030Guil" + - "dFightResultResponse\022\016\n\006getExp\030\001 \001(\005\022\014\n\004", - "star\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\003uid\030\001 \001(\005\022\024\n\014teamLostStar\030\002 \001(\005\"#\n\021Cha" + - "ngeIconRequest\022\016\n\006iconId\030\001 \001(\005\"V\n\032GetAtt" + - "ackHeroBloodResponse\0228\n\005blood\030\001 \003(\0132).co" + - "m.ljsd.jieling.protocols.HeroBloodInfo\" " + - "\n\020RefuseJoinFamily\022\014\n\004name\030\001 \001(\t\" \n\021Kick" + - "OutIndication\022\013\n\003uid\030\001 \001(\005B\002H\001" + "tocols.FamilyBaseInfo\022\017\n\007isApply\030\002 \001(\005\"U" + + "\n\020FamilyDefendInfo\022\013\n\003uid\030\001 \001(\005\022\021\n\tstarC", + "ount\030\002 \001(\005\022\017\n\007buildId\030\003 \001(\005\022\020\n\010curForce\030" + + "\004 \001(\005\"6\n\023FamilyBuildBuffInfo\022\017\n\007buildId\030" + + "\001 \001(\005\022\016\n\006buffId\030\002 \003(\005\"y\n\025FamilyFightPlay" + + "erInfo\022<\n\010userInfo\030\001 \001(\0132*.com.ljsd.jiel" + + "ing.protocols.FamilyUserInfo\022\021\n\tstarCoun" + + "t\030\002 \001(\005\022\017\n\007buildId\030\003 \001(\005\"\243\001\n\017FamilyFight" + + "Info\022\013\n\003gid\030\001 \001(\005\022B\n\tbuildBuff\030\002 \003(\0132/.c" + + "om.ljsd.jieling.protocols.FamilyBuildBuf" + + "fInfo\022?\n\004user\030\003 \003(\01321.com.ljsd.jieling.p" + + "rotocols.FamilyFightPlayerInfo\"\357\001\n\025GetFa", + "milyInfoResponse\022B\n\016familyBaseInfo\030\001 \001(\013" + + "2*.com.ljsd.jieling.protocols.FamilyBase" + + "Info\022B\n\016familyUserInfo\030\002 \001(\0132*.com.ljsd." + + "jieling.protocols.FamilyUserInfo\022N\n\024fami" + + "lyWalkIndicaiton\030\003 \003(\01320.com.ljsd.jielin" + + "g.protocols.FamilyWalkIndicaiton\"5\n\023Fami" + + "lyCreateReqeust\022\014\n\004name\030\001 \001(\t\022\020\n\010announc" + + "e\030\002 \001(\t\"\356\001\n\024FamilyCreateResponse\022B\n\016fami" + + "lyBaseInfo\030\001 \001(\0132*.com.ljsd.jieling.prot" + + "ocols.FamilyBaseInfo\022B\n\016familyUserInfo\030\002", + " \001(\0132*.com.ljsd.jieling.protocols.Family" + + "UserInfo\022N\n\024familyWalkIndicaiton\030\003 \001(\01320" + + ".com.ljsd.jieling.protocols.FamilyWalkIn" + + "dicaiton\"#\n\023FamilySearchReqeust\022\014\n\004name\030" + + "\001 \001(\t\"a\n\023FamilySeachResponse\022J\n\022familyRe" + + "comandInfo\030\001 \003(\0132..com.ljsd.jieling.prot" + + "ocols.FamilyRecomandInfo\"&\n\022FamilyApplyR" + + "equest\022\020\n\010familyId\030\001 \003(\005\"\235\001\n\023FamilyJoinI" + + "ndicaion\022B\n\016familyBaseInfo\030\001 \001(\0132*.com.l" + + "jsd.jieling.protocols.FamilyBaseInfo\022B\n\016", + "familyUserInfo\030\002 \001(\0132*.com.ljsd.jieling." + + "protocols.FamilyUserInfo\"%\n\021FamilyJoinRe" + + "quest\022\020\n\010familyId\030\001 \001(\005\"b\n\022FamilyJoinRes" + + "ponse\022L\n\023familyJoinIndicaion\030\001 \001(\0132/.com" + + ".ljsd.jieling.protocols.FamilyJoinIndica" + + "ion\"e\n\027FamilyRecommandResponse\022J\n\022family" + + "RecomandInfo\030\001 \003(\0132..com.ljsd.jieling.pr" + + "otocols.FamilyRecomandInfo\"a\n\033GetFamilyM" + + "emberInfoResponse\022B\n\016familyUserInfo\030\001 \003(" + + "\0132*.com.ljsd.jieling.protocols.FamilyUse", + "rInfo\"X\n\024GetFamilyLogResponse\022@\n\rfamilyL" + + "ogInfo\030\001 \003(\0132).com.ljsd.jieling.protocol" + + "s.FamilyLogInfo\"V\n\026GetFamilyApplyRespons" + + "e\022<\n\013familyApply\030\001 \003(\0132\'.com.ljsd.jielin" + + "g.protocols.FamilyApply\"<\n\033FamilyOperati" + + "onApplyRequest\022\014\n\004type\030\001 \001(\005\022\017\n\007applyId\030" + + "\002 \001(\005\")\n\024FamilyKickOutRequest\022\021\n\ttargetU" + + "id\030\001 \001(\005\"?\n\030FamilyAppointmentReqeust\022\021\n\t" + + "targetUid\030\001 \001(\005\022\020\n\010position\030\002 \001(\005\"?\n\036Fam" + + "ilyPositionUpdateIndication\022\020\n\010position\030", + "\001 \001(\005\022\013\n\003uid\030\002 \001(\005\"4\n\023FamilyChangeReques" + + "t\022\014\n\004type\030\001 \001(\005\022\017\n\007content\030\002 \001(\t\"3\n\024Fami" + + "lyChangeResponse\022\016\n\006result\030\001 \001(\005\022\013\n\003err\030" + + "\002 \001(\t\">\n\033FamilyChangeJoinTypeRequest\022\014\n\004" + + "type\030\001 \001(\005\022\021\n\tintoLevel\030\002 \001(\005\"\\\n\026FamilyC" + + "hangeIndication\022B\n\016familyBaseInfo\030\001 \001(\0132" + + "*.com.ljsd.jieling.protocols.FamilyBaseI" + + "nfo\"0\n\033FamilyChairmanChangeRequest\022\021\n\tta" + + "rgetUid\030\001 \001(\005\"(\n\030FamilyDissolutionReques" + + "t\022\014\n\004type\030\001 \001(\005\"V\n\030FamilyDefendViewRespo", + "nse\022:\n\004info\030\001 \003(\0132,.com.ljsd.jieling.pro" + + "tocols.FamilyDefendInfo\">\n\035FamilyDefendD" + + "etailViewRequest\022\020\n\010playerId\030\001 \001(\005\022\013\n\003gi" + + "d\030\002 \001(\005\"_\n\036FamilyDefendDetailViewRespons" + + "e\022=\n\010teamInfo\030\001 \001(\0132+.com.ljsd.jieling.p" + + "rotocols.TeamOneTeamInfo\"8\n\030FamilyQuickD" + + "efendRequest\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.protocols.FamilyFightI", + "nfo\"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\ttotalStar\030\005 \001(\005\022\023\n\013myTotalStar\030\006 \001(\005\"\310" + + "\001\n\030FamilyFightRoundResponse\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.p" + + "rotocols.EnemyFamily\022\023\n\013attackCount\030\007 \001(" + + "\005\":\n\030FamilyFightAttackRequest\022\021\n\tattackU" + + "id\030\001 \001(\005\022\013\n\003gid\030\002 \001(\005\"s\n\031FamilyFightAtta", + "ckResponse\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.p" + + "rotocols.FightData\"\231\001\n\023PersonalFightResu" + + "lt\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\010" + + "position\030\006 \001(\005\022\023\n\013attackCount\030\007 \001(\005\022\021\n\ts" + + "tarCount\030\010 \001(\005\"*\n\032PersonalFightResultReq" + + "uest\022\014\n\004type\030\001 \001(\005\"^\n\033PersonalFightResul" + + "tResponse\022?\n\006result\030\001 \003(\0132/.com.ljsd.jie" + + "ling.protocols.PersonalFightResult\"j\n\030Gu", + "ildFightResultResponse\022\016\n\006getExp\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\016DefeatResponse" + + "\022\013\n\003uid\030\001 \001(\005\022\024\n\014teamLostStar\030\002 \001(\005\"#\n\021C" + + "hangeIconRequest\022\016\n\006iconId\030\001 \001(\005\"V\n\032GetA" + + "ttackHeroBloodResponse\0228\n\005blood\030\001 \003(\0132)." + + "com.ljsd.jieling.protocols.HeroBloodInfo" + + "\" \n\020RefuseJoinFamily\022\014\n\004name\030\001 \001(\t\" \n\021Ki" + + "ckOutIndication\022\013\n\003uid\030\001 \001(\005B\002H\001" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -36314,7 +36654,7 @@ public final class Family { 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", }); + new java.lang.String[] { "Name", "RoleUid", "Time", "Frame", "OutTime", "Level", "Foreces", "Head", }); internal_static_com_ljsd_jieling_protocols_FamilyNoticeInfo_descriptor = getDescriptor().getMessageTypes().get(4); internal_static_com_ljsd_jieling_protocols_FamilyNoticeInfo_fieldAccessorTable = new @@ -36452,13 +36792,13 @@ public final class Family { 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[] { "Postiion", }); + new java.lang.String[] { "Position", "Uid", }); internal_static_com_ljsd_jieling_protocols_FamilyChangeRequest_descriptor = getDescriptor().getMessageTypes().get(27); 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[] { "Content", }); + new java.lang.String[] { "Type", "Content", }); internal_static_com_ljsd_jieling_protocols_FamilyChangeResponse_descriptor = getDescriptor().getMessageTypes().get(28); internal_static_com_ljsd_jieling_protocols_FamilyChangeResponse_fieldAccessorTable = new 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 7455621ac..6c28a1528 100644 --- a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/FightInfoProto.java +++ b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/FightInfoProto.java @@ -9845,680 +9845,6 @@ public final class FightInfoProto { // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.FightRePlayResponse) } - public interface GetAdventureStateInfoResponseOrBuilder - extends com.google.protobuf.MessageOrBuilder { - - // repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1; - /** - **/ com.ljsd.jieling.protocols.CommonProto.DropOrBuilder getEnventDropOrBuilder(); + + // optional .com.ljsd.jieling.protocols.FightData fightData = 3; + /** + *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - java.util.List- getAdventureStateInfoListList(); - /** - * repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo getAdventureStateInfoList(int index); - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - int getAdventureStateInfoListCount(); - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureStateInfoOrBuilder> - getAdventureStateInfoListOrBuilderList(); - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - com.ljsd.jieling.protocols.CommonProto.AdventureStateInfoOrBuilder getAdventureStateInfoListOrBuilder( - int index); - } - /** - * Protobuf type {@code com.ljsd.jieling.protocols.GetAdventureStateInfoResponse} - */ - public static final class GetAdventureStateInfoResponse extends - com.google.protobuf.GeneratedMessage - implements GetAdventureStateInfoResponseOrBuilder { - // Use GetAdventureStateInfoResponse.newBuilder() to construct. - private GetAdventureStateInfoResponse(com.google.protobuf.GeneratedMessage.Builder> builder) { - super(builder); - this.unknownFields = builder.getUnknownFields(); - } - private GetAdventureStateInfoResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } - - private static final GetAdventureStateInfoResponse defaultInstance; - public static GetAdventureStateInfoResponse getDefaultInstance() { - return defaultInstance; - } - - public GetAdventureStateInfoResponse getDefaultInstanceForType() { - return defaultInstance; - } - - private final com.google.protobuf.UnknownFieldSet unknownFields; - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private GetAdventureStateInfoResponse( - 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)) { - adventureStateInfoList_ = new java.util.ArrayList(); - mutable_bitField0_ |= 0x00000001; - } - adventureStateInfoList_.add(input.readMessage(com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.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)) { - adventureStateInfoList_ = java.util.Collections.unmodifiableList(adventureStateInfoList_); - } - 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_GetAdventureStateInfoResponse_descriptor; - } - - protected com.google.protobuf.GeneratedMessage.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_GetAdventureStateInfoResponse_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse.class, com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse.Builder.class); - } - - public static com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser () { - public GetAdventureStateInfoResponse parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new GetAdventureStateInfoResponse(input, extensionRegistry); - } - }; - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - // repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1; - public static final int ADVENTURESTATEINFOLIST_FIELD_NUMBER = 1; - private java.util.List adventureStateInfoList_; - /** - * repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public java.util.ListgetAdventureStateInfoListList() { - return adventureStateInfoList_; - } - /** - * repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureStateInfoOrBuilder> - getAdventureStateInfoListOrBuilderList() { - return adventureStateInfoList_; - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public int getAdventureStateInfoListCount() { - return adventureStateInfoList_.size(); - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo getAdventureStateInfoList(int index) { - return adventureStateInfoList_.get(index); - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureStateInfoOrBuilder getAdventureStateInfoListOrBuilder( - int index) { - return adventureStateInfoList_.get(index); - } - - private void initFields() { - adventureStateInfoList_ = 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 < adventureStateInfoList_.size(); i++) { - output.writeMessage(1, adventureStateInfoList_.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 < adventureStateInfoList_.size(); i++) { - size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, adventureStateInfoList_.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.FightInfoProto.GetAdventureStateInfoResponse parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse 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.GetAdventureStateInfoResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse 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.GetAdventureStateInfoResponse parseFrom(java.io.InputStream input) - throws java.io.IOException { - return PARSER.parseFrom(input); - } - public static com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse 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.GetAdventureStateInfoResponse parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return PARSER.parseDelimitedFrom(input); - } - public static com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse 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.GetAdventureStateInfoResponse parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return PARSER.parseFrom(input); - } - public static com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse 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.GetAdventureStateInfoResponse 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.GetAdventureStateInfoResponse} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessage.Builder- implements com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponseOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_GetAdventureStateInfoResponse_descriptor; - } - - protected com.google.protobuf.GeneratedMessage.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_GetAdventureStateInfoResponse_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse.class, com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse.Builder.class); - } - - // Construct using com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessage.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { - getAdventureStateInfoListFieldBuilder(); - } - } - private static Builder create() { - return new Builder(); - } - - public Builder clear() { - super.clear(); - if (adventureStateInfoListBuilder_ == null) { - adventureStateInfoList_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - } else { - adventureStateInfoListBuilder_.clear(); - } - 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_GetAdventureStateInfoResponse_descriptor; - } - - public com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse getDefaultInstanceForType() { - return com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse.getDefaultInstance(); - } - - public com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse build() { - com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - public com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse buildPartial() { - com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse result = new com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse(this); - int from_bitField0_ = bitField0_; - if (adventureStateInfoListBuilder_ == null) { - if (((bitField0_ & 0x00000001) == 0x00000001)) { - adventureStateInfoList_ = java.util.Collections.unmodifiableList(adventureStateInfoList_); - bitField0_ = (bitField0_ & ~0x00000001); - } - result.adventureStateInfoList_ = adventureStateInfoList_; - } else { - result.adventureStateInfoList_ = adventureStateInfoListBuilder_.build(); - } - onBuilt(); - return result; - } - - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse) { - return mergeFrom((com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse other) { - if (other == com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse.getDefaultInstance()) return this; - if (adventureStateInfoListBuilder_ == null) { - if (!other.adventureStateInfoList_.isEmpty()) { - if (adventureStateInfoList_.isEmpty()) { - adventureStateInfoList_ = other.adventureStateInfoList_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureAdventureStateInfoListIsMutable(); - adventureStateInfoList_.addAll(other.adventureStateInfoList_); - } - onChanged(); - } - } else { - if (!other.adventureStateInfoList_.isEmpty()) { - if (adventureStateInfoListBuilder_.isEmpty()) { - adventureStateInfoListBuilder_.dispose(); - adventureStateInfoListBuilder_ = null; - adventureStateInfoList_ = other.adventureStateInfoList_; - bitField0_ = (bitField0_ & ~0x00000001); - adventureStateInfoListBuilder_ = - com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? - getAdventureStateInfoListFieldBuilder() : null; - } else { - adventureStateInfoListBuilder_.addAllMessages(other.adventureStateInfoList_); - } - } - } - 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.GetAdventureStateInfoResponse parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.ljsd.jieling.protocols.FightInfoProto.GetAdventureStateInfoResponse) e.getUnfinishedMessage(); - throw e; - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - // repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1; - private java.util.List adventureStateInfoList_ = - java.util.Collections.emptyList(); - private void ensureAdventureStateInfoListIsMutable() { - if (!((bitField0_ & 0x00000001) == 0x00000001)) { - adventureStateInfoList_ = new java.util.ArrayList (adventureStateInfoList_); - bitField0_ |= 0x00000001; - } - } - - private com.google.protobuf.RepeatedFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo, com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureStateInfoOrBuilder> adventureStateInfoListBuilder_; - - /** - * repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public java.util.ListgetAdventureStateInfoListList() { - if (adventureStateInfoListBuilder_ == null) { - return java.util.Collections.unmodifiableList(adventureStateInfoList_); - } else { - return adventureStateInfoListBuilder_.getMessageList(); - } - } - /** - * repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public int getAdventureStateInfoListCount() { - if (adventureStateInfoListBuilder_ == null) { - return adventureStateInfoList_.size(); - } else { - return adventureStateInfoListBuilder_.getCount(); - } - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo getAdventureStateInfoList(int index) { - if (adventureStateInfoListBuilder_ == null) { - return adventureStateInfoList_.get(index); - } else { - return adventureStateInfoListBuilder_.getMessage(index); - } - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public Builder setAdventureStateInfoList( - int index, com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo value) { - if (adventureStateInfoListBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureAdventureStateInfoListIsMutable(); - adventureStateInfoList_.set(index, value); - onChanged(); - } else { - adventureStateInfoListBuilder_.setMessage(index, value); - } - return this; - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public Builder setAdventureStateInfoList( - int index, com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.Builder builderForValue) { - if (adventureStateInfoListBuilder_ == null) { - ensureAdventureStateInfoListIsMutable(); - adventureStateInfoList_.set(index, builderForValue.build()); - onChanged(); - } else { - adventureStateInfoListBuilder_.setMessage(index, builderForValue.build()); - } - return this; - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public Builder addAdventureStateInfoList(com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo value) { - if (adventureStateInfoListBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureAdventureStateInfoListIsMutable(); - adventureStateInfoList_.add(value); - onChanged(); - } else { - adventureStateInfoListBuilder_.addMessage(value); - } - return this; - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public Builder addAdventureStateInfoList( - int index, com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo value) { - if (adventureStateInfoListBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - ensureAdventureStateInfoListIsMutable(); - adventureStateInfoList_.add(index, value); - onChanged(); - } else { - adventureStateInfoListBuilder_.addMessage(index, value); - } - return this; - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public Builder addAdventureStateInfoList( - com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.Builder builderForValue) { - if (adventureStateInfoListBuilder_ == null) { - ensureAdventureStateInfoListIsMutable(); - adventureStateInfoList_.add(builderForValue.build()); - onChanged(); - } else { - adventureStateInfoListBuilder_.addMessage(builderForValue.build()); - } - return this; - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public Builder addAdventureStateInfoList( - int index, com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.Builder builderForValue) { - if (adventureStateInfoListBuilder_ == null) { - ensureAdventureStateInfoListIsMutable(); - adventureStateInfoList_.add(index, builderForValue.build()); - onChanged(); - } else { - adventureStateInfoListBuilder_.addMessage(index, builderForValue.build()); - } - return this; - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public Builder addAllAdventureStateInfoList( - java.lang.Iterable extends com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo> values) { - if (adventureStateInfoListBuilder_ == null) { - ensureAdventureStateInfoListIsMutable(); - super.addAll(values, adventureStateInfoList_); - onChanged(); - } else { - adventureStateInfoListBuilder_.addAllMessages(values); - } - return this; - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public Builder clearAdventureStateInfoList() { - if (adventureStateInfoListBuilder_ == null) { - adventureStateInfoList_ = java.util.Collections.emptyList(); - bitField0_ = (bitField0_ & ~0x00000001); - onChanged(); - } else { - adventureStateInfoListBuilder_.clear(); - } - return this; - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public Builder removeAdventureStateInfoList(int index) { - if (adventureStateInfoListBuilder_ == null) { - ensureAdventureStateInfoListIsMutable(); - adventureStateInfoList_.remove(index); - onChanged(); - } else { - adventureStateInfoListBuilder_.remove(index); - } - return this; - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.Builder getAdventureStateInfoListBuilder( - int index) { - return getAdventureStateInfoListFieldBuilder().getBuilder(index); - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureStateInfoOrBuilder getAdventureStateInfoListOrBuilder( - int index) { - if (adventureStateInfoListBuilder_ == null) { - return adventureStateInfoList_.get(index); } else { - return adventureStateInfoListBuilder_.getMessageOrBuilder(index); - } - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureStateInfoOrBuilder> - getAdventureStateInfoListOrBuilderList() { - if (adventureStateInfoListBuilder_ != null) { - return adventureStateInfoListBuilder_.getMessageOrBuilderList(); - } else { - return java.util.Collections.unmodifiableList(adventureStateInfoList_); - } - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.Builder addAdventureStateInfoListBuilder() { - return getAdventureStateInfoListFieldBuilder().addBuilder( - com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.getDefaultInstance()); - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.Builder addAdventureStateInfoListBuilder( - int index) { - return getAdventureStateInfoListFieldBuilder().addBuilder( - index, com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.getDefaultInstance()); - } - /** - *repeated .com.ljsd.jieling.protocols.AdventureStateInfo adventureStateInfoList = 1;
- */ - public java.util.List- getAdventureStateInfoListBuilderList() { - return getAdventureStateInfoListFieldBuilder().getBuilderList(); - } - private com.google.protobuf.RepeatedFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo, com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureStateInfoOrBuilder> - getAdventureStateInfoListFieldBuilder() { - if (adventureStateInfoListBuilder_ == null) { - adventureStateInfoListBuilder_ = new com.google.protobuf.RepeatedFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo, com.ljsd.jieling.protocols.CommonProto.AdventureStateInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureStateInfoOrBuilder>( - adventureStateInfoList_, - ((bitField0_ & 0x00000001) == 0x00000001), - getParentForChildren(), - isClean()); - adventureStateInfoList_ = null; - } - return adventureStateInfoListBuilder_; - } - - // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.GetAdventureStateInfoResponse) - } - - static { - defaultInstance = new GetAdventureStateInfoResponse(true); - defaultInstance.initFields(); - } - - // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.GetAdventureStateInfoResponse) - } - public interface TakeAventureRewardRequestOrBuilder extends com.google.protobuf.MessageOrBuilder { @@ -13641,594 +12967,6 @@ public final class FightInfoProto { // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.AdventurnChallengeResponse) } - public interface AdventureBossFlushResponseOrBuilder - extends com.google.protobuf.MessageOrBuilder { - - // optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1; - /** - * optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - boolean hasAdventureBossSimpleInfo(); - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo(); - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder(); - - // optional int32 nextFlushTime = 2; - /** - *optional int32 nextFlushTime = 2;
- */ - boolean hasNextFlushTime(); - /** - *optional int32 nextFlushTime = 2;
- */ - int getNextFlushTime(); - } - /** - * Protobuf type {@code com.ljsd.jieling.protocols.AdventureBossFlushResponse} - */ - public static final class AdventureBossFlushResponse extends - com.google.protobuf.GeneratedMessage - implements AdventureBossFlushResponseOrBuilder { - // Use AdventureBossFlushResponse.newBuilder() to construct. - private AdventureBossFlushResponse(com.google.protobuf.GeneratedMessage.Builder> builder) { - super(builder); - this.unknownFields = builder.getUnknownFields(); - } - private AdventureBossFlushResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } - - private static final AdventureBossFlushResponse defaultInstance; - public static AdventureBossFlushResponse getDefaultInstance() { - return defaultInstance; - } - - public AdventureBossFlushResponse getDefaultInstanceForType() { - return defaultInstance; - } - - private final com.google.protobuf.UnknownFieldSet unknownFields; - @java.lang.Override - public final com.google.protobuf.UnknownFieldSet - getUnknownFields() { - return this.unknownFields; - } - private AdventureBossFlushResponse( - 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.AdventureBossSimpleInfo.Builder subBuilder = null; - if (((bitField0_ & 0x00000001) == 0x00000001)) { - subBuilder = adventureBossSimpleInfo_.toBuilder(); - } - adventureBossSimpleInfo_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.PARSER, extensionRegistry); - if (subBuilder != null) { - subBuilder.mergeFrom(adventureBossSimpleInfo_); - adventureBossSimpleInfo_ = subBuilder.buildPartial(); - } - bitField0_ |= 0x00000001; - break; - } - case 16: { - bitField0_ |= 0x00000002; - nextFlushTime_ = 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_AdventureBossFlushResponse_descriptor; - } - - protected com.google.protobuf.GeneratedMessage.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_AdventureBossFlushResponse_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse.class, com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse.Builder.class); - } - - public static com.google.protobuf.ParserPARSER = - new com.google.protobuf.AbstractParser () { - public AdventureBossFlushResponse parsePartialFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return new AdventureBossFlushResponse(input, extensionRegistry); - } - }; - - @java.lang.Override - public com.google.protobuf.Parser getParserForType() { - return PARSER; - } - - private int bitField0_; - // optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1; - public static final int ADVENTUREBOSSSIMPLEINFO_FIELD_NUMBER = 1; - private com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo adventureBossSimpleInfo_; - /** - * optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - public boolean hasAdventureBossSimpleInfo() { - return ((bitField0_ & 0x00000001) == 0x00000001); - } - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo() { - return adventureBossSimpleInfo_; - } - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder() { - return adventureBossSimpleInfo_; - } - - // optional int32 nextFlushTime = 2; - public static final int NEXTFLUSHTIME_FIELD_NUMBER = 2; - private int nextFlushTime_; - /** - *optional int32 nextFlushTime = 2;
- */ - public boolean hasNextFlushTime() { - return ((bitField0_ & 0x00000002) == 0x00000002); - } - /** - *optional int32 nextFlushTime = 2;
- */ - public int getNextFlushTime() { - return nextFlushTime_; - } - - private void initFields() { - adventureBossSimpleInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); - nextFlushTime_ = 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.writeMessage(1, adventureBossSimpleInfo_); - } - if (((bitField0_ & 0x00000002) == 0x00000002)) { - output.writeInt32(2, nextFlushTime_); - } - 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, adventureBossSimpleInfo_); - } - if (((bitField0_ & 0x00000002) == 0x00000002)) { - size += com.google.protobuf.CodedOutputStream - .computeInt32Size(2, nextFlushTime_); - } - 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.AdventureBossFlushResponse parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse 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.AdventureBossFlushResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return PARSER.parseFrom(data); - } - public static com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse 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.AdventureBossFlushResponse parseFrom(java.io.InputStream input) - throws java.io.IOException { - return PARSER.parseFrom(input); - } - public static com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse 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.AdventureBossFlushResponse parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return PARSER.parseDelimitedFrom(input); - } - public static com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse 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.AdventureBossFlushResponse parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return PARSER.parseFrom(input); - } - public static com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse 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.AdventureBossFlushResponse 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.AdventureBossFlushResponse} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessage.Builder- implements com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponseOrBuilder { - public static final com.google.protobuf.Descriptors.Descriptor - getDescriptor() { - return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_AdventureBossFlushResponse_descriptor; - } - - protected com.google.protobuf.GeneratedMessage.FieldAccessorTable - internalGetFieldAccessorTable() { - return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_AdventureBossFlushResponse_fieldAccessorTable - .ensureFieldAccessorsInitialized( - com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse.class, com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse.Builder.class); - } - - // Construct using com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse.newBuilder() - private Builder() { - maybeForceBuilderInitialization(); - } - - private Builder( - com.google.protobuf.GeneratedMessage.BuilderParent parent) { - super(parent); - maybeForceBuilderInitialization(); - } - private void maybeForceBuilderInitialization() { - if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { - getAdventureBossSimpleInfoFieldBuilder(); - } - } - private static Builder create() { - return new Builder(); - } - - public Builder clear() { - super.clear(); - if (adventureBossSimpleInfoBuilder_ == null) { - adventureBossSimpleInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); - } else { - adventureBossSimpleInfoBuilder_.clear(); - } - bitField0_ = (bitField0_ & ~0x00000001); - nextFlushTime_ = 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_AdventureBossFlushResponse_descriptor; - } - - public com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse getDefaultInstanceForType() { - return com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse.getDefaultInstance(); - } - - public com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse build() { - com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse result = buildPartial(); - if (!result.isInitialized()) { - throw newUninitializedMessageException(result); - } - return result; - } - - public com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse buildPartial() { - com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse result = new com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse(this); - int from_bitField0_ = bitField0_; - int to_bitField0_ = 0; - if (((from_bitField0_ & 0x00000001) == 0x00000001)) { - to_bitField0_ |= 0x00000001; - } - if (adventureBossSimpleInfoBuilder_ == null) { - result.adventureBossSimpleInfo_ = adventureBossSimpleInfo_; - } else { - result.adventureBossSimpleInfo_ = adventureBossSimpleInfoBuilder_.build(); - } - if (((from_bitField0_ & 0x00000002) == 0x00000002)) { - to_bitField0_ |= 0x00000002; - } - result.nextFlushTime_ = nextFlushTime_; - result.bitField0_ = to_bitField0_; - onBuilt(); - return result; - } - - public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse) { - return mergeFrom((com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse)other); - } else { - super.mergeFrom(other); - return this; - } - } - - public Builder mergeFrom(com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse other) { - if (other == com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse.getDefaultInstance()) return this; - if (other.hasAdventureBossSimpleInfo()) { - mergeAdventureBossSimpleInfo(other.getAdventureBossSimpleInfo()); - } - if (other.hasNextFlushTime()) { - setNextFlushTime(other.getNextFlushTime()); - } - 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.AdventureBossFlushResponse parsedMessage = null; - try { - parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); - } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFlushResponse) e.getUnfinishedMessage(); - throw e; - } finally { - if (parsedMessage != null) { - mergeFrom(parsedMessage); - } - } - return this; - } - private int bitField0_; - - // optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1; - private com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo adventureBossSimpleInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); - private com.google.protobuf.SingleFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder> adventureBossSimpleInfoBuilder_; - /** - * optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - public boolean hasAdventureBossSimpleInfo() { - return ((bitField0_ & 0x00000001) == 0x00000001); - } - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo() { - if (adventureBossSimpleInfoBuilder_ == null) { - return adventureBossSimpleInfo_; - } else { - return adventureBossSimpleInfoBuilder_.getMessage(); - } - } - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - public Builder setAdventureBossSimpleInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) { - if (adventureBossSimpleInfoBuilder_ == null) { - if (value == null) { - throw new NullPointerException(); - } - adventureBossSimpleInfo_ = value; - onChanged(); - } else { - adventureBossSimpleInfoBuilder_.setMessage(value); - } - bitField0_ |= 0x00000001; - return this; - } - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - public Builder setAdventureBossSimpleInfo( - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder builderForValue) { - if (adventureBossSimpleInfoBuilder_ == null) { - adventureBossSimpleInfo_ = builderForValue.build(); - onChanged(); - } else { - adventureBossSimpleInfoBuilder_.setMessage(builderForValue.build()); - } - bitField0_ |= 0x00000001; - return this; - } - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - public Builder mergeAdventureBossSimpleInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) { - if (adventureBossSimpleInfoBuilder_ == null) { - if (((bitField0_ & 0x00000001) == 0x00000001) && - adventureBossSimpleInfo_ != com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance()) { - adventureBossSimpleInfo_ = - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.newBuilder(adventureBossSimpleInfo_).mergeFrom(value).buildPartial(); - } else { - adventureBossSimpleInfo_ = value; - } - onChanged(); - } else { - adventureBossSimpleInfoBuilder_.mergeFrom(value); - } - bitField0_ |= 0x00000001; - return this; - } - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - public Builder clearAdventureBossSimpleInfo() { - if (adventureBossSimpleInfoBuilder_ == null) { - adventureBossSimpleInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); - onChanged(); - } else { - adventureBossSimpleInfoBuilder_.clear(); - } - bitField0_ = (bitField0_ & ~0x00000001); - return this; - } - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder getAdventureBossSimpleInfoBuilder() { - bitField0_ |= 0x00000001; - onChanged(); - return getAdventureBossSimpleInfoFieldBuilder().getBuilder(); - } - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder() { - if (adventureBossSimpleInfoBuilder_ != null) { - return adventureBossSimpleInfoBuilder_.getMessageOrBuilder(); - } else { - return adventureBossSimpleInfo_; - } - } - /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
- */ - private com.google.protobuf.SingleFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder> - getAdventureBossSimpleInfoFieldBuilder() { - if (adventureBossSimpleInfoBuilder_ == null) { - adventureBossSimpleInfoBuilder_ = new com.google.protobuf.SingleFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder>( - adventureBossSimpleInfo_, - getParentForChildren(), - isClean()); - adventureBossSimpleInfo_ = null; - } - return adventureBossSimpleInfoBuilder_; - } - - // optional int32 nextFlushTime = 2; - private int nextFlushTime_ ; - /** - *optional int32 nextFlushTime = 2;
- */ - public boolean hasNextFlushTime() { - return ((bitField0_ & 0x00000002) == 0x00000002); - } - /** - *optional int32 nextFlushTime = 2;
- */ - public int getNextFlushTime() { - return nextFlushTime_; - } - /** - *optional int32 nextFlushTime = 2;
- */ - public Builder setNextFlushTime(int value) { - bitField0_ |= 0x00000002; - nextFlushTime_ = value; - onChanged(); - return this; - } - /** - *optional int32 nextFlushTime = 2;
- */ - public Builder clearNextFlushTime() { - bitField0_ = (bitField0_ & ~0x00000002); - nextFlushTime_ = 0; - onChanged(); - return this; - } - - // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.AdventureBossFlushResponse) - } - - static { - defaultInstance = new AdventureBossFlushResponse(true); - defaultInstance.initFields(); - } - - // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.AdventureBossFlushResponse) - } - public interface AdventureBossInfoResponseOrBuilder extends com.google.protobuf.MessageOrBuilder { @@ -19488,19 +18226,19 @@ public final class FightInfoProto { public interface AdventureBossFindIndicationOrBuilder extends com.google.protobuf.MessageOrBuilder { - // optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1; + // optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1; /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - boolean hasAdventureBossSimpleInfo(); + boolean hasAdventureBossInfo(); /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo(); + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo getAdventureBossInfo(); /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder(); + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder getAdventureBossInfoOrBuilder(); } /** * Protobuf type {@code com.ljsd.jieling.protocols.AdventureBossFindIndication} @@ -19554,14 +18292,14 @@ public final class FightInfoProto { break; } case 10: { - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder subBuilder = null; + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder subBuilder = null; if (((bitField0_ & 0x00000001) == 0x00000001)) { - subBuilder = adventureBossSimpleInfo_.toBuilder(); + subBuilder = adventureBossInfo_.toBuilder(); } - adventureBossSimpleInfo_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.PARSER, extensionRegistry); + adventureBossInfo_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.PARSER, extensionRegistry); if (subBuilder != null) { - subBuilder.mergeFrom(adventureBossSimpleInfo_); - adventureBossSimpleInfo_ = subBuilder.buildPartial(); + subBuilder.mergeFrom(adventureBossInfo_); + adventureBossInfo_ = subBuilder.buildPartial(); } bitField0_ |= 0x00000001; break; @@ -19606,30 +18344,30 @@ public final class FightInfoProto { } private int bitField0_; - // optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1; - public static final int ADVENTUREBOSSSIMPLEINFO_FIELD_NUMBER = 1; - private com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo adventureBossSimpleInfo_; + // optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1; + public static final int ADVENTUREBOSSINFO_FIELD_NUMBER = 1; + private com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo adventureBossInfo_; /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public boolean hasAdventureBossSimpleInfo() { + public boolean hasAdventureBossInfo() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo() { - return adventureBossSimpleInfo_; + public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo getAdventureBossInfo() { + return adventureBossInfo_; } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder() { - return adventureBossSimpleInfo_; + public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder getAdventureBossInfoOrBuilder() { + return adventureBossInfo_; } private void initFields() { - adventureBossSimpleInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); + adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance(); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -19644,7 +18382,7 @@ public final class FightInfoProto { throws java.io.IOException { getSerializedSize(); if (((bitField0_ & 0x00000001) == 0x00000001)) { - output.writeMessage(1, adventureBossSimpleInfo_); + output.writeMessage(1, adventureBossInfo_); } getUnknownFields().writeTo(output); } @@ -19657,7 +18395,7 @@ public final class FightInfoProto { size = 0; if (((bitField0_ & 0x00000001) == 0x00000001)) { size += com.google.protobuf.CodedOutputStream - .computeMessageSize(1, adventureBossSimpleInfo_); + .computeMessageSize(1, adventureBossInfo_); } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; @@ -19767,7 +18505,7 @@ public final class FightInfoProto { } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { - getAdventureBossSimpleInfoFieldBuilder(); + getAdventureBossInfoFieldBuilder(); } } private static Builder create() { @@ -19776,10 +18514,10 @@ public final class FightInfoProto { public Builder clear() { super.clear(); - if (adventureBossSimpleInfoBuilder_ == null) { - adventureBossSimpleInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); + if (adventureBossInfoBuilder_ == null) { + adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance(); } else { - adventureBossSimpleInfoBuilder_.clear(); + adventureBossInfoBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000001); return this; @@ -19813,10 +18551,10 @@ public final class FightInfoProto { if (((from_bitField0_ & 0x00000001) == 0x00000001)) { to_bitField0_ |= 0x00000001; } - if (adventureBossSimpleInfoBuilder_ == null) { - result.adventureBossSimpleInfo_ = adventureBossSimpleInfo_; + if (adventureBossInfoBuilder_ == null) { + result.adventureBossInfo_ = adventureBossInfo_; } else { - result.adventureBossSimpleInfo_ = adventureBossSimpleInfoBuilder_.build(); + result.adventureBossInfo_ = adventureBossInfoBuilder_.build(); } result.bitField0_ = to_bitField0_; onBuilt(); @@ -19834,8 +18572,8 @@ public final class FightInfoProto { public Builder mergeFrom(com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFindIndication other) { if (other == com.ljsd.jieling.protocols.FightInfoProto.AdventureBossFindIndication.getDefaultInstance()) return this; - if (other.hasAdventureBossSimpleInfo()) { - mergeAdventureBossSimpleInfo(other.getAdventureBossSimpleInfo()); + if (other.hasAdventureBossInfo()) { + mergeAdventureBossInfo(other.getAdventureBossInfo()); } this.mergeUnknownFields(other.getUnknownFields()); return this; @@ -19864,121 +18602,121 @@ public final class FightInfoProto { } private int bitField0_; - // optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1; - private com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo adventureBossSimpleInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); + // optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1; + private com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance(); private com.google.protobuf.SingleFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder> adventureBossSimpleInfoBuilder_; + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder> adventureBossInfoBuilder_; /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public boolean hasAdventureBossSimpleInfo() { + public boolean hasAdventureBossInfo() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo() { - if (adventureBossSimpleInfoBuilder_ == null) { - return adventureBossSimpleInfo_; + public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo getAdventureBossInfo() { + if (adventureBossInfoBuilder_ == null) { + return adventureBossInfo_; } else { - return adventureBossSimpleInfoBuilder_.getMessage(); + return adventureBossInfoBuilder_.getMessage(); } } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public Builder setAdventureBossSimpleInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) { - if (adventureBossSimpleInfoBuilder_ == null) { + public Builder setAdventureBossInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo value) { + if (adventureBossInfoBuilder_ == null) { if (value == null) { throw new NullPointerException(); } - adventureBossSimpleInfo_ = value; + adventureBossInfo_ = value; onChanged(); } else { - adventureBossSimpleInfoBuilder_.setMessage(value); + adventureBossInfoBuilder_.setMessage(value); } bitField0_ |= 0x00000001; return this; } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public Builder setAdventureBossSimpleInfo( - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder builderForValue) { - if (adventureBossSimpleInfoBuilder_ == null) { - adventureBossSimpleInfo_ = builderForValue.build(); + public Builder setAdventureBossInfo( + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder builderForValue) { + if (adventureBossInfoBuilder_ == null) { + adventureBossInfo_ = builderForValue.build(); onChanged(); } else { - adventureBossSimpleInfoBuilder_.setMessage(builderForValue.build()); + adventureBossInfoBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000001; return this; } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public Builder mergeAdventureBossSimpleInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) { - if (adventureBossSimpleInfoBuilder_ == null) { + public Builder mergeAdventureBossInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo value) { + if (adventureBossInfoBuilder_ == null) { if (((bitField0_ & 0x00000001) == 0x00000001) && - adventureBossSimpleInfo_ != com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance()) { - adventureBossSimpleInfo_ = - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.newBuilder(adventureBossSimpleInfo_).mergeFrom(value).buildPartial(); + adventureBossInfo_ != com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance()) { + adventureBossInfo_ = + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.newBuilder(adventureBossInfo_).mergeFrom(value).buildPartial(); } else { - adventureBossSimpleInfo_ = value; + adventureBossInfo_ = value; } onChanged(); } else { - adventureBossSimpleInfoBuilder_.mergeFrom(value); + adventureBossInfoBuilder_.mergeFrom(value); } bitField0_ |= 0x00000001; return this; } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public Builder clearAdventureBossSimpleInfo() { - if (adventureBossSimpleInfoBuilder_ == null) { - adventureBossSimpleInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); + public Builder clearAdventureBossInfo() { + if (adventureBossInfoBuilder_ == null) { + adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance(); onChanged(); } else { - adventureBossSimpleInfoBuilder_.clear(); + adventureBossInfoBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000001); return this; } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder getAdventureBossSimpleInfoBuilder() { + public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder getAdventureBossInfoBuilder() { bitField0_ |= 0x00000001; onChanged(); - return getAdventureBossSimpleInfoFieldBuilder().getBuilder(); + return getAdventureBossInfoFieldBuilder().getBuilder(); } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder() { - if (adventureBossSimpleInfoBuilder_ != null) { - return adventureBossSimpleInfoBuilder_.getMessageOrBuilder(); + public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder getAdventureBossInfoOrBuilder() { + if (adventureBossInfoBuilder_ != null) { + return adventureBossInfoBuilder_.getMessageOrBuilder(); } else { - return adventureBossSimpleInfo_; + return adventureBossInfo_; } } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 1;
+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ private com.google.protobuf.SingleFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder> - getAdventureBossSimpleInfoFieldBuilder() { - if (adventureBossSimpleInfoBuilder_ == null) { - adventureBossSimpleInfoBuilder_ = new com.google.protobuf.SingleFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder>( - adventureBossSimpleInfo_, + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder> + getAdventureBossInfoFieldBuilder() { + if (adventureBossInfoBuilder_ == null) { + adventureBossInfoBuilder_ = new com.google.protobuf.SingleFieldBuilder< + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder>( + adventureBossInfo_, getParentForChildren(), isClean()); - adventureBossSimpleInfo_ = null; + adventureBossInfo_ = null; } - return adventureBossSimpleInfoBuilder_; + return adventureBossInfoBuilder_; } // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.AdventureBossFindIndication) @@ -20423,31 +19161,19 @@ public final class FightInfoProto { public interface AdventureCallBossResponseOrBuilder extends com.google.protobuf.MessageOrBuilder { - // optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1; + // optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1; /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ boolean hasAdventureBossInfo(); /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossInfo(); + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo getAdventureBossInfo(); /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossInfoOrBuilder(); + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder getAdventureBossInfoOrBuilder(); } /** * Protobuf type {@code com.ljsd.jieling.protocols.AdventureCallBossResponse} @@ -20501,11 +19227,11 @@ public final class FightInfoProto { break; } case 10: { - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder subBuilder = null; + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder subBuilder = null; if (((bitField0_ & 0x00000001) == 0x00000001)) { subBuilder = adventureBossInfo_.toBuilder(); } - adventureBossInfo_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.PARSER, extensionRegistry); + adventureBossInfo_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.PARSER, extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(adventureBossInfo_); adventureBossInfo_ = subBuilder.buildPartial(); @@ -20553,42 +19279,30 @@ public final class FightInfoProto { } private int bitField0_; - // optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1; + // optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1; public static final int ADVENTUREBOSSINFO_FIELD_NUMBER = 1; - private com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo adventureBossInfo_; + private com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo adventureBossInfo_; /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ public boolean hasAdventureBossInfo() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossInfo() { + public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo getAdventureBossInfo() { return adventureBossInfo_; } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossInfoOrBuilder() { + public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder getAdventureBossInfoOrBuilder() { return adventureBossInfo_; } private void initFields() { - adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); + adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance(); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -20736,7 +19450,7 @@ public final class FightInfoProto { public Builder clear() { super.clear(); if (adventureBossInfoBuilder_ == null) { - adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); + adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance(); } else { adventureBossInfoBuilder_.clear(); } @@ -20823,28 +19537,20 @@ public final class FightInfoProto { } private int bitField0_; - // optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1; - private com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); + // optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1; + private com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance(); private com.google.protobuf.SingleFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder> adventureBossInfoBuilder_; + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder> adventureBossInfoBuilder_; /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ public boolean hasAdventureBossInfo() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossInfo() { + public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo getAdventureBossInfo() { if (adventureBossInfoBuilder_ == null) { return adventureBossInfo_; } else { @@ -20852,13 +19558,9 @@ public final class FightInfoProto { } } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public Builder setAdventureBossInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) { + public Builder setAdventureBossInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo value) { if (adventureBossInfoBuilder_ == null) { if (value == null) { throw new NullPointerException(); @@ -20872,14 +19574,10 @@ public final class FightInfoProto { return this; } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ public Builder setAdventureBossInfo( - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder builderForValue) { + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder builderForValue) { if (adventureBossInfoBuilder_ == null) { adventureBossInfo_ = builderForValue.build(); onChanged(); @@ -20890,18 +19588,14 @@ public final class FightInfoProto { return this; } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public Builder mergeAdventureBossInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) { + public Builder mergeAdventureBossInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo value) { if (adventureBossInfoBuilder_ == null) { if (((bitField0_ & 0x00000001) == 0x00000001) && - adventureBossInfo_ != com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance()) { + adventureBossInfo_ != com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance()) { adventureBossInfo_ = - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.newBuilder(adventureBossInfo_).mergeFrom(value).buildPartial(); + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.newBuilder(adventureBossInfo_).mergeFrom(value).buildPartial(); } else { adventureBossInfo_ = value; } @@ -20913,15 +19607,11 @@ public final class FightInfoProto { return this; } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ public Builder clearAdventureBossInfo() { if (adventureBossInfoBuilder_ == null) { - adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance(); + adventureBossInfo_ = com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance(); onChanged(); } else { adventureBossInfoBuilder_.clear(); @@ -20930,25 +19620,17 @@ public final class FightInfoProto { return this; } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder getAdventureBossInfoBuilder() { + public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder getAdventureBossInfoBuilder() { bitField0_ |= 0x00000001; onChanged(); return getAdventureBossInfoFieldBuilder().getBuilder(); } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ - public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossInfoOrBuilder() { + public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder getAdventureBossInfoOrBuilder() { if (adventureBossInfoBuilder_ != null) { return adventureBossInfoBuilder_.getMessageOrBuilder(); } else { @@ -20956,18 +19638,14 @@ public final class FightInfoProto { } } /** - *optional .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossInfo = 1;
- * - *- * 召唤bosss信息 - *+ *optional .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 1;
*/ private com.google.protobuf.SingleFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder> + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder> getAdventureBossInfoFieldBuilder() { if (adventureBossInfoBuilder_ == null) { adventureBossInfoBuilder_ = new com.google.protobuf.SingleFieldBuilder< - com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder>( + com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder>( adventureBossInfo_, getParentForChildren(), isClean()); @@ -21542,6 +20220,20 @@ public final class FightInfoProto { *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + boolean hasFightData(); + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + com.ljsd.jieling.protocols.CommonProto.FightData getFightData(); + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + com.ljsd.jieling.protocols.CommonProto.FightDataOrBuilder getFightDataOrBuilder(); } /** * Protobuf type {@code com.ljsd.jieling.protocols.QuickStartMonsterFightResponse} @@ -21612,6 +20304,19 @@ public final class FightInfoProto { bitField0_ |= 0x00000002; break; } + case 26: { + com.ljsd.jieling.protocols.CommonProto.FightData.Builder subBuilder = null; + if (((bitField0_ & 0x00000004) == 0x00000004)) { + subBuilder = fightData_.toBuilder(); + } + fightData_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.FightData.PARSER, extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(fightData_); + fightData_ = subBuilder.buildPartial(); + } + bitField0_ |= 0x00000004; + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -21710,9 +20415,32 @@ public final class FightInfoProto { return enventDrop_; } + // optional .com.ljsd.jieling.protocols.FightData fightData = 3; + public static final int FIGHTDATA_FIELD_NUMBER = 3; + private com.ljsd.jieling.protocols.CommonProto.FightData fightData_; + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + public boolean hasFightData() { + return ((bitField0_ & 0x00000004) == 0x00000004); + } + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + public com.ljsd.jieling.protocols.CommonProto.FightData getFightData() { + return fightData_; + } + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + public com.ljsd.jieling.protocols.CommonProto.FightDataOrBuilder getFightDataOrBuilder() { + return fightData_; + } + private void initFields() { result_ = 0; enventDrop_ = com.ljsd.jieling.protocols.CommonProto.Drop.getDefaultInstance(); + fightData_ = com.ljsd.jieling.protocols.CommonProto.FightData.getDefaultInstance(); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -21732,6 +20460,9 @@ public final class FightInfoProto { if (((bitField0_ & 0x00000002) == 0x00000002)) { output.writeMessage(2, enventDrop_); } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + output.writeMessage(3, fightData_); + } getUnknownFields().writeTo(output); } @@ -21749,6 +20480,10 @@ public final class FightInfoProto { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, enventDrop_); } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, fightData_); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -21858,6 +20593,7 @@ public final class FightInfoProto { private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { getEnventDropFieldBuilder(); + getFightDataFieldBuilder(); } } private static Builder create() { @@ -21874,6 +20610,12 @@ public final class FightInfoProto { enventDropBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000002); + if (fightDataBuilder_ == null) { + fightData_ = com.ljsd.jieling.protocols.CommonProto.FightData.getDefaultInstance(); + } else { + fightDataBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000004); return this; } @@ -21914,6 +20656,14 @@ public final class FightInfoProto { } else { result.enventDrop_ = enventDropBuilder_.build(); } + if (((from_bitField0_ & 0x00000004) == 0x00000004)) { + to_bitField0_ |= 0x00000004; + } + if (fightDataBuilder_ == null) { + result.fightData_ = fightData_; + } else { + result.fightData_ = fightDataBuilder_.build(); + } result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -21936,6 +20686,9 @@ public final class FightInfoProto { if (other.hasEnventDrop()) { mergeEnventDrop(other.getEnventDrop()); } + if (other.hasFightData()) { + mergeFightData(other.getFightData()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -22165,6 +20918,123 @@ public final class FightInfoProto { return enventDropBuilder_; } + // optional .com.ljsd.jieling.protocols.FightData fightData = 3; + 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 = 3;
+ */ + public boolean hasFightData() { + return ((bitField0_ & 0x00000004) == 0x00000004); + } + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + public com.ljsd.jieling.protocols.CommonProto.FightData getFightData() { + if (fightDataBuilder_ == null) { + return fightData_; + } else { + return fightDataBuilder_.getMessage(); + } + } + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + 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_ |= 0x00000004; + return this; + } + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + public Builder setFightData( + com.ljsd.jieling.protocols.CommonProto.FightData.Builder builderForValue) { + if (fightDataBuilder_ == null) { + fightData_ = builderForValue.build(); + onChanged(); + } else { + fightDataBuilder_.setMessage(builderForValue.build()); + } + bitField0_ |= 0x00000004; + return this; + } + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + public Builder mergeFightData(com.ljsd.jieling.protocols.CommonProto.FightData value) { + if (fightDataBuilder_ == null) { + if (((bitField0_ & 0x00000004) == 0x00000004) && + 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_ |= 0x00000004; + return this; + } + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + public Builder clearFightData() { + if (fightDataBuilder_ == null) { + fightData_ = com.ljsd.jieling.protocols.CommonProto.FightData.getDefaultInstance(); + onChanged(); + } else { + fightDataBuilder_.clear(); + } + bitField0_ = (bitField0_ & ~0x00000004); + return this; + } + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + public com.ljsd.jieling.protocols.CommonProto.FightData.Builder getFightDataBuilder() { + bitField0_ |= 0x00000004; + onChanged(); + return getFightDataFieldBuilder().getBuilder(); + } + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + public com.ljsd.jieling.protocols.CommonProto.FightDataOrBuilder getFightDataOrBuilder() { + if (fightDataBuilder_ != null) { + return fightDataBuilder_.getMessageOrBuilder(); + } else { + return fightData_; + } + } + /** + *optional .com.ljsd.jieling.protocols.FightData fightData = 3;
+ */ + 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_; + } + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.QuickStartMonsterFightResponse) } @@ -23045,6 +21915,547 @@ public final class FightInfoProto { // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.MainLevelRankInfoResponse) } + public interface MainLevelFightUpdateIndicationOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // optional int32 fightId = 1; + /** + *optional int32 fightId = 1;
+ * + *+ *关卡id + *+ */ + boolean hasFightId(); + /** + *optional int32 fightId = 1;
+ * + *+ *关卡id + *+ */ + int getFightId(); + + // optional int32 state = 2; + /** + *optional int32 state = 2;
+ * + *+ * 状态 + *+ */ + boolean hasState(); + /** + *optional int32 state = 2;
+ * + *+ * 状态 + *+ */ + int getState(); + } + /** + * Protobuf type {@code com.ljsd.jieling.protocols.MainLevelFightUpdateIndication} + */ + public static final class MainLevelFightUpdateIndication extends + com.google.protobuf.GeneratedMessage + implements MainLevelFightUpdateIndicationOrBuilder { + // Use MainLevelFightUpdateIndication.newBuilder() to construct. + private MainLevelFightUpdateIndication(com.google.protobuf.GeneratedMessage.Builder> builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private MainLevelFightUpdateIndication(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final MainLevelFightUpdateIndication defaultInstance; + public static MainLevelFightUpdateIndication getDefaultInstance() { + return defaultInstance; + } + + public MainLevelFightUpdateIndication getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private MainLevelFightUpdateIndication( + 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; + fightId_ = input.readInt32(); + break; + } + case 16: { + bitField0_ |= 0x00000002; + state_ = 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_MainLevelFightUpdateIndication_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_MainLevelFightUpdateIndication_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication.class, com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication.Builder.class); + } + + public static com.google.protobuf.ParserPARSER = + new com.google.protobuf.AbstractParser () { + public MainLevelFightUpdateIndication parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new MainLevelFightUpdateIndication(input, extensionRegistry); + } + }; + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + private int bitField0_; + // optional int32 fightId = 1; + public static final int FIGHTID_FIELD_NUMBER = 1; + private int fightId_; + /** + * optional int32 fightId = 1;
+ * + *+ *关卡id + *+ */ + public boolean hasFightId() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + *optional int32 fightId = 1;
+ * + *+ *关卡id + *+ */ + public int getFightId() { + return fightId_; + } + + // optional int32 state = 2; + public static final int STATE_FIELD_NUMBER = 2; + private int state_; + /** + *optional int32 state = 2;
+ * + *+ * 状态 + *+ */ + public boolean hasState() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + *optional int32 state = 2;
+ * + *+ * 状态 + *+ */ + public int getState() { + return state_; + } + + private void initFields() { + fightId_ = 0; + state_ = 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, fightId_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeInt32(2, state_); + } + 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, fightId_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeInt32Size(2, state_); + } + 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.MainLevelFightUpdateIndication parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication 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.MainLevelFightUpdateIndication parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication 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.MainLevelFightUpdateIndication parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication 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.MainLevelFightUpdateIndication parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication 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.MainLevelFightUpdateIndication parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication 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.MainLevelFightUpdateIndication 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.MainLevelFightUpdateIndication} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder+ implements com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndicationOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_MainLevelFightUpdateIndication_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.FightInfoProto.internal_static_com_ljsd_jieling_protocols_MainLevelFightUpdateIndication_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication.class, com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication.Builder.class); + } + + // Construct using com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication.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(); + fightId_ = 0; + bitField0_ = (bitField0_ & ~0x00000001); + state_ = 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_MainLevelFightUpdateIndication_descriptor; + } + + public com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication getDefaultInstanceForType() { + return com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication.getDefaultInstance(); + } + + public com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication build() { + com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication buildPartial() { + com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication result = new com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; + } + result.fightId_ = fightId_; + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000002; + } + result.state_ = state_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication) { + return mergeFrom((com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication other) { + if (other == com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication.getDefaultInstance()) return this; + if (other.hasFightId()) { + setFightId(other.getFightId()); + } + if (other.hasState()) { + setState(other.getState()); + } + 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.MainLevelFightUpdateIndication parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.ljsd.jieling.protocols.FightInfoProto.MainLevelFightUpdateIndication) e.getUnfinishedMessage(); + throw e; + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + // optional int32 fightId = 1; + private int fightId_ ; + /** + * optional int32 fightId = 1;
+ * + *+ *关卡id + *+ */ + public boolean hasFightId() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + *optional int32 fightId = 1;
+ * + *+ *关卡id + *+ */ + public int getFightId() { + return fightId_; + } + /** + *optional int32 fightId = 1;
+ * + *+ *关卡id + *+ */ + public Builder setFightId(int value) { + bitField0_ |= 0x00000001; + fightId_ = value; + onChanged(); + return this; + } + /** + *optional int32 fightId = 1;
+ * + *+ *关卡id + *+ */ + public Builder clearFightId() { + bitField0_ = (bitField0_ & ~0x00000001); + fightId_ = 0; + onChanged(); + return this; + } + + // optional int32 state = 2; + private int state_ ; + /** + *optional int32 state = 2;
+ * + *+ * 状态 + *+ */ + public boolean hasState() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + *optional int32 state = 2;
+ * + *+ * 状态 + *+ */ + public int getState() { + return state_; + } + /** + *optional int32 state = 2;
+ * + *+ * 状态 + *+ */ + public Builder setState(int value) { + bitField0_ |= 0x00000002; + state_ = value; + onChanged(); + return this; + } + /** + *optional int32 state = 2;
+ * + *+ * 状态 + *+ */ + public Builder clearState() { + bitField0_ = (bitField0_ & ~0x00000002); + state_ = 0; + onChanged(); + return this; + } + + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.MainLevelFightUpdateIndication) + } + + static { + defaultInstance = new MainLevelFightUpdateIndication(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.MainLevelFightUpdateIndication) + } + private static com.google.protobuf.Descriptors.Descriptor internal_static_com_ljsd_jieling_protocols_FightStartRequest_descriptor; private static @@ -23095,11 +22506,6 @@ public final class FightInfoProto { private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_com_ljsd_jieling_protocols_FightRePlayResponse_fieldAccessorTable; - private static com.google.protobuf.Descriptors.Descriptor - internal_static_com_ljsd_jieling_protocols_GetAdventureStateInfoResponse_descriptor; - private static - com.google.protobuf.GeneratedMessage.FieldAccessorTable - internal_static_com_ljsd_jieling_protocols_GetAdventureStateInfoResponse_fieldAccessorTable; private static com.google.protobuf.Descriptors.Descriptor internal_static_com_ljsd_jieling_protocols_TakeAventureRewardRequest_descriptor; private static @@ -23125,11 +22531,6 @@ public final class FightInfoProto { private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_com_ljsd_jieling_protocols_AdventurnChallengeResponse_fieldAccessorTable; - private static com.google.protobuf.Descriptors.Descriptor - internal_static_com_ljsd_jieling_protocols_AdventureBossFlushResponse_descriptor; - private static - com.google.protobuf.GeneratedMessage.FieldAccessorTable - internal_static_com_ljsd_jieling_protocols_AdventureBossFlushResponse_fieldAccessorTable; private static com.google.protobuf.Descriptors.Descriptor internal_static_com_ljsd_jieling_protocols_AdventureBossInfoResponse_descriptor; private static @@ -23195,6 +22596,11 @@ public final class FightInfoProto { private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_com_ljsd_jieling_protocols_MainLevelRankInfoResponse_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_com_ljsd_jieling_protocols_MainLevelFightUpdateIndication_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_com_ljsd_jieling_protocols_MainLevelFightUpdateIndication_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { @@ -23240,58 +22646,55 @@ public final class FightInfoProto { "cols.ItemInfo\"3\n\022FightRePlayRequest\022\014\n\004t" + "ype\030\001 \001(\005\022\017\n\007fightId\030\002 \001(\t\"O\n\023FightRePla" + "yResponse\0228\n\tfightData\030\001 \001(\0132%.com.ljsd." + - "jieling.protocols.FightData\"o\n\035GetAdvent" + - "ureStateInfoResponse\022N\n\026adventureStateIn" + - "foList\030\001 \003(\0132..com.ljsd.jieling.protocol" + - "s.AdventureStateInfo\";\n\031TakeAventureRewa", - "rdRequest\022\014\n\004type\030\001 \001(\005\022\020\n\010position\030\002 \001(" + - "\005\"\202\001\n\032TakeAventureRewardResponse\022.\n\004Drop" + - "\030\001 \001(\0132 .com.ljsd.jieling.protocols.Drop" + - "\0224\n\nrandomDrop\030\002 \001(\0132 .com.ljsd.jieling." + - "protocols.Drop\"*\n\027AdventureUpLevelReques" + - "t\022\017\n\007arenaId\030\001 \001(\005\"O\n\031AdventurnChallenge" + - "Request\022\017\n\007arenaId\030\001 \001(\005\022\016\n\006teamId\030\002 \001(\005" + - "\022\021\n\tskipFight\030\003 \001(\005\"k\n\032AdventurnChalleng" + - "eResponse\022\023\n\013fightResult\030\001 \001(\005\0228\n\tfightD" + - "ata\030\002 \001(\0132%.com.ljsd.jieling.protocols.F", - "ightData\"\211\001\n\032AdventureBossFlushResponse\022" + - "T\n\027adventureBossSimpleInfo\030\001 \001(\01323.com.l" + - "jsd.jieling.protocols.AdventureBossSimpl" + - "eInfo\022\025\n\rnextFlushTime\030\002 \001(\005\"e\n\031Adventur" + - "eBossInfoResponse\022H\n\021adventureBossInfo\030\001" + - " \003(\0132-.com.ljsd.jieling.protocols.Advent" + - "ureBossInfo\"g\n\036AdventurenBossChallengeRe" + - "quest\022\016\n\006bossId\030\001 \001(\t\022\016\n\006teamId\030\002 \001(\005\022\022\n" + - "\nfightTimes\030\003 \001(\005\022\021\n\tskipFight\030\004 \001(\005\"\335\001\n" + - "\037AdventurenBossChallengeResponse\022\020\n\010hurt", - "Nums\030\001 \001(\005\0228\n\tfightData\030\002 \001(\0132%.com.ljsd" + - ".jieling.protocols.FightData\022\023\n\013fightRes" + - "ult\030\003 \001(\005\022\031\n\021consumeFightTimes\030\004 \001(\005\022\023\n\013" + - "killRewards\030\005 \001(\t\022\023\n\013bossTotalHp\030\006 \001(\005\022\024" + - "\n\014bossRemainHp\030\007 \001(\005\":\n\033AdventureBossKil" + - "lIndication\022\013\n\003pos\030\001 \001(\005\022\016\n\006bossId\030\002 \001(\t" + - "\"+\n\031AdventureBossShareRequest\022\016\n\006bossId\030" + - "\001 \001(\t\"$\n\024AdventurnRankRequest\022\014\n\004page\030\001 " + - "\001(\005\"\254\001\n\025AdventurnRankResponse\022P\n\025adventu" + - "reRankItemInfo\030\001 \003(\01321.com.ljsd.jieling.", - "protocols.AdventureRankItemInfo\022A\n\006myInf" + - "o\030\002 \001(\01321.com.ljsd.jieling.protocols.Adv" + - "entureRankItemInfo\"s\n\033AdventureBossFindI" + - "ndication\022T\n\027adventureBossSimpleInfo\030\001 \001" + - "(\01323.com.ljsd.jieling.protocols.Adventur" + - "eBossSimpleInfo\"$\n\024AdventureLeftRequest\022" + - "\014\n\004type\030\001 \001(\005\"k\n\031AdventureCallBossRespon" + - "se\022N\n\021adventureBossInfo\030\001 \001(\01323.com.ljsd" + - ".jieling.protocols.AdventureBossSimpleIn" + - "fo\"@\n\035QuickStartMonsterFightRequest\022\017\n\007f", - "ightId\030\001 \001(\005\022\016\n\006teamId\030\002 \001(\005\"f\n\036QuickSta" + - "rtMonsterFightResponse\022\016\n\006result\030\001 \001(\005\0224" + - "\n\nenventDrop\030\002 \001(\0132 .com.ljsd.jieling.pr" + - "otocols.Drop\"\261\001\n\031MainLevelRankInfoRespon" + - "se\022H\n\021MainLevelRankInfo\030\001 \003(\0132-.com.ljsd" + - ".jieling.protocols.MainLevelRankInfo\022J\n\023" + - "myMainLevelRankInfo\030\002 \001(\0132-.com.ljsd.jie" + - "ling.protocols.MainLevelRankInfoB\002H\001" + "jieling.protocols.FightData\";\n\031TakeAvent" + + "ureRewardRequest\022\014\n\004type\030\001 \001(\005\022\020\n\010positi" + + "on\030\002 \001(\005\"\202\001\n\032TakeAventureRewardResponse\022" + + ".\n\004Drop\030\001 \001(\0132 .com.ljsd.jieling.protoco", + "ls.Drop\0224\n\nrandomDrop\030\002 \001(\0132 .com.ljsd.j" + + "ieling.protocols.Drop\"*\n\027AdventureUpLeve" + + "lRequest\022\017\n\007arenaId\030\001 \001(\005\"O\n\031AdventurnCh" + + "allengeRequest\022\017\n\007arenaId\030\001 \001(\005\022\016\n\006teamI" + + "d\030\002 \001(\005\022\021\n\tskipFight\030\003 \001(\005\"k\n\032AdventurnC" + + "hallengeResponse\022\023\n\013fightResult\030\001 \001(\005\0228\n" + + "\tfightData\030\002 \001(\0132%.com.ljsd.jieling.prot" + + "ocols.FightData\"e\n\031AdventureBossInfoResp" + + "onse\022H\n\021adventureBossInfo\030\001 \003(\0132-.com.lj" + + "sd.jieling.protocols.AdventureBossInfo\"g", + "\n\036AdventurenBossChallengeRequest\022\016\n\006boss" + + "Id\030\001 \001(\t\022\016\n\006teamId\030\002 \001(\005\022\022\n\nfightTimes\030\003" + + " \001(\005\022\021\n\tskipFight\030\004 \001(\005\"\335\001\n\037AdventurenBo" + + "ssChallengeResponse\022\020\n\010hurtNums\030\001 \001(\005\0228\n" + + "\tfightData\030\002 \001(\0132%.com.ljsd.jieling.prot" + + "ocols.FightData\022\023\n\013fightResult\030\003 \001(\005\022\031\n\021" + + "consumeFightTimes\030\004 \001(\005\022\023\n\013killRewards\030\005" + + " \001(\t\022\023\n\013bossTotalHp\030\006 \001(\005\022\024\n\014bossRemainH" + + "p\030\007 \001(\005\":\n\033AdventureBossKillIndication\022\013" + + "\n\003pos\030\001 \001(\005\022\016\n\006bossId\030\002 \001(\t\"+\n\031Adventure", + "BossShareRequest\022\016\n\006bossId\030\001 \001(\t\"$\n\024Adve" + + "nturnRankRequest\022\014\n\004page\030\001 \001(\005\"\254\001\n\025Adven" + + "turnRankResponse\022P\n\025adventureRankItemInf" + + "o\030\001 \003(\01321.com.ljsd.jieling.protocols.Adv" + + "entureRankItemInfo\022A\n\006myInfo\030\002 \001(\01321.com" + + ".ljsd.jieling.protocols.AdventureRankIte" + + "mInfo\"g\n\033AdventureBossFindIndication\022H\n\021" + + "adventureBossInfo\030\001 \001(\0132-.com.ljsd.jieli" + + "ng.protocols.AdventureBossInfo\"$\n\024Advent" + + "ureLeftRequest\022\014\n\004type\030\001 \001(\005\"e\n\031Adventur", + "eCallBossResponse\022H\n\021adventureBossInfo\030\001" + + " \001(\0132-.com.ljsd.jieling.protocols.Advent" + + "ureBossInfo\"@\n\035QuickStartMonsterFightReq" + + "uest\022\017\n\007fightId\030\001 \001(\005\022\016\n\006teamId\030\002 \001(\005\"\240\001" + + "\n\036QuickStartMonsterFightResponse\022\016\n\006resu" + + "lt\030\001 \001(\005\0224\n\nenventDrop\030\002 \001(\0132 .com.ljsd." + + "jieling.protocols.Drop\0228\n\tfightData\030\003 \001(" + + "\0132%.com.ljsd.jieling.protocols.FightData" + + "\"\261\001\n\031MainLevelRankInfoResponse\022H\n\021MainLe" + + "velRankInfo\030\001 \003(\0132-.com.ljsd.jieling.pro", + "tocols.MainLevelRankInfo\022J\n\023myMainLevelR" + + "ankInfo\030\002 \001(\0132-.com.ljsd.jieling.protoco" + + "ls.MainLevelRankInfo\"@\n\036MainLevelFightUp" + + "dateIndication\022\017\n\007fightId\030\001 \001(\005\022\r\n\005state" + + "\030\002 \001(\005B\002H\001" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -23358,126 +22761,120 @@ public final class FightInfoProto { com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_FightRePlayResponse_descriptor, new java.lang.String[] { "FightData", }); - internal_static_com_ljsd_jieling_protocols_GetAdventureStateInfoResponse_descriptor = - getDescriptor().getMessageTypes().get(10); - internal_static_com_ljsd_jieling_protocols_GetAdventureStateInfoResponse_fieldAccessorTable = new - com.google.protobuf.GeneratedMessage.FieldAccessorTable( - internal_static_com_ljsd_jieling_protocols_GetAdventureStateInfoResponse_descriptor, - new java.lang.String[] { "AdventureStateInfoList", }); internal_static_com_ljsd_jieling_protocols_TakeAventureRewardRequest_descriptor = - getDescriptor().getMessageTypes().get(11); + getDescriptor().getMessageTypes().get(10); internal_static_com_ljsd_jieling_protocols_TakeAventureRewardRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_TakeAventureRewardRequest_descriptor, new java.lang.String[] { "Type", "Position", }); internal_static_com_ljsd_jieling_protocols_TakeAventureRewardResponse_descriptor = - getDescriptor().getMessageTypes().get(12); + getDescriptor().getMessageTypes().get(11); internal_static_com_ljsd_jieling_protocols_TakeAventureRewardResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_TakeAventureRewardResponse_descriptor, new java.lang.String[] { "Drop", "RandomDrop", }); internal_static_com_ljsd_jieling_protocols_AdventureUpLevelRequest_descriptor = - getDescriptor().getMessageTypes().get(13); + getDescriptor().getMessageTypes().get(12); internal_static_com_ljsd_jieling_protocols_AdventureUpLevelRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventureUpLevelRequest_descriptor, new java.lang.String[] { "ArenaId", }); internal_static_com_ljsd_jieling_protocols_AdventurnChallengeRequest_descriptor = - getDescriptor().getMessageTypes().get(14); + getDescriptor().getMessageTypes().get(13); internal_static_com_ljsd_jieling_protocols_AdventurnChallengeRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventurnChallengeRequest_descriptor, new java.lang.String[] { "ArenaId", "TeamId", "SkipFight", }); internal_static_com_ljsd_jieling_protocols_AdventurnChallengeResponse_descriptor = - getDescriptor().getMessageTypes().get(15); + getDescriptor().getMessageTypes().get(14); internal_static_com_ljsd_jieling_protocols_AdventurnChallengeResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventurnChallengeResponse_descriptor, new java.lang.String[] { "FightResult", "FightData", }); - internal_static_com_ljsd_jieling_protocols_AdventureBossFlushResponse_descriptor = - getDescriptor().getMessageTypes().get(16); - internal_static_com_ljsd_jieling_protocols_AdventureBossFlushResponse_fieldAccessorTable = new - com.google.protobuf.GeneratedMessage.FieldAccessorTable( - internal_static_com_ljsd_jieling_protocols_AdventureBossFlushResponse_descriptor, - new java.lang.String[] { "AdventureBossSimpleInfo", "NextFlushTime", }); internal_static_com_ljsd_jieling_protocols_AdventureBossInfoResponse_descriptor = - getDescriptor().getMessageTypes().get(17); + getDescriptor().getMessageTypes().get(15); internal_static_com_ljsd_jieling_protocols_AdventureBossInfoResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventureBossInfoResponse_descriptor, new java.lang.String[] { "AdventureBossInfo", }); internal_static_com_ljsd_jieling_protocols_AdventurenBossChallengeRequest_descriptor = - getDescriptor().getMessageTypes().get(18); + getDescriptor().getMessageTypes().get(16); internal_static_com_ljsd_jieling_protocols_AdventurenBossChallengeRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventurenBossChallengeRequest_descriptor, new java.lang.String[] { "BossId", "TeamId", "FightTimes", "SkipFight", }); internal_static_com_ljsd_jieling_protocols_AdventurenBossChallengeResponse_descriptor = - getDescriptor().getMessageTypes().get(19); + getDescriptor().getMessageTypes().get(17); internal_static_com_ljsd_jieling_protocols_AdventurenBossChallengeResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventurenBossChallengeResponse_descriptor, new java.lang.String[] { "HurtNums", "FightData", "FightResult", "ConsumeFightTimes", "KillRewards", "BossTotalHp", "BossRemainHp", }); internal_static_com_ljsd_jieling_protocols_AdventureBossKillIndication_descriptor = - getDescriptor().getMessageTypes().get(20); + getDescriptor().getMessageTypes().get(18); internal_static_com_ljsd_jieling_protocols_AdventureBossKillIndication_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventureBossKillIndication_descriptor, new java.lang.String[] { "Pos", "BossId", }); internal_static_com_ljsd_jieling_protocols_AdventureBossShareRequest_descriptor = - getDescriptor().getMessageTypes().get(21); + getDescriptor().getMessageTypes().get(19); internal_static_com_ljsd_jieling_protocols_AdventureBossShareRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventureBossShareRequest_descriptor, new java.lang.String[] { "BossId", }); internal_static_com_ljsd_jieling_protocols_AdventurnRankRequest_descriptor = - getDescriptor().getMessageTypes().get(22); + getDescriptor().getMessageTypes().get(20); internal_static_com_ljsd_jieling_protocols_AdventurnRankRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventurnRankRequest_descriptor, new java.lang.String[] { "Page", }); internal_static_com_ljsd_jieling_protocols_AdventurnRankResponse_descriptor = - getDescriptor().getMessageTypes().get(23); + getDescriptor().getMessageTypes().get(21); internal_static_com_ljsd_jieling_protocols_AdventurnRankResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventurnRankResponse_descriptor, new java.lang.String[] { "AdventureRankItemInfo", "MyInfo", }); internal_static_com_ljsd_jieling_protocols_AdventureBossFindIndication_descriptor = - getDescriptor().getMessageTypes().get(24); + getDescriptor().getMessageTypes().get(22); internal_static_com_ljsd_jieling_protocols_AdventureBossFindIndication_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventureBossFindIndication_descriptor, - new java.lang.String[] { "AdventureBossSimpleInfo", }); + new java.lang.String[] { "AdventureBossInfo", }); internal_static_com_ljsd_jieling_protocols_AdventureLeftRequest_descriptor = - getDescriptor().getMessageTypes().get(25); + getDescriptor().getMessageTypes().get(23); internal_static_com_ljsd_jieling_protocols_AdventureLeftRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventureLeftRequest_descriptor, new java.lang.String[] { "Type", }); internal_static_com_ljsd_jieling_protocols_AdventureCallBossResponse_descriptor = - getDescriptor().getMessageTypes().get(26); + getDescriptor().getMessageTypes().get(24); internal_static_com_ljsd_jieling_protocols_AdventureCallBossResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_AdventureCallBossResponse_descriptor, new java.lang.String[] { "AdventureBossInfo", }); internal_static_com_ljsd_jieling_protocols_QuickStartMonsterFightRequest_descriptor = - getDescriptor().getMessageTypes().get(27); + getDescriptor().getMessageTypes().get(25); internal_static_com_ljsd_jieling_protocols_QuickStartMonsterFightRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_QuickStartMonsterFightRequest_descriptor, new java.lang.String[] { "FightId", "TeamId", }); internal_static_com_ljsd_jieling_protocols_QuickStartMonsterFightResponse_descriptor = - getDescriptor().getMessageTypes().get(28); + getDescriptor().getMessageTypes().get(26); internal_static_com_ljsd_jieling_protocols_QuickStartMonsterFightResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_QuickStartMonsterFightResponse_descriptor, - new java.lang.String[] { "Result", "EnventDrop", }); + new java.lang.String[] { "Result", "EnventDrop", "FightData", }); internal_static_com_ljsd_jieling_protocols_MainLevelRankInfoResponse_descriptor = - getDescriptor().getMessageTypes().get(29); + getDescriptor().getMessageTypes().get(27); internal_static_com_ljsd_jieling_protocols_MainLevelRankInfoResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_com_ljsd_jieling_protocols_MainLevelRankInfoResponse_descriptor, new java.lang.String[] { "MainLevelRankInfo", "MyMainLevelRankInfo", }); + internal_static_com_ljsd_jieling_protocols_MainLevelFightUpdateIndication_descriptor = + getDescriptor().getMessageTypes().get(28); + internal_static_com_ljsd_jieling_protocols_MainLevelFightUpdateIndication_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_com_ljsd_jieling_protocols_MainLevelFightUpdateIndication_descriptor, + new java.lang.String[] { "FightId", "State", }); 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 240e05571..aaa01c622 100644 --- a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/MessageTypeProto.java +++ b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/MessageTypeProto.java @@ -1789,17 +1789,17 @@ public final class MessageTypeProto { */ MAP_TOWER_USEBUFF_RESPONSE(286, 11232), /** - *MODIFY_HEAD_REQUEST = 11233;
+ *MODIFY_DECORATION_REQUEST = 11233;
* *- *修改头或头像框 + *修改外观装饰 **/ - MODIFY_HEAD_REQUEST(287, 11233), + MODIFY_DECORATION_REQUEST(287, 11233), /** - *MODIFY_HEAD_RESPONSE = 11234;
+ *MODIFY_DECORATION_RESPONSE = 11234;
*/ - MODIFY_HEAD_RESPONSE(288, 11234), + MODIFY_DECORATION_RESPONSE(288, 11234), /** *MAP_OUT_INDICATION = 11235;
* @@ -1860,6 +1860,10 @@ public final class MessageTypeProto { *MAIL_DELETE_RESPONSE = 11243;
*/ MAIL_DELETE_RESPONSE(297, 11243), + /** + *MAIN_LEVEL_FIGHT_UPDATE_INDICATION = 11244;
+ */ + MAIN_LEVEL_FIGHT_UPDATE_INDICATION(298, 11244), /** *NOTIFY_PAY_SUCCESS_INDICATION = 11300;
* @@ -1867,7 +1871,7 @@ public final class MessageTypeProto { * N 11300 *POKEMON_COMONPENT_LEVELUP_REQUEST = 11500;
* @@ -1876,11 +1880,11 @@ public final class MessageTypeProto { * P 11500 *POKEMON_COMONPENT_LEVELUP_RESPONSE = 11501;
*/ - POKEMON_COMONPENT_LEVELUP_RESPONSE(300, 11501), + POKEMON_COMONPENT_LEVELUP_RESPONSE(301, 11501), /** *POKEMON_ADVANCED_REQUEST = 11502;
* @@ -1888,11 +1892,11 @@ public final class MessageTypeProto { *异妖进阶 *POKEMON_ADVANCED_RESPONSE = 11503;
*/ - POKEMON_ADVANCED_RESPONSE(302, 11503), + POKEMON_ADVANCED_RESPONSE(303, 11503), /** *PLAYER_BACKCINFO_INDICATION = 11504;
* @@ -1900,7 +1904,7 @@ public final class MessageTypeProto { *客服平台推送 *PLAY_WITH_SB_REQUEST = 11505;
* @@ -1908,11 +1912,11 @@ public final class MessageTypeProto { *切磋 *PLAY_WITH_SB_RESPONSE = 11506;
*/ - PLAY_WITH_SB_RESPONSE(305, 11506), + PLAY_WITH_SB_RESPONSE(306, 11506), /** *QUESTION_INDICATION = 11600;
* @@ -1920,7 +1924,7 @@ public final class MessageTypeProto { * Q 11600 *QUICK_START_MONSTERFIGHTER_REQUEST = 11601;
* @@ -1928,11 +1932,11 @@ public final class MessageTypeProto { *兽潮快速战斗 *QUICK_START_MONSTERFIGHTER_REPONSE = 11602;
*/ - QUICK_START_MONSTERFIGHTER_REPONSE(308, 11602), + QUICK_START_MONSTERFIGHTER_REPONSE(309, 11602), /** *RECONNECT_REQUEST = 11700;
* @@ -1940,11 +1944,11 @@ public final class MessageTypeProto { * R 11700 *
RECONNECT_RESPONSE = 11701;
*/
- RECONNECT_RESPONSE(310, 11701),
+ RECONNECT_RESPONSE(311, 11701),
/**
* RANDOMNAME_REQUEST = 11702;
*
@@ -1952,11 +1956,11 @@ public final class MessageTypeProto {
* 随机名字
*
*/
- RANDOMNAME_REQUEST(311, 11702),
+ RANDOMNAME_REQUEST(312, 11702),
/**
* RANDOMNAME_RESPONSE = 11703;
*/
- RANDOMNAME_RESPONSE(312, 11703),
+ RANDOMNAME_RESPONSE(313, 11703),
/**
* RENAME_REQUEST = 11704;
*
@@ -1964,11 +1968,11 @@ public final class MessageTypeProto {
* 修改名字
*
*/
- RENAME_REQUEST(313, 11704),
+ RENAME_REQUEST(314, 11704),
/**
* RENAME_RESPONSE = 11705;
*/
- RENAME_RESPONSE(314, 11705),
+ RENAME_RESPONSE(315, 11705),
/**
* RINGFIRE_LOAD_REQUEST = 11706;
*
@@ -1976,11 +1980,11 @@ public final class MessageTypeProto {
*天赋异妖组件放置
*
*/
- RINGFIRE_LOAD_REQUEST(315, 11706),
+ RINGFIRE_LOAD_REQUEST(316, 11706),
/**
* RINGFIRE_LOAD_RESPONSE = 11707;
*/
- RINGFIRE_LOAD_RESPONSE(316, 11707),
+ RINGFIRE_LOAD_RESPONSE(317, 11707),
/**
* RINGFIRE_ADVANCED_REQUEST = 11708;
*
@@ -1988,11 +1992,11 @@ public final class MessageTypeProto {
*天赋异妖进阶
*
*/
- RINGFIRE_ADVANCED_REQUEST(317, 11708),
+ RINGFIRE_ADVANCED_REQUEST(318, 11708),
/**
* RINGFIRE_ADVANCED_RESPONSE = 11709;
*/
- RINGFIRE_ADVANCED_RESPONSE(318, 11709),
+ RINGFIRE_ADVANCED_RESPONSE(319, 11709),
/**
* REFRESH_FRIEND_STATE_REQEUST = 11710;
*
@@ -2000,11 +2004,11 @@ public final class MessageTypeProto {
*刷新好友在线状态
*
*/
- REFRESH_FRIEND_STATE_REQEUST(319, 11710),
+ REFRESH_FRIEND_STATE_REQEUST(320, 11710),
/**
* REFRESH_FRIEND_STATE_RESPONSE = 11711;
*/
- REFRESH_FRIEND_STATE_RESPONSE(320, 11711),
+ REFRESH_FRIEND_STATE_RESPONSE(321, 11711),
/**
* ROOM_MATCH_REQUEST = 11712;
*
@@ -2012,11 +2016,11 @@ public final class MessageTypeProto {
*请求匹配
*
*/
- ROOM_MATCH_REQUEST(321, 11712),
+ ROOM_MATCH_REQUEST(322, 11712),
/**
* ROOM_MATCH_RESPONSE = 11713;
*/
- ROOM_MATCH_RESPONSE(322, 11713),
+ ROOM_MATCH_RESPONSE(323, 11713),
/**
* ROOM_CANCEL_MATCH_REQUEST = 11714;
*
@@ -2024,15 +2028,15 @@ public final class MessageTypeProto {
*取消匹配
*
*/
- ROOM_CANCEL_MATCH_REQUEST(323, 11714),
+ ROOM_CANCEL_MATCH_REQUEST(324, 11714),
/**
* ROOM_CANCEL_MATCH_RESPONSE = 11715;
*/
- ROOM_CANCEL_MATCH_RESPONSE(324, 11715),
+ ROOM_CANCEL_MATCH_RESPONSE(325, 11715),
/**
* ROOM_MATCH_SUCCESS_INDICATION = 11716;
*/
- ROOM_MATCH_SUCCESS_INDICATION(325, 11716),
+ ROOM_MATCH_SUCCESS_INDICATION(326, 11716),
/**
* ROOM_START_GAME_READY_REQUEST = 11718;
*
@@ -2040,11 +2044,11 @@ public final class MessageTypeProto {
*准备
*
*/
- ROOM_START_GAME_READY_REQUEST(326, 11718),
+ ROOM_START_GAME_READY_REQUEST(327, 11718),
/**
* ROOM_START_GAME_READY_RESPONSE = 11719;
*/
- ROOM_START_GAME_READY_RESPONSE(327, 11719),
+ ROOM_START_GAME_READY_RESPONSE(328, 11719),
/**
* ROOM_START_GAME_INDICATION = 11720;
*
@@ -2052,7 +2056,7 @@ public final class MessageTypeProto {
*开始游戏推送
*
*/
- ROOM_START_GAME_INDICATION(328, 11720),
+ ROOM_START_GAME_INDICATION(329, 11720),
/**
* ROOM_GAME_START_REQUEST = 11722;
*
@@ -2060,11 +2064,11 @@ public final class MessageTypeProto {
*开始游戏
*
*/
- ROOM_GAME_START_REQUEST(329, 11722),
+ ROOM_GAME_START_REQUEST(330, 11722),
/**
* ROOM_GAME_START_RESPONSE = 11723;
*/
- ROOM_GAME_START_RESPONSE(330, 11723),
+ ROOM_GAME_START_RESPONSE(331, 11723),
/**
* ROOM_GAME_END_INDICATION = 11724;
*
@@ -2072,7 +2076,7 @@ public final class MessageTypeProto {
*游戏结束
*
*/
- ROOM_GAME_END_INDICATION(331, 11724),
+ ROOM_GAME_END_INDICATION(332, 11724),
/**
* ROOM_SYNC_MYSELF_MOVE_REQUEST = 11726;
*
@@ -2080,11 +2084,11 @@ public final class MessageTypeProto {
*移动同步
*
*/
- ROOM_SYNC_MYSELF_MOVE_REQUEST(332, 11726),
+ ROOM_SYNC_MYSELF_MOVE_REQUEST(333, 11726),
/**
* ROOM_SYNC_MYSELF_MOVE_RESPONSE = 11727;
*/
- ROOM_SYNC_MYSELF_MOVE_RESPONSE(333, 11727),
+ ROOM_SYNC_MYSELF_MOVE_RESPONSE(334, 11727),
/**
* ROOM_SYNC_OTHER_MOVE_INDICTION = 11728;
*
@@ -2092,7 +2096,7 @@ public final class MessageTypeProto {
*移动其他用户的位置
*
*/
- ROOM_SYNC_OTHER_MOVE_INDICTION(334, 11728),
+ ROOM_SYNC_OTHER_MOVE_INDICTION(335, 11728),
/**
* ROOM_TRIGGER_FIGHT_INDICATION = 11730;
*
@@ -2100,7 +2104,7 @@ public final class MessageTypeProto {
*触发战斗
*
*/
- ROOM_TRIGGER_FIGHT_INDICATION(335, 11730),
+ ROOM_TRIGGER_FIGHT_INDICATION(336, 11730),
/**
* ROOM_GET_FULL_INFO_REQEUST = 11731;
*
@@ -2108,11 +2112,11 @@ public final class MessageTypeProto {
*获取房间全量信息
*
*/
- ROOM_GET_FULL_INFO_REQEUST(336, 11731),
+ ROOM_GET_FULL_INFO_REQEUST(337, 11731),
/**
* ROOM_GET_FULL_INFO_RESPONSE = 11732;
*/
- ROOM_GET_FULL_INFO_RESPONSE(337, 11732),
+ ROOM_GET_FULL_INFO_RESPONSE(338, 11732),
/**
* ROOM_MAP_UPDATE_EVENT_REQUEST = 11733;
*
@@ -2120,11 +2124,11 @@ public final class MessageTypeProto {
*更新事件
*
*/
- ROOM_MAP_UPDATE_EVENT_REQUEST(338, 11733),
+ ROOM_MAP_UPDATE_EVENT_REQUEST(339, 11733),
/**
* ROOM_MAP_UPDATE_EVENT_RESPONSE = 11734;
*/
- ROOM_MAP_UPDATE_EVENT_RESPONSE(339, 11734),
+ ROOM_MAP_UPDATE_EVENT_RESPONSE(340, 11734),
/**
* ROOM_MAP_POINT_INDICATION = 11735;
*
@@ -2132,7 +2136,7 @@ public final class MessageTypeProto {
* 地图位置更新
*
*/
- ROOM_MAP_POINT_INDICATION(340, 11735),
+ ROOM_MAP_POINT_INDICATION(341, 11735),
/**
* ROOM_PLAY_HP_UPDATE_INDICATION = 11736;
*
@@ -2140,7 +2144,7 @@ public final class MessageTypeProto {
* 玩家血量更新
*
*/
- ROOM_PLAY_HP_UPDATE_INDICATION(341, 11736),
+ ROOM_PLAY_HP_UPDATE_INDICATION(342, 11736),
/**
* REFRESH_ITEM_NUM_REQUEST = 11737;
*
@@ -2148,11 +2152,11 @@ public final class MessageTypeProto {
*刷新道具数量
*
*/
- REFRESH_ITEM_NUM_REQUEST(342, 11737),
+ REFRESH_ITEM_NUM_REQUEST(343, 11737),
/**
* REFRESH_ITEM_NUM_RESPONSE = 11738;
*/
- REFRESH_ITEM_NUM_RESPONSE(343, 11738),
+ REFRESH_ITEM_NUM_RESPONSE(344, 11738),
/**
* ROOM_ADDRESS_INDICATION = 11739;
*
@@ -2160,7 +2164,7 @@ public final class MessageTypeProto {
* 房间地址信息
*
*/
- ROOM_ADDRESS_INDICATION(344, 11739),
+ ROOM_ADDRESS_INDICATION(345, 11739),
/**
* ROOM_LOGIN_REQEUST = 11740;
*
@@ -2168,11 +2172,11 @@ public final class MessageTypeProto {
* 登录房间
*
*/
- ROOM_LOGIN_REQEUST(345, 11740),
+ ROOM_LOGIN_REQEUST(346, 11740),
/**
* ROOM_LOGIN_RESPONSE = 11750;
*/
- ROOM_LOGIN_RESPONSE(346, 11750),
+ ROOM_LOGIN_RESPONSE(347, 11750),
/**
* REFRESH_LUCKWHEEL_REQUEST = 11751;
*
@@ -2180,11 +2184,23 @@ public final class MessageTypeProto {
*幸运探宝
*
*/
- REFRESH_LUCKWHEEL_REQUEST(347, 11751),
+ REFRESH_LUCKWHEEL_REQUEST(348, 11751),
/**
* REFRESH_LUCKWHEEL_RESPONSE = 11752;
*/
- REFRESH_LUCKWHEEL_RESPONSE(348, 11752),
+ REFRESH_LUCKWHEEL_RESPONSE(349, 11752),
+ /**
+ * RIDE_LEVEL_UP_REQUEST = 11753;
+ *
+ * + *坐骑升级 + *+ */ + RIDE_LEVEL_UP_REQUEST(350, 11753), + /** + *
RIDE_LEVEL_UP_RESPONSE = 11754;
+ */
+ RIDE_LEVEL_UP_RESPONSE(351, 11754),
/**
* SUCCESS_RESPONSE = 11800;
*
@@ -2192,7 +2208,7 @@ public final class MessageTypeProto {
* S 11800
*
*/
- SUCCESS_RESPONSE(349, 11800),
+ SUCCESS_RESPONSE(352, 11800),
/**
* SWITCH_WORLDCHANNEL_REQUEST = 11802;
*
@@ -2200,11 +2216,11 @@ public final class MessageTypeProto {
*切换世界聊天频道
*
*/
- SWITCH_WORLDCHANNEL_REQUEST(350, 11802),
+ SWITCH_WORLDCHANNEL_REQUEST(353, 11802),
/**
* SWITCH_WORLDCHANNEL_RESPONSE = 11803;
*/
- SWITCH_WORLDCHANNEL_RESPONSE(351, 11803),
+ SWITCH_WORLDCHANNEL_RESPONSE(354, 11803),
/**
* SEND_CHAT_INFO_REQUEST = 11804;
*
@@ -2212,11 +2228,11 @@ public final class MessageTypeProto {
*发送聊天
*
*/
- SEND_CHAT_INFO_REQUEST(352, 11804),
+ SEND_CHAT_INFO_REQUEST(355, 11804),
/**
* SEND_CHAT_INFO_RESPONSE = 11805;
*/
- SEND_CHAT_INFO_RESPONSE(353, 11805),
+ SEND_CHAT_INFO_RESPONSE(356, 11805),
/**
* SEND_RED_POINT_INDICATION = 11806;
*
@@ -2224,7 +2240,7 @@ public final class MessageTypeProto {
*红点消息推送
*
*/
- SEND_RED_POINT_INDICATION(354, 11806),
+ SEND_RED_POINT_INDICATION(357, 11806),
/**
* SAVE_NEW_PLAYER_GUIDE_POINT_REQUEST = 11807;
*
@@ -2232,11 +2248,11 @@ public final class MessageTypeProto {
*保存新手引导节点
*
*/
- SAVE_NEW_PLAYER_GUIDE_POINT_REQUEST(355, 11807),
+ SAVE_NEW_PLAYER_GUIDE_POINT_REQUEST(358, 11807),
/**
* SAVE_NEW_PLAYER_GUIDE_POINT_RESPONSE = 11808;
*/
- SAVE_NEW_PLAYER_GUIDE_POINT_RESPONSE(356, 11808),
+ SAVE_NEW_PLAYER_GUIDE_POINT_RESPONSE(359, 11808),
/**
* SWEEP_RIGHT_REQUEST = 11809;
*
@@ -2244,11 +2260,11 @@ public final class MessageTypeProto {
* 扫荡
*
*/
- SWEEP_RIGHT_REQUEST(357, 11809),
+ SWEEP_RIGHT_REQUEST(360, 11809),
/**
* SWEEP_RIGHT_RESPONSE = 11810;
*/
- SWEEP_RIGHT_RESPONSE(358, 11810),
+ SWEEP_RIGHT_RESPONSE(361, 11810),
/**
* SECRETBOX_RANDOM_REQUEST = 11811;
*
@@ -2256,11 +2272,11 @@ public final class MessageTypeProto {
*秘盒抽取
*
*/
- SECRETBOX_RANDOM_REQUEST(359, 11811),
+ SECRETBOX_RANDOM_REQUEST(362, 11811),
/**
* SECRETBOX_RANDOM_RESPONSE = 11812;
*/
- SECRETBOX_RANDOM_RESPONSE(360, 11812),
+ SECRETBOX_RANDOM_RESPONSE(363, 11812),
/**
* STORE_GOODS_REFRESH_REQUEST = 11813;
*
@@ -2268,11 +2284,11 @@ public final class MessageTypeProto {
*商店刷新
*
*/
- STORE_GOODS_REFRESH_REQUEST(361, 11813),
+ STORE_GOODS_REFRESH_REQUEST(364, 11813),
/**
* STORE_GOODS_REFRESH_RESPONSE = 11814;
*/
- STORE_GOODS_REFRESH_RESPONSE(362, 11814),
+ STORE_GOODS_REFRESH_RESPONSE(365, 11814),
/**
* RECHARGE_INFO_REQUEST = 11815;
*
@@ -2280,11 +2296,11 @@ public final class MessageTypeProto {
*充值
*
*/
- RECHARGE_INFO_REQUEST(363, 11815),
+ RECHARGE_INFO_REQUEST(366, 11815),
/**
* RECHARGE_INFO_RESPONSE = 11816;
*/
- RECHARGE_INFO_RESPONSE(364, 11816),
+ RECHARGE_INFO_RESPONSE(367, 11816),
/**
* SEND_FRIEND_INFO_INDICATION = 11817;
*
@@ -2292,7 +2308,7 @@ public final class MessageTypeProto {
*好友信息推送
*
*/
- SEND_FRIEND_INFO_INDICATION(365, 11817),
+ SEND_FRIEND_INFO_INDICATION(368, 11817),
/**
* SEND_CHAT_INFO_INDICATION = 11818;
*
@@ -2300,7 +2316,7 @@ public final class MessageTypeProto {
*好友聊天推送
*
*/
- SEND_CHAT_INFO_INDICATION(366, 11818),
+ SEND_CHAT_INFO_INDICATION(369, 11818),
/**
* SEND_FRIEND_STATE_INDICATION = 11819;
*
@@ -2308,7 +2324,7 @@ public final class MessageTypeProto {
* 推送好友信息
*
*/
- SEND_FRIEND_STATE_INDICATION(367, 11819),
+ SEND_FRIEND_STATE_INDICATION(370, 11819),
/**
* SCENE_MSG_UPDATE_INDICATION = 11820;
*
@@ -2316,7 +2332,7 @@ public final class MessageTypeProto {
* 场景信息变更
*
*/
- SCENE_MSG_UPDATE_INDICATION(368, 11820),
+ SCENE_MSG_UPDATE_INDICATION(371, 11820),
/**
* SCENE_GET_FULL_MSG_REQUEST = 11821;
*
@@ -2324,11 +2340,11 @@ public final class MessageTypeProto {
*获取场景所有信息
*
*/
- SCENE_GET_FULL_MSG_REQUEST(369, 11821),
+ SCENE_GET_FULL_MSG_REQUEST(372, 11821),
/**
* SCENE_GET_FULL_MSG_RESPONSE = 11822;
*/
- SCENE_GET_FULL_MSG_RESPONSE(370, 11822),
+ SCENE_GET_FULL_MSG_RESPONSE(373, 11822),
/**
* SCENE_COMMAND_REQUEST = 11823;
*
@@ -2336,11 +2352,11 @@ public final class MessageTypeProto {
*在场景中发送的指令请求
*
*/
- SCENE_COMMAND_REQUEST(371, 11823),
+ SCENE_COMMAND_REQUEST(374, 11823),
/**
* SCENE_COMMAND_RESPONSE = 11824;
*/
- SCENE_COMMAND_RESPONSE(372, 11824),
+ SCENE_COMMAND_RESPONSE(375, 11824),
/**
* SERVER_ZERO_REQUEST = 11825;
*
@@ -2348,7 +2364,7 @@ public final class MessageTypeProto {
*服务器12点更新用户数据
*
*/
- SERVER_ZERO_REQUEST(373, 11825),
+ SERVER_ZERO_REQUEST(376, 11825),
/**
* STORE_UPDATE_INDICATION = 11826;
*
@@ -2356,7 +2372,7 @@ public final class MessageTypeProto {
* 商店更新信息
*
*/
- STORE_UPDATE_INDICATION(374, 11826),
+ STORE_UPDATE_INDICATION(377, 11826),
/**
* SIGN_IN_REQUEST = 11827;
*
@@ -2364,11 +2380,11 @@ public final class MessageTypeProto {
*签到
*
*/
- SIGN_IN_REQUEST(375, 11827),
+ SIGN_IN_REQUEST(378, 11827),
/**
* SIGN_IN_RESPONSE = 11828;
*/
- SIGN_IN_RESPONSE(376, 11828),
+ SIGN_IN_RESPONSE(379, 11828),
/**
* SCENE_GAME_OVER_READY_INDICATION = 11829;
*
@@ -2376,7 +2392,7 @@ public final class MessageTypeProto {
* 最后狂欢时刻到来
*
*/
- SCENE_GAME_OVER_READY_INDICATION(377, 11829),
+ SCENE_GAME_OVER_READY_INDICATION(380, 11829),
/**
* SCENE_GAME_OVER_INDICATION = 11830;
*
@@ -2384,7 +2400,7 @@ public final class MessageTypeProto {
* 场景结算
*
*/
- SCENE_GAME_OVER_INDICATION(378, 11830),
+ SCENE_GAME_OVER_INDICATION(381, 11830),
/**
* SOUL_EQUIP_WEAR_REQUEST = 11831;
*
@@ -2392,11 +2408,11 @@ public final class MessageTypeProto {
* 安装魂印
*
*/
- SOUL_EQUIP_WEAR_REQUEST(379, 11831),
+ SOUL_EQUIP_WEAR_REQUEST(382, 11831),
/**
* SOUL_EQUIP_WEAR_RESPONSE = 11832;
*/
- SOUL_EQUIP_WEAR_RESPONSE(380, 11832),
+ SOUL_EQUIP_WEAR_RESPONSE(383, 11832),
/**
* SOUL_EQUIP_UNLOAD_OPT_REQUEST = 11833;
*
@@ -2404,11 +2420,11 @@ public final class MessageTypeProto {
*卸下魂印
*
*/
- SOUL_EQUIP_UNLOAD_OPT_REQUEST(381, 11833),
+ SOUL_EQUIP_UNLOAD_OPT_REQUEST(384, 11833),
/**
* SOUL_EQUIP_UNLOAD_OPT_RESPONSE = 11834;
*/
- SOUL_EQUIP_UNLOAD_OPT_RESPONSE(382, 11834),
+ SOUL_EQUIP_UNLOAD_OPT_RESPONSE(385, 11834),
/**
* SOUL_RAND_EQUIP_REQUEST = 11835;
*
@@ -2416,11 +2432,11 @@ public final class MessageTypeProto {
*抽魂印
*
*/
- SOUL_RAND_EQUIP_REQUEST(383, 11835),
+ SOUL_RAND_EQUIP_REQUEST(386, 11835),
/**
* SOUL_RAND_EQUIP_RESPONSE = 11836;
*/
- SOUL_RAND_EQUIP_RESPONSE(384, 11836),
+ SOUL_RAND_EQUIP_RESPONSE(387, 11836),
/**
* SOUL_FORCE_RAND_EQUIP_REQUEST = 11837;
*
@@ -2428,11 +2444,11 @@ public final class MessageTypeProto {
*抽魂印
*
*/
- SOUL_FORCE_RAND_EQUIP_REQUEST(385, 11837),
+ SOUL_FORCE_RAND_EQUIP_REQUEST(388, 11837),
/**
* SOUL_FORCE_RAND_EQUIP_RESPONSE = 11838;
*/
- SOUL_FORCE_RAND_EQUIP_RESPONSE(386, 11838),
+ SOUL_FORCE_RAND_EQUIP_RESPONSE(389, 11838),
/**
* TRIGGER_EVENT_REQUEST = 11900;
*
@@ -2440,11 +2456,11 @@ public final class MessageTypeProto {
* T 11900
*
*/
- TRIGGER_EVENT_REQUEST(387, 11900),
+ TRIGGER_EVENT_REQUEST(390, 11900),
/**
* TRIGGER_EVENT_RESPONSE = 11901;
*/
- TRIGGER_EVENT_RESPONSE(388, 11901),
+ TRIGGER_EVENT_RESPONSE(391, 11901),
/**
* TEAM_POS_SAVE_REQUEST = 11902;
*
@@ -2452,11 +2468,11 @@ public final class MessageTypeProto {
*保存阵容
*
*/
- TEAM_POS_SAVE_REQUEST(389, 11902),
+ TEAM_POS_SAVE_REQUEST(392, 11902),
/**
* TEAM_POS_SAVE_RESPONSE = 11903;
*/
- TEAM_POS_SAVE_RESPONSE(390, 11903),
+ TEAM_POS_SAVE_RESPONSE(393, 11903),
/**
* TAKE_ACTIVITY_REWARD_REQUEST = 11904;
*
@@ -2464,11 +2480,11 @@ public final class MessageTypeProto {
*领取活动奖励
*
*/
- TAKE_ACTIVITY_REWARD_REQUEST(391, 11904),
+ TAKE_ACTIVITY_REWARD_REQUEST(394, 11904),
/**
* TAKE_ACTIVITY_REWARD_RESPONSE = 11905;
*/
- TAKE_ACTIVITY_REWARD_RESPONSE(392, 11905),
+ TAKE_ACTIVITY_REWARD_RESPONSE(395, 11905),
/**
* TAKE_MISSION_REWARD_REQUEST = 11906;
*
@@ -2476,11 +2492,11 @@ public final class MessageTypeProto {
*领取任务奖励
*
*/
- TAKE_MISSION_REWARD_REQUEST(393, 11906),
+ TAKE_MISSION_REWARD_REQUEST(396, 11906),
/**
* TAKE_MISSION_REWARD_RESPONSE = 11907;
*/
- TAKE_MISSION_REWARD_RESPONSE(394, 11907),
+ TAKE_MISSION_REWARD_RESPONSE(397, 11907),
/**
* TEST_BUY_GIGT_GOODS_REQEUST = 11908;
*
@@ -2488,11 +2504,11 @@ public final class MessageTypeProto {
*测试购买礼包
*
*/
- TEST_BUY_GIGT_GOODS_REQEUST(395, 11908),
+ TEST_BUY_GIGT_GOODS_REQEUST(398, 11908),
/**
* TEST_BUY_GIGT_GOODS_RESPONSE = 11909;
*/
- TEST_BUY_GIGT_GOODS_RESPONSE(396, 11909),
+ TEST_BUY_GIGT_GOODS_RESPONSE(399, 11909),
/**
* TAKE_TOWER_REWARD_REQUEST = 11910;
*
@@ -2500,11 +2516,11 @@ public final class MessageTypeProto {
*领取层级奖励
*
*/
- TAKE_TOWER_REWARD_REQUEST(397, 11910),
+ TAKE_TOWER_REWARD_REQUEST(400, 11910),
/**
* TAKE_TOWER_REWARD_RESPONSE = 11911;
*/
- TAKE_TOWER_REWARD_RESPONSE(398, 11911),
+ TAKE_TOWER_REWARD_RESPONSE(401, 11911),
/**
* TAKE_SEVEN_HAPPY_REWARD_REQUEST = 11912;
*
@@ -2512,11 +2528,11 @@ public final class MessageTypeProto {
* 领取七日狂欢积分奖励
*
*/
- TAKE_SEVEN_HAPPY_REWARD_REQUEST(399, 11912),
+ TAKE_SEVEN_HAPPY_REWARD_REQUEST(402, 11912),
/**
* TAKE_SEVEN_HAPPY_REWARD_RESPONSE = 11913;
*/
- TAKE_SEVEN_HAPPY_REWARD_RESPONSE(400, 11913),
+ TAKE_SEVEN_HAPPY_REWARD_RESPONSE(403, 11913),
/**
* TO_BE_STRONGER_REQUEST = 11914;
*
@@ -2524,11 +2540,11 @@ public final class MessageTypeProto {
*我要变强
*
*/
- TO_BE_STRONGER_REQUEST(401, 11914),
+ TO_BE_STRONGER_REQUEST(404, 11914),
/**
* TO_BE_STRONGER_RESPONSE = 11915;
*/
- TO_BE_STRONGER_RESPONSE(402, 11915),
+ TO_BE_STRONGER_RESPONSE(405, 11915),
/**
* TREASURE_REFRESH_INDICATION = 11916;
*
@@ -2536,7 +2552,7 @@ public final class MessageTypeProto {
*戒灵秘宝刷新推送
*
*/
- TREASURE_REFRESH_INDICATION(403, 11916),
+ TREASURE_REFRESH_INDICATION(406, 11916),
/**
* TREASURE_LEVELUP_INDICATION = 11917;
*
@@ -2544,7 +2560,7 @@ public final class MessageTypeProto {
*戒灵秘宝等级提升推送
*
*/
- TREASURE_LEVELUP_INDICATION(404, 11917),
+ TREASURE_LEVELUP_INDICATION(407, 11917),
/**
* UP_HERO_LEVEL_REQUEST = 12000;
*
@@ -2552,11 +2568,11 @@ public final class MessageTypeProto {
* U 12000
*
*/
- UP_HERO_LEVEL_REQUEST(405, 12000),
+ UP_HERO_LEVEL_REQUEST(408, 12000),
/**
* UP_HERO_LEVEL_RESPONSE = 12001;
*/
- UP_HERO_LEVEL_RESPONSE(406, 12001),
+ UP_HERO_LEVEL_RESPONSE(409, 12001),
/**
* UP_HERO_STAR_REQUEST = 12002;
*
@@ -2564,11 +2580,11 @@ public final class MessageTypeProto {
* 升星
*
*/
- UP_HERO_STAR_REQUEST(407, 12002),
+ UP_HERO_STAR_REQUEST(410, 12002),
/**
* UP_HERO_STAR_RESPONSE = 12003;
*/
- UP_HERO_STAR_RESPONSE(408, 12003),
+ UP_HERO_STAR_RESPONSE(411, 12003),
/**
* USER_AND_PRICE_ITEM_REQUEST = 12004;
*
@@ -2576,11 +2592,11 @@ public final class MessageTypeProto {
*使用出售道具
*
*/
- USER_AND_PRICE_ITEM_REQUEST(409, 12004),
+ USER_AND_PRICE_ITEM_REQUEST(412, 12004),
/**
* USER_AND_PRICE_ITEM_RESPONSE = 12005;
*/
- USER_AND_PRICE_ITEM_RESPONSE(410, 12005),
+ USER_AND_PRICE_ITEM_RESPONSE(413, 12005),
/**
* USER_FORCE_CHANGE_REQUEST = 12006;
*
@@ -2588,11 +2604,11 @@ public final class MessageTypeProto {
*用户战力提升
*
*/
- USER_FORCE_CHANGE_REQUEST(411, 12006),
+ USER_FORCE_CHANGE_REQUEST(414, 12006),
/**
* USER_FORCE_CHANGE_RESPONSE = 12007;
*/
- USER_FORCE_CHANGE_RESPONSE(412, 12007),
+ USER_FORCE_CHANGE_RESPONSE(415, 12007),
/**
* UPDATE_BAG_INDICATION = 12008;
*
@@ -2600,7 +2616,7 @@ public final class MessageTypeProto {
*更新背包
*
*/
- UPDATE_BAG_INDICATION(413, 12008),
+ UPDATE_BAG_INDICATION(416, 12008),
/**
* UPDATE_STATE_REQUEST = 12009;
*
@@ -2608,11 +2624,11 @@ public final class MessageTypeProto {
* 更新客户状态
*
*/
- UPDATE_STATE_REQUEST(414, 12009),
+ UPDATE_STATE_REQUEST(417, 12009),
/**
* UPDATE_STATE_RESPONSE = 12010;
*/
- UPDATE_STATE_RESPONSE(415, 12010),
+ UPDATE_STATE_RESPONSE(418, 12010),
/**
* UPDATE_USER_EXP_INDICATION = 12011;
*
@@ -2620,7 +2636,7 @@ public final class MessageTypeProto {
* 更新玩家等级经验信息
*
*/
- UPDATE_USER_EXP_INDICATION(416, 12011),
+ UPDATE_USER_EXP_INDICATION(419, 12011),
/**
* UPDATE_SECRET_BOX_SEASON_INDICATION = 12012;
*
@@ -2628,7 +2644,7 @@ public final class MessageTypeProto {
* 更新秘盒赛季信息
*
*/
- UPDATE_SECRET_BOX_SEASON_INDICATION(417, 12012),
+ UPDATE_SECRET_BOX_SEASON_INDICATION(420, 12012),
/**
* UPDATE_PHONE_INFO_REQUEST = 12013;
*
@@ -2636,11 +2652,11 @@ public final class MessageTypeProto {
*更新手机号
*
*/
- UPDATE_PHONE_INFO_REQUEST(418, 12013),
+ UPDATE_PHONE_INFO_REQUEST(421, 12013),
/**
* UPDATE_PHONE_INFO_RESPONSE = 12014;
*/
- UPDATE_PHONE_INFO_RESPONSE(419, 12014),
+ UPDATE_PHONE_INFO_RESPONSE(422, 12014),
/**
* UPDATE_QUESTION_REQUEST = 12015;
*
@@ -2648,15 +2664,15 @@ public final class MessageTypeProto {
*问卷
*
*/
- UPDATE_QUESTION_REQUEST(420, 12015),
+ UPDATE_QUESTION_REQUEST(423, 12015),
/**
* UPDATE_QUESTION_RESPONSE = 12016;
*/
- UPDATE_QUESTION_RESPONSE(421, 12016),
+ UPDATE_QUESTION_RESPONSE(424, 12016),
/**
* UP_SOUL_EQUIP_QUICK_REQUEST = 12018;
*/
- UP_SOUL_EQUIP_QUICK_REQUEST(422, 12018),
+ UP_SOUL_EQUIP_QUICK_REQUEST(425, 12018),
/**
* UP_SOUL_EQUIP_RESPONSE = 12019;
*
@@ -2664,7 +2680,7 @@ public final class MessageTypeProto {
*魂印升级
*
*/
- UP_SOUL_EQUIP_RESPONSE(423, 12019),
+ UP_SOUL_EQUIP_RESPONSE(426, 12019),
/**
* VIEW_FIGHTREPLAY_REQUEST = 12100;
*
@@ -2672,11 +2688,11 @@ public final class MessageTypeProto {
* V 12100
*
*/
- VIEW_FIGHTREPLAY_REQUEST(424, 12100),
+ VIEW_FIGHTREPLAY_REQUEST(427, 12100),
/**
* VIEW_FIGHTREPLAY_RESPONSE = 12101;
*/
- VIEW_FIGHTREPLAY_RESPONSE(425, 12101),
+ VIEW_FIGHTREPLAY_RESPONSE(428, 12101),
/**
* VIP_LEVELUP_REQEUST = 12102;
*
@@ -2684,11 +2700,11 @@ public final class MessageTypeProto {
*VIP等级提升
*
*/
- VIP_LEVELUP_REQEUST(426, 12102),
+ VIP_LEVELUP_REQEUST(429, 12102),
/**
* VIP_LEVELUP_RESPONSE = 12103;
*/
- VIP_LEVELUP_RESPONSE(427, 12103),
+ VIP_LEVELUP_RESPONSE(430, 12103),
/**
* VIP_TAKE_REWARD_REQUEST = 12104;
*
@@ -2696,11 +2712,11 @@ public final class MessageTypeProto {
*领取vip等级或每日礼包
*
*/
- VIP_TAKE_REWARD_REQUEST(428, 12104),
+ VIP_TAKE_REWARD_REQUEST(431, 12104),
/**
* VIP_TAKE_REWARD_RESPONSE = 12105;
*/
- VIP_TAKE_REWARD_RESPONSE(429, 12105),
+ VIP_TAKE_REWARD_RESPONSE(432, 12105),
/**
* VIEW_HERO_INFO_REQUEST = 12106;
*
@@ -2708,11 +2724,11 @@ public final class MessageTypeProto {
* 查看英雄详情信息
*
*/
- VIEW_HERO_INFO_REQUEST(430, 12106),
+ VIEW_HERO_INFO_REQUEST(433, 12106),
/**
* VIEW_HERO_INFO_RESPONSE = 12107;
*/
- VIEW_HERO_INFO_RESPONSE(431, 12107),
+ VIEW_HERO_INFO_RESPONSE(434, 12107),
/**
* WORKSHOP_FOUNDATION_REQUEST = 12200;
*
@@ -2720,11 +2736,11 @@ public final class MessageTypeProto {
* W 12200
*
*/
- WORKSHOP_FOUNDATION_REQUEST(432, 12200),
+ WORKSHOP_FOUNDATION_REQUEST(435, 12200),
/**
* WORKSHOP_FOUNDATION_RESPONSE = 12201;
*/
- WORKSHOP_FOUNDATION_RESPONSE(433, 12201),
+ WORKSHOP_FOUNDATION_RESPONSE(436, 12201),
/**
* WORKSHOP_EQUIP_CREATE_REQUEST = 12202;
*
@@ -2732,11 +2748,11 @@ public final class MessageTypeProto {
*装备打造
*
*/
- WORKSHOP_EQUIP_CREATE_REQUEST(434, 12202),
+ WORKSHOP_EQUIP_CREATE_REQUEST(437, 12202),
/**
* WORKSHOP_EQUIP_CREATE_RESPONSE = 12203;
*/
- WORKSHOP_EQUIP_CREATE_RESPONSE(435, 12203),
+ WORKSHOP_EQUIP_CREATE_RESPONSE(438, 12203),
/**
* WORKSHOP_REBUILD_REQUEST = 12204;
*
@@ -2744,11 +2760,11 @@ public final class MessageTypeProto {
*装备重铸
*
*/
- WORKSHOP_REBUILD_REQUEST(436, 12204),
+ WORKSHOP_REBUILD_REQUEST(439, 12204),
/**
* WORKSHOP_REBUILD_RESPONSE = 12205;
*/
- WORKSHOP_REBUILD_RESPONSE(437, 12205),
+ WORKSHOP_REBUILD_RESPONSE(440, 12205),
/**
* WORKSHOP_REBUILD_CONFIRM_REQUEST = 12206;
*
@@ -2756,11 +2772,11 @@ public final class MessageTypeProto {
* 重铸确认
*
*/
- WORKSHOP_REBUILD_CONFIRM_REQUEST(438, 12206),
+ WORKSHOP_REBUILD_CONFIRM_REQUEST(441, 12206),
/**
* WORKSHOP_REBUILD_CONFIRM_RESONSE = 12207;
*/
- WORKSHOP_REBUILD_CONFIRM_RESONSE(439, 12207),
+ WORKSHOP_REBUILD_CONFIRM_RESONSE(442, 12207),
/**
* WORKSHOP_LEVELUP_REQUEST = 12208;
*
@@ -2768,11 +2784,11 @@ public final class MessageTypeProto {
*工坊升级
*
*/
- WORKSHOP_LEVELUP_REQUEST(440, 12208),
+ WORKSHOP_LEVELUP_REQUEST(443, 12208),
/**
* WORKSHOP_LEVELUP_RESPONSE = 12209;
*/
- WORKSHOP_LEVELUP_RESPONSE(441, 12209),
+ WORKSHOP_LEVELUP_RESPONSE(444, 12209),
/**
* WORKSHOP_TECHNOLOGY_LEVEL_REQUEST = 12210;
*
@@ -2780,11 +2796,11 @@ public final class MessageTypeProto {
*科技树升级
*
*/
- WORKSHOP_TECHNOLOGY_LEVEL_REQUEST(442, 12210),
+ WORKSHOP_TECHNOLOGY_LEVEL_REQUEST(445, 12210),
/**
* WORKSHOP_TECHNOLOGY_RESPONSE = 12211;
*/
- WORKSHOP_TECHNOLOGY_RESPONSE(443, 12211),
+ WORKSHOP_TECHNOLOGY_RESPONSE(446, 12211),
/**
* WORKSHOP_TECHNOLOGY_RESET_REQUEST = 12212;
*
@@ -2792,11 +2808,11 @@ public final class MessageTypeProto {
*科技树重置
*
*/
- WORKSHOP_TECHNOLOGY_RESET_REQUEST(444, 12212),
+ WORKSHOP_TECHNOLOGY_RESET_REQUEST(447, 12212),
/**
* WORKSHOP_TECHNOLOGY_RESET_RESPONSE = 12213;
*/
- WORKSHOP_TECHNOLOGY_RESET_RESPONSE(445, 12213),
+ WORKSHOP_TECHNOLOGY_RESET_RESPONSE(448, 12213),
;
/**
@@ -4575,17 +4591,17 @@ public final class MessageTypeProto {
*/
public static final int MAP_TOWER_USEBUFF_RESPONSE_VALUE = 11232;
/**
- * MODIFY_HEAD_REQUEST = 11233;
+ * MODIFY_DECORATION_REQUEST = 11233;
*
* - *修改头或头像框 + *修改外观装饰 **/ - public static final int MODIFY_HEAD_REQUEST_VALUE = 11233; + public static final int MODIFY_DECORATION_REQUEST_VALUE = 11233; /** - *
MODIFY_HEAD_RESPONSE = 11234;
+ * MODIFY_DECORATION_RESPONSE = 11234;
*/
- public static final int MODIFY_HEAD_RESPONSE_VALUE = 11234;
+ public static final int MODIFY_DECORATION_RESPONSE_VALUE = 11234;
/**
* MAP_OUT_INDICATION = 11235;
*
@@ -4646,6 +4662,10 @@ public final class MessageTypeProto {
* MAIL_DELETE_RESPONSE = 11243;
*/
public static final int MAIL_DELETE_RESPONSE_VALUE = 11243;
+ /**
+ * MAIN_LEVEL_FIGHT_UPDATE_INDICATION = 11244;
+ */
+ public static final int MAIN_LEVEL_FIGHT_UPDATE_INDICATION_VALUE = 11244;
/**
* NOTIFY_PAY_SUCCESS_INDICATION = 11300;
*
@@ -4971,6 +4991,18 @@ public final class MessageTypeProto {
* REFRESH_LUCKWHEEL_RESPONSE = 11752;
*/
public static final int REFRESH_LUCKWHEEL_RESPONSE_VALUE = 11752;
+ /**
+ * RIDE_LEVEL_UP_REQUEST = 11753;
+ *
+ * + *坐骑升级 + *+ */ + public static final int RIDE_LEVEL_UP_REQUEST_VALUE = 11753; + /** + *
RIDE_LEVEL_UP_RESPONSE = 11754;
+ */
+ public static final int RIDE_LEVEL_UP_RESPONSE_VALUE = 11754;
/**
* SUCCESS_RESPONSE = 11800;
*
@@ -5876,8 +5908,8 @@ public final class MessageTypeProto {
case 11230: return MAP_TOWER_USEBOMB_RESPONSE;
case 11231: return MAP_TOWER_USEBUFF_REQUEST;
case 11232: return MAP_TOWER_USEBUFF_RESPONSE;
- case 11233: return MODIFY_HEAD_REQUEST;
- case 11234: return MODIFY_HEAD_RESPONSE;
+ case 11233: return MODIFY_DECORATION_REQUEST;
+ case 11234: return MODIFY_DECORATION_RESPONSE;
case 11235: return MAP_OUT_INDICATION;
case 11236: return MAIN_LEVEL_GET_INFO_REQUEST;
case 11237: return MAIN_LEVEL_GET_INFO_RESPONSE;
@@ -5887,6 +5919,7 @@ public final class MessageTypeProto {
case 11241: return MAIN_LEVEL_GET_RANK_RESPONSE;
case 11242: return MAIL_DELETE_REQUEST;
case 11243: return MAIL_DELETE_RESPONSE;
+ case 11244: return MAIN_LEVEL_FIGHT_UPDATE_INDICATION;
case 11300: return NOTIFY_PAY_SUCCESS_INDICATION;
case 11500: return POKEMON_COMONPENT_LEVELUP_REQUEST;
case 11501: return POKEMON_COMONPENT_LEVELUP_RESPONSE;
@@ -5938,6 +5971,8 @@ public final class MessageTypeProto {
case 11750: return ROOM_LOGIN_RESPONSE;
case 11751: return REFRESH_LUCKWHEEL_REQUEST;
case 11752: return REFRESH_LUCKWHEEL_RESPONSE;
+ case 11753: return RIDE_LEVEL_UP_REQUEST;
+ case 11754: return RIDE_LEVEL_UP_RESPONSE;
case 11800: return SUCCESS_RESPONSE;
case 11802: return SWITCH_WORLDCHANNEL_REQUEST;
case 11803: return SWITCH_WORLDCHANNEL_RESPONSE;
@@ -6096,7 +6131,7 @@ public final class MessageTypeProto {
static {
java.lang.String[] descriptorData = {
"\n\026MessageTypeProto.proto\022\032com.ljsd.jieli" +
- "ng.protocols*\275o\n\013MessageType\022\027\n\022HEART_BE" +
+ "ng.protocols*\253p\n\013MessageType\022\027\n\022HEART_BE" +
"AT_REQUEST\020\350\007\022\030\n\023HEART_BEAT_RESPONSE\020\351\007\022" +
"\036\n\031ACTIVITE_WORKSHOP_REQUEST\020\224N\022\037\n\032ACTIV" +
"ITE_WORKSHOP_RESPONSE\020\225N\022\027\n\022ARENA_INFO_R" +
@@ -6325,135 +6360,137 @@ public final class MessageTypeProto {
"\n\031MAP_TOWER_USEBOMB_REQUEST\020\335W\022\037\n\032MAP_TO" +
"WER_USEBOMB_RESPONSE\020\336W\022\036\n\031MAP_TOWER_USE" +
"BUFF_REQUEST\020\337W\022\037\n\032MAP_TOWER_USEBUFF_RES",
- "PONSE\020\340W\022\030\n\023MODIFY_HEAD_REQUEST\020\341W\022\031\n\024MO" +
- "DIFY_HEAD_RESPONSE\020\342W\022\027\n\022MAP_OUT_INDICAT" +
- "ION\020\343W\022 \n\033MAIN_LEVEL_GET_INFO_REQUEST\020\344W" +
- "\022!\n\034MAIN_LEVEL_GET_INFO_RESPONSE\020\345W\022)\n$M" +
- "AIN_LEVEL_TAKE_STATE_REWARD_REQUEST\020\346W\022*" +
- "\n%MAIN_LEVEL_TAKE_STATE_REWARD_RESPONSE\020" +
- "\347W\022 \n\033MAIN_LEVEL_GET_RANK_REQUEST\020\350W\022!\n\034" +
- "MAIN_LEVEL_GET_RANK_RESPONSE\020\351W\022\030\n\023MAIL_" +
- "DELETE_REQUEST\020\352W\022\031\n\024MAIL_DELETE_RESPONS" +
- "E\020\353W\022\"\n\035NOTIFY_PAY_SUCCESS_INDICATION\020\244X",
- "\022&\n!POKEMON_COMONPENT_LEVELUP_REQUEST\020\354Y" +
- "\022\'\n\"POKEMON_COMONPENT_LEVELUP_RESPONSE\020\355" +
- "Y\022\035\n\030POKEMON_ADVANCED_REQUEST\020\356Y\022\036\n\031POKE" +
- "MON_ADVANCED_RESPONSE\020\357Y\022 \n\033PLAYER_BACKC" +
- "INFO_INDICATION\020\360Y\022\031\n\024PLAY_WITH_SB_REQUE" +
- "ST\020\361Y\022\032\n\025PLAY_WITH_SB_RESPONSE\020\362Y\022\030\n\023QUE" +
- "STION_INDICATION\020\320Z\022\'\n\"QUICK_START_MONST" +
- "ERFIGHTER_REQUEST\020\321Z\022\'\n\"QUICK_START_MONS" +
- "TERFIGHTER_REPONSE\020\322Z\022\026\n\021RECONNECT_REQUE" +
- "ST\020\264[\022\027\n\022RECONNECT_RESPONSE\020\265[\022\027\n\022RANDOM",
- "NAME_REQUEST\020\266[\022\030\n\023RANDOMNAME_RESPONSE\020\267" +
- "[\022\023\n\016RENAME_REQUEST\020\270[\022\024\n\017RENAME_RESPONS" +
- "E\020\271[\022\032\n\025RINGFIRE_LOAD_REQUEST\020\272[\022\033\n\026RING" +
- "FIRE_LOAD_RESPONSE\020\273[\022\036\n\031RINGFIRE_ADVANC" +
- "ED_REQUEST\020\274[\022\037\n\032RINGFIRE_ADVANCED_RESPO" +
- "NSE\020\275[\022!\n\034REFRESH_FRIEND_STATE_REQEUST\020\276" +
- "[\022\"\n\035REFRESH_FRIEND_STATE_RESPONSE\020\277[\022\027\n" +
- "\022ROOM_MATCH_REQUEST\020\300[\022\030\n\023ROOM_MATCH_RES" +
- "PONSE\020\301[\022\036\n\031ROOM_CANCEL_MATCH_REQUEST\020\302[" +
- "\022\037\n\032ROOM_CANCEL_MATCH_RESPONSE\020\303[\022\"\n\035ROO",
- "M_MATCH_SUCCESS_INDICATION\020\304[\022\"\n\035ROOM_ST" +
- "ART_GAME_READY_REQUEST\020\306[\022#\n\036ROOM_START_" +
- "GAME_READY_RESPONSE\020\307[\022\037\n\032ROOM_START_GAM" +
- "E_INDICATION\020\310[\022\034\n\027ROOM_GAME_START_REQUE" +
- "ST\020\312[\022\035\n\030ROOM_GAME_START_RESPONSE\020\313[\022\035\n\030" +
- "ROOM_GAME_END_INDICATION\020\314[\022\"\n\035ROOM_SYNC" +
- "_MYSELF_MOVE_REQUEST\020\316[\022#\n\036ROOM_SYNC_MYS" +
- "ELF_MOVE_RESPONSE\020\317[\022#\n\036ROOM_SYNC_OTHER_" +
- "MOVE_INDICTION\020\320[\022\"\n\035ROOM_TRIGGER_FIGHT_" +
- "INDICATION\020\322[\022\037\n\032ROOM_GET_FULL_INFO_REQE",
- "UST\020\323[\022 \n\033ROOM_GET_FULL_INFO_RESPONSE\020\324[" +
- "\022\"\n\035ROOM_MAP_UPDATE_EVENT_REQUEST\020\325[\022#\n\036" +
- "ROOM_MAP_UPDATE_EVENT_RESPONSE\020\326[\022\036\n\031ROO" +
- "M_MAP_POINT_INDICATION\020\327[\022#\n\036ROOM_PLAY_H" +
- "P_UPDATE_INDICATION\020\330[\022\035\n\030REFRESH_ITEM_N" +
- "UM_REQUEST\020\331[\022\036\n\031REFRESH_ITEM_NUM_RESPON" +
- "SE\020\332[\022\034\n\027ROOM_ADDRESS_INDICATION\020\333[\022\027\n\022R" +
- "OOM_LOGIN_REQEUST\020\334[\022\030\n\023ROOM_LOGIN_RESPO" +
- "NSE\020\346[\022\036\n\031REFRESH_LUCKWHEEL_REQUEST\020\347[\022\037" +
- "\n\032REFRESH_LUCKWHEEL_RESPONSE\020\350[\022\025\n\020SUCCE",
- "SS_RESPONSE\020\230\\\022 \n\033SWITCH_WORLDCHANNEL_RE" +
- "QUEST\020\232\\\022!\n\034SWITCH_WORLDCHANNEL_RESPONSE" +
- "\020\233\\\022\033\n\026SEND_CHAT_INFO_REQUEST\020\234\\\022\034\n\027SEND" +
- "_CHAT_INFO_RESPONSE\020\235\\\022\036\n\031SEND_RED_POINT" +
- "_INDICATION\020\236\\\022(\n#SAVE_NEW_PLAYER_GUIDE_" +
- "POINT_REQUEST\020\237\\\022)\n$SAVE_NEW_PLAYER_GUID" +
- "E_POINT_RESPONSE\020\240\\\022\030\n\023SWEEP_RIGHT_REQUE" +
- "ST\020\241\\\022\031\n\024SWEEP_RIGHT_RESPONSE\020\242\\\022\035\n\030SECR" +
- "ETBOX_RANDOM_REQUEST\020\243\\\022\036\n\031SECRETBOX_RAN" +
- "DOM_RESPONSE\020\244\\\022 \n\033STORE_GOODS_REFRESH_R",
- "EQUEST\020\245\\\022!\n\034STORE_GOODS_REFRESH_RESPONS" +
- "E\020\246\\\022\032\n\025RECHARGE_INFO_REQUEST\020\247\\\022\033\n\026RECH" +
- "ARGE_INFO_RESPONSE\020\250\\\022 \n\033SEND_FRIEND_INF" +
- "O_INDICATION\020\251\\\022\036\n\031SEND_CHAT_INFO_INDICA" +
- "TION\020\252\\\022!\n\034SEND_FRIEND_STATE_INDICATION\020" +
- "\253\\\022 \n\033SCENE_MSG_UPDATE_INDICATION\020\254\\\022\037\n\032" +
- "SCENE_GET_FULL_MSG_REQUEST\020\255\\\022 \n\033SCENE_G" +
- "ET_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_ZERO_REQUEST\020\261\\\022\034\n\027STORE_UPDA",
- "TE_INDICATION\020\262\\\022\024\n\017SIGN_IN_REQUEST\020\263\\\022\025" +
- "\n\020SIGN_IN_RESPONSE\020\264\\\022%\n SCENE_GAME_OVER" +
- "_READY_INDICATION\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\035SO" +
- "UL_EQUIP_UNLOAD_OPT_REQUEST\020\271\\\022#\n\036SOUL_E" +
- "QUIP_UNLOAD_OPT_RESPONSE\020\272\\\022\034\n\027SOUL_RAND" +
- "_EQUIP_REQUEST\020\273\\\022\035\n\030SOUL_RAND_EQUIP_RES" +
- "PONSE\020\274\\\022\"\n\035SOUL_FORCE_RAND_EQUIP_REQUES" +
- "T\020\275\\\022#\n\036SOUL_FORCE_RAND_EQUIP_RESPONSE\020\276",
- "\\\022\032\n\025TRIGGER_EVENT_REQUEST\020\374\\\022\033\n\026TRIGGER" +
- "_EVENT_RESPONSE\020\375\\\022\032\n\025TEAM_POS_SAVE_REQU" +
- "EST\020\376\\\022\033\n\026TEAM_POS_SAVE_RESPONSE\020\377\\\022!\n\034T" +
- "AKE_ACTIVITY_REWARD_REQUEST\020\200]\022\"\n\035TAKE_A" +
- "CTIVITY_REWARD_RESPONSE\020\201]\022 \n\033TAKE_MISSI" +
- "ON_REWARD_REQUEST\020\202]\022!\n\034TAKE_MISSION_REW" +
- "ARD_RESPONSE\020\203]\022 \n\033TEST_BUY_GIGT_GOODS_R" +
- "EQEUST\020\204]\022!\n\034TEST_BUY_GIGT_GOODS_RESPONS" +
- "E\020\205]\022\036\n\031TAKE_TOWER_REWARD_REQUEST\020\206]\022\037\n\032" +
- "TAKE_TOWER_REWARD_RESPONSE\020\207]\022$\n\037TAKE_SE",
- "VEN_HAPPY_REWARD_REQUEST\020\210]\022%\n TAKE_SEVE" +
- "N_HAPPY_REWARD_RESPONSE\020\211]\022\033\n\026TO_BE_STRO" +
- "NGER_REQUEST\020\212]\022\034\n\027TO_BE_STRONGER_RESPON" +
- "SE\020\213]\022 \n\033TREASURE_REFRESH_INDICATION\020\214]\022" +
- " \n\033TREASURE_LEVELUP_INDICATION\020\215]\022\032\n\025UP_" +
- "HERO_LEVEL_REQUEST\020\340]\022\033\n\026UP_HERO_LEVEL_R" +
- "ESPONSE\020\341]\022\031\n\024UP_HERO_STAR_REQUEST\020\342]\022\032\n" +
- "\025UP_HERO_STAR_RESPONSE\020\343]\022 \n\033USER_AND_PR" +
- "ICE_ITEM_REQUEST\020\344]\022!\n\034USER_AND_PRICE_IT" +
- "EM_RESPONSE\020\345]\022\036\n\031USER_FORCE_CHANGE_REQU",
- "EST\020\346]\022\037\n\032USER_FORCE_CHANGE_RESPONSE\020\347]\022" +
- "\032\n\025UPDATE_BAG_INDICATION\020\350]\022\031\n\024UPDATE_ST" +
- "ATE_REQUEST\020\351]\022\032\n\025UPDATE_STATE_RESPONSE\020" +
- "\352]\022\037\n\032UPDATE_USER_EXP_INDICATION\020\353]\022(\n#U" +
- "PDATE_SECRET_BOX_SEASON_INDICATION\020\354]\022\036\n" +
- "\031UPDATE_PHONE_INFO_REQUEST\020\355]\022\037\n\032UPDATE_" +
- "PHONE_INFO_RESPONSE\020\356]\022\034\n\027UPDATE_QUESTIO" +
- "N_REQUEST\020\357]\022\035\n\030UPDATE_QUESTION_RESPONSE" +
- "\020\360]\022 \n\033UP_SOUL_EQUIP_QUICK_REQUEST\020\362]\022\033\n" +
- "\026UP_SOUL_EQUIP_RESPONSE\020\363]\022\035\n\030VIEW_FIGHT",
- "REPLAY_REQUEST\020\304^\022\036\n\031VIEW_FIGHTREPLAY_RE" +
- "SPONSE\020\305^\022\030\n\023VIP_LEVELUP_REQEUST\020\306^\022\031\n\024V" +
- "IP_LEVELUP_RESPONSE\020\307^\022\034\n\027VIP_TAKE_REWAR" +
- "D_REQUEST\020\310^\022\035\n\030VIP_TAKE_REWARD_RESPONSE" +
- "\020\311^\022\033\n\026VIEW_HERO_INFO_REQUEST\020\312^\022\034\n\027VIEW" +
- "_HERO_INFO_RESPONSE\020\313^\022 \n\033WORKSHOP_FOUND" +
- "ATION_REQUEST\020\250_\022!\n\034WORKSHOP_FOUNDATION_" +
- "RESPONSE\020\251_\022\"\n\035WORKSHOP_EQUIP_CREATE_REQ" +
- "UEST\020\252_\022#\n\036WORKSHOP_EQUIP_CREATE_RESPONS" +
- "E\020\253_\022\035\n\030WORKSHOP_REBUILD_REQUEST\020\254_\022\036\n\031W",
- "ORKSHOP_REBUILD_RESPONSE\020\255_\022%\n WORKSHOP_" +
- "REBUILD_CONFIRM_REQUEST\020\256_\022%\n WORKSHOP_R" +
- "EBUILD_CONFIRM_RESONSE\020\257_\022\035\n\030WORKSHOP_LE" +
- "VELUP_REQUEST\020\260_\022\036\n\031WORKSHOP_LEVELUP_RES" +
- "PONSE\020\261_\022&\n!WORKSHOP_TECHNOLOGY_LEVEL_RE" +
- "QUEST\020\262_\022!\n\034WORKSHOP_TECHNOLOGY_RESPONSE" +
- "\020\263_\022&\n!WORKSHOP_TECHNOLOGY_RESET_REQUEST" +
- "\020\264_\022\'\n\"WORKSHOP_TECHNOLOGY_RESET_RESPONS" +
- "E\020\265_B\002H\001"
+ "PONSE\020\340W\022\036\n\031MODIFY_DECORATION_REQUEST\020\341W" +
+ "\022\037\n\032MODIFY_DECORATION_RESPONSE\020\342W\022\027\n\022MAP" +
+ "_OUT_INDICATION\020\343W\022 \n\033MAIN_LEVEL_GET_INF" +
+ "O_REQUEST\020\344W\022!\n\034MAIN_LEVEL_GET_INFO_RESP" +
+ "ONSE\020\345W\022)\n$MAIN_LEVEL_TAKE_STATE_REWARD_" +
+ "REQUEST\020\346W\022*\n%MAIN_LEVEL_TAKE_STATE_REWA" +
+ "RD_RESPONSE\020\347W\022 \n\033MAIN_LEVEL_GET_RANK_RE" +
+ "QUEST\020\350W\022!\n\034MAIN_LEVEL_GET_RANK_RESPONSE" +
+ "\020\351W\022\030\n\023MAIL_DELETE_REQUEST\020\352W\022\031\n\024MAIL_DE" +
+ "LETE_RESPONSE\020\353W\022\'\n\"MAIN_LEVEL_FIGHT_UPD",
+ "ATE_INDICATION\020\354W\022\"\n\035NOTIFY_PAY_SUCCESS_" +
+ "INDICATION\020\244X\022&\n!POKEMON_COMONPENT_LEVEL" +
+ "UP_REQUEST\020\354Y\022\'\n\"POKEMON_COMONPENT_LEVEL" +
+ "UP_RESPONSE\020\355Y\022\035\n\030POKEMON_ADVANCED_REQUE" +
+ "ST\020\356Y\022\036\n\031POKEMON_ADVANCED_RESPONSE\020\357Y\022 \n" +
+ "\033PLAYER_BACKCINFO_INDICATION\020\360Y\022\031\n\024PLAY_" +
+ "WITH_SB_REQUEST\020\361Y\022\032\n\025PLAY_WITH_SB_RESPO" +
+ "NSE\020\362Y\022\030\n\023QUESTION_INDICATION\020\320Z\022\'\n\"QUIC" +
+ "K_START_MONSTERFIGHTER_REQUEST\020\321Z\022\'\n\"QUI" +
+ "CK_START_MONSTERFIGHTER_REPONSE\020\322Z\022\026\n\021RE",
+ "CONNECT_REQUEST\020\264[\022\027\n\022RECONNECT_RESPONSE" +
+ "\020\265[\022\027\n\022RANDOMNAME_REQUEST\020\266[\022\030\n\023RANDOMNA" +
+ "ME_RESPONSE\020\267[\022\023\n\016RENAME_REQUEST\020\270[\022\024\n\017R" +
+ "ENAME_RESPONSE\020\271[\022\032\n\025RINGFIRE_LOAD_REQUE" +
+ "ST\020\272[\022\033\n\026RINGFIRE_LOAD_RESPONSE\020\273[\022\036\n\031RI" +
+ "NGFIRE_ADVANCED_REQUEST\020\274[\022\037\n\032RINGFIRE_A" +
+ "DVANCED_RESPONSE\020\275[\022!\n\034REFRESH_FRIEND_ST" +
+ "ATE_REQEUST\020\276[\022\"\n\035REFRESH_FRIEND_STATE_R" +
+ "ESPONSE\020\277[\022\027\n\022ROOM_MATCH_REQUEST\020\300[\022\030\n\023R" +
+ "OOM_MATCH_RESPONSE\020\301[\022\036\n\031ROOM_CANCEL_MAT",
+ "CH_REQUEST\020\302[\022\037\n\032ROOM_CANCEL_MATCH_RESPO" +
+ "NSE\020\303[\022\"\n\035ROOM_MATCH_SUCCESS_INDICATION\020" +
+ "\304[\022\"\n\035ROOM_START_GAME_READY_REQUEST\020\306[\022#" +
+ "\n\036ROOM_START_GAME_READY_RESPONSE\020\307[\022\037\n\032R" +
+ "OOM_START_GAME_INDICATION\020\310[\022\034\n\027ROOM_GAM" +
+ "E_START_REQUEST\020\312[\022\035\n\030ROOM_GAME_START_RE" +
+ "SPONSE\020\313[\022\035\n\030ROOM_GAME_END_INDICATION\020\314[" +
+ "\022\"\n\035ROOM_SYNC_MYSELF_MOVE_REQUEST\020\316[\022#\n\036" +
+ "ROOM_SYNC_MYSELF_MOVE_RESPONSE\020\317[\022#\n\036ROO" +
+ "M_SYNC_OTHER_MOVE_INDICTION\020\320[\022\"\n\035ROOM_T",
+ "RIGGER_FIGHT_INDICATION\020\322[\022\037\n\032ROOM_GET_F" +
+ "ULL_INFO_REQEUST\020\323[\022 \n\033ROOM_GET_FULL_INF" +
+ "O_RESPONSE\020\324[\022\"\n\035ROOM_MAP_UPDATE_EVENT_R" +
+ "EQUEST\020\325[\022#\n\036ROOM_MAP_UPDATE_EVENT_RESPO" +
+ "NSE\020\326[\022\036\n\031ROOM_MAP_POINT_INDICATION\020\327[\022#" +
+ "\n\036ROOM_PLAY_HP_UPDATE_INDICATION\020\330[\022\035\n\030R" +
+ "EFRESH_ITEM_NUM_REQUEST\020\331[\022\036\n\031REFRESH_IT" +
+ "EM_NUM_RESPONSE\020\332[\022\034\n\027ROOM_ADDRESS_INDIC" +
+ "ATION\020\333[\022\027\n\022ROOM_LOGIN_REQEUST\020\334[\022\030\n\023ROO" +
+ "M_LOGIN_RESPONSE\020\346[\022\036\n\031REFRESH_LUCKWHEEL",
+ "_REQUEST\020\347[\022\037\n\032REFRESH_LUCKWHEEL_RESPONS" +
+ "E\020\350[\022\032\n\025RIDE_LEVEL_UP_REQUEST\020\351[\022\033\n\026RIDE" +
+ "_LEVEL_UP_RESPONSE\020\352[\022\025\n\020SUCCESS_RESPONS" +
+ "E\020\230\\\022 \n\033SWITCH_WORLDCHANNEL_REQUEST\020\232\\\022!" +
+ "\n\034SWITCH_WORLDCHANNEL_RESPONSE\020\233\\\022\033\n\026SEN" +
+ "D_CHAT_INFO_REQUEST\020\234\\\022\034\n\027SEND_CHAT_INFO" +
+ "_RESPONSE\020\235\\\022\036\n\031SEND_RED_POINT_INDICATIO" +
+ "N\020\236\\\022(\n#SAVE_NEW_PLAYER_GUIDE_POINT_REQU" +
+ "EST\020\237\\\022)\n$SAVE_NEW_PLAYER_GUIDE_POINT_RE" +
+ "SPONSE\020\240\\\022\030\n\023SWEEP_RIGHT_REQUEST\020\241\\\022\031\n\024S",
+ "WEEP_RIGHT_RESPONSE\020\242\\\022\035\n\030SECRETBOX_RAND" +
+ "OM_REQUEST\020\243\\\022\036\n\031SECRETBOX_RANDOM_RESPON" +
+ "SE\020\244\\\022 \n\033STORE_GOODS_REFRESH_REQUEST\020\245\\\022" +
+ "!\n\034STORE_GOODS_REFRESH_RESPONSE\020\246\\\022\032\n\025RE" +
+ "CHARGE_INFO_REQUEST\020\247\\\022\033\n\026RECHARGE_INFO_" +
+ "RESPONSE\020\250\\\022 \n\033SEND_FRIEND_INFO_INDICATI" +
+ "ON\020\251\\\022\036\n\031SEND_CHAT_INFO_INDICATION\020\252\\\022!\n" +
+ "\034SEND_FRIEND_STATE_INDICATION\020\253\\\022 \n\033SCEN" +
+ "E_MSG_UPDATE_INDICATION\020\254\\\022\037\n\032SCENE_GET_" +
+ "FULL_MSG_REQUEST\020\255\\\022 \n\033SCENE_GET_FULL_MS",
+ "G_RESPONSE\020\256\\\022\032\n\025SCENE_COMMAND_REQUEST\020\257" +
+ "\\\022\033\n\026SCENE_COMMAND_RESPONSE\020\260\\\022\030\n\023SERVER" +
+ "_ZERO_REQUEST\020\261\\\022\034\n\027STORE_UPDATE_INDICAT" +
+ "ION\020\262\\\022\024\n\017SIGN_IN_REQUEST\020\263\\\022\025\n\020SIGN_IN_" +
+ "RESPONSE\020\264\\\022%\n SCENE_GAME_OVER_READY_IND" +
+ "ICATION\020\265\\\022\037\n\032SCENE_GAME_OVER_INDICATION" +
+ "\020\266\\\022\034\n\027SOUL_EQUIP_WEAR_REQUEST\020\267\\\022\035\n\030SOU" +
+ "L_EQUIP_WEAR_RESPONSE\020\270\\\022\"\n\035SOUL_EQUIP_U" +
+ "NLOAD_OPT_REQUEST\020\271\\\022#\n\036SOUL_EQUIP_UNLOA" +
+ "D_OPT_RESPONSE\020\272\\\022\034\n\027SOUL_RAND_EQUIP_REQ",
+ "UEST\020\273\\\022\035\n\030SOUL_RAND_EQUIP_RESPONSE\020\274\\\022\"" +
+ "\n\035SOUL_FORCE_RAND_EQUIP_REQUEST\020\275\\\022#\n\036SO" +
+ "UL_FORCE_RAND_EQUIP_RESPONSE\020\276\\\022\032\n\025TRIGG" +
+ "ER_EVENT_REQUEST\020\374\\\022\033\n\026TRIGGER_EVENT_RES" +
+ "PONSE\020\375\\\022\032\n\025TEAM_POS_SAVE_REQUEST\020\376\\\022\033\n\026" +
+ "TEAM_POS_SAVE_RESPONSE\020\377\\\022!\n\034TAKE_ACTIVI" +
+ "TY_REWARD_REQUEST\020\200]\022\"\n\035TAKE_ACTIVITY_RE" +
+ "WARD_RESPONSE\020\201]\022 \n\033TAKE_MISSION_REWARD_" +
+ "REQUEST\020\202]\022!\n\034TAKE_MISSION_REWARD_RESPON" +
+ "SE\020\203]\022 \n\033TEST_BUY_GIGT_GOODS_REQEUST\020\204]\022",
+ "!\n\034TEST_BUY_GIGT_GOODS_RESPONSE\020\205]\022\036\n\031TA" +
+ "KE_TOWER_REWARD_REQUEST\020\206]\022\037\n\032TAKE_TOWER" +
+ "_REWARD_RESPONSE\020\207]\022$\n\037TAKE_SEVEN_HAPPY_" +
+ "REWARD_REQUEST\020\210]\022%\n TAKE_SEVEN_HAPPY_RE" +
+ "WARD_RESPONSE\020\211]\022\033\n\026TO_BE_STRONGER_REQUE" +
+ "ST\020\212]\022\034\n\027TO_BE_STRONGER_RESPONSE\020\213]\022 \n\033T" +
+ "REASURE_REFRESH_INDICATION\020\214]\022 \n\033TREASUR" +
+ "E_LEVELUP_INDICATION\020\215]\022\032\n\025UP_HERO_LEVEL" +
+ "_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_S",
+ "TAR_RESPONSE\020\343]\022 \n\033USER_AND_PRICE_ITEM_R" +
+ "EQUEST\020\344]\022!\n\034USER_AND_PRICE_ITEM_RESPONS" +
+ "E\020\345]\022\036\n\031USER_FORCE_CHANGE_REQUEST\020\346]\022\037\n\032" +
+ "USER_FORCE_CHANGE_RESPONSE\020\347]\022\032\n\025UPDATE_" +
+ "BAG_INDICATION\020\350]\022\031\n\024UPDATE_STATE_REQUES" +
+ "T\020\351]\022\032\n\025UPDATE_STATE_RESPONSE\020\352]\022\037\n\032UPDA" +
+ "TE_USER_EXP_INDICATION\020\353]\022(\n#UPDATE_SECR" +
+ "ET_BOX_SEASON_INDICATION\020\354]\022\036\n\031UPDATE_PH" +
+ "ONE_INFO_REQUEST\020\355]\022\037\n\032UPDATE_PHONE_INFO" +
+ "_RESPONSE\020\356]\022\034\n\027UPDATE_QUESTION_REQUEST\020",
+ "\357]\022\035\n\030UPDATE_QUESTION_RESPONSE\020\360]\022 \n\033UP_" +
+ "SOUL_EQUIP_QUICK_REQUEST\020\362]\022\033\n\026UP_SOUL_E" +
+ "QUIP_RESPONSE\020\363]\022\035\n\030VIEW_FIGHTREPLAY_REQ" +
+ "UEST\020\304^\022\036\n\031VIEW_FIGHTREPLAY_RESPONSE\020\305^\022" +
+ "\030\n\023VIP_LEVELUP_REQEUST\020\306^\022\031\n\024VIP_LEVELUP" +
+ "_RESPONSE\020\307^\022\034\n\027VIP_TAKE_REWARD_REQUEST\020" +
+ "\310^\022\035\n\030VIP_TAKE_REWARD_RESPONSE\020\311^\022\033\n\026VIE" +
+ "W_HERO_INFO_REQUEST\020\312^\022\034\n\027VIEW_HERO_INFO" +
+ "_RESPONSE\020\313^\022 \n\033WORKSHOP_FOUNDATION_REQU" +
+ "EST\020\250_\022!\n\034WORKSHOP_FOUNDATION_RESPONSE\020\251",
+ "_\022\"\n\035WORKSHOP_EQUIP_CREATE_REQUEST\020\252_\022#\n" +
+ "\036WORKSHOP_EQUIP_CREATE_RESPONSE\020\253_\022\035\n\030WO" +
+ "RKSHOP_REBUILD_REQUEST\020\254_\022\036\n\031WORKSHOP_RE" +
+ "BUILD_RESPONSE\020\255_\022%\n WORKSHOP_REBUILD_CO" +
+ "NFIRM_REQUEST\020\256_\022%\n WORKSHOP_REBUILD_CON" +
+ "FIRM_RESONSE\020\257_\022\035\n\030WORKSHOP_LEVELUP_REQU" +
+ "EST\020\260_\022\036\n\031WORKSHOP_LEVELUP_RESPONSE\020\261_\022&" +
+ "\n!WORKSHOP_TECHNOLOGY_LEVEL_REQUEST\020\262_\022!" +
+ "\n\034WORKSHOP_TECHNOLOGY_RESPONSE\020\263_\022&\n!WOR" +
+ "KSHOP_TECHNOLOGY_RESET_REQUEST\020\264_\022\'\n\"WOR",
+ "KSHOP_TECHNOLOGY_RESET_RESPONSE\020\265_B\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 afdcc585d..ac67fca0c 100644
--- a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/PlayerInfoProto.java
+++ b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/PlayerInfoProto.java
@@ -4880,6 +4880,32 @@ public final class PlayerInfoProto {
*
*/
int getSoulEquipPool();
+
+ // repeated int32 playedMapTypes = 25;
+ /**
+ * repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + java.util.List
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + int getPlayedMapTypesCount(); + /** + *
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + int getPlayedMapTypes(int index); } /** * Protobuf type {@code com.ljsd.jieling.protocols.GetPlayerInfoResponse} @@ -5192,6 +5218,27 @@ public final class PlayerInfoProto { soulEquipPool_ = input.readInt32(); break; } + case 200: { + if (!((mutable_bitField0_ & 0x01000000) == 0x01000000)) { + playedMapTypes_ = new java.util.ArrayList
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + public java.util.List
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + public int getPlayedMapTypesCount() { + return playedMapTypes_.size(); + } + /** + *
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + public int getPlayedMapTypes(int index) { + return playedMapTypes_.get(index); + } + private void initFields() { player_ = com.ljsd.jieling.protocols.CommonProto.Player.getDefaultInstance(); newPlayerGuidePoint_ = java.util.Collections.emptyList(); @@ -6007,6 +6092,7 @@ public final class PlayerInfoProto { playerBindPhone_ = com.ljsd.jieling.protocols.CommonProto.PlayerBindPhone.getDefaultInstance(); questionState_ = 0; soulEquipPool_ = 0; + playedMapTypes_ = java.util.Collections.emptyList(); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -6092,6 +6178,9 @@ public final class PlayerInfoProto { if (((bitField0_ & 0x00004000) == 0x00004000)) { output.writeInt32(24, soulEquipPool_); } + for (int i = 0; i < playedMapTypes_.size(); i++) { + output.writeInt32(25, playedMapTypes_.get(i)); + } getUnknownFields().writeTo(output); } @@ -6222,6 +6311,15 @@ public final class PlayerInfoProto { size += com.google.protobuf.CodedOutputStream .computeInt32Size(24, soulEquipPool_); } + { + int dataSize = 0; + for (int i = 0; i < playedMapTypes_.size(); i++) { + dataSize += com.google.protobuf.CodedOutputStream + .computeInt32SizeNoTag(playedMapTypes_.get(i)); + } + size += dataSize; + size += 2 * getPlayedMapTypesList().size(); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -6436,6 +6534,8 @@ public final class PlayerInfoProto { bitField0_ = (bitField0_ & ~0x00400000); soulEquipPool_ = 0; bitField0_ = (bitField0_ & ~0x00800000); + playedMapTypes_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x01000000); return this; } @@ -6609,6 +6709,11 @@ public final class PlayerInfoProto { to_bitField0_ |= 0x00004000; } result.soulEquipPool_ = soulEquipPool_; + if (((bitField0_ & 0x01000000) == 0x01000000)) { + playedMapTypes_ = java.util.Collections.unmodifiableList(playedMapTypes_); + bitField0_ = (bitField0_ & ~0x01000000); + } + result.playedMapTypes_ = playedMapTypes_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -6824,6 +6929,16 @@ public final class PlayerInfoProto { if (other.hasSoulEquipPool()) { setSoulEquipPool(other.getSoulEquipPool()); } + if (!other.playedMapTypes_.isEmpty()) { + if (playedMapTypes_.isEmpty()) { + playedMapTypes_ = other.playedMapTypes_; + bitField0_ = (bitField0_ & ~0x01000000); + } else { + ensurePlayedMapTypesIsMutable(); + playedMapTypes_.addAll(other.playedMapTypes_); + } + onChanged(); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -9612,6 +9727,100 @@ public final class PlayerInfoProto { return this; } + // repeated int32 playedMapTypes = 25; + private java.util.List
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + public java.util.List
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + public int getPlayedMapTypesCount() { + return playedMapTypes_.size(); + } + /** + *
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + public int getPlayedMapTypes(int index) { + return playedMapTypes_.get(index); + } + /** + *
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + public Builder setPlayedMapTypes( + int index, int value) { + ensurePlayedMapTypesIsMutable(); + playedMapTypes_.set(index, value); + onChanged(); + return this; + } + /** + *
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + public Builder addPlayedMapTypes(int value) { + ensurePlayedMapTypesIsMutable(); + playedMapTypes_.add(value); + onChanged(); + return this; + } + /** + *
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + public Builder addAllPlayedMapTypes( + java.lang.Iterable extends java.lang.Integer> values) { + ensurePlayedMapTypesIsMutable(); + super.addAll(values, playedMapTypes_); + onChanged(); + return this; + } + /** + *
repeated int32 playedMapTypes = 25;
+ *
+ * + *已经玩过的副本类型 + *+ */ + public Builder clearPlayedMapTypes() { + playedMapTypes_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x01000000); + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.GetPlayerInfoResponse) } @@ -54704,33 +54913,33 @@ public final class PlayerInfoProto { // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.UpdateBagIndication) } - public interface ModifyHeadRequestOrBuilder + public interface ModifyDecorationRequestOrBuilder extends com.google.protobuf.MessageOrBuilder { - // optional int32 headId = 1; + // optional int32 decorationId = 1; /** - *
optional int32 headId = 1;
+ * optional int32 decorationId = 1;
*
* - *修改头像或头像框 + *修改外观 **/ - boolean hasHeadId(); + boolean hasDecorationId(); /** - *
optional int32 headId = 1;
+ * optional int32 decorationId = 1;
*
* - *修改头像或头像框 + *修改外观 **/ - int getHeadId(); + int getDecorationId(); // optional int32 type = 2; /** *
optional int32 type = 2;
*
* - *0头像框,1头像 + *0头像框,1头像,2称号,3坐骑,4皮肤 **/ boolean hasType(); @@ -54738,30 +54947,30 @@ public final class PlayerInfoProto { *
optional int32 type = 2;
*
* - *0头像框,1头像 + *0头像框,1头像,2称号,3坐骑,4皮肤 **/ int getType(); } /** - * Protobuf type {@code com.ljsd.jieling.protocols.ModifyHeadRequest} + * Protobuf type {@code com.ljsd.jieling.protocols.ModifyDecorationRequest} */ - public static final class ModifyHeadRequest extends + public static final class ModifyDecorationRequest extends com.google.protobuf.GeneratedMessage - implements ModifyHeadRequestOrBuilder { - // Use ModifyHeadRequest.newBuilder() to construct. - private ModifyHeadRequest(com.google.protobuf.GeneratedMessage.Builder> builder) { + implements ModifyDecorationRequestOrBuilder { + // Use ModifyDecorationRequest.newBuilder() to construct. + private ModifyDecorationRequest(com.google.protobuf.GeneratedMessage.Builder> builder) { super(builder); this.unknownFields = builder.getUnknownFields(); } - private ModifyHeadRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + private ModifyDecorationRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } - private static final ModifyHeadRequest defaultInstance; - public static ModifyHeadRequest getDefaultInstance() { + private static final ModifyDecorationRequest defaultInstance; + public static ModifyDecorationRequest getDefaultInstance() { return defaultInstance; } - public ModifyHeadRequest getDefaultInstanceForType() { + public ModifyDecorationRequest getDefaultInstanceForType() { return defaultInstance; } @@ -54771,7 +54980,7 @@ public final class PlayerInfoProto { getUnknownFields() { return this.unknownFields; } - private ModifyHeadRequest( + private ModifyDecorationRequest( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { @@ -54796,7 +55005,7 @@ public final class PlayerInfoProto { } case 8: { bitField0_ |= 0x00000001; - headId_ = input.readInt32(); + decorationId_ = input.readInt32(); break; } case 16: { @@ -54818,54 +55027,54 @@ public final class PlayerInfoProto { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return com.ljsd.jieling.protocols.PlayerInfoProto.internal_static_com_ljsd_jieling_protocols_ModifyHeadRequest_descriptor; + return com.ljsd.jieling.protocols.PlayerInfoProto.internal_static_com_ljsd_jieling_protocols_ModifyDecorationRequest_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return com.ljsd.jieling.protocols.PlayerInfoProto.internal_static_com_ljsd_jieling_protocols_ModifyHeadRequest_fieldAccessorTable + return com.ljsd.jieling.protocols.PlayerInfoProto.internal_static_com_ljsd_jieling_protocols_ModifyDecorationRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( - com.ljsd.jieling.protocols.PlayerInfoProto.ModifyHeadRequest.class, com.ljsd.jieling.protocols.PlayerInfoProto.ModifyHeadRequest.Builder.class); + com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest.class, com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest.Builder.class); } - public static com.google.protobuf.Parser
optional int32 headId = 1;
+ * optional int32 decorationId = 1;
*
* - *修改头像或头像框 + *修改外观 **/ - public boolean hasHeadId() { + public boolean hasDecorationId() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - *
optional int32 headId = 1;
+ * optional int32 decorationId = 1;
*
* - *修改头像或头像框 + *修改外观 **/ - public int getHeadId() { - return headId_; + public int getDecorationId() { + return decorationId_; } // optional int32 type = 2; @@ -54875,7 +55084,7 @@ public final class PlayerInfoProto { *
optional int32 type = 2;
*
* - *0头像框,1头像 + *0头像框,1头像,2称号,3坐骑,4皮肤 **/ public boolean hasType() { @@ -54885,7 +55094,7 @@ public final class PlayerInfoProto { *
optional int32 type = 2;
*
* - *0头像框,1头像 + *0头像框,1头像,2称号,3坐骑,4皮肤 **/ public int getType() { @@ -54893,7 +55102,7 @@ public final class PlayerInfoProto { } private void initFields() { - headId_ = 0; + decorationId_ = 0; type_ = 0; } private byte memoizedIsInitialized = -1; @@ -54909,7 +55118,7 @@ public final class PlayerInfoProto { throws java.io.IOException { getSerializedSize(); if (((bitField0_ & 0x00000001) == 0x00000001)) { - output.writeInt32(1, headId_); + output.writeInt32(1, decorationId_); } if (((bitField0_ & 0x00000002) == 0x00000002)) { output.writeInt32(2, type_); @@ -54925,7 +55134,7 @@ public final class PlayerInfoProto { size = 0; if (((bitField0_ & 0x00000001) == 0x00000001)) { size += com.google.protobuf.CodedOutputStream - .computeInt32Size(1, headId_); + .computeInt32Size(1, decorationId_); } if (((bitField0_ & 0x00000002) == 0x00000002)) { size += com.google.protobuf.CodedOutputStream @@ -54943,53 +55152,53 @@ public final class PlayerInfoProto { return super.writeReplace(); } - public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyHeadRequest parseFrom( + public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyHeadRequest parseFrom( + public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest 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.PlayerInfoProto.ModifyHeadRequest parseFrom(byte[] data) + public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyHeadRequest parseFrom( + public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyHeadRequest parseFrom(java.io.InputStream input) + public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } - public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyHeadRequest parseFrom( + public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest 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.PlayerInfoProto.ModifyHeadRequest parseDelimitedFrom(java.io.InputStream input) + public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseDelimitedFrom(input); } - public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyHeadRequest parseDelimitedFrom( + public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest 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.PlayerInfoProto.ModifyHeadRequest parseFrom( + public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } - public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyHeadRequest parseFrom( + public static com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -54998,7 +55207,7 @@ public final class PlayerInfoProto { public static Builder newBuilder() { return Builder.create(); } public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder(com.ljsd.jieling.protocols.PlayerInfoProto.ModifyHeadRequest prototype) { + public static Builder newBuilder(com.ljsd.jieling.protocols.PlayerInfoProto.ModifyDecorationRequest prototype) { return newBuilder().mergeFrom(prototype); } public Builder toBuilder() { return newBuilder(this); } @@ -55010,24 +55219,24 @@ public final class PlayerInfoProto { return builder; } /** - * Protobuf type {@code com.ljsd.jieling.protocols.ModifyHeadRequest} + * Protobuf type {@code com.ljsd.jieling.protocols.ModifyDecorationRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder
optional int32 headId = 1;
+ * optional int32 decorationId = 1;
*
* - *修改头像或头像框 + *修改外观 **/ - public boolean hasHeadId() { + public boolean hasDecorationId() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - *
optional int32 headId = 1;
+ * optional int32 decorationId = 1;
*
* - *修改头像或头像框 + *修改外观 **/ - public int getHeadId() { - return headId_; + public int getDecorationId() { + return decorationId_; } /** - *
optional int32 headId = 1;
+ * optional int32 decorationId = 1;
*
* - *修改头像或头像框 + *修改外观 **/ - public Builder setHeadId(int value) { + public Builder setDecorationId(int value) { bitField0_ |= 0x00000001; - headId_ = value; + decorationId_ = value; onChanged(); return this; } /** - *
optional int32 headId = 1;
+ * optional int32 decorationId = 1;
*
* - *修改头像或头像框 + *修改外观 **/ - public Builder clearHeadId() { + public Builder clearDecorationId() { bitField0_ = (bitField0_ & ~0x00000001); - headId_ = 0; + decorationId_ = 0; onChanged(); return this; } @@ -55191,7 +55400,7 @@ public final class PlayerInfoProto { *
optional int32 type = 2;
*
* - *0头像框,1头像 + *0头像框,1头像,2称号,3坐骑,4皮肤 **/ public boolean hasType() { @@ -55201,7 +55410,7 @@ public final class PlayerInfoProto { *
optional int32 type = 2;
*
* - *0头像框,1头像 + *0头像框,1头像,2称号,3坐骑,4皮肤 **/ public int getType() { @@ -55211,7 +55420,7 @@ public final class PlayerInfoProto { *
optional int32 type = 2;
*
* - *0头像框,1头像 + *0头像框,1头像,2称号,3坐骑,4皮肤 **/ public Builder setType(int value) { @@ -55224,7 +55433,7 @@ public final class PlayerInfoProto { *
optional int32 type = 2;
*
* - *0头像框,1头像 + *0头像框,1头像,2称号,3坐骑,4皮肤 **/ public Builder clearType() { @@ -55234,15 +55443,15 @@ public final class PlayerInfoProto { return this; } - // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.ModifyHeadRequest) + // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.ModifyDecorationRequest) } static { - defaultInstance = new ModifyHeadRequest(true); + defaultInstance = new ModifyDecorationRequest(true); defaultInstance.initFields(); } - // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.ModifyHeadRequest) + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.ModifyDecorationRequest) } public interface blessResponseOrBuilder @@ -81234,30 +81443,45 @@ public final class PlayerInfoProto { */ int getDuration(); - // repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4; + // repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4; /** - *
repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- java.util.Listrepeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo(int index);
+ com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo getAdventureBossInfo(int index);
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- int getAdventureBossSimpleInfoCount();
+ int getAdventureBossInfoCount();
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder>
- getAdventureBossSimpleInfoOrBuilderList();
+ java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder>
+ getAdventureBossInfoOrBuilderList();
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder(
+ com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder getAdventureBossInfoOrBuilder(
int index);
+
+ // optional string reward = 5;
+ /**
+ * optional string reward = 5;
+ */
+ boolean hasReward();
+ /**
+ * optional string reward = 5;
+ */
+ java.lang.String getReward();
+ /**
+ * optional string reward = 5;
+ */
+ com.google.protobuf.ByteString
+ getRewardBytes();
}
/**
* Protobuf type {@code com.ljsd.jieling.protocols.GetMainLevelInfoResponse}
@@ -81327,10 +81551,15 @@ public final class PlayerInfoProto {
}
case 34: {
if (!((mutable_bitField0_ & 0x00000008) == 0x00000008)) {
- adventureBossSimpleInfo_ = new java.util.ArrayListrepeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public java.util.Listrepeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder>
- getAdventureBossSimpleInfoOrBuilderList() {
- return adventureBossSimpleInfo_;
+ public java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder>
+ getAdventureBossInfoOrBuilderList() {
+ return adventureBossInfo_;
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public int getAdventureBossSimpleInfoCount() {
- return adventureBossSimpleInfo_.size();
+ public int getAdventureBossInfoCount() {
+ return adventureBossInfo_.size();
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo(int index) {
- return adventureBossSimpleInfo_.get(index);
+ public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo getAdventureBossInfo(int index) {
+ return adventureBossInfo_.get(index);
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder(
+ public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder getAdventureBossInfoOrBuilder(
int index) {
- return adventureBossSimpleInfo_.get(index);
+ return adventureBossInfo_.get(index);
+ }
+
+ // optional string reward = 5;
+ public static final int REWARD_FIELD_NUMBER = 5;
+ private java.lang.Object reward_;
+ /**
+ * optional string reward = 5;
+ */
+ public boolean hasReward() {
+ return ((bitField0_ & 0x00000008) == 0x00000008);
+ }
+ /**
+ * optional string reward = 5;
+ */
+ public java.lang.String getReward() {
+ java.lang.Object ref = reward_;
+ if (ref instanceof java.lang.String) {
+ return (java.lang.String) ref;
+ } else {
+ com.google.protobuf.ByteString bs =
+ (com.google.protobuf.ByteString) ref;
+ java.lang.String s = bs.toStringUtf8();
+ if (bs.isValidUtf8()) {
+ reward_ = s;
+ }
+ return s;
+ }
+ }
+ /**
+ * optional string reward = 5;
+ */
+ public com.google.protobuf.ByteString
+ getRewardBytes() {
+ java.lang.Object ref = reward_;
+ if (ref instanceof java.lang.String) {
+ com.google.protobuf.ByteString b =
+ com.google.protobuf.ByteString.copyFromUtf8(
+ (java.lang.String) ref);
+ reward_ = b;
+ return b;
+ } else {
+ return (com.google.protobuf.ByteString) ref;
+ }
}
private void initFields() {
fightId_ = 0;
state_ = 0;
duration_ = 0;
- adventureBossSimpleInfo_ = java.util.Collections.emptyList();
+ adventureBossInfo_ = java.util.Collections.emptyList();
+ reward_ = "";
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
@@ -81511,8 +81784,11 @@ public final class PlayerInfoProto {
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeInt32(3, duration_);
}
- for (int i = 0; i < adventureBossSimpleInfo_.size(); i++) {
- output.writeMessage(4, adventureBossSimpleInfo_.get(i));
+ for (int i = 0; i < adventureBossInfo_.size(); i++) {
+ output.writeMessage(4, adventureBossInfo_.get(i));
+ }
+ if (((bitField0_ & 0x00000008) == 0x00000008)) {
+ output.writeBytes(5, getRewardBytes());
}
getUnknownFields().writeTo(output);
}
@@ -81535,9 +81811,13 @@ public final class PlayerInfoProto {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, duration_);
}
- for (int i = 0; i < adventureBossSimpleInfo_.size(); i++) {
+ for (int i = 0; i < adventureBossInfo_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
- .computeMessageSize(4, adventureBossSimpleInfo_.get(i));
+ .computeMessageSize(4, adventureBossInfo_.get(i));
+ }
+ if (((bitField0_ & 0x00000008) == 0x00000008)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeBytesSize(5, getRewardBytes());
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
@@ -81647,7 +81927,7 @@ public final class PlayerInfoProto {
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
- getAdventureBossSimpleInfoFieldBuilder();
+ getAdventureBossInfoFieldBuilder();
}
}
private static Builder create() {
@@ -81662,12 +81942,14 @@ public final class PlayerInfoProto {
bitField0_ = (bitField0_ & ~0x00000002);
duration_ = 0;
bitField0_ = (bitField0_ & ~0x00000004);
- if (adventureBossSimpleInfoBuilder_ == null) {
- adventureBossSimpleInfo_ = java.util.Collections.emptyList();
+ if (adventureBossInfoBuilder_ == null) {
+ adventureBossInfo_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000008);
} else {
- adventureBossSimpleInfoBuilder_.clear();
+ adventureBossInfoBuilder_.clear();
}
+ reward_ = "";
+ bitField0_ = (bitField0_ & ~0x00000010);
return this;
}
@@ -81708,15 +81990,19 @@ public final class PlayerInfoProto {
to_bitField0_ |= 0x00000004;
}
result.duration_ = duration_;
- if (adventureBossSimpleInfoBuilder_ == null) {
+ if (adventureBossInfoBuilder_ == null) {
if (((bitField0_ & 0x00000008) == 0x00000008)) {
- adventureBossSimpleInfo_ = java.util.Collections.unmodifiableList(adventureBossSimpleInfo_);
+ adventureBossInfo_ = java.util.Collections.unmodifiableList(adventureBossInfo_);
bitField0_ = (bitField0_ & ~0x00000008);
}
- result.adventureBossSimpleInfo_ = adventureBossSimpleInfo_;
+ result.adventureBossInfo_ = adventureBossInfo_;
} else {
- result.adventureBossSimpleInfo_ = adventureBossSimpleInfoBuilder_.build();
+ result.adventureBossInfo_ = adventureBossInfoBuilder_.build();
}
+ if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
+ to_bitField0_ |= 0x00000008;
+ }
+ result.reward_ = reward_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
@@ -81742,32 +82028,37 @@ public final class PlayerInfoProto {
if (other.hasDuration()) {
setDuration(other.getDuration());
}
- if (adventureBossSimpleInfoBuilder_ == null) {
- if (!other.adventureBossSimpleInfo_.isEmpty()) {
- if (adventureBossSimpleInfo_.isEmpty()) {
- adventureBossSimpleInfo_ = other.adventureBossSimpleInfo_;
+ if (adventureBossInfoBuilder_ == null) {
+ if (!other.adventureBossInfo_.isEmpty()) {
+ if (adventureBossInfo_.isEmpty()) {
+ adventureBossInfo_ = other.adventureBossInfo_;
bitField0_ = (bitField0_ & ~0x00000008);
} else {
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.addAll(other.adventureBossSimpleInfo_);
+ ensureAdventureBossInfoIsMutable();
+ adventureBossInfo_.addAll(other.adventureBossInfo_);
}
onChanged();
}
} else {
- if (!other.adventureBossSimpleInfo_.isEmpty()) {
- if (adventureBossSimpleInfoBuilder_.isEmpty()) {
- adventureBossSimpleInfoBuilder_.dispose();
- adventureBossSimpleInfoBuilder_ = null;
- adventureBossSimpleInfo_ = other.adventureBossSimpleInfo_;
+ if (!other.adventureBossInfo_.isEmpty()) {
+ if (adventureBossInfoBuilder_.isEmpty()) {
+ adventureBossInfoBuilder_.dispose();
+ adventureBossInfoBuilder_ = null;
+ adventureBossInfo_ = other.adventureBossInfo_;
bitField0_ = (bitField0_ & ~0x00000008);
- adventureBossSimpleInfoBuilder_ =
+ adventureBossInfoBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
- getAdventureBossSimpleInfoFieldBuilder() : null;
+ getAdventureBossInfoFieldBuilder() : null;
} else {
- adventureBossSimpleInfoBuilder_.addAllMessages(other.adventureBossSimpleInfo_);
+ adventureBossInfoBuilder_.addAllMessages(other.adventureBossInfo_);
}
}
}
+ if (other.hasReward()) {
+ bitField0_ |= 0x00000010;
+ reward_ = other.reward_;
+ onChanged();
+ }
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
@@ -81942,244 +82233,318 @@ public final class PlayerInfoProto {
return this;
}
- // repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
- private java.util.Listrepeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public java.util.Listrepeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public int getAdventureBossSimpleInfoCount() {
- if (adventureBossSimpleInfoBuilder_ == null) {
- return adventureBossSimpleInfo_.size();
+ public int getAdventureBossInfoCount() {
+ if (adventureBossInfoBuilder_ == null) {
+ return adventureBossInfo_.size();
} else {
- return adventureBossSimpleInfoBuilder_.getCount();
+ return adventureBossInfoBuilder_.getCount();
}
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo getAdventureBossSimpleInfo(int index) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- return adventureBossSimpleInfo_.get(index);
+ public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo getAdventureBossInfo(int index) {
+ if (adventureBossInfoBuilder_ == null) {
+ return adventureBossInfo_.get(index);
} else {
- return adventureBossSimpleInfoBuilder_.getMessage(index);
+ return adventureBossInfoBuilder_.getMessage(index);
}
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public Builder setAdventureBossSimpleInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) {
- if (adventureBossSimpleInfoBuilder_ == null) {
+ public Builder setAdventureBossInfo(
+ int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo value) {
+ if (adventureBossInfoBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.set(index, value);
+ ensureAdventureBossInfoIsMutable();
+ adventureBossInfo_.set(index, value);
onChanged();
} else {
- adventureBossSimpleInfoBuilder_.setMessage(index, value);
+ adventureBossInfoBuilder_.setMessage(index, value);
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public Builder setAdventureBossSimpleInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder builderForValue) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.set(index, builderForValue.build());
+ public Builder setAdventureBossInfo(
+ int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder builderForValue) {
+ if (adventureBossInfoBuilder_ == null) {
+ ensureAdventureBossInfoIsMutable();
+ adventureBossInfo_.set(index, builderForValue.build());
onChanged();
} else {
- adventureBossSimpleInfoBuilder_.setMessage(index, builderForValue.build());
+ adventureBossInfoBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public Builder addAdventureBossSimpleInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) {
- if (adventureBossSimpleInfoBuilder_ == null) {
+ public Builder addAdventureBossInfo(com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo value) {
+ if (adventureBossInfoBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.add(value);
+ ensureAdventureBossInfoIsMutable();
+ adventureBossInfo_.add(value);
onChanged();
} else {
- adventureBossSimpleInfoBuilder_.addMessage(value);
+ adventureBossInfoBuilder_.addMessage(value);
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public Builder addAdventureBossSimpleInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo value) {
- if (adventureBossSimpleInfoBuilder_ == null) {
+ public Builder addAdventureBossInfo(
+ int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo value) {
+ if (adventureBossInfoBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.add(index, value);
+ ensureAdventureBossInfoIsMutable();
+ adventureBossInfo_.add(index, value);
onChanged();
} else {
- adventureBossSimpleInfoBuilder_.addMessage(index, value);
+ adventureBossInfoBuilder_.addMessage(index, value);
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public Builder addAdventureBossSimpleInfo(
- com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder builderForValue) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.add(builderForValue.build());
+ public Builder addAdventureBossInfo(
+ com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder builderForValue) {
+ if (adventureBossInfoBuilder_ == null) {
+ ensureAdventureBossInfoIsMutable();
+ adventureBossInfo_.add(builderForValue.build());
onChanged();
} else {
- adventureBossSimpleInfoBuilder_.addMessage(builderForValue.build());
+ adventureBossInfoBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public Builder addAdventureBossSimpleInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder builderForValue) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.add(index, builderForValue.build());
+ public Builder addAdventureBossInfo(
+ int index, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder builderForValue) {
+ if (adventureBossInfoBuilder_ == null) {
+ ensureAdventureBossInfoIsMutable();
+ adventureBossInfo_.add(index, builderForValue.build());
onChanged();
} else {
- adventureBossSimpleInfoBuilder_.addMessage(index, builderForValue.build());
+ adventureBossInfoBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public Builder addAllAdventureBossSimpleInfo(
- java.lang.Iterable extends com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo> values) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- ensureAdventureBossSimpleInfoIsMutable();
- super.addAll(values, adventureBossSimpleInfo_);
+ public Builder addAllAdventureBossInfo(
+ java.lang.Iterable extends com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo> values) {
+ if (adventureBossInfoBuilder_ == null) {
+ ensureAdventureBossInfoIsMutable();
+ super.addAll(values, adventureBossInfo_);
onChanged();
} else {
- adventureBossSimpleInfoBuilder_.addAllMessages(values);
+ adventureBossInfoBuilder_.addAllMessages(values);
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public Builder clearAdventureBossSimpleInfo() {
- if (adventureBossSimpleInfoBuilder_ == null) {
- adventureBossSimpleInfo_ = java.util.Collections.emptyList();
+ public Builder clearAdventureBossInfo() {
+ if (adventureBossInfoBuilder_ == null) {
+ adventureBossInfo_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000008);
onChanged();
} else {
- adventureBossSimpleInfoBuilder_.clear();
+ adventureBossInfoBuilder_.clear();
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public Builder removeAdventureBossSimpleInfo(int index) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- ensureAdventureBossSimpleInfoIsMutable();
- adventureBossSimpleInfo_.remove(index);
+ public Builder removeAdventureBossInfo(int index) {
+ if (adventureBossInfoBuilder_ == null) {
+ ensureAdventureBossInfoIsMutable();
+ adventureBossInfo_.remove(index);
onChanged();
} else {
- adventureBossSimpleInfoBuilder_.remove(index);
+ adventureBossInfoBuilder_.remove(index);
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder getAdventureBossSimpleInfoBuilder(
+ public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder getAdventureBossInfoBuilder(
int index) {
- return getAdventureBossSimpleInfoFieldBuilder().getBuilder(index);
+ return getAdventureBossInfoFieldBuilder().getBuilder(index);
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder getAdventureBossSimpleInfoOrBuilder(
+ public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder getAdventureBossInfoOrBuilder(
int index) {
- if (adventureBossSimpleInfoBuilder_ == null) {
- return adventureBossSimpleInfo_.get(index); } else {
- return adventureBossSimpleInfoBuilder_.getMessageOrBuilder(index);
+ if (adventureBossInfoBuilder_ == null) {
+ return adventureBossInfo_.get(index); } else {
+ return adventureBossInfoBuilder_.getMessageOrBuilder(index);
}
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfoOrBuilder>
- getAdventureBossSimpleInfoOrBuilderList() {
- if (adventureBossSimpleInfoBuilder_ != null) {
- return adventureBossSimpleInfoBuilder_.getMessageOrBuilderList();
+ public java.util.List extends com.ljsd.jieling.protocols.CommonProto.AdventureBossInfoOrBuilder>
+ getAdventureBossInfoOrBuilderList() {
+ if (adventureBossInfoBuilder_ != null) {
+ return adventureBossInfoBuilder_.getMessageOrBuilderList();
} else {
- return java.util.Collections.unmodifiableList(adventureBossSimpleInfo_);
+ return java.util.Collections.unmodifiableList(adventureBossInfo_);
}
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder addAdventureBossSimpleInfoBuilder() {
- return getAdventureBossSimpleInfoFieldBuilder().addBuilder(
- com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance());
+ public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder addAdventureBossInfoBuilder() {
+ return getAdventureBossInfoFieldBuilder().addBuilder(
+ com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance());
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.Builder addAdventureBossSimpleInfoBuilder(
+ public com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.Builder addAdventureBossInfoBuilder(
int index) {
- return getAdventureBossSimpleInfoFieldBuilder().addBuilder(
- index, com.ljsd.jieling.protocols.CommonProto.AdventureBossSimpleInfo.getDefaultInstance());
+ return getAdventureBossInfoFieldBuilder().addBuilder(
+ index, com.ljsd.jieling.protocols.CommonProto.AdventureBossInfo.getDefaultInstance());
}
/**
- * repeated .com.ljsd.jieling.protocols.AdventureBossSimpleInfo adventureBossSimpleInfo = 4;
+ * repeated .com.ljsd.jieling.protocols.AdventureBossInfo adventureBossInfo = 4;
*/
- public java.util.Listoptional string reward = 5;
+ */
+ public boolean hasReward() {
+ return ((bitField0_ & 0x00000010) == 0x00000010);
+ }
+ /**
+ * optional string reward = 5;
+ */
+ public java.lang.String getReward() {
+ java.lang.Object ref = reward_;
+ if (!(ref instanceof java.lang.String)) {
+ java.lang.String s = ((com.google.protobuf.ByteString) ref)
+ .toStringUtf8();
+ reward_ = s;
+ return s;
+ } else {
+ return (java.lang.String) ref;
+ }
+ }
+ /**
+ * optional string reward = 5;
+ */
+ public com.google.protobuf.ByteString
+ getRewardBytes() {
+ java.lang.Object ref = reward_;
+ if (ref instanceof String) {
+ com.google.protobuf.ByteString b =
+ com.google.protobuf.ByteString.copyFromUtf8(
+ (java.lang.String) ref);
+ reward_ = b;
+ return b;
+ } else {
+ return (com.google.protobuf.ByteString) ref;
+ }
+ }
+ /**
+ * optional string reward = 5;
+ */
+ public Builder setReward(
+ java.lang.String value) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ bitField0_ |= 0x00000010;
+ reward_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional string reward = 5;
+ */
+ public Builder clearReward() {
+ bitField0_ = (bitField0_ & ~0x00000010);
+ reward_ = getDefaultInstance().getReward();
+ onChanged();
+ return this;
+ }
+ /**
+ * optional string reward = 5;
+ */
+ public Builder setRewardBytes(
+ com.google.protobuf.ByteString value) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ bitField0_ |= 0x00000010;
+ reward_ = value;
+ onChanged();
+ return this;
}
// @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.GetMainLevelInfoResponse)
@@ -86516,6 +86881,1303 @@ public final class PlayerInfoProto {
// @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.ViewHeroInfoResponse)
}
+ public interface RankRequestOrBuilder
+ 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.RankRequest} + */ + public static final class RankRequest extends + com.google.protobuf.GeneratedMessage + implements RankRequestOrBuilder { + // Use RankRequest.newBuilder() to construct. + private RankRequest(com.google.protobuf.GeneratedMessage.Builder> builder) { + super(builder); + this.unknownFields = builder.getUnknownFields(); + } + private RankRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + + private static final RankRequest defaultInstance; + public static RankRequest getDefaultInstance() { + return defaultInstance; + } + + public RankRequest getDefaultInstanceForType() { + return defaultInstance; + } + + private final com.google.protobuf.UnknownFieldSet unknownFields; + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private RankRequest( + 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.PlayerInfoProto.internal_static_com_ljsd_jieling_protocols_RankRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.ljsd.jieling.protocols.PlayerInfoProto.internal_static_com_ljsd_jieling_protocols_RankRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.ljsd.jieling.protocols.PlayerInfoProto.RankRequest.class, com.ljsd.jieling.protocols.PlayerInfoProto.RankRequest.Builder.class); + } + + public static com.google.protobuf.Parser
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.PlayerInfoProto.RankRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.PlayerInfoProto.RankRequest 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.PlayerInfoProto.RankRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.ljsd.jieling.protocols.PlayerInfoProto.RankRequest parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.ljsd.jieling.protocols.PlayerInfoProto.RankRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.PlayerInfoProto.RankRequest 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.PlayerInfoProto.RankRequest parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return PARSER.parseDelimitedFrom(input); + } + public static com.ljsd.jieling.protocols.PlayerInfoProto.RankRequest 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.PlayerInfoProto.RankRequest parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return PARSER.parseFrom(input); + } + public static com.ljsd.jieling.protocols.PlayerInfoProto.RankRequest 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.PlayerInfoProto.RankRequest 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.RankRequest} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessage.Builder
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.RankRequest) + } + + static { + defaultInstance = new RankRequest(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.RankRequest) + } + + public interface RankResponseOrBuilder + extends com.google.protobuf.MessageOrBuilder { + + // repeated .com.ljsd.jieling.protocols.UserRank ranks = 1; + /** + *
repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ java.util.Listrepeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ com.ljsd.jieling.protocols.CommonProto.UserRank getRanks(int index);
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ int getRanksCount();
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ java.util.List extends com.ljsd.jieling.protocols.CommonProto.UserRankOrBuilder>
+ getRanksOrBuilderList();
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ com.ljsd.jieling.protocols.CommonProto.UserRankOrBuilder getRanksOrBuilder(
+ int index);
+
+ // optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ boolean hasMyRankInfo();
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ com.ljsd.jieling.protocols.CommonProto.RankInfo getMyRankInfo();
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getMyRankInfoOrBuilder();
+ }
+ /**
+ * Protobuf type {@code com.ljsd.jieling.protocols.RankResponse}
+ */
+ public static final class RankResponse extends
+ com.google.protobuf.GeneratedMessage
+ implements RankResponseOrBuilder {
+ // Use RankResponse.newBuilder() to construct.
+ private RankResponse(com.google.protobuf.GeneratedMessage.Builder> builder) {
+ super(builder);
+ this.unknownFields = builder.getUnknownFields();
+ }
+ private RankResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
+
+ private static final RankResponse defaultInstance;
+ public static RankResponse getDefaultInstance() {
+ return defaultInstance;
+ }
+
+ public RankResponse getDefaultInstanceForType() {
+ return defaultInstance;
+ }
+
+ private final com.google.protobuf.UnknownFieldSet unknownFields;
+ @java.lang.Override
+ public final com.google.protobuf.UnknownFieldSet
+ getUnknownFields() {
+ return this.unknownFields;
+ }
+ private RankResponse(
+ 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)) {
+ ranks_ = new java.util.ArrayListrepeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public java.util.Listrepeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public java.util.List extends com.ljsd.jieling.protocols.CommonProto.UserRankOrBuilder>
+ getRanksOrBuilderList() {
+ return ranks_;
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public int getRanksCount() {
+ return ranks_.size();
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.UserRank getRanks(int index) {
+ return ranks_.get(index);
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.UserRankOrBuilder getRanksOrBuilder(
+ int index) {
+ return ranks_.get(index);
+ }
+
+ // optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ public static final int MYRANKINFO_FIELD_NUMBER = 2;
+ private com.ljsd.jieling.protocols.CommonProto.RankInfo myRankInfo_;
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ public boolean hasMyRankInfo() {
+ return ((bitField0_ & 0x00000001) == 0x00000001);
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.RankInfo getMyRankInfo() {
+ return myRankInfo_;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getMyRankInfoOrBuilder() {
+ return myRankInfo_;
+ }
+
+ private void initFields() {
+ ranks_ = java.util.Collections.emptyList();
+ myRankInfo_ = com.ljsd.jieling.protocols.CommonProto.RankInfo.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();
+ for (int i = 0; i < ranks_.size(); i++) {
+ output.writeMessage(1, ranks_.get(i));
+ }
+ if (((bitField0_ & 0x00000001) == 0x00000001)) {
+ output.writeMessage(2, myRankInfo_);
+ }
+ 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 < ranks_.size(); i++) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeMessageSize(1, ranks_.get(i));
+ }
+ if (((bitField0_ & 0x00000001) == 0x00000001)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeMessageSize(2, myRankInfo_);
+ }
+ 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.PlayerInfoProto.RankResponse parseFrom(
+ com.google.protobuf.ByteString data)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data);
+ }
+ public static com.ljsd.jieling.protocols.PlayerInfoProto.RankResponse 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.PlayerInfoProto.RankResponse parseFrom(byte[] data)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data);
+ }
+ public static com.ljsd.jieling.protocols.PlayerInfoProto.RankResponse parseFrom(
+ byte[] data,
+ com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data, extensionRegistry);
+ }
+ public static com.ljsd.jieling.protocols.PlayerInfoProto.RankResponse parseFrom(java.io.InputStream input)
+ throws java.io.IOException {
+ return PARSER.parseFrom(input);
+ }
+ public static com.ljsd.jieling.protocols.PlayerInfoProto.RankResponse 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.PlayerInfoProto.RankResponse parseDelimitedFrom(java.io.InputStream input)
+ throws java.io.IOException {
+ return PARSER.parseDelimitedFrom(input);
+ }
+ public static com.ljsd.jieling.protocols.PlayerInfoProto.RankResponse 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.PlayerInfoProto.RankResponse parseFrom(
+ com.google.protobuf.CodedInputStream input)
+ throws java.io.IOException {
+ return PARSER.parseFrom(input);
+ }
+ public static com.ljsd.jieling.protocols.PlayerInfoProto.RankResponse 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.PlayerInfoProto.RankResponse 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.RankResponse}
+ */
+ public static final class Builder extends
+ com.google.protobuf.GeneratedMessage.Builderrepeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public java.util.Listrepeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public int getRanksCount() {
+ if (ranksBuilder_ == null) {
+ return ranks_.size();
+ } else {
+ return ranksBuilder_.getCount();
+ }
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.UserRank getRanks(int index) {
+ if (ranksBuilder_ == null) {
+ return ranks_.get(index);
+ } else {
+ return ranksBuilder_.getMessage(index);
+ }
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public Builder setRanks(
+ int index, com.ljsd.jieling.protocols.CommonProto.UserRank value) {
+ if (ranksBuilder_ == null) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ ensureRanksIsMutable();
+ ranks_.set(index, value);
+ onChanged();
+ } else {
+ ranksBuilder_.setMessage(index, value);
+ }
+ return this;
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public Builder setRanks(
+ int index, com.ljsd.jieling.protocols.CommonProto.UserRank.Builder builderForValue) {
+ if (ranksBuilder_ == null) {
+ ensureRanksIsMutable();
+ ranks_.set(index, builderForValue.build());
+ onChanged();
+ } else {
+ ranksBuilder_.setMessage(index, builderForValue.build());
+ }
+ return this;
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public Builder addRanks(com.ljsd.jieling.protocols.CommonProto.UserRank value) {
+ if (ranksBuilder_ == null) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ ensureRanksIsMutable();
+ ranks_.add(value);
+ onChanged();
+ } else {
+ ranksBuilder_.addMessage(value);
+ }
+ return this;
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public Builder addRanks(
+ int index, com.ljsd.jieling.protocols.CommonProto.UserRank value) {
+ if (ranksBuilder_ == null) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ ensureRanksIsMutable();
+ ranks_.add(index, value);
+ onChanged();
+ } else {
+ ranksBuilder_.addMessage(index, value);
+ }
+ return this;
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public Builder addRanks(
+ com.ljsd.jieling.protocols.CommonProto.UserRank.Builder builderForValue) {
+ if (ranksBuilder_ == null) {
+ ensureRanksIsMutable();
+ ranks_.add(builderForValue.build());
+ onChanged();
+ } else {
+ ranksBuilder_.addMessage(builderForValue.build());
+ }
+ return this;
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public Builder addRanks(
+ int index, com.ljsd.jieling.protocols.CommonProto.UserRank.Builder builderForValue) {
+ if (ranksBuilder_ == null) {
+ ensureRanksIsMutable();
+ ranks_.add(index, builderForValue.build());
+ onChanged();
+ } else {
+ ranksBuilder_.addMessage(index, builderForValue.build());
+ }
+ return this;
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public Builder addAllRanks(
+ java.lang.Iterable extends com.ljsd.jieling.protocols.CommonProto.UserRank> values) {
+ if (ranksBuilder_ == null) {
+ ensureRanksIsMutable();
+ super.addAll(values, ranks_);
+ onChanged();
+ } else {
+ ranksBuilder_.addAllMessages(values);
+ }
+ return this;
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public Builder clearRanks() {
+ if (ranksBuilder_ == null) {
+ ranks_ = java.util.Collections.emptyList();
+ bitField0_ = (bitField0_ & ~0x00000001);
+ onChanged();
+ } else {
+ ranksBuilder_.clear();
+ }
+ return this;
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public Builder removeRanks(int index) {
+ if (ranksBuilder_ == null) {
+ ensureRanksIsMutable();
+ ranks_.remove(index);
+ onChanged();
+ } else {
+ ranksBuilder_.remove(index);
+ }
+ return this;
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.UserRank.Builder getRanksBuilder(
+ int index) {
+ return getRanksFieldBuilder().getBuilder(index);
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.UserRankOrBuilder getRanksOrBuilder(
+ int index) {
+ if (ranksBuilder_ == null) {
+ return ranks_.get(index); } else {
+ return ranksBuilder_.getMessageOrBuilder(index);
+ }
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public java.util.List extends com.ljsd.jieling.protocols.CommonProto.UserRankOrBuilder>
+ getRanksOrBuilderList() {
+ if (ranksBuilder_ != null) {
+ return ranksBuilder_.getMessageOrBuilderList();
+ } else {
+ return java.util.Collections.unmodifiableList(ranks_);
+ }
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.UserRank.Builder addRanksBuilder() {
+ return getRanksFieldBuilder().addBuilder(
+ com.ljsd.jieling.protocols.CommonProto.UserRank.getDefaultInstance());
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.UserRank.Builder addRanksBuilder(
+ int index) {
+ return getRanksFieldBuilder().addBuilder(
+ index, com.ljsd.jieling.protocols.CommonProto.UserRank.getDefaultInstance());
+ }
+ /**
+ * repeated .com.ljsd.jieling.protocols.UserRank ranks = 1;
+ */
+ public java.util.Listoptional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ public boolean hasMyRankInfo() {
+ return ((bitField0_ & 0x00000002) == 0x00000002);
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.RankInfo getMyRankInfo() {
+ if (myRankInfoBuilder_ == null) {
+ return myRankInfo_;
+ } else {
+ return myRankInfoBuilder_.getMessage();
+ }
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ public Builder setMyRankInfo(com.ljsd.jieling.protocols.CommonProto.RankInfo value) {
+ if (myRankInfoBuilder_ == null) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ myRankInfo_ = value;
+ onChanged();
+ } else {
+ myRankInfoBuilder_.setMessage(value);
+ }
+ bitField0_ |= 0x00000002;
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ public Builder setMyRankInfo(
+ com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder builderForValue) {
+ if (myRankInfoBuilder_ == null) {
+ myRankInfo_ = builderForValue.build();
+ onChanged();
+ } else {
+ myRankInfoBuilder_.setMessage(builderForValue.build());
+ }
+ bitField0_ |= 0x00000002;
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ public Builder mergeMyRankInfo(com.ljsd.jieling.protocols.CommonProto.RankInfo value) {
+ if (myRankInfoBuilder_ == null) {
+ if (((bitField0_ & 0x00000002) == 0x00000002) &&
+ myRankInfo_ != com.ljsd.jieling.protocols.CommonProto.RankInfo.getDefaultInstance()) {
+ myRankInfo_ =
+ com.ljsd.jieling.protocols.CommonProto.RankInfo.newBuilder(myRankInfo_).mergeFrom(value).buildPartial();
+ } else {
+ myRankInfo_ = value;
+ }
+ onChanged();
+ } else {
+ myRankInfoBuilder_.mergeFrom(value);
+ }
+ bitField0_ |= 0x00000002;
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ public Builder clearMyRankInfo() {
+ if (myRankInfoBuilder_ == null) {
+ myRankInfo_ = com.ljsd.jieling.protocols.CommonProto.RankInfo.getDefaultInstance();
+ onChanged();
+ } else {
+ myRankInfoBuilder_.clear();
+ }
+ bitField0_ = (bitField0_ & ~0x00000002);
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder getMyRankInfoBuilder() {
+ bitField0_ |= 0x00000002;
+ onChanged();
+ return getMyRankInfoFieldBuilder().getBuilder();
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getMyRankInfoOrBuilder() {
+ if (myRankInfoBuilder_ != null) {
+ return myRankInfoBuilder_.getMessageOrBuilder();
+ } else {
+ return myRankInfo_;
+ }
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.RankInfo myRankInfo = 2;
+ */
+ private com.google.protobuf.SingleFieldBuilder<
+ com.ljsd.jieling.protocols.CommonProto.RankInfo, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder, com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder>
+ getMyRankInfoFieldBuilder() {
+ if (myRankInfoBuilder_ == null) {
+ myRankInfoBuilder_ = new com.google.protobuf.SingleFieldBuilder<
+ com.ljsd.jieling.protocols.CommonProto.RankInfo, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder, com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder>(
+ myRankInfo_,
+ getParentForChildren(),
+ isClean());
+ myRankInfo_ = null;
+ }
+ return myRankInfoBuilder_;
+ }
+
+ // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.RankResponse)
+ }
+
+ static {
+ defaultInstance = new RankResponse(true);
+ defaultInstance.initFields();
+ }
+
+ // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.RankResponse)
+ }
+
private static com.google.protobuf.Descriptors.Descriptor
internal_static_com_ljsd_jieling_protocols_ErrorMsgResponse_descriptor;
private static
@@ -86887,10 +88549,10 @@ public final class PlayerInfoProto {
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_com_ljsd_jieling_protocols_UpdateBagIndication_fieldAccessorTable;
private static com.google.protobuf.Descriptors.Descriptor
- internal_static_com_ljsd_jieling_protocols_ModifyHeadRequest_descriptor;
+ internal_static_com_ljsd_jieling_protocols_ModifyDecorationRequest_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
- internal_static_com_ljsd_jieling_protocols_ModifyHeadRequest_fieldAccessorTable;
+ internal_static_com_ljsd_jieling_protocols_ModifyDecorationRequest_fieldAccessorTable;
private static com.google.protobuf.Descriptors.Descriptor
internal_static_com_ljsd_jieling_protocols_blessResponse_descriptor;
private static
@@ -87136,6 +88798,16 @@ public final class PlayerInfoProto {
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_com_ljsd_jieling_protocols_ViewHeroInfoResponse_fieldAccessorTable;
+ private static com.google.protobuf.Descriptors.Descriptor
+ internal_static_com_ljsd_jieling_protocols_RankRequest_descriptor;
+ private static
+ com.google.protobuf.GeneratedMessage.FieldAccessorTable
+ internal_static_com_ljsd_jieling_protocols_RankRequest_fieldAccessorTable;
+ private static com.google.protobuf.Descriptors.Descriptor
+ internal_static_com_ljsd_jieling_protocols_RankResponse_descriptor;
+ private static
+ com.google.protobuf.GeneratedMessage.FieldAccessorTable
+ internal_static_com_ljsd_jieling_protocols_RankResponse_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
@@ -87156,7 +88828,7 @@ public final class PlayerInfoProto {
"el_s\030\013 \001(\t\022\022\n\nplatform_s\030\014 \001(\t\"5\n\rLoginR" +
"esponse\022\022\n\nresultCode\030\001 \001(\005\022\020\n\010newToken\030",
"\002 \001(\t\"0\n\024GetPlayerInfoRequest\022\013\n\003num\030\001 \001" +
- "(\005\022\013\n\003str\030\002 \001(\t\"\333\007\n\025GetPlayerInfoRespons" +
+ "(\005\022\013\n\003str\030\002 \001(\t\"\363\007\n\025GetPlayerInfoRespons" +
"e\0222\n\006player\030\001 \001(\0132\".com.ljsd.jieling.pro" +
"tocols.Player\022L\n\023newPlayerGuidePoint\030\002 \003" +
"(\0132/.com.ljsd.jieling.protocols.NewPlaye" +
@@ -87181,245 +88853,250 @@ public final class PlayerInfoProto {
"dlessInfo\022D\n\017playerBindPhone\030\026 \001(\0132+.com" +
".ljsd.jieling.protocols.PlayerBindPhone\022" +
"\025\n\rQuestionState\030\027 \001(\005\022\025\n\rSoulEquipPool\030" +
- "\030 \001(\005\"#\n\022GetItemInfoRequest\022\r\n\005index\030\001 \001" +
- "(\005\"_\n\023GetItemInfoResponse\0222\n\010itemlist\030\001 " +
- "\003(\0132 .com.ljsd.jieling.protocols.Item\022\024\n" +
- "\014isSendFinish\030\002 \001(\010\"L\n\026GetAllMailInfoRes",
- "ponse\0222\n\010mialList\030\001 \003(\0132 .com.ljsd.jieli" +
- "ng.protocols.Mail\"\212\001\n\026UseAndPriceItemReq" +
- "uest\022\014\n\004type\030\001 \001(\005\022\016\n\006itemId\030\002 \001(\005\022/\n\005it" +
- "ems\030\003 \003(\0132 .com.ljsd.jieling.protocols.I" +
- "tem\022\020\n\010equipIds\030\004 \003(\t\022\017\n\007heroIds\030\005 \003(\t\"I" +
- "\n\027UseAndPriceItemResponse\022.\n\004drop\030\001 \001(\0132" +
- " .com.ljsd.jieling.protocols.Drop\"!\n\017Mai" +
- "lReadRequest\022\016\n\006mailId\030\001 \001(\t\"\"\n\017TakeMail" +
- "Request\022\017\n\007mailIds\030\001 \003(\t\"B\n\020TakeMailResp" +
- "onse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.pr",
- "otocols.Drop\"=\n\031WorkShopFoundationReques" +
- "t\022\022\n\nmaterialId\030\001 \001(\005\022\014\n\004nums\030\002 \001(\005\"N\n\032W" +
- "orkShopEquipCreateRequest\022\020\n\010equipTid\030\001 " +
- "\001(\005\022\020\n\010runneIds\030\002 \003(\005\022\014\n\004nums\030\003 \001(\005\"[\n\033W" +
- "orkShopEquipCreateResponse\022\014\n\004type\030\001 \001(\005" +
- "\022.\n\004drop\030\002 \001(\0132 .com.ljsd.jieling.protoc" +
- "ols.Drop\"B\n\026WorkShopRebuildRequest\022\017\n\007eq" +
- "uipId\030\001 \001(\t\022\027\n\017consumeEquipIds\030\002 \003(\t\"L\n\030" +
- "WorkShopRebuildRespoonse\0220\n\005equip\030\001 \001(\0132" +
- "!.com.ljsd.jieling.protocols.Equip\"=\n\032Wo",
- "rkTechnologyLevelRequest\022\n\n\002id\030\001 \001(\005\022\023\n\013" +
- "targetLevel\030\002 \001(\005\">\n\033WorkTechnologyLevel" +
- "Response\022\n\n\002id\030\001 \001(\005\022\023\n\013targetLevel\030\002 \001(" +
- "\005\"2\n\032WorkTechnologyResetRequest\022\024\n\014profe" +
- "ssionId\030\001 \001(\005\"M\n\033WorkTechnologyResetResp" +
- "onse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.pr" +
- "otocols.Drop\";\n\027ActiviteWorkShopReqeust\022" +
- "\014\n\004type\030\001 \001(\005\022\022\n\nactiviteId\030\002 \001(\005\"\252\002\n\027Ge" +
- "tWorkShopInfoResponse\022J\n\022workShopUnLockI" +
- "nfo\030\001 \003(\0132..com.ljsd.jieling.protocols.W",
- "orkShopUnLockInfo\022F\n\020workShopBaseInfo\030\002 " +
- "\003(\0132,.com.ljsd.jieling.protocols.WorkSho" +
- "pBaseInfo\0227\n\014unDetermined\030\003 \001(\0132!.com.lj" +
- "sd.jieling.protocols.Equip\022B\n\016technology" +
- "Info\030\004 \003(\0132*.com.ljsd.jieling.protocols." +
- "TechnologyInfo\"3\n\017CookFoodRequest\022\022\n\nmat" +
- "erialId\030\001 \003(\005\022\014\n\004nums\030\002 \001(\005\"\212\001\n\020CookFood" +
- "Response\022F\n\020workShopBaseInfo\030\001 \001(\0132,.com" +
- ".ljsd.jieling.protocols.WorkShopBaseInfo" +
- "\022.\n\004drop\030\002 \001(\0132 .com.ljsd.jieling.protoc",
- "ols.Drop\"\034\n\014RedPointInfo\022\014\n\004type\030\001 \001(\005\"i" +
- "\n\031SaveNewPlayerPointRequest\022L\n\023newPlayer" +
- "GuidePoint\030\001 \001(\0132/.com.ljsd.jieling.prot" +
- "ocols.NewPlayerGuidePoint\"B\n\031TakeActivit" +
- "yRewardRequest\022\021\n\tmissionId\030\001 \001(\005\022\022\n\nact" +
- "ivityId\030\002 \001(\005\"L\n\032TakeActivityRewardRespo" +
+ "\030 \001(\005\022\026\n\016playedMapTypes\030\031 \003(\005\"#\n\022GetItem" +
+ "InfoRequest\022\r\n\005index\030\001 \001(\005\"_\n\023GetItemInf" +
+ "oResponse\0222\n\010itemlist\030\001 \003(\0132 .com.ljsd.j" +
+ "ieling.protocols.Item\022\024\n\014isSendFinish\030\002 ",
+ "\001(\010\"L\n\026GetAllMailInfoResponse\0222\n\010mialLis" +
+ "t\030\001 \003(\0132 .com.ljsd.jieling.protocols.Mai" +
+ "l\"\212\001\n\026UseAndPriceItemRequest\022\014\n\004type\030\001 \001" +
+ "(\005\022\016\n\006itemId\030\002 \001(\005\022/\n\005items\030\003 \003(\0132 .com." +
+ "ljsd.jieling.protocols.Item\022\020\n\010equipIds\030" +
+ "\004 \003(\t\022\017\n\007heroIds\030\005 \003(\t\"I\n\027UseAndPriceIte" +
+ "mResponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieli" +
+ "ng.protocols.Drop\"!\n\017MailReadRequest\022\016\n\006" +
+ "mailId\030\001 \001(\t\"\"\n\017TakeMailRequest\022\017\n\007mailI" +
+ "ds\030\001 \003(\t\"B\n\020TakeMailResponse\022.\n\004drop\030\001 \001",
+ "(\0132 .com.ljsd.jieling.protocols.Drop\"=\n\031" +
+ "WorkShopFoundationRequest\022\022\n\nmaterialId\030" +
+ "\001 \001(\005\022\014\n\004nums\030\002 \001(\005\"N\n\032WorkShopEquipCrea" +
+ "teRequest\022\020\n\010equipTid\030\001 \001(\005\022\020\n\010runneIds\030" +
+ "\002 \003(\005\022\014\n\004nums\030\003 \001(\005\"[\n\033WorkShopEquipCrea" +
+ "teResponse\022\014\n\004type\030\001 \001(\005\022.\n\004drop\030\002 \001(\0132 " +
+ ".com.ljsd.jieling.protocols.Drop\"B\n\026Work" +
+ "ShopRebuildRequest\022\017\n\007equipId\030\001 \001(\t\022\027\n\017c" +
+ "onsumeEquipIds\030\002 \003(\t\"L\n\030WorkShopRebuildR" +
+ "espoonse\0220\n\005equip\030\001 \001(\0132!.com.ljsd.jieli",
+ "ng.protocols.Equip\"=\n\032WorkTechnologyLeve" +
+ "lRequest\022\n\n\002id\030\001 \001(\005\022\023\n\013targetLevel\030\002 \001(" +
+ "\005\">\n\033WorkTechnologyLevelResponse\022\n\n\002id\030\001" +
+ " \001(\005\022\023\n\013targetLevel\030\002 \001(\005\"2\n\032WorkTechnol" +
+ "ogyResetRequest\022\024\n\014professionId\030\001 \001(\005\"M\n" +
+ "\033WorkTechnologyResetResponse\022.\n\004drop\030\001 \001" +
+ "(\0132 .com.ljsd.jieling.protocols.Drop\";\n\027" +
+ "ActiviteWorkShopReqeust\022\014\n\004type\030\001 \001(\005\022\022\n" +
+ "\nactiviteId\030\002 \001(\005\"\252\002\n\027GetWorkShopInfoRes" +
+ "ponse\022J\n\022workShopUnLockInfo\030\001 \003(\0132..com.",
+ "ljsd.jieling.protocols.WorkShopUnLockInf" +
+ "o\022F\n\020workShopBaseInfo\030\002 \003(\0132,.com.ljsd.j" +
+ "ieling.protocols.WorkShopBaseInfo\0227\n\014unD" +
+ "etermined\030\003 \001(\0132!.com.ljsd.jieling.proto" +
+ "cols.Equip\022B\n\016technologyInfo\030\004 \003(\0132*.com" +
+ ".ljsd.jieling.protocols.TechnologyInfo\"3" +
+ "\n\017CookFoodRequest\022\022\n\nmaterialId\030\001 \003(\005\022\014\n" +
+ "\004nums\030\002 \001(\005\"\212\001\n\020CookFoodResponse\022F\n\020work" +
+ "ShopBaseInfo\030\001 \001(\0132,.com.ljsd.jieling.pr" +
+ "otocols.WorkShopBaseInfo\022.\n\004drop\030\002 \001(\0132 ",
+ ".com.ljsd.jieling.protocols.Drop\"\034\n\014RedP" +
+ "ointInfo\022\014\n\004type\030\001 \001(\005\"i\n\031SaveNewPlayerP" +
+ "ointRequest\022L\n\023newPlayerGuidePoint\030\001 \001(\013" +
+ "2/.com.ljsd.jieling.protocols.NewPlayerG" +
+ "uidePoint\"B\n\031TakeActivityRewardRequest\022\021" +
+ "\n\tmissionId\030\001 \001(\005\022\022\n\nactivityId\030\002 \001(\005\"L\n" +
+ "\032TakeActivityRewardResponse\022.\n\004drop\030\001 \001(" +
+ "\0132 .com.ljsd.jieling.protocols.Drop\"X\n\026G" +
+ "etAllActivityResponse\022>\n\014activityInfo\030\001 " +
+ "\003(\0132(.com.ljsd.jieling.protocols.Activit",
+ "yInfo\"(\n\022RandomNameResponse\022\022\n\nrandomNam" +
+ "e\030\001 \001(\t\">\n\rReNameRequest\022\014\n\004type\030\001 \001(\005\022\014" +
+ "\n\004name\030\002 \001(\t\022\021\n\tteamPosId\030\003 \001(\005\".\n\035WorkS" +
+ "hopRebuildConfirmRequest\022\r\n\005state\030\001 \001(\005\"" +
+ "9\n\030GetSecretBoxInfoResponse\022\016\n\006season\030\001 " +
+ "\001(\005\022\r\n\005count\030\002 \001(\005\"(\n\026SecretBoxRandomReq" +
+ "uest\022\016\n\006typeId\030\001 \001(\005\"\201\001\n\027SecretBoxRandom" +
+ "Response\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jielin" +
+ "g.protocols.Drop\0226\n\014extrarReward\030\002 \001(\0132 " +
+ ".com.ljsd.jieling.protocols.Drop\"Q\n\025GetS",
+ "toreInfosResponse\0228\n\tstoreInfo\030\001 \003(\0132%.c" +
+ "om.ljsd.jieling.protocols.StoreInfo\"G\n\023B" +
+ "uyStoreItemRequest\022\017\n\007storeId\030\001 \001(\005\022\016\n\006i" +
+ "temId\030\002 \001(\005\022\017\n\007itemNum\030\003 \001(\005\"F\n\024BuyStore" +
+ "ItemResponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.ji" +
+ "eling.protocols.Drop\"9\n\030StoreGoodsRefres" +
+ "hRequest\022\014\n\004type\030\001 \001(\005\022\017\n\007storeId\030\002 \001(\005\"" +
+ "U\n\031StoreGoodsRefreshResponse\0228\n\tstoreInf" +
+ "o\030\001 \001(\0132%.com.ljsd.jieling.protocols.Sto" +
+ "reInfo\"_\n\031GetFunctionOfTimeResponse\022B\n\016f",
+ "unctionOfTime\030\001 \003(\0132*.com.ljsd.jieling.p" +
+ "rotocols.FunctionOfTime\"\230\001\n\022VipLevelUpRe" +
+ "sponse\022<\n\013vipBaseInfo\030\001 \001(\0132\'.com.ljsd.j" +
+ "ieling.protocols.VipBaseInfo\022D\n\017userMiss" +
+ "ionInfo\030\002 \003(\0132+.com.ljsd.jieling.protoco" +
+ "ls.UserMissionInfo\"c\n\033MissionUpdateListI" +
+ "ndication\022D\n\017userMissionInfo\030\002 \003(\0132+.com" +
+ ".ljsd.jieling.protocols.UserMissionInfo\"" +
+ ";\n\030TakeMissionRewardRequest\022\014\n\004type\030\001 \001(" +
+ "\005\022\021\n\tmissionId\030\002 \001(\005\"b\n\031TakeMissionRewar",
+ "dResponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieli" +
+ "ng.protocols.Drop\022\025\n\rtreasureScore\030\002 \001(\005" +
+ "\"(\n\026UserForceChangeRequest\022\016\n\006teamId\030\001 \001" +
+ "(\005\"!\n\021VipTakeBoxRequest\022\014\n\004type\030\001 \001(\005\"D\n" +
+ "\022VipTakeBoxResponse\022.\n\004drop\030\001 \001(\0132 .com." +
+ "ljsd.jieling.protocols.Drop\"$\n\023RechargeI" +
+ "nfoRequest\022\r\n\005money\030\001 \001(\005\"F\n\024RechargeInf" +
+ "oResponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieli" +
+ "ng.protocols.Drop\"$\n\024GetFriendInfoReques" +
+ "t\022\014\n\004type\030\001 \001(\005\"L\n\025GetFriendInfoResponse",
+ "\0223\n\007Friends\030\001 \003(\0132\".com.ljsd.jieling.pro" +
+ "tocols.Friend\"*\n\027TestBuyGiftGoodsRequest" +
+ "\022\017\n\007goodsId\030\001 \001(\005\"H\n\026BuyGoodsDropIndicat" +
+ "ion\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.pro" +
+ "tocols.Drop\"Z\n\026AllGiftGoodsIndication\022@\n" +
+ "\rGiftGoodsInfo\030\001 \003(\0132).com.ljsd.jieling." +
+ "protocols.GiftGoodsInfo\")\n\023InviteFriendR" +
+ "equest\022\022\n\ninviteUids\030\001 \003(\005\">\n\034FriendInvi" +
+ "teOperationRequest\022\014\n\004type\030\001 \001(\005\022\020\n\010frie" +
+ "ndId\030\002 \001(\005\"]\n\030sendFriendInfoIndication\022\014",
+ "\n\004type\030\001 \001(\005\0223\n\007Friends\030\002 \001(\0132\".com.ljsd" +
+ ".jieling.protocols.Friend\":\n\030FriendGiveP" +
+ "resentRequest\022\014\n\004type\030\001 \001(\005\022\020\n\010friendId\030" +
+ "\002 \001(\005\"$\n\020DelFriendRequest\022\020\n\010friendId\030\001 " +
+ "\001(\005\"8\n\026FriendTakeHeartRequest\022\014\n\004type\030\001 " +
+ "\001(\005\022\020\n\010friendId\030\002 \001(\005\"[\n\027FriendTakeHeart" +
+ "Response\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jielin" +
+ "g.protocols.Drop\022\020\n\010friendId\030\002 \003(\005\"#\n\023Fr" +
+ "iendSearchRequest\022\014\n\004name\030\001 \001(\t\"Y\n\024Frien" +
+ "dSearchResponse\022\014\n\004type\030\001 \001(\005\0223\n\007Friends",
+ "\030\002 \001(\0132\".com.ljsd.jieling.protocols.Frie" +
+ "nd\";\n\031SendFriendStateIndication\022\014\n\004type\030" +
+ "\001 \001(\005\022\020\n\010friendId\030\002 \001(\005\"/\n\032RefreshFriend" +
+ "StateResponse\022\021\n\tfriendIds\030\001 \003(\005\"7\n\025Frie" +
+ "ndBlackOptRequest\022\014\n\004type\030\001 \001(\005\022\020\n\010black" +
+ "Uid\030\002 \001(\005\"\326\004\n\032FivePlayerUpdateIndication" +
+ "\022\027\n\017hadTakeDailyBox\030\001 \001(\005\0228\n\tprivilege\030\002" +
+ " \003(\0132%.com.ljsd.jieling.protocols.Privil" +
+ "ege\022>\n\014activityInfo\030\003 \003(\0132(.com.ljsd.jie" +
+ "ling.protocols.ActivityInfo\022D\n\017userMissi",
+ "onInfo\030\004 \003(\0132+.com.ljsd.jieling.protocol" +
+ "s.UserMissionInfo\022J\n\022fiveResetTowerInfo\030" +
+ "\005 \001(\0132..com.ljsd.jieling.protocols.fiveR" +
+ "esetTowerInfo\022:\n\nSignInInfo\030\006 \001(\0132&.com." +
+ "ljsd.jieling.protocols.SignInInfo\022D\n\017pla" +
+ "yerBindPhone\030\007 \001(\0132+.com.ljsd.jieling.pr" +
+ "otocols.PlayerBindPhone\022D\n\010posInfos\030\010 \003(" +
+ "\01322.com.ljsd.jieling.protocols.LuckWheel" +
+ "RewardPosInfo\022K\n\017posInfosAdvance\030\t \003(\01322" +
+ ".com.ljsd.jieling.protocols.LuckWheelRew",
+ "ardPosInfo\"Z\n\022GetMissionResponse\022D\n\017user" +
+ "MissionInfo\030\001 \003(\0132+.com.ljsd.jieling.pro" +
+ "tocols.UserMissionInfo\"\'\n\025RefreshItemNum" +
+ "Request\022\016\n\006itemId\030\001 \003(\005\"P\n\026RefreshItemNu" +
+ "mResponse\0226\n\010itemInfo\030\001 \003(\0132$.com.ljsd.j" +
+ "ieling.protocols.ItemInfo\"S\n\023UpdateBagIn" +
+ "dication\022\014\n\004type\030\001 \001(\005\022.\n\004item\030\002 \003(\0132 .c" +
+ "om.ljsd.jieling.protocols.Item\"=\n\027Modify" +
+ "DecorationRequest\022\024\n\014decorationId\030\001 \001(\005\022" +
+ "\014\n\004type\030\002 \001(\005\"\336\002\n\rblessResponse\022:\n\tfixRe",
+ "ward\030\001 \003(\0132\'.com.ljsd.jieling.protocols." +
+ "blessReward\022=\n\014legendReward\030\002 \003(\0132\'.com." +
+ "ljsd.jieling.protocols.blessReward\022>\n\rsu" +
+ "premeReward\030\003 \003(\0132\'.com.ljsd.jieling.pro" +
+ "tocols.blessReward\022<\n\013countReward\030\004 \003(\0132" +
+ "\'.com.ljsd.jieling.protocols.blessReward" +
+ "\022;\n\nrewardView\030\005 \003(\0132\'.com.ljsd.jieling." +
+ "protocols.blessReward\022\027\n\017lastRefreshTime" +
+ "\030\006 \001(\005\"%\n\020blessSaveRequest\022\021\n\trewardIds\030" +
+ "\001 \003(\005\"(\n\022blessChooseRequest\022\022\n\nlocationI",
+ "d\030\001 \001(\005\"_\n\023blessChooseResponse\0220\n\006reward" +
+ "\030\001 \001(\0132 .com.ljsd.jieling.protocols.Drop" +
+ "\022\026\n\016chooseRewardId\030\002 \001(\005\"I\n\014blessRefresh" +
+ "\0229\n\006reward\030\001 \001(\0132).com.ljsd.jieling.prot" +
+ "ocols.blessResponse\"Q\n\025storeUpdateIndica" +
+ "tion\0228\n\tstoreInfo\030\001 \003(\0132%.com.ljsd.jieli" +
+ "ng.protocols.StoreInfo\"%\n\tLockEquip\022\n\n\002i" +
+ "d\030\001 \003(\t\022\014\n\004type\030\002 \001(\005\"r\n\027ActivityUpateIn" +
+ "dication\022>\n\014activityInfo\030\001 \003(\0132(.com.ljs" +
+ "d.jieling.protocols.ActivityInfo\022\027\n\017clos",
+ "eActivityId\030\002 \003(\005\";\n\027GetForceRankInfoReq" +
+ "uest\022\014\n\004page\030\001 \001(\005\022\022\n\nactiviteId\030\002 \001(\005\"{" +
+ "\n\030GetForceRankInfoResponse\022>\n\014useForceIn" +
+ "fo\030\001 \003(\0132(.com.ljsd.jieling.protocols.Us" +
+ "eForceInfo\022\017\n\007myForce\030\002 \001(\005\022\016\n\006myRank\030\003 " +
+ "\001(\005\"a\n\037ActivityUpateProgressIndication\022>" +
+ "\n\014activityInfo\030\001 \002(\0132(.com.ljsd.jieling." +
+ "protocols.ActivityInfo\"*\n\024GetExpertInfoR" +
+ "equest\022\022\n\nactiviteId\030\001 \001(\005\"p\n\025GetExpertI" +
+ "nfoResponse\0226\n\006expert\030\001 \003(\0132&.com.ljsd.j",
+ "ieling.protocols.ExpertInfo\022\017\n\007myScore\030\002" +
+ " \001(\005\022\016\n\006myRank\030\003 \001(\005\"!\n\rSignInRequest\022\020\n" +
+ "\010dayIndex\030\001 \001(\005\"@\n\016SignInResponse\022.\n\004dro" +
+ "p\030\001 \001(\0132 .com.ljsd.jieling.protocols.Dro" +
+ "p\"?\n\033GetPlayerOneTeamInfoRequest\022\020\n\010play" +
+ "erId\030\001 \001(\005\022\016\n\006teamId\030\002 \001(\005\"Y\n\034GetPlayerO" +
+ "neTeamInfoResponse\0229\n\010teamInfo\030\001 \001(\0132\'.c" +
+ "om.ljsd.jieling.protocols.TeamOneInfo\"O\n" +
+ "\035TakeSenvenScoreRewardResponse\022.\n\004drop\030\001" +
+ " \001(\0132 .com.ljsd.jieling.protocols.Drop\"\"",
+ "\n\022UpdateStateRequest\022\014\n\004type\030\001 \001(\005\"5\n\027Up" +
+ "dateUserExpIndicaiton\022\r\n\005level\030\001 \001(\005\022\013\n\003" +
+ "exp\030\002 \001(\005\"6\n\037UpdateSecretBoxSeasonIndica" +
+ "tion\022\023\n\013newSeasonId\030\001 \001(\005\"\033\n\031GetMonsterR" +
+ "ankInfoRequest\"{\n\032GetMonsterRankInfoResp" +
+ "onse\022<\n\007monster\030\001 \003(\0132+.com.ljsd.jieling" +
+ ".protocols.MonsterRankInfo\022\017\n\007myScore\030\002 " +
+ "\001(\005\022\016\n\006myRank\030\003 \001(\005\"-\n\031PlayerBackCInfoIn" +
+ "dication\022\020\n\010nickName\030\001 \001(\t\"*\n\026UpdatePhon" +
+ "einfoRequest\022\020\n\010phoneNum\030\001 \001(\t\"(\n\027Update",
+ "PhoneinfoResponse\022\r\n\005state\030\001 \001(\005\"\027\n\025GetP" +
+ "honeRewardRequest\"H\n\026GetPhoneRewardRespo" +
"nse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.pro" +
- "tocols.Drop\"X\n\026GetAllActivityResponse\022>\n" +
- "\014activityInfo\030\001 \003(\0132(.com.ljsd.jieling.p" +
- "rotocols.ActivityInfo\"(\n\022RandomNameRespo",
- "nse\022\022\n\nrandomName\030\001 \001(\t\">\n\rReNameRequest" +
- "\022\014\n\004type\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\021\n\tteamPosI" +
- "d\030\003 \001(\005\".\n\035WorkShopRebuildConfirmRequest" +
- "\022\r\n\005state\030\001 \001(\005\"9\n\030GetSecretBoxInfoRespo" +
- "nse\022\016\n\006season\030\001 \001(\005\022\r\n\005count\030\002 \001(\005\"(\n\026Se" +
- "cretBoxRandomRequest\022\016\n\006typeId\030\001 \001(\005\"\201\001\n" +
- "\027SecretBoxRandomResponse\022.\n\004drop\030\001 \001(\0132 " +
- ".com.ljsd.jieling.protocols.Drop\0226\n\014extr" +
- "arReward\030\002 \001(\0132 .com.ljsd.jieling.protoc" +
- "ols.Drop\"Q\n\025GetStoreInfosResponse\0228\n\tsto",
- "reInfo\030\001 \003(\0132%.com.ljsd.jieling.protocol" +
- "s.StoreInfo\"G\n\023BuyStoreItemRequest\022\017\n\007st" +
- "oreId\030\001 \001(\005\022\016\n\006itemId\030\002 \001(\005\022\017\n\007itemNum\030\003" +
- " \001(\005\"F\n\024BuyStoreItemResponse\022.\n\004drop\030\001 \001" +
- "(\0132 .com.ljsd.jieling.protocols.Drop\"9\n\030" +
- "StoreGoodsRefreshRequest\022\014\n\004type\030\001 \001(\005\022\017" +
- "\n\007storeId\030\002 \001(\005\"U\n\031StoreGoodsRefreshResp" +
- "onse\0228\n\tstoreInfo\030\001 \001(\0132%.com.ljsd.jieli" +
- "ng.protocols.StoreInfo\"_\n\031GetFunctionOfT" +
- "imeResponse\022B\n\016functionOfTime\030\001 \003(\0132*.co",
- "m.ljsd.jieling.protocols.FunctionOfTime\"" +
- "\230\001\n\022VipLevelUpResponse\022<\n\013vipBaseInfo\030\001 " +
- "\001(\0132\'.com.ljsd.jieling.protocols.VipBase" +
- "Info\022D\n\017userMissionInfo\030\002 \003(\0132+.com.ljsd" +
- ".jieling.protocols.UserMissionInfo\"c\n\033Mi" +
- "ssionUpdateListIndication\022D\n\017userMission" +
- "Info\030\002 \003(\0132+.com.ljsd.jieling.protocols." +
- "UserMissionInfo\";\n\030TakeMissionRewardRequ" +
- "est\022\014\n\004type\030\001 \001(\005\022\021\n\tmissionId\030\002 \001(\005\"b\n\031" +
- "TakeMissionRewardResponse\022.\n\004drop\030\001 \001(\0132",
- " .com.ljsd.jieling.protocols.Drop\022\025\n\rtre" +
- "asureScore\030\002 \001(\005\"(\n\026UserForceChangeReque" +
- "st\022\016\n\006teamId\030\001 \001(\005\"!\n\021VipTakeBoxRequest\022" +
- "\014\n\004type\030\001 \001(\005\"D\n\022VipTakeBoxResponse\022.\n\004d" +
- "rop\030\001 \001(\0132 .com.ljsd.jieling.protocols.D" +
- "rop\"$\n\023RechargeInfoRequest\022\r\n\005money\030\001 \001(" +
- "\005\"F\n\024RechargeInfoResponse\022.\n\004drop\030\001 \001(\0132" +
- " .com.ljsd.jieling.protocols.Drop\"$\n\024Get" +
- "FriendInfoRequest\022\014\n\004type\030\001 \001(\005\"L\n\025GetFr" +
- "iendInfoResponse\0223\n\007Friends\030\001 \003(\0132\".com.",
- "ljsd.jieling.protocols.Friend\"*\n\027TestBuy" +
- "GiftGoodsRequest\022\017\n\007goodsId\030\001 \001(\005\"H\n\026Buy" +
- "GoodsDropIndication\022.\n\004drop\030\001 \001(\0132 .com." +
- "ljsd.jieling.protocols.Drop\"Z\n\026AllGiftGo" +
- "odsIndication\022@\n\rGiftGoodsInfo\030\001 \003(\0132).c" +
- "om.ljsd.jieling.protocols.GiftGoodsInfo\"" +
- ")\n\023InviteFriendRequest\022\022\n\ninviteUids\030\001 \003" +
- "(\005\">\n\034FriendInviteOperationRequest\022\014\n\004ty" +
- "pe\030\001 \001(\005\022\020\n\010friendId\030\002 \001(\005\"]\n\030sendFriend" +
- "InfoIndication\022\014\n\004type\030\001 \001(\005\0223\n\007Friends\030",
- "\002 \001(\0132\".com.ljsd.jieling.protocols.Frien" +
- "d\":\n\030FriendGivePresentRequest\022\014\n\004type\030\001 " +
- "\001(\005\022\020\n\010friendId\030\002 \001(\005\"$\n\020DelFriendReques" +
- "t\022\020\n\010friendId\030\001 \001(\005\"8\n\026FriendTakeHeartRe" +
- "quest\022\014\n\004type\030\001 \001(\005\022\020\n\010friendId\030\002 \001(\005\"[\n" +
- "\027FriendTakeHeartResponse\022.\n\004drop\030\001 \001(\0132 " +
- ".com.ljsd.jieling.protocols.Drop\022\020\n\010frie" +
- "ndId\030\002 \003(\005\"#\n\023FriendSearchRequest\022\014\n\004nam" +
- "e\030\001 \001(\t\"Y\n\024FriendSearchResponse\022\014\n\004type\030" +
- "\001 \001(\005\0223\n\007Friends\030\002 \001(\0132\".com.ljsd.jielin",
- "g.protocols.Friend\";\n\031SendFriendStateInd" +
- "ication\022\014\n\004type\030\001 \001(\005\022\020\n\010friendId\030\002 \001(\005\"" +
- "/\n\032RefreshFriendStateResponse\022\021\n\tfriendI" +
- "ds\030\001 \003(\005\"7\n\025FriendBlackOptRequest\022\014\n\004typ" +
- "e\030\001 \001(\005\022\020\n\010blackUid\030\002 \001(\005\"\326\004\n\032FivePlayer" +
- "UpdateIndication\022\027\n\017hadTakeDailyBox\030\001 \001(" +
- "\005\0228\n\tprivilege\030\002 \003(\0132%.com.ljsd.jieling." +
- "protocols.Privilege\022>\n\014activityInfo\030\003 \003(" +
- "\0132(.com.ljsd.jieling.protocols.ActivityI" +
- "nfo\022D\n\017userMissionInfo\030\004 \003(\0132+.com.ljsd.",
- "jieling.protocols.UserMissionInfo\022J\n\022fiv" +
- "eResetTowerInfo\030\005 \001(\0132..com.ljsd.jieling" +
- ".protocols.fiveResetTowerInfo\022:\n\nSignInI" +
- "nfo\030\006 \001(\0132&.com.ljsd.jieling.protocols.S" +
- "ignInInfo\022D\n\017playerBindPhone\030\007 \001(\0132+.com" +
- ".ljsd.jieling.protocols.PlayerBindPhone\022" +
- "D\n\010posInfos\030\010 \003(\01322.com.ljsd.jieling.pro" +
- "tocols.LuckWheelRewardPosInfo\022K\n\017posInfo" +
- "sAdvance\030\t \003(\01322.com.ljsd.jieling.protoc" +
- "ols.LuckWheelRewardPosInfo\"Z\n\022GetMission",
- "Response\022D\n\017userMissionInfo\030\001 \003(\0132+.com." +
- "ljsd.jieling.protocols.UserMissionInfo\"\'" +
- "\n\025RefreshItemNumRequest\022\016\n\006itemId\030\001 \003(\005\"" +
- "P\n\026RefreshItemNumResponse\0226\n\010itemInfo\030\001 " +
- "\003(\0132$.com.ljsd.jieling.protocols.ItemInf" +
- "o\"S\n\023UpdateBagIndication\022\014\n\004type\030\001 \001(\005\022." +
- "\n\004item\030\002 \003(\0132 .com.ljsd.jieling.protocol" +
- "s.Item\"1\n\021ModifyHeadRequest\022\016\n\006headId\030\001 " +
- "\001(\005\022\014\n\004type\030\002 \001(\005\"\336\002\n\rblessResponse\022:\n\tf" +
- "ixReward\030\001 \003(\0132\'.com.ljsd.jieling.protoc",
- "ols.blessReward\022=\n\014legendReward\030\002 \003(\0132\'." +
- "com.ljsd.jieling.protocols.blessReward\022>" +
- "\n\rsupremeReward\030\003 \003(\0132\'.com.ljsd.jieling" +
- ".protocols.blessReward\022<\n\013countReward\030\004 " +
- "\003(\0132\'.com.ljsd.jieling.protocols.blessRe" +
- "ward\022;\n\nrewardView\030\005 \003(\0132\'.com.ljsd.jiel" +
- "ing.protocols.blessReward\022\027\n\017lastRefresh" +
- "Time\030\006 \001(\005\"%\n\020blessSaveRequest\022\021\n\treward" +
- "Ids\030\001 \003(\005\"(\n\022blessChooseRequest\022\022\n\nlocat" +
- "ionId\030\001 \001(\005\"_\n\023blessChooseResponse\0220\n\006re",
- "ward\030\001 \001(\0132 .com.ljsd.jieling.protocols." +
- "Drop\022\026\n\016chooseRewardId\030\002 \001(\005\"I\n\014blessRef" +
- "resh\0229\n\006reward\030\001 \001(\0132).com.ljsd.jieling." +
- "protocols.blessResponse\"Q\n\025storeUpdateIn" +
- "dication\0228\n\tstoreInfo\030\001 \003(\0132%.com.ljsd.j" +
- "ieling.protocols.StoreInfo\"%\n\tLockEquip\022" +
- "\n\n\002id\030\001 \003(\t\022\014\n\004type\030\002 \001(\005\"r\n\027ActivityUpa" +
- "teIndication\022>\n\014activityInfo\030\001 \003(\0132(.com" +
- ".ljsd.jieling.protocols.ActivityInfo\022\027\n\017" +
- "closeActivityId\030\002 \003(\005\";\n\027GetForceRankInf",
- "oRequest\022\014\n\004page\030\001 \001(\005\022\022\n\nactiviteId\030\002 \001" +
- "(\005\"{\n\030GetForceRankInfoResponse\022>\n\014useFor" +
- "ceInfo\030\001 \003(\0132(.com.ljsd.jieling.protocol" +
- "s.UseForceInfo\022\017\n\007myForce\030\002 \001(\005\022\016\n\006myRan" +
- "k\030\003 \001(\005\"a\n\037ActivityUpateProgressIndicati" +
- "on\022>\n\014activityInfo\030\001 \002(\0132(.com.ljsd.jiel" +
- "ing.protocols.ActivityInfo\"*\n\024GetExpertI" +
- "nfoRequest\022\022\n\nactiviteId\030\001 \001(\005\"p\n\025GetExp" +
- "ertInfoResponse\0226\n\006expert\030\001 \003(\0132&.com.lj" +
- "sd.jieling.protocols.ExpertInfo\022\017\n\007mySco",
- "re\030\002 \001(\005\022\016\n\006myRank\030\003 \001(\005\"!\n\rSignInReques" +
- "t\022\020\n\010dayIndex\030\001 \001(\005\"@\n\016SignInResponse\022.\n" +
- "\004drop\030\001 \001(\0132 .com.ljsd.jieling.protocols" +
- ".Drop\"?\n\033GetPlayerOneTeamInfoRequest\022\020\n\010" +
- "playerId\030\001 \001(\005\022\016\n\006teamId\030\002 \001(\005\"Y\n\034GetPla" +
- "yerOneTeamInfoResponse\0229\n\010teamInfo\030\001 \001(\013" +
- "2\'.com.ljsd.jieling.protocols.TeamOneInf" +
- "o\"O\n\035TakeSenvenScoreRewardResponse\022.\n\004dr" +
- "op\030\001 \001(\0132 .com.ljsd.jieling.protocols.Dr" +
- "op\"\"\n\022UpdateStateRequest\022\014\n\004type\030\001 \001(\005\"5",
- "\n\027UpdateUserExpIndicaiton\022\r\n\005level\030\001 \001(\005" +
- "\022\013\n\003exp\030\002 \001(\005\"6\n\037UpdateSecretBoxSeasonIn" +
- "dication\022\023\n\013newSeasonId\030\001 \001(\005\"\033\n\031GetMons" +
- "terRankInfoRequest\"{\n\032GetMonsterRankInfo" +
- "Response\022<\n\007monster\030\001 \003(\0132+.com.ljsd.jie" +
- "ling.protocols.MonsterRankInfo\022\017\n\007myScor" +
- "e\030\002 \001(\005\022\016\n\006myRank\030\003 \001(\005\"-\n\031PlayerBackCIn" +
- "foIndication\022\020\n\010nickName\030\001 \001(\t\"*\n\026Update" +
- "PhoneinfoRequest\022\020\n\010phoneNum\030\001 \001(\t\"(\n\027Up" +
- "datePhoneinfoResponse\022\r\n\005state\030\001 \001(\005\"\027\n\025",
- "GetPhoneRewardRequest\"H\n\026GetPhoneRewardR" +
- "esponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling" +
- ".protocols.Drop\"#\n\022QuestionIndication\022\r\n" +
- "\005state\030\001 \001(\005\"\024\n\022GetQuestionRequest\"\226\001\n\023G" +
- "etQuestionResponse\022\n\n\002id\030\001 \001(\t\022\020\n\010questD" +
- "es\030\002 \001(\t\022\r\n\005start\030\003 \001(\t\022\017\n\007endtime\030\004 \001(\t" +
- "\022A\n\014questOptions\030\005 \003(\0132+.com.ljsd.jielin" +
- "g.protocols.QuestionOptions\"(\n\025upDataQue" +
- "stionRequest\022\017\n\007options\030\001 \003(\t\"(\n\026upDataQ" +
- "uestionResponse\022\016\n\006result\030\001 \001(\005\"\013\n\tBlood",
- "Rank\"!\n\022ExchangeCdkRequest\022\013\n\003key\030\001 \001(\t\"" +
- "0\n\035NotifyPaySuccessfulIndicaiton\022\017\n\007good" +
- "sId\030\001 \001(\005\"V\n\023DirectBuyIndication\022\017\n\007good" +
- "sId\030\001 \001(\005\022.\n\004drop\030\002 \001(\0132 .com.ljsd.jieli" +
- "ng.protocols.Drop\"=\n\027RefreshLuckWheelReq" +
- "uest\022\022\n\nactivityId\030\001 \001(\005\022\016\n\006isFree\030\002 \001(\010" +
- "\"`\n\030RefreshLuckWheelResponse\022D\n\010posInfos" +
- "\030\001 \003(\01322.com.ljsd.jieling.protocols.Luck" +
- "WheelRewardPosInfo\"E\n\035GetLuckWheelRandRe" +
- "wardRequest\022\022\n\nactivityId\030\001 \001(\005\022\020\n\010repea",
- "ted\030\002 \001(\010\"\252\001\n\036GetLuckWheelRandRewardResp" +
- "onse\022\022\n\nactivityId\030\001 \001(\005\022D\n\010posInfos\030\002 \003" +
+ "tocols.Drop\"#\n\022QuestionIndication\022\r\n\005sta" +
+ "te\030\001 \001(\005\"\024\n\022GetQuestionRequest\"\226\001\n\023GetQu" +
+ "estionResponse\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\014" +
+ "questOptions\030\005 \003(\0132+.com.ljsd.jieling.pr" +
+ "otocols.QuestionOptions\"(\n\025upDataQuestio" +
+ "nRequest\022\017\n\007options\030\001 \003(\t\"(\n\026upDataQuest",
+ "ionResponse\022\016\n\006result\030\001 \001(\005\"\013\n\tBloodRank" +
+ "\"!\n\022ExchangeCdkRequest\022\013\n\003key\030\001 \001(\t\"0\n\035N" +
+ "otifyPaySuccessfulIndicaiton\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.p" +
+ "rotocols.Drop\"=\n\027RefreshLuckWheelRequest" +
+ "\022\022\n\nactivityId\030\001 \001(\005\022\016\n\006isFree\030\002 \001(\010\"`\n\030" +
+ "RefreshLuckWheelResponse\022D\n\010posInfos\030\001 \003" +
"(\01322.com.ljsd.jieling.protocols.LuckWhee" +
- "lRewardPosInfo\022.\n\004drop\030\003 \001(\0132 .com.ljsd." +
- "jieling.protocols.Drop\"\250\001\n\023LuckWheelIndi" +
- "cation\022D\n\010posInfos\030\001 \003(\01322.com.ljsd.jiel" +
- "ing.protocols.LuckWheelRewardPosInfo\022K\n\017" +
- "posInfosAdvance\030\002 \003(\01322.com.ljsd.jieling" +
- ".protocols.LuckWheelRewardPosInfo\"\242\001\n\030Ge" +
- "tMainLevelInfoResponse\022\017\n\007fightId\030\001 \001(\005\022",
- "\r\n\005state\030\002 \001(\005\022\020\n\010duration\030\003 \001(\005\022T\n\027adve" +
- "ntureBossSimpleInfo\030\004 \003(\01323.com.ljsd.jie" +
- "ling.protocols.AdventureBossSimpleInfo\"-" +
+ "lRewardPosInfo\"E\n\035GetLuckWheelRandReward",
+ "Request\022\022\n\nactivityId\030\001 \001(\005\022\020\n\010repeated\030" +
+ "\002 \001(\010\"\252\001\n\036GetLuckWheelRandRewardResponse" +
+ "\022\022\n\nactivityId\030\001 \001(\005\022D\n\010posInfos\030\002 \003(\01322" +
+ ".com.ljsd.jieling.protocols.LuckWheelRew" +
+ "ardPosInfo\022.\n\004drop\030\003 \001(\0132 .com.ljsd.jiel" +
+ "ing.protocols.Drop\"\250\001\n\023LuckWheelIndicati" +
+ "on\022D\n\010posInfos\030\001 \003(\01322.com.ljsd.jieling." +
+ "protocols.LuckWheelRewardPosInfo\022K\n\017posI" +
+ "nfosAdvance\030\002 \003(\01322.com.ljsd.jieling.pro" +
+ "tocols.LuckWheelRewardPosInfo\"\246\001\n\030GetMai",
+ "nLevelInfoResponse\022\017\n\007fightId\030\001 \001(\005\022\r\n\005s" +
+ "tate\030\002 \001(\005\022\020\n\010duration\030\003 \001(\005\022H\n\021adventur" +
+ "eBossInfo\030\004 \003(\0132-.com.ljsd.jieling.proto" +
+ "cols.AdventureBossInfo\022\016\n\006reward\030\005 \001(\t\"-" +
"\n\034QuickBuyTreasureLevelRequest\022\r\n\005level\030" +
"\001 \001(\005\"S\n\031TreasureRefreshIndication\0226\n\005ta" +
"sks\030\001 \003(\0132\'.com.ljsd.jieling.protocols.R" +
"efreshTask\"*\n\031TreasureLevelUpIndication\022" +
"\r\n\005level\030\001 \001(\005\" \n\016MailDelRequest\022\016\n\006mail" +
- "Id\030\001 \003(\t\"8\n\023ViewHeroInfoRequest\022\021\n\ttarge" +
- "tUid\030\001 \001(\005\022\016\n\006heroId\030\002 \001(\t\"\313\001\n\024ViewHeroI",
+ "Id\030\001 \003(\t\"8\n\023ViewHeroInfoRequest\022\021\n\ttarge",
+ "tUid\030\001 \001(\005\022\016\n\006heroId\030\002 \001(\t\"\313\001\n\024ViewHeroI" +
"nfoResponse\022.\n\004hero\030\001 \001(\0132 .com.ljsd.jie" +
"ling.protocols.Hero\0220\n\005equip\030\002 \003(\0132!.com" +
".ljsd.jieling.protocols.Equip\022B\n\016Special" +
"Effects\030\003 \003(\0132*.com.ljsd.jieling.protoco" +
- "ls.SpecialEffects\022\r\n\005force\030\004 \001(\005B\002H\001"
+ "ls.SpecialEffects\022\r\n\005force\030\004 \001(\005\"\033\n\013Rank" +
+ "Request\022\014\n\004type\030\001 \001(\005\"}\n\014RankResponse\0223\n" +
+ "\005ranks\030\001 \003(\0132$.com.ljsd.jieling.protocol" +
+ "s.UserRank\0228\n\nmyRankInfo\030\002 \001(\0132$.com.ljs" +
+ "d.jieling.protocols.RankInfoB\002H\001"
};
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
@@ -87455,7 +89132,7 @@ public final class PlayerInfoProto {
internal_static_com_ljsd_jieling_protocols_GetPlayerInfoResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_GetPlayerInfoResponse_descriptor,
- new java.lang.String[] { "Player", "NewPlayerGuidePoint", "Privilege", "GiftGoodsInfo", "BuyGoodsId", "SuddenlyBossInfo", "VipBaseInfo", "UserCreateTime", "RedType", "RandCount", "HeroHandBook", "EquipHandBook", "TowerReceivedReward", "GoodsTypeDuration", "TreasureLevel", "HadBuyTreasure", "SignInInfo", "FirstTenth", "MonsterAttackTime", "IsDayFirst", "EndInfo", "PlayerBindPhone", "QuestionState", "SoulEquipPool", });
+ new java.lang.String[] { "Player", "NewPlayerGuidePoint", "Privilege", "GiftGoodsInfo", "BuyGoodsId", "SuddenlyBossInfo", "VipBaseInfo", "UserCreateTime", "RedType", "RandCount", "HeroHandBook", "EquipHandBook", "TowerReceivedReward", "GoodsTypeDuration", "TreasureLevel", "HadBuyTreasure", "SignInInfo", "FirstTenth", "MonsterAttackTime", "IsDayFirst", "EndInfo", "PlayerBindPhone", "QuestionState", "SoulEquipPool", "PlayedMapTypes", });
internal_static_com_ljsd_jieling_protocols_GetItemInfoRequest_descriptor =
getDescriptor().getMessageTypes().get(5);
internal_static_com_ljsd_jieling_protocols_GetItemInfoRequest_fieldAccessorTable = new
@@ -87870,12 +89547,12 @@ public final class PlayerInfoProto {
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_UpdateBagIndication_descriptor,
new java.lang.String[] { "Type", "Item", });
- internal_static_com_ljsd_jieling_protocols_ModifyHeadRequest_descriptor =
+ internal_static_com_ljsd_jieling_protocols_ModifyDecorationRequest_descriptor =
getDescriptor().getMessageTypes().get(74);
- internal_static_com_ljsd_jieling_protocols_ModifyHeadRequest_fieldAccessorTable = new
+ internal_static_com_ljsd_jieling_protocols_ModifyDecorationRequest_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
- internal_static_com_ljsd_jieling_protocols_ModifyHeadRequest_descriptor,
- new java.lang.String[] { "HeadId", "Type", });
+ internal_static_com_ljsd_jieling_protocols_ModifyDecorationRequest_descriptor,
+ new java.lang.String[] { "DecorationId", "Type", });
internal_static_com_ljsd_jieling_protocols_blessResponse_descriptor =
getDescriptor().getMessageTypes().get(75);
internal_static_com_ljsd_jieling_protocols_blessResponse_fieldAccessorTable = new
@@ -88133,7 +89810,7 @@ public final class PlayerInfoProto {
internal_static_com_ljsd_jieling_protocols_GetMainLevelInfoResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_GetMainLevelInfoResponse_descriptor,
- new java.lang.String[] { "FightId", "State", "Duration", "AdventureBossSimpleInfo", });
+ new java.lang.String[] { "FightId", "State", "Duration", "AdventureBossInfo", "Reward", });
internal_static_com_ljsd_jieling_protocols_QuickBuyTreasureLevelRequest_descriptor =
getDescriptor().getMessageTypes().get(118);
internal_static_com_ljsd_jieling_protocols_QuickBuyTreasureLevelRequest_fieldAccessorTable = new
@@ -88170,6 +89847,18 @@ public final class PlayerInfoProto {
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_com_ljsd_jieling_protocols_ViewHeroInfoResponse_descriptor,
new java.lang.String[] { "Hero", "Equip", "SpecialEffects", "Force", });
+ internal_static_com_ljsd_jieling_protocols_RankRequest_descriptor =
+ getDescriptor().getMessageTypes().get(124);
+ internal_static_com_ljsd_jieling_protocols_RankRequest_fieldAccessorTable = new
+ com.google.protobuf.GeneratedMessage.FieldAccessorTable(
+ internal_static_com_ljsd_jieling_protocols_RankRequest_descriptor,
+ new java.lang.String[] { "Type", });
+ internal_static_com_ljsd_jieling_protocols_RankResponse_descriptor =
+ getDescriptor().getMessageTypes().get(125);
+ internal_static_com_ljsd_jieling_protocols_RankResponse_fieldAccessorTable = new
+ com.google.protobuf.GeneratedMessage.FieldAccessorTable(
+ internal_static_com_ljsd_jieling_protocols_RankResponse_descriptor,
+ new java.lang.String[] { "Ranks", "MyRankInfo", });
return null;
}
};
diff --git a/bloodybattle/src/main/java/com/ljsd/network/server/BloodyProtocolsManager.java b/bloodybattle/src/main/java/com/ljsd/network/server/BloodyProtocolsManager.java
index 839d3822c..e3e24edab 100644
--- a/bloodybattle/src/main/java/com/ljsd/network/server/BloodyProtocolsManager.java
+++ b/bloodybattle/src/main/java/com/ljsd/network/server/BloodyProtocolsManager.java
@@ -6,6 +6,7 @@ import com.ljsd.battle.room.SceneManager;
import com.ljsd.battle.util.MessageUtil;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
+import com.ljsd.jieling.core.HandlerLogicThread;
import com.ljsd.jieling.db.redis.RedisKey;
import com.ljsd.jieling.db.redis.RedisUtil;
import com.ljsd.jieling.exception.ErrorCode;
@@ -76,56 +77,17 @@ public class BloodyProtocolsManager implements ProtocolsAbstract {
handlers.put(handler.getMessageCode().getNumber(), handler);
}
- @Override
- public void processMessage(GameSession gameSession, Object obj) {
-
- final ISession session = (ISession) gameSession;
- PacketNetData packetNetData = new PacketNetData((byte[]) obj);
- if (packetNetData.getMsgId()==1000){
- dealHeartBeat(session);
- return;
- }
-
- if (packetNetData.getMsgId()== MessageTypeProto.MessageType.ROOM_LOGIN_REQEUST_VALUE){
-
- //初始化session
- if (!sessionInit(session,packetNetData)){
- MessageUtil.sendErrorCode(session,0,"您的账号token不正确,请退出游戏重新登陆!");
- return;
- }
- //刷新token
- refreshToken(session);
- //踢下线
- //在线列表加入session
- OnlineUserManager.userOnline(session.getUid(),session);
- }
- if(packetNetData.getMsgId() == MessageTypeProto.MessageType.ACK_INDICATION_REQUEST_VALUE){
- ackIndication(session,packetNetData.getIndex());
- return;
- }
- //处理心跳
- if (packetNetData.getMsgId()==1000){
- dealHeartBeat(session);
- return;
- }
-
- if( packetNetData.getMsgId()== MessageTypeProto.MessageType.RECONNECT_REQUEST_VALUE){
- processReconnect(session);
- LOGGER.info("the uid={} process reconnect",session.getUid());
- return;
- }
-
-
- LOGGER.info("request commond : " + packetNetData.getMsgId());
+ public void processMessage(PacketNetData packetNetData) {
BaseHandler baseHandler = handlers.get(packetNetData.getMsgId());
if (baseHandler == null) {
LOGGER.info("request unknow commond : " + packetNetData.getMsgId());
return;
} else {
- addEntry(packetNetData);
+ addEntry(packetNetData);
}
}
+
public boolean addEntry(PacketNetData packetNetData) {
int userId = packetNetData.getUserId();
try {
@@ -222,108 +184,6 @@ public class BloodyProtocolsManager implements ProtocolsAbstract {
}
- @Override
- public void offLine(GameSession gameSession) {
- LOGGER.info("player offLine ...");
- ISession session = (ISession) gameSession;
- synchronized (session) {
-
-
- if(session.getOfflineType() == ErrorCode.reloginCode){
- return;
- }
- SceneManager.whenUserOffline(session.getUid());
- if (session.getCtx() != null) {
- GameMessageHandler.allChannels.remove(session.getCtx().channel());
- }
-
- if (session.getUid() == 0) {
- LOGGER.error("offLine->uid={}", session.getUid());
- return;
- }
-
- GameMessageHandler.currentSessions.remove(session.getUid());
- try {
- OnlineUserManager.userOffline(session.getUid());
- ConcurrentHashMap