[LIB-9] Add chesshog-qrcode module
[chesshog.git] / chesshog-uci / src / main / java / org / hedgecode / chess / uci / command / Move.java
1 /*
2  * Copyright (c) 2018. 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.uci.command;
18
19 import org.hedgecode.chess.game.AbstractMove;
20 import org.hedgecode.chess.position.Piece;
21 import org.hedgecode.chess.position.Square;
22
23 /**
24  *
25  *
26  * @author Dmitry Samoshin aka gotty
27  */
28 public class Move extends AbstractMove {
29
30     private Piece promote;
31
32     protected Move(Square from, Square to) {
33         super(null, from, to);
34         this.promote = null;
35     }
36
37     protected Move(Square from, Square to, Piece promote) {
38         super(null, from, to);
39         this.promote = promote;
40     }
41
42     @Override
43     public boolean isCapture() {
44         return false;
45     }
46
47     @Override
48     public boolean isCastle() {
49         return false;
50     }
51
52     @Override
53     public boolean isPromote() {
54         return promote != null;
55     }
56
57     @Override
58     public Piece promote() {
59         return promote;
60     }
61
62     @Override
63     public boolean isCheck() {
64         return false;
65     }
66
67     @Override
68     public boolean isMate() {
69         return false;
70     }
71
72 }