Project cleanup pre merge.

This commit is contained in:
2023-07-15 09:23:48 -04:00
parent 134b651df8
commit 9bbdef224d
747 changed files with 99704 additions and 101200 deletions
@@ -7,9 +7,6 @@
// www.magicbane.com
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
@@ -19,9 +16,6 @@
// www.magicbane.com
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
@@ -31,9 +25,6 @@
// www.magicbane.com
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
@@ -54,101 +45,98 @@ import engine.net.client.msg.ClientNetMsg;
public class AcceptSubInviteMsg extends ClientNetMsg {
private int guildUUID;
private int unknown01;
private int unknown02;
private String response;
private int guildUUID;
private int unknown01;
private int unknown02;
private String response;
/**
* This is the general purpose constructor.
*/
public AcceptSubInviteMsg() {
super(Protocol.JOINFORPROVINCE);
}
/**
* This is the general purpose constructor.
*/
public AcceptSubInviteMsg() {
super(Protocol.JOINFORPROVINCE);
}
public AcceptSubInviteMsg(int guildUUID, int unknown01, int unknown02, String response) {
super(Protocol.JOINFORPROVINCE);
this.guildUUID = guildUUID;
this.unknown01 = unknown01;
this.unknown02 = unknown02;
this.response = response;
}
public AcceptSubInviteMsg(int guildUUID, int unknown01, int unknown02, String response) {
super(Protocol.JOINFORPROVINCE);
this.guildUUID = guildUUID;
this.unknown01 = unknown01;
this.unknown02 = unknown02;
this.response = response;
}
/**
* 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 AcceptSubInviteMsg(AbstractConnection origin, ByteBufferReader reader)
{
super(Protocol.JOINFORPROVINCE, origin, reader);
}
/**
* 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 AcceptSubInviteMsg(AbstractConnection origin, ByteBufferReader reader) {
super(Protocol.JOINFORPROVINCE, origin, reader);
}
/**
* Serializes the subclass specific items to the supplied ByteBufferWriter.
*/
@Override
protected void _serialize(ByteBufferWriter writer) {
writer.putInt(GameObjectType.Guild.ordinal());
writer.putInt(this.guildUUID);
writer.putInt(this.unknown01);
writer.putInt(this.unknown02);
writer.putString(this.response);
}
/**
* Serializes the subclass specific items to the supplied ByteBufferWriter.
*/
@Override
protected void _serialize(ByteBufferWriter writer) {
writer.putInt(GameObjectType.Guild.ordinal());
writer.putInt(this.guildUUID);
writer.putInt(this.unknown01);
writer.putInt(this.unknown02);
writer.putString(this.response);
}
/**
* Deserializes the subclass specific items from the supplied ByteBufferReader.
*/
@Override
protected void _deserialize(ByteBufferReader reader) {
reader.getInt(); // Object Type Padding
this.guildUUID = reader.getInt();
this.unknown01 = reader.getInt();
this.unknown02 = reader.getInt();
reader.getString();
}
/**
* Deserializes the subclass specific items from the supplied ByteBufferReader.
*/
@Override
protected void _deserialize(ByteBufferReader reader) {
reader.getInt(); // Object Type Padding
this.guildUUID = reader.getInt();
this.unknown01 = reader.getInt();
this.unknown02 = reader.getInt();
reader.getString();
}
/**
* @return the guildUUID
*/
public int guildUUID() {
return guildUUID;
}
/**
* @return the guildUUID
*/
public int guildUUID() {
return guildUUID;
}
/**
* @return the unknown01
*/
public int getUnknown01() {
return unknown01;
}
/**
* @return the unknown01
*/
public int getUnknown01() {
return unknown01;
}
/**
* @param unknown01
* the unknown01 to set
*/
public void setUnknown01(int unknown01) {
this.unknown01 = unknown01;
}
/**
* @param unknown01 the unknown01 to set
*/
public void setUnknown01(int unknown01) {
this.unknown01 = unknown01;
}
/**
* @return the unknown02
*/
public int getUnknown02() {
return unknown02;
}
/**
* @return the unknown02
*/
public int getUnknown02() {
return unknown02;
}
/**
* @param unknown02
* the unknown02 to set
*/
public void setUnknown02(int unknown02) {
this.unknown02 = unknown02;
}
/**
* @param unknown02 the unknown02 to set
*/
public void setUnknown02(int unknown02) {
this.unknown02 = unknown02;
}
public String getResponse() {
return this.response;
}
public String getResponse() {
return this.response;
}
public void setResponse(String value) {
this.response = value;
}
public void setResponse(String value) {
this.response = value;
}
}