diff options
author | Paul Gilbert | 2019-07-26 18:46:53 -0700 |
---|---|---|
committer | Paul Gilbert | 2019-07-26 18:46:53 -0700 |
commit | f1761567355b13ec5fb6ef83ec4ee1ea35334067 (patch) | |
tree | bcef8d64d8b3bd34468ed1465ee9bd6d59bd3522 | |
parent | bc857785485884e4fb0b05b659e399031db833cb (diff) | |
download | scummvm-rg350-f1761567355b13ec5fb6ef83ec4ee1ea35334067.tar.gz scummvm-rg350-f1761567355b13ec5fb6ef83ec4ee1ea35334067.tar.bz2 scummvm-rg350-f1761567355b13ec5fb6ef83ec4ee1ea35334067.zip |
GLK: FROTZ: This reverts commit 10a5b70b0af167c1f154a4c9dbe8829fe966fffa.
-rw-r--r-- | engines/glk/frotz/windows.cpp | 22 | ||||
-rw-r--r-- | engines/glk/frotz/windows.h | 7 |
2 files changed, 9 insertions, 20 deletions
diff --git a/engines/glk/frotz/windows.cpp b/engines/glk/frotz/windows.cpp index 0619030567..8ebc263151 100644 --- a/engines/glk/frotz/windows.cpp +++ b/engines/glk/frotz/windows.cpp @@ -23,7 +23,6 @@ #include "glk/frotz/windows.h" #include "glk/frotz/frotz.h" #include "glk/window_pair.h" -#include "glk/window_text_grid.h" #include "glk/window_text_buffer.h" #include "glk/conf.h" @@ -144,11 +143,6 @@ void Window::setPosition(const Point &newPos) { void Window::setCursor(const Point &newPos) { int x = newPos.x, y = newPos.y; - if (!(_currStyle & FIXED_WIDTH_STYLE)) { - _currStyle |= FIXED_WIDTH_STYLE; - ensureGlkWindow(); - } - if (y < 0) { // Cursor on/off if (y == -2) @@ -232,10 +226,10 @@ uint Window::setFont(uint font) { return result; } -void Window::setStyle(uint style) { +void Window::setStyle(int style) { if (style == 0) _currStyle = 0; - else if (style != 0xf000) + else if (style != -1) // not tickle time _currStyle |= style; @@ -253,7 +247,8 @@ void Window::setStyle(uint style) { void Window::updateStyle() { uint style = _currStyle; - ensureGlkWindow(); + if (!_win) + createGlkWindow(); if (style & REVERSE_STYLE) setReverseVideo(true); @@ -294,14 +289,9 @@ void Window::setReverseVideo(bool reverse) { _win->_stream->setReverseVideo(reverse); } -void Window::ensureGlkWindow() { +void Window::createGlkWindow() { // Create a new window - if (_win && (dynamic_cast<TextGridWindow *>(_win) != nullptr) != ((_currStyle & FIXED_WIDTH_STYLE) != 0)) { - g_vm->glk_window_close(_win); - _win = nullptr; - } - - if (_currStyle & FIXED_WIDTH_STYLE) { + if (_index == 1) { // Text grid window _win = g_vm->glk_window_open(g_vm->glk_window_get_root(), winmethod_Arbitrary | winmethod_Fixed, 0, wintype_TextGrid, 0); diff --git a/engines/glk/frotz/windows.h b/engines/glk/frotz/windows.h index f12d9eec20..fe59cc7e00 100644 --- a/engines/glk/frotz/windows.h +++ b/engines/glk/frotz/windows.h @@ -102,10 +102,9 @@ private: void update(); /** - * Creates a new Glk window to attach to the window if not already present, or recreates the window - * if the font style has changed to/from fixed width + * Creates a new Glk window to attach to the window */ - void ensureGlkWindow(); + void createGlkWindow(); /** * Updates the current font/style @@ -192,7 +191,7 @@ public: /** * Set the textstyle */ - void setStyle(uint style = 0xf000); + void setStyle(int style = -1); /** * Set reverse video |