forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.6 KiB
89 lines
2.6 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
|
|
package engine.net.client.msg.login; |
|
|
|
|
|
import engine.net.AbstractConnection; |
|
import engine.net.ByteBufferReader; |
|
import engine.net.ByteBufferWriter; |
|
import engine.net.client.Protocol; |
|
import engine.net.client.msg.ClientNetMsg; |
|
import engine.server.world.WorldServer; |
|
|
|
public class InvalidNameMsg extends ClientNetMsg { |
|
|
|
private String FirstName; |
|
private String LastName; |
|
private int errorCode; |
|
private int serverID; |
|
/** |
|
* This is the general purpose constructor. |
|
*/ |
|
public InvalidNameMsg(String FirstName, String LastName, |
|
int errorCode) { |
|
super(Protocol.NAMEVERIFY); |
|
this.FirstName = FirstName; |
|
this.LastName = LastName; |
|
this.errorCode = errorCode; |
|
} |
|
|
|
/** |
|
* This constructor is used by NetMsgFactory. It attempts to deserialize the ByteBuffer into a message. If a BufferUnderflow occurs (based on reading past the limit) then this constructor Throws that Exception to the caller. |
|
*/ |
|
public InvalidNameMsg(AbstractConnection origin, ByteBufferReader reader) |
|
{ |
|
super(Protocol.NAMEVERIFY, origin, reader); |
|
} |
|
|
|
/** |
|
* Serializes the subclass specific items to the supplied ByteBufferWriter. |
|
*/ |
|
@Override |
|
protected void _serialize(ByteBufferWriter writer) { |
|
writer.putString(this.FirstName); |
|
writer.putString(this.LastName); |
|
writer.putInt(WorldServer.worldMapID); |
|
writer.putInt(errorCode); |
|
} |
|
|
|
/** |
|
* Deserializes the subclass specific items from the supplied ByteBufferReader. |
|
*/ |
|
@Override |
|
protected void _deserialize(ByteBufferReader reader) { |
|
this.FirstName = reader.getString(); |
|
this.LastName = reader.getString(); |
|
this.serverID = reader.getInt(); |
|
reader.monitorInt(0, "InvalidNameMsg 01"); |
|
} |
|
|
|
|
|
/** |
|
* @return the firstName |
|
*/ |
|
public String getFirstName() { |
|
return FirstName; |
|
} |
|
|
|
/** |
|
* @return the lastName |
|
*/ |
|
public String getLastName() { |
|
return LastName; |
|
} |
|
|
|
/** |
|
* @return the errorCode |
|
*/ |
|
public int getErrorCode() { |
|
return errorCode; |
|
} |
|
|
|
}
|
|
|