4463a779cc29f2e3532808c494695345db1233b6
[chesshog.git] / chesshog-format / src / main / java / org / hedgecode / chess / pgn / entity / DetailMove.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.List;
21
22 import org.hedgecode.chess.pgn.nag.Glyph;
23
24 /**
25  * DetailMove
26  *
27  * @author Dmitry Samoshin aka gotty
28  */
29 public class DetailMove implements Move {
30
31     private int ply;
32     private String move;
33
34     private List<Glyph> glyphs = new ArrayList<>();
35     private List<String> comments = new ArrayList<>();
36     private List<Variation> variations = new ArrayList<>();
37
38     public DetailMove(int ply, String move) {
39         this.ply = ply;
40         this.move = move;
41     }
42
43     @Override
44     public int ply() {
45         return ply;
46     }
47
48     @Override
49     public String move() {
50         return move;
51     }
52
53     public void addGlyph(Glyph glyph) {
54         glyphs.add(glyph);
55     }
56
57     public void addComment(String comment) {
58         comments.add(comment);
59     }
60
61     public void addVariation(Variation variation) {
62         variations.add(variation);
63     }
64
65     public List<Glyph> glyphs() {
66         return glyphs;
67     }
68
69     public List<String> comments() {
70         return comments;
71     }
72
73     public List<Variation> variations() {
74         return variations;
75     }
76
77 }