More PMD warnings
[nikiroo-utils.git] / src / jexer / bits / Cell.java
CommitLineData
daa4106c 1/*
624ce48e
KL
2 * Jexer - Java Text User Interface
3 *
e16dda65 4 * The MIT License (MIT)
624ce48e 5 *
a2018e99 6 * Copyright (C) 2017 Kevin Lamonte
624ce48e 7 *
e16dda65
KL
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
624ce48e 14 *
e16dda65
KL
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
624ce48e 17 *
e16dda65
KL
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
7b5261bc
KL
25 *
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
27 * @version 1
624ce48e
KL
28 */
29package jexer.bits;
30
31/**
7b5261bc 32 * This class represents a single text cell on the screen.
624ce48e 33 */
2b9c27db 34public final class Cell extends CellAttributes {
624ce48e 35
d36057df
KL
36 // ------------------------------------------------------------------------
37 // Variables --------------------------------------------------------------
38 // ------------------------------------------------------------------------
39
624ce48e 40 /**
7b5261bc
KL
41 * The character at this cell.
42 */
43 private char ch;
44
d36057df
KL
45 // ------------------------------------------------------------------------
46 // Constructors -----------------------------------------------------------
47 // ------------------------------------------------------------------------
48
49 /**
50 * Public constructor sets default values of the cell to blank.
51 *
52 * @see #isBlank()
53 * @see #reset()
54 */
55 public Cell() {
56 reset();
57 }
58
59 /**
60 * Public constructor sets the character. Attributes are the same as
61 * default.
62 *
63 * @param ch character to set to
64 * @see #reset()
65 */
66 public Cell(final char ch) {
67 reset();
68 this.ch = ch;
69 }
70
71 // ------------------------------------------------------------------------
72 // Cell -------------------------------------------------------------------
73 // ------------------------------------------------------------------------
74
7b5261bc
KL
75 /**
76 * Getter for cell character.
77 *
78 * @return cell character
79 */
2b9c27db 80 public char getChar() {
7b5261bc
KL
81 return ch;
82 }
83
84 /**
85 * Setter for cell character.
86 *
87 * @param ch new cell character
624ce48e 88 */
2b9c27db 89 public void setChar(final char ch) {
7b5261bc
KL
90 this.ch = ch;
91 }
624ce48e
KL
92
93 /**
7b5261bc 94 * Reset this cell to a blank.
624ce48e
KL
95 */
96 @Override
2b9c27db 97 public void reset() {
7b5261bc
KL
98 super.reset();
99 ch = ' ';
624ce48e
KL
100 }
101
102 /**
7b5261bc
KL
103 * Check to see if this cell has default attributes: white foreground,
104 * black background, no bold/blink/reverse/underline/protect, and a
105 * character value of ' ' (space).
106 *
107 * @return true if this cell has default attributes.
624ce48e 108 */
2b9c27db 109 public boolean isBlank() {
7b5261bc
KL
110 if ((getForeColor().equals(Color.WHITE))
111 && (getBackColor().equals(Color.BLACK))
7c870d89
KL
112 && !isBold()
113 && !isBlink()
114 && !isReverse()
115 && !isUnderline()
116 && !isProtect()
7b5261bc
KL
117 && (ch == ' ')
118 ) {
119 return true;
120 }
624ce48e 121
7b5261bc 122 return false;
624ce48e
KL
123 }
124
125 /**
7b5261bc
KL
126 * Comparison check. All fields must match to return true.
127 *
128 * @param rhs another Cell instance
129 * @return true if all fields are equal
624ce48e
KL
130 */
131 @Override
2b9c27db 132 public boolean equals(final Object rhs) {
7b5261bc
KL
133 if (!(rhs instanceof Cell)) {
134 return false;
135 }
624ce48e 136
7b5261bc 137 Cell that = (Cell) rhs;
6358f6e5
KL
138
139 if (ch == that.ch) {
140 return super.equals(rhs);
141 }
142 return false;
624ce48e
KL
143 }
144
e826b451
KL
145 /**
146 * Hashcode uses all fields in equals().
147 *
148 * @return the hash
149 */
150 @Override
151 public int hashCode() {
152 int A = 13;
153 int B = 23;
154 int hash = A;
155 hash = (B * hash) + super.hashCode();
156 hash = (B * hash) + (int)ch;
157 return hash;
158 }
159
624ce48e 160 /**
7b5261bc
KL
161 * Set my field values to that's field.
162 *
163 * @param rhs an instance of either Cell or CellAttributes
624ce48e
KL
164 */
165 @Override
2b9c27db 166 public void setTo(final Object rhs) {
7b5261bc
KL
167 // Let this throw a ClassCastException
168 CellAttributes thatAttr = (CellAttributes) rhs;
169 super.setTo(thatAttr);
624ce48e 170
7b5261bc
KL
171 if (rhs instanceof Cell) {
172 Cell that = (Cell) rhs;
173 this.ch = that.ch;
174 }
624ce48e
KL
175 }
176
177 /**
7b5261bc
KL
178 * Set my field attr values to that's field.
179 *
180 * @param that a CellAttributes instance
624ce48e 181 */
2b9c27db 182 public void setAttr(final CellAttributes that) {
7b5261bc 183 super.setTo(that);
624ce48e
KL
184 }
185
624ce48e 186 /**
7b5261bc
KL
187 * Make human-readable description of this Cell.
188 *
189 * @return displayable String
624ce48e
KL
190 */
191 @Override
2b9c27db 192 public String toString() {
8a632d71 193 return String.format("fore: %s back: %s bold: %s blink: %s ch %c",
7c870d89 194 getForeColor(), getBackColor(), isBold(), isBlink(), ch);
624ce48e
KL
195 }
196}