Compare commits
No commits in common. "cf035dedac223af54a78643f7ae32e3968bad54a" and "9f5303ba745c72e868124d94743ac8fe5f41aecb" have entirely different histories.
cf035dedac
...
9f5303ba74
@ -58,37 +58,6 @@ public class Character extends Entity {
|
|||||||
this.meleeDamage = meleeDamage;
|
this.meleeDamage = meleeDamage;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs a new {@link Character} with an empty inventory.
|
|
||||||
* @param id The {@link EntityID} of the character
|
|
||||||
* @param position The position of the character
|
|
||||||
* @param name The name of the character
|
|
||||||
* @param maxHp The maximum hp of the character
|
|
||||||
* @param maxMp The maximum mp of the character
|
|
||||||
* @param maxAp The maximum ap of the character
|
|
||||||
* @param hp The current hp of the character
|
|
||||||
* @param mp The current mp of the character
|
|
||||||
* @param ap The current ap of the character
|
|
||||||
* @param attackRange The ranged attack range of the character
|
|
||||||
* @param rangedDamage The ranged damage of the character
|
|
||||||
* @param meleeDamage The melee damage of the character
|
|
||||||
*/
|
|
||||||
public Character(EntityID id, IntVector2 position, String name, int maxHp, int maxMp, int maxAp, int hp, int mp, int ap, int attackRange, int rangedDamage, int meleeDamage) {
|
|
||||||
super(id, position);
|
|
||||||
solid = false;
|
|
||||||
opaque = true;
|
|
||||||
if(id.type == EntityType.NPC && id.id == NPCType.Thanos.getID()) {
|
|
||||||
solid = true; //characters cannot walk into thanos
|
|
||||||
}
|
|
||||||
this.name = name;
|
|
||||||
this.hp = new Stat(StatType.HP, hp, maxHp);
|
|
||||||
this.mp = new Stat(StatType.MP, mp, maxMp);
|
|
||||||
this.ap = new Stat(StatType.AP, ap, maxAp);
|
|
||||||
this.attackRange = attackRange;
|
|
||||||
this.rangedDamage = rangedDamage;
|
|
||||||
this.meleeDamage = meleeDamage;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if the character is still alive.
|
* Checks if the character is still alive.
|
||||||
* @return Whether or not the characters hp is greater than 0
|
* @return Whether or not the characters hp is greater than 0
|
||||||
|
@ -32,8 +32,8 @@ public class Stat {
|
|||||||
*/
|
*/
|
||||||
public Stat(StatType type, int value, int max) {
|
public Stat(StatType type, int value, int max) {
|
||||||
this.type = type;
|
this.type = type;
|
||||||
this.value = value;
|
|
||||||
this.max = max;
|
this.max = max;
|
||||||
|
this.value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -42,7 +42,7 @@ public class Stat {
|
|||||||
* @param toCopy is the {@link Stat} to copy
|
* @param toCopy is the {@link Stat} to copy
|
||||||
*/
|
*/
|
||||||
public Stat(Stat toCopy) {
|
public Stat(Stat toCopy) {
|
||||||
this(toCopy.type, toCopy.getValue(), toCopy.getMax());
|
this(toCopy.type, toCopy.value, toCopy.max);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getValue() {
|
public int getValue() {
|
||||||
|
@ -119,7 +119,6 @@ public class GameInstance {
|
|||||||
manager.applyEvent(gameStateEvent);
|
manager.applyEvent(gameStateEvent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public GameState getGameStateUnsafe() {
|
public GameState getGameStateUnsafe() {
|
||||||
return _state;
|
return _state;
|
||||||
}
|
}
|
||||||
|
@ -136,52 +136,22 @@ public class GameLogic {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
case MindStone -> {
|
case MindStone -> {
|
||||||
verifyCoordinates(state, data.targetField);
|
|
||||||
|
|
||||||
requireLineOfSight(state, data.originField, data.targetField);
|
requireLineOfSight(state, data.originField, data.targetField);
|
||||||
|
|
||||||
getAttackableWithoutID(state, data.targetField);
|
|
||||||
}
|
}
|
||||||
case RealityStone -> {
|
case RealityStone -> {
|
||||||
verifyCoordinates(state, data.targetField);
|
// no check done
|
||||||
|
|
||||||
boolean rock = false;
|
|
||||||
boolean empty = true;
|
|
||||||
for(Entity entity: state.entities.findByPosition(data.targetField)) {
|
|
||||||
if(entity.id.type == EntityType.Rocks) {
|
|
||||||
rock = true;
|
|
||||||
break;
|
|
||||||
}else {
|
|
||||||
empty = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(!empty && !rock) {
|
|
||||||
throw new InvalidRequestException("Using reality stone on non-free field without a rock");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
case PowerStone -> {
|
case PowerStone -> {
|
||||||
verifyCoordinates(state, data.targetField);
|
Character target = getCharacter(state, data.targetField, data.targetEntity);
|
||||||
|
|
||||||
Entity target = getAttackableWithoutID(state, data.targetField);
|
requireAlive(target);
|
||||||
|
requireOppositeTeam(origin, target);
|
||||||
if(target instanceof Character) {
|
|
||||||
Character targetCharacter = (Character)target;
|
|
||||||
|
|
||||||
requireOppositeTeam(origin, targetCharacter);
|
|
||||||
requireAlive(targetCharacter);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(data.originField.distanceChebyshev(data.targetField) != 1) {
|
|
||||||
throw new InvalidRequestException("Invalid melee target distance");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
case TimeStone -> {
|
case TimeStone -> {
|
||||||
// "👍 i approve" - the server
|
// "👍 i approve" - the server
|
||||||
}
|
}
|
||||||
case SoulStone -> {
|
case SoulStone -> {
|
||||||
verifyCoordinates(state, data.targetField);
|
Character target = getCharacter(state, data.targetField, data.targetEntity);
|
||||||
|
|
||||||
Character target = getCharacterWithoutID(state, data.targetField);
|
|
||||||
|
|
||||||
if(data.originEntity.equals(data.targetEntity)) {
|
if(data.originEntity.equals(data.targetEntity)) {
|
||||||
throw new InvalidRequestException("Invalid soul stone target (same as origin)");
|
throw new InvalidRequestException("Invalid soul stone target (same as origin)");
|
||||||
@ -229,21 +199,6 @@ public class GameLogic {
|
|||||||
return entity;
|
return entity;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieves an attack-able Entity ({@link Character} or {@link Rock}) for a {@link Request}.
|
|
||||||
* @param state The game state to use
|
|
||||||
* @param position The requested position
|
|
||||||
* @return The found entity
|
|
||||||
* @throws InvalidRequestException if the entity is invalid or not found
|
|
||||||
*/
|
|
||||||
private static Entity getAttackableWithoutID(GameState state, IntVector2 position) throws InvalidRequestException {
|
|
||||||
ArrayList<Entity> entities = state.entities.findByPosition(position);
|
|
||||||
if(entities.isEmpty() || entities.get(0).id.type == EntityType.NPC) {
|
|
||||||
throw new InvalidRequestException("Invalid target character or rock");
|
|
||||||
}
|
|
||||||
return entities.get(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves a {@link Character} for a {@link Request}.
|
* Retrieves a {@link Character} for a {@link Request}.
|
||||||
* @param state The game state to use
|
* @param state The game state to use
|
||||||
@ -264,25 +219,6 @@ public class GameLogic {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieves a {@link Character} for a {@link Request}.
|
|
||||||
* @param state The game state to use
|
|
||||||
* @param position The requested position
|
|
||||||
* @return The found character
|
|
||||||
* @throws InvalidRequestException if the character is invalid or not found
|
|
||||||
*/
|
|
||||||
private static Character getCharacterWithoutID(GameState state, IntVector2 position) throws InvalidRequestException {
|
|
||||||
ArrayList<Entity> entities = state.entities.findByPosition(position);
|
|
||||||
if(entities.isEmpty() || !(entities.get(0) instanceof Character) || entities.get(0).id.type == EntityType.NPC) {
|
|
||||||
throw new InvalidRequestException("Invalid origin or target character");
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
return (Character)entities.get(0);
|
|
||||||
}catch(Exception ignored) {
|
|
||||||
throw new InvalidRequestException("Invalid origin or target character (cast failed)");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verifies that a {@link Character} has a turn.
|
* Verifies that a {@link Character} has a turn.
|
||||||
*/
|
*/
|
||||||
@ -513,8 +449,7 @@ public class GameLogic {
|
|||||||
.buildCharacterEvent());
|
.buildCharacterEvent());
|
||||||
}
|
}
|
||||||
case MindStone -> {
|
case MindStone -> {
|
||||||
ArrayList<Entity> found = state.entities.findByPosition(data.targetField);
|
Entity targetEntity = state.entities.findEntity(data.targetEntity);
|
||||||
Entity targetEntity = found.get(0);
|
|
||||||
|
|
||||||
result.add(new EventBuilder(EventType.TakenDamageEvent)
|
result.add(new EventBuilder(EventType.TakenDamageEvent)
|
||||||
.withTargetEntity(targetEntity.id)
|
.withTargetEntity(targetEntity.id)
|
||||||
@ -524,7 +459,7 @@ public class GameLogic {
|
|||||||
|
|
||||||
if(targetEntity instanceof Character) {
|
if(targetEntity instanceof Character) {
|
||||||
Character target = (Character)targetEntity;
|
Character target = (Character)targetEntity;
|
||||||
if(target.hp.getValue() <= state.partyConfig.mindStoneDMG) {
|
if(target.hp.getValue() <= data.value) {
|
||||||
|
|
||||||
List<StoneType> stones = Arrays.asList(target.inventory.getStonesAsArray());
|
List<StoneType> stones = Arrays.asList(target.inventory.getStonesAsArray());
|
||||||
Collections.shuffle(stones); // required by documents
|
Collections.shuffle(stones); // required by documents
|
||||||
@ -545,7 +480,7 @@ public class GameLogic {
|
|||||||
}
|
}
|
||||||
}else if(targetEntity instanceof Rock) {
|
}else if(targetEntity instanceof Rock) {
|
||||||
Rock target = (Rock)targetEntity;
|
Rock target = (Rock)targetEntity;
|
||||||
if(target.getHp() <= state.partyConfig.mindStoneDMG) {
|
if(target.getHp() <= data.value) {
|
||||||
result.add(new EventBuilder(EventType.DestroyedEntityEvent)
|
result.add(new EventBuilder(EventType.DestroyedEntityEvent)
|
||||||
.withTargetField(data.targetField)
|
.withTargetField(data.targetField)
|
||||||
.withTargetEntity(target.id)
|
.withTargetEntity(target.id)
|
||||||
@ -574,9 +509,6 @@ public class GameLogic {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
case PowerStone -> {
|
case PowerStone -> {
|
||||||
ArrayList<Entity> found = state.entities.findByPosition(data.targetField);
|
|
||||||
Entity targetEntity = found.get(0);
|
|
||||||
|
|
||||||
Character origin = (Character)state.entities.findEntity(data.originEntity);
|
Character origin = (Character)state.entities.findEntity(data.originEntity);
|
||||||
int dmg = (int)Math.round(origin.hp.getMax() * 0.1);
|
int dmg = (int)Math.round(origin.hp.getMax() * 0.1);
|
||||||
//this is ugly ... but also easy to understand
|
//this is ugly ... but also easy to understand
|
||||||
@ -591,7 +523,7 @@ public class GameLogic {
|
|||||||
.buildEntityEvent());
|
.buildEntityEvent());
|
||||||
}
|
}
|
||||||
result.add(new EventBuilder(EventType.TakenDamageEvent)
|
result.add(new EventBuilder(EventType.TakenDamageEvent)
|
||||||
.withTargetEntity(targetEntity.id)
|
.withTargetEntity(data.targetEntity)
|
||||||
.withTargetField(data.targetField)
|
.withTargetField(data.targetField)
|
||||||
.withAmount(origin.meleeDamage * 2)
|
.withAmount(origin.meleeDamage * 2)
|
||||||
.buildEntityEvent());
|
.buildEntityEvent());
|
||||||
@ -616,11 +548,9 @@ public class GameLogic {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
case SoulStone -> {
|
case SoulStone -> {
|
||||||
ArrayList<Entity> found = state.entities.findByPosition(data.targetField);
|
Character target = (Character)state.entities.findEntity(data.targetEntity);
|
||||||
Character target = (Character)found.get(0);
|
|
||||||
|
|
||||||
result.add(new EventBuilder(EventType.HealedEvent)
|
result.add(new EventBuilder(EventType.HealedEvent)
|
||||||
.withTargetEntity(target.id)
|
.withTargetEntity(data.targetEntity)
|
||||||
.withTargetField(data.targetField)
|
.withTargetField(data.targetField)
|
||||||
.withAmount(target.hp.getMax())
|
.withAmount(target.hp.getMax())
|
||||||
.buildEntityEvent());
|
.buildEntityEvent());
|
||||||
|
@ -43,9 +43,6 @@ public class EntityDeserializer extends JsonDeserializer<Entity> {
|
|||||||
id,
|
id,
|
||||||
codec.treeToValue(node.get("position"), IntVector2.class),
|
codec.treeToValue(node.get("position"), IntVector2.class),
|
||||||
characterName,
|
characterName,
|
||||||
properties.HP,
|
|
||||||
properties.MP,
|
|
||||||
properties.AP,
|
|
||||||
node.get("HP").asInt(),
|
node.get("HP").asInt(),
|
||||||
node.get("MP").asInt(),
|
node.get("MP").asInt(),
|
||||||
node.get("AP").asInt(),
|
node.get("AP").asInt(),
|
||||||
|
Loading…
Reference in New Issue
Block a user