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"
46 static struct menu_priv_s cfg_dflt
= {
54 static m_option_t cfg_fields
[] = {
55 MENU_LIST_PRIV_FIELDS
,
56 { "title", M_ST_OFF(menu_list_priv_t
,title
), CONF_TYPE_STRING
, 0, 0, 0, NULL
},
57 { "na", M_ST_OFF(struct menu_priv_s
,na
), CONF_TYPE_STRING
, 0, 0, 0, NULL
},
58 { "hide-na", M_ST_OFF(struct menu_priv_s
,hide_na
), CONF_TYPE_FLAG
, CONF_RANGE
, 0, 1, NULL
},
59 { NULL
, NULL
, NULL
, 0,0,0,NULL
}
62 #define mpriv (menu->priv)
64 static void entry_set_text(menu_t
* menu
, list_entry_t
* e
) {
65 char* val
= e
->txt
? property_expand_string(menu
->ctx
, e
->txt
) :
66 mp_property_print(e
->prop
, menu
->ctx
);
67 int l
,edit
= (mpriv
->edit
&& e
== mpriv
->p
.current
);
74 val
= strdup(mpriv
->na
);
75 } else if(mpriv
->hide_na
)
77 l
= strlen(e
->name
) + 2 + strlen(val
) + (edit
? 4 : 0) + 1;
78 if(e
->p
.txt
) free(e
->p
.txt
);
80 sprintf(e
->p
.txt
,"%s: %s%s%s",e
->name
,edit
? "> " : "",val
,edit
? " <" : "");
84 static void update_entries(menu_t
* menu
) {
86 for(e
= mpriv
->p
.menu
; e
; e
= e
->p
.next
)
87 if(e
->txt
|| e
->prop
) entry_set_text(menu
,e
);
90 static int parse_args(menu_t
* menu
,char* args
) {
91 char *element
,*body
, **attribs
, *name
, *txt
;
92 list_entry_t
* m
= NULL
;
95 ASX_Parser_t
* parser
= asx_parser_new();
99 r
= asx_get_element(parser
,&args
,&element
,&body
,&attribs
);
101 mp_msg(MSGT_OSD_MENU
,MSGL_ERR
,MSGTR_LIBMENU_SyntaxErrorAtLine
,parser
->line
);
102 asx_parser_free(parser
);
105 asx_parser_free(parser
);
107 mp_msg(MSGT_OSD_MENU
,MSGL_WARN
,MSGTR_LIBMENU_NoEntryFoundInTheMenuDefinition
);
108 m
= calloc(1,sizeof(struct list_entry_s
));
109 m
->p
.txt
= strdup("Back");
110 menu_list_add_entry(menu
,m
);
113 if(!strcmp(element
,"menu")) {
114 name
= asx_get_attrib("menu",attribs
);
116 mp_msg(MSGT_OSD_MENU
,MSGL_WARN
,MSGTR_LIBMENU_SubmenuDefinitionNeedAMenuAttribut
);
119 m
= calloc(1,sizeof(struct list_entry_s
));
121 name
= NULL
; // we want to keep it
122 m
->p
.txt
= asx_get_attrib("name",attribs
);
123 if(!m
->p
.txt
) m
->p
.txt
= strdup(m
->menu
);
124 menu_list_add_entry(menu
,m
);
128 name
= asx_get_attrib("property",attribs
);
130 if(name
&& mp_property_do(name
,M_PROPERTY_GET_TYPE
,&opt
,menu
->ctx
) <= 0) {
131 mp_msg(MSGT_OSD_MENU
,MSGL_WARN
,MSGTR_LIBMENU_InvalidProperty
,
135 txt
= asx_get_attrib("txt",attribs
);
137 mp_msg(MSGT_OSD_MENU
,MSGL_WARN
,MSGTR_LIBMENU_PrefMenuEntryDefinitionsNeed
,parser
->line
);
138 if(txt
) free(txt
), txt
= NULL
;
141 m
= calloc(1,sizeof(struct list_entry_s
));
143 m
->txt
= txt
; txt
= NULL
;
144 m
->prop
= name
; name
= NULL
;
145 m
->name
= asx_get_attrib("name",attribs
);
146 if(!m
->name
) m
->name
= strdup(opt
? opt
->name
: "-");
147 entry_set_text(menu
,m
);
148 menu_list_add_entry(menu
,m
);
154 asx_free_attribs(attribs
);
158 static void read_cmd(menu_t
* menu
,int cmd
) {
159 list_entry_t
* e
= mpriv
->p
.current
;
164 if(!mpriv
->edit
) break;
166 if(mp_property_do(e
->prop
,M_PROPERTY_STEP_UP
,NULL
,menu
->ctx
) > 0)
167 update_entries(menu
);
170 if(!mpriv
->edit
) break;
172 if(mp_property_do(e
->prop
,M_PROPERTY_STEP_DOWN
,NULL
,menu
->ctx
) > 0)
173 update_entries(menu
);
177 // check that the property is writable
178 if(mp_property_do(e
->prop
,M_PROPERTY_SET
,NULL
,menu
->ctx
) < 0) return;
179 // shortcut for flags
180 if(e
->opt
->type
== CONF_TYPE_FLAG
) {
181 if(mp_property_do(e
->prop
,M_PROPERTY_STEP_UP
,NULL
,menu
->ctx
) > 0)
182 update_entries(menu
);
186 mpriv
->edit
= !mpriv
->edit
;
188 update_entries(menu
);
189 // switch the pointer
191 mpriv
->ptr
= mpriv
->p
.ptr
;
194 mpriv
->p
.ptr
= mpriv
->ptr
;
196 case MENU_CMD_CANCEL
:
197 if(!mpriv
->edit
) break;
199 update_entries(menu
);
200 mpriv
->p
.ptr
= mpriv
->ptr
;
208 char* txt
= malloc(10 + strlen(e
->menu
) + 1);
209 sprintf(txt
,"set_menu %s",e
->menu
);
210 c
= mp_input_parse_cmd(txt
);
211 if(c
) mp_input_queue_cmd(c
);
224 menu_list_read_cmd(menu
,cmd
);
227 static void free_entry(list_entry_t
* entry
) {
229 if(entry
->name
) free(entry
->name
);
230 if(entry
->txt
) free(entry
->txt
);
231 if(entry
->prop
) free(entry
->prop
);
232 if(entry
->menu
) free(entry
->menu
);
236 static void closeMenu(menu_t
* menu
) {
237 menu_list_uninit(menu
,free_entry
);
240 static int openMenu(menu_t
* menu
, char* args
) {
242 menu
->draw
= menu_list_draw
;
243 menu
->read_cmd
= read_cmd
;
244 menu
->close
= closeMenu
;
248 mp_msg(MSGT_OSD_MENU
,MSGL_ERR
,MSGTR_LIBMENU_PrefMenuNeedsAnArgument
);
252 menu_list_init(menu
);
253 return parse_args(menu
,args
);
256 const menu_info_t menu_info_pref
= {
263 sizeof(struct menu_priv_s
),