1 /* $NetBSD: mkhits.c,v 1.10 2007/03/10 00:22:57 hubertf Exp $ */
4 * Copyright (c) 1988 The Regents of the University of California.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #if defined(__COPYRIGHT) && !defined(lint)
36 __COPYRIGHT("@(#) Copyright (c) 1988\
37 The Regents of the University of California. All rights reserved.");
40 #if defined(__RCSID) && !defined(lint)
42 static char sccsid
[] = "@(#)mkhits.c 4.2 (Berkeley) 4/26/91";
44 __RCSID("$NetBSD: mkhits.c,v 1.10 2007/03/10 00:22:57 hubertf Exp $");
49 * This program scans a file which describes a keyboard. The output
50 * of the program is a series of 'C' declarations which describe a
51 * mapping between (scancode, shiftstate, altstate) and 3270 functions,
52 * characters, and AIDs.
54 * The format of the input file is as follows:
56 * keynumber [ scancode [ unshifted [ shifted [ alted [ shiftalted ] ] ] ] ]
58 * keynumber is in decimal, and starts in column 1.
59 * scancode is hexadecimal.
60 * unshifted, etc. - these are either a single ascii character,
61 * or the name of a function or an AID-generating key.
63 * all fields are separated by a single space.
66 #include "../ctlr/function.h"
70 int main(int, char *[]);
73 main(int argc
, char *argv
[])
80 char *aidfile
= 0, *fcnfile
= 0;
83 if (argv
[1][0] != '-') {
88 if (argv
[2][0] != '-') {
93 dohits(aidfile
, fcnfile
); /* Set up "Hits" */
95 printf("struct hits hits[] = {\n");
98 for (Ph
= Hits
; Ph
< Hits
+(sizeof Hits
/sizeof Hits
[0]); Ph
++) {
101 if ((ph
->hit
[0].ctlrfcn
== undefined
)
102 && (ph
->hit
[1].ctlrfcn
== undefined
)
103 && (ph
->hit
[2].ctlrfcn
== undefined
)
104 && (ph
->hit
[3].ctlrfcn
== undefined
)) {
109 printf("\t{ 0, { {undefined}, {undefined}");
110 printf(", {undefined}, {undefined} } },\n");
114 printf("\t{ %d, {\t/* 0x%02x */\n\t", ph
->keynumber
, scancode
);
115 for (i
= 0; i
< 4; i
++) {
117 switch (ph
->hit
[i
].ctlrfcn
) {
122 printf("FCN_CHARACTER, 0x%02x", ph
->hit
[i
].code
);
125 printf("FCN_AID, %s", Ph
->name
[i
]);
129 if ((Ph
->name
[i
] != 0)
130 && (strcmp(Ph
->name
[i
], "FCN_NULL") != 0)) {
131 printf("%s", Ph
->name
[i
]);