2017-11-04 07:03:53 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* fvterm.cpp - Virtual terminal implementation *
|
|
|
|
* *
|
|
|
|
* This file is part of the Final Cut widget toolkit *
|
|
|
|
* *
|
2018-01-02 20:38:45 +01:00
|
|
|
* Copyright 2016-2018 Markus Gans *
|
2017-11-04 07:03:53 +01:00
|
|
|
* *
|
|
|
|
* The Final Cut is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 3 of *
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* The Final Cut is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU Lesser General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
|
|
* License along with this program. If not, see *
|
|
|
|
* <http://www.gnu.org/licenses/>. *
|
|
|
|
***********************************************************************/
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
#include <queue>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-09-17 21:32:46 +02:00
|
|
|
#include "final/fapplication.h"
|
|
|
|
#include "final/fvterm.h"
|
|
|
|
#include "final/fwidget.h"
|
|
|
|
#include "final/fwindow.h"
|
2016-10-11 04:57:36 +02:00
|
|
|
|
|
|
|
// global FVTerm object
|
|
|
|
static FVTerm* init_object = 0;
|
|
|
|
|
|
|
|
// static class attributes
|
|
|
|
bool FVTerm::hidden_cursor;
|
2016-10-13 02:16:51 +02:00
|
|
|
bool FVTerm::terminal_update_complete;
|
2016-10-11 04:57:36 +02:00
|
|
|
bool FVTerm::terminal_update_pending;
|
|
|
|
bool FVTerm::force_terminal_update;
|
|
|
|
bool FVTerm::stop_terminal_updates;
|
|
|
|
int FVTerm::skipped_terminal_update = 0;
|
|
|
|
std::queue<int>* FVTerm::output_buffer = 0;
|
|
|
|
FPoint* FVTerm::term_pos = 0;
|
|
|
|
FVTerm::term_area* FVTerm::vterm = 0;
|
|
|
|
FVTerm::term_area* FVTerm::vdesktop = 0;
|
|
|
|
FVTerm::term_area* FVTerm::active_area = 0;
|
2016-11-02 00:37:58 +01:00
|
|
|
FVTerm::termcap_map* FVTerm::tcap = 0;
|
|
|
|
FTermcap::tcap_map* FTermcap::tcap = 0;
|
|
|
|
FVTerm::char_data FVTerm::term_attribute;
|
|
|
|
FVTerm::char_data FVTerm::next_attribute;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FVTerm
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// constructors and destructor
|
|
|
|
//----------------------------------------------------------------------
|
2017-10-27 23:28:37 +02:00
|
|
|
FVTerm::FVTerm (bool initialize, bool disable_alt_screen)
|
|
|
|
: FTerm(disable_alt_screen)
|
2016-10-11 04:57:36 +02:00
|
|
|
, print_area(0)
|
2017-01-07 22:09:09 +01:00
|
|
|
, child_print_area(0)
|
2016-10-11 04:57:36 +02:00
|
|
|
, vwin(0)
|
|
|
|
{
|
2016-10-13 02:16:51 +02:00
|
|
|
terminal_update_complete = false;
|
2016-10-14 13:02:35 +02:00
|
|
|
|
2017-10-27 23:28:37 +02:00
|
|
|
if ( initialize )
|
2016-10-11 04:57:36 +02:00
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FVTerm::~FVTerm() // destructor
|
|
|
|
{
|
|
|
|
if ( init_object == this )
|
|
|
|
{
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
|
|
|
|
// public methods of FVTerm
|
2016-10-11 04:57:36 +02:00
|
|
|
//----------------------------------------------------------------------
|
2016-11-02 00:37:58 +01:00
|
|
|
FPoint FVTerm::getPrintCursor()
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
term_area* win = getPrintArea();
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( win )
|
2017-02-25 15:18:29 +01:00
|
|
|
return FPoint ( win->offset_left + win->cursor_x
|
|
|
|
, win->offset_top + win->cursor_y );
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
return FPoint(0,0);
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::setTermXY (register int x, register int y)
|
|
|
|
{
|
|
|
|
// Sets the hardware cursor to the given (x,y) position
|
|
|
|
int term_x, term_y, term_width, term_height;
|
|
|
|
char* move_str;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( term_pos->getX() == x && term_pos->getY() == y )
|
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
term_width = getColumnNumber();
|
|
|
|
term_height = getLineNumber();
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( x >= term_width )
|
|
|
|
{
|
|
|
|
y += x / term_width;
|
|
|
|
x %= term_width;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( term_pos->getY() >= term_height )
|
|
|
|
term_pos->setY(term_height - 1);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( y >= term_height )
|
|
|
|
y = term_height - 1;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
term_x = term_pos->getX();
|
|
|
|
term_y = term_pos->getY();
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
move_str = moveCursor (term_x, term_y, x, y);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( move_str )
|
|
|
|
appendOutputBuffer(move_str);
|
|
|
|
|
|
|
|
flush_out();
|
2017-09-11 03:06:02 +02:00
|
|
|
term_pos->setPoint(x, y);
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-11-02 00:37:58 +01:00
|
|
|
bool FVTerm::hideCursor (bool on)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
// Hides or shows the input cursor on the terminal
|
|
|
|
if ( on == hidden_cursor )
|
|
|
|
return hidden_cursor;
|
|
|
|
|
|
|
|
if ( on )
|
|
|
|
{
|
|
|
|
char* hide_str = disableCursor();
|
|
|
|
|
|
|
|
if ( hide_str )
|
2016-11-05 23:12:05 +01:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
appendOutputBuffer (hide_str);
|
2016-11-05 23:12:05 +01:00
|
|
|
hidden_cursor = true; // global
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
else
|
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
char* show_str = enableCursor();
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( show_str )
|
2016-11-05 23:12:05 +01:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
appendOutputBuffer (show_str);
|
2016-11-05 23:12:05 +01:00
|
|
|
hidden_cursor = false;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
flush_out();
|
|
|
|
|
2017-04-06 01:31:21 +02:00
|
|
|
#if defined(__linux__)
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( ! hidden_cursor && isLinuxTerm() )
|
2017-04-06 01:31:21 +02:00
|
|
|
setLinuxConsoleCursorStyle (getLinuxConsoleCursorStyle(), false);
|
|
|
|
#endif
|
|
|
|
|
2017-04-09 20:08:53 +02:00
|
|
|
#if defined(__FreeBSD__) || defined(__DragonFly__)
|
2017-04-06 01:31:21 +02:00
|
|
|
if ( ! hidden_cursor )
|
2017-04-09 20:08:53 +02:00
|
|
|
setFreeBSDConsoleCursorStyle (getFreeBSDConsoleCursorStyle(), false);
|
2017-04-06 01:31:21 +02:00
|
|
|
#endif
|
2016-11-02 00:37:58 +01:00
|
|
|
|
|
|
|
return hidden_cursor;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-11-02 00:37:58 +01:00
|
|
|
void FVTerm::setPrintCursor (register int x, register int y)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
term_area* win = getPrintArea();
|
|
|
|
|
|
|
|
if ( win )
|
|
|
|
{
|
2017-02-25 15:18:29 +01:00
|
|
|
win->cursor_x = x - win->offset_left;
|
|
|
|
win->cursor_y = y - win->offset_top;
|
2017-01-15 19:48:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::clearArea (int fillchar)
|
|
|
|
{
|
|
|
|
clearArea (vwin, fillchar);
|
|
|
|
}
|
|
|
|
|
2016-10-11 04:57:36 +02:00
|
|
|
//----------------------------------------------------------------------
|
2016-11-02 00:37:58 +01:00
|
|
|
void FVTerm::createVTerm (const FRect& r)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
// initialize virtual terminal
|
|
|
|
const FPoint shadow(0,0);
|
|
|
|
createArea (r, shadow, vterm);
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::createVTerm (int width, int height)
|
|
|
|
{
|
|
|
|
// initialize virtual terminal
|
|
|
|
createArea (0, 0, width, height, 0, 0, vterm);
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::resizeVTerm (const FRect& r)
|
|
|
|
{
|
|
|
|
const FPoint shadow(0,0);
|
|
|
|
resizeArea (r, shadow, vterm);
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-11-02 00:37:58 +01:00
|
|
|
void FVTerm::resizeVTerm (int width, int height)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
resizeArea (0, 0, width, height, 0, 0, vterm);
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-11-02 00:37:58 +01:00
|
|
|
void FVTerm::putVTerm()
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int i = 0; i < vterm->height; i++)
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
|
|
|
vterm->changes[i].xmin = 0;
|
|
|
|
vterm->changes[i].xmax = uInt(vterm->width - 1);
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
updateTerminal();
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::updateTerminal (bool on)
|
|
|
|
{
|
|
|
|
stop_terminal_updates = bool(! on);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( on )
|
|
|
|
updateTerminal();
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::updateTerminal()
|
|
|
|
{
|
|
|
|
// Updates pending changes to the terminal
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( stop_terminal_updates
|
2017-11-26 22:37:18 +01:00
|
|
|
|| static_cast<FApplication*>(init_object)->isQuit() )
|
2016-11-02 00:37:58 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
if ( ! force_terminal_update )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( ! terminal_update_complete )
|
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( isInputDataPending() )
|
|
|
|
{
|
|
|
|
terminal_update_pending = true;
|
|
|
|
return;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
2016-12-18 23:34:11 +01:00
|
|
|
// Update data on VTerm
|
|
|
|
updateVTerm();
|
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (register uInt y = 0; y < uInt(vterm->height); y++)
|
2016-12-11 16:42:50 +01:00
|
|
|
updateTerminalLine (y);
|
|
|
|
|
|
|
|
// sets the new input cursor position
|
|
|
|
updateTerminalCursor();
|
|
|
|
}
|
|
|
|
|
2017-02-18 23:37:10 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::addPreprocessingHandler ( FVTerm* instance
|
|
|
|
, FPreprocessingHandler handler )
|
|
|
|
{
|
|
|
|
if ( ! print_area )
|
|
|
|
FVTerm::getPrintArea();
|
|
|
|
|
|
|
|
if ( print_area )
|
|
|
|
{
|
|
|
|
vterm_preprocessing obj = { instance, handler };
|
|
|
|
delPreprocessingHandler (instance);
|
|
|
|
print_area->preprocessing_call.push_back(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::delPreprocessingHandler (FVTerm* instance)
|
|
|
|
{
|
|
|
|
if ( ! print_area )
|
|
|
|
FVTerm::getPrintArea();
|
|
|
|
|
2017-03-08 23:48:30 +01:00
|
|
|
if ( ! print_area || print_area->preprocessing_call.empty() )
|
2017-02-18 23:37:10 +01:00
|
|
|
return;
|
|
|
|
|
2017-09-17 01:50:41 +02:00
|
|
|
FPreprocessing::iterator iter;
|
2017-02-18 23:37:10 +01:00
|
|
|
iter = print_area->preprocessing_call.begin();
|
|
|
|
|
|
|
|
while ( iter != print_area->preprocessing_call.end() )
|
|
|
|
{
|
|
|
|
if ( iter->instance == instance )
|
|
|
|
iter = print_area->preprocessing_call.erase(iter);
|
|
|
|
else
|
|
|
|
++iter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-11 16:42:50 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-12-25 21:17:08 +01:00
|
|
|
int FVTerm::printf (const wchar_t format[], ...)
|
2016-12-11 16:42:50 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
assert ( format != 0 );
|
2017-09-11 03:06:02 +02:00
|
|
|
static const int BufSize = 1024;
|
|
|
|
wchar_t buffer[BufSize];
|
2016-12-28 16:29:49 +01:00
|
|
|
va_list args;
|
2016-12-11 16:42:50 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
va_start (args, format);
|
2017-09-11 03:06:02 +02:00
|
|
|
std::vswprintf (buffer, BufSize, format, args);
|
2016-12-28 16:29:49 +01:00
|
|
|
va_end (args);
|
2016-12-11 16:42:50 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
FString str(buffer);
|
|
|
|
return print(str);
|
|
|
|
}
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-12-25 21:17:08 +01:00
|
|
|
int FVTerm::printf (const char format[], ...)
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
assert ( format != 0 );
|
|
|
|
int len;
|
|
|
|
char buf[512];
|
|
|
|
char* buffer;
|
|
|
|
va_list args;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
buffer = buf;
|
|
|
|
va_start (args, format);
|
2017-03-26 20:40:04 +02:00
|
|
|
len = vsnprintf (buffer, sizeof(buf), format, args);
|
2016-12-28 16:29:49 +01:00
|
|
|
va_end (args);
|
2016-12-11 16:42:50 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( len >= int(sizeof(buf)) )
|
|
|
|
{
|
2017-08-12 22:55:29 +02:00
|
|
|
try
|
|
|
|
{
|
2017-08-27 09:50:30 +02:00
|
|
|
buffer = new char[len + 1]();
|
2017-08-12 22:55:29 +02:00
|
|
|
}
|
|
|
|
catch (const std::bad_alloc& ex)
|
|
|
|
{
|
|
|
|
std::cerr << "not enough memory to alloc " << ex.what() << std::endl;
|
|
|
|
return -1;
|
|
|
|
}
|
2017-10-02 07:32:33 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
va_start (args, format);
|
2017-08-27 09:50:30 +02:00
|
|
|
vsnprintf (buffer, uLong(len + 1), format, args);
|
2016-12-28 16:29:49 +01:00
|
|
|
va_end (args);
|
|
|
|
}
|
2016-12-11 16:42:50 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
FString str(buffer);
|
|
|
|
int ret = print(str);
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( buffer != buf )
|
|
|
|
delete[] buffer;
|
2016-12-11 16:42:50 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
return ret;
|
|
|
|
}
|
2016-12-11 16:42:50 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int FVTerm::print (const std::wstring& s)
|
|
|
|
{
|
|
|
|
assert ( ! s.empty() );
|
|
|
|
return print (FString(s));
|
|
|
|
}
|
2016-12-15 23:11:34 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int FVTerm::print (term_area* area, const std::wstring& s)
|
|
|
|
{
|
|
|
|
assert ( area != 0 );
|
|
|
|
assert ( ! s.empty() );
|
|
|
|
return print (area, FString(s));
|
|
|
|
}
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-12-25 21:17:08 +01:00
|
|
|
int FVTerm::print (const wchar_t s[])
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
assert ( s != 0 );
|
|
|
|
return print (FString(s));
|
|
|
|
}
|
2016-12-15 23:11:34 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-12-25 21:17:08 +01:00
|
|
|
int FVTerm::print (term_area* area, const wchar_t s[])
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
assert ( area != 0 );
|
|
|
|
assert ( s != 0 );
|
|
|
|
return print (area, FString(s));
|
|
|
|
}
|
2016-12-11 16:42:50 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-12-25 21:17:08 +01:00
|
|
|
int FVTerm::print (const char s[])
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
assert ( s != 0 );
|
|
|
|
FString str(s);
|
|
|
|
return print(str);
|
|
|
|
}
|
2016-12-11 16:42:50 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-12-25 21:17:08 +01:00
|
|
|
int FVTerm::print (term_area* area, const char s[])
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
assert ( area != 0 );
|
|
|
|
assert ( s != 0 );
|
|
|
|
FString str(s);
|
|
|
|
return print(area, str);
|
|
|
|
}
|
2016-12-11 16:42:50 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int FVTerm::print (const std::string& s)
|
|
|
|
{
|
|
|
|
assert ( ! s.empty() );
|
|
|
|
return print (FString(s));
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int FVTerm::print (term_area* area, const std::string& s)
|
|
|
|
{
|
|
|
|
assert ( area != 0 );
|
|
|
|
assert ( ! s.empty() );
|
|
|
|
return print (area, FString(s));
|
|
|
|
}
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-03-17 23:22:13 +01:00
|
|
|
int FVTerm::print (const FString& s)
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
assert ( ! s.isNull() );
|
|
|
|
term_area* area = getPrintArea();
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! area )
|
|
|
|
{
|
|
|
|
if ( vdesktop )
|
|
|
|
area = vdesktop;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
return print (area, s);
|
|
|
|
}
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-03-17 22:59:06 +01:00
|
|
|
int FVTerm::print (term_area* area, const FString& s)
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
assert ( ! s.isNull() );
|
|
|
|
const wchar_t* p;
|
2017-11-22 23:56:21 +01:00
|
|
|
std::vector<char_data> term_string;
|
2016-12-15 23:11:34 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! area )
|
|
|
|
return -1;
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
p = s.wc_str();
|
2016-12-15 23:11:34 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( p )
|
|
|
|
{
|
|
|
|
while ( *p )
|
|
|
|
{
|
2017-11-22 23:56:21 +01:00
|
|
|
char_data nc; // next character
|
|
|
|
nc.code = *p;
|
|
|
|
nc.fg_color = next_attribute.fg_color;
|
|
|
|
nc.bg_color = next_attribute.bg_color;
|
|
|
|
nc.attr.byte[0] = next_attribute.attr.byte[0];
|
|
|
|
nc.attr.byte[1] = next_attribute.attr.byte[1];
|
|
|
|
nc.attr.byte[2] = 0;
|
|
|
|
term_string.push_back(nc);
|
2016-12-28 16:29:49 +01:00
|
|
|
p++;
|
2017-09-11 03:06:02 +02:00
|
|
|
} // end of while
|
2017-11-22 23:56:21 +01:00
|
|
|
|
|
|
|
return print (area, term_string);
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-22 23:56:21 +01:00
|
|
|
return 0;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
2017-07-12 01:16:57 +02:00
|
|
|
//----------------------------------------------------------------------
|
2017-11-22 23:56:21 +01:00
|
|
|
int FVTerm::print (const std::vector<char_data>& term_string)
|
2017-07-12 01:16:57 +02:00
|
|
|
{
|
2017-11-22 23:56:21 +01:00
|
|
|
if ( term_string.empty() )
|
2017-07-12 01:16:57 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
term_area* area = getPrintArea();
|
|
|
|
|
|
|
|
if ( ! area )
|
|
|
|
{
|
|
|
|
if ( vdesktop )
|
|
|
|
area = vdesktop;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-11-22 23:56:21 +01:00
|
|
|
return print (area, term_string);
|
2017-07-12 01:16:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-11-22 23:56:21 +01:00
|
|
|
int FVTerm::print (term_area* area, const std::vector<char_data>& term_string)
|
2017-07-12 01:16:57 +02:00
|
|
|
{
|
|
|
|
register int len = 0;
|
|
|
|
std::vector<char_data>::const_iterator iter;
|
2017-11-22 23:56:21 +01:00
|
|
|
iter = term_string.begin();
|
2017-07-12 01:16:57 +02:00
|
|
|
uInt tabstop = uInt(getTabstop());
|
|
|
|
|
|
|
|
if ( ! area )
|
|
|
|
return -1;
|
|
|
|
|
2017-11-22 23:56:21 +01:00
|
|
|
if ( term_string.empty() )
|
2017-07-12 01:16:57 +02:00
|
|
|
return 0;
|
|
|
|
|
2017-11-22 23:56:21 +01:00
|
|
|
while ( iter != term_string.end() )
|
2017-07-12 01:16:57 +02:00
|
|
|
{
|
2017-11-22 23:56:21 +01:00
|
|
|
int width = area->width,
|
|
|
|
height = area->height,
|
|
|
|
rsh = area->right_shadow,
|
|
|
|
bsh = area->bottom_shadow;
|
|
|
|
bool printable_character = false;
|
2017-07-12 01:16:57 +02:00
|
|
|
|
|
|
|
switch ( (*iter).code )
|
|
|
|
{
|
|
|
|
case '\n':
|
|
|
|
area->cursor_y++;
|
2017-08-11 10:50:39 +02:00
|
|
|
// fall through
|
2017-07-12 01:16:57 +02:00
|
|
|
case '\r':
|
|
|
|
area->cursor_x = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\t':
|
|
|
|
area->cursor_x = short ( uInt(area->cursor_x)
|
|
|
|
+ tabstop
|
|
|
|
- uInt(area->cursor_x)
|
|
|
|
+ 1
|
|
|
|
% tabstop );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\b':
|
|
|
|
area->cursor_x--;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\a':
|
|
|
|
beep();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
char_data nc = *iter; // next character
|
2017-11-22 23:56:21 +01:00
|
|
|
print (area, nc);
|
|
|
|
printable_character = true;
|
2017-07-12 01:16:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-22 23:56:21 +01:00
|
|
|
if ( ! printable_character )
|
2017-07-12 01:16:57 +02:00
|
|
|
{
|
2017-11-22 23:56:21 +01:00
|
|
|
// Line break at right margin
|
|
|
|
if ( area->cursor_x > width + rsh )
|
|
|
|
{
|
|
|
|
area->cursor_x = 1;
|
|
|
|
area->cursor_y++;
|
|
|
|
}
|
2017-07-12 01:16:57 +02:00
|
|
|
|
2017-11-22 23:56:21 +01:00
|
|
|
// Prevent up scrolling
|
|
|
|
if ( area->cursor_y > height + bsh )
|
|
|
|
{
|
|
|
|
area->cursor_y--;
|
|
|
|
break;
|
|
|
|
}
|
2017-07-12 01:16:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
len++;
|
|
|
|
++iter;
|
2017-09-11 03:06:02 +02:00
|
|
|
} // end of while
|
2017-07-12 01:16:57 +02:00
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2016-10-11 04:57:36 +02:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
int FVTerm::print (register int c)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
term_area* area = getPrintArea();
|
|
|
|
|
|
|
|
if ( ! area )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( vdesktop )
|
|
|
|
area = vdesktop;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
return print (area, c);
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
int FVTerm::print (term_area* area, register int c)
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
char_data nc; // next character
|
2017-11-22 23:56:21 +01:00
|
|
|
|
|
|
|
if ( ! area )
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
nc.code = c;
|
|
|
|
nc.fg_color = next_attribute.fg_color;
|
|
|
|
nc.bg_color = next_attribute.bg_color;
|
|
|
|
nc.attr.byte[0] = next_attribute.attr.byte[0];
|
|
|
|
nc.attr.byte[1] = next_attribute.attr.byte[1];
|
|
|
|
nc.attr.byte[2] = 0;
|
|
|
|
|
|
|
|
return print (area, nc);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int FVTerm::print (char_data& term_char)
|
|
|
|
{
|
|
|
|
term_area* area = getPrintArea();
|
|
|
|
|
|
|
|
if ( ! area )
|
|
|
|
{
|
|
|
|
if ( vdesktop )
|
|
|
|
area = vdesktop;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return print (area, term_char);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int FVTerm::print (term_area* area, char_data& term_char)
|
|
|
|
{
|
|
|
|
char_data& nc = term_char; // next character
|
2016-12-28 16:29:49 +01:00
|
|
|
int width, height, rsh, bsh, ax, ay;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! area )
|
|
|
|
return -1;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-01-02 08:07:46 +01:00
|
|
|
width = area->width;
|
|
|
|
height = area->height;
|
|
|
|
rsh = area->right_shadow;
|
|
|
|
bsh = area->bottom_shadow;
|
|
|
|
ax = area->cursor_x - 1;
|
|
|
|
ay = area->cursor_y - 1;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area->cursor_x > 0
|
2017-11-26 22:37:18 +01:00
|
|
|
&& area->cursor_y > 0
|
|
|
|
&& ax < area->width + area->right_shadow
|
|
|
|
&& ay < area->height + area->bottom_shadow )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
char_data* ac; // area character
|
2016-12-28 16:29:49 +01:00
|
|
|
int line_len = area->width + area->right_shadow;
|
|
|
|
ac = &area->text[ay * line_len + ax];
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( *ac != nc ) // compare with an overloaded operator
|
|
|
|
{
|
2017-11-26 22:37:18 +01:00
|
|
|
if ( ( ! ac->attr.bit.transparent && nc.attr.bit.transparent )
|
|
|
|
|| ( ! ac->attr.bit.trans_shadow && nc.attr.bit.trans_shadow )
|
|
|
|
|| ( ! ac->attr.bit.inherit_bg && nc.attr.bit.inherit_bg ) )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
// add one transparent character form line
|
|
|
|
area->changes[ay].trans_count++;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-26 22:37:18 +01:00
|
|
|
if ( ( ac->attr.bit.transparent && ! nc.attr.bit.transparent )
|
|
|
|
|| ( ac->attr.bit.trans_shadow && ! nc.attr.bit.trans_shadow )
|
|
|
|
|| ( ac->attr.bit.inherit_bg && ! nc.attr.bit.inherit_bg ) )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
// remove one transparent character from line
|
|
|
|
area->changes[ay].trans_count--;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// copy character to area
|
|
|
|
std::memcpy (ac, &nc, sizeof(nc));
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ax < short(area->changes[ay].xmin) )
|
|
|
|
area->changes[ay].xmin = uInt(ax);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ax > short(area->changes[ay].xmax) )
|
|
|
|
area->changes[ay].xmax = uInt(ax);
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
area->cursor_x++;
|
|
|
|
area->has_changes = true;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-22 23:56:21 +01:00
|
|
|
// Line break at right margin
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area->cursor_x > width + rsh )
|
|
|
|
{
|
|
|
|
area->cursor_x = 1;
|
|
|
|
area->cursor_y++;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-22 23:56:21 +01:00
|
|
|
// Prevent up scrolling
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area->cursor_y > height + bsh )
|
|
|
|
{
|
|
|
|
area->cursor_y--;
|
|
|
|
return -1;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
return 1;
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-22 23:56:21 +01:00
|
|
|
//----------------------------------------------------------------------
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// protected methods of FVTerm
|
2017-01-02 08:07:46 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FVTerm::term_area* FVTerm::getPrintArea()
|
|
|
|
{
|
|
|
|
// returns the print area of this object
|
|
|
|
|
|
|
|
if ( print_area )
|
|
|
|
return print_area;
|
|
|
|
else
|
|
|
|
{
|
2017-10-27 23:28:37 +02:00
|
|
|
if ( vwin )
|
2017-01-02 08:07:46 +01:00
|
|
|
{
|
2017-10-27 23:28:37 +02:00
|
|
|
print_area = vwin;
|
2017-01-02 08:07:46 +01:00
|
|
|
return print_area;
|
|
|
|
}
|
2017-10-27 23:28:37 +02:00
|
|
|
else if ( child_print_area )
|
2017-01-07 22:09:09 +01:00
|
|
|
{
|
2017-10-27 23:28:37 +02:00
|
|
|
print_area = child_print_area;
|
2017-01-07 22:09:09 +01:00
|
|
|
return print_area;
|
|
|
|
}
|
2017-01-02 08:07:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return vdesktop;
|
|
|
|
}
|
|
|
|
|
2017-03-08 23:48:30 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-04-05 22:25:20 +02:00
|
|
|
void FVTerm::setInsertCursorStyle (bool on)
|
|
|
|
{
|
|
|
|
if ( on )
|
|
|
|
{
|
|
|
|
setXTermCursorStyle(fc::blinking_underline);
|
|
|
|
setKDECursor(fc::UnderlineCursor);
|
2017-04-06 01:31:21 +02:00
|
|
|
|
|
|
|
#if defined(__linux__)
|
|
|
|
setLinuxConsoleCursorStyle (fc::underscore_cursor, isCursorHidden());
|
|
|
|
#endif
|
|
|
|
|
2017-04-09 20:08:53 +02:00
|
|
|
#if defined(__FreeBSD__) || defined(__DragonFly__)
|
|
|
|
setFreeBSDConsoleCursorStyle (fc::destructive_cursor, isCursorHidden());
|
2017-04-06 01:31:21 +02:00
|
|
|
#endif
|
2017-04-05 22:25:20 +02:00
|
|
|
|
|
|
|
if ( isUrxvtTerminal() )
|
|
|
|
setXTermCursorColor("rgb:ffff/ffff/ffff");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setXTermCursorStyle(fc::steady_block);
|
|
|
|
setKDECursor(fc::BlockCursor);
|
2017-04-06 01:31:21 +02:00
|
|
|
|
|
|
|
#if defined(__linux__)
|
|
|
|
setLinuxConsoleCursorStyle (fc::full_block_cursor, isCursorHidden());
|
|
|
|
#endif
|
|
|
|
|
2017-04-09 20:08:53 +02:00
|
|
|
#if defined(__FreeBSD__) || defined(__DragonFly__)
|
|
|
|
setFreeBSDConsoleCursorStyle (fc::normal_cursor, isCursorHidden());
|
2017-04-06 01:31:21 +02:00
|
|
|
#endif
|
2017-04-05 22:25:20 +02:00
|
|
|
|
|
|
|
if ( isUrxvtTerminal() )
|
|
|
|
setXTermCursorColor("rgb:eeee/0000/0000");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::createArea ( const FRect& r
|
|
|
|
, const FPoint& p
|
|
|
|
, term_area*& area )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
createArea ( r.getX()
|
|
|
|
, r.getY()
|
|
|
|
, r.getWidth()
|
|
|
|
, r.getHeight()
|
|
|
|
, p.getX()
|
|
|
|
, p.getY()
|
|
|
|
, area );
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-14 17:37:26 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-02-25 15:18:29 +01:00
|
|
|
void FVTerm::createArea ( int offset_left, int offset_top
|
2016-12-28 16:29:49 +01:00
|
|
|
, int width, int height
|
|
|
|
, int rsw, int bsh
|
|
|
|
, term_area*& area )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// initialize virtual window
|
2017-01-02 08:07:46 +01:00
|
|
|
|
2017-08-12 22:55:29 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
area = new term_area;
|
|
|
|
}
|
|
|
|
catch (const std::bad_alloc& ex)
|
|
|
|
{
|
|
|
|
std::cerr << "not enough memory to alloc " << ex.what() << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-02-18 23:37:10 +01:00
|
|
|
area->widget = static_cast<FWidget*>(this);
|
2017-02-25 15:18:29 +01:00
|
|
|
resizeArea (offset_left, offset_top, width, height, rsw, bsh, area);
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::resizeArea ( const FRect& r
|
|
|
|
, const FPoint& p
|
|
|
|
, term_area* area )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
resizeArea ( r.getX()
|
|
|
|
, r.getY()
|
|
|
|
, r.getWidth()
|
|
|
|
, r.getHeight()
|
|
|
|
, p.getX()
|
|
|
|
, p.getY()
|
|
|
|
, area );
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-02-25 15:18:29 +01:00
|
|
|
void FVTerm::resizeArea ( int offset_left, int offset_top
|
2016-12-28 16:29:49 +01:00
|
|
|
, int width, int height
|
|
|
|
, int rsw, int bsh
|
|
|
|
, term_area* area )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2017-03-08 23:48:30 +01:00
|
|
|
// Resize the virtual window to a new size.
|
|
|
|
|
2017-01-22 23:04:40 +01:00
|
|
|
assert ( offset_top >= 0 );
|
|
|
|
assert ( width > 0 );
|
|
|
|
assert ( height > 0 );
|
|
|
|
assert ( rsw >= 0 );
|
|
|
|
assert ( bsh >= 0 );
|
2016-12-28 16:29:49 +01:00
|
|
|
int area_size;
|
|
|
|
char_data default_char;
|
|
|
|
line_changes unchanged;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
|
|
|
if ( ! area )
|
2016-12-28 16:29:49 +01:00
|
|
|
return;
|
|
|
|
|
2017-03-19 17:18:07 +01:00
|
|
|
if ( width == area->width
|
2017-11-26 22:37:18 +01:00
|
|
|
&& height == area->height
|
|
|
|
&& rsw == area->right_shadow
|
|
|
|
&& bsh == area->bottom_shadow )
|
2017-03-19 17:18:07 +01:00
|
|
|
{
|
|
|
|
if ( offset_left != area->offset_left )
|
|
|
|
area->offset_left = offset_left;
|
|
|
|
|
|
|
|
if ( offset_top != area->offset_top )
|
|
|
|
area->offset_top = offset_top;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
area_size = (width + rsw) * (height + bsh);
|
2016-12-28 16:29:49 +01:00
|
|
|
|
|
|
|
if ( area->height + area->bottom_shadow != height + bsh )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area->changes != 0 )
|
|
|
|
delete[] area->changes;
|
|
|
|
|
|
|
|
if ( area->text != 0 )
|
|
|
|
delete[] area->text;
|
|
|
|
|
2017-08-12 22:55:29 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
area->changes = new line_changes[height + bsh];
|
|
|
|
area->text = new char_data[area_size];
|
|
|
|
}
|
|
|
|
catch (const std::bad_alloc& ex)
|
|
|
|
{
|
|
|
|
std::cerr << "not enough memory to alloc " << ex.what() << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
else if ( area->width + area->right_shadow != width + rsw )
|
|
|
|
{
|
|
|
|
if ( area->text != 0 )
|
|
|
|
delete[] area->text;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-08-12 22:55:29 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
area->text = new char_data[area_size];
|
|
|
|
}
|
|
|
|
catch (const std::bad_alloc& ex)
|
|
|
|
{
|
|
|
|
std::cerr << "not enough memory to alloc " << ex.what() << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-01-15 19:48:27 +01:00
|
|
|
area->offset_left = offset_left;
|
2017-02-25 15:18:29 +01:00
|
|
|
area->offset_top = offset_top;
|
2016-12-28 16:29:49 +01:00
|
|
|
area->width = width;
|
|
|
|
area->height = height;
|
|
|
|
area->right_shadow = rsw;
|
|
|
|
area->bottom_shadow = bsh;
|
|
|
|
area->has_changes = false;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-09-15 01:31:02 +02:00
|
|
|
default_char.code = ' ';
|
|
|
|
default_char.fg_color = fc::Default;
|
|
|
|
default_char.bg_color = fc::Default;
|
|
|
|
default_char.attr.byte[0] = 0;
|
|
|
|
default_char.attr.byte[1] = 0;
|
2017-09-16 01:21:16 +02:00
|
|
|
default_char.attr.byte[2] = 0;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
std::fill_n (area->text, area_size, default_char);
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
unchanged.xmin = uInt(width + rsw);
|
2016-12-28 16:29:49 +01:00
|
|
|
unchanged.xmax = 0;
|
|
|
|
unchanged.trans_count = 0;
|
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
std::fill_n (area->changes, height + bsh, unchanged);
|
2016-12-28 16:29:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::removeArea (term_area*& area)
|
|
|
|
{
|
|
|
|
// remove the virtual window
|
2017-03-08 23:48:30 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area != 0 )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area->changes != 0 )
|
|
|
|
{
|
|
|
|
delete[] area->changes;
|
|
|
|
area->changes = 0;
|
|
|
|
}
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area->text != 0 )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
delete[] area->text;
|
|
|
|
area->text = 0;
|
|
|
|
}
|
2016-10-15 03:32:30 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
delete area;
|
|
|
|
area = 0;
|
|
|
|
}
|
|
|
|
}
|
2016-10-14 17:37:26 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::restoreVTerm (const FRect& box)
|
|
|
|
{
|
|
|
|
restoreVTerm ( box.getX()
|
|
|
|
, box.getY()
|
|
|
|
, box.getWidth()
|
|
|
|
, box.getHeight() );
|
|
|
|
}
|
2016-10-14 17:37:26 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::restoreVTerm (int x, int y, int w, int h)
|
|
|
|
{
|
2018-01-05 00:49:00 +01:00
|
|
|
char_data* tc; // terminal character
|
|
|
|
char_data sc; // shown character
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
x--;
|
|
|
|
y--;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( x < 0 )
|
|
|
|
x = 0;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( y < 0 )
|
|
|
|
y = 0;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( w < 0 || h < 0 )
|
|
|
|
return;
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
if ( x + w > vterm->width )
|
2016-12-28 16:29:49 +01:00
|
|
|
w = vterm->width - x;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( w < 0 )
|
|
|
|
return;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
if ( y + h > vterm->height )
|
2016-12-28 16:29:49 +01:00
|
|
|
h = vterm->height - y;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( h < 0 )
|
|
|
|
return;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2018-01-05 00:49:00 +01:00
|
|
|
for (int ty = 0; ty < h; ty++)
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
2018-01-05 00:49:00 +01:00
|
|
|
int ypos = y + ty;
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2018-01-05 00:49:00 +01:00
|
|
|
for (int tx = 0; tx < w; tx++)
|
|
|
|
{
|
|
|
|
int xpos = x + tx;
|
|
|
|
tc = &vterm->text[ypos * vterm->width + xpos];
|
|
|
|
sc = generateCharacter(xpos, ypos);
|
|
|
|
std::memcpy (tc, &sc, sizeof(char_data));
|
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2018-01-05 00:49:00 +01:00
|
|
|
if ( short(vterm->changes[ypos].xmin) > x )
|
|
|
|
vterm->changes[ypos].xmin = uInt(x);
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2018-01-05 00:49:00 +01:00
|
|
|
if ( short(vterm->changes[ypos].xmax) < x + w - 1 )
|
|
|
|
vterm->changes[ypos].xmax = uInt(x + w - 1);
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FVTerm::covered_state FVTerm::isCovered ( const FPoint& pos
|
|
|
|
, term_area* area )
|
|
|
|
{
|
2017-12-02 18:52:51 +01:00
|
|
|
// Determines the covered state for the given position
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
return isCovered (pos.getX(), pos.getY(), area);
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
FVTerm::covered_state FVTerm::isCovered ( int x, int y
|
|
|
|
, term_area* area )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2017-12-02 18:52:51 +01:00
|
|
|
// Determines the covered state for the given position
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
bool found;
|
|
|
|
covered_state is_covered;
|
|
|
|
FWidget* w;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
|
|
|
if ( ! area )
|
2016-12-28 16:29:49 +01:00
|
|
|
return non_covered;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
is_covered = non_covered;
|
|
|
|
found = bool(area == vdesktop);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
w = static_cast<FWidget*>(area->widget);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( w->window_list && ! w->window_list->empty() )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
FWidget::widgetList::const_iterator iter, end;
|
|
|
|
iter = w->window_list->begin();
|
|
|
|
end = w->window_list->end();
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
for (; iter != end; ++iter)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
term_area* win = (*iter)->getVWin();
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! win )
|
|
|
|
continue;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! win->visible )
|
|
|
|
continue;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-02-25 15:18:29 +01:00
|
|
|
int win_x = win->offset_left;
|
|
|
|
int win_y = win->offset_top;
|
2016-12-28 16:29:49 +01:00
|
|
|
FRect geometry ( win_x
|
|
|
|
, win_y
|
|
|
|
, win->width + win->right_shadow
|
|
|
|
, win->height + win->bottom_shadow );
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
if ( found && geometry.contains(x, y) )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
char_data* tmp;
|
|
|
|
int line_len = win->width + win->right_shadow;
|
2017-08-27 09:50:30 +02:00
|
|
|
tmp = &win->text[(y - win_y) * line_len + (x - win_x)];
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-08-20 17:30:30 +02:00
|
|
|
if ( tmp->attr.bit.trans_shadow )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
is_covered = half_covered;
|
|
|
|
}
|
2017-08-20 17:30:30 +02:00
|
|
|
else if ( ! tmp->attr.bit.transparent )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
is_covered = fully_covered;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( area == win )
|
|
|
|
found = true;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
return is_covered;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-02 18:52:51 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::updateOverlappedColor ( term_area* area
|
|
|
|
, int x, int y, int tx, int ty )
|
|
|
|
{
|
|
|
|
// Add the overlapping color to this character
|
|
|
|
|
|
|
|
int& aw = area->width;
|
|
|
|
int& rsh = area->right_shadow;
|
|
|
|
int line_len = aw + rsh;
|
|
|
|
// Area character
|
|
|
|
char_data* ac = &area->text[y * line_len + x];
|
|
|
|
// Terminal character
|
|
|
|
char_data* tc = &vterm->text[ty * vterm->width + tx];
|
|
|
|
// New character
|
|
|
|
char_data nc;
|
|
|
|
std::memcpy (&nc, ac, sizeof(char_data));
|
|
|
|
// Overlapped character
|
|
|
|
char_data oc = getOverlappedCharacter (tx + 1, ty + 1, area->widget);
|
|
|
|
nc.fg_color = oc.fg_color;
|
|
|
|
nc.bg_color = oc.bg_color;
|
|
|
|
nc.attr.bit.reverse = false;
|
|
|
|
nc.attr.bit.standout = false;
|
|
|
|
|
|
|
|
if ( nc.code == fc::LowerHalfBlock
|
|
|
|
|| nc.code == fc::UpperHalfBlock
|
|
|
|
|| nc.code == fc::LeftHalfBlock
|
|
|
|
|| nc.code == fc::RightHalfBlock
|
|
|
|
|| nc.code == fc::MediumShade
|
|
|
|
|| nc.code == fc::FullBlock )
|
|
|
|
nc.code = ' ';
|
|
|
|
|
|
|
|
nc.attr.bit.no_changes = bool(tc->attr.bit.printed && *tc == nc);
|
|
|
|
std::memcpy (tc, &nc, sizeof(char_data));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::updateOverlappedCharacter (term_area* area, int tx, int ty)
|
|
|
|
{
|
|
|
|
// Restore one character on vterm
|
|
|
|
|
|
|
|
// Terminal character
|
|
|
|
char_data* tc = &vterm->text[ty * vterm->width + tx];
|
|
|
|
// Overlapped character
|
|
|
|
char_data oc = getCoveredCharacter (tx + 1, ty + 1, area->widget);
|
|
|
|
oc.attr.bit.no_changes = bool(tc->attr.bit.printed && *tc == oc);
|
|
|
|
std::memcpy (tc, &oc, sizeof(char_data));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::updateShadedCharacter ( term_area* area
|
|
|
|
, int x, int y, int tx, int ty )
|
|
|
|
{
|
|
|
|
// Get covered character + add the current color
|
|
|
|
|
|
|
|
int& aw = area->width;
|
|
|
|
int& rsh = area->right_shadow;
|
|
|
|
int line_len = aw + rsh;
|
|
|
|
// Area character
|
|
|
|
char_data* ac = &area->text[y * line_len + x];
|
|
|
|
// Terminal character
|
|
|
|
char_data* tc = &vterm->text[ty * vterm->width + tx];
|
|
|
|
// Overlapped character
|
|
|
|
char_data oc = getCoveredCharacter (tx + 1, ty + 1, area->widget);
|
|
|
|
oc.fg_color = ac->fg_color;
|
|
|
|
oc.bg_color = ac->bg_color;
|
|
|
|
oc.attr.bit.reverse = false;
|
|
|
|
oc.attr.bit.standout = false;
|
|
|
|
|
|
|
|
if ( oc.code == fc::LowerHalfBlock
|
|
|
|
|| oc.code == fc::UpperHalfBlock
|
|
|
|
|| oc.code == fc::LeftHalfBlock
|
|
|
|
|| oc.code == fc::RightHalfBlock
|
|
|
|
|| oc.code == fc::MediumShade
|
|
|
|
|| oc.code == fc::FullBlock )
|
|
|
|
oc.code = ' ';
|
|
|
|
|
|
|
|
oc.attr.bit.no_changes = bool(tc->attr.bit.printed && *tc == oc);
|
|
|
|
std::memcpy (tc, &oc, sizeof(char_data));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::updateInheritBackground ( term_area* area
|
|
|
|
, int x, int y, int tx, int ty )
|
|
|
|
{
|
|
|
|
// Add the covered background to this character
|
|
|
|
|
|
|
|
int& aw = area->width;
|
|
|
|
int& rsh = area->right_shadow;
|
|
|
|
int line_len = aw + rsh;
|
|
|
|
// Area character
|
|
|
|
char_data* ac = &area->text[y * line_len + x];
|
|
|
|
// Terminal character
|
|
|
|
char_data* tc = &vterm->text[ty * vterm->width + tx];
|
|
|
|
// New character
|
|
|
|
char_data nc;
|
|
|
|
std::memcpy (&nc, ac, sizeof(char_data));
|
|
|
|
// Covered character
|
|
|
|
char_data cc = getCoveredCharacter (tx + 1, ty + 1, area->widget);
|
|
|
|
nc.bg_color = cc.bg_color;
|
|
|
|
nc.attr.bit.no_changes = bool(tc->attr.bit.printed && *tc == nc);
|
|
|
|
std::memcpy (tc, &nc, sizeof(char_data));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::updateCharacter ( term_area* area
|
|
|
|
, int x, int y, int tx, int ty )
|
|
|
|
{
|
|
|
|
// Copy a area character to the virtual terminal
|
|
|
|
|
|
|
|
int& aw = area->width;
|
|
|
|
int& rsh = area->right_shadow;
|
|
|
|
int line_len = aw + rsh;
|
|
|
|
// Area character
|
|
|
|
char_data* ac = &area->text[y * line_len + x];
|
|
|
|
// Terminal character
|
|
|
|
char_data* tc = &vterm->text[ty * vterm->width + tx];
|
|
|
|
std::memcpy (tc, ac, sizeof(char_data));
|
|
|
|
|
|
|
|
if ( tc->attr.bit.printed && *tc == *ac )
|
|
|
|
tc->attr.bit.no_changes = true;
|
|
|
|
else
|
|
|
|
tc->attr.bit.no_changes = false;
|
|
|
|
}
|
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool FVTerm::updateVTermCharacter ( term_area* area
|
|
|
|
, int x, int y, int tx, int ty )
|
|
|
|
{
|
|
|
|
int& aw = area->width;
|
|
|
|
int& rsh = area->right_shadow;
|
|
|
|
int line_len = aw + rsh;
|
|
|
|
// Area character
|
|
|
|
char_data* ac = &area->text[y * line_len + x];
|
|
|
|
|
|
|
|
// Get covered state
|
|
|
|
covered_state is_covered = isCovered(tx, ty, area);
|
|
|
|
|
|
|
|
if ( is_covered == fully_covered )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if ( is_covered == half_covered )
|
|
|
|
{
|
|
|
|
updateOverlappedColor(area, x, y, tx, ty);
|
|
|
|
}
|
|
|
|
else if ( ac->attr.bit.transparent ) // Transparent
|
|
|
|
{
|
|
|
|
updateOverlappedCharacter(area, tx, ty);
|
|
|
|
}
|
|
|
|
else // Not transparent
|
|
|
|
{
|
|
|
|
if ( ac->attr.bit.trans_shadow ) // Transparent shadow
|
|
|
|
{
|
|
|
|
updateShadedCharacter (area, x, y, tx, ty);
|
|
|
|
}
|
|
|
|
else if ( ac->attr.bit.inherit_bg )
|
|
|
|
{
|
|
|
|
updateInheritBackground (area, x, y, tx, ty);
|
|
|
|
}
|
|
|
|
else // Default
|
|
|
|
{
|
|
|
|
updateCharacter (area, x, y, tx, ty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-12-02 18:52:51 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::callPreprocessingHandler (term_area* area)
|
|
|
|
{
|
|
|
|
// Call preprocessing handler
|
|
|
|
|
|
|
|
if ( ! area->preprocessing_call.empty() )
|
|
|
|
{
|
|
|
|
FPreprocessing::const_iterator iter, end;
|
|
|
|
iter = area->preprocessing_call.begin();
|
|
|
|
end = area->preprocessing_call.end();
|
|
|
|
|
|
|
|
while ( iter != end )
|
|
|
|
{
|
|
|
|
FPreprocessingHandler handler = iter->handler;
|
|
|
|
// call the preprocessing handler
|
|
|
|
(iter->instance->*handler)();
|
|
|
|
++iter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::updateVTerm()
|
|
|
|
{
|
|
|
|
// Updates the character data from all areas to VTerm
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( vdesktop && vdesktop->has_changes )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
updateVTerm(vdesktop);
|
|
|
|
vdesktop->has_changes = false;
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
FWidget* widget = static_cast<FWidget*>(vterm->widget);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! widget->window_list || widget->window_list->empty() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
FWidget::widgetList::const_iterator iter, end;
|
|
|
|
iter = widget->window_list->begin();
|
|
|
|
end = widget->window_list->end();
|
|
|
|
|
|
|
|
for (; iter != end; ++iter)
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
term_area* win = (*iter)->getVWin();
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! win )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( ! win->visible )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( win->has_changes )
|
|
|
|
{
|
|
|
|
updateVTerm(win);
|
|
|
|
win->has_changes = false;
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2017-02-18 23:37:10 +01:00
|
|
|
else if ( ! win->preprocessing_call.empty() )
|
2017-01-15 19:48:27 +01:00
|
|
|
{
|
2017-02-24 23:16:05 +01:00
|
|
|
FPreprocessing::const_iterator iter2, end2;
|
|
|
|
iter2 = win->preprocessing_call.begin();
|
|
|
|
end2 = win->preprocessing_call.end();
|
2017-02-18 23:37:10 +01:00
|
|
|
|
2017-02-24 23:16:05 +01:00
|
|
|
while ( iter2 != end2 )
|
2017-02-18 23:37:10 +01:00
|
|
|
{
|
2017-02-24 23:16:05 +01:00
|
|
|
if ( iter2->instance->child_print_area
|
2017-11-26 22:37:18 +01:00
|
|
|
&& iter2->instance->child_print_area->has_changes )
|
2017-02-18 23:37:10 +01:00
|
|
|
{
|
|
|
|
updateVTerm(win);
|
2017-02-24 23:16:05 +01:00
|
|
|
iter2->instance->child_print_area->has_changes = false;
|
2017-02-18 23:37:10 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-02-24 23:16:05 +01:00
|
|
|
++iter2;
|
2017-02-18 23:37:10 +01:00
|
|
|
}
|
2017-01-15 19:48:27 +01:00
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::updateVTerm (term_area* area)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Update area data on VTerm
|
|
|
|
|
2017-12-03 21:34:07 +01:00
|
|
|
if ( ! area || ! area->visible )
|
|
|
|
return;
|
|
|
|
|
2017-10-02 07:32:33 +02:00
|
|
|
int ax = area->offset_left
|
|
|
|
, ay = area->offset_top
|
|
|
|
, aw = area->width
|
|
|
|
, ah = area->height
|
|
|
|
, rsh = area->right_shadow
|
|
|
|
, bsh = area->bottom_shadow
|
2017-12-03 21:06:21 +01:00
|
|
|
, ol = 0 // Outside left
|
2017-10-02 07:32:33 +02:00
|
|
|
, y_end;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
// Call the processing handler methods
|
|
|
|
callPreprocessingHandler(area);
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ax < 0 )
|
|
|
|
{
|
|
|
|
ol = std::abs(ax);
|
|
|
|
ax = 0;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
2016-12-15 23:11:34 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ah + bsh + ay > vterm->height )
|
|
|
|
y_end = vterm->height - ay;
|
2016-12-15 23:11:34 +01:00
|
|
|
else
|
2016-12-28 16:29:49 +01:00
|
|
|
y_end = ah + bsh;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
for (int y = 0; y < y_end; y++) // Line loop
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2017-12-03 21:06:21 +01:00
|
|
|
int _xmin, _xmax;
|
|
|
|
bool modified = false;
|
2016-12-28 16:29:49 +01:00
|
|
|
int line_xmin = int(area->changes[y].xmin);
|
|
|
|
int line_xmax = int(area->changes[y].xmax);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
if ( line_xmin > line_xmax )
|
|
|
|
continue;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
if ( ax == 0 )
|
|
|
|
line_xmin = ol;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
if ( aw + rsh + ax - ol >= vterm->width )
|
|
|
|
line_xmax = vterm->width + ol - ax - 1;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
if ( ax + line_xmin >= vterm->width )
|
|
|
|
continue;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
for (int x = line_xmin; x <= line_xmax; x++) // Column loop
|
|
|
|
{
|
|
|
|
// Global terminal positions
|
|
|
|
int tx = ax + x
|
|
|
|
, ty = ay + y;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
if ( tx < 0 || ty < 0 )
|
|
|
|
continue;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
tx -= ol;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
if ( updateVTermCharacter (area, x, y, tx, ty) )
|
|
|
|
modified = true;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
if ( ! modified )
|
|
|
|
line_xmin++; // Don't update covered character
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
_xmin = ax + line_xmin - ol;
|
|
|
|
_xmax = ax + line_xmax;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
if ( _xmin < short(vterm->changes[ay + y].xmin) )
|
|
|
|
vterm->changes[ay + y].xmin = uInt(_xmin);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
if ( _xmax >= vterm->width )
|
|
|
|
_xmax = vterm->width - 1;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
if ( _xmax > short(vterm->changes[ay + y].xmax) )
|
|
|
|
vterm->changes[ay + y].xmax = uInt(_xmax);
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-12-03 21:06:21 +01:00
|
|
|
area->changes[y].xmin = uInt(aw + rsh);
|
|
|
|
area->changes[y].xmax = 0;
|
2016-12-28 16:29:49 +01:00
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
updateVTermCursor(area);
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
bool FVTerm::updateVTermCursor (term_area* area)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! area )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if ( area != active_area )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if ( ! area->visible )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if ( area->input_cursor_visible )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
int cx, cy, ax, ay, x, y;
|
|
|
|
// area offset
|
2017-02-25 15:18:29 +01:00
|
|
|
ax = area->offset_left;
|
|
|
|
ay = area->offset_top;
|
2016-12-28 16:29:49 +01:00
|
|
|
// area cursor position
|
|
|
|
cx = area->input_cursor_x;
|
|
|
|
cy = area->input_cursor_y;
|
|
|
|
// terminal position
|
|
|
|
x = ax + cx;
|
|
|
|
y = ay + cy;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( isInsideArea(cx, cy, area)
|
2017-11-26 22:37:18 +01:00
|
|
|
&& isInsideTerminal(x, y)
|
|
|
|
&& isCovered(x, y, area) == non_covered )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
vterm->input_cursor_x = x;
|
|
|
|
vterm->input_cursor_y = y;
|
|
|
|
vterm->input_cursor_visible = true;
|
|
|
|
return true;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
|
|
|
|
vterm->input_cursor_visible = false;
|
|
|
|
return false;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
bool FVTerm::isInsideArea (int x, int y, term_area* area)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Check whether the coordinates are within the area
|
2017-10-02 07:32:33 +02:00
|
|
|
|
|
|
|
int ax = 0
|
|
|
|
, ay = 0
|
|
|
|
, aw = area->width
|
|
|
|
, ah = area->height;
|
2016-12-28 16:29:49 +01:00
|
|
|
FRect area_geometry(ax, ay, aw, ah);
|
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
if ( area_geometry.contains(x, y) )
|
2016-12-28 16:29:49 +01:00
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::setAreaCursor ( const FPoint& pos
|
|
|
|
, bool visible
|
|
|
|
, term_area* area )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
setAreaCursor (pos.getX(), pos.getY(), visible, area);
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::setAreaCursor ( int x, int y
|
|
|
|
, bool visible
|
|
|
|
, term_area* area )
|
|
|
|
{
|
|
|
|
if ( ! area )
|
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
area->input_cursor_x = x - 1;
|
|
|
|
area->input_cursor_y = y - 1;
|
|
|
|
area->input_cursor_visible = visible;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::getArea (const FPoint& pos, term_area* area)
|
|
|
|
{
|
|
|
|
return getArea (pos.getX(), pos.getY(), area);
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::getArea (int ax, int ay, term_area* area)
|
|
|
|
{
|
|
|
|
// Copies a block from the virtual terminal position to the given area
|
|
|
|
int y_end;
|
|
|
|
int length;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! area )
|
2016-11-02 00:37:58 +01:00
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
ax--;
|
|
|
|
ay--;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
if ( area->height + ay > vterm->height )
|
2016-12-28 16:29:49 +01:00
|
|
|
y_end = area->height - ay;
|
|
|
|
else
|
|
|
|
y_end = area->height;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
if ( area->width + ax > vterm->width )
|
2016-12-28 16:29:49 +01:00
|
|
|
length = vterm->width - ax;
|
|
|
|
else
|
|
|
|
length = area->width;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int y = 0; y < y_end; y++) // line loop
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2017-09-17 21:32:46 +02:00
|
|
|
char_data* tc; // terminal character
|
|
|
|
char_data* ac; // area character
|
2017-08-27 09:50:30 +02:00
|
|
|
tc = &vterm->text[(ay + y) * vterm->width + ax];
|
2016-12-28 16:29:49 +01:00
|
|
|
ac = &area->text[y * area->width];
|
|
|
|
std::memcpy (ac, tc, sizeof(char_data) * unsigned(length));
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( short(area->changes[y].xmin) > 0 )
|
|
|
|
area->changes[y].xmin = 0;
|
2016-10-14 17:37:26 +02:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
if ( short(area->changes[y].xmax) < length - 1 )
|
|
|
|
area->changes[y].xmax = uInt(length - 1);
|
2016-12-28 16:29:49 +01:00
|
|
|
}
|
|
|
|
}
|
2016-10-14 17:37:26 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::getArea (const FRect& box, term_area* area)
|
|
|
|
{
|
|
|
|
getArea ( box.getX()
|
|
|
|
, box.getY()
|
|
|
|
, box.getWidth()
|
|
|
|
, box.getHeight()
|
|
|
|
, area );
|
|
|
|
}
|
2016-10-14 17:37:26 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::getArea (int x, int y, int w, int h, term_area* area)
|
|
|
|
{
|
|
|
|
// Copies a block from the virtual terminal rectangle to the given area
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! area )
|
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-10-02 07:32:33 +02:00
|
|
|
int dx = x - area->offset_left + 1
|
|
|
|
, dy = y - area->offset_top + 1
|
|
|
|
, y_end
|
|
|
|
, length;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( x < 0 || y < 0 )
|
|
|
|
return;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
if ( y - 1 + h > vterm->height )
|
2016-12-28 16:29:49 +01:00
|
|
|
y_end = vterm->height - y + 1;
|
|
|
|
else
|
|
|
|
y_end = h - 1;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
if ( x - 1 + w > vterm->width )
|
2016-12-28 16:29:49 +01:00
|
|
|
length = vterm->width - x + 1;
|
|
|
|
else
|
|
|
|
length = w;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( length < 1 )
|
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int _y = 0; _y < y_end; _y++) // line loop
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
2017-09-17 21:32:46 +02:00
|
|
|
char_data* tc; // terminal character
|
|
|
|
char_data* ac; // area character
|
2016-12-28 16:29:49 +01:00
|
|
|
int line_len = area->width + area->right_shadow;
|
2017-08-27 09:50:30 +02:00
|
|
|
tc = &vterm->text[(y + _y - 1) * vterm->width + x - 1];
|
|
|
|
ac = &area->text[(dy + _y) * line_len + dx];
|
2016-12-28 16:29:49 +01:00
|
|
|
std::memcpy (ac, tc, sizeof(char_data) * unsigned(length));
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
if ( short(area->changes[dy + _y].xmin) > dx )
|
|
|
|
area->changes[dy + _y].xmin = uInt(dx);
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
if ( short(area->changes[dy + _y].xmax) < dx + length - 1 )
|
|
|
|
area->changes[dy + _y].xmax = uInt(dx + length - 1);
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-13 02:16:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::putArea (const FPoint& pos, term_area* area)
|
2016-10-13 02:16:51 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Copies the given area block to the virtual terminal position
|
|
|
|
if ( ! area )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ( ! area->visible )
|
|
|
|
return;
|
|
|
|
|
|
|
|
putArea (pos.getX(), pos.getY(), area);
|
2016-10-13 02:16:51 +02:00
|
|
|
}
|
|
|
|
|
2016-10-11 04:57:36 +02:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::putArea (int ax, int ay, term_area* area)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Copies the given area block to the virtual terminal position
|
2017-10-02 07:32:33 +02:00
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
char_data* tc; // terminal character
|
|
|
|
char_data* ac; // area character
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( ! area )
|
2016-12-28 16:29:49 +01:00
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! area->visible )
|
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
ax--;
|
|
|
|
ay--;
|
2017-10-02 07:32:33 +02:00
|
|
|
|
2018-01-05 00:49:00 +01:00
|
|
|
int aw = area->width
|
|
|
|
, ah = area->height
|
|
|
|
, rsh = area->right_shadow
|
|
|
|
, bsh = area->bottom_shadow
|
|
|
|
, ol = 0 // outside left
|
2017-10-02 07:32:33 +02:00
|
|
|
, y_end
|
|
|
|
, length;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ax < 0 )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
ol = std::abs(ax);
|
|
|
|
ax = 0;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ay + ah + bsh > vterm->height )
|
|
|
|
y_end = vterm->height - ay;
|
|
|
|
else
|
|
|
|
y_end = ah + bsh;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( aw + rsh - ol + ax > vterm->width )
|
|
|
|
length = vterm->width - ax;
|
|
|
|
else
|
|
|
|
length = aw + rsh - ol;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( length < 1 )
|
|
|
|
return;
|
2016-10-14 13:02:35 +02:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (register int y = 0; y < y_end; y++) // line loop
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
int line_len = aw + rsh;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area->changes[y].trans_count == 0 )
|
|
|
|
{
|
|
|
|
// Line has only covered characters
|
2017-08-27 09:50:30 +02:00
|
|
|
tc = &vterm->text[(ay + y) * vterm->width + ax];
|
2016-12-28 16:29:49 +01:00
|
|
|
ac = &area->text[y * line_len + ol];
|
|
|
|
std::memcpy (tc, ac, sizeof(char_data) * unsigned(length));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Line has one or more transparent characters
|
2017-08-27 09:50:30 +02:00
|
|
|
for (register int x = 0; x < length; x++) // column loop
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2017-08-27 09:50:30 +02:00
|
|
|
tc = &vterm->text[(ay + y) * vterm->width + (ax + x)];
|
2016-12-28 16:29:49 +01:00
|
|
|
ac = &area->text[y * line_len + ol + x];
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-08-20 17:30:30 +02:00
|
|
|
if ( ac->attr.bit.transparent ) // transparent
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// restore one character on vterm
|
|
|
|
char_data ch;
|
2017-08-27 09:50:30 +02:00
|
|
|
ch = getCoveredCharacter (ax + x + 1, ay + y + 1, area->widget);
|
2016-12-28 16:29:49 +01:00
|
|
|
std::memcpy (tc, &ch, sizeof(char_data));
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
else // not transparent
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2017-08-20 17:30:30 +02:00
|
|
|
if ( ac->attr.bit.trans_shadow ) // transparent shadow
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
// get covered character + add the current color
|
|
|
|
char_data ch;
|
2017-08-27 09:50:30 +02:00
|
|
|
ch = getCoveredCharacter (ax + x + 1, ay + y + 1, area->widget);
|
2016-12-28 16:29:49 +01:00
|
|
|
ch.fg_color = ac->fg_color;
|
|
|
|
ch.bg_color = ac->bg_color;
|
2017-08-20 17:30:30 +02:00
|
|
|
ch.attr.bit.reverse = false;
|
|
|
|
ch.attr.bit.standout = false;
|
2016-12-28 16:29:49 +01:00
|
|
|
|
|
|
|
if ( ch.code == fc::LowerHalfBlock
|
2017-11-26 22:37:18 +01:00
|
|
|
|| ch.code == fc::UpperHalfBlock
|
|
|
|
|| ch.code == fc::LeftHalfBlock
|
|
|
|
|| ch.code == fc::RightHalfBlock
|
|
|
|
|| ch.code == fc::MediumShade
|
|
|
|
|| ch.code == fc::FullBlock )
|
2016-12-28 16:29:49 +01:00
|
|
|
ch.code = ' ';
|
|
|
|
|
|
|
|
std::memcpy (tc, &ch, sizeof(char_data));
|
|
|
|
}
|
2017-08-20 17:30:30 +02:00
|
|
|
else if ( ac->attr.bit.inherit_bg )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
// add the covered background to this character
|
|
|
|
char_data ch, cc;
|
|
|
|
std::memcpy (&ch, ac, sizeof(char_data));
|
2017-08-27 09:50:30 +02:00
|
|
|
cc = getCoveredCharacter (ax + x + 1, ay + y + 1, area->widget);
|
2016-12-28 16:29:49 +01:00
|
|
|
ch.bg_color = cc.bg_color;
|
|
|
|
std::memcpy (tc, &ch, sizeof(char_data));
|
|
|
|
}
|
|
|
|
else // default
|
|
|
|
std::memcpy (tc, ac, sizeof(char_data));
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
if ( ax < short(vterm->changes[ay + y].xmin) )
|
|
|
|
vterm->changes[ay + y].xmin = uInt(ax);
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
if ( ax + length - 1 > short(vterm->changes[ay + y].xmax) )
|
|
|
|
vterm->changes[ay + y].xmax = uInt(ax + length - 1);
|
2016-12-28 16:29:49 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::scrollAreaForward (term_area* area)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Scrolls the entire area up line down
|
2017-10-02 07:32:33 +02:00
|
|
|
int total_width
|
|
|
|
, length
|
|
|
|
, y_max;
|
2017-09-11 03:06:02 +02:00
|
|
|
char_data nc; // next character
|
|
|
|
char_data* lc; // last character
|
|
|
|
char_data* dc; // destination character
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! area )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ( area->height <= 1 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
length = area->width;
|
|
|
|
total_width = area->width + area->right_shadow;
|
|
|
|
y_max = area->height - 1;
|
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int y = 0; y < y_max; y++)
|
2016-12-18 23:34:11 +01:00
|
|
|
{
|
2017-09-17 21:32:46 +02:00
|
|
|
char_data* sc; // source character
|
2016-12-28 16:29:49 +01:00
|
|
|
int pos1 = y * total_width;
|
2017-08-27 09:50:30 +02:00
|
|
|
int pos2 = (y + 1) * total_width;
|
2016-12-28 16:29:49 +01:00
|
|
|
sc = &area->text[pos2];
|
|
|
|
dc = &area->text[pos1];
|
|
|
|
std::memcpy (dc, sc, sizeof(char_data) * unsigned(length));
|
|
|
|
area->changes[y].xmin = 0;
|
|
|
|
area->changes[y].xmax = uInt(area->width - 1);
|
2016-12-18 23:34:11 +01:00
|
|
|
}
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// insert a new line below
|
|
|
|
lc = &area->text[(y_max * total_width) - area->right_shadow - 1];
|
|
|
|
std::memcpy (&nc, lc, sizeof(char_data));
|
|
|
|
nc.code = ' ';
|
|
|
|
dc = &area->text[y_max * total_width];
|
|
|
|
std::fill_n (dc, area->width, nc);
|
|
|
|
area->changes[y_max].xmin = 0;
|
|
|
|
area->changes[y_max].xmax = uInt(area->width - 1);
|
|
|
|
area->has_changes = true;
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area == vdesktop )
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
if ( TCAP(fc::t_scroll_forward) )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
setTermXY (0, vdesktop->height);
|
|
|
|
scrollTermForward();
|
|
|
|
putArea (1, 1, vdesktop);
|
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
// avoid update lines from 0 to (y_max - 1)
|
|
|
|
for (int y = 0; y < y_max; y++)
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
area->changes[y].xmin = uInt(area->width - 1);
|
|
|
|
area->changes[y].xmax = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::scrollAreaReverse (term_area* area)
|
|
|
|
{
|
|
|
|
// Scrolls the entire area one line down
|
2017-10-02 07:32:33 +02:00
|
|
|
int total_width
|
|
|
|
, length
|
|
|
|
, y_max;
|
2017-09-11 03:06:02 +02:00
|
|
|
char_data nc; // next character
|
|
|
|
char_data* lc; // last character
|
|
|
|
char_data* dc; // destination character
|
2016-12-28 16:29:49 +01:00
|
|
|
|
|
|
|
if ( ! area )
|
2016-12-18 23:34:11 +01:00
|
|
|
return;
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area->height <= 1 )
|
|
|
|
return;
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
length = area->width;
|
|
|
|
total_width = area->width + area->right_shadow;
|
|
|
|
y_max = area->height - 1;
|
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int y = y_max; y > 0; y--)
|
2016-12-18 23:34:11 +01:00
|
|
|
{
|
2017-09-17 21:32:46 +02:00
|
|
|
char_data* sc; // source character
|
2017-08-27 09:50:30 +02:00
|
|
|
int pos1 = (y - 1) * total_width;
|
2016-12-28 16:29:49 +01:00
|
|
|
int pos2 = y * total_width;
|
|
|
|
sc = &area->text[pos1];
|
|
|
|
dc = &area->text[pos2];
|
|
|
|
std::memcpy (dc, sc, sizeof(char_data) * unsigned(length));
|
|
|
|
area->changes[y].xmin = 0;
|
|
|
|
area->changes[y].xmax = uInt(area->width - 1);
|
|
|
|
}
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// insert a new line above
|
|
|
|
lc = &area->text[total_width];
|
|
|
|
std::memcpy (&nc, lc, sizeof(char_data));
|
|
|
|
nc.code = ' ';
|
|
|
|
dc = &area->text[0];
|
|
|
|
std::fill_n (dc, area->width, nc);
|
|
|
|
area->changes[0].xmin = 0;
|
|
|
|
area->changes[0].xmax = uInt(area->width - 1);
|
|
|
|
area->has_changes = true;
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area == vdesktop )
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
if ( TCAP(fc::t_scroll_reverse) )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
setTermXY (0, 0);
|
|
|
|
scrollTermReverse();
|
|
|
|
putArea (1, 1, vdesktop);
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// avoid update lines from 1 to y_max
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int y = 1; y <= y_max; y++)
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
area->changes[y].xmin = uInt(area->width - 1);
|
|
|
|
area->changes[y].xmax = 0;
|
|
|
|
}
|
2016-12-18 23:34:11 +01:00
|
|
|
}
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::clearArea (term_area* area, int fillchar)
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// clear the area with the current attributes
|
|
|
|
char_data nc; // next character
|
|
|
|
int total_width;
|
|
|
|
uInt w;
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// current attributes with a space character
|
|
|
|
std::memcpy (&nc, &next_attribute, sizeof(char_data));
|
|
|
|
nc.code = fillchar;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-01-03 05:19:44 +01:00
|
|
|
if ( ! (area && area->text) )
|
2016-11-02 00:37:58 +01:00
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
total_width = area->width + area->right_shadow;
|
|
|
|
w = uInt(total_width);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area->right_shadow == 0 )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
int area_size = area->width * area->height;
|
|
|
|
std::fill_n (area->text, area_size, nc);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( area == vdesktop )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( clearTerm (fillchar) )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2017-08-20 17:30:30 +02:00
|
|
|
nc.attr.bit.printed = true;
|
2016-12-28 16:29:49 +01:00
|
|
|
std::fill_n (vterm->text, area_size, nc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int i = 0; i < vdesktop->height; i++)
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
vdesktop->changes[i].xmin = 0;
|
|
|
|
vdesktop->changes[i].xmax = uInt(vdesktop->width) - 1;
|
|
|
|
vdesktop->changes[i].trans_count = 0;
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
vdesktop->has_changes = true;
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
char_data t_char = nc;
|
2017-08-20 17:30:30 +02:00
|
|
|
t_char.attr.bit.transparent = true;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int y = 0; y < area->height; y++)
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
int pos = y * total_width;
|
|
|
|
// area
|
|
|
|
std::fill_n (&area->text[pos], total_width, nc);
|
|
|
|
// right shadow
|
2017-08-27 09:50:30 +02:00
|
|
|
std::fill_n (&area->text[pos + area->width], area->right_shadow, t_char);
|
2016-12-28 16:29:49 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// bottom shadow
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int y = 0; y < area->bottom_shadow; y++)
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
int pos = total_width * (y + area->height);
|
|
|
|
std::fill_n (&area->text[pos], total_width, t_char);
|
|
|
|
}
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int i = 0; i < area->height; i++)
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
area->changes[i].xmin = 0;
|
|
|
|
area->changes[i].xmax = w - 1;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-08-20 17:30:30 +02:00
|
|
|
if ( nc.attr.bit.transparent
|
2017-11-26 22:37:18 +01:00
|
|
|
|| nc.attr.bit.trans_shadow
|
|
|
|
|| nc.attr.bit.inherit_bg )
|
2016-12-28 16:29:49 +01:00
|
|
|
area->changes[i].trans_count = w;
|
|
|
|
else if ( area->right_shadow != 0 )
|
|
|
|
area->changes[i].trans_count = uInt(area->right_shadow);
|
|
|
|
else
|
|
|
|
area->changes[i].trans_count = 0;
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int i = 0; i < area->bottom_shadow; i++)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
int y = area->height + i;
|
|
|
|
area->changes[y].xmin = 0;
|
|
|
|
area->changes[y].xmax = w - 1;
|
|
|
|
area->changes[y].trans_count = w;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
area->has_changes = true;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
2018-01-05 00:49:00 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FVTerm::char_data FVTerm::generateCharacter (const FPoint& pos)
|
|
|
|
{
|
|
|
|
// Generates characters for a given position considering all areas
|
|
|
|
return generateCharacter (pos.getX(), pos.getY());
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FVTerm::char_data FVTerm::generateCharacter (int x, int y)
|
|
|
|
{
|
|
|
|
// Generates characters for a given position considering all areas
|
|
|
|
FWidget::widgetList::const_iterator iter, end;
|
|
|
|
char_data* sc; // shown character
|
|
|
|
char_data s_ch; // shadow character
|
|
|
|
char_data i_ch; // inherit background character
|
|
|
|
FWidget* widget;
|
|
|
|
|
|
|
|
widget = static_cast<FWidget*>(vterm->widget);
|
|
|
|
sc = &vdesktop->text[y * vdesktop->width + x];
|
|
|
|
|
|
|
|
if ( ! widget->window_list || widget->window_list->empty() )
|
|
|
|
return *sc;
|
|
|
|
|
|
|
|
iter = widget->window_list->begin();
|
|
|
|
end = widget->window_list->end();
|
|
|
|
|
|
|
|
for (; iter != end; ++iter)
|
|
|
|
{
|
|
|
|
term_area* win = (*iter)->getVWin();
|
|
|
|
|
|
|
|
if ( ! win || ! win->visible )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int win_x = win->offset_left;
|
|
|
|
int win_y = win->offset_top;
|
|
|
|
FRect geometry ( win_x
|
|
|
|
, win_y
|
|
|
|
, win->width + win->right_shadow
|
|
|
|
, win->height + win->bottom_shadow );
|
|
|
|
|
|
|
|
// Window is visible and contains current character
|
|
|
|
if ( geometry.contains(x, y) )
|
|
|
|
{
|
|
|
|
char_data* tmp;
|
|
|
|
int line_len = win->width + win->right_shadow;
|
|
|
|
tmp = &win->text[(y - win_y) * line_len + (x - win_x)];
|
|
|
|
|
|
|
|
if ( ! tmp->attr.bit.transparent ) // Current character not transparent
|
|
|
|
{
|
|
|
|
if ( tmp->attr.bit.trans_shadow ) // Transparent shadow
|
|
|
|
{
|
|
|
|
// Keep the current vterm character
|
|
|
|
std::memcpy (&s_ch, sc, sizeof(char_data));
|
|
|
|
s_ch.fg_color = tmp->fg_color;
|
|
|
|
s_ch.bg_color = tmp->bg_color;
|
|
|
|
s_ch.attr.bit.reverse = false;
|
|
|
|
s_ch.attr.bit.standout = false;
|
|
|
|
|
|
|
|
if ( s_ch.code == fc::LowerHalfBlock
|
|
|
|
|| s_ch.code == fc::UpperHalfBlock
|
|
|
|
|| s_ch.code == fc::LeftHalfBlock
|
|
|
|
|| s_ch.code == fc::RightHalfBlock
|
|
|
|
|| s_ch.code == fc::MediumShade
|
|
|
|
|| s_ch.code == fc::FullBlock )
|
|
|
|
s_ch.code = ' ';
|
|
|
|
|
|
|
|
sc = &s_ch;
|
|
|
|
}
|
|
|
|
else if ( tmp->attr.bit.inherit_bg )
|
|
|
|
{
|
|
|
|
// Add the covered background to this character
|
|
|
|
std::memcpy (&i_ch, tmp, sizeof(char_data));
|
|
|
|
i_ch.bg_color = sc->bg_color; // Last background color
|
|
|
|
sc = &i_ch;
|
|
|
|
}
|
|
|
|
else // Default
|
|
|
|
sc = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *sc;
|
|
|
|
}
|
|
|
|
|
2016-10-11 04:57:36 +02:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
FVTerm::char_data FVTerm::getCharacter ( character_type type
|
|
|
|
, const FPoint& pos
|
|
|
|
, FVTerm* obj )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Gets the overlapped or the covered character for a given position
|
|
|
|
return getCharacter (type, pos.getX(), pos.getY(), obj);
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
FVTerm::char_data FVTerm::getCharacter ( character_type char_type
|
|
|
|
, int x
|
|
|
|
, int y
|
|
|
|
, FVTerm* obj )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Gets the overlapped or the covered character for the position (x,y)
|
|
|
|
int xx, yy;
|
2017-09-11 03:06:02 +02:00
|
|
|
char_data* cc; // covered character
|
|
|
|
char_data s_ch; // shadow character
|
|
|
|
char_data i_ch; // inherit background character
|
2016-12-28 16:29:49 +01:00
|
|
|
FWidget* w;
|
2016-10-15 03:32:30 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
x--;
|
|
|
|
y--;
|
|
|
|
xx = x;
|
|
|
|
yy = y;
|
2016-10-15 03:32:30 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( xx < 0 )
|
|
|
|
xx = 0;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( yy < 0 )
|
|
|
|
yy = 0;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( xx >= vterm->width )
|
|
|
|
xx = vterm->width - 1;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( yy >= vterm->height )
|
|
|
|
yy = vterm->height - 1;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
cc = &vdesktop->text[yy * vdesktop->width + xx];
|
|
|
|
w = static_cast<FWidget*>(obj);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( w->window_list && ! w->window_list->empty() )
|
|
|
|
{
|
|
|
|
FWidget::widgetList::const_iterator iter, end;
|
2018-01-05 00:49:00 +01:00
|
|
|
// Get the window layer of this object
|
2016-12-28 16:29:49 +01:00
|
|
|
int layer = FWindow::getWindowLayer(w);
|
|
|
|
iter = w->window_list->begin();
|
|
|
|
end = w->window_list->end();
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
for (; iter != end; ++iter)
|
|
|
|
{
|
|
|
|
bool significant_char;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// char_type can be "overlapped_character"
|
|
|
|
// or "covered_character"
|
|
|
|
if ( char_type == covered_character )
|
|
|
|
significant_char = bool(layer >= FWindow::getWindowLayer(*iter));
|
|
|
|
else
|
|
|
|
significant_char = bool(layer < FWindow::getWindowLayer(*iter));
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( obj && *iter != obj && significant_char )
|
|
|
|
{
|
|
|
|
term_area* win = (*iter)->getVWin();
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! win )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( ! win->visible )
|
|
|
|
continue;
|
|
|
|
|
2017-02-25 15:18:29 +01:00
|
|
|
int win_x = win->offset_left;
|
|
|
|
int win_y = win->offset_top;
|
2016-12-28 16:29:49 +01:00
|
|
|
FRect geometry ( win_x
|
|
|
|
, win_y
|
|
|
|
, win->width + win->right_shadow
|
|
|
|
, win->height + win->bottom_shadow );
|
|
|
|
|
2018-01-05 00:49:00 +01:00
|
|
|
// Window visible and contains current character
|
2017-09-11 03:06:02 +02:00
|
|
|
if ( geometry.contains(x, y) )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
char_data* tmp;
|
|
|
|
int line_len = win->width + win->right_shadow;
|
2017-08-27 09:50:30 +02:00
|
|
|
tmp = &win->text[(y - win_y) * line_len + (x - win_x)];
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2018-01-05 00:49:00 +01:00
|
|
|
// Current character not transparent
|
2017-08-20 17:30:30 +02:00
|
|
|
if ( ! tmp->attr.bit.transparent )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
2017-08-20 17:30:30 +02:00
|
|
|
if ( tmp->attr.bit.trans_shadow ) // transparent shadow
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
2018-01-05 00:49:00 +01:00
|
|
|
// Keep the current vterm character
|
2016-12-28 16:29:49 +01:00
|
|
|
std::memcpy (&s_ch, cc, sizeof(char_data));
|
|
|
|
s_ch.fg_color = tmp->fg_color;
|
|
|
|
s_ch.bg_color = tmp->bg_color;
|
2017-08-20 17:30:30 +02:00
|
|
|
s_ch.attr.bit.reverse = false;
|
|
|
|
s_ch.attr.bit.standout = false;
|
2016-12-28 16:29:49 +01:00
|
|
|
cc = &s_ch;
|
|
|
|
}
|
2017-08-20 17:30:30 +02:00
|
|
|
else if ( tmp->attr.bit.inherit_bg )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
2018-01-05 00:49:00 +01:00
|
|
|
// Add the covered background to this character
|
2016-12-28 16:29:49 +01:00
|
|
|
std::memcpy (&i_ch, tmp, sizeof(char_data));
|
|
|
|
i_ch.bg_color = cc->bg_color; // last background color
|
|
|
|
cc = &i_ch;
|
|
|
|
}
|
|
|
|
else // default
|
|
|
|
cc = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( char_type == covered_character )
|
|
|
|
break;
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
|
|
|
|
return *cc;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
FVTerm::char_data FVTerm::getCoveredCharacter ( const FPoint& pos
|
|
|
|
, FVTerm* obj )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Gets the covered character for a given position
|
|
|
|
return getCharacter (covered_character, pos.getX(), pos.getY(), obj);
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
FVTerm::char_data FVTerm::getCoveredCharacter ( int x
|
|
|
|
, int y
|
|
|
|
, FVTerm* obj)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Gets the covered character for the position (x,y)
|
|
|
|
return getCharacter (covered_character, x, y, obj);
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FVTerm::char_data FVTerm::getOverlappedCharacter ( const FPoint& pos
|
|
|
|
, FVTerm* obj )
|
|
|
|
{
|
|
|
|
// Gets the overlapped character for a given position
|
|
|
|
return getCharacter (overlapped_character, pos.getX(), pos.getY(), obj);
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FVTerm::char_data FVTerm::getOverlappedCharacter ( int x
|
|
|
|
, int y
|
|
|
|
, FVTerm* obj)
|
|
|
|
{
|
|
|
|
// Gets the overlapped character for the position (x,y)
|
|
|
|
return getCharacter (overlapped_character, x, y, obj);
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::processTerminalUpdate()
|
|
|
|
{
|
|
|
|
// Retains terminal updates if there are unprocessed inputs
|
|
|
|
static const int max_skip = 8;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-01-15 19:48:27 +01:00
|
|
|
if ( ! terminal_update_pending )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ( ! unprocessedInput() )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2017-01-15 19:48:27 +01:00
|
|
|
updateTerminal();
|
|
|
|
terminal_update_pending = false;
|
|
|
|
skipped_terminal_update = 0;
|
|
|
|
}
|
|
|
|
else if ( skipped_terminal_update > max_skip )
|
|
|
|
{
|
|
|
|
force_terminal_update = true;
|
|
|
|
updateTerminal();
|
|
|
|
force_terminal_update = false;
|
|
|
|
terminal_update_pending = false;
|
|
|
|
skipped_terminal_update = 0;
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2017-01-15 19:48:27 +01:00
|
|
|
else
|
|
|
|
skipped_terminal_update++;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::startTerminalUpdate()
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Pauses the terminal updates for the printing phase
|
|
|
|
terminal_update_complete = false;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::finishTerminalUpdate()
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// After the printing phase is completed, the terminal will be updated
|
|
|
|
terminal_update_complete = true;
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::flush_out()
|
|
|
|
{
|
|
|
|
while ( ! output_buffer->empty() )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
Fputchar (output_buffer->front());
|
|
|
|
output_buffer->pop();
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
std::fflush(stdout);
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// private methods of FVTerm
|
2016-10-11 04:57:36 +02:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::init()
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
init_object = this;
|
2017-10-30 20:29:00 +01:00
|
|
|
vterm = 0;
|
|
|
|
vdesktop = 0;
|
2017-08-12 22:55:29 +02:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
term_pos = new FPoint(-1, -1);
|
2017-08-12 22:55:29 +02:00
|
|
|
output_buffer = new std::queue<int>;
|
|
|
|
}
|
|
|
|
catch (const std::bad_alloc& ex)
|
|
|
|
{
|
|
|
|
std::cerr << "not enough memory to alloc " << ex.what() << std::endl;
|
|
|
|
std::abort();
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// Preset to false
|
|
|
|
hidden_cursor = \
|
|
|
|
terminal_update_pending = \
|
|
|
|
force_terminal_update = \
|
|
|
|
stop_terminal_updates = false;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// term_attribute stores the current state of the terminal
|
2017-08-20 17:30:30 +02:00
|
|
|
term_attribute.code = '\0';
|
|
|
|
term_attribute.fg_color = fc::Default;
|
|
|
|
term_attribute.bg_color = fc::Default;
|
|
|
|
term_attribute.attr.bit.bold = \
|
|
|
|
term_attribute.attr.bit.dim = \
|
|
|
|
term_attribute.attr.bit.italic = \
|
|
|
|
term_attribute.attr.bit.underline = \
|
|
|
|
term_attribute.attr.bit.blink = \
|
|
|
|
term_attribute.attr.bit.reverse = \
|
|
|
|
term_attribute.attr.bit.standout = \
|
|
|
|
term_attribute.attr.bit.invisible = \
|
|
|
|
term_attribute.attr.bit.protect = \
|
|
|
|
term_attribute.attr.bit.crossed_out = \
|
|
|
|
term_attribute.attr.bit.dbl_underline = \
|
|
|
|
term_attribute.attr.bit.alt_charset = \
|
|
|
|
term_attribute.attr.bit.pc_charset = \
|
|
|
|
term_attribute.attr.bit.transparent = \
|
|
|
|
term_attribute.attr.bit.trans_shadow = \
|
|
|
|
term_attribute.attr.bit.inherit_bg = \
|
|
|
|
term_attribute.attr.bit.no_changes = \
|
|
|
|
term_attribute.attr.bit.printed = false;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// next_attribute contains the state of the next printed character
|
|
|
|
std::memcpy (&next_attribute, &term_attribute, sizeof(char_data));
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// receive the terminal capabilities
|
|
|
|
tcap = FTermcap().getTermcapMap();
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// create virtual terminal
|
|
|
|
FRect term_geometry (0, 0, getColumnNumber(), getLineNumber());
|
|
|
|
createVTerm (term_geometry);
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// create virtual desktop area
|
|
|
|
FPoint shadow_size(0,0);
|
|
|
|
createArea (term_geometry, shadow_size, vdesktop);
|
|
|
|
vdesktop->visible = true;
|
|
|
|
active_area = vdesktop;
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// Hide the input cursor
|
|
|
|
hideCursor();
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
void FVTerm::finish()
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Show the input cursor
|
|
|
|
showCursor();
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// Clear the terminal
|
|
|
|
setNormal();
|
2017-03-26 20:40:04 +02:00
|
|
|
|
|
|
|
if ( use_alternate_screen )
|
|
|
|
clearTerm();
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
flush_out();
|
|
|
|
|
|
|
|
if ( output_buffer )
|
|
|
|
delete output_buffer;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// remove virtual terminal + virtual desktop area
|
|
|
|
removeArea (vdesktop);
|
|
|
|
removeArea (vterm);
|
2016-10-14 13:02:35 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( term_pos )
|
|
|
|
delete term_pos;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool FVTerm::clearTerm (int fillchar)
|
|
|
|
{
|
|
|
|
// Clear the real terminal and put cursor at home
|
2017-09-11 03:06:02 +02:00
|
|
|
char*& cl = TCAP(fc::t_clear_screen);
|
|
|
|
char*& cd = TCAP(fc::t_clr_eos);
|
|
|
|
char*& cb = TCAP(fc::t_clr_eol);
|
2016-12-28 16:29:49 +01:00
|
|
|
bool ut = FTermcap::background_color_erase;
|
|
|
|
char_data* next = &next_attribute;
|
|
|
|
bool normal = isNormal(next);
|
|
|
|
appendAttributes(next);
|
|
|
|
|
|
|
|
if ( ! ( (cl || cd || cb) && (normal || ut) )
|
2017-11-26 22:37:18 +01:00
|
|
|
|| fillchar != ' ' )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
return false;
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( cl )
|
2016-12-18 23:34:11 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
appendOutputBuffer (cl);
|
|
|
|
term_pos->setPoint(0,0);
|
|
|
|
}
|
|
|
|
else if ( cd )
|
|
|
|
{
|
|
|
|
setTermXY (0, 0);
|
|
|
|
appendOutputBuffer (cd);
|
2017-09-11 03:06:02 +02:00
|
|
|
term_pos->setPoint(-1, -1);
|
2016-12-28 16:29:49 +01:00
|
|
|
}
|
|
|
|
else if ( cb )
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
term_pos->setPoint(-1, -1);
|
2016-12-18 23:34:11 +01:00
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int i = 0; i < getLineNumber(); i++)
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
|
|
|
setTermXY (0, i);
|
|
|
|
appendOutputBuffer (cb);
|
2016-12-18 23:34:11 +01:00
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
|
|
|
|
setTermXY (0,0);
|
2016-12-18 23:34:11 +01:00
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
|
|
|
|
flush_out();
|
|
|
|
return true;
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-11-30 02:38:55 +01:00
|
|
|
bool FVTerm::canClearToEOL (uInt xmin, uInt y)
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2017-11-30 02:38:55 +01:00
|
|
|
// Is the line from xmin to the end of the line blank?
|
|
|
|
// => clear to end of line
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
term_area*& vt = vterm;
|
|
|
|
char*& ce = TCAP(fc::t_clr_eol);
|
|
|
|
char_data* min_char = &vt->text[y * uInt(vt->width) + xmin];
|
|
|
|
|
|
|
|
if ( ce && min_char->code == ' ' )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2017-11-30 02:38:55 +01:00
|
|
|
uInt beginning_whitespace = 1;
|
|
|
|
bool normal = isNormal(min_char);
|
2017-12-08 23:51:56 +01:00
|
|
|
bool& ut = FTermcap::background_color_erase;
|
2016-11-26 15:18:44 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
for (uInt x = xmin + 1; x < uInt(vt->width); x++)
|
2016-11-26 15:18:44 +01:00
|
|
|
{
|
2017-11-30 02:38:55 +01:00
|
|
|
char_data* ch = &vt->text[y * uInt(vt->width) + x];
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( *min_char == *ch )
|
|
|
|
beginning_whitespace++;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2016-12-22 02:02:40 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( beginning_whitespace == uInt(vt->width) - xmin
|
|
|
|
&& (ut || normal)
|
|
|
|
&& clr_eol_length < int(beginning_whitespace) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool FVTerm::canClearLeadingWS (uInt& xmin, uInt y)
|
|
|
|
{
|
|
|
|
// Line has leading whitespace
|
|
|
|
// => clear from xmin to beginning of line
|
|
|
|
|
|
|
|
term_area*& vt = vterm;
|
|
|
|
char*& cb = TCAP(fc::t_clr_bol);
|
|
|
|
char_data* first_char = &vt->text[y * uInt(vt->width)];
|
|
|
|
|
|
|
|
if ( cb && first_char->code == ' ' )
|
|
|
|
{
|
|
|
|
uInt leading_whitespace = 1;
|
|
|
|
bool normal = isNormal(first_char);
|
2017-12-14 00:35:10 +01:00
|
|
|
bool& ut = FTermcap::background_color_erase;
|
2016-12-22 02:02:40 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
for (uInt x = 1; x < uInt(vt->width); x++)
|
|
|
|
{
|
|
|
|
char_data* ch = &vt->text[y * uInt(vt->width) + x];
|
|
|
|
|
|
|
|
if ( *first_char == *ch )
|
|
|
|
leading_whitespace++;
|
|
|
|
else
|
|
|
|
break;
|
2016-11-26 15:18:44 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( leading_whitespace > xmin
|
|
|
|
&& (ut || normal)
|
|
|
|
&& clr_bol_length < int(leading_whitespace) )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2017-11-30 02:38:55 +01:00
|
|
|
xmin = leading_whitespace - 1;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-12-19 02:06:27 +01:00
|
|
|
bool FVTerm::canClearTrailingWS (uInt& xmax, uInt y)
|
2017-11-30 02:38:55 +01:00
|
|
|
{
|
2017-12-19 02:06:27 +01:00
|
|
|
// Line has trailing whitespace
|
2017-11-30 02:38:55 +01:00
|
|
|
// => clear from xmax to end of line
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
term_area*& vt = vterm;
|
|
|
|
char*& ce = TCAP(fc::t_clr_eol);
|
|
|
|
char_data* last_char = &vt->text[(y + 1) * uInt(vt->width) - 1];
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( ce && last_char->code == ' ' )
|
|
|
|
{
|
2017-12-19 02:06:27 +01:00
|
|
|
uInt trailing_whitespace = 1;
|
2017-11-30 02:38:55 +01:00
|
|
|
bool normal = isNormal(last_char);
|
2017-12-14 00:35:10 +01:00
|
|
|
bool& ut = FTermcap::background_color_erase;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
for (uInt x = uInt(vt->width) - 1; x > 0 ; x--)
|
|
|
|
{
|
|
|
|
char_data* ch = &vt->text[y * uInt(vt->width) + x];
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( *last_char == *ch )
|
2017-12-19 02:06:27 +01:00
|
|
|
trailing_whitespace++;
|
2017-11-30 02:38:55 +01:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-12-19 02:06:27 +01:00
|
|
|
if ( trailing_whitespace > uInt(vt->width) - xmax
|
2017-11-30 02:38:55 +01:00
|
|
|
&& (ut || normal)
|
2017-12-19 02:06:27 +01:00
|
|
|
&& clr_bol_length < int(trailing_whitespace) )
|
2017-11-30 02:38:55 +01:00
|
|
|
{
|
2017-12-19 02:06:27 +01:00
|
|
|
xmax = uInt(vt->width) - trailing_whitespace;
|
2017-11-30 02:38:55 +01:00
|
|
|
return true;
|
2016-12-28 16:29:49 +01:00
|
|
|
}
|
2017-11-30 02:38:55 +01:00
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool FVTerm::skipUnchangedCharacters(uInt& x, uInt xmax, uInt y)
|
|
|
|
{
|
|
|
|
// Skip characters without changes if it is faster than redrawing
|
|
|
|
|
|
|
|
term_area*& vt = vterm;
|
|
|
|
char_data* print_char = &vt->text[y * uInt(vt->width) + x];
|
|
|
|
print_char->attr.bit.printed = true;
|
|
|
|
|
|
|
|
if ( print_char->attr.bit.no_changes )
|
|
|
|
{
|
|
|
|
uInt count = 1;
|
|
|
|
|
|
|
|
for (uInt i = x + 1; i <= xmax; i++)
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
2017-11-30 02:38:55 +01:00
|
|
|
char_data* ch = &vt->text[y * uInt(vt->width) + i];
|
|
|
|
|
|
|
|
if ( ch->attr.bit.no_changes )
|
|
|
|
count++;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( count > uInt(cursor_addres_lengths) )
|
|
|
|
{
|
|
|
|
setTermXY (int(x + count), int(y));
|
|
|
|
x = x + count - 1;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::printRange ( uInt xmin, uInt xmax, uInt y
|
2017-12-19 02:06:27 +01:00
|
|
|
, bool draw_trailing_ws )
|
2017-11-30 02:38:55 +01:00
|
|
|
{
|
|
|
|
for (uInt x = xmin; x <= xmax; x++)
|
|
|
|
{
|
|
|
|
char_data* print_char;
|
|
|
|
term_area*& vt = vterm;
|
|
|
|
char*& ec = TCAP(fc::t_erase_chars);
|
|
|
|
char*& rp = TCAP(fc::t_repeat_char);
|
|
|
|
print_char = &vt->text[y * uInt(vt->width) + x];
|
|
|
|
print_char->attr.bit.printed = true;
|
|
|
|
|
|
|
|
// skip character with no changes
|
|
|
|
if ( skipUnchangedCharacters(x, xmax, y) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Erase character
|
|
|
|
if ( ec && print_char->code == ' ' )
|
|
|
|
{
|
|
|
|
exit_state erase_state = \
|
2017-12-19 02:06:27 +01:00
|
|
|
eraseCharacters(x, xmax, y, draw_trailing_ws);
|
2017-11-30 02:38:55 +01:00
|
|
|
|
|
|
|
if ( erase_state == line_completely_printed )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if ( rp ) // Repeat one character n-fold
|
|
|
|
{
|
|
|
|
repeatCharacter(x, xmax, y);
|
2016-12-28 16:29:49 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-11-30 02:38:55 +01:00
|
|
|
// General character output
|
|
|
|
appendCharacter (print_char);
|
|
|
|
markAsPrinted (x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FVTerm::exit_state FVTerm::eraseCharacters ( uInt& x, uInt xmax, uInt y
|
2017-12-19 02:06:27 +01:00
|
|
|
, bool draw_trailing_ws )
|
2017-11-30 02:38:55 +01:00
|
|
|
{
|
|
|
|
// Erase a number of characters to draw simple whitespaces
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
term_area*& vt = vterm;
|
|
|
|
char*& ec = TCAP(fc::t_erase_chars);
|
|
|
|
char_data* print_char = &vt->text[y * uInt(vt->width) + x];
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( ! ec || print_char->code != ' ' )
|
|
|
|
return not_used;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
uInt whitespace = 1;
|
|
|
|
bool normal = isNormal(print_char);
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
for (uInt i = x + 1; i <= xmax; i++)
|
|
|
|
{
|
|
|
|
char_data* ch = &vt->text[y * uInt(vt->width) + i];
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( *print_char == *ch )
|
|
|
|
whitespace++;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( whitespace == 1 )
|
|
|
|
{
|
|
|
|
appendCharacter (print_char);
|
|
|
|
markAsPrinted (x, y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uInt start_pos = x;
|
2017-12-17 01:06:53 +01:00
|
|
|
bool& ut = FTermcap::background_color_erase;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( whitespace > uInt(erase_ch_length) + uInt(cursor_addres_lengths)
|
|
|
|
&& (ut || normal) )
|
|
|
|
{
|
|
|
|
appendAttributes (print_char);
|
|
|
|
appendOutputBuffer (tparm(ec, whitespace, 0, 0, 0, 0, 0, 0, 0, 0));
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-12-19 02:06:27 +01:00
|
|
|
if ( x + whitespace - 1 < xmax || draw_trailing_ws )
|
2017-11-30 02:38:55 +01:00
|
|
|
setTermXY (int(x + whitespace), int(y));
|
|
|
|
else
|
|
|
|
return line_completely_printed;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
x = x + whitespace - 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x--;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
for (uInt i = 0; i < whitespace; i++, x++)
|
|
|
|
appendCharacter (print_char);
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
markAsPrinted (start_pos, x, y);
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
return used;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FVTerm::exit_state FVTerm::repeatCharacter (uInt& x, uInt xmax, uInt y)
|
|
|
|
{
|
|
|
|
// Repeat one character n-fold
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
term_area*& vt = vterm;
|
|
|
|
char*& rp = TCAP(fc::t_repeat_char);
|
|
|
|
char_data* print_char = &vt->text[y * uInt(vt->width) + x];
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( ! rp )
|
|
|
|
return not_used;
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
uInt repetitions = 1;
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
for (uInt i = x + 1; i <= xmax; i++)
|
|
|
|
{
|
|
|
|
char_data* ch = &vt->text[y * uInt(vt->width) + i];
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( *print_char == *ch )
|
|
|
|
repetitions++;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( repetitions == 1 )
|
|
|
|
{
|
|
|
|
appendCharacter (print_char);
|
|
|
|
markAsPrinted (x, y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uInt start_pos = x;
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
if ( repetitions > uInt(repeat_char_length)
|
|
|
|
&& print_char->code < 128 )
|
|
|
|
{
|
|
|
|
newFontChanges (print_char);
|
|
|
|
charsetChanges (print_char);
|
|
|
|
appendAttributes (print_char);
|
|
|
|
appendOutputBuffer (tparm(rp, print_char->code, repetitions, 0, 0, 0, 0, 0, 0, 0));
|
|
|
|
term_pos->x_ref() += short(repetitions);
|
|
|
|
x = x + repetitions - 1;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
2017-11-30 02:38:55 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
x--;
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
for (uInt i = 0; i < repetitions; i++, x++)
|
|
|
|
appendCharacter (print_char);
|
|
|
|
}
|
|
|
|
|
|
|
|
markAsPrinted (start_pos, x, y);
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
return used;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::cursorWrap()
|
|
|
|
{
|
|
|
|
// Wrap the cursor
|
|
|
|
term_area*& vt = vterm;
|
|
|
|
|
2018-01-02 20:38:45 +01:00
|
|
|
if ( term_pos->getX() >= vt->width )
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
2018-01-02 20:38:45 +01:00
|
|
|
if ( term_pos->getY() == vt->height - 1 )
|
2016-12-28 16:29:49 +01:00
|
|
|
term_pos->x_ref()--;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( FTermcap::eat_nl_glitch )
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
term_pos->setPoint(-1, -1);
|
2016-12-28 16:29:49 +01:00
|
|
|
}
|
|
|
|
else if ( FTermcap::automatic_right_margin )
|
|
|
|
{
|
|
|
|
term_pos->setX(0);
|
|
|
|
term_pos->y_ref()++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
term_pos->x_ref()--;
|
|
|
|
}
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
2017-11-30 02:38:55 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FVTerm::updateTerminalLine (uInt y)
|
|
|
|
{
|
|
|
|
// Updates pending changes from line y to the terminal
|
|
|
|
|
|
|
|
term_area*& vt = vterm;
|
|
|
|
uInt& xmin = vt->changes[y].xmin;
|
|
|
|
uInt& xmax = vt->changes[y].xmax;
|
|
|
|
|
|
|
|
if ( xmin <= xmax )
|
|
|
|
{
|
|
|
|
bool draw_leading_ws = false;
|
2017-12-19 02:06:27 +01:00
|
|
|
bool draw_trailing_ws = false;
|
2017-11-30 02:38:55 +01:00
|
|
|
char*& ce = TCAP(fc::t_clr_eol);
|
|
|
|
char_data* first_char = &vt->text[y * uInt(vt->width)];
|
|
|
|
char_data* last_char = &vt->text[(y + 1) * uInt(vt->width) - 1];
|
|
|
|
char_data* min_char = &vt->text[y * uInt(vt->width) + xmin];
|
|
|
|
|
|
|
|
// Clear rest of line
|
|
|
|
bool is_eol_clean = canClearToEOL (xmin, y);
|
|
|
|
|
|
|
|
if ( ! is_eol_clean )
|
|
|
|
{
|
|
|
|
// leading whitespace
|
|
|
|
draw_leading_ws = canClearLeadingWS (xmin, y);
|
|
|
|
|
2017-12-19 02:06:27 +01:00
|
|
|
// trailing whitespace
|
|
|
|
draw_trailing_ws = canClearTrailingWS (xmax, y);
|
2017-11-30 02:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
setTermXY (int(xmin), int(y));
|
|
|
|
|
|
|
|
if ( is_eol_clean )
|
|
|
|
{
|
|
|
|
appendAttributes (min_char);
|
|
|
|
appendOutputBuffer (ce);
|
|
|
|
markAsPrinted (xmin, uInt(vt->width - 1), y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( draw_leading_ws )
|
|
|
|
{
|
2017-12-08 23:51:56 +01:00
|
|
|
char*& cb = TCAP(fc::t_clr_bol);
|
2017-11-30 02:38:55 +01:00
|
|
|
appendAttributes (first_char);
|
|
|
|
appendOutputBuffer (cb);
|
|
|
|
markAsPrinted (0, xmin, y);
|
|
|
|
}
|
|
|
|
|
2017-12-19 02:06:27 +01:00
|
|
|
printRange (xmin, xmax, y, draw_trailing_ws);
|
2017-11-30 02:38:55 +01:00
|
|
|
|
2017-12-19 02:06:27 +01:00
|
|
|
if ( draw_trailing_ws )
|
2017-11-30 02:38:55 +01:00
|
|
|
{
|
|
|
|
appendAttributes (last_char);
|
|
|
|
appendOutputBuffer (ce);
|
|
|
|
markAsPrinted (xmax + 1, uInt(vt->width - 1), y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset line changes
|
|
|
|
xmin = uInt(vt->width);
|
|
|
|
xmax = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
cursorWrap();
|
|
|
|
}
|
|
|
|
|
2016-10-11 04:57:36 +02:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
bool FVTerm::updateTerminalCursor()
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Updates the input cursor visibility and the position
|
|
|
|
if ( vterm && vterm->input_cursor_visible )
|
|
|
|
{
|
|
|
|
int x = vterm->input_cursor_x;
|
|
|
|
int y = vterm->input_cursor_y;
|
|
|
|
|
|
|
|
if ( isInsideTerminal(x, y) )
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
setTermXY (x, y);
|
2016-12-28 16:29:49 +01:00
|
|
|
showCursor();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
hideCursor();
|
|
|
|
|
|
|
|
return false;
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
bool FVTerm::isInsideTerminal (int x, int y)
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Check whether the coordinates are within the virtual terminal
|
|
|
|
FRect term_geometry (0, 0, getColumnNumber(), getLineNumber());
|
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
if ( term_geometry.contains(x, y) )
|
2016-12-28 16:29:49 +01:00
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
inline void FVTerm::markAsPrinted (uInt pos, uInt line)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Marks a character as printed
|
|
|
|
|
2017-08-20 17:30:30 +02:00
|
|
|
vterm->text[line * uInt(vterm->width) + pos].attr.bit.printed = true;
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
inline void FVTerm::markAsPrinted (uInt from, uInt to, uInt line)
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// Marks characters in the specified range [from .. to] as printed
|
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (uInt x = from; x <= to; x++)
|
2017-08-20 17:30:30 +02:00
|
|
|
vterm->text[line * uInt(vterm->width) + x].attr.bit.printed = true;
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
inline void FVTerm::newFontChanges (char_data*& next_char)
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
// NewFont special cases
|
|
|
|
if ( NewFont )
|
|
|
|
{
|
|
|
|
switch ( next_char->code )
|
|
|
|
{
|
|
|
|
case fc::LowerHalfBlock:
|
|
|
|
next_char->code = fc::UpperHalfBlock;
|
|
|
|
// fall through
|
|
|
|
case fc::NF_rev_left_arrow2:
|
|
|
|
case fc::NF_rev_right_arrow2:
|
|
|
|
case fc::NF_rev_border_corner_upper_right:
|
|
|
|
case fc::NF_rev_border_line_right:
|
|
|
|
case fc::NF_rev_border_line_vertical_left:
|
|
|
|
case fc::NF_rev_border_corner_lower_right:
|
|
|
|
case fc::NF_rev_up_arrow2:
|
|
|
|
case fc::NF_rev_down_arrow2:
|
|
|
|
case fc::NF_rev_up_arrow1:
|
|
|
|
case fc::NF_rev_down_arrow1:
|
|
|
|
case fc::NF_rev_left_arrow1:
|
|
|
|
case fc::NF_rev_right_arrow1:
|
|
|
|
case fc::NF_rev_menu_button1:
|
|
|
|
case fc::NF_rev_menu_button2:
|
|
|
|
case fc::NF_rev_up_pointing_triangle1:
|
|
|
|
case fc::NF_rev_down_pointing_triangle1:
|
|
|
|
case fc::NF_rev_up_pointing_triangle2:
|
|
|
|
case fc::NF_rev_down_pointing_triangle2:
|
|
|
|
case fc::NF_rev_menu_button3:
|
|
|
|
case fc::NF_rev_border_line_right_and_left:
|
|
|
|
// swap foreground and background color
|
|
|
|
std::swap (next_char->fg_color, next_char->bg_color);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
inline void FVTerm::charsetChanges (char_data*& next_char)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2017-11-18 02:34:41 +01:00
|
|
|
if ( term_encoding == fc::UTF8 )
|
2016-12-28 16:29:49 +01:00
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
uInt code = uInt(next_char->code);
|
2017-03-30 00:46:52 +02:00
|
|
|
uInt ch_enc = charEncode(code);
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2017-03-30 00:46:52 +02:00
|
|
|
if ( ch_enc != code )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2017-03-30 00:46:52 +02:00
|
|
|
if ( ch_enc == 0 )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
next_char->code = int(charEncode(code, fc::ASCII));
|
|
|
|
return;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
2017-03-30 00:46:52 +02:00
|
|
|
next_char->code = int(ch_enc);
|
2016-12-28 16:29:49 +01:00
|
|
|
|
2017-11-18 02:34:41 +01:00
|
|
|
if ( term_encoding == fc::VT100 )
|
2017-08-20 17:30:30 +02:00
|
|
|
next_char->attr.bit.alt_charset = true;
|
2017-11-18 02:34:41 +01:00
|
|
|
else if ( term_encoding == fc::PC )
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2017-08-20 17:30:30 +02:00
|
|
|
next_char->attr.bit.pc_charset = true;
|
2017-11-03 05:04:27 +01:00
|
|
|
|
2018-01-02 20:38:45 +01:00
|
|
|
if ( isPuttyTerminal() )
|
|
|
|
return;
|
|
|
|
|
2017-11-03 05:04:27 +01:00
|
|
|
if ( isXTerminal() && ch_enc < 0x20 ) // Character 0x00..0x1f
|
|
|
|
{
|
|
|
|
if ( hasUTF8() )
|
|
|
|
next_char->code = int(charEncode(code, fc::ASCII));
|
|
|
|
else
|
|
|
|
{
|
|
|
|
next_char->code += 0x5f;
|
|
|
|
next_char->attr.bit.alt_charset = true;
|
|
|
|
}
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
inline void FVTerm::appendCharacter (char_data*& next_char)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
int term_width = vterm->width - 1;
|
|
|
|
int term_height = vterm->height - 1;
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( term_pos->getX() == term_width
|
2017-11-26 22:37:18 +01:00
|
|
|
&& term_pos->getY() == term_height )
|
2016-12-28 16:29:49 +01:00
|
|
|
appendLowerRight (next_char);
|
|
|
|
else
|
|
|
|
appendChar (next_char);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
term_pos->x_ref()++;
|
|
|
|
}
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FVTerm::appendChar (char_data*& next_char)
|
|
|
|
{
|
|
|
|
newFontChanges (next_char);
|
|
|
|
charsetChanges (next_char);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
appendAttributes (next_char);
|
|
|
|
appendOutputBuffer (next_char->code);
|
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FVTerm::appendAttributes (char_data*& next_attr)
|
|
|
|
{
|
|
|
|
char* attr_str;
|
|
|
|
char_data* term_attr = &term_attribute;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
// generate attribute string for the next character
|
|
|
|
attr_str = changeAttribute (term_attr, next_attr);
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( attr_str )
|
|
|
|
appendOutputBuffer (attr_str);
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
int FVTerm::appendLowerRight (char_data*& screen_char)
|
2016-10-11 04:57:36 +02:00
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
char* SA = TCAP(fc::t_enter_am_mode);
|
|
|
|
char* RA = TCAP(fc::t_exit_am_mode);
|
2016-10-11 04:57:36 +02:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( ! FTermcap::automatic_right_margin )
|
|
|
|
{
|
|
|
|
appendChar (screen_char);
|
|
|
|
}
|
|
|
|
else if ( SA && RA )
|
|
|
|
{
|
|
|
|
appendOutputBuffer (RA);
|
|
|
|
appendChar (screen_char);
|
|
|
|
appendOutputBuffer (SA);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int x, y;
|
2017-09-11 03:06:02 +02:00
|
|
|
char* IC = TCAP(fc::t_parm_ich);
|
|
|
|
char* im = TCAP(fc::t_enter_insert_mode);
|
|
|
|
char* ei = TCAP(fc::t_exit_insert_mode);
|
|
|
|
char* ip = TCAP(fc::t_insert_padding);
|
|
|
|
char* ic = TCAP(fc::t_insert_character);
|
2016-11-26 15:18:44 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
x = getColumnNumber() - 2;
|
|
|
|
y = getLineNumber() - 1;
|
|
|
|
setTermXY (x, y);
|
|
|
|
appendChar (screen_char);
|
|
|
|
term_pos->x_ref()++;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
setTermXY (x, y);
|
|
|
|
screen_char--;
|
2016-11-02 00:37:58 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( IC )
|
|
|
|
{
|
2017-04-09 20:08:53 +02:00
|
|
|
appendOutputBuffer (tparm(IC, 1, 0, 0, 0, 0, 0, 0, 0, 0));
|
2016-12-28 16:29:49 +01:00
|
|
|
appendChar (screen_char);
|
|
|
|
}
|
|
|
|
else if ( im && ei )
|
|
|
|
{
|
|
|
|
appendOutputBuffer (im);
|
|
|
|
appendChar (screen_char);
|
|
|
|
|
|
|
|
if ( ip )
|
|
|
|
appendOutputBuffer (ip);
|
|
|
|
|
|
|
|
appendOutputBuffer (ei);
|
|
|
|
}
|
|
|
|
else if ( ic )
|
|
|
|
{
|
|
|
|
appendOutputBuffer (ic);
|
|
|
|
appendChar (screen_char);
|
|
|
|
|
|
|
|
if ( ip )
|
|
|
|
appendOutputBuffer (ip);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return screen_char->code;
|
2016-10-11 04:57:36 +02:00
|
|
|
}
|
2016-12-22 02:02:40 +01:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-09-11 03:06:02 +02:00
|
|
|
inline void FVTerm::appendOutputBuffer (const std::string& s)
|
2016-12-22 02:02:40 +01:00
|
|
|
{
|
2017-12-17 01:06:53 +01:00
|
|
|
#if defined(__sun) && defined(__SVR4)
|
|
|
|
char* c_string = C_STR(s.c_str());
|
|
|
|
#else
|
2017-03-17 22:59:06 +01:00
|
|
|
const char* const& c_string = s.c_str();
|
2017-12-17 01:06:53 +01:00
|
|
|
#endif
|
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
tputs (c_string, 1, appendOutputBuffer);
|
|
|
|
}
|
2016-12-22 02:02:40 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-12-19 02:06:27 +01:00
|
|
|
inline void FVTerm::appendOutputBuffer (const char s[])
|
2016-12-28 16:29:49 +01:00
|
|
|
{
|
2017-12-17 01:06:53 +01:00
|
|
|
#if defined(__sun) && defined(__SVR4)
|
|
|
|
tputs (C_STR(s), 1, appendOutputBuffer);
|
|
|
|
#else
|
2016-12-28 16:29:49 +01:00
|
|
|
tputs (s, 1, appendOutputBuffer);
|
2017-12-17 01:06:53 +01:00
|
|
|
#endif
|
2016-12-22 02:02:40 +01:00
|
|
|
}
|
|
|
|
|
2017-12-17 01:06:53 +01:00
|
|
|
#if defined(__sun) && defined(__SVR4)
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int FVTerm::appendOutputBuffer (char ch)
|
|
|
|
{
|
|
|
|
output_buffer->push(ch);
|
|
|
|
|
|
|
|
if ( output_buffer->size() >= TERMINAL_OUTPUT_BUFFER_SIZE )
|
|
|
|
flush_out();
|
|
|
|
|
|
|
|
return ch;
|
|
|
|
}
|
2017-12-19 02:06:27 +01:00
|
|
|
#else
|
2016-12-22 02:02:40 +01:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-28 16:29:49 +01:00
|
|
|
int FVTerm::appendOutputBuffer (int ch)
|
2016-12-22 02:02:40 +01:00
|
|
|
{
|
2016-12-28 16:29:49 +01:00
|
|
|
output_buffer->push(ch);
|
2016-12-22 02:02:40 +01:00
|
|
|
|
2016-12-28 16:29:49 +01:00
|
|
|
if ( output_buffer->size() >= TERMINAL_OUTPUT_BUFFER_SIZE )
|
|
|
|
flush_out();
|
|
|
|
|
|
|
|
return ch;
|
2016-12-22 02:02:40 +01:00
|
|
|
}
|
2017-12-19 02:06:27 +01:00
|
|
|
#endif
|