50 lines
1.8 KiB
Java
50 lines
1.8 KiB
Java
package uulm.teamname.marvelous.gamelibrary.messages;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
import uulm.teamname.marvelous.gamelibrary.events.Event;
|
|
import uulm.teamname.marvelous.gamelibrary.requests.Request;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.HashMap;
|
|
import java.util.Objects;
|
|
|
|
/** Represents a message sent between client and server and contains all possible data. */
|
|
public class RequestMessage extends BasicMessage {
|
|
|
|
public final MessageType messageType = MessageType.REQUESTS;
|
|
|
|
/** The list of {@link Event Events} sent inside the message. */
|
|
public Request[] messages;
|
|
|
|
/** The type of the custom content sent with the message. */
|
|
public String customContentType;
|
|
|
|
/** The decoded contents of the custom content sent. */
|
|
public HashMap<String, Object> customContent;
|
|
|
|
@Override @JsonIgnore
|
|
public boolean equals(Object o) {
|
|
if (this == o) return true;
|
|
if (o == null || getClass() != o.getClass()) return false;
|
|
RequestMessage that = (RequestMessage) o;
|
|
return messageType == that.messageType && Arrays.equals(messages, that.messages) && Objects.equals(customContentType, that.customContentType) && Objects.equals(customContent, that.customContent);
|
|
}
|
|
|
|
@Override @JsonIgnore
|
|
public int hashCode() {
|
|
int result = Objects.hash(messageType, customContentType, customContent);
|
|
result = 31 * result + Arrays.hashCode(messages);
|
|
return result;
|
|
}
|
|
|
|
@Override @JsonIgnore
|
|
public String toString() {
|
|
return "MessageStructure{" +
|
|
"messageType=" + messageType +
|
|
", messages=" + Arrays.toString(messages) +
|
|
", customContentType='" + customContentType + '\'' +
|
|
", customContent=" + customContent +
|
|
'}';
|
|
}
|
|
}
|