2018-05-27 19:43:18 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* ftermfreebsd.cpp - Contains the FreeBSD terminal functions *
|
|
|
|
* *
|
|
|
|
* This file is part of the Final Cut widget toolkit *
|
|
|
|
* *
|
|
|
|
* Copyright 2018 Markus Gans *
|
|
|
|
* *
|
|
|
|
* 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/>. *
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
#include "final/fcharmap.h"
|
|
|
|
#include "final/ftermfreebsd.h"
|
|
|
|
|
|
|
|
// static class attributes
|
|
|
|
#if defined(__FreeBSD__) || defined(__DragonFly__)
|
2018-06-17 23:25:32 +02:00
|
|
|
uInt FTermFreeBSD::bsd_alt_keymap = 0;
|
|
|
|
FTermFreeBSD::CursorStyle FTermFreeBSD::cursor_style = fc::normal_cursor;
|
|
|
|
bool FTermFreeBSD::change_cursorstyle = true;
|
|
|
|
bool FTermFreeBSD::meta_sends_escape = true;
|
2018-05-27 19:43:18 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FTermFreeBSD
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// constructors and destructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FTermFreeBSD::FTermFreeBSD()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FTermFreeBSD::~FTermFreeBSD() // destructor
|
|
|
|
{ }
|
|
|
|
|
|
|
|
// public methods of FTermFreeBSD
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
#if defined(__FreeBSD__) || defined(__DragonFly__)
|
|
|
|
FTermFreeBSD::CursorStyle FTermFreeBSD::getCursorStyle()
|
|
|
|
{
|
|
|
|
return cursor_style;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FTermFreeBSD::setCursorStyle (CursorStyle style, bool hidden)
|
|
|
|
{
|
|
|
|
// Set cursor style in a BSD console
|
|
|
|
|
|
|
|
if ( ! isFreeBSDConsole() )
|
|
|
|
return;
|
|
|
|
|
2018-06-17 23:25:32 +02:00
|
|
|
if ( ! change_cursorstyle )
|
|
|
|
return;
|
|
|
|
|
2018-05-27 19:43:18 +02:00
|
|
|
cursor_style = style;
|
|
|
|
|
|
|
|
if ( hidden )
|
|
|
|
return;
|
|
|
|
|
|
|
|
ioctl(0, CONS_CURSORTYPE, &style);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool FTermFreeBSD::isFreeBSDConsole()
|
|
|
|
{
|
|
|
|
// Check if it's a FreeBSD console
|
|
|
|
|
|
|
|
keymap_t keymap;
|
|
|
|
|
|
|
|
if ( ioctl(0, GIO_KEYMAP, &keymap) == 0 )
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FTermFreeBSD::init()
|
|
|
|
{
|
|
|
|
// initialize BSD console
|
|
|
|
|
|
|
|
if ( ! isFreeBSDConsole() )
|
|
|
|
return;
|
|
|
|
|
2018-06-17 23:25:32 +02:00
|
|
|
if ( meta_sends_escape )
|
|
|
|
{
|
|
|
|
// save current left alt key mapping
|
|
|
|
saveFreeBSDAltKey();
|
2018-05-27 19:43:18 +02:00
|
|
|
|
2018-06-17 23:25:32 +02:00
|
|
|
// map meta key to left alt key
|
|
|
|
setFreeBSDAlt2Meta();
|
|
|
|
}
|
2018-05-27 19:43:18 +02:00
|
|
|
|
2018-06-17 23:25:32 +02:00
|
|
|
if ( change_cursorstyle )
|
|
|
|
{
|
|
|
|
// Initialize FreeBSD console cursor
|
|
|
|
setCursorStyle (fc::destructive_cursor, true);
|
|
|
|
}
|
2018-05-27 19:43:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-06-12 16:37:48 +02:00
|
|
|
void FTermFreeBSD::initCharMap (uInt char_map[][fc::NUM_OF_ENCODINGS])
|
2018-05-27 19:43:18 +02:00
|
|
|
{
|
|
|
|
// A FreeBSD console can't show ASCII codes from 0x00 to 0x1b
|
|
|
|
|
|
|
|
if ( ! isFreeBSDConsole() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (int i = 0; i <= fc::lastCharItem; i++)
|
2018-06-12 16:37:48 +02:00
|
|
|
if ( char_map[i][fc::PC] < 0x1c )
|
|
|
|
char_map[i][fc::PC] = char_map[i][fc::ASCII];
|
2018-05-27 19:43:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FTermFreeBSD::finish()
|
|
|
|
{
|
|
|
|
// Resetting the FreeBSD console settings
|
|
|
|
|
|
|
|
if ( ! isFreeBSDConsole() )
|
|
|
|
return;
|
|
|
|
|
2018-06-17 23:25:32 +02:00
|
|
|
if ( meta_sends_escape )
|
|
|
|
resetFreeBSDAlt2Meta();
|
|
|
|
|
2018-05-27 19:43:18 +02:00
|
|
|
setCursorStyle (fc::normal_cursor, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FTermFreeBSD::restoreCursorStyle()
|
|
|
|
{
|
|
|
|
// Reset to the last used FreeBSD console cursor style
|
|
|
|
|
|
|
|
setCursorStyle (getCursorStyle(), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// private methods of FTermFreeBSD
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool FTermFreeBSD::saveFreeBSDAltKey()
|
|
|
|
{
|
|
|
|
// Saving the current mapping for the alt key
|
|
|
|
|
|
|
|
static const int left_alt = 0x38;
|
|
|
|
int ret;
|
|
|
|
keymap_t keymap;
|
|
|
|
|
|
|
|
ret = ioctl(0, GIO_KEYMAP, &keymap);
|
|
|
|
|
|
|
|
if ( ret < 0 )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// save current mapping
|
|
|
|
bsd_alt_keymap = keymap.key[left_alt].map[0];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool FTermFreeBSD::setFreeBSDAltKey (uInt key)
|
|
|
|
{
|
|
|
|
// Remapping the alt key
|
|
|
|
|
|
|
|
static const int left_alt = 0x38;
|
|
|
|
int ret;
|
|
|
|
keymap_t keymap;
|
|
|
|
|
|
|
|
ret = ioctl(0, GIO_KEYMAP, &keymap);
|
|
|
|
|
|
|
|
if ( ret < 0 )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// map to meta key
|
|
|
|
keymap.key[left_alt].map[0] = key;
|
|
|
|
|
|
|
|
if ( (keymap.n_keys > 0) && (ioctl(0, PIO_KEYMAP, &keymap) < 0) )
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool FTermFreeBSD::setFreeBSDAlt2Meta()
|
|
|
|
{
|
|
|
|
// Use the meta key when pressing the Alt key
|
|
|
|
|
|
|
|
return setFreeBSDAltKey (META);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool FTermFreeBSD::resetFreeBSDAlt2Meta()
|
|
|
|
{
|
|
|
|
// Restore the alt key mapping
|
|
|
|
|
|
|
|
return setFreeBSDAltKey (bsd_alt_keymap);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|