#5 fallback to java.runtime.name if getFontAdjustments() doesn't work
[nikiroo-utils.git] / src / jexer / io / SwingScreen.java
CommitLineData
daa4106c 1/*
1ac2ccb1
KL
2 * Jexer - Java Text User Interface
3 *
e16dda65 4 * The MIT License (MIT)
1ac2ccb1 5 *
a2018e99 6 * Copyright (C) 2017 Kevin Lamonte
1ac2ccb1 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:
1ac2ccb1 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.
1ac2ccb1 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.
1ac2ccb1
KL
25 *
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
27 * @version 1
28 */
29package jexer.io;
30
1ac2ccb1
KL
31import java.awt.Color;
32import java.awt.Cursor;
33import java.awt.Font;
34import java.awt.FontMetrics;
1ac2ccb1 35import java.awt.Graphics;
c8165631 36import java.awt.Graphics2D;
84614868 37import java.awt.Insets;
30bd4abd
KL
38import java.awt.Point;
39import java.awt.Rectangle;
40import java.awt.Toolkit;
1ac2ccb1 41import java.awt.geom.Rectangle2D;
30bd4abd 42import java.awt.image.BufferedImage;
e3dfbd23 43import java.awt.image.BufferStrategy;
84614868 44import java.io.InputStream;
b5f2a6db 45import java.util.Date;
c8165631 46import java.util.HashMap;
aed33687
KL
47import javax.swing.JFrame;
48import javax.swing.SwingUtilities;
1ac2ccb1 49
b5f2a6db
KL
50import jexer.bits.Cell;
51import jexer.bits.CellAttributes;
52import jexer.session.SwingSessionInfo;
53
1ac2ccb1 54/**
a4406f4e 55 * This Screen implementation draws to a Java Swing JFrame.
1ac2ccb1 56 */
a4406f4e 57public final class SwingScreen extends Screen {
1ac2ccb1 58
e3dfbd23 59 /**
1d14ffab 60 * If true, use triple buffering thread.
e3dfbd23 61 */
e685a47d 62 private static boolean tripleBuffer = true;
e3dfbd23 63
b5f2a6db
KL
64 /**
65 * Cursor style to draw.
66 */
67 public enum CursorStyle {
68 /**
69 * Use an underscore for the cursor.
70 */
71 UNDERLINE,
72
73 /**
74 * Use a solid block for the cursor.
75 */
76 BLOCK,
77
78 /**
79 * Use an outlined block for the cursor.
80 */
81 OUTLINE
82 }
83
84614868
KL
84 private static Color MYBLACK;
85 private static Color MYRED;
86 private static Color MYGREEN;
87 private static Color MYYELLOW;
88 private static Color MYBLUE;
89 private static Color MYMAGENTA;
90 private static Color MYCYAN;
91 private static Color MYWHITE;
92
93 private static Color MYBOLD_BLACK;
94 private static Color MYBOLD_RED;
95 private static Color MYBOLD_GREEN;
96 private static Color MYBOLD_YELLOW;
97 private static Color MYBOLD_BLUE;
98 private static Color MYBOLD_MAGENTA;
99 private static Color MYBOLD_CYAN;
100 private static Color MYBOLD_WHITE;
101
102 private static boolean dosColors = false;
103
104 /**
a4406f4e 105 * Setup Swing colors to match DOS color palette.
84614868
KL
106 */
107 private static void setDOSColors() {
108 if (dosColors) {
109 return;
110 }
111 MYBLACK = new Color(0x00, 0x00, 0x00);
112 MYRED = new Color(0xa8, 0x00, 0x00);
113 MYGREEN = new Color(0x00, 0xa8, 0x00);
114 MYYELLOW = new Color(0xa8, 0x54, 0x00);
115 MYBLUE = new Color(0x00, 0x00, 0xa8);
116 MYMAGENTA = new Color(0xa8, 0x00, 0xa8);
117 MYCYAN = new Color(0x00, 0xa8, 0xa8);
118 MYWHITE = new Color(0xa8, 0xa8, 0xa8);
119 MYBOLD_BLACK = new Color(0x54, 0x54, 0x54);
120 MYBOLD_RED = new Color(0xfc, 0x54, 0x54);
121 MYBOLD_GREEN = new Color(0x54, 0xfc, 0x54);
122 MYBOLD_YELLOW = new Color(0xfc, 0xfc, 0x54);
123 MYBOLD_BLUE = new Color(0x54, 0x54, 0xfc);
124 MYBOLD_MAGENTA = new Color(0xfc, 0x54, 0xfc);
125 MYBOLD_CYAN = new Color(0x54, 0xfc, 0xfc);
126 MYBOLD_WHITE = new Color(0xfc, 0xfc, 0xfc);
127
128 dosColors = true;
129 }
130
1ac2ccb1 131 /**
a4406f4e 132 * SwingFrame is our top-level hook into the Swing system.
1ac2ccb1 133 */
a4406f4e 134 class SwingFrame extends JFrame {
1ac2ccb1 135
cf9af8df
KL
136 /**
137 * Serializable version.
138 */
139 private static final long serialVersionUID = 1;
140
84614868
KL
141 /**
142 * The terminus font resource filename.
143 */
144 private static final String FONTFILE = "terminus-ttf-4.39/TerminusTTF-Bold-4.39.ttf";
145
e3dfbd23 146 /**
1d14ffab 147 * The BufferStrategy object needed for triple-buffering.
e3dfbd23
KL
148 */
149 private BufferStrategy bufferStrategy;
150
c8165631
KL
151 /**
152 * A cache of previously-rendered glyphs for blinking text, when it
153 * is not visible.
154 */
155 private HashMap<Cell, BufferedImage> glyphCacheBlink;
156
157 /**
158 * A cache of previously-rendered glyphs for non-blinking, or
159 * blinking-and-visible, text.
160 */
161 private HashMap<Cell, BufferedImage> glyphCache;
162
1ac2ccb1
KL
163 /**
164 * The TUI Screen data.
165 */
a4406f4e 166 SwingScreen screen;
1ac2ccb1 167
55d2b2c2
KL
168 /**
169 * If true, we were successful getting Terminus.
170 */
171 private boolean gotTerminus = false;
172
1ac2ccb1
KL
173 /**
174 * Width of a character cell.
175 */
176 private int textWidth = 1;
177
178 /**
179 * Height of a character cell.
180 */
181 private int textHeight = 1;
182
84614868
KL
183 /**
184 * Descent of a character cell.
185 */
186 private int maxDescent = 0;
187
847a4bc5
KL
188 /**
189 * System-dependent Y adjustment for text in the character cell.
190 */
191 private int textAdjustY = 0;
192
193 /**
194 * System-dependent X adjustment for text in the character cell.
195 */
196 private int textAdjustX = 0;
197
1ac2ccb1 198 /**
b5f2a6db 199 * Top pixel absolute location.
1ac2ccb1
KL
200 */
201 private int top = 30;
84614868 202
1ac2ccb1 203 /**
b5f2a6db 204 * Left pixel absolute location.
1ac2ccb1
KL
205 */
206 private int left = 30;
84614868 207
b5f2a6db
KL
208 /**
209 * The cursor style to draw.
210 */
211 private CursorStyle cursorStyle = CursorStyle.UNDERLINE;
212
213 /**
214 * The number of millis to wait before switching the blink from
215 * visible to invisible.
216 */
217 private long blinkMillis = 500;
218
219 /**
220 * If true, the cursor should be visible right now based on the blink
221 * time.
222 */
223 private boolean cursorBlinkVisible = true;
224
225 /**
226 * The time that the blink last flipped from visible to invisible or
227 * from invisible to visible.
228 */
229 private long lastBlinkTime = 0;
230
84614868 231 /**
a4406f4e 232 * Convert a CellAttributes foreground color to an Swing Color.
84614868
KL
233 *
234 * @param attr the text attributes
a4406f4e 235 * @return the Swing Color
84614868
KL
236 */
237 private Color attrToForegroundColor(final CellAttributes attr) {
7c870d89 238 if (attr.isBold()) {
84614868
KL
239 if (attr.getForeColor().equals(jexer.bits.Color.BLACK)) {
240 return MYBOLD_BLACK;
241 } else if (attr.getForeColor().equals(jexer.bits.Color.RED)) {
242 return MYBOLD_RED;
243 } else if (attr.getForeColor().equals(jexer.bits.Color.BLUE)) {
244 return MYBOLD_BLUE;
245 } else if (attr.getForeColor().equals(jexer.bits.Color.GREEN)) {
246 return MYBOLD_GREEN;
247 } else if (attr.getForeColor().equals(jexer.bits.Color.YELLOW)) {
248 return MYBOLD_YELLOW;
249 } else if (attr.getForeColor().equals(jexer.bits.Color.CYAN)) {
250 return MYBOLD_CYAN;
251 } else if (attr.getForeColor().equals(jexer.bits.Color.MAGENTA)) {
252 return MYBOLD_MAGENTA;
253 } else if (attr.getForeColor().equals(jexer.bits.Color.WHITE)) {
254 return MYBOLD_WHITE;
255 }
256 } else {
257 if (attr.getForeColor().equals(jexer.bits.Color.BLACK)) {
258 return MYBLACK;
259 } else if (attr.getForeColor().equals(jexer.bits.Color.RED)) {
260 return MYRED;
261 } else if (attr.getForeColor().equals(jexer.bits.Color.BLUE)) {
262 return MYBLUE;
263 } else if (attr.getForeColor().equals(jexer.bits.Color.GREEN)) {
264 return MYGREEN;
265 } else if (attr.getForeColor().equals(jexer.bits.Color.YELLOW)) {
266 return MYYELLOW;
267 } else if (attr.getForeColor().equals(jexer.bits.Color.CYAN)) {
268 return MYCYAN;
269 } else if (attr.getForeColor().equals(jexer.bits.Color.MAGENTA)) {
270 return MYMAGENTA;
271 } else if (attr.getForeColor().equals(jexer.bits.Color.WHITE)) {
272 return MYWHITE;
273 }
274 }
c8165631
KL
275 throw new IllegalArgumentException("Invalid color: " +
276 attr.getForeColor().getValue());
84614868
KL
277 }
278
279 /**
a4406f4e 280 * Convert a CellAttributes background color to an Swing Color.
84614868
KL
281 *
282 * @param attr the text attributes
a4406f4e 283 * @return the Swing Color
84614868
KL
284 */
285 private Color attrToBackgroundColor(final CellAttributes attr) {
84614868
KL
286 if (attr.getBackColor().equals(jexer.bits.Color.BLACK)) {
287 return MYBLACK;
288 } else if (attr.getBackColor().equals(jexer.bits.Color.RED)) {
289 return MYRED;
290 } else if (attr.getBackColor().equals(jexer.bits.Color.BLUE)) {
291 return MYBLUE;
292 } else if (attr.getBackColor().equals(jexer.bits.Color.GREEN)) {
293 return MYGREEN;
294 } else if (attr.getBackColor().equals(jexer.bits.Color.YELLOW)) {
295 return MYYELLOW;
296 } else if (attr.getBackColor().equals(jexer.bits.Color.CYAN)) {
297 return MYCYAN;
298 } else if (attr.getBackColor().equals(jexer.bits.Color.MAGENTA)) {
299 return MYMAGENTA;
300 } else if (attr.getBackColor().equals(jexer.bits.Color.WHITE)) {
301 return MYWHITE;
302 }
c8165631
KL
303 throw new IllegalArgumentException("Invalid color: " +
304 attr.getBackColor().getValue());
84614868
KL
305 }
306
1ac2ccb1
KL
307 /**
308 * Public constructor.
84614868
KL
309 *
310 * @param screen the Screen that Backend talks to
1ac2ccb1 311 */
a4406f4e 312 public SwingFrame(final SwingScreen screen) {
84614868
KL
313 this.screen = screen;
314 setDOSColors();
315
b5f2a6db 316 // Figure out my cursor style
c8165631
KL
317 String cursorStyleString = System.getProperty(
318 "jexer.Swing.cursorStyle", "underline").toLowerCase();
b5f2a6db
KL
319
320 if (cursorStyleString.equals("underline")) {
321 cursorStyle = CursorStyle.UNDERLINE;
322 } else if (cursorStyleString.equals("outline")) {
323 cursorStyle = CursorStyle.OUTLINE;
324 } else if (cursorStyleString.equals("block")) {
325 cursorStyle = CursorStyle.BLOCK;
326 }
327
0ab16dbb
KL
328 if (System.getProperty("jexer.Swing.tripleBuffer") != null) {
329 if (System.getProperty("jexer.Swing.tripleBuffer").
330 equals("false")) {
e685a47d 331
0ab16dbb
KL
332 SwingScreen.tripleBuffer = false;
333 }
e685a47d
KL
334 }
335
1ac2ccb1 336 setTitle("Jexer Application");
aed33687 337 setBackground(Color.black);
84614868
KL
338
339 try {
30bd4abd 340 // Always try to use Terminus, the one decent font.
c8165631
KL
341 ClassLoader loader = Thread.currentThread().
342 getContextClassLoader();
84614868
KL
343 InputStream in = loader.getResourceAsStream(FONTFILE);
344 Font terminusRoot = Font.createFont(Font.TRUETYPE_FONT, in);
55d2b2c2 345 Font terminus = terminusRoot.deriveFont(Font.PLAIN, 20);
84614868 346 setFont(terminus);
55d2b2c2 347 gotTerminus = true;
84614868
KL
348 } catch (Exception e) {
349 e.printStackTrace();
350 // setFont(new Font("Liberation Mono", Font.PLAIN, 24));
351 setFont(new Font(Font.MONOSPACED, Font.PLAIN, 24));
352 }
aed33687 353 pack();
30bd4abd
KL
354
355 // Kill the X11 cursor
356 // Transparent 16 x 16 pixel cursor image.
357 BufferedImage cursorImg = new BufferedImage(16, 16,
358 BufferedImage.TYPE_INT_ARGB);
30bd4abd
KL
359 // Create a new blank cursor.
360 Cursor blankCursor = Toolkit.getDefaultToolkit().createCustomCursor(
361 cursorImg, new Point(0, 0), "blank cursor");
362 setCursor(blankCursor);
091d8a06
KL
363
364 // Be capable of seeing Tab / Shift-Tab
365 setFocusTraversalKeysEnabled(false);
366
367 // Save the text cell width/height
bd8d51fa 368 getFontDimensions();
e3dfbd23 369
c8165631
KL
370 // Cache glyphs as they are rendered
371 glyphCacheBlink = new HashMap<Cell, BufferedImage>();
372 glyphCache = new HashMap<Cell, BufferedImage>();
373
1d14ffab
KL
374 // Setup triple-buffering
375 if (SwingScreen.tripleBuffer) {
e3dfbd23 376 setIgnoreRepaint(true);
1d14ffab 377 createBufferStrategy(3);
e3dfbd23
KL
378 bufferStrategy = getBufferStrategy();
379 }
1ac2ccb1
KL
380 }
381
6ba187ac
KL
382 /**
383 * Figure out what textAdjustX and textAdjustY should be, based on
384 * the location of a vertical bar (to find textAdjustY) and a
385 * horizontal bar (to find textAdjustX).
386 *
387 * @return true if textAdjustX and textAdjustY were guessed at
388 * correctly
389 */
390 private boolean getFontAdjustments() {
391 BufferedImage image = null;
392
393 // What SHOULD happen is that the topmost/leftmost white pixel is
394 // at position (gr2x, gr2y). But it might also be off by a pixel
395 // in either direction.
396
397 Graphics2D gr2 = null;
398 int gr2x = 3;
399 int gr2y = 3;
400 image = new BufferedImage(textWidth * 2, textHeight * 2,
401 BufferedImage.TYPE_INT_ARGB);
402
403 gr2 = image.createGraphics();
404 gr2.setFont(getFont());
405 gr2.setColor(java.awt.Color.BLACK);
406 gr2.fillRect(0, 0, textWidth * 2, textHeight * 2);
407 gr2.setColor(java.awt.Color.WHITE);
408 char [] chars = new char[1];
409 chars[0] = jexer.bits.GraphicsChars.VERTICAL_BAR;
410 gr2.drawChars(chars, 0, 1, gr2x, gr2y + textHeight - maxDescent);
411 gr2.dispose();
412
413 for (int x = 0; x < textWidth; x++) {
414 for (int y = 0; y < textHeight; y++) {
415
416 /*
417 System.err.println("X: " + x + " Y: " + y + " " +
418 image.getRGB(x, y));
419 */
420
421 if ((image.getRGB(x, y) & 0xFFFFFF) != 0) {
422 textAdjustY = (gr2y - y);
423
424 // System.err.println("textAdjustY: " + textAdjustY);
425 x = textWidth;
426 break;
427 }
428 }
429 }
430
431 gr2 = image.createGraphics();
432 gr2.setFont(getFont());
433 gr2.setColor(java.awt.Color.BLACK);
434 gr2.fillRect(0, 0, textWidth * 2, textHeight * 2);
435 gr2.setColor(java.awt.Color.WHITE);
436 chars[0] = jexer.bits.GraphicsChars.SINGLE_BAR;
437 gr2.drawChars(chars, 0, 1, gr2x, gr2y + textHeight - maxDescent);
438 gr2.dispose();
439
440 for (int x = 0; x < textWidth; x++) {
441 for (int y = 0; y < textHeight; y++) {
442
443 /*
444 System.err.println("X: " + x + " Y: " + y + " " +
445 image.getRGB(x, y));
446 */
447
448 if ((image.getRGB(x, y) & 0xFFFFFF) != 0) {
449 textAdjustX = (gr2x - x);
450
451 // System.err.println("textAdjustX: " + textAdjustX);
452 return true;
453 }
454 }
455 }
456
457 // Something weird happened, don't rely on this function.
458 // System.err.println("getFontAdjustments: false");
459 return false;
460 }
461
462
1ac2ccb1 463 /**
bd8d51fa 464 * Figure out my font dimensions.
1ac2ccb1 465 */
bd8d51fa 466 private void getFontDimensions() {
84614868
KL
467 Graphics gr = getGraphics();
468 FontMetrics fm = gr.getFontMetrics();
469 maxDescent = fm.getMaxDescent();
470 Rectangle2D bounds = fm.getMaxCharBounds(gr);
471 int leading = fm.getLeading();
472 textWidth = (int)Math.round(bounds.getWidth());
55d2b2c2
KL
473 // textHeight = (int)Math.round(bounds.getHeight()) - maxDescent;
474
475 // This produces the same number, but works better for ugly
84614868
KL
476 // monospace.
477 textHeight = fm.getMaxAscent() + maxDescent - leading;
847a4bc5 478
55d2b2c2
KL
479 if (gotTerminus == true) {
480 textHeight++;
481 }
482
6ba187ac
KL
483 if (getFontAdjustments() == false) {
484 // We were unable to programmatically determine textAdjustX
15364867
KL
485 // and textAdjustY, so try some guesses based on VM vendor.
486 String runtime = System.getProperty("java.runtime.name");
487 if ((runtime != null) && (runtime.contains("Java(TM)"))) {
6ba187ac
KL
488 textAdjustY = -1;
489 textAdjustX = 0;
490 }
55d2b2c2 491 }
bd8d51fa 492 }
84614868 493
bd8d51fa
KL
494 /**
495 * Resize to font dimensions.
496 */
497 public void resizeToScreen() {
84614868
KL
498 // Figure out the thickness of borders and use that to set the
499 // final size.
500 Insets insets = getInsets();
501 left = insets.left;
502 top = insets.top;
503
504 setSize(textWidth * screen.width + insets.left + insets.right,
505 textHeight * screen.height + insets.top + insets.bottom);
1ac2ccb1
KL
506 }
507
30bd4abd
KL
508 /**
509 * Update redraws the whole screen.
510 *
a4406f4e 511 * @param gr the Swing Graphics context
30bd4abd
KL
512 */
513 @Override
514 public void update(final Graphics gr) {
515 // The default update clears the area. Don't do that, instead
516 // just paint it directly.
517 paint(gr);
518 }
519
c8165631
KL
520 /**
521 * Draw one glyph to the screen.
522 *
523 * @param gr the Swing Graphics context
524 * @param cell the Cell to draw
525 * @param xPixel the x-coordinate to render to. 0 means the
526 * left-most pixel column.
527 * @param yPixel the y-coordinate to render to. 0 means the top-most
528 * pixel row.
529 */
530 private void drawGlyph(final Graphics gr, final Cell cell,
531 final int xPixel, final int yPixel) {
532
533 BufferedImage image = null;
534 if (cell.isBlink() && !cursorBlinkVisible) {
535 image = glyphCacheBlink.get(cell);
536 } else {
537 image = glyphCache.get(cell);
538 }
539 if (image != null) {
540 gr.drawImage(image, xPixel, yPixel, this);
541 return;
542 }
543
544 // Generate glyph and draw it.
e685a47d
KL
545 Graphics2D gr2 = null;
546 int gr2x = xPixel;
547 int gr2y = yPixel;
548 if (tripleBuffer) {
549 image = new BufferedImage(textWidth, textHeight,
550 BufferedImage.TYPE_INT_ARGB);
551 gr2 = image.createGraphics();
552 gr2.setFont(getFont());
553 gr2x = 0;
554 gr2y = 0;
555 } else {
556 gr2 = (Graphics2D) gr;
557 }
c8165631
KL
558
559 Cell cellColor = new Cell();
560 cellColor.setTo(cell);
561
562 // Check for reverse
563 if (cell.isReverse()) {
564 cellColor.setForeColor(cell.getBackColor());
565 cellColor.setBackColor(cell.getForeColor());
566 }
567
568 // Draw the background rectangle, then the foreground character.
569 gr2.setColor(attrToBackgroundColor(cellColor));
e685a47d 570 gr2.fillRect(gr2x, gr2y, textWidth, textHeight);
c8165631
KL
571
572 // Handle blink and underline
573 if (!cell.isBlink()
574 || (cell.isBlink() && cursorBlinkVisible)
575 ) {
576 gr2.setColor(attrToForegroundColor(cellColor));
577 char [] chars = new char[1];
578 chars[0] = cell.getChar();
e685a47d
KL
579 gr2.drawChars(chars, 0, 1, gr2x + textAdjustX,
580 gr2y + textHeight - maxDescent + textAdjustY);
c8165631
KL
581
582 if (cell.isUnderline()) {
e685a47d 583 gr2.fillRect(gr2x, gr2y + textHeight - 2, textWidth, 2);
c8165631
KL
584 }
585 }
c8165631 586
e685a47d
KL
587 if (tripleBuffer) {
588 gr2.dispose();
589
590 // We need a new key that will not be mutated by
591 // invertCell().
592 Cell key = new Cell();
593 key.setTo(cell);
594 if (cell.isBlink() && !cursorBlinkVisible) {
595 glyphCacheBlink.put(key, image);
596 } else {
597 glyphCache.put(key, image);
598 }
599
600 gr.drawImage(image, xPixel, yPixel, this);
c8165631
KL
601 }
602
c8165631
KL
603 }
604
605 /**
606 * Check if the cursor is visible, and if so draw it.
607 *
608 * @param gr the Swing Graphics context
609 */
610 private void drawCursor(final Graphics gr) {
611
612 if (cursorVisible
613 && (cursorY <= screen.height - 1)
614 && (cursorX <= screen.width - 1)
615 && cursorBlinkVisible
616 ) {
617 int xPixel = cursorX * textWidth + left;
618 int yPixel = cursorY * textHeight + top;
619 Cell lCell = screen.logical[cursorX][cursorY];
620 gr.setColor(attrToForegroundColor(lCell));
621 switch (cursorStyle) {
622 default:
623 // Fall through...
624 case UNDERLINE:
625 gr.fillRect(xPixel, yPixel + textHeight - 2, textWidth, 2);
626 break;
627 case BLOCK:
628 gr.fillRect(xPixel, yPixel, textWidth, textHeight);
629 break;
630 case OUTLINE:
631 gr.drawRect(xPixel, yPixel, textWidth - 1, textHeight - 1);
632 break;
633 }
634 }
635 }
636
1ac2ccb1
KL
637 /**
638 * Paint redraws the whole screen.
639 *
a4406f4e 640 * @param gr the Swing Graphics context
1ac2ccb1
KL
641 */
642 @Override
84614868 643 public void paint(final Graphics gr) {
87a17f3c
KL
644 // Do nothing until the screen reference has been set.
645 if (screen == null) {
646 return;
647 }
648 if (screen.frame == null) {
649 return;
650 }
651
b5f2a6db
KL
652 // See if it is time to flip the blink time.
653 long nowTime = (new Date()).getTime();
654 if (nowTime > blinkMillis + lastBlinkTime) {
655 lastBlinkTime = nowTime;
656 cursorBlinkVisible = !cursorBlinkVisible;
657 }
658
87a17f3c
KL
659 int xCellMin = 0;
660 int xCellMax = screen.width;
661 int yCellMin = 0;
662 int yCellMax = screen.height;
663
30bd4abd 664 Rectangle bounds = gr.getClipBounds();
87a17f3c
KL
665 if (bounds != null) {
666 // Only update what is in the bounds
667 xCellMin = screen.textColumn(bounds.x);
bd8d51fa 668 xCellMax = screen.textColumn(bounds.x + bounds.width);
87a17f3c
KL
669 if (xCellMax > screen.width) {
670 xCellMax = screen.width;
671 }
672 if (xCellMin >= xCellMax) {
673 xCellMin = xCellMax - 2;
674 }
675 if (xCellMin < 0) {
676 xCellMin = 0;
677 }
678 yCellMin = screen.textRow(bounds.y);
bd8d51fa 679 yCellMax = screen.textRow(bounds.y + bounds.height);
87a17f3c
KL
680 if (yCellMax > screen.height) {
681 yCellMax = screen.height;
682 }
683 if (yCellMin >= yCellMax) {
684 yCellMin = yCellMax - 2;
685 }
686 if (yCellMin < 0) {
687 yCellMin = 0;
688 }
bd8d51fa
KL
689 } else {
690 // We need a total repaint
691 reallyCleared = true;
87a17f3c 692 }
1ac2ccb1 693
87a17f3c
KL
694 // Prevent updates to the screen's data from the TApplication
695 // threads.
696 synchronized (screen) {
697 /*
698 System.err.printf("bounds %s X %d %d Y %d %d\n",
699 bounds, xCellMin, xCellMax, yCellMin, yCellMax);
700 */
701
702 for (int y = yCellMin; y < yCellMax; y++) {
703 for (int x = xCellMin; x < xCellMax; x++) {
704
705 int xPixel = x * textWidth + left;
706 int yPixel = y * textHeight + top;
707
708 Cell lCell = screen.logical[x][y];
709 Cell pCell = screen.physical[x][y];
710
55b4f29b
KL
711 if (!lCell.equals(pCell)
712 || lCell.isBlink()
713 || reallyCleared) {
e3dfbd23 714
c8165631 715 drawGlyph(gr, lCell, xPixel, yPixel);
87a17f3c
KL
716
717 // Physical is always updated
718 physical[x][y].setTo(lCell);
30bd4abd
KL
719 }
720 }
87a17f3c 721 }
c8165631 722 drawCursor(gr);
30bd4abd 723
87a17f3c
KL
724 dirty = false;
725 reallyCleared = false;
726 } // synchronized (screen)
1ac2ccb1 727 }
bd8d51fa 728
a4406f4e 729 } // class SwingFrame
1ac2ccb1
KL
730
731 /**
a4406f4e 732 * The raw Swing JFrame. Note package private access.
1ac2ccb1 733 */
a4406f4e 734 SwingFrame frame;
1ac2ccb1 735
e3dfbd23
KL
736 /**
737 * Restore terminal to normal state.
738 */
739 public void shutdown() {
740 frame.dispose();
741 }
742
1ac2ccb1
KL
743 /**
744 * Public constructor.
745 */
a4406f4e 746 public SwingScreen() {
aed33687
KL
747 try {
748 SwingUtilities.invokeAndWait(new Runnable() {
749 public void run() {
a4406f4e
KL
750 SwingScreen.this.frame = new SwingFrame(SwingScreen.this);
751 SwingScreen.this.sessionInfo =
752 new SwingSessionInfo(SwingScreen.this.frame,
bd8d51fa
KL
753 frame.textWidth,
754 frame.textHeight);
755
a4406f4e 756 SwingScreen.this.setDimensions(sessionInfo.getWindowWidth(),
bd8d51fa
KL
757 sessionInfo.getWindowHeight());
758
a4406f4e
KL
759 SwingScreen.this.frame.resizeToScreen();
760 SwingScreen.this.frame.setVisible(true);
aed33687 761 }
329fd62e 762 });
aed33687
KL
763 } catch (Exception e) {
764 e.printStackTrace();
765 }
1ac2ccb1
KL
766 }
767
bd8d51fa
KL
768 /**
769 * The sessionInfo.
770 */
a4406f4e 771 private SwingSessionInfo sessionInfo;
bd8d51fa 772
30bd4abd 773 /**
a4406f4e 774 * Create the SwingSessionInfo. Note package private access.
30bd4abd
KL
775 *
776 * @return the sessionInfo
777 */
a4406f4e 778 SwingSessionInfo getSessionInfo() {
30bd4abd
KL
779 return sessionInfo;
780 }
781
1ac2ccb1
KL
782 /**
783 * Push the logical screen to the physical device.
784 */
785 @Override
786 public void flushPhysical() {
87a17f3c 787
1d14ffab
KL
788 /*
789 System.err.printf("flushPhysical(): reallyCleared %s dirty %s\n",
790 reallyCleared, dirty);
791 */
792
793 // If reallyCleared is set, we have to draw everything.
794 if ((frame.bufferStrategy != null) && (reallyCleared == true)) {
795 // Triple-buffering: we have to redraw everything on this thread.
796 Graphics gr = frame.bufferStrategy.getDrawGraphics();
797 frame.paint(gr);
798 gr.dispose();
799 frame.bufferStrategy.show();
800 // sync() doesn't seem to help the tearing for me.
801 // Toolkit.getDefaultToolkit().sync();
802 return;
803 } else if ((frame.bufferStrategy == null) && (reallyCleared == true)) {
804 // Repaint everything on the Swing thread.
805 frame.repaint();
87a17f3c
KL
806 return;
807 }
808
809 // Do nothing if nothing happened.
810 if (!dirty) {
811 return;
812 }
813
c8165631
KL
814 if (frame.bufferStrategy != null) {
815 // See if it is time to flip the blink time.
816 long nowTime = (new Date()).getTime();
817 if (nowTime > frame.blinkMillis + frame.lastBlinkTime) {
818 frame.lastBlinkTime = nowTime;
819 frame.cursorBlinkVisible = !frame.cursorBlinkVisible;
820 }
821
822 Graphics gr = frame.bufferStrategy.getDrawGraphics();
823
824 synchronized (this) {
825 for (int y = 0; y < height; y++) {
826 for (int x = 0; x < width; x++) {
827 Cell lCell = logical[x][y];
828 Cell pCell = physical[x][y];
829
830 int xPixel = x * frame.textWidth + frame.left;
831 int yPixel = y * frame.textHeight + frame.top;
832
833 if (!lCell.equals(pCell)
834 || ((x == cursorX)
835 && (y == cursorY)
836 && cursorVisible)
837 || (lCell.isBlink())
838 ) {
839 frame.drawGlyph(gr, lCell, xPixel, yPixel);
840 physical[x][y].setTo(lCell);
841 }
842 }
843 }
844 frame.drawCursor(gr);
845 } // synchronized (this)
846
847 gr.dispose();
848 frame.bufferStrategy.show();
849 // sync() doesn't seem to help the tearing for me.
850 // Toolkit.getDefaultToolkit().sync();
851 return;
852 }
853
854 // Swing thread version: request a repaint, but limit it to the area
855 // that has changed.
87a17f3c 856
30bd4abd
KL
857 // Find the minimum-size damaged region.
858 int xMin = frame.getWidth();
859 int xMax = 0;
860 int yMin = frame.getHeight();
861 int yMax = 0;
30bd4abd 862
87a17f3c
KL
863 synchronized (this) {
864 for (int y = 0; y < height; y++) {
865 for (int x = 0; x < width; x++) {
866 Cell lCell = logical[x][y];
867 Cell pCell = physical[x][y];
868
869 int xPixel = x * frame.textWidth + frame.left;
870 int yPixel = y * frame.textHeight + frame.top;
871
872 if (!lCell.equals(pCell)
873 || ((x == cursorX)
874 && (y == cursorY)
875 && cursorVisible)
55b4f29b 876 || lCell.isBlink()
87a17f3c
KL
877 ) {
878 if (xPixel < xMin) {
879 xMin = xPixel;
880 }
881 if (xPixel + frame.textWidth > xMax) {
882 xMax = xPixel + frame.textWidth;
883 }
884 if (yPixel < yMin) {
885 yMin = yPixel;
886 }
887 if (yPixel + frame.textHeight > yMax) {
888 yMax = yPixel + frame.textHeight;
889 }
30bd4abd
KL
890 }
891 }
892 }
893 }
87a17f3c
KL
894 if (xMin + frame.textWidth >= xMax) {
895 xMax += frame.textWidth;
896 }
897 if (yMin + frame.textHeight >= yMax) {
898 yMax += frame.textHeight;
899 }
30bd4abd 900
87a17f3c 901 // Repaint the desired area
1d14ffab
KL
902 /*
903 System.err.printf("REPAINT X %d %d Y %d %d\n", xMin, xMax,
904 yMin, yMax);
905 */
906 if (frame.bufferStrategy != null) {
c8165631
KL
907 // This path should never be taken, but is left here for
908 // completeness.
e3dfbd23
KL
909 Graphics gr = frame.bufferStrategy.getDrawGraphics();
910 Rectangle bounds = new Rectangle(xMin, yMin, xMax - xMin,
911 yMax - yMin);
912 gr.setClip(bounds);
913 frame.paint(gr);
914 gr.dispose();
915 frame.bufferStrategy.show();
1d14ffab
KL
916 // sync() doesn't seem to help the tearing for me.
917 // Toolkit.getDefaultToolkit().sync();
e3dfbd23 918 } else {
c8165631 919 // Repaint on the Swing thread.
e3dfbd23
KL
920 frame.repaint(xMin, yMin, xMax - xMin, yMax - yMin);
921 }
1ac2ccb1 922 }
30bd4abd
KL
923
924 /**
925 * Put the cursor at (x,y).
926 *
927 * @param visible if true, the cursor should be visible
928 * @param x column coordinate to put the cursor on
929 * @param y row coordinate to put the cursor on
930 */
931 @Override
932 public void putCursor(final boolean visible, final int x, final int y) {
b5f2a6db
KL
933
934 if ((visible == cursorVisible) && ((x == cursorX) && (y == cursorY))) {
935 // See if it is time to flip the blink time.
936 long nowTime = (new Date()).getTime();
937 if (nowTime < frame.blinkMillis + frame.lastBlinkTime) {
938 // Nothing has changed, so don't do anything.
939 return;
940 }
941 }
942
943 if (cursorVisible
30bd4abd
KL
944 && (cursorY <= height - 1)
945 && (cursorX <= width - 1)
946 ) {
947 // Make the current cursor position dirty
87a17f3c 948 if (physical[cursorX][cursorY].getChar() == 'Q') {
30bd4abd
KL
949 physical[cursorX][cursorY].setChar('X');
950 } else {
87a17f3c 951 physical[cursorX][cursorY].setChar('Q');
30bd4abd
KL
952 }
953 }
954
955 super.putCursor(visible, x, y);
956 }
957
87a17f3c
KL
958 /**
959 * Convert pixel column position to text cell column position.
960 *
961 * @param x pixel column position
962 * @return text cell column position
963 */
964 public int textColumn(final int x) {
965 return ((x - frame.left) / frame.textWidth);
966 }
967
968 /**
969 * Convert pixel row position to text cell row position.
970 *
971 * @param y pixel row position
972 * @return text cell row position
973 */
974 public int textRow(final int y) {
975 return ((y - frame.top) / frame.textHeight);
976 }
977
55d2b2c2
KL
978 /**
979 * Set the window title.
980 *
981 * @param title the new title
982 */
983 public void setTitle(final String title) {
984 frame.setTitle(title);
985 }
986
1ac2ccb1 987}