2021-04-29 14:45:18 +00:00
|
|
|
package uulm.teamname.marvelous.gamelibrary.entities;
|
2021-04-29 14:40:23 +00:00
|
|
|
|
2021-04-30 18:54:34 +00:00
|
|
|
/** Represents a distinct identification for every {@link Entity} in a game. */
|
2021-04-29 14:40:23 +00:00
|
|
|
public class EntityID {
|
2021-04-30 18:54:34 +00:00
|
|
|
/** The index of the entity */
|
2021-04-29 14:40:23 +00:00
|
|
|
public final int id;
|
|
|
|
|
2021-04-30 18:54:34 +00:00
|
|
|
/** The type of the entity */
|
2021-04-29 14:40:23 +00:00
|
|
|
public final EntityType type;
|
|
|
|
|
2021-04-30 18:54:34 +00:00
|
|
|
/**
|
|
|
|
* Constructs a new {@link Entity}-{@link EntityID} based on the given index and {@link EntityType}.
|
|
|
|
* @param id The index of the entity
|
|
|
|
* @param type The type of the entity
|
2021-04-29 14:40:23 +00:00
|
|
|
*/
|
|
|
|
public EntityID(int id, EntityType type) {
|
|
|
|
this.id = id;
|
|
|
|
this.type = type;
|
|
|
|
}
|
|
|
|
|
2021-04-30 18:54:34 +00:00
|
|
|
/**
|
|
|
|
* Checks if the id has the same {@link EntityType} as the given one.
|
|
|
|
* @param other The type to compare to
|
|
|
|
* @return Whether or not the id has the same type
|
2021-04-29 14:40:23 +00:00
|
|
|
*/
|
|
|
|
public boolean isSameType(EntityType other) {
|
|
|
|
return type == other;
|
|
|
|
}
|
|
|
|
|
2021-04-30 18:54:34 +00:00
|
|
|
/**
|
|
|
|
* Serializes the id for debugging.
|
|
|
|
* @return A debug string containing all the necessary information about the id
|
2021-04-29 14:40:23 +00:00
|
|
|
*/
|
|
|
|
public String toString() {
|
|
|
|
return "["+type.toString()+":"+id+"]";
|
|
|
|
}
|
|
|
|
}
|