[LIB-9] Add functional for transcoding vector images
[chesshog.git] / chesshog-graphics / src / main / java / org / hedgecode / chess / img / board / SquarePair.java
1 /*
2  * Copyright (c) 2018-2019. 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.img.board;
18
19 import java.awt.image.BufferedImage;
20 import java.util.Objects;
21
22 /**
23  * Storage class for set of images of chess board squares.
24  *
25  * @author Dmitry Samoshin aka gotty
26  */
27 public class SquarePair<T> {
28
29     private final T dark;
30     private final T light;
31
32     private SquarePair(T dark, T light) {
33         this.dark = dark;
34         this.light = light;
35     }
36
37     public T getDark() {
38         return dark;
39     }
40
41     public T getLight() {
42         return light;
43     }
44
45     public boolean isFilled() {
46         if (this.dark == null || this.light == null) {
47             return false;
48         }
49         return true;
50     }
51
52     @Override
53     public boolean equals(Object o) {
54         if (!(o instanceof SquarePair)) {
55             return false;
56         }
57         SquarePair<?> that = (SquarePair<?>) o;
58
59         return Objects.equals(this.dark, that.dark)
60                 && Objects.equals(this.light, that.light);
61     }
62
63     @Override
64     public int hashCode() {
65         return (dark == null ? 0 : dark.hashCode())
66                 ^ (light == null ? 0 : light.hashCode());
67     }
68
69     public static SquarePair<BufferedImage> create(BufferedImage dark, BufferedImage light) {
70         return new SquarePair<>(dark, light);
71     }
72
73 }