mirror of
https://github.com/Melledy/LunarCore.git
synced 2025-12-13 22:04:36 +01:00
Refactor some protos
This commit is contained in:
@@ -41,9 +41,9 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
private final Utf8String text = Utf8String.newEmptyInstance();
|
private final Utf8String text = Utf8String.newEmptyInstance();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>repeated uint32 toUid = 12;</code>
|
* <code>repeated uint32 to_uid_list = 12;</code>
|
||||||
*/
|
*/
|
||||||
private final RepeatedInt toUid = RepeatedInt.newEmptyInstance();
|
private final RepeatedInt toUidList = RepeatedInt.newEmptyInstance();
|
||||||
|
|
||||||
private SendMsgCsReq() {
|
private SendMsgCsReq() {
|
||||||
}
|
}
|
||||||
@@ -282,39 +282,39 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>repeated uint32 toUid = 12;</code>
|
* <code>repeated uint32 to_uid_list = 12;</code>
|
||||||
* @return whether the toUid field is set
|
* @return whether the toUidList field is set
|
||||||
*/
|
*/
|
||||||
public boolean hasToUid() {
|
public boolean hasToUidList() {
|
||||||
return (bitField0_ & 0x00000010) != 0;
|
return (bitField0_ & 0x00000010) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>repeated uint32 toUid = 12;</code>
|
* <code>repeated uint32 to_uid_list = 12;</code>
|
||||||
* @return this
|
* @return this
|
||||||
*/
|
*/
|
||||||
public SendMsgCsReq clearToUid() {
|
public SendMsgCsReq clearToUidList() {
|
||||||
bitField0_ &= ~0x00000010;
|
bitField0_ &= ~0x00000010;
|
||||||
toUid.clear();
|
toUidList.clear();
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>repeated uint32 toUid = 12;</code>
|
* <code>repeated uint32 to_uid_list = 12;</code>
|
||||||
*
|
*
|
||||||
* This method returns the internal storage object without modifying any has state.
|
* This method returns the internal storage object without modifying any has state.
|
||||||
* The returned object should not be modified and be treated as read-only.
|
* The returned object should not be modified and be treated as read-only.
|
||||||
*
|
*
|
||||||
* Use {@link #getMutableToUid()} if you want to modify it.
|
* Use {@link #getMutableToUidList()} if you want to modify it.
|
||||||
*
|
*
|
||||||
* @return internal storage object for reading
|
* @return internal storage object for reading
|
||||||
*/
|
*/
|
||||||
public RepeatedInt getToUid() {
|
public RepeatedInt getToUidList() {
|
||||||
return toUid;
|
return toUidList;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>repeated uint32 toUid = 12;</code>
|
* <code>repeated uint32 to_uid_list = 12;</code>
|
||||||
*
|
*
|
||||||
* This method returns the internal storage object and sets the corresponding
|
* This method returns the internal storage object and sets the corresponding
|
||||||
* has state. The returned object will become part of this message and its
|
* has state. The returned object will become part of this message and its
|
||||||
@@ -322,30 +322,30 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
*
|
*
|
||||||
* @return internal storage object for modifications
|
* @return internal storage object for modifications
|
||||||
*/
|
*/
|
||||||
public RepeatedInt getMutableToUid() {
|
public RepeatedInt getMutableToUidList() {
|
||||||
bitField0_ |= 0x00000010;
|
bitField0_ |= 0x00000010;
|
||||||
return toUid;
|
return toUidList;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>repeated uint32 toUid = 12;</code>
|
* <code>repeated uint32 to_uid_list = 12;</code>
|
||||||
* @param value the toUid to add
|
* @param value the toUidList to add
|
||||||
* @return this
|
* @return this
|
||||||
*/
|
*/
|
||||||
public SendMsgCsReq addToUid(final int value) {
|
public SendMsgCsReq addToUidList(final int value) {
|
||||||
bitField0_ |= 0x00000010;
|
bitField0_ |= 0x00000010;
|
||||||
toUid.add(value);
|
toUidList.add(value);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>repeated uint32 toUid = 12;</code>
|
* <code>repeated uint32 to_uid_list = 12;</code>
|
||||||
* @param values the toUid to add
|
* @param values the toUidList to add
|
||||||
* @return this
|
* @return this
|
||||||
*/
|
*/
|
||||||
public SendMsgCsReq addAllToUid(final int... values) {
|
public SendMsgCsReq addAllToUidList(final int... values) {
|
||||||
bitField0_ |= 0x00000010;
|
bitField0_ |= 0x00000010;
|
||||||
toUid.addAll(values);
|
toUidList.addAll(values);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -358,7 +358,7 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
msgType = other.msgType;
|
msgType = other.msgType;
|
||||||
chatType = other.chatType;
|
chatType = other.chatType;
|
||||||
text.copyFrom(other.text);
|
text.copyFrom(other.text);
|
||||||
toUid.copyFrom(other.toUid);
|
toUidList.copyFrom(other.toUidList);
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
@@ -381,8 +381,8 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
if (other.hasText()) {
|
if (other.hasText()) {
|
||||||
getMutableTextBytes().copyFrom(other.text);
|
getMutableTextBytes().copyFrom(other.text);
|
||||||
}
|
}
|
||||||
if (other.hasToUid()) {
|
if (other.hasToUidList()) {
|
||||||
getMutableToUid().addAll(other.toUid);
|
getMutableToUidList().addAll(other.toUidList);
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
@@ -398,7 +398,7 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
msgType = 0;
|
msgType = 0;
|
||||||
chatType = 0;
|
chatType = 0;
|
||||||
text.clear();
|
text.clear();
|
||||||
toUid.clear();
|
toUidList.clear();
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -410,7 +410,7 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
cachedSize = -1;
|
cachedSize = -1;
|
||||||
bitField0_ = 0;
|
bitField0_ = 0;
|
||||||
text.clear();
|
text.clear();
|
||||||
toUid.clear();
|
toUidList.clear();
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -428,7 +428,7 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
&& (!hasMsgType() || msgType == other.msgType)
|
&& (!hasMsgType() || msgType == other.msgType)
|
||||||
&& (!hasChatType() || chatType == other.chatType)
|
&& (!hasChatType() || chatType == other.chatType)
|
||||||
&& (!hasText() || text.equals(other.text))
|
&& (!hasText() || text.equals(other.text))
|
||||||
&& (!hasToUid() || toUid.equals(other.toUid));
|
&& (!hasToUidList() || toUidList.equals(other.toUidList));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -450,9 +450,9 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
output.writeStringNoTag(text);
|
output.writeStringNoTag(text);
|
||||||
}
|
}
|
||||||
if ((bitField0_ & 0x00000010) != 0) {
|
if ((bitField0_ & 0x00000010) != 0) {
|
||||||
for (int i = 0; i < toUid.length(); i++) {
|
for (int i = 0; i < toUidList.length(); i++) {
|
||||||
output.writeRawByte((byte) 96);
|
output.writeRawByte((byte) 96);
|
||||||
output.writeUInt32NoTag(toUid.array()[i]);
|
output.writeUInt32NoTag(toUidList.array()[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -473,7 +473,7 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
size += 1 + ProtoSink.computeStringSizeNoTag(text);
|
size += 1 + ProtoSink.computeStringSizeNoTag(text);
|
||||||
}
|
}
|
||||||
if ((bitField0_ & 0x00000010) != 0) {
|
if ((bitField0_ & 0x00000010) != 0) {
|
||||||
size += (1 * toUid.length()) + ProtoSink.computeRepeatedUInt32SizeNoTag(toUid);
|
size += (1 * toUidList.length()) + ProtoSink.computeRepeatedUInt32SizeNoTag(toUidList);
|
||||||
}
|
}
|
||||||
return size;
|
return size;
|
||||||
}
|
}
|
||||||
@@ -528,8 +528,8 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
case 98: {
|
case 98: {
|
||||||
// toUid [packed=true]
|
// toUidList [packed=true]
|
||||||
input.readPackedUInt32(toUid, tag);
|
input.readPackedUInt32(toUidList, tag);
|
||||||
bitField0_ |= 0x00000010;
|
bitField0_ |= 0x00000010;
|
||||||
tag = input.readTag();
|
tag = input.readTag();
|
||||||
if (tag != 0) {
|
if (tag != 0) {
|
||||||
@@ -547,8 +547,8 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 96: {
|
case 96: {
|
||||||
// toUid [packed=false]
|
// toUidList [packed=false]
|
||||||
tag = input.readRepeatedUInt32(toUid, tag);
|
tag = input.readRepeatedUInt32(toUidList, tag);
|
||||||
bitField0_ |= 0x00000010;
|
bitField0_ |= 0x00000010;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -572,7 +572,7 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
output.writeString(FieldNames.text, text);
|
output.writeString(FieldNames.text, text);
|
||||||
}
|
}
|
||||||
if ((bitField0_ & 0x00000010) != 0) {
|
if ((bitField0_ & 0x00000010) != 0) {
|
||||||
output.writeRepeatedUInt32(FieldNames.toUid, toUid);
|
output.writeRepeatedUInt32(FieldNames.toUidList, toUidList);
|
||||||
}
|
}
|
||||||
output.endObject();
|
output.endObject();
|
||||||
}
|
}
|
||||||
@@ -640,10 +640,11 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 110520277: {
|
case -2098685421:
|
||||||
if (input.isAtField(FieldNames.toUid)) {
|
case 1162351729: {
|
||||||
|
if (input.isAtField(FieldNames.toUidList)) {
|
||||||
if (!input.trySkipNullValue()) {
|
if (!input.trySkipNullValue()) {
|
||||||
input.readRepeatedUInt32(toUid);
|
input.readRepeatedUInt32(toUidList);
|
||||||
bitField0_ |= 0x00000010;
|
bitField0_ |= 0x00000010;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -711,7 +712,7 @@ public final class SendMsgCsReqOuterClass {
|
|||||||
|
|
||||||
static final FieldName text = FieldName.forField("text");
|
static final FieldName text = FieldName.forField("text");
|
||||||
|
|
||||||
static final FieldName toUid = FieldName.forField("toUid");
|
static final FieldName toUidList = FieldName.forField("toUidList", "to_uid_list");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,282 @@
|
|||||||
|
// Code generated by protocol buffer compiler. Do not edit!
|
||||||
|
package emu.lunarcore.proto;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import us.hebi.quickbuf.FieldName;
|
||||||
|
import us.hebi.quickbuf.InvalidProtocolBufferException;
|
||||||
|
import us.hebi.quickbuf.JsonSink;
|
||||||
|
import us.hebi.quickbuf.JsonSource;
|
||||||
|
import us.hebi.quickbuf.MessageFactory;
|
||||||
|
import us.hebi.quickbuf.ProtoMessage;
|
||||||
|
import us.hebi.quickbuf.ProtoSink;
|
||||||
|
import us.hebi.quickbuf.ProtoSource;
|
||||||
|
|
||||||
|
public final class SyncRogueFinishScNotifyOuterClass {
|
||||||
|
/**
|
||||||
|
* Protobuf type {@code SyncRogueFinishScNotify}
|
||||||
|
*/
|
||||||
|
public static final class SyncRogueFinishScNotify extends ProtoMessage<SyncRogueFinishScNotify> implements Cloneable {
|
||||||
|
private static final long serialVersionUID = 0L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .RogueFinishInfo finish_info = 3;</code>
|
||||||
|
*/
|
||||||
|
private final RogueFinishInfoOuterClass.RogueFinishInfo finishInfo = RogueFinishInfoOuterClass.RogueFinishInfo.newInstance();
|
||||||
|
|
||||||
|
private SyncRogueFinishScNotify() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return a new empty instance of {@code SyncRogueFinishScNotify}
|
||||||
|
*/
|
||||||
|
public static SyncRogueFinishScNotify newInstance() {
|
||||||
|
return new SyncRogueFinishScNotify();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .RogueFinishInfo finish_info = 3;</code>
|
||||||
|
* @return whether the finishInfo field is set
|
||||||
|
*/
|
||||||
|
public boolean hasFinishInfo() {
|
||||||
|
return (bitField0_ & 0x00000001) != 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .RogueFinishInfo finish_info = 3;</code>
|
||||||
|
* @return this
|
||||||
|
*/
|
||||||
|
public SyncRogueFinishScNotify clearFinishInfo() {
|
||||||
|
bitField0_ &= ~0x00000001;
|
||||||
|
finishInfo.clear();
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .RogueFinishInfo finish_info = 3;</code>
|
||||||
|
*
|
||||||
|
* This method returns the internal storage object without modifying any has state.
|
||||||
|
* The returned object should not be modified and be treated as read-only.
|
||||||
|
*
|
||||||
|
* Use {@link #getMutableFinishInfo()} if you want to modify it.
|
||||||
|
*
|
||||||
|
* @return internal storage object for reading
|
||||||
|
*/
|
||||||
|
public RogueFinishInfoOuterClass.RogueFinishInfo getFinishInfo() {
|
||||||
|
return finishInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .RogueFinishInfo finish_info = 3;</code>
|
||||||
|
*
|
||||||
|
* This method returns the internal storage object and sets the corresponding
|
||||||
|
* has state. The returned object will become part of this message and its
|
||||||
|
* contents may be modified as long as the has state is not cleared.
|
||||||
|
*
|
||||||
|
* @return internal storage object for modifications
|
||||||
|
*/
|
||||||
|
public RogueFinishInfoOuterClass.RogueFinishInfo getMutableFinishInfo() {
|
||||||
|
bitField0_ |= 0x00000001;
|
||||||
|
return finishInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .RogueFinishInfo finish_info = 3;</code>
|
||||||
|
* @param value the finishInfo to set
|
||||||
|
* @return this
|
||||||
|
*/
|
||||||
|
public SyncRogueFinishScNotify setFinishInfo(
|
||||||
|
final RogueFinishInfoOuterClass.RogueFinishInfo value) {
|
||||||
|
bitField0_ |= 0x00000001;
|
||||||
|
finishInfo.copyFrom(value);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SyncRogueFinishScNotify copyFrom(final SyncRogueFinishScNotify other) {
|
||||||
|
cachedSize = other.cachedSize;
|
||||||
|
if ((bitField0_ | other.bitField0_) != 0) {
|
||||||
|
bitField0_ = other.bitField0_;
|
||||||
|
finishInfo.copyFrom(other.finishInfo);
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SyncRogueFinishScNotify mergeFrom(final SyncRogueFinishScNotify other) {
|
||||||
|
if (other.isEmpty()) {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
cachedSize = -1;
|
||||||
|
if (other.hasFinishInfo()) {
|
||||||
|
getMutableFinishInfo().mergeFrom(other.finishInfo);
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SyncRogueFinishScNotify clear() {
|
||||||
|
if (isEmpty()) {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
cachedSize = -1;
|
||||||
|
bitField0_ = 0;
|
||||||
|
finishInfo.clear();
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SyncRogueFinishScNotify clearQuick() {
|
||||||
|
if (isEmpty()) {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
cachedSize = -1;
|
||||||
|
bitField0_ = 0;
|
||||||
|
finishInfo.clearQuick();
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean equals(Object o) {
|
||||||
|
if (o == this) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (!(o instanceof SyncRogueFinishScNotify)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
SyncRogueFinishScNotify other = (SyncRogueFinishScNotify) o;
|
||||||
|
return bitField0_ == other.bitField0_
|
||||||
|
&& (!hasFinishInfo() || finishInfo.equals(other.finishInfo));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void writeTo(final ProtoSink output) throws IOException {
|
||||||
|
if ((bitField0_ & 0x00000001) != 0) {
|
||||||
|
output.writeRawByte((byte) 26);
|
||||||
|
output.writeMessageNoTag(finishInfo);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected int computeSerializedSize() {
|
||||||
|
int size = 0;
|
||||||
|
if ((bitField0_ & 0x00000001) != 0) {
|
||||||
|
size += 1 + ProtoSink.computeMessageSizeNoTag(finishInfo);
|
||||||
|
}
|
||||||
|
return size;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@SuppressWarnings("fallthrough")
|
||||||
|
public SyncRogueFinishScNotify mergeFrom(final ProtoSource input) throws IOException {
|
||||||
|
// Enabled Fall-Through Optimization (QuickBuffers)
|
||||||
|
int tag = input.readTag();
|
||||||
|
while (true) {
|
||||||
|
switch (tag) {
|
||||||
|
case 26: {
|
||||||
|
// finishInfo
|
||||||
|
input.readMessage(finishInfo);
|
||||||
|
bitField0_ |= 0x00000001;
|
||||||
|
tag = input.readTag();
|
||||||
|
if (tag != 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case 0: {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
default: {
|
||||||
|
if (!input.skipField(tag)) {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
tag = input.readTag();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void writeTo(final JsonSink output) throws IOException {
|
||||||
|
output.beginObject();
|
||||||
|
if ((bitField0_ & 0x00000001) != 0) {
|
||||||
|
output.writeMessage(FieldNames.finishInfo, finishInfo);
|
||||||
|
}
|
||||||
|
output.endObject();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SyncRogueFinishScNotify mergeFrom(final JsonSource input) throws IOException {
|
||||||
|
if (!input.beginObject()) {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
while (!input.isAtEnd()) {
|
||||||
|
switch (input.readFieldHash()) {
|
||||||
|
case 1151198177:
|
||||||
|
case 1347581146: {
|
||||||
|
if (input.isAtField(FieldNames.finishInfo)) {
|
||||||
|
if (!input.trySkipNullValue()) {
|
||||||
|
input.readMessage(finishInfo);
|
||||||
|
bitField0_ |= 0x00000001;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
input.skipUnknownField();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default: {
|
||||||
|
input.skipUnknownField();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
input.endObject();
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SyncRogueFinishScNotify clone() {
|
||||||
|
return new SyncRogueFinishScNotify().copyFrom(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isEmpty() {
|
||||||
|
return ((bitField0_) == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static SyncRogueFinishScNotify parseFrom(final byte[] data) throws
|
||||||
|
InvalidProtocolBufferException {
|
||||||
|
return ProtoMessage.mergeFrom(new SyncRogueFinishScNotify(), data).checkInitialized();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static SyncRogueFinishScNotify parseFrom(final ProtoSource input) throws IOException {
|
||||||
|
return ProtoMessage.mergeFrom(new SyncRogueFinishScNotify(), input).checkInitialized();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static SyncRogueFinishScNotify parseFrom(final JsonSource input) throws IOException {
|
||||||
|
return ProtoMessage.mergeFrom(new SyncRogueFinishScNotify(), input).checkInitialized();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return factory for creating SyncRogueFinishScNotify messages
|
||||||
|
*/
|
||||||
|
public static MessageFactory<SyncRogueFinishScNotify> getFactory() {
|
||||||
|
return SyncRogueFinishScNotifyFactory.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
private enum SyncRogueFinishScNotifyFactory implements MessageFactory<SyncRogueFinishScNotify> {
|
||||||
|
INSTANCE;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SyncRogueFinishScNotify create() {
|
||||||
|
return SyncRogueFinishScNotify.newInstance();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Contains name constants used for serializing JSON
|
||||||
|
*/
|
||||||
|
static class FieldNames {
|
||||||
|
static final FieldName finishInfo = FieldName.forField("finishInfo", "finish_info");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -15,7 +15,7 @@ public class HandlerSendMsgCsReq extends PacketHandler {
|
|||||||
public void handle(GameSession session, byte[] header, byte[] data) throws Exception {
|
public void handle(GameSession session, byte[] header, byte[] data) throws Exception {
|
||||||
var req = SendMsgCsReq.parseFrom(data);
|
var req = SendMsgCsReq.parseFrom(data);
|
||||||
|
|
||||||
for (int targetUid : req.getToUid()) {
|
for (int targetUid : req.getToUidList()) {
|
||||||
if (req.getMsgType() == MsgType.MSG_TYPE_CUSTOM_TEXT) {
|
if (req.getMsgType() == MsgType.MSG_TYPE_CUSTOM_TEXT) {
|
||||||
session.getPlayer().getChatManager().sendChat(targetUid, req.getText());
|
session.getPlayer().getChatManager().sendChat(targetUid, req.getText());
|
||||||
} else if (req.getMsgType() == MsgType.MSG_TYPE_EMOJI) {
|
} else if (req.getMsgType() == MsgType.MSG_TYPE_EMOJI) {
|
||||||
|
|||||||
Reference in New Issue
Block a user