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