Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

32 linhas
684 B

  1. package events;
  2. import com.fasterxml.jackson.databind.JsonNode;
  3. import akka.actor.ActorRef;
  4. import structures.GameState;
  5. /**
  6. * Indicates that the user has clicked an object on the game canvas, in this case a card.
  7. * The event returns the position in the player's hand the card resides within.
  8. *
  9. * {
  10. * messageType = “cardClicked”
  11. * position = <hand index position [1-6]>
  12. * }
  13. *
  14. * @author Dr. Richard McCreadie
  15. *
  16. */
  17. public class CardClicked implements EventProcessor{
  18. @Override
  19. public void processEvent(ActorRef out, GameState gameState, JsonNode message) {
  20. int handPosition = message.get("position").asInt();
  21. }
  22. }