mirror of
https://github.com/Melledy/LunarCore.git
synced 2025-12-14 14:24:37 +01:00
Remove unnecessary packet
This commit is contained in:
@@ -1,296 +0,0 @@
|
||||
// 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;
|
||||
import us.hebi.quickbuf.RepeatedMessage;
|
||||
|
||||
public final class SceneEntityUpdateScNotifyOuterClass {
|
||||
/**
|
||||
* Protobuf type {@code SceneEntityUpdateScNotify}
|
||||
*/
|
||||
public static final class SceneEntityUpdateScNotify extends ProtoMessage<SceneEntityUpdateScNotify> implements Cloneable {
|
||||
private static final long serialVersionUID = 0L;
|
||||
|
||||
/**
|
||||
* <code>repeated .SceneEntityInfo entity_list = 11;</code>
|
||||
*/
|
||||
private final RepeatedMessage<SceneEntityInfoOuterClass.SceneEntityInfo> entityList = RepeatedMessage.newEmptyInstance(SceneEntityInfoOuterClass.SceneEntityInfo.getFactory());
|
||||
|
||||
private SceneEntityUpdateScNotify() {
|
||||
}
|
||||
|
||||
/**
|
||||
* @return a new empty instance of {@code SceneEntityUpdateScNotify}
|
||||
*/
|
||||
public static SceneEntityUpdateScNotify newInstance() {
|
||||
return new SceneEntityUpdateScNotify();
|
||||
}
|
||||
|
||||
/**
|
||||
* <code>repeated .SceneEntityInfo entity_list = 11;</code>
|
||||
* @return whether the entityList field is set
|
||||
*/
|
||||
public boolean hasEntityList() {
|
||||
return (bitField0_ & 0x00000001) != 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* <code>repeated .SceneEntityInfo entity_list = 11;</code>
|
||||
* @return this
|
||||
*/
|
||||
public SceneEntityUpdateScNotify clearEntityList() {
|
||||
bitField0_ &= ~0x00000001;
|
||||
entityList.clear();
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* <code>repeated .SceneEntityInfo entity_list = 11;</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 #getMutableEntityList()} if you want to modify it.
|
||||
*
|
||||
* @return internal storage object for reading
|
||||
*/
|
||||
public RepeatedMessage<SceneEntityInfoOuterClass.SceneEntityInfo> getEntityList() {
|
||||
return entityList;
|
||||
}
|
||||
|
||||
/**
|
||||
* <code>repeated .SceneEntityInfo entity_list = 11;</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 RepeatedMessage<SceneEntityInfoOuterClass.SceneEntityInfo> getMutableEntityList() {
|
||||
bitField0_ |= 0x00000001;
|
||||
return entityList;
|
||||
}
|
||||
|
||||
/**
|
||||
* <code>repeated .SceneEntityInfo entity_list = 11;</code>
|
||||
* @param value the entityList to add
|
||||
* @return this
|
||||
*/
|
||||
public SceneEntityUpdateScNotify addEntityList(
|
||||
final SceneEntityInfoOuterClass.SceneEntityInfo value) {
|
||||
bitField0_ |= 0x00000001;
|
||||
entityList.add(value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* <code>repeated .SceneEntityInfo entity_list = 11;</code>
|
||||
* @param values the entityList to add
|
||||
* @return this
|
||||
*/
|
||||
public SceneEntityUpdateScNotify addAllEntityList(
|
||||
final SceneEntityInfoOuterClass.SceneEntityInfo... values) {
|
||||
bitField0_ |= 0x00000001;
|
||||
entityList.addAll(values);
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SceneEntityUpdateScNotify copyFrom(final SceneEntityUpdateScNotify other) {
|
||||
cachedSize = other.cachedSize;
|
||||
if ((bitField0_ | other.bitField0_) != 0) {
|
||||
bitField0_ = other.bitField0_;
|
||||
entityList.copyFrom(other.entityList);
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SceneEntityUpdateScNotify mergeFrom(final SceneEntityUpdateScNotify other) {
|
||||
if (other.isEmpty()) {
|
||||
return this;
|
||||
}
|
||||
cachedSize = -1;
|
||||
if (other.hasEntityList()) {
|
||||
getMutableEntityList().addAll(other.entityList);
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SceneEntityUpdateScNotify clear() {
|
||||
if (isEmpty()) {
|
||||
return this;
|
||||
}
|
||||
cachedSize = -1;
|
||||
bitField0_ = 0;
|
||||
entityList.clear();
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SceneEntityUpdateScNotify clearQuick() {
|
||||
if (isEmpty()) {
|
||||
return this;
|
||||
}
|
||||
cachedSize = -1;
|
||||
bitField0_ = 0;
|
||||
entityList.clearQuick();
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (o == this) {
|
||||
return true;
|
||||
}
|
||||
if (!(o instanceof SceneEntityUpdateScNotify)) {
|
||||
return false;
|
||||
}
|
||||
SceneEntityUpdateScNotify other = (SceneEntityUpdateScNotify) o;
|
||||
return bitField0_ == other.bitField0_
|
||||
&& (!hasEntityList() || entityList.equals(other.entityList));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void writeTo(final ProtoSink output) throws IOException {
|
||||
if ((bitField0_ & 0x00000001) != 0) {
|
||||
for (int i = 0; i < entityList.length(); i++) {
|
||||
output.writeRawByte((byte) 90);
|
||||
output.writeMessageNoTag(entityList.get(i));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int computeSerializedSize() {
|
||||
int size = 0;
|
||||
if ((bitField0_ & 0x00000001) != 0) {
|
||||
size += (1 * entityList.length()) + ProtoSink.computeRepeatedMessageSizeNoTag(entityList);
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("fallthrough")
|
||||
public SceneEntityUpdateScNotify mergeFrom(final ProtoSource input) throws IOException {
|
||||
// Enabled Fall-Through Optimization (QuickBuffers)
|
||||
int tag = input.readTag();
|
||||
while (true) {
|
||||
switch (tag) {
|
||||
case 90: {
|
||||
// entityList
|
||||
tag = input.readRepeatedMessage(entityList, tag);
|
||||
bitField0_ |= 0x00000001;
|
||||
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.writeRepeatedMessage(FieldNames.entityList, entityList);
|
||||
}
|
||||
output.endObject();
|
||||
}
|
||||
|
||||
@Override
|
||||
public SceneEntityUpdateScNotify mergeFrom(final JsonSource input) throws IOException {
|
||||
if (!input.beginObject()) {
|
||||
return this;
|
||||
}
|
||||
while (!input.isAtEnd()) {
|
||||
switch (input.readFieldHash()) {
|
||||
case -1483251935:
|
||||
case 1281457018: {
|
||||
if (input.isAtField(FieldNames.entityList)) {
|
||||
if (!input.trySkipNullValue()) {
|
||||
input.readRepeatedMessage(entityList);
|
||||
bitField0_ |= 0x00000001;
|
||||
}
|
||||
} else {
|
||||
input.skipUnknownField();
|
||||
}
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
input.skipUnknownField();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
input.endObject();
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SceneEntityUpdateScNotify clone() {
|
||||
return new SceneEntityUpdateScNotify().copyFrom(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isEmpty() {
|
||||
return ((bitField0_) == 0);
|
||||
}
|
||||
|
||||
public static SceneEntityUpdateScNotify parseFrom(final byte[] data) throws
|
||||
InvalidProtocolBufferException {
|
||||
return ProtoMessage.mergeFrom(new SceneEntityUpdateScNotify(), data).checkInitialized();
|
||||
}
|
||||
|
||||
public static SceneEntityUpdateScNotify parseFrom(final ProtoSource input) throws IOException {
|
||||
return ProtoMessage.mergeFrom(new SceneEntityUpdateScNotify(), input).checkInitialized();
|
||||
}
|
||||
|
||||
public static SceneEntityUpdateScNotify parseFrom(final JsonSource input) throws IOException {
|
||||
return ProtoMessage.mergeFrom(new SceneEntityUpdateScNotify(), input).checkInitialized();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return factory for creating SceneEntityUpdateScNotify messages
|
||||
*/
|
||||
public static MessageFactory<SceneEntityUpdateScNotify> getFactory() {
|
||||
return SceneEntityUpdateScNotifyFactory.INSTANCE;
|
||||
}
|
||||
|
||||
private enum SceneEntityUpdateScNotifyFactory implements MessageFactory<SceneEntityUpdateScNotify> {
|
||||
INSTANCE;
|
||||
|
||||
@Override
|
||||
public SceneEntityUpdateScNotify create() {
|
||||
return SceneEntityUpdateScNotify.newInstance();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Contains name constants used for serializing JSON
|
||||
*/
|
||||
static class FieldNames {
|
||||
static final FieldName entityList = FieldName.forField("entityList", "entity_list");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
package emu.lunarcore.server.packet.send;
|
||||
|
||||
import emu.lunarcore.game.scene.entity.GameEntity;
|
||||
import emu.lunarcore.proto.SceneEntityUpdateScNotifyOuterClass.SceneEntityUpdateScNotify;
|
||||
import emu.lunarcore.server.packet.BasePacket;
|
||||
import emu.lunarcore.server.packet.CmdId;
|
||||
|
||||
public class PacketSceneEntityUpdateScNotify extends BasePacket {
|
||||
|
||||
public PacketSceneEntityUpdateScNotify(GameEntity toAdd) {
|
||||
super(CmdId.SceneEntityUpdateScNotify);
|
||||
|
||||
var data = SceneEntityUpdateScNotify.newInstance()
|
||||
.addEntityList(toAdd.toSceneEntityProto());
|
||||
|
||||
this.setData(data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user