1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/* fbkeyboard.c: routines for dealing with the linux fbdev display
Copyright (c) 2000-2004 Philip Kendall, Matan Ziv-Av, Darren Salt
$Id: fbkeyboard.c 4109 2009-12-27 06:15:10Z fredm $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: philip-fuse@shadowmagic.org.uk
*/
#include <config.h>
#include <stdio.h>
#include <errno.h>
#include <linux/kd.h>
#include <termios.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "display.h"
#include "fuse.h"
#include "keyboard.h"
#include "machine.h"
#include "settings.h"
#include "snapshot.h"
#include "spectrum.h"
#include "tape.h"
#include "ui/ui.h"
#include "input.h"
static struct termios old_ts;
static int old_kbmode = K_XLATE;
static int got_old_ts = 0;
int fbkeyboard_init(void)
{
struct termios ts;
struct stat st;
int i = 1;
/* First, set up the keyboard */
if( fstat( STDIN_FILENO, &st ) ) {
fprintf( stderr, "%s: couldn't stat stdin: %s\n", fuse_progname,
strerror( errno ) );
return 1;
}
/* check for character special, major 4, minor 0..63 */
if( !isatty(STDIN_FILENO) || !S_ISCHR(st.st_mode) ||
( st.st_rdev & ~63 ) != 0x0400 ) {
fprintf( stderr, "%s: stdin isn't a local tty\n", fuse_progname );
return 1;
}
tcgetattr( STDIN_FILENO, &old_ts );
ioctl( STDIN_FILENO, KDGKBMODE, &old_kbmode );
got_old_ts = 1;
/* We need non-blocking semi-cooked keyboard input */
if( ioctl( STDIN_FILENO, FIONBIO, &i ) ) {
fprintf( stderr, "%s: can't set stdin nonblocking: %s\n", fuse_progname,
strerror( errno ) );
return 1;
}
if( ioctl( STDIN_FILENO, KDSKBMODE, K_MEDIUMRAW ) ) {
fprintf( stderr, "%s: can't set keyboard into medium-raw mode: %s\n",
fuse_progname, strerror( errno ) );
return 1;
}
/* Add in a bit of voodoo... */
ts = old_ts;
ts.c_cc[VTIME] = 0;
ts.c_cc[VMIN] = 1;
ts.c_lflag &= ~(ICANON | ECHO | ISIG);
ts.c_iflag = 0;
tcsetattr( STDIN_FILENO, TCSAFLUSH, &ts );
tcsetpgrp( STDIN_FILENO, getpgrp() );
return 0;
}
int fbkeyboard_end(void)
{
int i = 0;
ioctl( STDIN_FILENO, FIONBIO, &i );
if( got_old_ts ) {
tcsetattr( STDIN_FILENO, TCSAFLUSH, &old_ts );
ioctl( STDIN_FILENO, KDSKBMODE, old_kbmode );
}
return 0;
}
void
keyboard_update( void )
{
unsigned char keybuf[64];
static int ignore = 0;
while( 1 ) {
ssize_t available, i;
available = read( STDIN_FILENO, &keybuf, sizeof( keybuf ) );
if( available <= 0 ) return;
for( i = 0; i < available; i++ )
if( ignore ) {
ignore--;
} else if( ( keybuf[i] & 0x7f ) == 0 ) {
ignore = 2; /* ignore extended keysyms */
} else {
input_key fuse_keysym;
input_event_t fuse_event;
fuse_keysym = keysyms_remap( keybuf[i] & 0x7f );
if( fuse_keysym == INPUT_KEY_NONE ) continue;
fuse_event.type = ( keybuf[i] & 0x80 ) ?
INPUT_EVENT_KEYRELEASE :
INPUT_EVENT_KEYPRESS;
fuse_event.types.key.native_key = fuse_keysym;
fuse_event.types.key.spectrum_key = fuse_keysym;
input_event( &fuse_event );
}
}
}
|