|
@@ -972,6 +972,30 @@ public final class CommonProto {
|
|
|
* <code>SYSTEM_ERR = 2;</code>
|
|
|
*/
|
|
|
SYSTEM_ERR(2),
|
|
|
+
|
|
|
+ * <pre>
|
|
|
+ *玩家已在房间
|
|
|
+ * </pre>
|
|
|
+ *
|
|
|
+ * <code>PLAYER_ROOM_EXIST_ERR = 3;</code>
|
|
|
+ */
|
|
|
+ PLAYER_ROOM_EXIST_ERR(3),
|
|
|
+
|
|
|
+ * <pre>
|
|
|
+ *房间已解散
|
|
|
+ * </pre>
|
|
|
+ *
|
|
|
+ * <code>ROOM_NOT_EXIST_ERR = 4;</code>
|
|
|
+ */
|
|
|
+ ROOM_NOT_EXIST_ERR(4),
|
|
|
+
|
|
|
+ * <pre>
|
|
|
+ *重复加入其他房间
|
|
|
+ * </pre>
|
|
|
+ *
|
|
|
+ * <code>JOIN_ROOM_REPEATEDLY_ERR = 5;</code>
|
|
|
+ */
|
|
|
+ JOIN_ROOM_REPEATEDLY_ERR(5),
|
|
|
UNRECOGNIZED(-1),
|
|
|
;
|
|
|
|
|
@@ -999,6 +1023,30 @@ public final class CommonProto {
|
|
|
* <code>SYSTEM_ERR = 2;</code>
|
|
|
*/
|
|
|
public static final int SYSTEM_ERR_VALUE = 2;
|
|
|
+
|
|
|
+ * <pre>
|
|
|
+ *玩家已在房间
|
|
|
+ * </pre>
|
|
|
+ *
|
|
|
+ * <code>PLAYER_ROOM_EXIST_ERR = 3;</code>
|
|
|
+ */
|
|
|
+ public static final int PLAYER_ROOM_EXIST_ERR_VALUE = 3;
|
|
|
+
|
|
|
+ * <pre>
|
|
|
+ *房间已解散
|
|
|
+ * </pre>
|
|
|
+ *
|
|
|
+ * <code>ROOM_NOT_EXIST_ERR = 4;</code>
|
|
|
+ */
|
|
|
+ public static final int ROOM_NOT_EXIST_ERR_VALUE = 4;
|
|
|
+
|
|
|
+ * <pre>
|
|
|
+ *重复加入其他房间
|
|
|
+ * </pre>
|
|
|
+ *
|
|
|
+ * <code>JOIN_ROOM_REPEATEDLY_ERR = 5;</code>
|
|
|
+ */
|
|
|
+ public static final int JOIN_ROOM_REPEATEDLY_ERR_VALUE = 5;
|
|
|
|
|
|
|
|
|
public final int getNumber() {
|
|
@@ -1028,6 +1076,9 @@ public final class CommonProto {
|
|
|
case 0: return OK;
|
|
|
case 1: return PARAMETER_ERR;
|
|
|
case 2: return SYSTEM_ERR;
|
|
|
+ case 3: return PLAYER_ROOM_EXIST_ERR;
|
|
|
+ case 4: return ROOM_NOT_EXIST_ERR;
|
|
|
+ case 5: return JOIN_ROOM_REPEATEDLY_ERR;
|
|
|
default: return null;
|
|
|
}
|
|
|
}
|
|
@@ -5858,9 +5909,11 @@ public final class CommonProto {
|
|
|
"\020\246\3676\022\024\n\016RoomPlayerJoin\020\250\3676\022\025\n\017RoomPlayer" +
|
|
|
"Leave\020\252\3676\022\025\n\017GameStateChange\020\254\3676\022\020\n\nShop" +
|
|
|
"Update\020\256\3676\022\017\n\tBagUpdate\020\260\3676\022\016\n\010ErrorRes\020" +
|
|
|
- "\260\3057*1\n\004Code\022\006\n\002OK\020\000\022\021\n\rPARAMETER_ERR\020\001\022\016" +
|
|
|
- "\n\nSYSTEM_ERR\020\002B*\n\033com.incubator.message." +
|
|
|
- "protoB\013CommonProtob\006proto3"
|
|
|
+ "\260\3057*\202\001\n\004Code\022\006\n\002OK\020\000\022\021\n\rPARAMETER_ERR\020\001\022" +
|
|
|
+ "\016\n\nSYSTEM_ERR\020\002\022\031\n\025PLAYER_ROOM_EXIST_ERR" +
|
|
|
+ "\020\003\022\026\n\022ROOM_NOT_EXIST_ERR\020\004\022\034\n\030JOIN_ROOM_" +
|
|
|
+ "REPEATEDLY_ERR\020\005B*\n\033com.incubator.messag" +
|
|
|
+ "e.protoB\013CommonProtob\006proto3"
|
|
|
};
|
|
|
descriptor = com.google.protobuf.Descriptors.FileDescriptor
|
|
|
.internalBuildGeneratedFileFrom(descriptorData,
|