Mercurial > mplayer.hg
annotate libmenu/menu.c @ 25237:963cd0542cec
Fix playback of streams with more than one video track (only one supported).
author | cehoyos |
---|---|
date | Sun, 02 Dec 2007 18:04:14 +0000 |
parents | 1b3dabc8c2b8 |
children | 96d0992c7920 |
rev | line source |
---|---|
8197 | 1 |
16862 | 2 #include "config.h" |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
3 #include "mp_msg.h" |
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
4 #include "help_mp.h" |
8197 | 5 |
6 #include <stdlib.h> | |
7 #include <stdio.h> | |
8 #include <string.h> | |
8604
41a1e5dbb552
This patch fixes the reading of the menu.conf, because stream_open()
arpi
parents:
8251
diff
changeset
|
9 #include <fcntl.h> |
41a1e5dbb552
This patch fixes the reading of the menu.conf, because stream_open()
arpi
parents:
8251
diff
changeset
|
10 #include <unistd.h> |
8197 | 11 |
16862 | 12 #include "libvo/osd.h" |
13 #include "libvo/font_load.h" | |
23232
c5ac43d53bb1
use already existing function to get utf8 char in libmenu (thx to reimar)
ben
parents:
23231
diff
changeset
|
14 #include "libvo/sub.h" |
16862 | 15 #include "osdep/keycodes.h" |
16 #include "asxparser.h" | |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
18194
diff
changeset
|
17 #include "stream/stream.h" |
8197 | 18 |
19431
ac69ba536915
Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.
diego
parents:
19271
diff
changeset
|
19 #include "libmpcodecs/img_format.h" |
ac69ba536915
Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.
diego
parents:
19271
diff
changeset
|
20 #include "libmpcodecs/mp_image.h" |
16862 | 21 #include "m_option.h" |
22 #include "m_struct.h" | |
8197 | 23 #include "menu.h" |
24 | |
25 extern menu_info_t menu_info_cmdlist; | |
26 extern menu_info_t menu_info_pt; | |
27 extern menu_info_t menu_info_filesel; | |
28 extern menu_info_t menu_info_txt; | |
29 extern menu_info_t menu_info_console; | |
30 extern menu_info_t menu_info_pref; | |
10626
fd97f3727f15
Finnaly commit Nico's dvb menu. Sorry for committing this
albeu
parents:
10397
diff
changeset
|
31 #ifdef HAS_DVBIN_SUPPORT |
fd97f3727f15
Finnaly commit Nico's dvb menu. Sorry for committing this
albeu
parents:
10397
diff
changeset
|
32 extern menu_info_t menu_info_dvbsel; |
fd97f3727f15
Finnaly commit Nico's dvb menu. Sorry for committing this
albeu
parents:
10397
diff
changeset
|
33 #endif |
fd97f3727f15
Finnaly commit Nico's dvb menu. Sorry for committing this
albeu
parents:
10397
diff
changeset
|
34 |
8197 | 35 |
36 menu_info_t* menu_info_list[] = { | |
37 &menu_info_pt, | |
38 &menu_info_cmdlist, | |
39 &menu_info_filesel, | |
40 &menu_info_txt, | |
41 &menu_info_console, | |
10626
fd97f3727f15
Finnaly commit Nico's dvb menu. Sorry for committing this
albeu
parents:
10397
diff
changeset
|
42 #ifdef HAS_DVBIN_SUPPORT |
fd97f3727f15
Finnaly commit Nico's dvb menu. Sorry for committing this
albeu
parents:
10397
diff
changeset
|
43 &menu_info_dvbsel, |
fd97f3727f15
Finnaly commit Nico's dvb menu. Sorry for committing this
albeu
parents:
10397
diff
changeset
|
44 #endif |
8197 | 45 &menu_info_pref, |
46 NULL | |
47 }; | |
48 | |
25208
1b3dabc8c2b8
Add type info to menu_t, now we can get the menu name and the type name of menu.
ulion
parents:
24940
diff
changeset
|
49 struct menu_def_st { |
8197 | 50 char* name; |
51 menu_info_t* type; | |
52 void* cfg; | |
53 char* args; | |
25208
1b3dabc8c2b8
Add type info to menu_t, now we can get the menu name and the type name of menu.
ulion
parents:
24940
diff
changeset
|
54 }; |
8197 | 55 |
22284 | 56 static struct MPContext *menu_ctx = NULL; |
8197 | 57 static menu_def_t* menu_list = NULL; |
21797
14061bc22cb3
fix gprof support (aka work around gprof's brain dead design)
gpoirier
parents:
20507
diff
changeset
|
58 static int menu_count = 0; |
8197 | 59 |
60 | |
61 static int menu_parse_config(char* buffer) { | |
62 char *element,*body, **attribs, *name; | |
63 menu_info_t* minfo = NULL; | |
64 int r,i; | |
65 ASX_Parser_t* parser = asx_parser_new(); | |
66 | |
67 while(1) { | |
68 r = asx_get_element(parser,&buffer,&element,&body,&attribs); | |
69 if(r < 0) { | |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
70 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_SyntaxErrorAtLine,parser->line); |
8197 | 71 asx_parser_free(parser); |
72 return 0; | |
73 } else if(r == 0) { | |
74 asx_parser_free(parser); | |
75 return 1; | |
76 } | |
77 // Has it a name ? | |
78 name = asx_get_attrib("name",attribs); | |
79 if(!name) { | |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
80 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_MenuDefinitionsNeedANameAttrib,parser->line); |
8197 | 81 free(element); |
82 if(body) free(body); | |
83 asx_free_attribs(attribs); | |
84 continue; | |
85 } | |
86 | |
87 // Try to find this menu type in our list | |
88 for(i = 0, minfo = NULL ; menu_info_list[i] ; i++) { | |
89 if(strcasecmp(element,menu_info_list[i]->name) == 0) { | |
90 minfo = menu_info_list[i]; | |
91 break; | |
92 } | |
93 } | |
94 // Got it : add this to our list | |
95 if(minfo) { | |
21797
14061bc22cb3
fix gprof support (aka work around gprof's brain dead design)
gpoirier
parents:
20507
diff
changeset
|
96 menu_list = realloc(menu_list,(menu_count+2)*sizeof(menu_def_t)); |
14061bc22cb3
fix gprof support (aka work around gprof's brain dead design)
gpoirier
parents:
20507
diff
changeset
|
97 menu_list[menu_count].name = name; |
14061bc22cb3
fix gprof support (aka work around gprof's brain dead design)
gpoirier
parents:
20507
diff
changeset
|
98 menu_list[menu_count].type = minfo; |
14061bc22cb3
fix gprof support (aka work around gprof's brain dead design)
gpoirier
parents:
20507
diff
changeset
|
99 menu_list[menu_count].cfg = m_struct_alloc(&minfo->priv_st); |
14061bc22cb3
fix gprof support (aka work around gprof's brain dead design)
gpoirier
parents:
20507
diff
changeset
|
100 menu_list[menu_count].args = body; |
8197 | 101 // Setup the attribs |
102 for(i = 0 ; attribs[2*i] ; i++) { | |
103 if(strcasecmp(attribs[2*i],"name") == 0) continue; | |
21797
14061bc22cb3
fix gprof support (aka work around gprof's brain dead design)
gpoirier
parents:
20507
diff
changeset
|
104 if(!m_struct_set(&minfo->priv_st,menu_list[menu_count].cfg,attribs[2*i], attribs[2*i+1])) |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
105 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_BadAttrib,attribs[2*i],attribs[2*i+1], |
8197 | 106 name,parser->line); |
107 } | |
21797
14061bc22cb3
fix gprof support (aka work around gprof's brain dead design)
gpoirier
parents:
20507
diff
changeset
|
108 menu_count++; |
14061bc22cb3
fix gprof support (aka work around gprof's brain dead design)
gpoirier
parents:
20507
diff
changeset
|
109 memset(&menu_list[menu_count],0,sizeof(menu_def_t)); |
8197 | 110 } else { |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
111 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_UnknownMenuType,element,parser->line); |
8197 | 112 free(name); |
113 if(body) free(body); | |
114 } | |
115 | |
116 free(element); | |
117 asx_free_attribs(attribs); | |
118 } | |
119 | |
120 } | |
121 | |
122 | |
123 /// This will build the menu_defs list from the cfg file | |
124 #define BUF_STEP 1024 | |
125 #define BUF_MIN 128 | |
126 #define BUF_MAX BUF_STEP*1024 | |
22284 | 127 int menu_init(struct MPContext *mpctx, char* cfg_file) { |
8197 | 128 char* buffer = NULL; |
129 int bl = BUF_STEP, br = 0; | |
9103
6c2c74adaebe
mplayer crashes if one tries to use osd menu without having a font
arpi
parents:
8604
diff
changeset
|
130 int f, fd; |
9212
24b102dbd0fe
Fixes a problem where the menu won't work, if you just use freetype fonts
arpi
parents:
9103
diff
changeset
|
131 #ifndef HAVE_FREETYPE |
9103
6c2c74adaebe
mplayer crashes if one tries to use osd menu without having a font
arpi
parents:
8604
diff
changeset
|
132 if(vo_font == NULL) |
6c2c74adaebe
mplayer crashes if one tries to use osd menu without having a font
arpi
parents:
8604
diff
changeset
|
133 return 0; |
9212
24b102dbd0fe
Fixes a problem where the menu won't work, if you just use freetype fonts
arpi
parents:
9103
diff
changeset
|
134 #endif |
9103
6c2c74adaebe
mplayer crashes if one tries to use osd menu without having a font
arpi
parents:
8604
diff
changeset
|
135 fd = open(cfg_file, O_RDONLY); |
8604
41a1e5dbb552
This patch fixes the reading of the menu.conf, because stream_open()
arpi
parents:
8251
diff
changeset
|
136 if(fd < 0) { |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
137 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_CantOpenConfigFile,cfg_file); |
8197 | 138 return 0; |
139 } | |
140 buffer = malloc(bl); | |
141 while(1) { | |
142 int r; | |
143 if(bl - br < BUF_MIN) { | |
144 if(bl >= BUF_MAX) { | |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
145 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_ConfigFileIsTooBig,BUF_MAX/1024); |
8604
41a1e5dbb552
This patch fixes the reading of the menu.conf, because stream_open()
arpi
parents:
8251
diff
changeset
|
146 close(fd); |
8197 | 147 free(buffer); |
148 return 0; | |
149 } | |
150 bl += BUF_STEP; | |
151 buffer = realloc(buffer,bl); | |
152 } | |
8604
41a1e5dbb552
This patch fixes the reading of the menu.conf, because stream_open()
arpi
parents:
8251
diff
changeset
|
153 r = read(fd,buffer+br,bl-br); |
8197 | 154 if(r == 0) break; |
155 br += r; | |
156 } | |
157 if(!br) { | |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
158 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_ConfigFileIsEmpty); |
8197 | 159 return 0; |
160 } | |
161 buffer[br-1] = '\0'; | |
162 | |
8604
41a1e5dbb552
This patch fixes the reading of the menu.conf, because stream_open()
arpi
parents:
8251
diff
changeset
|
163 close(fd); |
41a1e5dbb552
This patch fixes the reading of the menu.conf, because stream_open()
arpi
parents:
8251
diff
changeset
|
164 |
22284 | 165 menu_ctx = mpctx; |
8197 | 166 f = menu_parse_config(buffer); |
167 free(buffer); | |
168 return f; | |
169 } | |
170 | |
171 // Destroy all this stuff | |
172 void menu_unint(void) { | |
173 int i; | |
174 for(i = 0 ; menu_list && menu_list[i].name ; i++) { | |
175 free(menu_list[i].name); | |
176 m_struct_free(&menu_list[i].type->priv_st,menu_list[i].cfg); | |
177 if(menu_list[i].args) free(menu_list[i].args); | |
178 } | |
179 free(menu_list); | |
21797
14061bc22cb3
fix gprof support (aka work around gprof's brain dead design)
gpoirier
parents:
20507
diff
changeset
|
180 menu_count = 0; |
8197 | 181 } |
182 | |
183 /// Default read_key function | |
184 void menu_dflt_read_key(menu_t* menu,int cmd) { | |
185 switch(cmd) { | |
186 case KEY_UP: | |
187 menu->read_cmd(menu,MENU_CMD_UP); | |
188 break; | |
189 case KEY_DOWN: | |
190 menu->read_cmd(menu,MENU_CMD_DOWN); | |
191 break; | |
192 case KEY_LEFT: | |
17945
98f4e3704a76
Allow 6 ways (up/down/left/right/ok/cancel) navigation.
albeu
parents:
16862
diff
changeset
|
193 menu->read_cmd(menu,MENU_CMD_LEFT); |
98f4e3704a76
Allow 6 ways (up/down/left/right/ok/cancel) navigation.
albeu
parents:
16862
diff
changeset
|
194 break; |
8197 | 195 case KEY_ESC: |
196 menu->read_cmd(menu,MENU_CMD_CANCEL); | |
197 break; | |
198 case KEY_RIGHT: | |
17945
98f4e3704a76
Allow 6 ways (up/down/left/right/ok/cancel) navigation.
albeu
parents:
16862
diff
changeset
|
199 menu->read_cmd(menu,MENU_CMD_RIGHT); |
98f4e3704a76
Allow 6 ways (up/down/left/right/ok/cancel) navigation.
albeu
parents:
16862
diff
changeset
|
200 break; |
8197 | 201 case KEY_ENTER: |
202 menu->read_cmd(menu,MENU_CMD_OK); | |
203 break; | |
204 } | |
205 } | |
206 | |
207 menu_t* menu_open(char *name) { | |
208 menu_t* m; | |
209 int i; | |
210 | |
211 for(i = 0 ; menu_list[i].name != NULL ; i++) { | |
212 if(strcmp(name,menu_list[i].name) == 0) | |
213 break; | |
214 } | |
215 if(menu_list[i].name == NULL) { | |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
216 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_MenuNotFound,name); |
8197 | 217 return NULL; |
218 } | |
219 m = calloc(1,sizeof(menu_t)); | |
220 m->priv_st = &(menu_list[i].type->priv_st); | |
221 m->priv = m_struct_copy(m->priv_st,menu_list[i].cfg); | |
22284 | 222 m->ctx = menu_ctx; |
25208
1b3dabc8c2b8
Add type info to menu_t, now we can get the menu name and the type name of menu.
ulion
parents:
24940
diff
changeset
|
223 m->type = &menu_list[i]; |
8197 | 224 if(menu_list[i].type->open(m,menu_list[i].args)) |
225 return m; | |
226 if(m->priv) | |
227 m_struct_free(m->priv_st,m->priv); | |
228 free(m); | |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
229 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_MenuInitFailed,name); |
8197 | 230 return NULL; |
231 } | |
232 | |
233 void menu_draw(menu_t* menu,mp_image_t* mpi) { | |
234 if(menu->show && menu->draw) | |
235 menu->draw(menu,mpi); | |
236 } | |
237 | |
238 void menu_read_cmd(menu_t* menu,int cmd) { | |
239 if(menu->read_cmd) | |
240 menu->read_cmd(menu,cmd); | |
241 } | |
242 | |
243 void menu_close(menu_t* menu) { | |
244 if(menu->close) | |
245 menu->close(menu); | |
246 if(menu->priv) | |
247 m_struct_free(menu->priv_st,menu->priv); | |
248 free(menu); | |
249 } | |
250 | |
251 void menu_read_key(menu_t* menu,int cmd) { | |
252 if(menu->read_key) | |
253 menu->read_key(menu,cmd); | |
254 else | |
255 menu_dflt_read_key(menu,cmd); | |
256 } | |
257 | |
258 ///////////////////////////// Helpers //////////////////////////////////// | |
259 | |
260 typedef void (*draw_alpha_f)(int w,int h, unsigned char* src, unsigned char *srca, int srcstride, unsigned char* dstbase,int dststride); | |
261 | |
262 inline static draw_alpha_f get_draw_alpha(uint32_t fmt) { | |
263 switch(fmt) { | |
264 case IMGFMT_BGR15: | |
265 case IMGFMT_RGB15: | |
266 return vo_draw_alpha_rgb15; | |
267 case IMGFMT_BGR16: | |
268 case IMGFMT_RGB16: | |
269 return vo_draw_alpha_rgb16; | |
270 case IMGFMT_BGR24: | |
271 case IMGFMT_RGB24: | |
272 return vo_draw_alpha_rgb24; | |
273 case IMGFMT_BGR32: | |
274 case IMGFMT_RGB32: | |
275 return vo_draw_alpha_rgb32; | |
276 case IMGFMT_YV12: | |
277 case IMGFMT_I420: | |
278 case IMGFMT_IYUV: | |
279 case IMGFMT_YVU9: | |
280 case IMGFMT_IF09: | |
281 case IMGFMT_Y800: | |
282 case IMGFMT_Y8: | |
283 return vo_draw_alpha_yv12; | |
284 case IMGFMT_YUY2: | |
285 return vo_draw_alpha_yuy2; | |
18194 | 286 case IMGFMT_UYVY: |
287 return vo_draw_alpha_uyvy; | |
8197 | 288 } |
289 | |
290 return NULL; | |
291 } | |
292 | |
8224
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
293 // return the real height of a char: |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
294 static inline int get_height(int c,int h){ |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
295 int font; |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
296 if ((font=vo_font->font[c])>=0) |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
297 if(h<vo_font->pic_a[font]->h) h=vo_font->pic_a[font]->h; |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
298 return h; |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
299 } |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
300 |
23227
a142b048c65e
support for unicode/utf8 in libmenu (geexbox patch #545)
ben
parents:
22284
diff
changeset
|
301 static void render_txt(char *txt) |
a142b048c65e
support for unicode/utf8 in libmenu (geexbox patch #545)
ben
parents:
22284
diff
changeset
|
302 { |
a142b048c65e
support for unicode/utf8 in libmenu (geexbox patch #545)
ben
parents:
22284
diff
changeset
|
303 while (*txt) { |
24940 | 304 int c = utf8_get_char((const char**)&txt); |
23227
a142b048c65e
support for unicode/utf8 in libmenu (geexbox patch #545)
ben
parents:
22284
diff
changeset
|
305 render_one_glyph(vo_font, c); |
a142b048c65e
support for unicode/utf8 in libmenu (geexbox patch #545)
ben
parents:
22284
diff
changeset
|
306 } |
a142b048c65e
support for unicode/utf8 in libmenu (geexbox patch #545)
ben
parents:
22284
diff
changeset
|
307 } |
8197 | 308 |
23228
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
309 #ifdef USE_FRIBIDI |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
310 #include <fribidi/fribidi.h> |
23231 | 311 #include "libavutil/common.h" |
23238 | 312 char *menu_fribidi_charset = NULL; |
313 int menu_flip_hebrew = 0; | |
314 int menu_fribidi_flip_commas = 0; | |
23228
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
315 |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
316 static char *menu_fribidi(char *txt) |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
317 { |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
318 static int char_set_num = -1; |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
319 static FriBidiChar *logical, *visual; |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
320 static size_t buffer_size = 1024; |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
321 static char *outputstr; |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
322 |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
323 FriBidiCharType base; |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
324 fribidi_boolean log2vis; |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
325 size_t len; |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
326 |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
327 if (menu_flip_hebrew) { |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
328 len = strlen(txt); |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
329 if (char_set_num == -1) { |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
330 fribidi_set_mirroring (1); |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
331 fribidi_set_reorder_nsm (0); |
23337
10a7279b8e56
get rid of -menu-utf8 and -menu-unicode once for all, patch by Guillaume Lecerf
ben
parents:
23238
diff
changeset
|
332 char_set_num = fribidi_parse_charset("UTF-8"); |
23231 | 333 buffer_size = FFMAX(1024,len+1); |
23230 | 334 logical = malloc(buffer_size); |
335 visual = malloc(buffer_size); | |
336 outputstr = malloc(buffer_size); | |
23228
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
337 } else if (len+1 > buffer_size) { |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
338 buffer_size = len+1; |
23230 | 339 logical = realloc(logical, buffer_size); |
340 visual = realloc(visual, buffer_size); | |
341 outputstr = realloc(outputstr, buffer_size); | |
23228
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
342 } |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
343 len = fribidi_charset_to_unicode (char_set_num, txt, len, logical); |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
344 base = menu_fribidi_flip_commas?FRIBIDI_TYPE_ON:FRIBIDI_TYPE_L; |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
345 log2vis = fribidi_log2vis (logical, len, &base, visual, NULL, NULL, NULL); |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
346 if (log2vis) { |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
347 len = fribidi_remove_bidi_marks (visual, len, NULL, NULL, NULL); |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
348 fribidi_unicode_to_charset (char_set_num, visual, len, outputstr); |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
349 return outputstr; |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
350 } |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
351 } |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
352 return txt; |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
353 } |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
354 #endif |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
355 |
8197 | 356 void menu_draw_text(mp_image_t* mpi,char* txt, int x, int y) { |
357 draw_alpha_f draw_alpha = get_draw_alpha(mpi->imgfmt); | |
358 int font; | |
359 | |
360 if(!draw_alpha) { | |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
361 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_UnsupportedOutformat); |
8197 | 362 return; |
363 } | |
364 | |
23228
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
365 #ifdef USE_FRIBIDI |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
366 txt = menu_fribidi(txt); |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
367 #endif |
8224
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
368 render_txt(txt); |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
369 |
8197 | 370 while (*txt) { |
24940 | 371 int c=utf8_get_char((const char**)&txt); |
8197 | 372 if ((font=vo_font->font[c])>=0 && (x + vo_font->width[c] <= mpi->w) && (y + vo_font->pic_a[font]->h <= mpi->h)) |
373 draw_alpha(vo_font->width[c], vo_font->pic_a[font]->h, | |
374 vo_font->pic_b[font]->bmp+vo_font->start[c], | |
375 vo_font->pic_a[font]->bmp+vo_font->start[c], | |
376 vo_font->pic_a[font]->w, | |
377 mpi->planes[0] + y * mpi->stride[0] + x * (mpi->bpp>>3), | |
378 mpi->stride[0]); | |
379 x+=vo_font->width[c]+vo_font->charspace; | |
380 } | |
381 | |
382 } | |
383 | |
384 void menu_draw_text_full(mp_image_t* mpi,char* txt, | |
385 int x, int y,int w, int h, | |
386 int vspace, int warp, int align, int anchor) { | |
387 int need_w,need_h; | |
388 int sy, ymin, ymax; | |
389 int sx, xmin, xmax, xmid, xrmin; | |
390 int ll = 0; | |
391 int font; | |
392 draw_alpha_f draw_alpha = get_draw_alpha(mpi->imgfmt); | |
393 | |
394 if(!draw_alpha) { | |
17994
6927fabaef92
Part1 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu
reynaldo
parents:
17993
diff
changeset
|
395 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_UnsupportedOutformat); |
8197 | 396 return; |
397 } | |
398 | |
23228
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
399 #ifdef USE_FRIBIDI |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
400 txt = menu_fribidi(txt); |
2e95dcd49946
support for hebrew through fribidi in libmenu (geexbox patch #580)
ben
parents:
23227
diff
changeset
|
401 #endif |
8224
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
402 render_txt(txt); |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
403 |
8197 | 404 if(x > mpi->w || y > mpi->h) |
405 return; | |
406 | |
407 if(anchor & MENU_TEXT_VCENTER) { | |
408 if(h <= 0) h = mpi->h; | |
409 ymin = y - h/2; | |
410 ymax = y + h/2; | |
411 } else if(anchor & MENU_TEXT_BOT) { | |
412 if(h <= 0) h = mpi->h - y; | |
413 ymin = y - h; | |
414 ymax = y; | |
415 } else { | |
416 if(h <= 0) h = mpi->h - y; | |
417 ymin = y; | |
418 ymax = y + h; | |
419 } | |
420 | |
421 if(anchor & MENU_TEXT_HCENTER) { | |
422 if(w <= 0) w = mpi->w; | |
423 xmin = x - w/2; | |
424 xmax = x + w/2; | |
425 } else if(anchor & MENU_TEXT_RIGHT) { | |
426 if(w <= 0) w = mpi->w -x; | |
427 xmin = x - w; | |
428 xmax = x; | |
429 } else { | |
430 if(w <= 0) w = mpi->w -x; | |
431 xmin = x; | |
432 xmax = x + w; | |
433 } | |
434 | |
435 // How many space do we need to draw this ? | |
436 menu_text_size(txt,w,vspace,warp,&need_w,&need_h); | |
437 | |
438 // Find the first line | |
439 if(align & MENU_TEXT_VCENTER) | |
440 sy = ymin + ((h - need_h)/2); | |
441 else if(align & MENU_TEXT_BOT) | |
8232 | 442 sy = ymax - need_h - 1; |
8197 | 443 else |
444 sy = y; | |
445 | |
446 #if 0 | |
447 // Find the first col | |
448 if(align & MENU_TEXT_HCENTER) | |
449 sx = xmin + ((w - need_w)/2); | |
450 else if(align & MENU_TEXT_RIGHT) | |
451 sx = xmax - need_w; | |
452 #endif | |
453 | |
454 xmid = xmin + (xmax - xmin) / 2; | |
455 xrmin = xmin; | |
456 // Clamp the bb to the mpi size | |
457 if(ymin < 0) ymin = 0; | |
458 if(xmin < 0) xmin = 0; | |
459 if(ymax > mpi->h) ymax = mpi->h; | |
460 if(xmax > mpi->w) xmax = mpi->w; | |
461 | |
462 // Jump some the beginnig text if needed | |
463 while(sy < ymin && *txt) { | |
24940 | 464 int c=utf8_get_char((const char**)&txt); |
8197 | 465 if(c == '\n' || (warp && ll + vo_font->width[c] > w)) { |
466 ll = 0; | |
467 sy += vo_font->height + vspace; | |
468 if(c == '\n') continue; | |
469 } | |
470 ll += vo_font->width[c]+vo_font->charspace; | |
471 } | |
472 if(*txt == '\0') // Nothing left to draw | |
473 return; | |
474 | |
475 while(sy < ymax && *txt) { | |
476 char* line_end = NULL; | |
477 int n; | |
478 | |
479 if(txt[0] == '\n') { // New line | |
480 sy += vo_font->height + vspace; | |
481 txt++; | |
482 continue; | |
483 } | |
484 | |
485 // Get the length and end of this line | |
486 for(n = 0, ll = 0 ; txt[n] != '\0' && txt[n] != '\n' ; n++) { | |
487 unsigned char c = txt[n]; | |
488 if(warp && ll + vo_font->width[c] > w) break; | |
489 ll += vo_font->width[c]+vo_font->charspace; | |
490 } | |
491 line_end = &txt[n]; | |
492 ll -= vo_font->charspace; | |
493 | |
494 | |
495 if(align & (MENU_TEXT_HCENTER|MENU_TEXT_RIGHT)) { | |
496 // Too long line | |
497 if(ll > xmax-xmin) { | |
498 if(align & MENU_TEXT_HCENTER) { | |
499 int mid = ll/2; | |
500 // Find the middle point | |
501 for(n--, ll = 0 ; n <= 0 ; n--) { | |
502 ll += vo_font->width[(int)txt[n]]+vo_font->charspace; | |
503 if(ll - vo_font->charspace > mid) break; | |
504 } | |
505 ll -= vo_font->charspace; | |
506 sx = xmid + mid - ll; | |
507 } else// MENU_TEXT_RIGHT) | |
508 sx = xmax + vo_font->charspace; | |
509 | |
510 // We are after the start point -> go back | |
511 if(sx > xmin) { | |
512 for(n-- ; n <= 0 ; n--) { | |
513 unsigned char c = txt[n]; | |
514 if(sx - vo_font->width[c] - vo_font->charspace < xmin) break; | |
515 sx -= vo_font->width[c]+vo_font->charspace; | |
516 } | |
517 } else { // We are before the start point -> go forward | |
518 for( ; sx < xmin && (&txt[n]) != line_end ; n++) { | |
519 unsigned char c = txt[n]; | |
520 sx += vo_font->width[c]+vo_font->charspace; | |
521 } | |
522 } | |
523 txt = &txt[n]; // Jump to the new start char | |
524 } else { | |
525 if(align & MENU_TEXT_HCENTER) | |
526 sx = xmid - ll/2; | |
527 else | |
8232 | 528 sx = xmax - 1 - ll; |
8197 | 529 } |
530 } else { | |
531 for(sx = xrmin ; sx < xmin && txt != line_end ; txt++) { | |
532 unsigned char c = txt[n]; | |
533 sx += vo_font->width[c]+vo_font->charspace; | |
534 } | |
535 } | |
536 | |
537 while(sx < xmax && txt != line_end) { | |
24940 | 538 int c=utf8_get_char((const char**)&txt); |
8197 | 539 font = vo_font->font[c]; |
8232 | 540 if(font >= 0) { |
541 int cs = (vo_font->pic_a[font]->h - vo_font->height) / 2; | |
542 if ((sx + vo_font->width[c] < xmax) && (sy + vo_font->height < ymax) ) | |
543 draw_alpha(vo_font->width[c], vo_font->height, | |
544 vo_font->pic_b[font]->bmp+vo_font->start[c] + | |
545 cs * vo_font->pic_a[font]->w, | |
546 vo_font->pic_a[font]->bmp+vo_font->start[c] + | |
547 cs * vo_font->pic_a[font]->w, | |
548 vo_font->pic_a[font]->w, | |
549 mpi->planes[0] + sy * mpi->stride[0] + sx * (mpi->bpp>>3), | |
550 mpi->stride[0]); | |
551 // else | |
552 //printf("Can't draw '%c'\n",c); | |
553 } | |
8197 | 554 sx+=vo_font->width[c]+vo_font->charspace; |
555 } | |
556 txt = line_end; | |
557 if(txt[0] == '\0') break; | |
558 sy += vo_font->height + vspace; | |
559 } | |
560 } | |
561 | |
562 int menu_text_length(char* txt) { | |
563 int l = 0; | |
8224
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
564 render_txt(txt); |
8197 | 565 while (*txt) { |
24940 | 566 int c=utf8_get_char((const char**)&txt); |
8197 | 567 l += vo_font->width[c]+vo_font->charspace; |
568 } | |
569 return l - vo_font->charspace; | |
570 } | |
571 | |
572 void menu_text_size(char* txt,int max_width, int vspace, int warp, int* _w, int* _h) { | |
573 int l = 1, i = 0; | |
574 int w = 0; | |
8224
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
575 |
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
576 render_txt(txt); |
8197 | 577 while (*txt) { |
24940 | 578 int c=utf8_get_char((const char**)&txt); |
8197 | 579 if(c == '\n' || (warp && i + vo_font->width[c] >= max_width)) { |
580 if(*txt) | |
581 l++; | |
582 i = 0; | |
583 if(c == '\n') continue; | |
584 } | |
585 i += vo_font->width[c]+vo_font->charspace; | |
586 if(i > w) w = i; | |
587 } | |
588 | |
589 *_w = w; | |
590 *_h = (l-1) * (vo_font->height + vspace) + vo_font->height; | |
591 } | |
592 | |
593 | |
594 int menu_text_num_lines(char* txt, int max_width) { | |
595 int l = 1, i = 0; | |
8224
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
596 render_txt(txt); |
8197 | 597 while (*txt) { |
24940 | 598 int c=utf8_get_char((const char**)&txt); |
8197 | 599 if(c == '\n' || i + vo_font->width[c] > max_width) { |
600 l++; | |
601 i = 0; | |
602 if(c == '\n') continue; | |
603 } | |
604 i += vo_font->width[c]+vo_font->charspace; | |
605 } | |
606 return l; | |
607 } | |
608 | |
609 char* menu_text_get_next_line(char* txt, int max_width) { | |
610 int i = 0; | |
8224
fefc56153615
Fix freetype. Freetype is highly recommended for a nice output ;)
albeu
parents:
8197
diff
changeset
|
611 render_txt(txt); |
8197 | 612 while (*txt) { |
24940 | 613 int c=utf8_get_char((const char**)&txt); |
8197 | 614 if(c == '\n') { |
615 txt++; | |
616 break; | |
617 } | |
618 i += vo_font->width[c]; | |
619 if(i >= max_width) | |
620 break; | |
621 i += vo_font->charspace; | |
622 } | |
623 return txt; | |
624 } | |
17993
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
625 |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
626 |
18193 | 627 void menu_draw_box(mp_image_t* mpi,unsigned char grey,unsigned char alpha, int x, int y, int w, int h) { |
17993
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
628 draw_alpha_f draw_alpha = get_draw_alpha(mpi->imgfmt); |
18193 | 629 int g; |
17993
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
630 |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
631 if(!draw_alpha) { |
18193 | 632 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_UnsupportedOutformat); |
17993
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
633 return; |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
634 } |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
635 |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
636 if(x > mpi->w || y > mpi->h) return; |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
637 |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
638 if(x < 0) w += x, x = 0; |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
639 if(x+w > mpi->w) w = mpi->w-x; |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
640 if(y < 0) h += y, y = 0; |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
641 if(y+h > mpi->h) h = mpi->h-y; |
18193 | 642 |
643 g = ((256-alpha)*grey)>>8; | |
644 if(g < 1) g = 1; | |
645 | |
17993
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
646 { |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
647 int stride = (w+7)&(~7); // round to 8 |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
648 char pic[stride*h],pic_alpha[stride*h]; |
18193 | 649 memset(pic,g,stride*h); |
17993
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
650 memset(pic_alpha,alpha,stride*h); |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
651 draw_alpha(w,h,pic,pic_alpha,stride, |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
652 mpi->planes[0] + y * mpi->stride[0] + x * (mpi->bpp>>3), |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
653 mpi->stride[0]); |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
654 } |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
655 |
98eb966a4024
Add a function to draw flat boxes and use it to make the list
albeu
parents:
17945
diff
changeset
|
656 } |