/* * kbd.c - Keyboard emulation for BeOS. * * Written by * Andreas Matthies * * This file is part of VICE, the Versatile Commodore Emulator. * See README for copyright notice. * * 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., 59 Temple Place, Suite 330, Boston, MA * 02111-1307 USA. * */ #include "vice.h" #include #include #include "kbd.h" #include "cmdline.h" #include "joy.h" #include "keyboard.h" #include "lib.h" #include "resources.h" #include "machine.h" #include "translate.h" #include "types.h" /* ------------------------------------------------------------------------ */ /* #define DEBUG_KBD */ /* Debugging stuff. */ #ifdef DEBUG_KBD static void kbd_debug(const char *format, ...) { } #define KBD_DEBUG(x) kbd_debug x #else #define KBD_DEBUG(x) #endif /* ------------------------------------------------------------------------ */ #ifndef COMMON_KBD /* 40/80 column key. */ static key_ctrl_column4080_func_t key_ctrl_column4080_func = NULL; /* CAPS key. */ static key_ctrl_caps_func_t key_ctrl_caps_func = NULL; #endif struct _convmap { /* Conversion map. */ keyconv *map; /* Location of the virtual shift key in the keyboard matrix. */ int virtual_shift_row, virtual_shift_column; }; static struct _convmap *keyconvmaps; static struct _convmap *keyconv_base; static int num_keyconvmaps; static int keymap_index; /* ------------------------------------------------------------------------ */ int kbd_init(int num, ...) { va_list p; int i; keyconvmaps=(struct _convmap*)lib_malloc(num*sizeof(struct _convmap)); num_keyconvmaps=num; va_start(p,num); for (i =0; i>1]; return 0; } static int set_keymap_index(int val, void *param) { int real_index; keymap_index=val; real_index=keymap_index>>1; keyconv_base=&keyconvmaps[real_index]; return 0; } static const resource_int_t resources_int[] = { { "KeymapIndex", 0, RES_EVENT_NO, NULL, &keymap_index, set_keymap_index, NULL }, { NULL } }; int kbd_resources_init(void) { return resources_register_int(resources_int); } static const cmdline_option_t cmdline_options[] = { { "-keymap", SET_RESOURCE, 1, NULL, NULL, "KeymapIndex", NULL, USE_PARAM_STRING, USE_DESCRIPTION_STRING, IDCLS_UNUSED, IDCLS_UNUSED, "", "Specify index of used keymap" }, { NULL }, }; int kbd_cmdline_options_init(void) { return cmdline_register_options(cmdline_options); } /* ------------------------------------------------------------------------ */ int kbd_handle_keydown(int kcode) { #ifndef COMMON_KBD if (kcode == 8) /* F7 */ { if (key_ctrl_column4080_func != NULL) { key_ctrl_column4080_func(); } } if (kcode == 5) /* F4 */ { if (key_ctrl_caps_func != NULL) { key_ctrl_caps_func(); } } if (kcode == 33) /* PgUp */ { machine_set_restore_key(1); } if (!joystick_handle_key(kcode, 1)) { keyboard_set_keyarr(keyconv_base->map[kcode].row, keyconv_base->map[kcode].column, 1); if (keyconv_base->map[kcode].vshift) keyboard_set_keyarr(keyconv_base->virtual_shift_row, keyconv_base->virtual_shift_column, 1); } #else if (!joystick_handle_key(kcode, 1)) keyboard_key_pressed((signed long)kcode); #endif return 0; } int kbd_handle_keyup(int kcode) { #ifndef COMMON_KBD if (kcode == 33) /* PgUp */ { machine_set_restore_key(0); } if (!joystick_handle_key(kcode, 0)) { keyboard_set_keyarr(keyconv_base->map[kcode].row, keyconv_base->map[kcode].column, 0); if (keyconv_base->map[kcode].vshift) keyboard_set_keyarr(keyconv_base->virtual_shift_row, keyconv_base->virtual_shift_column, 0); } #else if (!joystick_handle_key(kcode, 0)) keyboard_key_released((signed long)kcode); #endif return 0; } const char *kbd_code_to_string(int kcode) { static char *tab[256] = { "", "Esc", "F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12", "PrtScr", "Scroll Lock", "16", "^", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-", "=", "Backspace", "Ins", "Home", "PgUp", "Num Lock", "Numpad /", "Numpad *", "Numpad -", "Tab", "Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P", "{", "}", "\\", "Del", "End", "PgDown", "Numpad 7", "Numpad 8", "Numpad 9", "Numpad +", "Caps Lock", "A", "S", "D", "F", "G", "H", "J", "K", "L", ";", "'", "Enter", "Numpad 4", "Numpad 5", "Numpad 6", "Left Shift", "Z", "X", "C", "V", "B", "N", "M", ",", ".", "/", "Right Shift", "Up", "Numpad 1", "Numpad 2", "Numpad 3", "Numpad Enter", "Left Ctrl", "Left ALt", "Space", "Right Alt", "Right Ctrl", "Left", "Down", "Right", "Numpad 0", "Numpad Dot", "Left Win95", "Right Win95", "Break" }; return tab[(int) kcode]; } /* ------------------------------------------------------------------------ */ #ifndef COMMON_KBD void keyboard_register_column4080_key(key_ctrl_column4080_func_t func) { key_ctrl_column4080_func = func; } void keyboard_register_caps_key(key_ctrl_caps_func_t func) { key_ctrl_caps_func = func; } #endif #ifdef COMMON_KBD void kbd_initialize_numpad_joykeys(int* joykeys) { joykeys[0] = K_RIGHTCTRL; joykeys[1] = K_KP1; joykeys[2] = K_KP2; joykeys[3] = K_KP3; joykeys[4] = K_KP4; joykeys[5] = K_KP6; joykeys[6] = K_KP7; joykeys[7] = K_KP8; joykeys[8] = K_KP9; } void kbd_arch_init(void) { } signed long kbd_arch_keyname_to_keynum(char *keyname) { return (signed long)atoi(keyname); } const char *kbd_arch_keynum_to_keyname(signed long keynum) { static char keyname[20]; memset(keyname, 0, 20); sprintf(keyname, "%li", keynum); return keyname; } #endif