18 #include "m_property.h"
19 #include "asxparser.h"
21 #include "libmpcodecs/mp_image.h"
24 #include "menu_list.h"
25 #include "input/input.h"
47 static struct menu_priv_s cfg_dflt
= {
55 static m_option_t cfg_fields
[] = {
56 MENU_LIST_PRIV_FIELDS
,
57 { "title", M_ST_OFF(menu_list_priv_t
,title
), CONF_TYPE_STRING
, 0, 0, 0, NULL
},
58 { "na", M_ST_OFF(struct menu_priv_s
,na
), CONF_TYPE_STRING
, 0, 0, 0, NULL
},
59 { "hide-na", M_ST_OFF(struct menu_priv_s
,hide_na
), CONF_TYPE_FLAG
, CONF_RANGE
, 0, 1, NULL
},
60 { NULL
, NULL
, NULL
, 0,0,0,NULL
}
63 #define mpriv (menu->priv)
65 static void entry_set_text(menu_t
* menu
, list_entry_t
* e
) {
66 char* val
= e
->txt
? property_expand_string(menu
->ctx
, e
->txt
) :
67 mp_property_print(e
->prop
, menu
->ctx
);
68 int l
,edit
= (mpriv
->edit
&& e
== mpriv
->p
.current
);
75 val
= strdup(mpriv
->na
);
76 } else if(mpriv
->hide_na
)
78 l
= strlen(e
->name
) + 2 + strlen(val
) + (edit
? 4 : 0) + 1;
79 if(e
->p
.txt
) free(e
->p
.txt
);
81 sprintf(e
->p
.txt
,"%s: %s%s%s",e
->name
,edit
? "> " : "",val
,edit
? " <" : "");
85 static void update_entries(menu_t
* menu
, int auto_update
) {
87 for(e
= mpriv
->p
.menu
; e
; e
= e
->p
.next
)
88 if ((e
->txt
|| e
->prop
) && (!auto_update
|| e
->auto_update
))
89 entry_set_text(menu
, e
);
92 static int parse_args(menu_t
* menu
,char* args
) {
93 char *element
,*body
, **attribs
, *name
, *txt
, *auto_update
;
94 list_entry_t
* m
= NULL
;
97 ASX_Parser_t
* parser
= asx_parser_new();
101 r
= asx_get_element(parser
,&args
,&element
,&body
,&attribs
);
103 mp_msg(MSGT_OSD_MENU
,MSGL_ERR
,MSGTR_LIBMENU_SyntaxErrorAtLine
,parser
->line
);
104 asx_parser_free(parser
);
107 asx_parser_free(parser
);
109 mp_msg(MSGT_OSD_MENU
,MSGL_WARN
,MSGTR_LIBMENU_NoEntryFoundInTheMenuDefinition
);
110 m
= calloc(1,sizeof(struct list_entry_s
));
111 m
->p
.txt
= strdup("Back");
112 menu_list_add_entry(menu
,m
);
115 if(!strcmp(element
,"menu")) {
116 name
= asx_get_attrib("menu",attribs
);
118 mp_msg(MSGT_OSD_MENU
,MSGL_WARN
,MSGTR_LIBMENU_SubmenuDefinitionNeedAMenuAttribut
);
121 m
= calloc(1,sizeof(struct list_entry_s
));
123 name
= NULL
; // we want to keep it
124 m
->p
.txt
= asx_get_attrib("name",attribs
);
125 if(!m
->p
.txt
) m
->p
.txt
= strdup(m
->menu
);
126 menu_list_add_entry(menu
,m
);
130 name
= asx_get_attrib("property",attribs
);
132 if(name
&& mp_property_do(name
,M_PROPERTY_GET_TYPE
,&opt
,menu
->ctx
) <= 0) {
133 mp_msg(MSGT_OSD_MENU
,MSGL_WARN
,MSGTR_LIBMENU_InvalidProperty
,
137 txt
= asx_get_attrib("txt",attribs
);
139 mp_msg(MSGT_OSD_MENU
,MSGL_WARN
,MSGTR_LIBMENU_PrefMenuEntryDefinitionsNeed
,parser
->line
);
140 if(txt
) free(txt
), txt
= NULL
;
143 m
= calloc(1,sizeof(struct list_entry_s
));
145 m
->txt
= txt
; txt
= NULL
;
146 m
->prop
= name
; name
= NULL
;
147 m
->name
= asx_get_attrib("name",attribs
);
148 if(!m
->name
) m
->name
= strdup(opt
? opt
->name
: "-");
149 auto_update
= asx_get_attrib("auto-update", attribs
);
151 if (!strcmp(auto_update
, "1") ||
152 !strcasecmp(auto_update
, "on") ||
153 !strcasecmp(auto_update
, "yes") ||
154 !strcasecmp(auto_update
, "true"))
158 entry_set_text(menu
,m
);
159 menu_list_add_entry(menu
,m
);
165 asx_free_attribs(attribs
);
169 static void read_cmd(menu_t
* menu
,int cmd
) {
170 list_entry_t
* e
= mpriv
->p
.current
;
175 if(!mpriv
->edit
) break;
177 if(mp_property_do(e
->prop
,M_PROPERTY_STEP_UP
,NULL
,menu
->ctx
) > 0)
178 update_entries(menu
, 0);
181 if(!mpriv
->edit
) break;
183 if(mp_property_do(e
->prop
,M_PROPERTY_STEP_DOWN
,NULL
,menu
->ctx
) > 0)
184 update_entries(menu
, 0);
188 // check that the property is writable
189 if(mp_property_do(e
->prop
,M_PROPERTY_SET
,NULL
,menu
->ctx
) < 0) return;
190 // shortcut for flags
191 if(e
->opt
->type
== CONF_TYPE_FLAG
) {
192 if(mp_property_do(e
->prop
,M_PROPERTY_STEP_UP
,NULL
,menu
->ctx
) > 0)
193 update_entries(menu
, 0);
197 mpriv
->edit
= !mpriv
->edit
;
199 update_entries(menu
, 0);
200 // switch the pointer
202 mpriv
->ptr
= mpriv
->p
.ptr
;
205 mpriv
->p
.ptr
= mpriv
->ptr
;
207 case MENU_CMD_CANCEL
:
208 if(!mpriv
->edit
) break;
210 update_entries(menu
, 0);
211 mpriv
->p
.ptr
= mpriv
->ptr
;
219 char* txt
= malloc(10 + strlen(e
->menu
) + 1);
220 sprintf(txt
,"set_menu %s",e
->menu
);
221 c
= mp_input_parse_cmd(txt
);
222 if(c
) mp_input_queue_cmd(c
);
235 menu_list_read_cmd(menu
,cmd
);
238 static void free_entry(list_entry_t
* entry
) {
240 if(entry
->name
) free(entry
->name
);
241 if(entry
->txt
) free(entry
->txt
);
242 if(entry
->prop
) free(entry
->prop
);
243 if(entry
->menu
) free(entry
->menu
);
247 static void closeMenu(menu_t
* menu
) {
248 menu_list_uninit(menu
,free_entry
);
251 static void menu_pref_draw(menu_t
* menu
, mp_image_t
* mpi
) {
252 update_entries(menu
, 1);
253 menu_list_draw(menu
, mpi
);
256 static int openMenu(menu_t
* menu
, char* args
) {
258 menu
->draw
= menu_pref_draw
;
259 menu
->read_cmd
= read_cmd
;
260 menu
->close
= closeMenu
;
264 mp_msg(MSGT_OSD_MENU
,MSGL_ERR
,MSGTR_LIBMENU_PrefMenuNeedsAnArgument
);
268 menu_list_init(menu
);
269 return parse_args(menu
,args
);
272 const menu_info_t menu_info_pref
= {
279 sizeof(struct menu_priv_s
),