]> ncurses.scripts.mit.edu Git - ncurses.git/blob - include/MKkey_defs.sh
ncurses 6.2 - patch 20200229
[ncurses.git] / include / MKkey_defs.sh
1 #! /bin/sh
2 # $Id: MKkey_defs.sh,v 1.19 2020/02/02 23:34:34 tom Exp $
3 ##############################################################################
4 # Copyright 2019,2020 Thomas E. Dickey                                       #
5 # Copyright 2001-2013,2017 Free Software Foundation, Inc.                    #
6 #                                                                            #
7 # Permission is hereby granted, free of charge, to any person obtaining a    #
8 # copy of this software and associated documentation files (the "Software"), #
9 # to deal in the Software without restriction, including without limitation  #
10 # the rights to use, copy, modify, merge, publish, distribute, distribute    #
11 # with modifications, sublicense, and/or sell copies of the Software, and to #
12 # permit persons to whom the Software is furnished to do so, subject to the  #
13 # following conditions:                                                      #
14 #                                                                            #
15 # The above copyright notice and this permission notice shall be included in #
16 # all copies or substantial portions of the Software.                        #
17 #                                                                            #
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
19 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
20 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
21 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
22 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
23 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
24 # DEALINGS IN THE SOFTWARE.                                                  #
25 #                                                                            #
26 # Except as contained in this notice, the name(s) of the above copyright     #
27 # holders shall not be used in advertising or otherwise to promote the sale, #
28 # use or other dealings in this Software without prior written               #
29 # authorization.                                                             #
30 ##############################################################################
31 #
32 # MKkey_defs.sh -- generate function-key definitions for curses.h
33 #
34 # Author: Thomas E. Dickey 2001
35 #
36 # Extract function-key definitions from the Caps file
37 #
38 : ${AWK-awk}
39
40 test $# = 0 && set Caps
41
42 data=data$$
43 pass1=pass1_$$
44 pass2=pass2_$$
45 pass3=pass3_$$
46 pass4=pass4_$$
47 trap 'rm -f $data pass[1234]_$$' EXIT INT QUIT TERM HUP
48
49 # change repeated tabs (used for readability) to single tabs (needed to make
50 # awk see the right field alignment of the corresponding columns):
51 if sort -k 6 "$@" >$data 2>/dev/null
52 then
53         # POSIX
54         sed -e 's/[     ][      ]*/     /g' "$@" |sort -n -k 6 >$data
55 elif sort -n +5 "$@" >$data 2>/dev/null
56 then
57         # SunOS (and SVr4, marked as obsolete but still recognized)
58         sed -e 's/[     ][      ]*/     /g' "$@" |sort -n +5 >$data
59 else
60         echo "Your sort utility is broken.  Please install one that works." >&2
61         exit 1
62 fi
63
64 # add keys that we generate automatically:
65 cat >>$data <<EOF
66 key_resize      kr1     str     R1      KEY_RESIZE      +       -----   Terminal resize event
67 key_event       kv1     str     V1      KEY_EVENT       +       -----   We were interrupted by an event
68 EOF
69
70 THIS=./`basename $0`
71
72 cat <<EOF
73 /*
74  * These definitions were generated by $THIS $*
75  */
76 EOF
77
78 # KEY_RESET
79 maxkey=345
80
81 for pass in 1 2 3 4
82 do
83
84 output=pass${pass}_$$
85
86 ${AWK-awk} >$output <$data '
87 function print_cols(text,cols) {
88         printf "%s", text
89         len = length(text);
90         while (len < cols) {
91                 printf "        "
92                 len += 8;
93         }
94 }
95 function decode(keycode) {
96         result = 0;
97         if (substr(keycode, 1, 2) == "0x") {
98                 digits="0123456789abcdef";
99         } else if (substr(keycode, 1, 1) == "0") {
100                 digits="01234567";
101         } else {
102                 digits="0123456789";
103         }
104         while (length(keycode) != 0) {
105                 digit=substr(keycode, 1, 1);
106                 keycode=substr(keycode, 2);
107                 result = result * length(digits) + index(digits, digit) - 1;
108         }
109         return result;
110 }
111
112 BEGIN   {
113         maxkey='$maxkey';
114         pass='$pass';
115         key_max=1;
116         bits=1;
117         while (key_max < maxkey) {
118                 bits = bits + 1;
119                 key_max = (key_max * 2) + 1;
120         }
121         octal_fmt = sprintf ("%%0%do", (bits + 2) / 3 + 1);
122 }
123
124 /^$/            {next;}
125 /^#/            {next;}
126 /^capalias/     {next;}
127 /^infoalias/    {next;}
128 /^used_by/      {next;}
129 /^userdef/      {next;}
130
131 $5 != "-" && $6 != "-" {
132                 if ($6 == "+") {
133                         if (pass == 1 || pass == 2)
134                                 next;
135                         thiskey=maxkey + 1;
136                 } else {
137                         if (pass == 3)
138                                 next;
139                         thiskey=decode($6);
140                 }
141                 if (thiskey > maxkey)
142                         maxkey = thiskey;
143                 if (pass == 2 || pass == 3) {
144                         showkey=sprintf(octal_fmt, thiskey);
145                         if ($5 == "KEY_F(0)" ) {
146                                 printf "#define "
147                                 print_cols("KEY_F0", 16);
148                                 print_cols(showkey, 16);
149                                 print "/* Function keys.  Space for 64 */";
150                                 printf "#define "
151                                 print_cols("KEY_F(n)", 16);
152                                 print_cols("(KEY_F0+(n))", 16);
153                                 print "/* Value of function key n */"
154                         } else {
155                                 printf "#define "
156                                 print_cols($5, 16);
157                                 print_cols(showkey, 16);
158                                 printf "/*"
159                                 for (i = 8; i <= NF; i++)
160                                         printf " %s", $i
161                                 print " */"
162                         }
163                 }
164         }
165 END     {
166                 if (pass == 1) {
167                         print maxkey;
168                 } else if (pass == 4) {
169                         print "";
170                         printf "#define ";
171                         print_cols("KEY_MAX", 16);
172                         result = sprintf (octal_fmt, key_max);
173                         print_cols(result, 16);
174                         printf "/* Maximum key value is ";
175                         printf octal_fmt, maxkey;
176                         print " */";
177                 }
178         }
179 '
180 if test $pass = 1 ; then
181         maxkey=`cat $pass1`
182 fi
183
184 done
185
186 cat $pass2
187 cat $pass3
188 cat $pass4