Use double instead of float for pts.
[mplayer/glamo.git] / gui / cfg.c
blob3d54f7aad77ef528993f80130ce47046e0f6d033
1 /*
2 * This file is part of MPlayer.
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.
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.
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.
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <string.h>
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"
30 #include "get_path.h"
31 #include "libvo/sub.h"
32 #include "libvo/video_out.h"
33 #include "stream/stream.h"
34 #include "libmpdemux/demuxer.h"
35 #include "libass/ass_mp.h"
37 #include "cfg.h"
38 #include "app.h"
39 #include "interface.h"
40 #include "mplayer/play.h"
42 // --- params
44 int gtkEnableAudioEqualizer = 0;
46 int gtkVfPP = 0;
47 #ifdef CONFIG_LIBAVCODEC
48 int gtkVfLAVC = 0;
49 #endif
51 int gtkAONorm = 0;
52 int gtkAOSurround = 0;
53 int gtkAOExtraStereo = 0;
54 float gtkAOExtraStereoMul = 1.0;
55 #ifdef CONFIG_OSS_AUDIO
56 char * gtkAOOSSMixer;
57 char * gtkAOOSSMixerChannel;
58 char * gtkAOOSSDevice;
59 #endif
60 #ifdef CONFIG_ALSA
61 char * gtkAOALSAMixer;
62 char * gtkAOALSAMixerChannel;
63 char * gtkAOALSADevice;
64 #endif
65 #ifdef CONFIG_SDL
66 char * gtkAOSDLDriver;
67 #endif
68 #ifdef CONFIG_ESD
69 char * gtkAOESDDevice;
70 #endif
72 int gtkCacheOn = 0;
73 int gtkCacheSize = 2048;
75 int gtkAutoSyncOn = 0;
76 int gtkAutoSync = 0;
78 #ifdef CONFIG_DXR3
79 char * gtkDXR3Device;
80 #endif
82 int gtkSubDumpMPSub = 0;
83 int gtkSubDumpSrt = 0;
85 int gtkLoadFullscreen = 0;
86 int gtkShowVideoWindow = 1;
87 int gtkEnablePlayBar = 1;
89 int gui_save_pos = 1;
90 int gui_main_pos_x = -2;
91 int gui_main_pos_y = -2;
92 int gui_sub_pos_x = -1;
93 int gui_sub_pos_y = -1;
95 #ifdef CONFIG_ASS
96 gtkASS_t gtkASS;
97 #endif
98 // ---
100 extern int stop_xscreensaver;
101 extern int disable_gui_conf;
102 int m_config_parse_config_file(m_config_t* config, char *conffile);
104 static m_config_t * gui_conf;
105 static const m_option_t gui_opts[] =
107 { "enable_audio_equ",&gtkEnableAudioEqualizer,CONF_TYPE_FLAG,0,0,1,NULL },
109 { "vo_driver",&video_driver_list,CONF_TYPE_STRING_LIST,0,0,0,NULL },
110 { "vo_panscan",&vo_panscan,CONF_TYPE_FLOAT,CONF_RANGE,0.0,1.0,NULL },
111 { "vo_doublebuffering",&vo_doublebuffering,CONF_TYPE_FLAG,0,0,1,NULL },
112 { "vo_direct_render",&vo_directrendering,CONF_TYPE_FLAG,0,0,1,NULL },
113 #ifdef CONFIG_DXR3
114 { "vo_dxr3_device",&gtkDXR3Device,CONF_TYPE_STRING,0,0,0,NULL },
115 #endif
117 { "v_framedrop",&frame_dropping,CONF_TYPE_INT,CONF_RANGE,0,2,NULL },
118 { "v_flip",&flip,CONF_TYPE_INT,CONF_RANGE,-1,1,NULL },
119 { "v_ni",&force_ni,CONF_TYPE_FLAG,0,0,1,NULL },
120 { "v_idx",&index_mode,CONF_TYPE_INT,CONF_RANGE,-1,2,NULL },
121 { "v_vfm",&video_fm_list,CONF_TYPE_STRING_LIST,0,0,0,NULL },
122 { "a_afm",&audio_fm_list,CONF_TYPE_STRING_LIST,0,0,0,NULL },
124 { "vf_pp",&gtkVfPP,CONF_TYPE_FLAG,0,0,1,NULL },
125 { "vf_autoq",&auto_quality,CONF_TYPE_INT,CONF_RANGE,0,100,NULL },
126 #ifdef CONFIG_LIBAVCODEC
127 { "vf_lavc",&gtkVfLAVC,CONF_TYPE_FLAG,0,0,1,NULL },
128 #endif
130 { "ao_driver",&audio_driver_list,CONF_TYPE_STRING_LIST,0,0,0,NULL },
131 { "ao_volnorm",&gtkAONorm,CONF_TYPE_FLAG,0,0,1,NULL },
132 { "softvol",&soft_vol,CONF_TYPE_FLAG,0,0,1,NULL },
133 { "ao_surround",&gtkAOSurround,CONF_TYPE_FLAG,0,0,1,NULL },
134 { "ao_extra_stereo",&gtkAOExtraStereo,CONF_TYPE_FLAG,0,0,1,NULL },
135 { "ao_extra_stereo_coefficient",&gtkAOExtraStereoMul,CONF_TYPE_FLOAT,CONF_RANGE,-10,10,NULL },
136 #ifdef CONFIG_OSS_AUDIO
137 { "ao_oss_mixer",&gtkAOOSSMixer,CONF_TYPE_STRING,0,0,0,NULL },
138 { "ao_oss_mixer_channel",&gtkAOOSSMixerChannel,CONF_TYPE_STRING,0,0,0,NULL },
139 { "ao_oss_device",&gtkAOOSSDevice,CONF_TYPE_STRING,0,0,0,NULL },
140 #endif
141 #ifdef CONFIG_ALSA
142 { "ao_alsa_mixer",&gtkAOALSAMixer,CONF_TYPE_STRING,0,0,0,NULL },
143 { "ao_alsa_mixer_channel",&gtkAOALSAMixerChannel,CONF_TYPE_STRING,0,0,0,NULL },
144 { "ao_alsa_device",&gtkAOALSADevice,CONF_TYPE_STRING,0,0,0,NULL },
145 #endif
146 #ifdef CONFIG_SDL
147 { "ao_sdl_subdriver",&gtkAOSDLDriver,CONF_TYPE_STRING,0,0,0,NULL },
148 #endif
149 #ifdef CONFIG_ESD
150 { "ao_esd_device",&gtkAOESDDevice,CONF_TYPE_STRING,0,0,0,NULL },
151 #endif
153 { "dvd_device",&dvd_device,CONF_TYPE_STRING,0,0,0,NULL },
154 { "cdrom_device",&cdrom_device,CONF_TYPE_STRING,0,0,0,NULL },
156 { "osd_level",&osd_level,CONF_TYPE_INT,CONF_RANGE,0,3,NULL },
157 { "sub_auto_load",&sub_auto,CONF_TYPE_FLAG,0,0,1,NULL },
158 { "sub_unicode",&sub_unicode,CONF_TYPE_FLAG,0,0,1,NULL },
159 #ifdef CONFIG_ASS
160 { "ass_enabled",&ass_enabled,CONF_TYPE_FLAG,0,0,1,NULL },
161 { "ass_use_margins",&ass_use_margins,CONF_TYPE_FLAG,0,0,1,NULL },
162 { "ass_top_margin",&ass_top_margin,CONF_TYPE_INT,CONF_RANGE,0,512,NULL },
163 { "ass_bottom_margin",&ass_bottom_margin,CONF_TYPE_INT,CONF_RANGE,0,512,NULL },
164 #endif
165 { "sub_pos",&sub_pos,CONF_TYPE_INT,CONF_RANGE,0,200,NULL },
166 { "sub_overlap",&suboverlap_enabled,CONF_TYPE_FLAG,0,0,0,NULL },
167 #ifdef CONFIG_ICONV
168 { "sub_cp",&sub_cp,CONF_TYPE_STRING,0,0,0,NULL },
169 #endif
170 { "font_factor",&font_factor,CONF_TYPE_FLOAT,CONF_RANGE,0.0,10.0,NULL },
171 { "font_name",&font_name,CONF_TYPE_STRING,0,0,0,NULL },
172 #ifdef CONFIG_FREETYPE
173 { "font_encoding",&subtitle_font_encoding,CONF_TYPE_STRING,0,0,0,NULL },
174 { "font_text_scale",&text_font_scale_factor,CONF_TYPE_FLOAT,CONF_RANGE,0,100,NULL },
175 { "font_osd_scale",&osd_font_scale_factor,CONF_TYPE_FLOAT,CONF_RANGE,0,100,NULL },
176 { "font_blur",&subtitle_font_radius,CONF_TYPE_FLOAT,CONF_RANGE,0,8,NULL },
177 { "font_outline",&subtitle_font_thickness,CONF_TYPE_FLOAT,CONF_RANGE,0,8,NULL },
178 { "font_autoscale",&subtitle_autoscale,CONF_TYPE_INT,CONF_RANGE,0,3,NULL },
179 #endif
181 { "cache",&gtkCacheOn,CONF_TYPE_FLAG,0,0,1,NULL },
182 { "cache_size",&gtkCacheSize,CONF_TYPE_INT,CONF_RANGE,-1,65535,NULL },
184 { "playbar",&gtkEnablePlayBar,CONF_TYPE_FLAG,0,0,1,NULL },
185 { "load_fullscreen",&gtkLoadFullscreen,CONF_TYPE_FLAG,0,0,1,NULL },
186 { "show_videowin", &gtkShowVideoWindow,CONF_TYPE_FLAG,0,0,1,NULL },
187 { "stopxscreensaver",&stop_xscreensaver,CONF_TYPE_FLAG,0,0,1,NULL },
189 { "autosync",&gtkAutoSyncOn,CONF_TYPE_FLAG,0,0,1,NULL },
190 { "autosync_size",&gtkAutoSync,CONF_TYPE_INT,CONF_RANGE,0,10000,NULL },
192 { "gui_skin",&skinName,CONF_TYPE_STRING,0,0,0,NULL },
194 { "gui_save_pos", &gui_save_pos, CONF_TYPE_FLAG,0,0,1,NULL},
195 { "gui_main_pos_x", &gui_main_pos_x, CONF_TYPE_INT,0,0,0,NULL},
196 { "gui_main_pos_y", &gui_main_pos_y, CONF_TYPE_INT,0,0,0,NULL},
197 { "gui_video_out_pos_x", &gui_sub_pos_x, CONF_TYPE_INT,0,0,0,NULL},
198 { "gui_video_out_pos_y", &gui_sub_pos_y, CONF_TYPE_INT,0,0,0,NULL},
200 { "equ_channel_1",&gtkEquChannel1,CONF_TYPE_STRING,0,0,0,NULL },
201 { "equ_channel_2",&gtkEquChannel2,CONF_TYPE_STRING,0,0,0,NULL },
202 { "equ_channel_3",&gtkEquChannel3,CONF_TYPE_STRING,0,0,0,NULL },
203 { "equ_channel_4",&gtkEquChannel4,CONF_TYPE_STRING,0,0,0,NULL },
204 { "equ_channel_5",&gtkEquChannel5,CONF_TYPE_STRING,0,0,0,NULL },
205 { "equ_channel_6",&gtkEquChannel6,CONF_TYPE_STRING,0,0,0,NULL },
207 #if 1
208 #define audio_equ_row( i,j ) { "equ_band_"#i#j,&gtkEquChannels[i][j],CONF_TYPE_FLOAT,CONF_RANGE,-15.0,15.0,NULL },
209 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 )
210 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 )
211 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 )
212 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 )
213 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 )
214 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 )
215 #undef audio_equ_row
216 #endif
218 { NULL, NULL, 0, 0, 0, 0, NULL }
221 char * gfgets( char * str, int size, FILE * f )
223 char * s = fgets( str,size,f );
224 char c;
225 if ( s )
227 c=s[ strlen( s ) - 1 ]; if ( c == '\n' || c == '\r' ) s[ strlen( s ) - 1 ]=0;
228 c=s[ strlen( s ) - 1 ]; if ( c == '\n' || c == '\r' ) s[ strlen( s ) - 1 ]=0;
230 return s;
233 int cfg_read( void )
235 char * cfg = get_path( "gui.conf" );
236 FILE * f;
238 // -- read configuration
239 mp_msg( MSGT_GPLAYER,MSGL_V,"[cfg] reading config file: %s\n",cfg );
240 gui_conf=m_config_new();
241 m_config_register_options( gui_conf,gui_opts );
242 if ( !disable_gui_conf && m_config_parse_config_file( gui_conf,cfg ) < 0 )
244 mp_msg( MSGT_GPLAYER,MSGL_FATAL,MSGTR_ConfigFileError );
245 // exit( 1 );
247 free( cfg );
249 // -- read pl
250 cfg=get_path( "gui.pl" );
251 if ( (f=fopen( cfg,"rt" )) )
253 while ( !feof( f ) )
255 char tmp[512]; plItem * item;
256 if ( gfgets( tmp,512,f ) == NULL ) continue;
257 item=calloc( 1,sizeof( plItem ) );
258 item->path=strdup( tmp );
259 gfgets( tmp,512,f );
260 item->name=strdup( tmp );
261 gtkSet( gtkAddPlItem,0,(void*)item );
263 fclose( f );
265 free( cfg );
267 //-- read previously visited urls
268 cfg=get_path( "gui.url" );
269 if ( (f=fopen( cfg,"rt" )) )
271 while ( !feof( f ) )
273 char tmp[512]; URLItem * item;
274 if ( gfgets( tmp,512,f ) == NULL ) continue;
275 item=calloc( 1,sizeof( URLItem ) );
276 item->url=strdup( tmp );
277 gtkSet( gtkAddURLItem,0,(void*)item );
279 fclose( f );
281 free( cfg );
283 // -- reade file loader history
284 cfg=get_path( "gui.history" );
285 if ( (f=fopen( cfg,"rt+" )) )
287 int i = 0;
288 while ( !feof( f ) )
290 char tmp[512];
291 if ( gfgets( tmp,512,f ) == NULL ) continue;
292 fsHistory[i++]=gstrdup( tmp );
294 fclose( f );
296 free( cfg );
298 return 0;
301 int cfg_write( void )
303 char * cfg = get_path( "gui.conf" );
304 FILE * f;
305 int i;
307 // -- save configuration
308 if ( (f=fopen( cfg,"wt+" )) )
310 for ( i=0;gui_opts[i].name;i++ )
312 char* v = m_option_print(&gui_opts[i],gui_opts[i].p);
313 if(v == (char *)-1) {
314 mp_msg(MSGT_GPLAYER,MSGL_WARN,MSGTR_UnableToSaveOption, gui_opts[i].name);
315 v = NULL;
317 if(v) {
318 fprintf( f,"%s = \"%s\"\n",gui_opts[i].name, v);
319 free(v);
322 fclose( f );
324 free( cfg );
326 // -- save playlist
327 cfg=get_path( "gui.pl" );
328 if ( (f=fopen( cfg,"wt+" )) )
330 plCurrent=plList;
331 while ( plCurrent )
333 if ( plCurrent->path && plCurrent->name )
335 fprintf( f,"%s\n",plCurrent->path );
336 fprintf( f,"%s\n",plCurrent->name );
338 plCurrent=plCurrent->next;
340 fclose( f );
342 free( cfg );
344 // -- save URL's
345 cfg=get_path( "gui.url" );
346 if ( (f=fopen( cfg,"wt+" )) )
348 while ( URLList )
350 if ( URLList->url ) fprintf( f,"%s\n",URLList->url );
351 URLList=URLList->next;
353 fclose( f );
355 free( cfg );
357 // -- save file loader history
358 cfg=get_path( "gui.history" );
359 if ( (f=fopen( cfg,"wt+" )) )
361 int i = 0;
362 // while ( fsHistory[i] != NULL )
363 for ( i=0;i < 5; i++)
364 if( fsHistory[i] ) fprintf( f,"%s\n",fsHistory[i] );
365 fclose( f );
367 free( cfg );
369 return 0;