Mercurial > mplayer.hg
annotate linux/getch2.c @ 3242:a5f693377e23
added auto detection of tv v4l and changed tv to enabled
author | alex |
---|---|
date | Sat, 01 Dec 2001 15:05:08 +0000 |
parents | 16576e05b93a |
children | 310c0b9bea21 |
rev | line source |
---|---|
1 | 1 /* GyS-TermIO v2.0 (for GySmail v3) (C) 1999 A'rpi/ESP-team */ |
2 | |
3 #include "../config.h" | |
4 | |
5 //#define USE_TERMCAP | |
6 #define USE_IOCTL | |
7 | |
8 #define MAX_KEYS 64 | |
9 #define BUF_LEN 256 | |
10 | |
11 #include <stdio.h> | |
12 #include <stdlib.h> | |
13 #include <string.h> | |
14 #include <sys/time.h> | |
15 #include <sys/types.h> | |
16 #ifdef USE_IOCTL | |
17 #include <sys/ioctl.h> | |
18 #endif | |
3009 | 19 #ifdef HAVE_TERMIOS |
1 | 20 #include <sys/termios.h> |
3009 | 21 #endif |
1 | 22 #include <unistd.h> |
23 | |
24 #include "keycodes.h" | |
25 | |
3009 | 26 #ifdef HAVE_TERMIOS |
1 | 27 static struct termios tio_orig; |
3009 | 28 #endif |
1 | 29 static int getch2_len=0; |
30 static char getch2_buf[BUF_LEN]; | |
31 | |
32 int screen_width=80; | |
33 int screen_height=24; | |
34 | |
35 typedef struct { | |
36 int len; | |
37 int code; | |
38 char chars[8]; | |
39 } keycode_st; | |
40 static keycode_st getch2_keys[MAX_KEYS]; | |
41 static int getch2_key_db=0; | |
42 | |
43 #ifdef USE_TERMCAP | |
44 | |
45 #if 0 | |
46 #include <termcap.h> | |
47 #else | |
48 extern int tgetent (char *BUFFER, char *TERMTYPE); | |
49 extern int tgetnum (char *NAME); | |
50 extern int tgetflag (char *NAME); | |
51 extern char *tgetstr (char *NAME, char **AREA); | |
52 #endif | |
53 | |
54 static char term_buffer[4096]; | |
55 static char term_buffer2[4096]; | |
56 static char *term_p=term_buffer2; | |
57 | |
58 static void termcap_add(char *id,int code){ | |
59 char *p=tgetstr(id,&term_p); | |
60 if(!p) return; | |
61 if(getch2_key_db>=MAX_KEYS) return; | |
62 getch2_keys[getch2_key_db].len=strlen(p); | |
63 strncpy(getch2_keys[getch2_key_db].chars,p,8); | |
64 getch2_keys[getch2_key_db].code=code; | |
65 ++getch2_key_db; | |
66 /* printf("%s=%s\n",id,p); */ | |
67 } | |
68 | |
69 static int success=0; | |
70 | |
71 int load_termcap(char *termtype){ | |
72 if(!termtype) termtype=getenv("TERM"); | |
73 success=tgetent(term_buffer, termtype); | |
74 if(success<0){ printf("Could not access the 'termcap' data base.\n"); return 0; } | |
75 if(success==0){ printf("Terminal type `%s' is not defined.\n", termtype);return 0;} | |
76 | |
77 screen_width=tgetnum("co"); | |
78 screen_height=tgetnum("li"); | |
79 if(screen_width<1 || screen_width>255) screen_width=80; | |
80 if(screen_height<1 || screen_height>255) screen_height=24; | |
81 | |
82 termcap_add("kP",KEY_PGUP); | |
83 termcap_add("kN",KEY_PGDWN); | |
84 termcap_add("kh",KEY_HOME); | |
85 termcap_add("kH",KEY_END); | |
86 termcap_add("kI",KEY_INS); | |
87 termcap_add("kD",KEY_DEL); | |
88 termcap_add("kb",KEY_BS); | |
89 termcap_add("kl",KEY_LEFT); | |
90 termcap_add("kd",KEY_DOWN); | |
91 termcap_add("ku",KEY_UP); | |
92 termcap_add("kr",KEY_RIGHT); | |
93 termcap_add("k0",KEY_F+0); | |
94 termcap_add("k1",KEY_F+1); | |
95 termcap_add("k2",KEY_F+2); | |
96 termcap_add("k3",KEY_F+3); | |
97 termcap_add("k4",KEY_F+4); | |
98 termcap_add("k5",KEY_F+5); | |
99 termcap_add("k6",KEY_F+6); | |
100 termcap_add("k7",KEY_F+7); | |
101 termcap_add("k8",KEY_F+8); | |
102 termcap_add("k9",KEY_F+9); | |
103 termcap_add("k;",KEY_F+10); | |
104 return getch2_key_db; | |
105 } | |
106 | |
107 #endif | |
108 | |
109 void get_screen_size(){ | |
110 #ifdef USE_IOCTL | |
111 struct winsize ws; | |
112 if (ioctl(0, TIOCGWINSZ, &ws) < 0 || !ws.ws_row || !ws.ws_col) return; | |
113 /* printf("Using IOCTL\n"); */ | |
114 screen_width=ws.ws_col; | |
115 screen_height=ws.ws_row; | |
116 #endif | |
117 } | |
118 | |
119 int getch2(int time){ | |
120 int len=0; | |
121 int code=0; | |
122 int i=0; | |
123 | |
124 while(!getch2_len || (getch2_len==1 && getch2_buf[0]==27)){ | |
125 fd_set rfds; | |
126 struct timeval tv; | |
127 int retval; | |
128 /* Watch stdin (fd 0) to see when it has input. */ | |
129 FD_ZERO(&rfds); FD_SET(0,&rfds); | |
130 /* Wait up to 'time' microseconds. */ | |
131 tv.tv_sec=time/1000; tv.tv_usec = (time%1000)*1000; | |
132 retval=select(1, &rfds, NULL, NULL, &tv); | |
3014
16576e05b93a
Profiling fix by Artur Skawina <skawina@geocities.com>
atmos4
parents:
3009
diff
changeset
|
133 if(retval<=0) return -1; |
1 | 134 /* Data is available now. */ |
135 retval=read(0,&getch2_buf[getch2_len],BUF_LEN-getch2_len); | |
136 if(retval<1) return -1; | |
137 getch2_len+=retval; | |
138 } | |
139 | |
140 /* First find in the TERMCAP database: */ | |
141 for(i=0;i<getch2_key_db;i++){ | |
142 if((len=getch2_keys[i].len)<=getch2_len) | |
143 if(memcmp(getch2_keys[i].chars,getch2_buf,len)==0){ | |
144 code=getch2_keys[i].code; goto found; | |
145 } | |
146 } | |
147 len=1;code=getch2_buf[0]; | |
148 /* Check the well-known codes... */ | |
149 if(code!=27){ | |
150 if(code=='A'-64){ code=KEY_HOME; goto found;} | |
151 if(code=='E'-64){ code=KEY_END; goto found;} | |
152 if(code=='D'-64){ code=KEY_DEL; goto found;} | |
153 if(code=='H'-64){ code=KEY_BS; goto found;} | |
154 if(code=='U'-64){ code=KEY_PGUP; goto found;} | |
155 if(code=='V'-64){ code=KEY_PGDWN; goto found;} | |
156 if(code==8 || code==127){ code=KEY_BS; goto found;} | |
157 if(code==10 || code==13){ | |
158 if(getch2_len>1){ | |
159 int c=getch2_buf[1]; | |
160 if(c==10 || c==13) if(c!=code) len=2; | |
161 } | |
162 code=KEY_ENTER; | |
163 goto found; | |
164 } | |
165 } else if(getch2_len>1){ | |
166 int c=getch2_buf[1]; | |
167 if(c==27){ code=KEY_ESC; len=2; goto found;} | |
168 if(c>='0' && c<='9'){ code=c-'0'+KEY_F; len=2; goto found;} | |
169 if(getch2_len>=4 && c=='[' && getch2_buf[2]=='['){ | |
170 int c=getch2_buf[3]; | |
171 if(c>='A' && c<'A'+12){ code=KEY_F+1+c-'A';len=4;goto found;} | |
172 } | |
173 if(c=='[' || c=='O') if(getch2_len>=3){ | |
174 int c=getch2_buf[2]; | |
175 static short int ctable[]={ KEY_UP,KEY_DOWN,KEY_RIGHT,KEY_LEFT,0, | |
176 KEY_END,KEY_PGDWN,KEY_HOME,KEY_PGUP,0,0,KEY_INS,0,0,0, | |
177 KEY_F+1,KEY_F+2,KEY_F+3,KEY_F+4}; | |
178 if(c>='A' && c<='S') | |
179 if(ctable[c-'A']){ code=ctable[c-'A']; len=3; goto found;} | |
180 } | |
181 if(getch2_len>=4 && c=='[' && getch2_buf[3]=='~'){ | |
182 int c=getch2_buf[2]; | |
183 int ctable[8]={KEY_HOME,KEY_INS,KEY_DEL,KEY_END,KEY_PGUP,KEY_PGDWN,KEY_HOME,KEY_END}; | |
184 if(c>='1' && c<='8'){ code=ctable[c-'1']; len=4; goto found;} | |
185 } | |
186 if(getch2_len>=5 && c=='[' && getch2_buf[4]=='~'){ | |
187 int i=getch2_buf[2]-'0'; | |
188 int j=getch2_buf[3]-'0'; | |
189 if(i>=0 && i<=9 && j>=0 && j<=9){ | |
190 static short int ftable[20]={ | |
191 11,12,13,14,15, 17,18,19,20,21, | |
192 23,24,25,26,28, 29,31,32,33,34 }; | |
193 int a=i*10+j; | |
194 for(i=0;i<20;i++) if(ftable[i]==a){ code=KEY_F+1+i;len=5;goto found;} | |
195 } | |
196 } | |
197 } | |
198 found: | |
199 if((getch2_len-=len)>0){ | |
200 int i; | |
201 for(i=0;i<getch2_len;i++) getch2_buf[i]=getch2_buf[len+i]; | |
202 } | |
203 return code; | |
204 } | |
205 | |
1632 | 206 static int getch2_status=0; |
207 | |
1 | 208 void getch2_enable(){ |
3009 | 209 #ifdef HAVE_TERMIOS |
1 | 210 struct termios tio_new; |
1433 | 211 #if defined(__NetBSD__) || defined(__svr4__) || defined(__CYGWIN__) |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
958
diff
changeset
|
212 tcgetattr(0,&tio_orig); |
2089 | 213 #elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__bsdi__) |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
958
diff
changeset
|
214 ioctl(0,TIOCGETA,&tio_orig); |
958
162a78d3cc08
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
1
diff
changeset
|
215 #else |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
958
diff
changeset
|
216 ioctl(0,TCGETS,&tio_orig); |
958
162a78d3cc08
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
1
diff
changeset
|
217 #endif |
1 | 218 tio_new=tio_orig; |
219 tio_new.c_lflag &= ~(ICANON|ECHO); /* Clear ICANON and ECHO. */ | |
220 tio_new.c_cc[VMIN] = 1; | |
221 tio_new.c_cc[VTIME] = 0; | |
1433 | 222 #if defined(__NetBSD__) || defined(__svr4__) || defined(__CYGWIN__) |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
958
diff
changeset
|
223 tcsetattr(0,TCSANOW,&tio_new); |
2089 | 224 #elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__bsdi__) |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
958
diff
changeset
|
225 ioctl(0,TIOCSETA,&tio_new); |
958
162a78d3cc08
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
1
diff
changeset
|
226 #else |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
958
diff
changeset
|
227 ioctl(0,TCSETS,&tio_new); |
958
162a78d3cc08
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
1
diff
changeset
|
228 #endif |
3009 | 229 #endif |
1632 | 230 getch2_status=1; |
1 | 231 } |
232 | |
233 void getch2_disable(){ | |
1632 | 234 if(!getch2_status) return; // already disabled / never enabled |
3009 | 235 #ifdef HAVE_TERMIOS |
1433 | 236 #if defined(__NetBSD__) || defined(__svr4__) || defined(__CYGWIN__) |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
958
diff
changeset
|
237 tcsetattr(0,TCSANOW,&tio_orig); |
2089 | 238 #elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__bsdi__) |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
958
diff
changeset
|
239 ioctl(0,TIOCSETA,&tio_orig); |
958
162a78d3cc08
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
1
diff
changeset
|
240 #else |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
958
diff
changeset
|
241 ioctl(0,TCSETS,&tio_orig); |
958
162a78d3cc08
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
1
diff
changeset
|
242 #endif |
3009 | 243 #endif |
1632 | 244 getch2_status=0; |
1 | 245 } |
246 |