]> git.sesse.net Git - vlc/blob - modules/misc/osd/osd_menu.c
Another bunch of useless test.
[vlc] / modules / misc / osd / osd_menu.c
1 /*****************************************************************************
2  * parser.c : OSD import module
3  *****************************************************************************
4  * Copyright (C) 2007 M2X
5  * $Id$
6  *
7  * Authors: Jean-Paul Saman
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/vlc.h>
33 #include <vlc_vout.h>
34 #include <vlc_config.h>
35
36 #include <vlc_keys.h>
37 #include <vlc_image.h>
38 #include <vlc_osd.h>
39 #include <vlc_charset.h>
40
41 #include "osd_menu.h"
42
43 #undef OSD_MENU_DEBUG
44
45 /*****************************************************************************
46  * Local prototypes
47  *****************************************************************************/
48
49 /*****************************************************************************
50  * Create a new Menu structure
51  *****************************************************************************/
52 osd_menu_t *osd_MenuNew( osd_menu_t *p_menu, const char *psz_path,
53                          int i_x, int i_y )
54 {
55     if( !p_menu ) return NULL;
56
57     p_menu->p_state = (osd_menu_state_t *) malloc( sizeof( osd_menu_state_t ) );
58     if( !p_menu->p_state )
59     {
60         msg_Err( p_menu, "Memory allocation for OSD Menu state failed" );
61         return NULL;
62     }
63
64     memset(p_menu->p_state, 0, sizeof(osd_menu_state_t));
65     if( psz_path != NULL )
66         p_menu->psz_path = strdup( psz_path );
67     else
68         p_menu->psz_path = NULL;
69
70     p_menu->i_x = i_x;
71     p_menu->i_y = i_y;
72     p_menu->i_style = OSD_MENU_STYLE_SIMPLE;
73
74     return p_menu;
75 }
76
77 /*****************************************************************************
78  * Free the menu
79  *****************************************************************************/
80 void osd_MenuFree( osd_menu_t *p_menu )
81 {
82     msg_Dbg( p_menu, "freeing menu" );
83     osd_ButtonFree( p_menu, p_menu->p_button );
84
85     free( p_menu->psz_path );
86     free( p_menu->p_state );
87
88     p_menu->p_button = NULL;
89     p_menu->p_last_button = NULL;
90     p_menu->psz_path = NULL;
91     p_menu->p_state = NULL;
92 }
93
94 /*****************************************************************************
95  * Create a new button
96  *****************************************************************************/
97 osd_button_t *osd_ButtonNew( const char *psz_action, int i_x, int i_y )
98 {
99     osd_button_t *p_button = NULL;
100     p_button = (osd_button_t*) malloc( sizeof(osd_button_t) );
101     if( !p_button )
102         return NULL;
103
104     memset( p_button, 0, sizeof(osd_button_t) );
105     p_button->psz_action = strdup(psz_action);
106     p_button->psz_action_down = NULL;
107     p_button->p_feedback = NULL;
108     p_button->i_x = i_x;
109     p_button->i_y = i_y;
110
111     return p_button;
112 }
113
114 /*****************************************************************************
115  * Free a button
116  *****************************************************************************/
117 void osd_ButtonFree( osd_menu_t *p_menu, osd_button_t *p_button )
118 {
119     osd_button_t *p_current = p_button;
120     osd_button_t *p_next = NULL;
121     osd_button_t *p_prev = NULL;
122
123     /* First walk to the end. */
124     while( p_current->p_next )
125     {
126         p_next = p_current->p_next;
127         p_current = p_next;
128     }
129     /* Then free end first and walk to the start. */
130     while( p_current->p_prev )
131     {
132         msg_Dbg( p_menu, "+ freeing button %s [%p]",
133                  p_current->psz_action, p_current );
134         p_prev = p_current->p_prev;
135         p_current = p_prev;
136         if( p_current->p_next )
137         {
138             free( p_current->p_next->psz_name );
139             free( p_current->p_next->psz_action );
140             free( p_current->p_next->psz_action_down );
141             if( p_current->p_feedback )
142             {
143                 free( p_current->p_feedback->p_data_orig );
144                 free( p_current->p_feedback );
145                 p_current->p_feedback = NULL;
146             }
147
148             /* Free all states first */
149             if( p_current->p_next->p_states )
150                 osd_StatesFree( p_menu, p_current->p_next->p_states );
151
152             free( p_current->p_next );
153             p_current->p_next = NULL;
154         }
155
156         if( p_current->p_up )
157         {
158             free( p_current->p_up->psz_name );
159             free( p_current->p_up->psz_action );
160             free( p_current->p_up->psz_action_down );
161             if( p_current->p_feedback )
162             {
163                 free( p_current->p_feedback->p_data_orig );
164                 free( p_current->p_feedback );
165             }
166
167             p_current->p_feedback = NULL;
168
169             /* Free all states first */
170             if( p_current->p_up->p_states )
171                 osd_StatesFree( p_menu, p_current->p_up->p_states );
172             free( p_current->p_up );
173             p_current->p_up = NULL;
174         }
175     }
176     /* Free the last one. */
177     if( p_button )
178     {
179         msg_Dbg( p_menu, "+ freeing button %s [%p]",
180                  p_button->psz_action, p_button );
181         free( p_button->psz_name );
182         free( p_button->psz_action );
183         free( p_button->psz_action_down );
184         if( p_current->p_feedback )
185         {
186             free( p_current->p_feedback->p_data_orig );
187             free( p_current->p_feedback );
188             p_current->p_feedback = NULL;
189         }
190
191         if( p_button->p_states )
192             osd_StatesFree( p_menu, p_button->p_states );
193
194         free( p_button );
195         p_button = NULL;
196     }
197 }
198
199 /*****************************************************************************
200  * Create a new state image
201  *****************************************************************************/
202 osd_state_t *osd_StateNew( osd_menu_t *p_menu, const char *psz_file,
203                            const char *psz_state )
204 {
205     osd_state_t *p_state = NULL;
206     video_format_t fmt_in, fmt_out;
207
208     p_state = (osd_state_t*) malloc( sizeof(osd_state_t) );
209     if( !p_state )
210         return NULL;
211
212     memset( p_state, 0, sizeof(osd_state_t) );
213     memset( &fmt_in, 0, sizeof(video_format_t) );
214     memset( &fmt_out, 0, sizeof(video_format_t) );
215
216     fmt_out.i_chroma = VLC_FOURCC('Y','U','V','A');
217     if( p_menu->p_image )
218     {
219         p_state->p_pic = image_ReadUrl( p_menu->p_image, psz_file,
220                                         &fmt_in, &fmt_out );
221
222         p_state->i_width  = p_state->p_pic->p[Y_PLANE].i_visible_pitch;
223         p_state->i_height = p_state->p_pic->p[Y_PLANE].i_visible_lines;
224     }
225
226     if( psz_state )
227     {
228         p_state->psz_state = strdup( psz_state );
229         if( strncmp( ppsz_button_states[0], psz_state,
230                      strlen(ppsz_button_states[0]) ) == 0 )
231             p_state->i_state = OSD_BUTTON_UNSELECT;
232         else if( strncmp( ppsz_button_states[1], psz_state,
233                           strlen(ppsz_button_states[1]) ) == 0 )
234             p_state->i_state = OSD_BUTTON_SELECT;
235         else if( strncmp( ppsz_button_states[2], psz_state,
236                           strlen(ppsz_button_states[2]) ) == 0 )
237             p_state->i_state = OSD_BUTTON_PRESSED;
238     }
239     return p_state;
240 }
241
242 /*****************************************************************************
243  * Free state images
244  *****************************************************************************/
245 void osd_StatesFree( osd_menu_t *p_menu, osd_state_t *p_states )
246 {
247     osd_state_t *p_state = p_states;
248     osd_state_t *p_next = NULL;
249     osd_state_t *p_prev = NULL;
250
251     while( p_state->p_next )
252     {
253         p_next = p_state->p_next;
254         p_state = p_next;
255     }
256     /* Then free end first and walk to the start. */
257     while( p_state->p_prev )
258     {
259         msg_Dbg( p_menu, " |- freeing state %s [%p]",
260                  p_state->psz_state, p_state );
261         p_prev = p_state->p_prev;
262         p_state = p_prev;
263         if( p_state->p_next )
264         {
265             if( p_state->p_next->p_pic )
266             {
267                 free( p_state->p_next->p_pic->p_data_orig );
268                 free( p_state->p_next->p_pic );
269             }
270             free( p_state->p_next->psz_state );
271             free( p_state->p_next );
272             p_state->p_next = NULL;
273         }
274     }
275     /* Free the last one. */
276     if( p_states )
277     {
278         msg_Dbg( p_menu, " |- freeing state %s [%p]",
279                  p_state->psz_state, p_states );
280         if( p_states->p_pic )
281         {
282             free( p_states->p_pic->p_data_orig );
283             free( p_states->p_pic );
284         }
285         free( p_state->psz_state );
286         free( p_states );
287         p_states = NULL;
288     }
289 }