You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

122 rivejä
4.3 KiB

  1. package actors;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. import java.util.Set;
  5. import com.fasterxml.jackson.databind.JsonNode;
  6. import com.fasterxml.jackson.databind.ObjectMapper;
  7. import com.fasterxml.jackson.databind.node.ObjectNode;
  8. import akka.actor.AbstractActor;
  9. import akka.actor.ActorRef;
  10. import events.CardClicked;
  11. import events.EndTurnClicked;
  12. import events.EventProcessor;
  13. import events.Heartbeat;
  14. import events.Initalize;
  15. import events.OtherClicked;
  16. import events.TileClicked;
  17. import events.UnitMoving;
  18. import events.UnitStopped;
  19. import play.libs.Json;
  20. import structures.GameState;
  21. import utils.ImageListForPreLoad;
  22. import play.libs.Json;
  23. /**
  24. * The game actor is an Akka Actor that receives events from the user front-end UI (e.g. when
  25. * the user clicks on the board) via a websocket connection. When an event arrives, the
  26. * processMessage() method is called, which can be used to react to the event. The Game actor
  27. * also includes an ActorRef object which can be used to issue commands to the UI to change
  28. * what the user sees. The GameActor is created when the user browser creates a websocket
  29. * connection to back-end services (on load of the game web page).
  30. * @author Dr. Richard McCreadie
  31. *
  32. */
  33. public class GameActor extends AbstractActor {
  34. private ObjectMapper mapper = new ObjectMapper(); // Jackson Java Object Serializer, is used to turn java objects to Strings
  35. private ActorRef out; // The ActorRef can be used to send messages to the front-end UI
  36. private Map<String,EventProcessor> eventProcessors; // Classes used to process each type of event
  37. private GameState gameState; // A class that can be used to hold game state information
  38. /**
  39. * Constructor for the GameActor. This is called by the GameController when the websocket
  40. * connection to the front-end is established.
  41. * @param out
  42. */
  43. @SuppressWarnings("deprecation")
  44. public GameActor(ActorRef out) {
  45. this.out = out; // save this, so we can send commands to the front-end later
  46. // create class instances to respond to the various events that we might recieve
  47. eventProcessors = new HashMap<String,EventProcessor>();
  48. eventProcessors.put("initalize", new Initalize());
  49. eventProcessors.put("heartbeat", new Heartbeat());
  50. eventProcessors.put("unitMoving", new UnitMoving());
  51. eventProcessors.put("unitstopped", new UnitStopped());
  52. eventProcessors.put("tileclicked", new TileClicked());
  53. eventProcessors.put("cardclicked", new CardClicked());
  54. eventProcessors.put("endturnclicked", new EndTurnClicked());
  55. eventProcessors.put("otherclicked", new OtherClicked());
  56. // Initalize a new game state object
  57. gameState = new GameState();
  58. // Get the list of image files to pre-load the UI with
  59. Set<String> images = ImageListForPreLoad.getImageListForPreLoad();
  60. try {
  61. ObjectNode readyMessage = Json.newObject();
  62. readyMessage.put("messagetype", "actorReady");
  63. readyMessage.put("preloadImages", mapper.readTree(mapper.writeValueAsString(images)));
  64. out.tell(readyMessage, out);
  65. } catch (Exception e) {
  66. e.printStackTrace();
  67. }
  68. }
  69. /**
  70. * This method simply farms out the processing of the json messages from the front-end to the
  71. * processMessage method
  72. * @return
  73. */
  74. public Receive createReceive() {
  75. return receiveBuilder()
  76. .match(JsonNode.class, message -> {
  77. System.out.println(message);
  78. processMessage(message.get("messagetype").asText(), message);
  79. }).build();
  80. }
  81. /**
  82. * This looks up an event processor for the specified message type.
  83. * Note that this processing is asynchronous.
  84. * @param messageType
  85. * @param message
  86. * @return
  87. * @throws Exception
  88. */
  89. @SuppressWarnings({"deprecation"})
  90. public void processMessage(String messageType, JsonNode message) throws Exception{
  91. EventProcessor processor = eventProcessors.get(messageType);
  92. if (processor==null) {
  93. // Unknown event type received
  94. System.err.println("GameActor: Recieved unknown event type "+messageType);
  95. } else {
  96. processor.processEvent(out, gameState, message); // process the event
  97. }
  98. }
  99. public void reportError(String errorText) {
  100. ObjectNode returnMessage = Json.newObject();
  101. returnMessage.put("messagetype", "ERR");
  102. returnMessage.put("error", errorText);
  103. out.tell(returnMessage, out);
  104. }
  105. }