Mercurial > mplayer.hg
annotate gui/app/cfg.c @ 37165:681c7f805a23
Double-check that we are really at audio EOF by trying to refill.
Somewhat improves trac #2196.
author | reimar |
---|---|
date | Sun, 31 Aug 2014 09:33:38 +0000 |
parents | ae4f30c4ef02 |
children |
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 |
34562 | 19 #include <stdio.h> |
23077 | 20 #include <stdlib.h> |
21 #include <string.h> | |
22 | |
33179 | 23 #include "cfg.h" |
35493 | 24 #include "gui.h" |
35525 | 25 #include "gui/interface.h" |
26 #include "gui/util/list.h" | |
37024 | 27 #include "gui/util/misc.h" |
35525 | 28 #include "gui/util/string.h" |
33179 | 29 |
23077 | 30 #include "config.h" |
31 #include "help_mp.h" | |
33179 | 32 #include "mixer.h" |
33768 | 33 #include "mp_core.h" |
33179 | 34 #include "mp_msg.h" |
35 #include "mpcommon.h" | |
36 #include "mplayer.h" | |
37 #include "parser-cfg.h" | |
38 #include "path.h" | |
36032 | 39 #include "libavutil/common.h" |
40 #include "libmpcodecs/vd.h" | |
41 #include "libmpdemux/demuxer.h" | |
42 #include "libvo/video_out.h" | |
43 #include "libvo/x11_common.h" | |
34562 | 44 #include "stream/stream.h" |
45 #include "sub/ass_mp.h" | |
32981 | 46 #include "sub/font_load.h" |
33179 | 47 #include "sub/sub.h" |
23077 | 48 |
36429 | 49 guiTV_t guiTV[2] = { |
50 { STREAMTYPE_TV, "tv" }, | |
51 { STREAMTYPE_DVB, "dvb" } | |
52 }; | |
53 | |
33265 | 54 m_config_t *gui_conf; |
55 | |
33220 | 56 int gtkCacheOn; |
33180 | 57 int gtkCacheSize = 2048; |
58 | |
33220 | 59 int gtkVfPP; |
23077 | 60 |
33249 | 61 int gtkVfLAVC; |
33180 | 62 char *gtkDXR3Device; |
63 | |
33220 | 64 int gtkAutoSyncOn; |
65 int gtkAutoSync; | |
23077 | 66 |
33220 | 67 int gtkAONorm; |
68 int gtkAOSurround; | |
69 int gtkAOExtraStereo; | |
33221 | 70 float gtkAOExtraStereoMul = 1.0f; |
33180 | 71 |
33179 | 72 char *gtkAOALSAMixer; |
73 char *gtkAOALSAMixerChannel; | |
74 char *gtkAOALSADevice; | |
33180 | 75 |
76 char *gtkAOOSSMixer; | |
77 char *gtkAOOSSMixerChannel; | |
78 char *gtkAOOSSDevice; | |
79 | |
33179 | 80 char *gtkAOESDDevice; |
23077 | 81 |
33180 | 82 char *gtkAOSDLDriver; |
23077 | 83 |
33220 | 84 int gtkEnableAudioEqualizer; |
33747 | 85 float gtkEquChannels[6][10]; |
23077 | 86 |
33220 | 87 int gtkSubDumpMPSub; |
88 int gtkSubDumpSrt; | |
23077 | 89 |
33180 | 90 gtkASS_t gtkASS; |
91 | |
35493 | 92 int gtkEnablePlayBar = True; |
33220 | 93 int gtkLoadFullscreen; |
35493 | 94 int gtkShowVideoWindow = True; |
23077 | 95 |
35493 | 96 int gui_save_pos = True; |
34698 | 97 int gui_main_pos_x = -3; |
98 int gui_main_pos_y = -3; | |
34697 | 99 int gui_video_pos_x = -3; |
100 int gui_video_pos_y = -3; | |
23077 | 101 |
36429 | 102 int gui_tv_digital = True; |
103 | |
33747 | 104 int guiWinID = -1; |
105 | |
106 char *skinName; | |
107 | |
33751
c28c967e40e9
Replace numeric constant fsPersistant_MaxPos for fsHistory array size.
ib
parents:
33750
diff
changeset
|
108 char *fsHistory[5]; |
33750
8b5898908212
Remove variable holding history of selected files from interface.[ch].
ib
parents:
33748
diff
changeset
|
109 |
34596
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
110 static const char gui_configuration[] = "gui.conf"; |
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
111 static const char gui_history[] = "gui.history"; |
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
112 static const char gui_playlist[] = "gui.pl"; |
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
113 static const char gui_urllist[] = "gui.url"; |
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
114 |
33179 | 115 static const m_option_t gui_opts[] = { |
34708 | 116 { "cache", >kCacheOn, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
34707 | 117 { "cache_size", >kCacheSize, CONF_TYPE_INT, CONF_RANGE, 32, 0x7fffffff, NULL }, |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
118 |
34708 | 119 { "vf_pp", >kVfPP, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 120 |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
121 #ifdef CONFIG_DXR3 |
34708 | 122 { "vf_lavc", >kVfLAVC, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
123 { "vo_dxr3_device", >kDXR3Device, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
23077 | 124 #endif |
125 | |
34708 | 126 { "autosync", >kAutoSyncOn, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
127 { "autosync_size", >kAutoSync, CONF_TYPE_INT, CONF_RANGE, 0, 10000, NULL }, | |
23077 | 128 |
34708 | 129 { "ao_volnorm", >kAONorm, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
130 { "ao_surround", >kAOSurround, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
131 { "ao_extra_stereo", >kAOExtraStereo, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
132 { "ao_extra_stereo_coefficient", >kAOExtraStereoMul, CONF_TYPE_FLOAT, CONF_RANGE, -10.0, 10.0, NULL }, | |
33223 | 133 |
27390
9d95dc936e66
Introduce CONFIG_ALSA preprocessor directive for ALSA 0.9 and 1.x.
diego
parents:
27387
diff
changeset
|
134 #ifdef CONFIG_ALSA |
34708 | 135 { "ao_alsa_mixer", >kAOALSAMixer, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
136 { "ao_alsa_mixer_channel", >kAOALSAMixerChannel, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
137 { "ao_alsa_device", >kAOALSADevice, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
23077 | 138 #endif |
33223 | 139 |
140 #ifdef CONFIG_OSS_AUDIO | |
34708 | 141 { "ao_oss_mixer", >kAOOSSMixer, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
142 { "ao_oss_mixer_channel", >kAOOSSMixerChannel, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
143 { "ao_oss_device", >kAOOSSDevice, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
23077 | 144 #endif |
33223 | 145 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
146 #ifdef CONFIG_ESD |
34708 | 147 { "ao_esd_device", >kAOESDDevice, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
23077 | 148 #endif |
149 | |
33223 | 150 #ifdef CONFIG_SDL |
34708 | 151 { "ao_sdl_subdriver", >kAOSDLDriver, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
23077 | 152 #endif |
153 | |
34708 | 154 { "enable_audio_equ", >kEnableAudioEqualizer, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
23077 | 155 |
34708 | 156 { "equ_channel_1", >kEquChannel1, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
157 { "equ_channel_2", >kEquChannel2, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
158 { "equ_channel_3", >kEquChannel3, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
159 { "equ_channel_4", >kEquChannel4, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
160 { "equ_channel_5", >kEquChannel5, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
161 { "equ_channel_6", >kEquChannel6, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
162 |
33223 | 163 #define audio_equ_row(i, j) \ |
34708 | 164 { "equ_band_" # i # j, >kEquChannels[i][j], CONF_TYPE_FLOAT, CONF_RANGE, -15.0, 15.0, NULL } |
33289 | 165 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), |
166 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), | |
167 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), | |
168 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), | |
169 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), | |
170 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), | |
23077 | 171 #undef audio_equ_row |
172 | |
34708 | 173 { "playbar", >kEnablePlayBar, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
174 { "load_fullscreen", >kLoadFullscreen, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
175 { "show_videowin", >kShowVideoWindow, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
33223 | 176 |
34708 | 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_video_pos_x, CONF_TYPE_INT, 0, 0, 0, NULL }, | |
181 { "gui_video_out_pos_y", &gui_video_pos_y, CONF_TYPE_INT, 0, 0, 0, NULL }, | |
33223 | 182 |
34708 | 183 { "idle", &player_idle_mode, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL }, |
33477 | 184 |
36429 | 185 #ifdef CONFIG_TV |
186 { "gui_tv_digital", &gui_tv_digital, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
187 #endif | |
188 | |
33223 | 189 // NOTE TO MYSELF: Do we really need all/any non-gtkOptions, i.e. override mplayer options? |
190 | |
34708 | 191 { "gui_skin", &skinName, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
33223 | 192 |
34708 | 193 { "stopxscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 194 |
34708 | 195 { "cdrom_device", &cdrom_device, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
196 { "dvd_device", &dvd_device, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
33223 | 197 |
34708 | 198 { "osd_level", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL }, |
33223 | 199 |
34708 | 200 { "vo_driver", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, |
201 { "v_vfm", &video_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, | |
33223 | 202 |
34708 | 203 { "vf_autoq", &auto_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL }, |
204 { "vo_direct_render", &vo_directrendering, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
205 { "vo_doublebuffering", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
206 { "vo_panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL }, | |
33223 | 207 |
34708 | 208 { "v_flip", &flip, CONF_TYPE_INT, CONF_RANGE, -1, 1, NULL }, |
209 { "v_framedrop", &frame_dropping, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL }, | |
210 { "v_idx", &index_mode, CONF_TYPE_INT, CONF_RANGE, -1, 2, NULL }, | |
211 { "v_ni", &force_ni, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
33223 | 212 |
34708 | 213 { "ao_driver", &audio_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, |
214 { "a_afm", &audio_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, | |
33223 | 215 |
34708 | 216 { "softvol", &soft_vol, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 217 |
34708 | 218 { "sub_auto_load", &sub_auto, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 219 #ifdef CONFIG_ICONV |
34708 | 220 { "sub_cp", &sub_cp, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
33223 | 221 #endif |
34708 | 222 { "sub_overlap", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 0, NULL }, |
223 { "sub_pos", &sub_pos, CONF_TYPE_INT, CONF_RANGE, 0, 200, NULL }, | |
224 { "sub_unicode", &sub_unicode, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
36544 | 225 { "sub_utf8", &sub_utf8, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 226 |
34708 | 227 { "font_factor", &font_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 10.0, NULL }, |
228 { "font_name", &font_name, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
33223 | 229 |
36730 | 230 { "font_encoding", &subtitle_font_encoding, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
33223 | 231 #ifdef CONFIG_FREETYPE |
34708 | 232 { "font_text_scale", &text_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 100.0, NULL }, |
233 { "font_osd_scale", &osd_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 100.0, NULL }, | |
234 { "font_blur", &subtitle_font_radius, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 8.0, NULL }, | |
235 { "font_outline", &subtitle_font_thickness, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 8.0, NULL }, | |
236 { "font_autoscale", &subtitle_autoscale, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL }, | |
33223 | 237 #endif |
238 | |
239 #ifdef CONFIG_ASS | |
34708 | 240 { "ass_enabled", &ass_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
241 { "ass_use_margins", &ass_use_margins, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
36829 | 242 { "ass_top_margin", &ass_top_margin, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL }, |
243 { "ass_bottom_margin", &ass_bottom_margin, CONF_TYPE_INT, CONF_RANGE, 0, 2000, NULL }, | |
33223 | 244 #endif |
245 | |
34708 | 246 { NULL, NULL, 0, 0, 0, 0, NULL } |
23077 | 247 }; |
248 | |
35521 | 249 int cfg_gui_include(m_option_t *conf, const char *file) |
33470 | 250 { |
251 (void)conf; | |
252 | |
35521 | 253 return m_config_parse_config_file(gui_conf, file, 0); |
33470 | 254 } |
255 | |
34561 | 256 void cfg_read(void) |
23077 | 257 { |
34580 | 258 char *fname, line[512]; |
34578 | 259 FILE *file; |
33179 | 260 |
35493 | 261 player_idle_mode = True; // GUI is in idle mode by default |
33476 | 262 |
34684 | 263 /* configuration */ |
33179 | 264 |
34596
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
265 fname = get_path(gui_configuration); |
33179 | 266 |
34578 | 267 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[cfg] file: %s\n", fname); |
33179 | 268 |
269 gui_conf = m_config_new(); | |
33480 | 270 |
271 if (!gui_conf) { | |
272 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_MemAllocFailed); | |
33768 | 273 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
33480 | 274 } |
275 | |
33179 | 276 m_config_register_options(gui_conf, gui_opts); |
277 | |
34578 | 278 if (!disable_gui_conf && (m_config_parse_config_file(gui_conf, fname, 1) < 0)) { |
34577
22887c794c02
In case of a GUI config error, exit MPlayer with error.
ib
parents:
34576
diff
changeset
|
279 gmp_msg(MSGT_GPLAYER, MSGL_ERR, MSGTR_ConfigFileError "\n"); |
22887c794c02
In case of a GUI config error, exit MPlayer with error.
ib
parents:
34576
diff
changeset
|
280 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
33179 | 281 } |
282 | |
34578 | 283 free(fname); |
23077 | 284 |
34684 | 285 /* playlist */ |
33179 | 286 |
34596
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
287 fname = get_path(gui_playlist); |
34578 | 288 file = fopen(fname, "rt"); |
33179 | 289 |
34578 | 290 if (file) { |
34581 | 291 while (fgetstr(line, sizeof(line), file)) { |
33179 | 292 plItem *item; |
23077 | 293 |
34588 | 294 if (!*line) |
295 continue; | |
296 | |
37083 | 297 item = calloc(1, sizeof(*item)); |
34582 | 298 |
299 if (!item) { | |
300 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_MemAllocFailed); | |
301 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); | |
302 } | |
303 | |
34580 | 304 item->path = strdup(line); |
34584 | 305 |
34588 | 306 if (fgetstr(line, sizeof(line), file) && *line) { |
34585 | 307 item->name = strdup(line); |
34681 | 308 listMgr(PLAYLIST_ITEM_APPEND, item); |
34584 | 309 } else { |
310 free(item->path); | |
311 free(item); | |
312 } | |
33179 | 313 } |
314 | |
34578 | 315 fclose(file); |
23077 | 316 } |
33179 | 317 |
34578 | 318 free(fname); |
33179 | 319 |
34684 | 320 /* URL list */ |
33179 | 321 |
34596
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
322 fname = get_path(gui_urllist); |
34578 | 323 file = fopen(fname, "rt"); |
23077 | 324 |
34578 | 325 if (file) { |
34581 | 326 while (fgetstr(line, sizeof(line), file)) { |
33555 | 327 urlItem *item; |
33179 | 328 |
34588 | 329 if (!*line) |
330 continue; | |
331 | |
37083 | 332 item = calloc(1, sizeof(*item)); |
34582 | 333 |
334 if (!item) { | |
335 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_MemAllocFailed); | |
336 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); | |
337 } | |
338 | |
34580 | 339 item->url = strdup(line); |
34663 | 340 listMgr(URLLIST_ITEM_ADD, item); |
33179 | 341 } |
342 | |
34578 | 343 fclose(file); |
23077 | 344 } |
33179 | 345 |
34578 | 346 free(fname); |
33179 | 347 |
34684 | 348 /* directory history */ |
33179 | 349 |
34596
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
350 fname = get_path(gui_history); |
34579 | 351 file = fopen(fname, "rt"); |
33179 | 352 |
34578 | 353 if (file) { |
34586 | 354 unsigned int i = 0; |
23077 | 355 |
34581 | 356 while (fgetstr(line, sizeof(line), file)) |
34588 | 357 if (*line && (i < FF_ARRAY_ELEMS(fsHistory))) |
34589 | 358 fsHistory[i++] = strdup(line); |
33179 | 359 |
34578 | 360 fclose(file); |
23077 | 361 } |
362 | |
34578 | 363 free(fname); |
23077 | 364 } |
365 | |
34561 | 366 void cfg_write(void) |
23077 | 367 { |
34578 | 368 char *fname; |
369 FILE *file; | |
33179 | 370 |
34684 | 371 /* configuration */ |
33179 | 372 |
34596
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
373 fname = get_path(gui_configuration); |
34578 | 374 file = fopen(fname, "wt+"); |
33179 | 375 |
34578 | 376 if (file) { |
34621
97148652b0c6
Replace for loop with index by while loop with pointer.
ib
parents:
34610
diff
changeset
|
377 const m_option_t *opts = gui_opts; |
97148652b0c6
Replace for loop with index by while loop with pointer.
ib
parents:
34610
diff
changeset
|
378 |
97148652b0c6
Replace for loop with index by while loop with pointer.
ib
parents:
34610
diff
changeset
|
379 while (opts->name) { |
97148652b0c6
Replace for loop with index by while loop with pointer.
ib
parents:
34610
diff
changeset
|
380 char *val = m_option_print(opts, opts->p); |
33179 | 381 |
34578 | 382 if (val == (char *)-1) { |
36694 | 383 gmp_msg(MSGT_GPLAYER, MSGL_WARN, MSGTR_GUI_MSG_UnableToSaveOption, opts->name); |
34578 | 384 val = NULL; |
33179 | 385 } |
23077 | 386 |
34578 | 387 if (val) { |
34595 | 388 char delim[] = "\""; |
34593
83f7a2f8af3b
Adjust content of GUI configuration file to MPlayer configuration files.
ib
parents:
34592
diff
changeset
|
389 |
83f7a2f8af3b
Adjust content of GUI configuration file to MPlayer configuration files.
ib
parents:
34592
diff
changeset
|
390 if (!strchr(val, ' ')) |
83f7a2f8af3b
Adjust content of GUI configuration file to MPlayer configuration files.
ib
parents:
34592
diff
changeset
|
391 *delim = 0; |
83f7a2f8af3b
Adjust content of GUI configuration file to MPlayer configuration files.
ib
parents:
34592
diff
changeset
|
392 |
34621
97148652b0c6
Replace for loop with index by while loop with pointer.
ib
parents:
34610
diff
changeset
|
393 fprintf(file, "%s=%s%s%s\n", opts->name, delim, val, delim); |
34578 | 394 free(val); |
33179 | 395 } |
34621
97148652b0c6
Replace for loop with index by while loop with pointer.
ib
parents:
34610
diff
changeset
|
396 |
97148652b0c6
Replace for loop with index by while loop with pointer.
ib
parents:
34610
diff
changeset
|
397 opts++; |
33179 | 398 } |
399 | |
34578 | 400 fclose(file); |
23077 | 401 } |
33179 | 402 |
34578 | 403 free(fname); |
33179 | 404 |
34684 | 405 /* playlist */ |
33179 | 406 |
34596
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
407 fname = get_path(gui_playlist); |
34578 | 408 file = fopen(fname, "wt+"); |
33179 | 409 |
34578 | 410 if (file) { |
34667 | 411 plItem *item = listMgr(PLAYLIST_GET, 0); |
33179 | 412 |
34594 | 413 while (item) { |
414 if (item->path && item->name) { | |
415 fprintf(file, "%s\n", item->path); | |
416 fprintf(file, "%s\n", item->name); | |
33179 | 417 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
418 |
34594 | 419 item = item->next; |
33179 | 420 } |
421 | |
34578 | 422 fclose(file); |
23077 | 423 } |
33179 | 424 |
34578 | 425 free(fname); |
33179 | 426 |
34684 | 427 /* URL list */ |
33179 | 428 |
34596
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
429 fname = get_path(gui_urllist); |
34578 | 430 file = fopen(fname, "wt+"); |
33179 | 431 |
34578 | 432 if (file) { |
34668 | 433 urlItem *item = listMgr(URLLIST_GET, 0); |
33179 | 434 |
34594 | 435 while (item) { |
436 if (item->url) | |
437 fprintf(file, "%s\n", item->url); | |
438 | |
439 item = item->next; | |
33179 | 440 } |
23077 | 441 |
34578 | 442 fclose(file); |
23077 | 443 } |
33179 | 444 |
34578 | 445 free(fname); |
33179 | 446 |
34684 | 447 /* directory history */ |
33179 | 448 |
34596
04feb00f91be
Prefer static const char arrays for string constants to #defines.
ib
parents:
34595
diff
changeset
|
449 fname = get_path(gui_history); |
34578 | 450 file = fopen(fname, "wt+"); |
33179 | 451 |
34578 | 452 if (file) { |
34621
97148652b0c6
Replace for loop with index by while loop with pointer.
ib
parents:
34610
diff
changeset
|
453 unsigned int i; |
97148652b0c6
Replace for loop with index by while loop with pointer.
ib
parents:
34610
diff
changeset
|
454 |
35870
26ad65a4e47d
Free memory allocated for fsHistory[] elements when GUI ends.
ib
parents:
35525
diff
changeset
|
455 for (i = 0; i < FF_ARRAY_ELEMS(fsHistory); i++) { |
26ad65a4e47d
Free memory allocated for fsHistory[] elements when GUI ends.
ib
parents:
35525
diff
changeset
|
456 if (fsHistory[i]) { |
34578 | 457 fprintf(file, "%s\n", fsHistory[i]); |
35870
26ad65a4e47d
Free memory allocated for fsHistory[] elements when GUI ends.
ib
parents:
35525
diff
changeset
|
458 free(fsHistory[i]); |
26ad65a4e47d
Free memory allocated for fsHistory[] elements when GUI ends.
ib
parents:
35525
diff
changeset
|
459 } |
26ad65a4e47d
Free memory allocated for fsHistory[] elements when GUI ends.
ib
parents:
35525
diff
changeset
|
460 } |
23077 | 461 |
34578 | 462 fclose(file); |
33179 | 463 } |
464 | |
34578 | 465 free(fname); |
23077 | 466 } |