[LIB-9] Set of entities for PGN parsing and formatting
[chesshog.git] / chesshog-format / src / main / java / org / hedgecode / chess / pgn / entity / DetailGame.java
1 /*
2  * Copyright (c) 2018-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.pgn.entity;
18
19 import java.util.ArrayList;
20 import java.util.HashMap;
21 import java.util.List;
22 import java.util.Map;
23
24 /**
25  * DetailGame
26  *
27  * @author Dmitry Samoshin aka gotty
28  */
29 public class DetailGame implements Game, Moves {
30
31     private final DetailMove NULL_MOVE = new DetailMove(0, null);
32
33     private DetailMove currentMove;
34     private final List<DetailMove> moves = new ArrayList<>();
35
36     private final Map<String, String> tags = new HashMap<>();
37
38     public DetailGame() {
39         currentMove = NULL_MOVE;
40     }
41
42     @Override
43     public void addMove(DetailMove move) {
44         moves.add(move);
45         currentMove = move;
46     }
47
48     @Override
49     public List<DetailMove> getMoves() {
50         return moves;
51     }
52
53     @Override
54     public DetailMove nullMove() {
55         return NULL_MOVE;
56     }
57
58     @Override
59     public DetailMove currentMove() {
60         return currentMove;
61     }
62
63     @Override
64     public void addTag(String name, String value) {
65         tags.put(name, value);
66     }
67
68     @Override
69     public String getTag(String name) {
70         return tags.get(name);
71     }
72
73     @Override
74     public Map<String, String> getTags() {
75         return tags;
76     }
77
78 }