Commit | Line | Data |
---|---|---|
daa4106c | 1 | /* |
624ce48e KL |
2 | * Jexer - Java Text User Interface |
3 | * | |
e16dda65 | 4 | * The MIT License (MIT) |
624ce48e | 5 | * |
a69ed767 | 6 | * Copyright (C) 2019 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 | */ |
29 | package jexer.bits; | |
30 | ||
a69ed767 KL |
31 | import java.awt.Color; |
32 | import java.awt.image.BufferedImage; | |
33 | ||
624ce48e | 34 | /** |
a69ed767 | 35 | * This class represents a single text cell or bit of image on the screen. |
624ce48e | 36 | */ |
2b9c27db | 37 | public final class Cell extends CellAttributes { |
624ce48e | 38 | |
a69ed767 KL |
39 | // ------------------------------------------------------------------------ |
40 | // Constants -------------------------------------------------------------- | |
41 | // ------------------------------------------------------------------------ | |
42 | ||
9588c713 KL |
43 | /** |
44 | * How this cell needs to be displayed if it is part of a larger glyph. | |
45 | */ | |
46 | public enum Width { | |
47 | /** | |
48 | * This cell is an entire glyph on its own. | |
49 | */ | |
50 | SINGLE, | |
51 | ||
52 | /** | |
53 | * This cell is the left half of a wide glyph. | |
54 | */ | |
55 | LEFT, | |
56 | ||
57 | /** | |
58 | * This cell is the right half of a wide glyph. | |
59 | */ | |
60 | RIGHT, | |
61 | } | |
62 | ||
a69ed767 KL |
63 | /** |
64 | * The special "this cell is unset" (null) value. This is the Unicode | |
65 | * "not a character" value. | |
66 | */ | |
67 | private static final char UNSET_VALUE = (char) 65535; | |
68 | ||
d36057df KL |
69 | // ------------------------------------------------------------------------ |
70 | // Variables -------------------------------------------------------------- | |
71 | // ------------------------------------------------------------------------ | |
72 | ||
624ce48e | 73 | /** |
7b5261bc KL |
74 | * The character at this cell. |
75 | */ | |
218d18db | 76 | private int ch = ' '; |
7b5261bc | 77 | |
9588c713 KL |
78 | /** |
79 | * The display width of this cell. | |
80 | */ | |
81 | private Width width = Width.SINGLE; | |
82 | ||
a69ed767 KL |
83 | /** |
84 | * The image at this cell. | |
85 | */ | |
86 | private BufferedImage image = null; | |
87 | ||
88 | /** | |
89 | * The image at this cell, inverted. | |
90 | */ | |
91 | private BufferedImage invertedImage = null; | |
92 | ||
93 | /** | |
94 | * The background color used for the area the image portion might not | |
95 | * cover. | |
96 | */ | |
027de5ae | 97 | private Color background = Color.BLACK; |
a69ed767 KL |
98 | |
99 | /** | |
100 | * hashCode() needs to call image.hashCode(), which can get quite | |
101 | * expensive. | |
102 | */ | |
103 | private int imageHashCode = 0; | |
104 | ||
105 | /** | |
106 | * hashCode() needs to call background.hashCode(), which can get quite | |
107 | * expensive. | |
108 | */ | |
109 | private int backgroundHashCode = 0; | |
110 | ||
d36057df KL |
111 | // ------------------------------------------------------------------------ |
112 | // Constructors ----------------------------------------------------------- | |
113 | // ------------------------------------------------------------------------ | |
114 | ||
115 | /** | |
116 | * Public constructor sets default values of the cell to blank. | |
117 | * | |
118 | * @see #isBlank() | |
119 | * @see #reset() | |
120 | */ | |
121 | public Cell() { | |
027de5ae | 122 | // NOP |
d36057df KL |
123 | } |
124 | ||
125 | /** | |
126 | * Public constructor sets the character. Attributes are the same as | |
127 | * default. | |
128 | * | |
129 | * @param ch character to set to | |
130 | * @see #reset() | |
131 | */ | |
218d18db | 132 | public Cell(final int ch) { |
027de5ae KL |
133 | this.ch = ch; |
134 | } | |
135 | ||
0c28ec38 KL |
136 | /** |
137 | * Public constructor sets the attributes. | |
138 | * | |
139 | * @param attr attributes to use | |
140 | */ | |
141 | public Cell(final CellAttributes attr) { | |
142 | super(attr); | |
143 | } | |
144 | ||
027de5ae KL |
145 | /** |
146 | * Public constructor sets the character and attributes. | |
147 | * | |
148 | * @param ch character to set to | |
149 | * @param attr attributes to use | |
150 | */ | |
218d18db | 151 | public Cell(final int ch, final CellAttributes attr) { |
027de5ae | 152 | super(attr); |
d36057df KL |
153 | this.ch = ch; |
154 | } | |
155 | ||
ab215e38 KL |
156 | /** |
157 | * Public constructor creates a duplicate. | |
158 | * | |
159 | * @param cell the instance to copy | |
160 | */ | |
161 | public Cell(final Cell cell) { | |
162 | setTo(cell); | |
163 | } | |
164 | ||
d36057df KL |
165 | // ------------------------------------------------------------------------ |
166 | // Cell ------------------------------------------------------------------- | |
167 | // ------------------------------------------------------------------------ | |
168 | ||
a69ed767 KL |
169 | /** |
170 | * Set the image data for this cell. | |
171 | * | |
172 | * @param image the image for this cell | |
173 | */ | |
174 | public void setImage(final BufferedImage image) { | |
175 | this.image = image; | |
176 | imageHashCode = image.hashCode(); | |
9588c713 | 177 | width = Width.SINGLE; |
a69ed767 KL |
178 | } |
179 | ||
180 | /** | |
181 | * Get the image data for this cell. | |
182 | * | |
183 | * @return the image for this cell | |
184 | */ | |
185 | public BufferedImage getImage() { | |
186 | if (invertedImage != null) { | |
187 | return invertedImage; | |
188 | } | |
189 | return image; | |
190 | } | |
191 | ||
192 | /** | |
193 | * Get the bitmap image background color for this cell. | |
194 | * | |
195 | * @return the bitmap image background color | |
196 | */ | |
197 | public Color getBackground() { | |
198 | return background; | |
199 | } | |
200 | ||
201 | /** | |
202 | * If true, this cell has image data. | |
203 | * | |
204 | * @return true if this cell is an image rather than a character with | |
205 | * attributes | |
206 | */ | |
207 | public boolean isImage() { | |
208 | if (image != null) { | |
209 | return true; | |
210 | } | |
211 | return false; | |
212 | } | |
213 | ||
214 | /** | |
215 | * Restore the image in this cell to its normal version, if it has one. | |
216 | */ | |
217 | public void restoreImage() { | |
218 | invertedImage = null; | |
219 | } | |
220 | ||
221 | /** | |
222 | * If true, this cell has image data, and that data is inverted. | |
223 | * | |
224 | * @return true if this cell is an image rather than a character with | |
225 | * attributes, and the data is inverted | |
226 | */ | |
227 | public boolean isInvertedImage() { | |
228 | if ((image != null) && (invertedImage != null)) { | |
229 | return true; | |
230 | } | |
231 | return false; | |
232 | } | |
233 | ||
234 | /** | |
235 | * Invert the image in this cell, if it has one. | |
236 | */ | |
237 | public void invertImage() { | |
238 | if (image == null) { | |
239 | return; | |
240 | } | |
241 | if (invertedImage == null) { | |
242 | invertedImage = new BufferedImage(image.getWidth(), | |
243 | image.getHeight(), BufferedImage.TYPE_INT_ARGB); | |
244 | ||
245 | int [] rgbArray = image.getRGB(0, 0, | |
246 | image.getWidth(), image.getHeight(), null, 0, image.getWidth()); | |
247 | ||
248 | for (int i = 0; i < rgbArray.length; i++) { | |
249 | // Set the colors to fully inverted. | |
250 | if (rgbArray[i] != 0x00FFFFFF) { | |
251 | rgbArray[i] ^= 0x00FFFFFF; | |
252 | } | |
253 | // Also set alpha to non-transparent. | |
254 | rgbArray[i] |= 0xFF000000; | |
255 | } | |
256 | invertedImage.setRGB(0, 0, image.getWidth(), image.getHeight(), | |
257 | rgbArray, 0, image.getWidth()); | |
258 | } | |
259 | } | |
260 | ||
7b5261bc KL |
261 | /** |
262 | * Getter for cell character. | |
263 | * | |
264 | * @return cell character | |
265 | */ | |
218d18db | 266 | public int getChar() { |
7b5261bc KL |
267 | return ch; |
268 | } | |
269 | ||
270 | /** | |
271 | * Setter for cell character. | |
272 | * | |
273 | * @param ch new cell character | |
624ce48e | 274 | */ |
218d18db | 275 | public void setChar(final int ch) { |
7b5261bc KL |
276 | this.ch = ch; |
277 | } | |
624ce48e | 278 | |
9588c713 KL |
279 | /** |
280 | * Getter for cell width. | |
281 | * | |
282 | * @return Width.SINGLE, Width.LEFT, or Width.RIGHT | |
283 | */ | |
284 | public Width getWidth() { | |
285 | return width; | |
286 | } | |
287 | ||
288 | /** | |
289 | * Setter for cell width. | |
290 | * | |
ab215e38 | 291 | * @param width new cell width, one of Width.SINGLE, Width.LEFT, or |
9588c713 KL |
292 | * Width.RIGHT |
293 | */ | |
294 | public void setWidth(final Width width) { | |
295 | this.width = width; | |
296 | } | |
297 | ||
624ce48e | 298 | /** |
7b5261bc | 299 | * Reset this cell to a blank. |
624ce48e KL |
300 | */ |
301 | @Override | |
2b9c27db | 302 | public void reset() { |
7b5261bc KL |
303 | super.reset(); |
304 | ch = ' '; | |
9588c713 | 305 | width = Width.SINGLE; |
a69ed767 KL |
306 | image = null; |
307 | imageHashCode = 0; | |
308 | invertedImage = null; | |
309 | background = Color.BLACK; | |
310 | backgroundHashCode = 0; | |
311 | } | |
312 | ||
313 | /** | |
314 | * UNset this cell. It will not be equal to any other cell until it has | |
315 | * been assigned attributes and a character. | |
316 | */ | |
317 | public void unset() { | |
318 | super.reset(); | |
319 | ch = UNSET_VALUE; | |
9588c713 | 320 | width = Width.SINGLE; |
a69ed767 KL |
321 | image = null; |
322 | imageHashCode = 0; | |
323 | invertedImage = null; | |
324 | background = Color.BLACK; | |
325 | backgroundHashCode = 0; | |
624ce48e KL |
326 | } |
327 | ||
328 | /** | |
7b5261bc KL |
329 | * Check to see if this cell has default attributes: white foreground, |
330 | * black background, no bold/blink/reverse/underline/protect, and a | |
331 | * character value of ' ' (space). | |
332 | * | |
333 | * @return true if this cell has default attributes. | |
624ce48e | 334 | */ |
2b9c27db | 335 | public boolean isBlank() { |
a69ed767 KL |
336 | if ((ch == UNSET_VALUE) || (image != null)) { |
337 | return false; | |
338 | } | |
7b5261bc KL |
339 | if ((getForeColor().equals(Color.WHITE)) |
340 | && (getBackColor().equals(Color.BLACK)) | |
7c870d89 KL |
341 | && !isBold() |
342 | && !isBlink() | |
343 | && !isReverse() | |
344 | && !isUnderline() | |
345 | && !isProtect() | |
051e2913 | 346 | && !isRGB() |
a69ed767 | 347 | && !isImage() |
9588c713 | 348 | && (width == Width.SINGLE) |
7b5261bc KL |
349 | && (ch == ' ') |
350 | ) { | |
351 | return true; | |
352 | } | |
624ce48e | 353 | |
7b5261bc | 354 | return false; |
624ce48e KL |
355 | } |
356 | ||
357 | /** | |
7b5261bc KL |
358 | * Comparison check. All fields must match to return true. |
359 | * | |
360 | * @param rhs another Cell instance | |
361 | * @return true if all fields are equal | |
624ce48e KL |
362 | */ |
363 | @Override | |
2b9c27db | 364 | public boolean equals(final Object rhs) { |
7b5261bc KL |
365 | if (!(rhs instanceof Cell)) { |
366 | return false; | |
367 | } | |
624ce48e | 368 | |
7b5261bc | 369 | Cell that = (Cell) rhs; |
6358f6e5 | 370 | |
a69ed767 KL |
371 | // Unsetted cells can never be equal. |
372 | if ((ch == UNSET_VALUE) || (that.ch == UNSET_VALUE)) { | |
373 | return false; | |
374 | } | |
375 | ||
376 | // If this or rhs has an image and the other doesn't, these are not | |
377 | // equal. | |
378 | if ((image != null) && (that.image == null)) { | |
379 | return false; | |
380 | } | |
381 | if ((image == null) && (that.image != null)) { | |
382 | return false; | |
383 | } | |
384 | // If this and rhs have images, both must match. | |
385 | if ((image != null) && (that.image != null)) { | |
386 | if ((invertedImage == null) && (that.invertedImage != null)) { | |
387 | return false; | |
388 | } | |
389 | if ((invertedImage != null) && (that.invertedImage == null)) { | |
390 | return false; | |
391 | } | |
392 | // Either both objects have their image inverted, or neither do. | |
393 | // Now if the images are identical the cells are the same | |
394 | // visually. | |
395 | if (image.equals(that.image) | |
396 | && (background.equals(that.background)) | |
397 | ) { | |
398 | return true; | |
399 | } else { | |
400 | return false; | |
401 | } | |
402 | } | |
403 | ||
404 | // Normal case: character and attributes must match. | |
9588c713 | 405 | if ((ch == that.ch) && (width == that.width)) { |
6358f6e5 KL |
406 | return super.equals(rhs); |
407 | } | |
408 | return false; | |
624ce48e KL |
409 | } |
410 | ||
e826b451 KL |
411 | /** |
412 | * Hashcode uses all fields in equals(). | |
413 | * | |
414 | * @return the hash | |
415 | */ | |
416 | @Override | |
417 | public int hashCode() { | |
418 | int A = 13; | |
419 | int B = 23; | |
420 | int hash = A; | |
421 | hash = (B * hash) + super.hashCode(); | |
422 | hash = (B * hash) + (int)ch; | |
9588c713 | 423 | hash = (B * hash) + width.hashCode(); |
a69ed767 KL |
424 | if (image != null) { |
425 | /* | |
426 | hash = (B * hash) + image.hashCode(); | |
427 | hash = (B * hash) + background.hashCode(); | |
428 | */ | |
429 | hash = (B * hash) + imageHashCode; | |
430 | hash = (B * hash) + backgroundHashCode; | |
431 | } | |
432 | if (invertedImage != null) { | |
433 | hash = (B * hash) + invertedImage.hashCode(); | |
434 | } | |
e826b451 KL |
435 | return hash; |
436 | } | |
437 | ||
624ce48e | 438 | /** |
7b5261bc KL |
439 | * Set my field values to that's field. |
440 | * | |
441 | * @param rhs an instance of either Cell or CellAttributes | |
624ce48e KL |
442 | */ |
443 | @Override | |
2b9c27db | 444 | public void setTo(final Object rhs) { |
7b5261bc KL |
445 | // Let this throw a ClassCastException |
446 | CellAttributes thatAttr = (CellAttributes) rhs; | |
a69ed767 KL |
447 | this.image = null; |
448 | this.imageHashCode = 0; | |
449 | this.backgroundHashCode = 0; | |
9588c713 | 450 | this.width = Width.SINGLE; |
7b5261bc | 451 | super.setTo(thatAttr); |
624ce48e | 452 | |
7b5261bc KL |
453 | if (rhs instanceof Cell) { |
454 | Cell that = (Cell) rhs; | |
455 | this.ch = that.ch; | |
9588c713 | 456 | this.width = that.width; |
a69ed767 KL |
457 | this.image = that.image; |
458 | this.invertedImage = that.invertedImage; | |
459 | this.background = that.background; | |
460 | this.imageHashCode = that.imageHashCode; | |
461 | this.backgroundHashCode = that.backgroundHashCode; | |
7b5261bc | 462 | } |
624ce48e KL |
463 | } |
464 | ||
465 | /** | |
7b5261bc KL |
466 | * Set my field attr values to that's field. |
467 | * | |
468 | * @param that a CellAttributes instance | |
624ce48e | 469 | */ |
2b9c27db | 470 | public void setAttr(final CellAttributes that) { |
a69ed767 | 471 | image = null; |
7b5261bc | 472 | super.setTo(that); |
624ce48e KL |
473 | } |
474 | ||
624ce48e | 475 | /** |
7b5261bc KL |
476 | * Make human-readable description of this Cell. |
477 | * | |
478 | * @return displayable String | |
624ce48e KL |
479 | */ |
480 | @Override | |
2b9c27db | 481 | public String toString() { |
8a632d71 | 482 | return String.format("fore: %s back: %s bold: %s blink: %s ch %c", |
7c870d89 | 483 | getForeColor(), getBackColor(), isBold(), isBlink(), ch); |
624ce48e KL |
484 | } |
485 | } |