⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tl_key.c

📁 十七种模拟器源代码 非常有用的作课程设计不可缺少的
💻 C
字号:
/*** thinlib (c) 2000 Matthew Conte (matt@conte.com)****** This program is free software; you can redistribute it and/or** modify it under the terms of version 2 of the GNU Library General ** Public License as published by the Free Software Foundation.**** 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 ** Library General Public License for more details.  To obtain a ** copy of the GNU Library General Public License, write to the Free ** Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.**** Any permitted reproduction of these routines, in whole or in part,** must bear this legend.****** tl_key.c**** DOS keyboard handler** $Id: tl_key.c,v 1.4 2001/03/12 06:06:56 matt Exp $*/#include <stdlib.h>#include <go32.h>#include <dpmi.h>#include <dos.h>#include "tl_types.h"#include "tl_djgpp.h"#include "tl_key.h"#define  KEYBOARD_INT      0x09/* maybe make this globally accesible? */static int key_status[THIN_MAX_KEYS];static bool key_repeat = false;static _go32_dpmi_seginfo old_key_handler;static _go32_dpmi_seginfo new_key_handler;/*** Simple queue routines*/#define  KEYQUEUE_MAX      256#define  KEYQUEUE_MASK     (KEYQUEUE_MAX - 1)#define  KEYQUEUE_EMPTY()  (keyq_head == keyq_tail)static int keyq_tail = 0, keyq_head = 0;static keydata_t key_queue[KEYQUEUE_MAX];static void key_enqueue(keydata_t *data){   key_queue[keyq_head] = *data;   keyq_head = (keyq_head + 1) & KEYQUEUE_MASK;}THIN_LOCKED_STATIC_FUNC(key_enqueue)static bool ext_key = false;keydata_t *thin_key_dequeue(void){   int loc;   if (KEYQUEUE_EMPTY())      return NULL;   loc = keyq_tail;   keyq_tail = (keyq_tail + 1) & KEYQUEUE_MASK;   return &key_queue[loc];}static const uint8 ext_tab[0x80] = {   0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 - 0x07 */   0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 - 0x0F */   0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 - 0x17 */   0, 0, 0, 0, THIN_KEY_NUMPAD_ENTER, THIN_KEY_RIGHT_CTRL, 0, 0,  /* 0x10 - 0x1F */   0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 - 0x27 */   0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 - 0x2F */   0, 0, 0, 0, 0, THIN_KEY_NUMPAD_DIV, 0, THIN_KEY_SYSRQ, /* 0x30 - 0x37 */   THIN_KEY_RIGHT_ALT, 0, 0, 0, 0, 0, 0, 0, /* 0x38 - 0x3F */   0, 0, 0, 0, 0, 0, THIN_KEY_BREAK, THIN_KEY_HOME, /* 0x40 - 0x47 */   THIN_KEY_UP, THIN_KEY_PGUP, 0, THIN_KEY_LEFT, 0, THIN_KEY_RIGHT, 0, THIN_KEY_END, /* 0x48 - 0x4F */   THIN_KEY_DOWN, THIN_KEY_PGDN, THIN_KEY_INSERT, THIN_KEY_DELETE, /* 0x50 - 0x57 */   0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 - 0x5F */   0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 - 0x67 */   0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 - 0x6F */   0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 - 0x77 */   0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 - 0x7F */};/* keyboard ISR */static void key_handler(void){   /* read the key */   keydata_t data;   uint8 raw_code, ack_code;   raw_code = inportb(0x60);   ack_code = inportb(0x61);   outportb(0x61, ack_code | 0x80);   outportb(0x61, ack_code);   outportb(0x20, 0x20);   if (0xE0 == raw_code)   {      ext_key = true;   }   else   {      if (ext_key)      {         ext_key = false;         data.key = ext_tab[raw_code & 0x7F];      }      else      {         data.key = raw_code & 0x7F;      }      data.signal = (raw_code & 0x80) ? THIN_CODE_BREAK : THIN_CODE_MAKE;      if (key_repeat || (data.signal != key_status[data.key]))      {         key_status[data.key] = data.signal;         key_enqueue(&data);      }   }}THIN_LOCKED_STATIC_FUNC(key_handler)void thin_key_set_repeat(bool state){   key_repeat = state;}/* set up variables, lock code/data, set the new handler and save old one */int thin_key_init(void){   THIN_LOCK_FUNC(key_enqueue);   THIN_LOCK_FUNC(key_handler);   THIN_LOCK_VAR(key_queue);   THIN_LOCK_VAR(keyq_head);   THIN_LOCK_VAR(key_status);      memset(key_status, THIN_CODE_BREAK, sizeof(key_status));   _go32_dpmi_get_protected_mode_interrupt_vector(KEYBOARD_INT, &old_key_handler);   new_key_handler.pm_offset = (uint32) key_handler;   new_key_handler.pm_selector = _go32_my_cs();   _go32_dpmi_allocate_iret_wrapper(&new_key_handler);   _go32_dpmi_set_protected_mode_interrupt_vector(KEYBOARD_INT, &new_key_handler);   return 0; /* can't fail */}/* restore old keyboard handler */void thin_key_shutdown(void){   _go32_dpmi_set_protected_mode_interrupt_vector(KEYBOARD_INT, &old_key_handler);   _go32_dpmi_free_iret_wrapper(&new_key_handler);}/*** $Log: tl_key.c,v $** Revision 1.4  2001/03/12 06:06:56  matt** better keyboard driver, support for bit depths other than 8bpp**** Revision 1.3  2000/12/16 21:18:11  matt** thinlib cleanups**** Revision 1.2  2000/11/05 16:32:36  matt** thinlib round 2**** Revision 1.1  2000/11/05 06:29:03  matt** initial revision***/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -