Mercurial > mplayer.hg
annotate gui/cfg.c @ 26737:a26e50cae389
Use standard license headers with standard formatting.
author | diego |
---|---|
date | Wed, 14 May 2008 17:20:42 +0000 |
parents | b0a7b35b78d2 |
children | e7c989f7a7c9 |
rev | line source |
---|---|
26458 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
23077 | 18 |
19 #include <stdlib.h> | |
20 #include <stdio.h> | |
21 #include <string.h> | |
22 | |
23 #include "config.h" | |
24 #include "mp_msg.h" | |
25 #include "help_mp.h" | |
26 #include "mixer.h" | |
27 #include "mplayer.h" | |
28 #include "m_config.h" | |
29 #include "m_option.h" | |
24242
76f5d8892c04
Clean up the way get_path is handled: Compile get_path.c to an object to link
diego
parents:
24153
diff
changeset
|
30 #include "get_path.h" |
24149
35fcce39b121
Remove redundant extern variable declarations, include proper headers instead.
diego
parents:
23795
diff
changeset
|
31 #include "libvo/sub.h" |
23077 | 32 #include "libvo/video_out.h" |
24149
35fcce39b121
Remove redundant extern variable declarations, include proper headers instead.
diego
parents:
23795
diff
changeset
|
33 #include "stream/stream.h" |
35fcce39b121
Remove redundant extern variable declarations, include proper headers instead.
diego
parents:
23795
diff
changeset
|
34 #include "libmpdemux/demuxer.h" |
24153
0bbfebce0583
Remove redundant extern declarations, #include the right headers instead.
diego
parents:
24149
diff
changeset
|
35 #include "libass/ass.h" |
0bbfebce0583
Remove redundant extern declarations, #include the right headers instead.
diego
parents:
24149
diff
changeset
|
36 #include "libass/ass_mp.h" |
23077 | 37 |
38 #include "cfg.h" | |
39 #include "app.h" | |
40 #include "interface.h" | |
41 #include "mplayer/play.h" | |
42 | |
43 // --- params | |
44 | |
45 int gtkEnableAudioEqualizer = 0; | |
46 | |
47 int gtkVfPP = 0; | |
48 #ifdef USE_LIBAVCODEC | |
49 int gtkVfLAVC = 0; | |
50 #endif | |
51 | |
52 int gtkAONorm = 0; | |
53 int gtkAOSurround = 0; | |
54 int gtkAOExtraStereo = 0; | |
55 float gtkAOExtraStereoMul = 1.0; | |
56 #ifdef USE_OSS_AUDIO | |
57 char * gtkAOOSSMixer; | |
58 char * gtkAOOSSMixerChannel; | |
59 char * gtkAOOSSDevice; | |
60 #endif | |
61 #if defined(HAVE_ALSA9) || defined (HAVE_ALSA1X) | |
62 char * gtkAOALSAMixer; | |
63 char * gtkAOALSAMixerChannel; | |
64 char * gtkAOALSADevice; | |
65 #endif | |
66 #ifdef HAVE_SDL | |
67 char * gtkAOSDLDriver; | |
68 #endif | |
69 #ifdef USE_ESD | |
70 char * gtkAOESDDevice; | |
71 #endif | |
72 | |
73 int gtkCacheOn = 0; | |
74 int gtkCacheSize = 2048; | |
75 | |
76 int gtkAutoSyncOn = 0; | |
77 int gtkAutoSync = 0; | |
78 | |
79 #ifdef HAVE_DXR3 | |
80 char * gtkDXR3Device; | |
81 #endif | |
82 | |
83 int gtkSubDumpMPSub = 0; | |
84 int gtkSubDumpSrt = 0; | |
85 | |
86 int gtkLoadFullscreen = 0; | |
87 int gtkShowVideoWindow = 1; | |
88 int gtkEnablePlayBar = 1; | |
89 | |
90 int gui_save_pos = 1; | |
91 int gui_main_pos_x = -2; | |
92 int gui_main_pos_y = -2; | |
93 int gui_sub_pos_x = -1; | |
94 int gui_sub_pos_y = -1; | |
95 | |
96 #ifdef USE_ASS | |
97 gtkASS_t gtkASS; | |
98 #endif | |
99 // --- | |
100 | |
101 extern int stop_xscreensaver; | |
102 extern int m_config_parse_config_file(m_config_t* config, char *conffile); | |
26422
f74bff77f088
noconfig fix, disable_gui_conf was not defined when compiling mencoder.
albeu
parents:
26416
diff
changeset
|
103 extern int disable_gui_conf; |
23077 | 104 |
105 static m_config_t * gui_conf; | |
25710 | 106 static const m_option_t gui_opts[] = |
23077 | 107 { |
108 { "enable_audio_equ",>kEnableAudioEqualizer,CONF_TYPE_FLAG,0,0,1,NULL }, | |
109 | |
110 { "vo_driver",&video_driver_list,CONF_TYPE_STRING_LIST,0,0,0,NULL }, | |
111 { "vo_panscan",&vo_panscan,CONF_TYPE_FLOAT,CONF_RANGE,0.0,1.0,NULL }, | |
112 { "vo_doublebuffering",&vo_doublebuffering,CONF_TYPE_FLAG,0,0,1,NULL }, | |
113 { "vo_direct_render",&vo_directrendering,CONF_TYPE_FLAG,0,0,1,NULL }, | |
114 #ifdef HAVE_DXR3 | |
115 { "vo_dxr3_device",>kDXR3Device,CONF_TYPE_STRING,0,0,0,NULL }, | |
116 #endif | |
117 | |
118 { "v_framedrop",&frame_dropping,CONF_TYPE_INT,CONF_RANGE,0,2,NULL }, | |
119 { "v_flip",&flip,CONF_TYPE_INT,CONF_RANGE,-1,1,NULL }, | |
120 { "v_ni",&force_ni,CONF_TYPE_FLAG,0,0,1,NULL }, | |
121 { "v_idx",&index_mode,CONF_TYPE_INT,CONF_RANGE,-1,2,NULL }, | |
122 { "v_vfm",&video_fm_list,CONF_TYPE_STRING_LIST,0,0,0,NULL }, | |
123 { "a_afm",&audio_fm_list,CONF_TYPE_STRING_LIST,0,0,0,NULL }, | |
124 | |
125 { "vf_pp",>kVfPP,CONF_TYPE_FLAG,0,0,1,NULL }, | |
126 { "vf_autoq",&auto_quality,CONF_TYPE_INT,CONF_RANGE,0,100,NULL }, | |
127 #ifdef USE_LIBAVCODEC | |
128 { "vf_lavc",>kVfLAVC,CONF_TYPE_FLAG,0,0,1,NULL }, | |
129 #endif | |
130 | |
131 { "ao_driver",&audio_driver_list,CONF_TYPE_STRING_LIST,0,0,0,NULL }, | |
132 { "ao_volnorm",>kAONorm,CONF_TYPE_FLAG,0,0,1,NULL }, | |
133 { "softvol",&soft_vol,CONF_TYPE_FLAG,0,0,1,NULL }, | |
134 { "ao_surround",>kAOSurround,CONF_TYPE_FLAG,0,0,1,NULL }, | |
135 { "ao_extra_stereo",>kAOExtraStereo,CONF_TYPE_FLAG,0,0,1,NULL }, | |
136 { "ao_extra_stereo_coefficient",>kAOExtraStereoMul,CONF_TYPE_FLOAT,CONF_RANGE,-10,10,NULL }, | |
137 #ifdef USE_OSS_AUDIO | |
138 { "ao_oss_mixer",>kAOOSSMixer,CONF_TYPE_STRING,0,0,0,NULL }, | |
139 { "ao_oss_mixer_channel",>kAOOSSMixerChannel,CONF_TYPE_STRING,0,0,0,NULL }, | |
140 { "ao_oss_device",>kAOOSSDevice,CONF_TYPE_STRING,0,0,0,NULL }, | |
141 #endif | |
142 #if defined(HAVE_ALSA9) || defined (HAVE_ALSA1X) | |
143 { "ao_alsa_mixer",>kAOALSAMixer,CONF_TYPE_STRING,0,0,0,NULL }, | |
144 { "ao_alsa_mixer_channel",>kAOALSAMixerChannel,CONF_TYPE_STRING,0,0,0,NULL }, | |
145 { "ao_alsa_device",>kAOALSADevice,CONF_TYPE_STRING,0,0,0,NULL }, | |
146 #endif | |
147 #ifdef HAVE_SDL | |
148 { "ao_sdl_subdriver",>kAOSDLDriver,CONF_TYPE_STRING,0,0,0,NULL }, | |
149 #endif | |
150 #ifdef USE_ESD | |
151 { "ao_esd_device",>kAOESDDevice,CONF_TYPE_STRING,0,0,0,NULL }, | |
152 #endif | |
153 | |
154 { "dvd_device",&dvd_device,CONF_TYPE_STRING,0,0,0,NULL }, | |
155 { "cdrom_device",&cdrom_device,CONF_TYPE_STRING,0,0,0,NULL }, | |
156 | |
157 { "osd_level",&osd_level,CONF_TYPE_INT,CONF_RANGE,0,3,NULL }, | |
158 { "sub_auto_load",&sub_auto,CONF_TYPE_FLAG,0,0,1,NULL }, | |
159 { "sub_unicode",&sub_unicode,CONF_TYPE_FLAG,0,0,1,NULL }, | |
160 #ifdef USE_ASS | |
161 { "ass_enabled",&ass_enabled,CONF_TYPE_FLAG,0,0,1,NULL }, | |
162 { "ass_use_margins",&ass_use_margins,CONF_TYPE_FLAG,0,0,1,NULL }, | |
163 { "ass_top_margin",&ass_top_margin,CONF_TYPE_INT,CONF_RANGE,0,512,NULL }, | |
164 { "ass_bottom_margin",&ass_bottom_margin,CONF_TYPE_INT,CONF_RANGE,0,512,NULL }, | |
165 #endif | |
166 { "sub_pos",&sub_pos,CONF_TYPE_INT,CONF_RANGE,0,200,NULL }, | |
167 { "sub_overlap",&suboverlap_enabled,CONF_TYPE_FLAG,0,0,0,NULL }, | |
168 #ifdef USE_ICONV | |
169 { "sub_cp",&sub_cp,CONF_TYPE_STRING,0,0,0,NULL }, | |
170 #endif | |
171 { "font_factor",&font_factor,CONF_TYPE_FLOAT,CONF_RANGE,0.0,10.0,NULL }, | |
172 { "font_name",&font_name,CONF_TYPE_STRING,0,0,0,NULL }, | |
173 #ifdef HAVE_FREETYPE | |
174 { "font_encoding",&subtitle_font_encoding,CONF_TYPE_STRING,0,0,0,NULL }, | |
175 { "font_text_scale",&text_font_scale_factor,CONF_TYPE_FLOAT,CONF_RANGE,0,100,NULL }, | |
176 { "font_osd_scale",&osd_font_scale_factor,CONF_TYPE_FLOAT,CONF_RANGE,0,100,NULL }, | |
177 { "font_blur",&subtitle_font_radius,CONF_TYPE_FLOAT,CONF_RANGE,0,8,NULL }, | |
178 { "font_outline",&subtitle_font_thickness,CONF_TYPE_FLOAT,CONF_RANGE,0,8,NULL }, | |
179 { "font_autoscale",&subtitle_autoscale,CONF_TYPE_INT,CONF_RANGE,0,3,NULL }, | |
180 #endif | |
181 | |
182 { "cache",>kCacheOn,CONF_TYPE_FLAG,0,0,1,NULL }, | |
183 { "cache_size",>kCacheSize,CONF_TYPE_INT,CONF_RANGE,-1,65535,NULL }, | |
184 | |
185 { "playbar",>kEnablePlayBar,CONF_TYPE_FLAG,0,0,1,NULL }, | |
186 { "load_fullscreen",>kLoadFullscreen,CONF_TYPE_FLAG,0,0,1,NULL }, | |
187 { "show_videowin", >kShowVideoWindow,CONF_TYPE_FLAG,0,0,1,NULL }, | |
188 { "stopxscreensaver",&stop_xscreensaver,CONF_TYPE_FLAG,0,0,1,NULL }, | |
189 | |
190 { "autosync",>kAutoSyncOn,CONF_TYPE_FLAG,0,0,1,NULL }, | |
191 { "autosync_size",>kAutoSync,CONF_TYPE_INT,CONF_RANGE,0,10000,NULL }, | |
192 | |
193 { "gui_skin",&skinName,CONF_TYPE_STRING,0,0,0,NULL }, | |
194 | |
195 { "gui_save_pos", &gui_save_pos, CONF_TYPE_FLAG,0,0,1,NULL}, | |
196 { "gui_main_pos_x", &gui_main_pos_x, CONF_TYPE_INT,0,0,0,NULL}, | |
197 { "gui_main_pos_y", &gui_main_pos_y, CONF_TYPE_INT,0,0,0,NULL}, | |
198 { "gui_video_out_pos_x", &gui_sub_pos_x, CONF_TYPE_INT,0,0,0,NULL}, | |
199 { "gui_video_out_pos_y", &gui_sub_pos_y, CONF_TYPE_INT,0,0,0,NULL}, | |
200 | |
201 { "equ_channel_1",>kEquChannel1,CONF_TYPE_STRING,0,0,0,NULL }, | |
202 { "equ_channel_2",>kEquChannel2,CONF_TYPE_STRING,0,0,0,NULL }, | |
203 { "equ_channel_3",>kEquChannel3,CONF_TYPE_STRING,0,0,0,NULL }, | |
204 { "equ_channel_4",>kEquChannel4,CONF_TYPE_STRING,0,0,0,NULL }, | |
205 { "equ_channel_5",>kEquChannel5,CONF_TYPE_STRING,0,0,0,NULL }, | |
206 { "equ_channel_6",>kEquChannel6,CONF_TYPE_STRING,0,0,0,NULL }, | |
207 | |
208 #if 1 | |
209 #define audio_equ_row( i,j ) { "equ_band_"#i#j,>kEquChannels[i][j],CONF_TYPE_FLOAT,CONF_RANGE,-15.0,15.0,NULL }, | |
210 audio_equ_row( 0,0 ) audio_equ_row( 0,1 ) audio_equ_row( 0,2 ) audio_equ_row( 0,3 ) audio_equ_row( 0,4 ) audio_equ_row( 0,5 ) audio_equ_row( 0,6 ) audio_equ_row( 0,7 ) audio_equ_row( 0,8 ) audio_equ_row( 0,9 ) | |
211 audio_equ_row( 1,0 ) audio_equ_row( 1,1 ) audio_equ_row( 1,2 ) audio_equ_row( 1,3 ) audio_equ_row( 1,4 ) audio_equ_row( 1,5 ) audio_equ_row( 1,6 ) audio_equ_row( 1,7 ) audio_equ_row( 1,8 ) audio_equ_row( 1,9 ) | |
212 audio_equ_row( 2,0 ) audio_equ_row( 2,1 ) audio_equ_row( 2,2 ) audio_equ_row( 2,3 ) audio_equ_row( 2,4 ) audio_equ_row( 2,5 ) audio_equ_row( 2,6 ) audio_equ_row( 2,7 ) audio_equ_row( 2,8 ) audio_equ_row( 2,9 ) | |
213 audio_equ_row( 3,0 ) audio_equ_row( 3,1 ) audio_equ_row( 3,2 ) audio_equ_row( 3,3 ) audio_equ_row( 3,4 ) audio_equ_row( 3,5 ) audio_equ_row( 3,6 ) audio_equ_row( 3,7 ) audio_equ_row( 3,8 ) audio_equ_row( 3,9 ) | |
214 audio_equ_row( 4,0 ) audio_equ_row( 4,1 ) audio_equ_row( 4,2 ) audio_equ_row( 4,3 ) audio_equ_row( 4,4 ) audio_equ_row( 4,5 ) audio_equ_row( 4,6 ) audio_equ_row( 4,7 ) audio_equ_row( 4,8 ) audio_equ_row( 4,9 ) | |
215 audio_equ_row( 5,0 ) audio_equ_row( 5,1 ) audio_equ_row( 5,2 ) audio_equ_row( 5,3 ) audio_equ_row( 5,4 ) audio_equ_row( 5,5 ) audio_equ_row( 5,6 ) audio_equ_row( 5,7 ) audio_equ_row( 5,8 ) audio_equ_row( 5,9 ) | |
216 #undef audio_equ_row | |
217 #endif | |
218 | |
219 { NULL, NULL, 0, 0, 0, 0, NULL } | |
220 }; | |
221 | |
222 char * gfgets( char * str, int size, FILE * f ) | |
223 { | |
224 char * s = fgets( str,size,f ); | |
225 char c; | |
226 if ( s ) | |
227 { | |
228 c=s[ strlen( s ) - 1 ]; if ( c == '\n' || c == '\r' ) s[ strlen( s ) - 1 ]=0; | |
229 c=s[ strlen( s ) - 1 ]; if ( c == '\n' || c == '\r' ) s[ strlen( s ) - 1 ]=0; | |
230 } | |
231 return s; | |
232 } | |
233 | |
234 int cfg_read( void ) | |
235 { | |
236 char * cfg = get_path( "gui.conf" ); | |
237 FILE * f; | |
238 | |
239 // -- read configuration | |
240 mp_msg( MSGT_GPLAYER,MSGL_V,"[cfg] reading config file: %s\n",cfg ); | |
241 gui_conf=m_config_new(); | |
242 m_config_register_options( gui_conf,gui_opts ); | |
26416 | 243 if ( !disable_gui_conf && m_config_parse_config_file( gui_conf,cfg ) < 0 ) |
23077 | 244 { |
245 mp_msg( MSGT_GPLAYER,MSGL_FATAL,MSGTR_ConfigFileError ); | |
246 // exit( 1 ); | |
247 } | |
248 free( cfg ); | |
249 | |
250 // -- read pl | |
251 cfg=get_path( "gui.pl" ); | |
252 if ( (f=fopen( cfg,"rt" )) ) | |
253 { | |
254 while ( !feof( f ) ) | |
255 { | |
256 char tmp[512]; plItem * item; | |
257 if ( gfgets( tmp,512,f ) == NULL ) continue; | |
258 item=calloc( 1,sizeof( plItem ) ); | |
259 item->path=strdup( tmp ); | |
260 gfgets( tmp,512,f ); | |
261 item->name=strdup( tmp ); | |
262 gtkSet( gtkAddPlItem,0,(void*)item ); | |
263 } | |
264 fclose( f ); | |
265 } | |
266 free( cfg ); | |
267 | |
268 //-- read previously visited urls | |
269 cfg=get_path( "gui.url" ); | |
270 if ( (f=fopen( cfg,"rt" )) ) | |
271 { | |
272 while ( !feof( f ) ) | |
273 { | |
274 char tmp[512]; URLItem * item; | |
275 if ( gfgets( tmp,512,f ) == NULL ) continue; | |
276 item=calloc( 1,sizeof( URLItem ) ); | |
277 item->url=strdup( tmp ); | |
278 gtkSet( gtkAddURLItem,0,(void*)item ); | |
279 } | |
280 fclose( f ); | |
281 } | |
282 free( cfg ); | |
283 | |
284 // -- reade file loader history | |
285 cfg=get_path( "gui.history" ); | |
286 if ( (f=fopen( cfg,"rt+" )) ) | |
287 { | |
288 int i = 0; | |
289 while ( !feof( f ) ) | |
290 { | |
291 char tmp[512]; | |
292 if ( gfgets( tmp,512,f ) == NULL ) continue; | |
293 fsHistory[i++]=gstrdup( tmp ); | |
294 } | |
295 fclose( f ); | |
296 } | |
297 free( cfg ); | |
298 | |
299 return 0; | |
300 } | |
301 | |
302 int cfg_write( void ) | |
303 { | |
304 char * cfg = get_path( "gui.conf" ); | |
305 FILE * f; | |
306 int i; | |
307 | |
308 // -- save configuration | |
309 if ( (f=fopen( cfg,"wt+" )) ) | |
310 { | |
311 for ( i=0;gui_opts[i].name;i++ ) | |
312 { | |
313 char* v = m_option_print(&gui_opts[i],gui_opts[i].p); | |
25711
25b40c769b06
Fix 100l: error check for m_option_print was unreachable
reimar
parents:
25710
diff
changeset
|
314 if(v == (char *)-1) { |
25b40c769b06
Fix 100l: error check for m_option_print was unreachable
reimar
parents:
25710
diff
changeset
|
315 mp_msg(MSGT_GPLAYER,MSGL_WARN,MSGTR_UnableToSaveOption, gui_opts[i].name); |
25b40c769b06
Fix 100l: error check for m_option_print was unreachable
reimar
parents:
25710
diff
changeset
|
316 v = NULL; |
25b40c769b06
Fix 100l: error check for m_option_print was unreachable
reimar
parents:
25710
diff
changeset
|
317 } |
23077 | 318 if(v) { |
319 fprintf( f,"%s = \"%s\"\n",gui_opts[i].name, v); | |
320 free(v); | |
25711
25b40c769b06
Fix 100l: error check for m_option_print was unreachable
reimar
parents:
25710
diff
changeset
|
321 } |
23077 | 322 } |
323 fclose( f ); | |
324 } | |
325 free( cfg ); | |
326 | |
327 // -- save playlist | |
328 cfg=get_path( "gui.pl" ); | |
329 if ( (f=fopen( cfg,"wt+" )) ) | |
330 { | |
331 plCurrent=plList; | |
332 while ( plCurrent ) | |
333 { | |
334 if ( plCurrent->path && plCurrent->name ) | |
335 { | |
336 fprintf( f,"%s\n",plCurrent->path ); | |
337 fprintf( f,"%s\n",plCurrent->name ); | |
338 } | |
339 plCurrent=plCurrent->next; | |
340 } | |
341 fclose( f ); | |
342 } | |
343 free( cfg ); | |
344 | |
345 // -- save URL's | |
346 cfg=get_path( "gui.url" ); | |
347 if ( (f=fopen( cfg,"wt+" )) ) | |
348 { | |
349 while ( URLList ) | |
350 { | |
351 if ( URLList->url ) fprintf( f,"%s\n",URLList->url ); | |
352 URLList=URLList->next; | |
353 } | |
354 fclose( f ); | |
355 } | |
356 free( cfg ); | |
357 | |
358 // -- save file loader history | |
359 cfg=get_path( "gui.history" ); | |
360 if ( (f=fopen( cfg,"wt+" )) ) | |
361 { | |
362 int i = 0; | |
363 // while ( fsHistory[i] != NULL ) | |
364 for ( i=0;i < 5; i++) | |
365 if( fsHistory[i] ) fprintf( f,"%s\n",fsHistory[i] ); | |
366 fclose( f ); | |
367 } | |
368 free( cfg ); | |
369 | |
370 return 0; | |
371 } | |
372 |