123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- ;;; edt-mapper.el --- create an EDT LK-201 map file for X-Windows Emacs
- ;; Copyright (C) 1994-1995, 2000-2012 Free Software Foundation, Inc.
- ;; Author: Kevin Gallagher <Kevin.Gallagher@boeing.com>
- ;; Maintainer: Kevin Gallagher <Kevin.Gallagher@boeing.com>
- ;; Keywords: emulations
- ;; Package: edt
- ;; This file is part of GNU Emacs.
- ;; GNU Emacs 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 3 of the License, or
- ;; (at your option) any later version.
- ;; GNU Emacs 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
- ;;; Commentary:
- ;;
- ;; [Part of the GNU Emacs EDT Emulation.]
- ;; This emacs lisp program can be used to create an emacs lisp file
- ;; that defines the mapping of the user's keyboard to the LK-201
- ;; keyboard function keys and keypad keys (around which EDT has been
- ;; designed). Please read the "Usage" AND "Known Problems" sections
- ;; below before attempting to run this program. (The design of this
- ;; file, edt-mapper.el, was heavily influenced by tpu-mapper.el.)
- ;; Version 4.0 contains the following enhancements:
- ;; 1. If you access a workstation using an X Server, note that the
- ;; initialization file generated by edt-mapper.el will now
- ;; contain the name of the X Server vendor. This is a
- ;; convenience for those who have access to their Unix account
- ;; from more than one type of X Server. Since different X
- ;; Servers typically require different EDT emulation
- ;; initialization files, edt-mapper.el will now generate these
- ;; different initialization files and save them with different
- ;; names.
- ;; 2. Also, edt-mapper.el is now capable of binding an ASCII key
- ;; sequence, providing the ASCII key sequence prefix is already
- ;; known by Emacs to be a prefix. As a result, some
- ;; terminal/keyboard/window system configurations, which don't
- ;; have a complete set of sensible function key map bindings, can
- ;; still be configured for EDT Emulation.
- ;; Usage:
- ;; Simply load this file into emacs (version 19 or higher)
- ;; using the following command.
- ;; emacs -q -l edt-mapper.el
- ;; The "-q" option prevents loading of your .emacs file (commands
- ;; therein might confuse this program).
- ;; An instruction screen showing the typical LK-201 terminal
- ;; functions keys will be displayed, and you will be prompted to
- ;; press the keys on your keyboard which you want to emulate the
- ;; corresponding LK-201 keys.
- ;; Finally, you will be prompted for the name of the file to store
- ;; the key definitions. If you chose the default, it will be found
- ;; and loaded automatically when the EDT emulation is started. If
- ;; you specify a different file name, you will need to set the
- ;; variable "edt-keys-file" before starting the EDT emulation.
- ;; Here's how you might go about doing that in your .emacs file.
- ;; (setq edt-keys-file (expand-file-name "~/.my-emacs-keys"))
- ;; Known Problems:
- ;; Sometimes, edt-mapper will ignore a key you press, and just
- ;; continue to prompt for the same key. This can happen when your
- ;; window manager sucks up the key and doesn't pass it on to emacs,
- ;; or it could be an emacs bug. Either way, there's nothing that
- ;; edt-mapper can do about it. You must press RETURN, to skip the
- ;; current key and continue. Later, you and/or your local Emacs guru
- ;; can try to figure out why the key is being ignored.
- ;;; History:
- ;;
- ;; Version 4.0 2000 Added 2 New Features
- ;;; Code:
- ;;;
- ;;; Decide Emacs Variant, GNU Emacs or XEmacs (aka Lucid Emacs).
- ;;; Determine Window System, and X Server Vendor (if appropriate).
- ;;;
- (defconst edt-window-system (if (featurep 'xemacs) (console-type) window-system)
- "Indicates window system \(in GNU Emacs\) or console type \(in XEmacs\).")
- (declare-function x-server-vendor "xfns.c" (&optional terminal))
- (defconst edt-xserver (when (eq edt-window-system 'x)
- ;; The Cygwin window manager has a `/' in its
- ;; name, which breaks the generated file name of
- ;; the custom key map file. Replace `/' with a
- ;; `-' to work around that.
- (if (featurep 'xemacs)
- (replace-in-string (x-server-vendor) "[ /]" "-")
- (replace-regexp-in-string "[ /]" "-"
- (x-server-vendor))))
- "Indicates X server vendor name, if applicable.")
- ;;;
- ;;; Key variables
- ;;;
- (defvar edt-key nil)
- (defvar edt-enter nil)
- (defvar edt-return nil)
- (defvar edt-key-seq nil)
- (defvar edt-enter-seq nil)
- (defvar edt-return-seq nil)
- (defvar edt-term nil)
- ;; To silence the byte-compiler
- (defvar EDT-key-name)
- (defvar edt-save-function-key-map)
- ;;;
- ;;; Determine Terminal Type (if appropriate).
- ;;;
- (if (and edt-window-system (not (eq edt-window-system 'tty)))
- (setq edt-term nil)
- (setq edt-term (getenv "TERM")))
- ;;;
- ;;; Implements a workaround for a feature that was added to simple.el.
- ;;;
- ;;; Many function keys have no Emacs functions assigned to them by
- ;;; default. A subset of these are typically assigned functions in the
- ;;; EDT emulation. This includes all the keypad keys and a some others
- ;;; like Delete.
- ;;;
- ;;; Logic in simple.el maps some of these unassigned function keys to
- ;;; ordinary typing keys. Where this is the case, a call to
- ;;; read-key-sequence, below, does not return the name of the function
- ;;; key pressed by the user but, instead, it returns the name of the
- ;;; key to which it has been mapped. It needs to know the name of the
- ;;; key pressed by the user. As a workaround, we assign a function to
- ;;; each of the unassigned function keys of interest, here. These
- ;;; assignments override the mapping to other keys and are only
- ;;; temporary since, when edt-mapper is finished executing, it causes
- ;;; Emacs to exit.
- ;;;
- (mapc
- (lambda (function-key)
- (if (not (lookup-key (current-global-map) function-key))
- (define-key (current-global-map) function-key 'forward-char)))
- '([kp-0] [kp-1] [kp-2] [kp-3] [kp-4]
- [kp-5] [kp-6] [kp-7] [kp-8] [kp-9]
- [kp-space]
- [kp-tab]
- [kp-enter]
- [kp-multiply]
- [kp-add]
- [kp-separator]
- [kp-subtract]
- [kp-decimal]
- [kp-divide]
- [kp-equal]
- [backspace]
- [delete]
- [tab]
- [linefeed]
- [clear]))
- ;;;
- ;;; Make sure the window is big enough to display the instructions,
- ;;; except where window cannot be re-sized.
- ;;;
- (if (and edt-window-system (not (eq edt-window-system 'tty)))
- (set-frame-size (selected-frame) 80 36))
- ;;;
- ;;; Create buffers - Directions and Keys
- ;;;
- (if (not (get-buffer "Directions")) (generate-new-buffer "Directions"))
- (if (not (get-buffer "Keys")) (generate-new-buffer "Keys"))
- ;;;
- ;;; Put header in the Keys buffer
- ;;;
- (set-buffer "Keys")
- (insert "\
- ;;
- ;; Key definitions for the EDT emulation within GNU Emacs
- ;;
- (defconst *EDT-keys*
- '(
- ")
- ;;;
- ;;; Display directions
- ;;;
- (switch-to-buffer "Directions")
- (if (and edt-window-system (not (eq edt-window-system 'tty)))
- (insert "
- EDT MAPPER
- You will be asked to press keys to create a custom mapping (under a
- Window Manager) of your keypad keys and function keys so that they can
- emulate the LK-201 keypad and function keys or the subset of keys found
- on a VT-100 series terminal keyboard. (The LK-201 keyboard is the
- standard keyboard attached to VT-200 series terminals, and above.)
- Sometimes, edt-mapper will ignore a key you press, and just continue to
- prompt for the same key. This can happen when your window manager sucks
- up the key and doesn't pass it on to Emacs, or it could be an Emacs bug.
- Either way, there's nothing that edt-mapper can do about it. You must
- press RETURN, to skip the current key and continue. Later, you and/or
- your local system guru can try to figure out why the key is being ignored.
- Start by pressing the RETURN key, and continue by pressing the keys
- specified in the mini-buffer. If you want to entirely omit a key,
- because your keyboard does not have a corresponding key, for example,
- just press RETURN at the prompt.
- ")
- (insert "
- EDT MAPPER
- You will be asked to press keys to create a custom mapping of your
- keypad keys and function keys so that they can emulate the LK-201
- keypad and function keys or the subset of keys found on a VT-100
- series terminal keyboard. (The LK-201 keyboard is the standard
- keyboard attached to VT-200 series terminals, and above.)
- If you are using a real LK-201 keyboard, you should map the keys
- exactly as they are on the keyboard.
- Start by pressing the RETURN key, and continue by pressing the keys
- specified in the mini-buffer. If you want to entirely omit a key,
- because your keyboard does not have a corresponding key, for example,
- just press RETURN at the prompt.
- "))
- (delete-other-windows)
- ;;;
- ;;; Save <CR> for future reference.
- ;;;
- ;;; For GNU Emacs, running in a Window System, first hide bindings in
- ;;; function-key-map.
- ;;;
- (cond
- ((featurep 'xemacs)
- (setq edt-return-seq (read-key-sequence "Hit carriage-return <CR> to continue "))
- (setq edt-return (concat "[" (format "%s" (event-key (aref edt-return-seq 0))) "]")))
- (t
- (if edt-window-system
- (progn
- (setq edt-save-function-key-map function-key-map)
- (setq function-key-map (make-sparse-keymap))))
- (setq edt-return (read-key-sequence "Hit carriage-return <CR> to continue "))))
- ;;;
- ;;; Remove prefix-key bindings to F1 and F2 in global-map so they can be
- ;;; bound in the EDT Emulation mode.
- ;;;
- (global-unset-key [f1])
- (global-unset-key [f2])
- ;;;
- ;;; Display Keypad Diagram and Begin Prompting for Keys
- ;;;
- (set-buffer "Directions")
- (delete-region (point-min) (point-max))
- (if (and edt-window-system (not (eq edt-window-system 'tty)))
- (insert "
- PRESS THE KEY SPECIFIED IN THE MINIBUFFER BELOW.
- Here's a picture of the standard LK-201 keypad for reference:
- _______________________ _______________________________
- | HELP | DO | | F17 | F18 | F19 | F20 |
- | | | | | | | |
- |_______|_______________| |_______|_______|_______|_______|
- _______________________ _______________________________
- | FIND |INSERT |REMOVE | | PF1 | PF2 | PF3 | PF4 |
- | | | | | | | | |
- |_______|_______|_______| |_______|_______|_______|_______|
- |SELECT |PREVIOU| NEXT | | KP7 | KP8 | KP9 | KP- |
- | | | | | | | | |
- |_______|_______|_______| |_______|_______|_______|_______|
- | UP | | KP4 | KP5 | KP6 | KP, |
- | | | | | | |
- _______|_______|_______ |_______|_______|_______|_______|
- | LEFT | DOWN | RIGHT | | KP1 | KP2 | KP3 | |
- | | | | | | | | |
- |_______|_______|_______| |_______|_______|_______| KPE |
- | KP0 | KPP | |
- | | | |
- |_______________|_______|_______|
- REMEMBER: JUST PRESS RETURN TO SKIP MAPPING A KEY.
- ")
- (progn
- (insert "
- GENERATING A CUSTOM CONFIGURATION FILE FOR TERMINAL TYPE: ")
- (insert (format "%s." edt-term))
- (insert "
- PRESS THE KEY SPECIFIED IN THE MINIBUFFER BELOW.
- _______________________ _______________________________
- | HELP | DO | | F17 | F18 | F19 | F20 |
- |_______|_______________| |_______|_______|_______|_______|
- _______________________ _______________________________
- | FIND |INSERT |REMOVE | | PF1 | PF2 | PF3 | PF4 |
- |_______|_______|_______| |_______|_______|_______|_______|
- |SELECT |PREVIOU| NEXT | | KP7 | KP8 | KP9 | KP- |
- |_______|_______|_______| |_______|_______|_______|_______|
- | UP | | KP4 | KP5 | KP6 | KP, |
- _______|_______|_______ |_______|_______|_______|_______|
- | LEFT | DOWN | RIGHT | | KP1 | KP2 | KP3 | |
- |_______|_______|_______| |_______|_______|_______| KPE |
- | KP0 | KPP | |
- |_______________|_______|_______|
- REMEMBER: JUST PRESS RETURN TO SKIP MAPPING A KEY.")))
- ;;;
- ;;; Key mapping functions
- ;;;
- (defun edt-map-key (ident descrip)
- (interactive)
- (if (featurep 'xemacs)
- (progn
- (setq edt-key-seq (read-key-sequence (format "Press %s%s: " ident descrip)))
- (setq edt-key (concat "[" (format "%s" (event-key (aref edt-key-seq 0))) "]"))
- (cond ((not (equal edt-key edt-return))
- (set-buffer "Keys")
- (insert (format " (\"%s\" . %s)\n" ident edt-key))
- (set-buffer "Directions"))
- ;; bogosity to get next prompt to come up, if the user hits <CR>!
- ;; check periodically to see if this is still needed...
- (t
- (set-buffer "Keys")
- (insert (format " (\"%s\" . \"\" )\n" ident))
- (set-buffer "Directions"))))
- (setq edt-key (read-key-sequence (format "Press %s%s: " ident descrip)))
- (cond ((not (equal edt-key edt-return))
- (set-buffer "Keys")
- (insert (if (vectorp edt-key)
- (format " (\"%s\" . %s)\n" ident edt-key)
- (format " (\"%s\" . \"%s\")\n" ident edt-key)))
- (set-buffer "Directions"))
- ;; bogosity to get next prompt to come up, if the user hits <CR>!
- ;; check periodically to see if this is still needed...
- (t
- (set-buffer "Keys")
- (insert (format " (\"%s\" . \"\" )\n" ident))
- (set-buffer "Directions"))))
- edt-key)
- (set-buffer "Keys")
- (insert "
- ;;
- ;; Arrows
- ;;
- ")
- (set-buffer "Directions")
- (edt-map-key "UP" " - The Up Arrow Key")
- (edt-map-key "DOWN" " - The Down Arrow Key")
- (edt-map-key "LEFT" " - The Left Arrow Key")
- (edt-map-key "RIGHT" " - The Right Arrow Key")
- (set-buffer "Keys")
- (insert "
- ;;
- ;; PF keys
- ;;
- ")
- (set-buffer "Directions")
- (edt-map-key "PF1" " - The PF1 (GOLD) Key")
- (edt-map-key "PF2" " - The Keypad PF2 Key")
- (edt-map-key "PF3" " - The Keypad PF3 Key")
- (edt-map-key "PF4" " - The Keypad PF4 Key")
- (set-buffer "Keys")
- (insert "
- ;;
- ;; KP0-9 KP- KP, KPP and KPE
- ;;
- ")
- (set-buffer "Directions")
- (edt-map-key "KP0" " - The Keypad 0 Key")
- (edt-map-key "KP1" " - The Keypad 1 Key")
- (edt-map-key "KP2" " - The Keypad 2 Key")
- (edt-map-key "KP3" " - The Keypad 3 Key")
- (edt-map-key "KP4" " - The Keypad 4 Key")
- (edt-map-key "KP5" " - The Keypad 5 Key")
- (edt-map-key "KP6" " - The Keypad 6 Key")
- (edt-map-key "KP7" " - The Keypad 7 Key")
- (edt-map-key "KP8" " - The Keypad 8 Key")
- (edt-map-key "KP9" " - The Keypad 9 Key")
- (edt-map-key "KP-" " - The Keypad - Key")
- (edt-map-key "KP," " - The Keypad , Key")
- (edt-map-key "KPP" " - The Keypad . Key")
- (edt-map-key "KPE" " - The Keypad Enter Key")
- ;; Save the enter key
- (setq edt-enter edt-key)
- (setq edt-enter-seq edt-key-seq)
- (set-buffer "Keys")
- (insert "
- ;;
- ;; Editing keypad (FIND, INSERT, REMOVE)
- ;; (SELECT, PREVIOUS, NEXT)
- ;;
- ")
- (set-buffer "Directions")
- (edt-map-key "FIND" " - The Find key on the editing keypad")
- (edt-map-key "INSERT" " - The Insert key on the editing keypad")
- (edt-map-key "REMOVE" " - The Remove key on the editing keypad")
- (edt-map-key "SELECT" " - The Select key on the editing keypad")
- (edt-map-key "PREVIOUS" " - The Prev Scr key on the editing keypad")
- (edt-map-key "NEXT" " - The Next Scr key on the editing keypad")
- (set-buffer "Keys")
- (insert "
- ;;
- ;; F1-14 Help Do F17-F20
- ;;
- ")
- (set-buffer "Directions")
- (edt-map-key "F1" " - F1 Function Key")
- (edt-map-key "F2" " - F2 Function Key")
- (edt-map-key "F3" " - F3 Function Key")
- (edt-map-key "F4" " - F4 Function Key")
- (edt-map-key "F5" " - F5 Function Key")
- (edt-map-key "F6" " - F6 Function Key")
- (edt-map-key "F7" " - F7 Function Key")
- (edt-map-key "F8" " - F8 Function Key")
- (edt-map-key "F9" " - F9 Function Key")
- (edt-map-key "F10" " - F10 Function Key")
- (edt-map-key "F11" " - F11 Function Key")
- (edt-map-key "F12" " - F12 Function Key")
- (edt-map-key "F13" " - F13 Function Key")
- (edt-map-key "F14" " - F14 Function Key")
- (edt-map-key "HELP" " - HELP Function Key")
- (edt-map-key "DO" " - DO Function Key")
- (edt-map-key "F17" " - F17 Function Key")
- (edt-map-key "F18" " - F18 Function Key")
- (edt-map-key "F19" " - F19 Function Key")
- (edt-map-key "F20" " - F20 Function Key")
- (set-buffer "Directions")
- (delete-region (point-min) (point-max))
- (insert "
- ADDITIONAL FUNCTION KEYS
- Your keyboard may have additional function keys which do not correspond
- to any LK-201 keys. The EDT Emulation can be configured to recognize
- those keys, since you may wish to add your own key bindings to those keys.
- For example, suppose your keyboard has a keycap marked \"Line Del\" and
- you wish to add it to the list of keys which can be customized by the EDT
- Emulation. First, assign a unique single-word name to the key for use by
- the EDT Emulation, for example, \"linedel\". Then, at the \"EDT Key
- Name:\" prompt, enter \"linedel\", followed by a press of the RETURN key.
- Finally, when prompted, press the \"Line Del\" key. You now will be able
- to bind functions to \"linedel\" and \"Gold-linedel\" in edt-user.el in
- just the same way you can customize bindings of the LK-201 function and
- keypad keys.
- When you are done, just press RETURN at the \"EDT Key Name:\" prompt.
- ")
- (switch-to-buffer "Directions")
- ;;;
- ;;; Add support for extras keys
- ;;;
- (set-buffer "Keys")
- (insert "\
- ;;
- ;; Extra Keys
- ;;
- ")
- ;;;
- ;;; Restore function-key-map.
- ;;;
- (if (and edt-window-system (not (featurep 'xemacs)))
- (setq function-key-map edt-save-function-key-map))
- (setq EDT-key-name "")
- (while (not
- (string-equal (setq EDT-key-name (read-string "EDT Key Name: ")) ""))
- (edt-map-key EDT-key-name ""))
- ;
- ; No more keys to add, so wrap up.
- ;
- (set-buffer "Keys")
- (insert "\
- )
- )
- ")
- ;;;
- ;;; Save the key mapping program
- ;;;
- ;;;
- ;;; Save the key mapping file
- ;;;
- (let ((file (concat
- "~/.edt-" (if (featurep 'xemacs) "xemacs" "gnu")
- (if edt-term (concat "-" edt-term))
- (if edt-xserver (concat "-" edt-xserver))
- (if edt-window-system (concat "-" (upcase (symbol-name edt-window-system))))
- "-keys")))
- (set-visited-file-name
- (read-file-name (format "Save key mapping to file (default %s): " file) nil file)))
- (save-buffer)
- (message "That's it! Press any key to exit")
- (sit-for 600)
- (kill-emacs t)
- ;;; edt-mapper.el ends here
|