[LIB-13] Tournament and game formats for JSON parsing
[chesshog-scanner.git] / src / main / java / org / hedgecode / chess / scanner / json / format / JSONGameData.java
1 /*
2  * Copyright (c) 2019-2020. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.scanner.json.format;
18
19 import com.google.gson.annotations.SerializedName;
20
21 import org.hedgecode.chess.scanner.format.Game;
22 import org.hedgecode.chess.scanner.format.GameData;
23 import org.hedgecode.chess.scanner.format.Move;
24 import org.hedgecode.chess.scanner.format.Room;
25
26 /**
27  * JSONGameData
28  *
29  * @author Dmitry Samoshin aka gotty
30  */
31 public class JSONGameData implements GameData {
32
33     private static final String WHITE_MOVE_FORMAT = "%d. %s ";
34     private static final String BLACK_MOVE_FORMAT = "%s ";
35
36     @SerializedName("game")
37     private JSONGame game;
38
39     @SerializedName("room")
40     private JSONRoom room;
41
42     @SerializedName("moves")
43     private JSONMove[] moves;
44
45     JSONGameData() {
46     }
47
48     @Override
49     public Game game() {
50         return game;
51     }
52
53     @Override
54     public Room room() {
55         return room;
56     }
57
58     @Override
59     public Move[] moves() {
60         return moves;
61     }
62
63     @Override
64     public String formatMoves() {
65         StringBuilder sb = new StringBuilder();
66         for (Move move : moves) {
67             if (move.number() % 2 == 0) {
68                 sb.append(
69                         String.format(WHITE_MOVE_FORMAT, move.number() / 2 + 1, move.move())
70                 );
71             } else {
72                 sb.append(
73                         String.format(BLACK_MOVE_FORMAT, move.move())
74                 );
75             }
76         }
77         return sb.toString();
78     }
79
80 }