Add explanatory comments to the #endif part of multiple inclusion guards.
[mplayer/greg.git] / gui / cfg.c
bloba42c92487bfc8c42c0d0d4ef5165025ff6161cb1
2 #include <stdlib.h>
3 #include <stdio.h>
4 #include <string.h>
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"
13 #include "get_path.h"
14 #include "libvo/sub.h"
15 #include "libvo/video_out.h"
16 #include "stream/stream.h"
17 #include "libmpdemux/demuxer.h"
18 #include "libass/ass.h"
19 #include "libass/ass_mp.h"
21 #include "cfg.h"
22 #include "app.h"
23 #include "interface.h"
24 #include "mplayer/play.h"
26 // --- params
28 int gtkEnableAudioEqualizer = 0;
30 int gtkVfPP = 0;
31 #ifdef USE_LIBAVCODEC
32 int gtkVfLAVC = 0;
33 #endif
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
56 int gtkCacheOn = 0;
57 int gtkCacheSize = 2048;
59 int gtkAutoSyncOn = 0;
60 int gtkAutoSync = 0;
62 #ifdef HAVE_DXR3
63 char * gtkDXR3Device;
64 #endif
66 int gtkSubDumpMPSub = 0;
67 int gtkSubDumpSrt = 0;
69 int gtkLoadFullscreen = 0;
70 int gtkShowVideoWindow = 1;
71 int gtkEnablePlayBar = 1;
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;
79 #ifdef USE_ASS
80 gtkASS_t gtkASS;
81 #endif
82 // ---
84 extern int stop_xscreensaver;
85 extern int m_config_parse_config_file(m_config_t* config, char *conffile);
87 static m_config_t * gui_conf;
88 static m_option_t gui_opts[] =
90 { "enable_audio_equ",&gtkEnableAudioEqualizer,CONF_TYPE_FLAG,0,0,1,NULL },
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",&gtkDXR3Device,CONF_TYPE_STRING,0,0,0,NULL },
98 #endif
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 },
107 { "vf_pp",&gtkVfPP,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",&gtkVfLAVC,CONF_TYPE_FLAG,0,0,1,NULL },
111 #endif
113 { "ao_driver",&audio_driver_list,CONF_TYPE_STRING_LIST,0,0,0,NULL },
114 { "ao_volnorm",&gtkAONorm,CONF_TYPE_FLAG,0,0,1,NULL },
115 { "softvol",&soft_vol,CONF_TYPE_FLAG,0,0,1,NULL },
116 { "ao_surround",&gtkAOSurround,CONF_TYPE_FLAG,0,0,1,NULL },
117 { "ao_extra_stereo",&gtkAOExtraStereo,CONF_TYPE_FLAG,0,0,1,NULL },
118 { "ao_extra_stereo_coefficient",&gtkAOExtraStereoMul,CONF_TYPE_FLOAT,CONF_RANGE,-10,10,NULL },
119 #ifdef USE_OSS_AUDIO
120 { "ao_oss_mixer",&gtkAOOSSMixer,CONF_TYPE_STRING,0,0,0,NULL },
121 { "ao_oss_mixer_channel",&gtkAOOSSMixerChannel,CONF_TYPE_STRING,0,0,0,NULL },
122 { "ao_oss_device",&gtkAOOSSDevice,CONF_TYPE_STRING,0,0,0,NULL },
123 #endif
124 #if defined(HAVE_ALSA9) || defined (HAVE_ALSA1X)
125 { "ao_alsa_mixer",&gtkAOALSAMixer,CONF_TYPE_STRING,0,0,0,NULL },
126 { "ao_alsa_mixer_channel",&gtkAOALSAMixerChannel,CONF_TYPE_STRING,0,0,0,NULL },
127 { "ao_alsa_device",&gtkAOALSADevice,CONF_TYPE_STRING,0,0,0,NULL },
128 #endif
129 #ifdef HAVE_SDL
130 { "ao_sdl_subdriver",&gtkAOSDLDriver,CONF_TYPE_STRING,0,0,0,NULL },
131 #endif
132 #ifdef USE_ESD
133 { "ao_esd_device",&gtkAOESDDevice,CONF_TYPE_STRING,0,0,0,NULL },
134 #endif
136 { "dvd_device",&dvd_device,CONF_TYPE_STRING,0,0,0,NULL },
137 { "cdrom_device",&cdrom_device,CONF_TYPE_STRING,0,0,0,NULL },
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
164 { "cache",&gtkCacheOn,CONF_TYPE_FLAG,0,0,1,NULL },
165 { "cache_size",&gtkCacheSize,CONF_TYPE_INT,CONF_RANGE,-1,65535,NULL },
167 { "playbar",&gtkEnablePlayBar,CONF_TYPE_FLAG,0,0,1,NULL },
168 { "load_fullscreen",&gtkLoadFullscreen,CONF_TYPE_FLAG,0,0,1,NULL },
169 { "show_videowin", &gtkShowVideoWindow,CONF_TYPE_FLAG,0,0,1,NULL },
170 { "stopxscreensaver",&stop_xscreensaver,CONF_TYPE_FLAG,0,0,1,NULL },
172 { "autosync",&gtkAutoSyncOn,CONF_TYPE_FLAG,0,0,1,NULL },
173 { "autosync_size",&gtkAutoSync,CONF_TYPE_INT,CONF_RANGE,0,10000,NULL },
175 { "gui_skin",&skinName,CONF_TYPE_STRING,0,0,0,NULL },
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},
183 { "equ_channel_1",&gtkEquChannel1,CONF_TYPE_STRING,0,0,0,NULL },
184 { "equ_channel_2",&gtkEquChannel2,CONF_TYPE_STRING,0,0,0,NULL },
185 { "equ_channel_3",&gtkEquChannel3,CONF_TYPE_STRING,0,0,0,NULL },
186 { "equ_channel_4",&gtkEquChannel4,CONF_TYPE_STRING,0,0,0,NULL },
187 { "equ_channel_5",&gtkEquChannel5,CONF_TYPE_STRING,0,0,0,NULL },
188 { "equ_channel_6",&gtkEquChannel6,CONF_TYPE_STRING,0,0,0,NULL },
190 #if 1
191 #define audio_equ_row( i,j ) { "equ_band_"#i#j,&gtkEquChannels[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
201 { NULL, NULL, 0, 0, 0, 0, NULL }
204 char * gfgets( char * str, int size, FILE * f )
206 char * s = fgets( str,size,f );
207 char c;
208 if ( s )
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;
213 return s;
216 int cfg_read( void )
218 char * cfg = get_path( "gui.conf" );
219 FILE * f;
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 )
227 mp_msg( MSGT_GPLAYER,MSGL_FATAL,MSGTR_ConfigFileError );
228 // exit( 1 );
230 free( cfg );
232 // -- read pl
233 cfg=get_path( "gui.pl" );
234 if ( (f=fopen( cfg,"rt" )) )
236 while ( !feof( f ) )
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 );
246 fclose( f );
248 free( cfg );
250 //-- read previously visited urls
251 cfg=get_path( "gui.url" );
252 if ( (f=fopen( cfg,"rt" )) )
254 while ( !feof( f ) )
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 );
262 fclose( f );
264 free( cfg );
266 // -- reade file loader history
267 cfg=get_path( "gui.history" );
268 if ( (f=fopen( cfg,"rt+" )) )
270 int i = 0;
271 while ( !feof( f ) )
273 char tmp[512];
274 if ( gfgets( tmp,512,f ) == NULL ) continue;
275 fsHistory[i++]=gstrdup( tmp );
277 fclose( f );
279 free( cfg );
281 return 0;
284 int cfg_write( void )
286 char * cfg = get_path( "gui.conf" );
287 FILE * f;
288 int i;
290 // -- save configuration
291 if ( (f=fopen( cfg,"wt+" )) )
293 for ( i=0;gui_opts[i].name;i++ )
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);
302 fclose( f );
304 free( cfg );
306 // -- save playlist
307 cfg=get_path( "gui.pl" );
308 if ( (f=fopen( cfg,"wt+" )) )
310 plCurrent=plList;
311 while ( plCurrent )
313 if ( plCurrent->path && plCurrent->name )
315 fprintf( f,"%s\n",plCurrent->path );
316 fprintf( f,"%s\n",plCurrent->name );
318 plCurrent=plCurrent->next;
320 fclose( f );
322 free( cfg );
324 // -- save URL's
325 cfg=get_path( "gui.url" );
326 if ( (f=fopen( cfg,"wt+" )) )
328 while ( URLList )
330 if ( URLList->url ) fprintf( f,"%s\n",URLList->url );
331 URLList=URLList->next;
333 fclose( f );
335 free( cfg );
337 // -- save file loader history
338 cfg=get_path( "gui.history" );
339 if ( (f=fopen( cfg,"wt+" )) )
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 );
347 free( cfg );
349 return 0;