Sync usage with man page.
[netbsd-mini2440.git] / usr.bin / tn3270 / tools / mkhits / mkhits.c
blob6937ebf892eb0bdab23efa79e914fd8de5bf3962
1 /* $NetBSD: mkhits.c,v 1.10 2007/03/10 00:22:57 hubertf Exp $ */
3 /*-
4 * Copyright (c) 1988 The Regents of the University of California.
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
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
29 * SUCH DAMAGE.
32 #include <stdio.h>
33 #include <string.h>
35 #if defined(__COPYRIGHT) && !defined(lint)
36 __COPYRIGHT("@(#) Copyright (c) 1988\
37 The Regents of the University of California. All rights reserved.");
38 #endif /* not lint */
40 #if defined(__RCSID) && !defined(lint)
41 #if 0
42 static char sccsid[] = "@(#)mkhits.c 4.2 (Berkeley) 4/26/91";
43 #else
44 __RCSID("$NetBSD: mkhits.c,v 1.10 2007/03/10 00:22:57 hubertf Exp $");
45 #endif
46 #endif /* not lint */
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"
68 #include "dohits.h"
70 int main(int, char *[]);
72 int
73 main(int argc, char *argv[])
75 int scancode;
76 int empty;
77 int i;
78 struct hits *ph;
79 struct Hits *Ph;
80 char *aidfile = 0, *fcnfile = 0;
82 if (argc > 1) {
83 if (argv[1][0] != '-') {
84 aidfile = argv[1];
87 if (argc > 2) {
88 if (argv[2][0] != '-') {
89 fcnfile = argv[2];
93 dohits(aidfile, fcnfile); /* Set up "Hits" */
95 printf("struct hits hits[] = {\n");
96 empty = 0;
97 scancode = -1;
98 for (Ph = Hits; Ph < Hits+(sizeof Hits/sizeof Hits[0]); Ph++) {
99 ph = &Ph->hits;
100 scancode++;
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)) {
105 empty++;
106 continue;
107 } else {
108 while (empty) {
109 printf("\t{ 0, { {undefined}, {undefined}");
110 printf(", {undefined}, {undefined} } },\n");
111 empty--;
114 printf("\t{ %d, {\t/* 0x%02x */\n\t", ph->keynumber, scancode);
115 for (i = 0; i < 4; i++) {
116 printf("\t{ ");
117 switch (ph->hit[i].ctlrfcn) {
118 case undefined:
119 printf("undefined");
120 break;
121 case FCN_CHARACTER:
122 printf("FCN_CHARACTER, 0x%02x", ph->hit[i].code);
123 break;
124 case FCN_AID:
125 printf("FCN_AID, %s", Ph->name[i]);
126 break;
127 case FCN_NULL:
128 default:
129 if ((Ph->name[i] != 0)
130 && (strcmp(Ph->name[i], "FCN_NULL") != 0)) {
131 printf("%s", Ph->name[i]);
132 } else {
133 printf("undefined");
135 break;
137 printf(" },\n\t");
139 printf("} },\n");
141 printf("};\n");
142 return 0;