/src/main/java/com/jcloisterzone/game/save/SavedGame.java

http://github.com/farin/JCloisterZone · Java · 450 lines · 195 code · 49 blank · 206 comment · 4 complexity · 79a1634d1902a6c8823e7876bf8ebcfc MD5 · raw file

  1. package com.jcloisterzone.game.save;
  2. import java.io.Serializable;
  3. import java.util.ArrayList;
  4. import java.util.Date;
  5. import java.util.HashMap;
  6. import java.util.List;
  7. import java.util.Map;
  8. import java.util.Set;
  9. import com.google.gson.annotations.JsonAdapter;
  10. import com.jcloisterzone.Expansion;
  11. import com.jcloisterzone.PlayerClock;
  12. import com.jcloisterzone.game.Capability;
  13. import com.jcloisterzone.game.Game;
  14. import com.jcloisterzone.game.GameSetup;
  15. import com.jcloisterzone.game.PlayerSlot;
  16. import com.jcloisterzone.game.Rule;
  17. import com.jcloisterzone.ui.JCloisterZone;
  18. import com.jcloisterzone.wsio.message.WsReplayableMessage;
  19. import com.jcloisterzone.wsio.message.adapters.CapabilitiesSetAdapter;
  20. import com.jcloisterzone.wsio.message.adapters.ExpansionMapAdapter;
  21. import com.jcloisterzone.wsio.message.adapters.RulesMapAdapter;
  22. /**
  23. * Represents a saved game. This includes information of all players as well as replay data.
  24. */
  25. public class SavedGame implements Serializable {
  26. private static final long serialVersionUID = 1L;
  27. private String gameId;
  28. private String name;
  29. private String appVersion;
  30. private long initialSeed;
  31. private Date created;
  32. private List<SavedGamePlayerSlot> slots;
  33. private long[] clocks;
  34. private SavedGameSetup setup;
  35. private List<WsReplayableMessage> replay;
  36. private HashMap<String, Object> annotations;
  37. /**
  38. * Instantiates an empty {@code SavedGame}.
  39. */
  40. public SavedGame() {
  41. }
  42. /**
  43. * Instantiates a {@code SavedGame} with the data of {@code game}.
  44. *
  45. * @param game the game to store
  46. */
  47. public SavedGame(Game game) {
  48. gameId = game.getGameId();
  49. name = game.getName();
  50. appVersion = JCloisterZone.VERSION;
  51. initialSeed = game.getInitialSeed();
  52. created = new Date();
  53. slots = new ArrayList<>();
  54. for (PlayerSlot slot : game.getPlayerSlots()) {
  55. if (slot != null && slot.isOccupied()) {
  56. slots.add(new SavedGamePlayerSlot(
  57. slot.getNumber(),
  58. slot.getSerial(),
  59. slot.getClientId(),
  60. slot.getNickname(),
  61. slot.getAiClassName()
  62. ));
  63. }
  64. }
  65. clocks = game.getClocks().map(PlayerClock::getTime).toJavaStream().mapToLong(Long::longValue).toArray();
  66. setup = new SavedGameSetup();
  67. setup.setExpansions(game.getSetup().getExpansions().toJavaMap());
  68. setup.setRules(game.getSetup().getRules().toJavaMap());
  69. setup.setCapabilities(game.getSetup().getCapabilities().toJavaSet());
  70. replay = game.getReplay().reverse().toJavaList();
  71. }
  72. /**
  73. * Gets setup data. This includes rules, expansions and map.
  74. *
  75. * @return the setup data
  76. */
  77. public SavedGameSetup getSetup() {
  78. return setup;
  79. }
  80. /**
  81. * Sets setup data.
  82. *
  83. * @param setup the setup data
  84. */
  85. public void setSetup(SavedGameSetup setup) {
  86. this.setup = setup;
  87. }
  88. /**
  89. * Gets replay data.
  90. *
  91. * @return the replay data
  92. */
  93. public List<WsReplayableMessage> getReplay() {
  94. return replay;
  95. }
  96. /**
  97. * Sets replay data.
  98. *
  99. * @param replay the replay data
  100. */
  101. public void setReplay(List<WsReplayableMessage> replay) {
  102. this.replay = replay;
  103. }
  104. /**
  105. * Gets the game id.
  106. *
  107. * @return the game id
  108. */
  109. public String getGameId() {
  110. return gameId;
  111. }
  112. /**
  113. * Sets the game id.
  114. *
  115. * @param gameId the game id
  116. */
  117. public void setGameId(String gameId) {
  118. this.gameId = gameId;
  119. }
  120. /**
  121. * Gets game name.
  122. *
  123. * @return the game name
  124. */
  125. public String getName() {
  126. return name;
  127. }
  128. /**
  129. * Sets game name.
  130. *
  131. * @param name the game name
  132. */
  133. public void setName(String name) {
  134. this.name = name;
  135. }
  136. /**
  137. * Gets the app version.
  138. *
  139. * @return the app version
  140. */
  141. public String getAppVersion() {
  142. return appVersion;
  143. }
  144. /**
  145. * Sets the app version.
  146. *
  147. * @param appVersion the app version
  148. */
  149. public void setAppVersion(String appVersion) {
  150. this.appVersion = appVersion;
  151. }
  152. /**
  153. * Gets the date of creation.
  154. *
  155. * @return the date of creation
  156. */
  157. public Date getCreated() {
  158. return created;
  159. }
  160. /**
  161. * Sets the date of creation.
  162. *
  163. * @param created the date of creation
  164. */
  165. public void setCreated(Date created) {
  166. this.created = created;
  167. }
  168. /**
  169. * Gets the initial randomness seed.
  170. *
  171. * @return the initial randomness seed
  172. */
  173. public long getInitialSeed() {
  174. return initialSeed;
  175. }
  176. /**
  177. * Sets the initial randomness seed.
  178. *
  179. * @param initialSeed the initial randomness seed
  180. */
  181. public void setInitialSeed(long initialSeed) {
  182. this.initialSeed = initialSeed;
  183. }
  184. /**
  185. * Gets players slots data.
  186. *
  187. * @return the players slots data
  188. */
  189. public List<SavedGamePlayerSlot> getSlots() {
  190. return slots;
  191. }
  192. /**
  193. * Sets players slots data.
  194. *
  195. * @param slots the players slots data
  196. */
  197. public void setSlots(List<SavedGamePlayerSlot> slots) {
  198. this.slots = slots;
  199. }
  200. /**
  201. * Gets the clocks of players.
  202. *
  203. * @return the clocks of players
  204. */
  205. public long[] getClocks() {
  206. return clocks;
  207. }
  208. /**
  209. * Sets the clocks of players.
  210. *
  211. * @param clocks the the clocks of players
  212. */
  213. public void setClocks(long[] clocks) {
  214. this.clocks = clocks;
  215. }
  216. /**
  217. * Gets the annotations.
  218. *
  219. * @return the annotations
  220. */
  221. public HashMap<String, Object> getAnnotations() {
  222. return annotations;
  223. }
  224. /**
  225. * Sets the annotations.
  226. *
  227. * @param annotations the annotations
  228. */
  229. public void setAnnotations(HashMap<String, Object> annotations) {
  230. this.annotations = annotations;
  231. }
  232. /**
  233. * Represents a save player slot
  234. */
  235. public static class SavedGamePlayerSlot {
  236. private final int number;
  237. private Integer serial;
  238. private String clientId;
  239. private String nickname;
  240. private String aiClassName;
  241. /**
  242. * Instantiates a new {@code SavedGamePlayerSlot} given the necessary data.
  243. *
  244. * @param number the number
  245. * @param serial the serial
  246. * @param clientId the client id
  247. * @param nickname the nickname
  248. * @param aiClassName the ai class name
  249. */
  250. public SavedGamePlayerSlot(int number, Integer serial, String clientId, String nickname, String aiClassName) {
  251. this.number = number;
  252. this.serial = serial;
  253. this.clientId = clientId;
  254. this.nickname = nickname;
  255. this.aiClassName = aiClassName;
  256. }
  257. /**
  258. * Gets the serial.
  259. *
  260. * @return the serial
  261. */
  262. public Integer getSerial() {
  263. return serial;
  264. }
  265. /**
  266. * Sets the serial.
  267. *
  268. * @param serial the serial
  269. */
  270. public void setSerial(Integer serial) {
  271. this.serial = serial;
  272. }
  273. /**
  274. * Gets the player client id.
  275. *
  276. * @return the client id
  277. */
  278. public String getClientId() {
  279. return clientId;
  280. }
  281. /**
  282. * Sets the player client id.
  283. *
  284. * @param clientId the client id
  285. */
  286. public void setClientId(String clientId) {
  287. this.clientId = clientId;
  288. }
  289. /**
  290. * Gets the player nickname.
  291. *
  292. * @return the player nickname
  293. */
  294. public String getNickname() {
  295. return nickname;
  296. }
  297. /**
  298. * Sets the player nickname.
  299. *
  300. * @param nickname the player nickname
  301. */
  302. public void setNickname(String nickname) {
  303. this.nickname = nickname;
  304. }
  305. /**
  306. * Gets the class name of the AI.
  307. *
  308. * @return the AI class name, if any, {@code null} otherwise
  309. */
  310. public String getAiClassName() {
  311. return aiClassName;
  312. }
  313. /**
  314. * Sets the class name of the AI.
  315. *
  316. * @param aiClassName the AI class name
  317. */
  318. public void setAiClassName(String aiClassName) {
  319. this.aiClassName = aiClassName;
  320. }
  321. /**
  322. * Gets the slot number.
  323. *
  324. * @return the slot number
  325. */
  326. public int getNumber() {
  327. return number;
  328. }
  329. }
  330. /**
  331. * Represents a saved game setup.
  332. */
  333. public static class SavedGameSetup {
  334. @JsonAdapter(ExpansionMapAdapter.class)
  335. private Map<Expansion, Integer> expansions;
  336. @JsonAdapter(RulesMapAdapter.class)
  337. private Map<Rule, Object> rules;
  338. @JsonAdapter(CapabilitiesSetAdapter.class)
  339. private Set<Class<? extends Capability<?>>> capabilities;
  340. /**
  341. * Gets the expansions.
  342. *
  343. * @return the expansions
  344. */
  345. public Map<Expansion, Integer> getExpansions() {
  346. return expansions;
  347. }
  348. /**
  349. * Sets the expansions.
  350. *
  351. * @param expansions the expansions
  352. */
  353. public void setExpansions(Map<Expansion, Integer> expansions) {
  354. this.expansions = expansions;
  355. }
  356. /**
  357. * Gets the rules.
  358. *
  359. * @return the rules
  360. */
  361. public Map<Rule, Object> getRules() {
  362. return rules;
  363. }
  364. /**
  365. * Sets the rules.
  366. *
  367. * @param rules the rules
  368. */
  369. public void setRules(Map<Rule, Object> rules) {
  370. this.rules = rules;
  371. }
  372. /**
  373. * Gets the capabilities.
  374. *
  375. * @return the capabilities
  376. */
  377. public Set<Class<? extends Capability<?>>> getCapabilities() {
  378. return capabilities;
  379. }
  380. /**
  381. * Sets the capabilities.
  382. *
  383. * @param capabilities the capabilities
  384. */
  385. public void setCapabilities(Set<Class<? extends Capability<?>>> capabilities) {
  386. this.capabilities = capabilities;
  387. }
  388. /**
  389. * Returns a {@link GameSetup} instance based on {@code this}.
  390. *
  391. * @return the game setup instance
  392. */
  393. public GameSetup asGameSetup() {
  394. return new GameSetup(
  395. io.vavr.collection.HashMap.ofAll(expansions),
  396. io.vavr.collection.HashSet.ofAll(capabilities),
  397. io.vavr.collection.HashMap.ofAll(rules)
  398. );
  399. }
  400. }
  401. }