1 /* GyS-TermIO v2.0 (for GySmail v3) (C) 1999 A'rpi/ESP-team */
6 #if !defined(__OS2__) && !defined(__MORPHOS__)
17 #include <sys/types.h>
19 #include <sys/ioctl.h>
26 #ifdef HAVE_SYS_TERMIOS_H
27 #include <sys/termios.h>
31 #if defined(USE_LANGINFO) && defined(USE_ICONV)
42 static struct termios tio_orig
;
44 static int getch2_len
=0;
45 static char getch2_buf
[BUF_LEN
];
49 char * erase_to_end_of_line
= NULL
;
56 static keycode_st getch2_keys
[MAX_KEYS
];
57 static int getch2_key_db
=0;
64 extern int tgetent (char *BUFFER
, char *TERMTYPE
);
65 extern int tgetnum (char *NAME
);
66 extern int tgetflag (char *NAME
);
67 extern char *tgetstr (char *NAME
, char **AREA
);
70 static char term_buffer
[4096];
71 static char term_buffer2
[4096];
72 static char *term_p
=term_buffer2
;
74 static void termcap_add(char *id
,int code
){
75 char *p
=tgetstr(id
,&term_p
);
77 if(getch2_key_db
>=MAX_KEYS
) return;
78 getch2_keys
[getch2_key_db
].len
=strlen(p
);
79 strncpy(getch2_keys
[getch2_key_db
].chars
,p
,8);
80 getch2_keys
[getch2_key_db
].code
=code
;
82 /* printf("%s=%s\n",id,p); */
87 int load_termcap(char *termtype
){
88 if(!termtype
) termtype
=getenv("TERM");
89 if(!termtype
) termtype
="unknown";
90 success
=tgetent(term_buffer
, termtype
);
91 if(success
<0){ printf("Could not access the 'termcap' data base.\n"); return 0; }
92 if(success
==0){ printf("Terminal type `%s' is not defined.\n", termtype
);return 0;}
94 screen_width
=tgetnum("co");
95 screen_height
=tgetnum("li");
96 if(screen_width
<1 || screen_width
>255) screen_width
=80;
97 if(screen_height
<1 || screen_height
>255) screen_height
=24;
98 erase_to_end_of_line
= tgetstr("cd",&term_p
);
100 termcap_add("kP",KEY_PGUP
);
101 termcap_add("kN",KEY_PGDWN
);
102 termcap_add("kh",KEY_HOME
);
103 termcap_add("kH",KEY_END
);
104 termcap_add("kI",KEY_INS
);
105 termcap_add("kD",KEY_DEL
);
106 termcap_add("kb",KEY_BS
);
107 termcap_add("kl",KEY_LEFT
);
108 termcap_add("kd",KEY_DOWN
);
109 termcap_add("ku",KEY_UP
);
110 termcap_add("kr",KEY_RIGHT
);
111 termcap_add("k0",KEY_F
+0);
112 termcap_add("k1",KEY_F
+1);
113 termcap_add("k2",KEY_F
+2);
114 termcap_add("k3",KEY_F
+3);
115 termcap_add("k4",KEY_F
+4);
116 termcap_add("k5",KEY_F
+5);
117 termcap_add("k6",KEY_F
+6);
118 termcap_add("k7",KEY_F
+7);
119 termcap_add("k8",KEY_F
+8);
120 termcap_add("k9",KEY_F
+9);
121 termcap_add("k;",KEY_F
+10);
122 return getch2_key_db
;
127 void get_screen_size(void){
130 if (ioctl(0, TIOCGWINSZ
, &ws
) < 0 || !ws
.ws_row
|| !ws
.ws_col
) return;
131 /* printf("Using IOCTL\n"); */
132 screen_width
=ws
.ws_col
;
133 screen_height
=ws
.ws_row
;
139 int retval
= read(0, &getch2_buf
[getch2_len
], BUF_LEN
-getch2_len
);
142 getch2_len
+= retval
;
144 while (getch2_len
> 0 && (getch2_len
> 1 || getch2_buf
[0] != 27)) {
147 /* First find in the TERMCAP database: */
148 for (i
= 0; i
< getch2_key_db
; i
++) {
149 if ((len
= getch2_keys
[i
].len
) <= getch2_len
)
150 if(memcmp(getch2_keys
[i
].chars
, getch2_buf
, len
) == 0) {
151 code
= getch2_keys
[i
].code
;
155 /* We always match some keypress here, with length 1 if nothing else.
156 * Since some of the cases explicitly test remaining buffer length
157 * having a keycode only partially read in the buffer could incorrectly
158 * use the first byte as an independent character.
159 * However the buffer is big enough that this shouldn't happen too
160 * easily, and it's been this way for years without many complaints.
161 * I see no simple fix as there's no easy test which would tell
162 * whether a string must be part of a longer keycode. */
164 code
= getch2_buf
[0];
165 /* Check the well-known codes... */
167 if (code
== 'A'-64) code
= KEY_HOME
;
168 else if (code
== 'E'-64) code
= KEY_END
;
169 else if (code
== 'D'-64) code
= KEY_DEL
;
170 else if (code
== 'H'-64) code
= KEY_BS
;
171 else if (code
== 'U'-64) code
= KEY_PGUP
;
172 else if (code
== 'V'-64) code
= KEY_PGDWN
;
173 else if (code
== 8 || code
==127) code
= KEY_BS
;
174 else if (code
== 10 || code
==13) {
175 if (getch2_len
> 1) {
176 int c
= getch2_buf
[1];
177 if ((c
== 10 || c
== 13) && (c
!= code
))
183 else if (getch2_len
> 1) {
184 int c
= getch2_buf
[1];
190 if (c
>= '0' && c
<= '9') {
195 if (getch2_len
>= 4 && c
== '[' && getch2_buf
[2] == '[') {
196 int c
= getch2_buf
[3];
197 if (c
>= 'A' && c
< 'A'+12) {
198 code
= KEY_F
+1 + c
-'A';
203 if ((c
== '[' || c
== 'O') && getch2_len
>= 3) {
204 int c
= getch2_buf
[2];
205 const short ctable
[] = {
206 KEY_UP
, KEY_DOWN
, KEY_RIGHT
, KEY_LEFT
, 0,
207 KEY_END
, KEY_PGDWN
, KEY_HOME
, KEY_PGUP
, 0, 0, KEY_INS
, 0, 0, 0,
208 KEY_F
+1, KEY_F
+2, KEY_F
+3, KEY_F
+4};
209 if (c
>= 'A' && c
<= 'S')
210 if (ctable
[c
- 'A']) {
211 code
= ctable
[c
- 'A'];
216 if (getch2_len
>= 4 && c
== '[' && getch2_buf
[3] == '~') {
217 int c
= getch2_buf
[2];
218 const int ctable
[8] = {KEY_HOME
, KEY_INS
, KEY_DEL
, KEY_END
, KEY_PGUP
, KEY_PGDWN
, KEY_HOME
, KEY_END
};
219 if (c
>= '1' && c
<= '8') {
220 code
= ctable
[c
- '1'];
225 if (getch2_len
>= 5 && c
== '[' && getch2_buf
[4] == '~') {
226 int i
= getch2_buf
[2] - '0';
227 int j
= getch2_buf
[3] - '0';
228 if (i
>= 0 && i
<= 9 && j
>= 0 && j
<= 9) {
229 const short ftable
[20] = {
230 11,12,13,14,15, 17,18,19,20,21,
231 23,24,25,26,28, 29,31,32,33,34 };
233 for (i
= 0; i
< 20; i
++)
234 if (ftable
[i
] == a
) {
244 for (i
= 0; i
< getch2_len
; i
++)
245 getch2_buf
[i
] = getch2_buf
[len
+i
];
246 mplayer_put_key(code
);
250 static int getch2_status
=0;
252 void getch2_enable(void){
254 struct termios tio_new
;
255 tcgetattr(0,&tio_orig
);
257 tio_new
.c_lflag
&= ~(ICANON
|ECHO
); /* Clear ICANON and ECHO. */
258 tio_new
.c_cc
[VMIN
] = 1;
259 tio_new
.c_cc
[VTIME
] = 0;
260 tcsetattr(0,TCSANOW
,&tio_new
);
265 void getch2_disable(void){
266 if(!getch2_status
) return; // already disabled / never enabled
268 tcsetattr(0,TCSANOW
,&tio_orig
);
274 char* get_term_charset(void)
276 char* charset
= NULL
;
278 setlocale(LC_CTYPE
, "");
279 charset
= nl_langinfo(CODESET
);
280 setlocale(LC_CTYPE
, "C");