annotate Gui/cfg.c @ 6875:255b150a75a5

- some reorder/cleanup of mp_image flags - support for _ACCEPT_ALIGNED_STRIDE && _PREFER_ALIGNED_STRIDE
author arpi
date Fri, 02 Aug 2002 22:55:54 +0000
parents ed02bae611d5
children 138a7ff52a26
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6770
pontscho
parents:
diff changeset
1
pontscho
parents:
diff changeset
2 #include <stdlib.h>
pontscho
parents:
diff changeset
3 #include <stdio.h>
pontscho
parents:
diff changeset
4 #include <string.h>
pontscho
parents:
diff changeset
5
pontscho
parents:
diff changeset
6 #include "../config.h"
pontscho
parents:
diff changeset
7 #include "../mp_msg.h"
pontscho
parents:
diff changeset
8 #include "../mplayer.h"
pontscho
parents:
diff changeset
9 #include "../cfgparser.h"
pontscho
parents:
diff changeset
10
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6797
diff changeset
11 #ifdef USE_I18N
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6797
diff changeset
12 #include <locale.h>
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6797
diff changeset
13 #endif
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6797
diff changeset
14
6770
pontscho
parents:
diff changeset
15 #include "../../libvo/video_out.h"
pontscho
parents:
diff changeset
16
pontscho
parents:
diff changeset
17 #include "cfg.h"
6797
06d29dbdf20d upsz, sorry, i forgott this :) (skin name saving:)
pontscho
parents: 6794
diff changeset
18 #include "app.h"
6770
pontscho
parents:
diff changeset
19 #include "interface.h"
pontscho
parents:
diff changeset
20 #include "mplayer/play.h"
pontscho
parents:
diff changeset
21
pontscho
parents:
diff changeset
22 // --- params
pontscho
parents:
diff changeset
23
pontscho
parents:
diff changeset
24 int gtkEnableAudioEqualizer = 0;
pontscho
parents:
diff changeset
25 int gtkEnableVideoEqualizer = 0;
pontscho
parents:
diff changeset
26
pontscho
parents:
diff changeset
27 char * gtkVODriver = NULL;
pontscho
parents:
diff changeset
28 int gtkVODoubleBuffer = 1;
pontscho
parents:
diff changeset
29 int gtkVODirectRendering = 0;
pontscho
parents:
diff changeset
30 int gtkVFrameDrop = 1;
pontscho
parents:
diff changeset
31 int gtkVHardFrameDrop = 0;
pontscho
parents:
diff changeset
32 int gtkVNIAVI = 0;
pontscho
parents:
diff changeset
33 int gtkVFlip = 0;
pontscho
parents:
diff changeset
34 int gtkVIndex = 1;
pontscho
parents:
diff changeset
35 int gtkVVFM = -1;
pontscho
parents:
diff changeset
36 int gtkVPP = 0;
pontscho
parents:
diff changeset
37 int gtkVAutoq = 0;
pontscho
parents:
diff changeset
38
pontscho
parents:
diff changeset
39 char * gtkAODriver = NULL;
pontscho
parents:
diff changeset
40 int gtkAONoSound = 0;
pontscho
parents:
diff changeset
41 float gtkAODelay = 0.0f;
pontscho
parents:
diff changeset
42 int gtkAONorm = 0;
pontscho
parents:
diff changeset
43 int gtkAOSurround = 0;
pontscho
parents:
diff changeset
44 int gtkAOExtraStereo = 0;
pontscho
parents:
diff changeset
45 float gtkAOExtraStereoMul = 1.0;
pontscho
parents:
diff changeset
46 char * gtkAOOSSMixer;
pontscho
parents:
diff changeset
47 char * gtkAOOSSDevice;
pontscho
parents:
diff changeset
48
pontscho
parents:
diff changeset
49 int gtkSubAuto = 1; //
pontscho
parents:
diff changeset
50 int gtkSubUnicode = 0; //
pontscho
parents:
diff changeset
51 int gtkSubDumpMPSub = 0;
pontscho
parents:
diff changeset
52 int gtkSubDumpSrt = 0;
pontscho
parents:
diff changeset
53 float gtkSubDelay = 0.0f;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6770
diff changeset
54 float gtkSubFPS = 0.0f;
6770
pontscho
parents:
diff changeset
55 int gtkSubPos = 100; //
pontscho
parents:
diff changeset
56 float gtkSubFFactor = 0.75;
pontscho
parents:
diff changeset
57
pontscho
parents:
diff changeset
58 // ---
pontscho
parents:
diff changeset
59
pontscho
parents:
diff changeset
60 extern char * get_path( char * filename );
pontscho
parents:
diff changeset
61 extern int flip;
pontscho
parents:
diff changeset
62 extern int frame_dropping;
pontscho
parents:
diff changeset
63
pontscho
parents:
diff changeset
64 static m_config_t * gui_conf;
pontscho
parents:
diff changeset
65 static config_t gui_opts[] =
pontscho
parents:
diff changeset
66 {
pontscho
parents:
diff changeset
67 { "enable_audio_equ",&gtkEnableAudioEqualizer,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
68 { "enable_video_equ",&gtkEnableVideoEqualizer,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
69
pontscho
parents:
diff changeset
70 { "vo_driver",&gtkVODriver,CONF_TYPE_STRING,0,0,0,NULL },
pontscho
parents:
diff changeset
71 { "vo_panscan",&vo_panscan,CONF_TYPE_FLOAT,CONF_RANGE,0.0,1.0,NULL },
pontscho
parents:
diff changeset
72 { "vo_doublebuffering",&vo_doublebuffering,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
73 { "vo_direct_render",&gtkVODirectRendering,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
74
pontscho
parents:
diff changeset
75 { "v_framedrop",&gtkVFrameDrop,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
76 { "v_hard_framedrop",&gtkVHardFrameDrop,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
77 { "v_flip",&gtkVFlip,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
78 { "v_ni",&gtkVNIAVI,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
79 { "v_idx",&gtkVIndex,CONF_TYPE_FLAG,0,0,1,NULL },
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6770
diff changeset
80 { "v_vfm",&gtkVVFM,CONF_TYPE_INT,CONF_RANGE,-1,10,NULL },
6770
pontscho
parents:
diff changeset
81 { "vf_pp",&gtkVPP,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
82 { "vf_autoq",&gtkVAutoq,CONF_TYPE_INT,CONF_RANGE,0,100,NULL },
pontscho
parents:
diff changeset
83
pontscho
parents:
diff changeset
84 { "ao_driver",&gtkAODriver,CONF_TYPE_STRING,0,0,0,NULL },
pontscho
parents:
diff changeset
85 { "ao_nosound",&gtkAONoSound,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
86 { "ao_volnorm",&gtkAONorm,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
87 { "ao_surround",&gtkAOSurround,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
88 { "ao_extra_stereo",&gtkAOExtraStereo,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
89 { "ao_extra_stereo_coefficient",&gtkAOExtraStereoMul,CONF_TYPE_FLOAT,CONF_RANGE,-10,10,NULL },
pontscho
parents:
diff changeset
90 { "ao_delay",&gtkAODelay,CONF_TYPE_FLOAT,CONF_RANGE,-100,100,NULL },
pontscho
parents:
diff changeset
91 { "ao_oss_mixer",&gtkAOOSSMixer,CONF_TYPE_STRING,0,0,0,NULL },
pontscho
parents:
diff changeset
92 { "ao_oss_device",&gtkAOOSSDevice,CONF_TYPE_STRING,0,0,0,NULL },
pontscho
parents:
diff changeset
93
pontscho
parents:
diff changeset
94 { "osd_level",&osd_level,CONF_TYPE_INT,CONF_RANGE,0,2,NULL },
pontscho
parents:
diff changeset
95 { "sub_auto_load",&gtkSubAuto,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
96 { "sub_unicode",&gtkSubUnicode,CONF_TYPE_FLAG,0,0,1,NULL },
pontscho
parents:
diff changeset
97 { "sub_pos",&gtkSubPos,CONF_TYPE_INT,CONF_RANGE,0,200,NULL },
pontscho
parents:
diff changeset
98 { "font_factor",&gtkSubFFactor,CONF_TYPE_FLOAT,CONF_RANGE,0.0,10.0,NULL },
pontscho
parents:
diff changeset
99 { "font_name",&guiIntfStruct.Fontname,CONF_TYPE_STRING,0,0,0,NULL },
6797
06d29dbdf20d upsz, sorry, i forgott this :) (skin name saving:)
pontscho
parents: 6794
diff changeset
100
06d29dbdf20d upsz, sorry, i forgott this :) (skin name saving:)
pontscho
parents: 6794
diff changeset
101 { "gui_skin",&skinName,CONF_TYPE_STRING,0,0,0,NULL },
6770
pontscho
parents:
diff changeset
102
pontscho
parents:
diff changeset
103 { "equ_channel_1",&gtkEquChannel1,CONF_TYPE_STRING,0,0,0,NULL },
pontscho
parents:
diff changeset
104 { "equ_channel_2",&gtkEquChannel2,CONF_TYPE_STRING,0,0,0,NULL },
pontscho
parents:
diff changeset
105 { "equ_channel_3",&gtkEquChannel3,CONF_TYPE_STRING,0,0,0,NULL },
pontscho
parents:
diff changeset
106 { "equ_channel_4",&gtkEquChannel4,CONF_TYPE_STRING,0,0,0,NULL },
pontscho
parents:
diff changeset
107 { "equ_channel_5",&gtkEquChannel5,CONF_TYPE_STRING,0,0,0,NULL },
pontscho
parents:
diff changeset
108 { "equ_channel_6",&gtkEquChannel6,CONF_TYPE_STRING,0,0,0,NULL },
pontscho
parents:
diff changeset
109
pontscho
parents:
diff changeset
110 #if 1
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6797
diff changeset
111 #define audio_equ_row( i,j ) { "equ_band_"#i#j,&gtkEquChannels[i][j],CONF_TYPE_FLOAT,CONF_RANGE,-15.0,15.0,NULL },
6770
pontscho
parents:
diff changeset
112 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 )
pontscho
parents:
diff changeset
113 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 )
pontscho
parents:
diff changeset
114 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 )
pontscho
parents:
diff changeset
115 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 )
pontscho
parents:
diff changeset
116 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 )
pontscho
parents:
diff changeset
117 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 )
pontscho
parents:
diff changeset
118 #undef audio_equ_row
pontscho
parents:
diff changeset
119 #endif
pontscho
parents:
diff changeset
120
pontscho
parents:
diff changeset
121 { NULL, NULL, 0, 0, 0, 0, NULL }
pontscho
parents:
diff changeset
122 };
pontscho
parents:
diff changeset
123
pontscho
parents:
diff changeset
124 int cfg_read( void )
pontscho
parents:
diff changeset
125 {
pontscho
parents:
diff changeset
126 char * cfg = get_path( "gui.conf" );
pontscho
parents:
diff changeset
127
pontscho
parents:
diff changeset
128 // -- read configuration
pontscho
parents:
diff changeset
129 mp_msg( MSGT_GPLAYER,MSGL_STATUS,"[cfg] read config file: %s\n",cfg );
pontscho
parents:
diff changeset
130 gui_conf=m_config_new( play_tree_new() );
pontscho
parents:
diff changeset
131 m_config_register_options( gui_conf,gui_opts );
pontscho
parents:
diff changeset
132 if ( m_config_parse_config_file( gui_conf,cfg ) < 0 )
pontscho
parents:
diff changeset
133 {
pontscho
parents:
diff changeset
134 mp_msg( MSGT_GPLAYER,MSGL_FATAL,"[cfg] config file read error ...\n" );
pontscho
parents:
diff changeset
135 exit( 1 );
pontscho
parents:
diff changeset
136 }
pontscho
parents:
diff changeset
137 free( cfg );
pontscho
parents:
diff changeset
138
pontscho
parents:
diff changeset
139 // -- read pl
pontscho
parents:
diff changeset
140 {
pontscho
parents:
diff changeset
141 FILE * f;
pontscho
parents:
diff changeset
142 cfg=get_path( "gui.pl" );
pontscho
parents:
diff changeset
143 if ( (f=fopen( cfg,"rt" )) == NULL ) return 1;
pontscho
parents:
diff changeset
144 while ( !feof( f ) )
pontscho
parents:
diff changeset
145 {
pontscho
parents:
diff changeset
146 char tmp[512]; plItem * item = calloc( 1,sizeof( plItem ) ); char c;
pontscho
parents:
diff changeset
147 if ( fgets( tmp,512,f ) == NULL ) continue;
pontscho
parents:
diff changeset
148 c=tmp[ strlen( tmp ) - 1 ]; if ( c == '\n' || c == '\r' ) tmp[ strlen( tmp ) - 1 ]=0;
pontscho
parents:
diff changeset
149 c=tmp[ strlen( tmp ) - 1 ]; if ( c == '\n' || c == '\r' ) tmp[ strlen( tmp ) - 1 ]=0;
pontscho
parents:
diff changeset
150 item->path=strdup( tmp );
pontscho
parents:
diff changeset
151 fgets( tmp,512,f );
pontscho
parents:
diff changeset
152 c=tmp[ strlen( tmp ) - 1 ]; if ( c == '\n' || c == '\r' ) tmp[ strlen( tmp ) - 1 ]=0;
pontscho
parents:
diff changeset
153 c=tmp[ strlen( tmp ) - 1 ]; if ( c == '\n' || c == '\r' ) tmp[ strlen( tmp ) - 1 ]=0;
pontscho
parents:
diff changeset
154 item->name=strdup( tmp );
pontscho
parents:
diff changeset
155 gtkSet( gtkAddPlItem,0,(void*)item );
pontscho
parents:
diff changeset
156 }
pontscho
parents:
diff changeset
157 fclose( f );
pontscho
parents:
diff changeset
158 free( cfg );
pontscho
parents:
diff changeset
159 }
pontscho
parents:
diff changeset
160 return 0;
pontscho
parents:
diff changeset
161 }
pontscho
parents:
diff changeset
162
pontscho
parents:
diff changeset
163 int cfg_write( void )
pontscho
parents:
diff changeset
164 {
pontscho
parents:
diff changeset
165 char * cfg = get_path( "gui.conf" );
pontscho
parents:
diff changeset
166 FILE * f;
pontscho
parents:
diff changeset
167 int i;
pontscho
parents:
diff changeset
168
6840
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6797
diff changeset
169 #ifdef USE_I18N
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6797
diff changeset
170 setlocale( LC_ALL,"" );
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6797
diff changeset
171 #endif
ed02bae611d5 - some cosmetic change in preferences
pontscho
parents: 6797
diff changeset
172
6770
pontscho
parents:
diff changeset
173 // -- save configuration
pontscho
parents:
diff changeset
174 if ( (f=fopen( cfg,"wt+" )) )
pontscho
parents:
diff changeset
175 {
pontscho
parents:
diff changeset
176 for ( i=0;gui_opts[i].name;i++ )
pontscho
parents:
diff changeset
177 {
pontscho
parents:
diff changeset
178 switch ( gui_opts[i].type )
pontscho
parents:
diff changeset
179 {
pontscho
parents:
diff changeset
180 case CONF_TYPE_INT:
pontscho
parents:
diff changeset
181 case CONF_TYPE_FLAG: fprintf( f,"%s = %d\n",gui_opts[i].name,*( (int *)gui_opts[i].p ) ); break;
pontscho
parents:
diff changeset
182 case CONF_TYPE_FLOAT: fprintf( f,"%s = %f\n",gui_opts[i].name,*( (float *)gui_opts[i].p ) ); break;
6794
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6770
diff changeset
183 case CONF_TYPE_STRING:
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6770
diff changeset
184 {
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6770
diff changeset
185 char * tmp = *( (char **)gui_opts[i].p );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6770
diff changeset
186 if ( tmp && tmp[0] ) fprintf( f,"%s = \"%s\"\n",gui_opts[i].name,tmp );
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6770
diff changeset
187 break;
77980ab4e296 - add preferences support (first try)
pontscho
parents: 6770
diff changeset
188 }
6770
pontscho
parents:
diff changeset
189 }
pontscho
parents:
diff changeset
190 }
pontscho
parents:
diff changeset
191 fclose( f );
pontscho
parents:
diff changeset
192 }
pontscho
parents:
diff changeset
193 free( cfg );
pontscho
parents:
diff changeset
194
pontscho
parents:
diff changeset
195 // -- save playlist
pontscho
parents:
diff changeset
196 cfg=get_path( "gui.pl" );
pontscho
parents:
diff changeset
197 if ( (f=fopen( cfg,"wt+" )) )
pontscho
parents:
diff changeset
198 {
pontscho
parents:
diff changeset
199 plCurrent=plList;
pontscho
parents:
diff changeset
200 while ( plCurrent )
pontscho
parents:
diff changeset
201 {
pontscho
parents:
diff changeset
202 if ( plCurrent->path && plCurrent->name )
pontscho
parents:
diff changeset
203 {
pontscho
parents:
diff changeset
204 fprintf( f,"%s\n",plCurrent->path );
pontscho
parents:
diff changeset
205 fprintf( f,"%s\n",plCurrent->name );
pontscho
parents:
diff changeset
206 }
pontscho
parents:
diff changeset
207 plCurrent=plCurrent->next;
pontscho
parents:
diff changeset
208 }
pontscho
parents:
diff changeset
209 fclose( f );
pontscho
parents:
diff changeset
210 }
pontscho
parents:
diff changeset
211 free( cfg );
pontscho
parents:
diff changeset
212
pontscho
parents:
diff changeset
213 return 0;
pontscho
parents:
diff changeset
214 }
pontscho
parents:
diff changeset
215