Mercurial > audlegacy
annotate src/audacious/main.c @ 2832:a6f541819bbc trunk
[svn] fixed bug #972
author | magma |
---|---|
date | Mon, 11 Jun 2007 23:32:00 -0700 |
parents | 0646111a7217 |
children | 6a980c061b5d |
rev | line source |
---|---|
2313 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2007 Audacious development team. | |
3 * | |
4 * Based on BMP: | |
5 * Copyright (C) 2003-2004 BMP development team. | |
6 * | |
7 * Based on XMMS: | |
8 * Copyright (C) 1998-2003 XMMS development team. | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
12 * the Free Software Foundation; under version 2 of the License. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 # include "config.h" | |
26 #endif | |
27 | |
28 #include "main.h" | |
29 | |
30 #include <glib.h> | |
31 #include <glib/gi18n.h> | |
32 #include <glib/gprintf.h> | |
33 #include <gdk/gdk.h> | |
34 #include <stdlib.h> | |
35 #include <string.h> | |
36 #include <getopt.h> | |
37 #include <ctype.h> | |
38 #include <time.h> | |
39 | |
40 #include <unistd.h> | |
41 #include <errno.h> | |
42 #include <sys/types.h> | |
43 #include <sys/stat.h> | |
44 #include <signal.h> | |
45 | |
46 #include "platform/smartinclude.h" | |
47 | |
2717 | 48 #include "configdb.h" |
2313 | 49 #include "vfs.h" |
50 | |
2694
c2b82432c1b6
[svn] Added basic DBus support, disabled by default with a configuration option to enable it. The general and playback information/manipulation methods are currently the only ones implemented. That is version, play, pause, stop, playing, paused, stopped, status, and seek. There are stubs for many unimplemented methods.
magma
parents:
2682
diff
changeset
|
51 #ifdef USE_DBUS |
2711
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
2709
diff
changeset
|
52 # include "dbus-service.h" |
2785 | 53 # include "audctrl.h" |
2694
c2b82432c1b6
[svn] Added basic DBus support, disabled by default with a configuration option to enable it. The general and playback information/manipulation methods are currently the only ones implemented. That is version, play, pause, stop, playing, paused, stopped, status, and seek. There are stubs for many unimplemented methods.
magma
parents:
2682
diff
changeset
|
54 #endif |
c2b82432c1b6
[svn] Added basic DBus support, disabled by default with a configuration option to enable it. The general and playback information/manipulation methods are currently the only ones implemented. That is version, play, pause, stop, playing, paused, stopped, status, and seek. There are stubs for many unimplemented methods.
magma
parents:
2682
diff
changeset
|
55 |
2313 | 56 #include "dnd.h" |
57 #include "effect.h" | |
58 #include "ui_equalizer.h" | |
59 #include "general.h" | |
60 #include "genevent.h" | |
61 #include "hints.h" | |
62 #include "input.h" | |
63 #include "logger.h" | |
64 #include "ui_main.h" | |
65 #include "ui_manager.h" | |
66 #include "output.h" | |
67 #include "playback.h" | |
68 #include "playlist.h" | |
69 #include "ui_playlist.h" | |
70 #include "ui_preferences.h" | |
71 #include "pluginenum.h" | |
72 #include "ui_skinselector.h" | |
73 #include "util.h" | |
74 #include "visualization.h" | |
75 #include "build_stamp.h" | |
76 #include "ui_fileinfo.h" | |
77 #include "signals.h" | |
2530 | 78 #include "ui_skinned_window.h" |
2313 | 79 |
80 #include "icons-csource.h" | |
81 #include "icons-stock.h" | |
82 #include "images/audacious_player.xpm" | |
83 | |
2364 | 84 gboolean has_x11_connection = FALSE; /* do we have an X11 connection? */ |
2313 | 85 |
86 /* Translatable string for beep.desktop's comment field */ | |
87 const gchar *desktop_comment = N_("Audacious"); | |
88 | |
89 const gchar *application_name = N_("Audacious"); | |
90 | |
91 | |
92 struct _BmpCmdLineOpt { | |
2411 | 93 gchar **filenames; |
2313 | 94 gint session; |
95 gboolean play, stop, pause, fwd, rew, play_pause, playcd, show_jump_box; | |
96 gboolean enqueue, mainwin, remote, activate; | |
97 gboolean load_skins; | |
98 gboolean headless; | |
99 gboolean no_log; | |
100 gboolean enqueue_to_temp; | |
2411 | 101 gboolean version; |
2313 | 102 gchar *previous_session_id; |
103 }; | |
104 | |
105 typedef struct _BmpCmdLineOpt BmpCmdLineOpt; | |
106 | |
107 BmpCmdLineOpt options; | |
108 | |
109 BmpConfig cfg; | |
110 | |
111 BmpConfig bmp_default_config = { | |
112 MAINWIN_DEFAULT_POS_X, /* mainwin x position */ | |
113 MAINWIN_DEFAULT_POS_Y, /* mainwin y position */ | |
114 EQUALIZER_DEFAULT_POS_X, /* equalizer x position */ | |
115 EQUALIZER_DEFAULT_POS_Y, /* equalizer y position */ | |
116 PLAYLISTWIN_DEFAULT_POS_X, /* playlistwin x position */ | |
117 PLAYLISTWIN_DEFAULT_POS_Y, /* playlistwin y position */ | |
118 PLAYLISTWIN_DEFAULT_WIDTH, /* playlistwin width */ | |
119 PLAYLISTWIN_DEFAULT_HEIGHT, /* playlistwin height */ | |
120 10, /* snap distance */ | |
121 FALSE, /* real-time priority */ | |
122 FALSE, FALSE, /* shuffle, repeat */ | |
123 FALSE, /* UNUSED (double size) */ | |
124 TRUE, /* autoscroll */ | |
125 TRUE, /* analyzer peaks */ | |
126 FALSE, /* equalizer autoload */ | |
127 FALSE, /* easy move */ | |
128 FALSE, /* equalizer active */ | |
129 FALSE, /* playlistwin visible */ | |
130 FALSE, /* equalizer visible */ | |
131 TRUE, /* player visible */ | |
132 FALSE, /* player shaded */ | |
133 FALSE, /* playlistwin shaded */ | |
134 FALSE, /* equalizer shaded */ | |
135 FALSE, /* allow multiple instances */ | |
136 TRUE, /* always show cb */ | |
137 TRUE, TRUE, TRUE, /* convert '_', %20 and '\' */ | |
138 TRUE, /* show numbers in playlist */ | |
139 TRUE, /* snap windows */ | |
140 TRUE, /* save window positions */ | |
141 TRUE, /* dim titlebar */ | |
142 FALSE, /* get playlist info on load */ | |
143 TRUE, /* get playlist info on demand */ | |
144 TRUE, /* UNUSED (equalizer doublesize linked) */ | |
145 FALSE, /* sort jump to file */ | |
146 FALSE, /* use effect plugins */ | |
147 FALSE, /* always on top */ | |
148 FALSE, /* sticky */ | |
149 FALSE, /* no playlist advance */ | |
150 FALSE, /* stop after current song */ | |
151 TRUE, /* refresh file list */ | |
152 TRUE, /* UNUSED (smooth title scrolling) */ | |
153 TRUE, /* use playlist metadata */ | |
2662
09b404d61ebd
[svn] - remove the unplayable files dialog. it is more annoying than useful.
nenolod
parents:
2651
diff
changeset
|
154 TRUE, /* deprecated */ |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
155 TRUE, /* warn about windows visibility */ |
2313 | 156 FALSE, /* use \ as directory delimiter */ |
157 FALSE, /* random skin on play */ | |
158 FALSE, /* use fontsets */ | |
159 FALSE, /* use X font for mainwin */ | |
2364 | 160 TRUE, /* use custom cursors */ |
161 TRUE, /* close dialog on open */ | |
162 TRUE, /* close dialog on add */ | |
2313 | 163 0.0, /* equalizer preamp */ |
164 {0, 0, 0, 0, 0, /* equalizer bands */ | |
165 0, 0, 0, 0, 0}, | |
166 NULL, /* skin */ | |
167 NULL, /* output plugin */ | |
168 NULL, /* file selector path */ | |
169 NULL, /* playlist path */ | |
170 NULL, /* playlist font */ | |
171 NULL, /* mainwin font */ | |
172 NULL, /* disabled input plugins */ | |
173 NULL, /* enabled general plugins */ | |
174 NULL, /* enabled visualization plugins */ | |
175 NULL, /* enabled effect plugins */ | |
176 NULL, /* equalizer preset default file */ | |
177 NULL, /* equalizer preset extension */ | |
178 NULL, /* URL history */ | |
179 0, /* timer mode */ | |
180 VIS_ANALYZER, /* visualizer type */ | |
181 ANALYZER_NORMAL, /* analyzer mode */ | |
182 ANALYZER_BARS, /* analyzer type */ | |
183 SCOPE_DOT, /* scope mode */ | |
184 VOICEPRINT_NORMAL, /* voiceprint mode */ | |
185 VU_SMOOTH, /* VU mode */ | |
186 REFRESH_FULL, /* visualizer refresh rate */ | |
187 FALLOFF_FAST, /* analyzer fall off rate */ | |
188 FALLOFF_SLOW, /* peaks fall off rate */ | |
189 0, /* playlist position */ | |
190 2, /* pause between songs time */ | |
191 FALSE, /* pause between songs */ | |
192 FALSE, /* show window decorations */ | |
193 8, /* mouse wheel scroll step */ | |
194 FALSE, /* playlist transparent */ | |
195 2, /* 3rd preset (ARTIST - ALBUM - TITLE) */ | |
196 NULL, /* title format */ | |
197 FALSE, /* software volume control enabled */ | |
198 TRUE, /* UNUSED (XMMS compatibility mode) */ | |
199 TRUE, /* extra eq filtering */ | |
200 3, /* scroll pl by */ | |
201 FALSE, /* resume playback on startup */ | |
202 -1, /* resume playback on startup time */ | |
2364 | 203 TRUE, /* show seperators in pl */ |
2313 | 204 NULL, |
205 NULL, | |
2364 | 206 3000, /* audio buffer size */ |
207 FALSE, /* whether or not to postpone format detection on initial add */ | |
208 TRUE, /* show filepopup for tuple */ | |
209 NULL, /* words identifying covers */ | |
210 NULL, /* words that might not show up in cover names */ | |
2313 | 211 FALSE, |
212 0, | |
2364 | 213 NULL, /* default session uri base (non-NULL = custom session uri base) */ |
214 150, /* short side length of the picture in the filepopup */ | |
215 20, /* delay until the filepopup comes up */ | |
216 FALSE, /* use filename.jpg for coverart */ | |
217 FALSE, /* use XMMS-style file selection */ | |
218 TRUE, /* use extension probing */ | |
219 255, 255, 255, /* colorize r, g, b */ | |
220 FALSE, /* internal: whether or not to terminate */ | |
2405 | 221 TRUE, /* whether show progress bar in filepopup or not */ |
2806 | 222 TRUE, /* close jtf dialog on jump */ |
2313 | 223 }; |
224 | |
225 typedef struct bmp_cfg_boolent_t { | |
226 char const *be_vname; | |
227 gboolean *be_vloc; | |
228 gboolean be_wrt; | |
229 } bmp_cfg_boolent; | |
230 | |
231 typedef struct bmp_cfg_nument_t { | |
232 char const *ie_vname; | |
233 gint *ie_vloc; | |
234 gboolean ie_wrt; | |
235 } bmp_cfg_nument; | |
236 | |
237 typedef struct bmp_cfg_strent_t { | |
238 char const *se_vname; | |
239 char **se_vloc; | |
240 gboolean se_wrt; | |
241 } bmp_cfg_strent; | |
242 | |
243 const gchar *bmp_titlestring_presets[] = { | |
244 "%t", | |
245 "%{p:%p - %}%t", | |
246 "%{p:%p - %}%{a:%a - %}%t", | |
247 "%{p:%p - %}%{a:%a - %}%{n:%n. %}%t", | |
248 "%{p:%p %}%{a:[ %a ] %}%{p:- %}%{n:%n. %}%{t:%t%}", | |
249 "%{a:%a - %}%t" | |
250 }; | |
251 | |
252 const guint n_titlestring_presets = G_N_ELEMENTS(bmp_titlestring_presets); | |
253 | |
254 const gchar *chardet_detector_presets[] = { | |
2364 | 255 "None", |
256 "Japanese", | |
257 "Taiwanese", | |
258 "Chinese", | |
259 "Korean", | |
260 "Russian", | |
2313 | 261 #ifdef HAVE_UDET |
2364 | 262 "Universal" |
2313 | 263 #endif |
264 }; | |
265 | |
2364 | 266 const guint n_chardet_detector_presets = G_N_ELEMENTS(chardet_detector_presets); |
2313 | 267 |
268 static bmp_cfg_boolent bmp_boolents[] = { | |
269 {"allow_multiple_instances", &cfg.allow_multiple_instances, TRUE}, | |
270 {"use_realtime", &cfg.use_realtime, TRUE}, | |
271 {"always_show_cb", &cfg.always_show_cb, TRUE}, | |
272 {"convert_underscore", &cfg.convert_underscore, TRUE}, | |
273 {"convert_twenty", &cfg.convert_twenty, TRUE}, | |
274 {"convert_slash", &cfg.convert_slash, TRUE }, | |
275 {"show_numbers_in_pl", &cfg.show_numbers_in_pl, TRUE}, | |
276 {"show_separator_in_pl", &cfg.show_separator_in_pl, TRUE}, | |
277 {"snap_windows", &cfg.snap_windows, TRUE}, | |
278 {"save_window_positions", &cfg.save_window_position, TRUE}, | |
279 {"dim_titlebar", &cfg.dim_titlebar, TRUE}, | |
280 {"get_info_on_load", &cfg.get_info_on_load, TRUE}, | |
281 {"get_info_on_demand", &cfg.get_info_on_demand, TRUE}, | |
282 {"eq_doublesize_linked", &cfg.eq_doublesize_linked, TRUE}, | |
283 {"no_playlist_advance", &cfg.no_playlist_advance, TRUE}, | |
284 {"refresh_file_list", &cfg.refresh_file_list, TRUE}, | |
285 {"sort_jump_to_file", &cfg.sort_jump_to_file, TRUE}, | |
286 {"use_pl_metadata", &cfg.use_pl_metadata, TRUE}, | |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
287 {"warn_about_win_visibility", &cfg.warn_about_win_visibility, TRUE}, |
2313 | 288 {"use_backslash_as_dir_delimiter", &cfg.use_backslash_as_dir_delimiter, TRUE}, |
289 {"player_shaded", &cfg.player_shaded, TRUE}, | |
290 {"player_visible", &cfg.player_visible, TRUE}, | |
291 {"shuffle", &cfg.shuffle, TRUE}, | |
292 {"repeat", &cfg.repeat, TRUE}, | |
293 {"doublesize", &cfg.doublesize, TRUE}, | |
294 {"autoscroll_songname", &cfg.autoscroll, TRUE}, | |
295 {"stop_after_current_song", &cfg.stopaftersong, TRUE}, | |
296 {"playlist_shaded", &cfg.playlist_shaded, TRUE}, | |
297 {"playlist_visible", &cfg.playlist_visible, TRUE}, | |
298 {"use_fontsets", &cfg.use_fontsets, TRUE}, | |
299 {"mainwin_use_xfont", &cfg.mainwin_use_xfont, FALSE}, | |
300 {"equalizer_visible", &cfg.equalizer_visible, TRUE}, | |
301 {"equalizer_active", &cfg.equalizer_active, TRUE}, | |
302 {"equalizer_shaded", &cfg.equalizer_shaded, TRUE}, | |
303 {"equalizer_autoload", &cfg.equalizer_autoload, TRUE}, | |
304 {"easy_move", &cfg.easy_move, TRUE}, | |
305 {"use_eplugins", &cfg.use_eplugins, TRUE}, | |
306 {"always_on_top", &cfg.always_on_top, TRUE}, | |
307 {"sticky", &cfg.sticky, TRUE}, | |
308 {"random_skin_on_play", &cfg.random_skin_on_play, TRUE}, | |
309 {"pause_between_songs", &cfg.pause_between_songs, TRUE}, | |
310 {"show_wm_decorations", &cfg.show_wm_decorations, TRUE}, | |
311 {"eq_extra_filtering", &cfg.eq_extra_filtering, TRUE}, | |
312 {"analyzer_peaks", &cfg.analyzer_peaks, TRUE}, | |
313 {"custom_cursors", &cfg.custom_cursors, TRUE}, | |
314 {"close_dialog_open", &cfg.close_dialog_open, TRUE}, | |
315 {"close_dialog_add", &cfg.close_dialog_add, TRUE}, | |
316 {"resume_playback_on_startup", &cfg.resume_playback_on_startup, TRUE}, | |
317 {"playlist_detect", &cfg.playlist_detect, TRUE}, | |
318 {"show_filepopup_for_tuple", &cfg.show_filepopup_for_tuple, TRUE}, | |
319 {"recurse_for_cover", &cfg.recurse_for_cover, TRUE}, | |
320 {"use_file_cover", &cfg.use_file_cover, TRUE}, | |
321 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE}, | |
322 {"use_extension_probing", &cfg.use_extension_probing, TRUE}, | |
2405 | 323 {"filepopup_showprogressbar", &cfg.filepopup_showprogressbar, TRUE}, |
2805
6295535fbf49
[svn] - add toggle button to keep jtf dialog opened on jump.
yaz
parents:
2788
diff
changeset
|
324 {"close_jtf_dialog", &cfg.close_jtf_dialog, TRUE}, |
2313 | 325 }; |
326 | |
327 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); | |
328 | |
329 static bmp_cfg_nument bmp_numents[] = { | |
330 {"player_x", &cfg.player_x, TRUE}, | |
331 {"player_y", &cfg.player_y, TRUE}, | |
332 {"timer_mode", &cfg.timer_mode, TRUE}, | |
333 {"vis_type", &cfg.vis_type, TRUE}, | |
334 {"analyzer_mode", &cfg.analyzer_mode, TRUE}, | |
335 {"analyzer_type", &cfg.analyzer_type, TRUE}, | |
336 {"scope_mode", &cfg.scope_mode, TRUE}, | |
337 {"vu_mode", &cfg.vu_mode, TRUE}, | |
338 {"voiceprint_mode", &cfg.voiceprint_mode, TRUE}, | |
339 {"vis_refresh_rate", &cfg.vis_refresh, TRUE}, | |
340 {"analyzer_falloff", &cfg.analyzer_falloff, TRUE}, | |
341 {"peaks_falloff", &cfg.peaks_falloff, TRUE}, | |
342 {"playlist_x", &cfg.playlist_x, TRUE}, | |
343 {"playlist_y", &cfg.playlist_y, TRUE}, | |
344 {"playlist_width", &cfg.playlist_width, TRUE}, | |
345 {"playlist_height", &cfg.playlist_height, TRUE}, | |
346 {"playlist_position", &cfg.playlist_position, TRUE}, | |
347 {"equalizer_x", &cfg.equalizer_x, TRUE}, | |
348 {"equalizer_y", &cfg.equalizer_y, TRUE}, | |
349 {"snap_distance", &cfg.snap_distance, TRUE}, | |
350 {"pause_between_songs_time", &cfg.pause_between_songs_time, TRUE}, | |
351 {"mouse_wheel_change", &cfg.mouse_change, TRUE}, | |
352 {"scroll_pl_by", &cfg.scroll_pl_by, TRUE}, | |
353 {"titlestring_preset", &cfg.titlestring_preset, TRUE}, | |
354 {"resume_playback_on_startup_time", &cfg.resume_playback_on_startup_time, TRUE}, | |
355 {"output_buffer_size", &cfg.output_buffer_size, TRUE}, | |
356 {"recurse_for_cover_depth", &cfg.recurse_for_cover_depth, TRUE}, | |
357 {"filepopup_pixelsize", &cfg.filepopup_pixelsize, TRUE}, | |
358 {"filepopup_delay", &cfg.filepopup_delay, TRUE}, | |
359 {"colorize_r", &cfg.colorize_r, TRUE}, | |
360 {"colorize_g", &cfg.colorize_g, TRUE}, | |
361 {"colorize_b", &cfg.colorize_b, TRUE}, | |
362 }; | |
363 | |
364 static gint ncfgient = G_N_ELEMENTS(bmp_numents); | |
365 | |
366 static bmp_cfg_strent bmp_strents[] = { | |
367 {"playlist_font", &cfg.playlist_font, TRUE}, | |
368 {"mainwin_font", &cfg.mainwin_font, TRUE}, | |
369 {"eqpreset_default_file", &cfg.eqpreset_default_file, TRUE}, | |
370 {"eqpreset_extension", &cfg.eqpreset_extension, TRUE}, | |
371 {"skin", &cfg.skin, FALSE}, | |
372 {"output_plugin", &cfg.outputplugin, FALSE}, | |
373 {"disabled_iplugins", &cfg.disabled_iplugins, TRUE}, | |
374 {"enabled_gplugins", &cfg.enabled_gplugins, FALSE}, | |
375 {"enabled_vplugins", &cfg.enabled_vplugins, FALSE}, | |
376 {"enabled_eplugins", &cfg.enabled_eplugins, FALSE}, | |
377 {"filesel_path", &cfg.filesel_path, FALSE}, | |
378 {"playlist_path", &cfg.playlist_path, FALSE}, | |
379 {"generic_title_format", &cfg.gentitle_format, TRUE}, | |
380 {"chardet_detector", &cfg.chardet_detector, TRUE}, | |
381 {"chardet_fallback", &cfg.chardet_fallback, TRUE}, | |
382 {"cover_name_include", &cfg.cover_name_include, TRUE}, | |
383 {"cover_name_exclude", &cfg.cover_name_exclude, TRUE}, | |
384 {"session_uri_base", &cfg.session_uri_base, TRUE} | |
385 }; | |
386 | |
387 static gint ncfgsent = G_N_ELEMENTS(bmp_strents); | |
388 | |
389 gchar *bmp_paths[BMP_PATH_COUNT] = {}; | |
390 | |
391 GList *dock_window_list = NULL; | |
392 | |
393 gboolean pposition_broken = FALSE; | |
394 | |
395 gboolean starting_up = TRUE; | |
396 | |
397 /* XXX: case-sensitivity is bad for lazy nenolods. :( -nenolod */ | |
398 static gchar *pl_candidates[] = { | |
2364 | 399 PLUGIN_FILENAME("ALSA"), |
400 PLUGIN_FILENAME("coreaudio"), | |
401 PLUGIN_FILENAME("OSS"), | |
402 PLUGIN_FILENAME("sun"), | |
403 PLUGIN_FILENAME("ESD"), | |
404 PLUGIN_FILENAME("pulse_audio"), | |
405 PLUGIN_FILENAME("disk_writer"), | |
406 NULL | |
2313 | 407 }; |
408 | |
409 GCond *cond_scan; | |
410 GMutex *mutex_scan; | |
411 | |
412 static GSList * | |
413 get_feature_list(void) | |
414 { | |
415 GSList *features = NULL; | |
416 | |
417 #ifdef HAVE_GCONF | |
418 features = g_slist_append(features, "GConf"); | |
419 #endif | |
420 | |
421 return features; | |
422 } | |
423 | |
424 static void | |
425 dump_version(void) | |
426 { | |
427 GSList *features; | |
428 | |
429 g_printf("%s %s [%s]", _(application_name), VERSION, svn_stamp); | |
430 | |
431 features = get_feature_list(); | |
432 | |
433 if (features) { | |
434 GSList *item; | |
435 | |
436 g_printf(" ("); | |
437 | |
438 for (item = features; g_slist_next(item); item = g_slist_next(item)) | |
439 g_printf("%s, ", (const gchar *) item->data); | |
440 | |
441 g_printf("%s)", (const gchar *) item->data); | |
442 | |
443 g_slist_free(features); | |
444 } | |
445 | |
446 g_printf("\n"); | |
447 } | |
448 | |
449 const gchar * | |
450 xmms_get_gentitle_format(void) | |
451 { | |
452 guint titlestring_preset = cfg.titlestring_preset; | |
453 | |
454 if (titlestring_preset < n_titlestring_presets) | |
2364 | 455 return bmp_titlestring_presets[titlestring_preset]; |
2313 | 456 |
457 return cfg.gentitle_format; | |
458 } | |
459 | |
460 void | |
461 make_directory(const gchar * path, mode_t mode) | |
462 { | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
463 if (g_mkdir_with_parents(path, mode) == 0) |
2313 | 464 return; |
465 | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
466 g_printerr(_("Could not create directory (%s): %s\n"), path, |
2313 | 467 g_strerror(errno)); |
468 } | |
469 | |
470 static void | |
471 bmp_make_user_dir(void) | |
472 { | |
473 const mode_t mode755 = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; | |
474 | |
475 make_directory(bmp_paths[BMP_PATH_USER_DIR], mode755); | |
476 make_directory(bmp_paths[BMP_PATH_USER_PLUGIN_DIR], mode755); | |
477 make_directory(bmp_paths[BMP_PATH_USER_SKIN_DIR], mode755); | |
478 make_directory(bmp_paths[BMP_PATH_SKIN_THUMB_DIR], mode755); | |
479 } | |
480 | |
481 static void | |
482 bmp_free_paths(void) | |
483 { | |
484 int i; | |
485 | |
486 for (i = 0; i < BMP_PATH_COUNT; i++) | |
487 { | |
488 g_free(bmp_paths[i]); | |
489 bmp_paths[i] = 0; | |
490 } | |
491 } | |
492 | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
493 static void |
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
494 bmp_init_paths() |
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
495 { |
2364 | 496 char *xdg_config_home; |
497 char *xdg_data_home; | |
498 char *xdg_cache_home; | |
2313 | 499 |
2364 | 500 xdg_config_home = (getenv("XDG_CONFIG_HOME") == NULL |
501 ? g_build_filename(g_get_home_dir(), ".config", NULL) | |
502 : g_strdup(getenv("XDG_CONFIG_HOME"))); | |
503 xdg_data_home = (getenv("XDG_DATA_HOME") == NULL | |
504 ? g_build_filename(g_get_home_dir(), ".local", "share", NULL) | |
505 : g_strdup(getenv("XDG_DATA_HOME"))); | |
506 xdg_cache_home = (getenv("XDG_CACHE_HOME") == NULL | |
507 ? g_build_filename(g_get_home_dir(), ".cache", NULL) | |
508 : g_strdup(getenv("XDG_CACHE_HOME"))); | |
2313 | 509 |
2364 | 510 bmp_paths[BMP_PATH_USER_DIR] = |
511 g_build_filename(xdg_config_home, "audacious", NULL); | |
512 bmp_paths[BMP_PATH_USER_SKIN_DIR] = | |
513 g_build_filename(xdg_data_home, "audacious", "Skins", NULL); | |
514 bmp_paths[BMP_PATH_USER_PLUGIN_DIR] = | |
2506
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
515 g_build_filename(xdg_data_home, "audacious", "Plugins", NULL); |
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
516 |
2364 | 517 bmp_paths[BMP_PATH_SKIN_THUMB_DIR] = |
518 g_build_filename(xdg_cache_home, "audacious", "thumbs", NULL); | |
2313 | 519 |
2364 | 520 bmp_paths[BMP_PATH_CONFIG_FILE] = |
521 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], "config", NULL); | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
522 #ifdef HAVE_XSPF_PLAYLIST |
2364 | 523 bmp_paths[BMP_PATH_PLAYLIST_FILE] = |
524 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], | |
525 "playlist.xspf", NULL); | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
526 #else |
2364 | 527 bmp_paths[BMP_PATH_PLAYLIST_FILE] = |
528 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], | |
529 "playlist.m3u", NULL); | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
530 #endif |
2364 | 531 bmp_paths[BMP_PATH_ACCEL_FILE] = |
532 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], "accels", NULL); | |
533 bmp_paths[BMP_PATH_LOG_FILE] = | |
534 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], "log", NULL); | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
535 |
2463 | 536 bmp_paths[BMP_PATH_GTKRC_FILE] = |
2570 | 537 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], "gtkrc", NULL); |
2463 | 538 |
2364 | 539 g_free(xdg_config_home); |
540 g_free(xdg_data_home); | |
541 g_free(xdg_cache_home); | |
2317
49d285f6008b
[svn] Full support for XDG basedir added. The old config doesn't get automatically converted yet.
js
parents:
2313
diff
changeset
|
542 |
2364 | 543 g_atexit(bmp_free_paths); |
2313 | 544 } |
545 | |
546 void | |
2682
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
547 bmp_config_free(void) |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
548 { |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
549 gint i; |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
550 for (i = 0; i < ncfgsent; ++i) { |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
551 if ( *(bmp_strents[i].se_vloc) != NULL ) |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
552 { |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
553 g_free( *(bmp_strents[i].se_vloc) ); |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
554 *(bmp_strents[i].se_vloc) = NULL; |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
555 } |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
556 } |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
557 } |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
558 |
c3cd6e47faf6
[svn] - make the evil 'reload plugins' button behave a bit better
giacomo
parents:
2662
diff
changeset
|
559 void |
2313 | 560 bmp_config_load(void) |
561 { | |
562 ConfigDb *db; | |
563 gint i, length; | |
564 | |
565 memcpy(&cfg, &bmp_default_config, sizeof(BmpConfig)); | |
566 | |
567 db = bmp_cfg_db_open(); | |
568 for (i = 0; i < ncfgbent; ++i) { | |
569 bmp_cfg_db_get_bool(db, NULL, | |
570 bmp_boolents[i].be_vname, | |
571 bmp_boolents[i].be_vloc); | |
572 } | |
573 | |
574 for (i = 0; i < ncfgient; ++i) { | |
575 bmp_cfg_db_get_int(db, NULL, | |
576 bmp_numents[i].ie_vname, | |
577 bmp_numents[i].ie_vloc); | |
578 } | |
579 | |
580 for (i = 0; i < ncfgsent; ++i) { | |
581 bmp_cfg_db_get_string(db, NULL, | |
582 bmp_strents[i].se_vname, | |
583 bmp_strents[i].se_vloc); | |
584 } | |
585 | |
586 /* Preset */ | |
587 bmp_cfg_db_get_float(db, NULL, "equalizer_preamp", &cfg.equalizer_preamp); | |
588 for (i = 0; i < 10; i++) { | |
589 gchar eqtext[18]; | |
590 | |
591 g_snprintf(eqtext, sizeof(eqtext), "equalizer_band%d", i); | |
592 bmp_cfg_db_get_float(db, NULL, eqtext, &cfg.equalizer_bands[i]); | |
593 } | |
594 | |
595 /* History */ | |
596 if (bmp_cfg_db_get_int(db, NULL, "url_history_length", &length)) { | |
597 for (i = 1; i <= length; i++) { | |
598 gchar str[19], *tmp; | |
599 | |
600 g_snprintf(str, sizeof(str), "url_history%d", i); | |
601 if (bmp_cfg_db_get_string(db, NULL, str, &tmp)) | |
602 cfg.url_history = g_list_append(cfg.url_history, tmp); | |
603 } | |
604 } | |
605 | |
606 bmp_cfg_db_close(db); | |
607 | |
608 | |
609 if (cfg.playlist_font && strlen(cfg.playlist_font) == 0) { | |
610 g_free(cfg.playlist_font); | |
611 cfg.playlist_font = NULL; | |
612 } | |
613 | |
614 if (cfg.mainwin_font && strlen(cfg.mainwin_font) == 0) { | |
615 g_free(cfg.mainwin_font); | |
616 cfg.mainwin_font = NULL; | |
617 } | |
618 | |
619 if (!cfg.playlist_font) | |
620 cfg.playlist_font = g_strdup(PLAYLISTWIN_DEFAULT_FONT); | |
621 | |
622 if (!cfg.mainwin_font) | |
623 cfg.mainwin_font = g_strdup(MAINWIN_DEFAULT_FONT); | |
624 | |
625 if (!cfg.gentitle_format) | |
626 cfg.gentitle_format = g_strdup("%{p:%p - %}%{a:%a - %}%t"); | |
627 | |
628 if (!cfg.outputplugin) { | |
2364 | 629 gint iter; |
2313 | 630 gchar *pl_path = g_build_filename(PLUGIN_DIR, plugin_dir_list[0], NULL); |
631 | |
632 for (iter = 0; pl_candidates[iter] != NULL && cfg.outputplugin == NULL; iter++) | |
2364 | 633 { |
634 cfg.outputplugin = find_file_recursively(pl_path, pl_candidates[iter]); | |
635 } | |
2313 | 636 |
637 g_free(pl_path); | |
638 } | |
639 | |
640 if (!cfg.eqpreset_default_file) | |
641 cfg.eqpreset_default_file = g_strdup(EQUALIZER_DEFAULT_DIR_PRESET); | |
642 | |
643 if (!cfg.eqpreset_extension) | |
644 cfg.eqpreset_extension = g_strdup(EQUALIZER_DEFAULT_PRESET_EXT); | |
645 | |
646 if (!cfg.chardet_detector) | |
647 cfg.chardet_detector = g_strdup(""); | |
648 | |
649 if (!cfg.chardet_fallback) | |
650 cfg.chardet_fallback = g_strdup(""); | |
651 | |
652 if (!cfg.cover_name_include) | |
2364 | 653 cfg.cover_name_include = g_strdup(""); |
2313 | 654 |
655 if (!cfg.cover_name_exclude) | |
2364 | 656 cfg.cover_name_exclude = g_strdup("back"); |
2313 | 657 |
658 if (!cfg.session_uri_base) | |
659 cfg.session_uri_base = g_strdup(""); | |
660 | |
661 /* at least one of these should be true */ | |
662 if ((!cfg.get_info_on_demand) && (!cfg.get_info_on_load)) | |
663 cfg.get_info_on_demand = TRUE; | |
664 } | |
665 | |
666 | |
667 void | |
668 bmp_config_save(void) | |
669 { | |
670 GList *node; | |
671 gchar *str; | |
672 gint i, cur_pb_time; | |
673 ConfigDb *db; | |
674 Playlist *playlist = playlist_get_active(); | |
675 | |
676 cfg.disabled_iplugins = input_stringify_disabled_list(); | |
677 | |
678 | |
679 db = bmp_cfg_db_open(); | |
680 | |
681 for (i = 0; i < ncfgbent; ++i) | |
682 if (bmp_boolents[i].be_wrt) | |
683 bmp_cfg_db_set_bool(db, NULL, | |
684 bmp_boolents[i].be_vname, | |
685 *bmp_boolents[i].be_vloc); | |
686 | |
687 for (i = 0; i < ncfgient; ++i) | |
688 if (bmp_numents[i].ie_wrt) | |
689 bmp_cfg_db_set_int(db, NULL, | |
690 bmp_numents[i].ie_vname, | |
691 *bmp_numents[i].ie_vloc); | |
692 | |
693 /* This is a bit lame .. it'll end up being written twice, | |
694 * could do with being done a bit neater. -larne */ | |
695 bmp_cfg_db_set_int(db, NULL, "playlist_position", | |
696 playlist_get_position(playlist)); | |
697 | |
2530 | 698 /* FIXME: we're looking up SkinnedWindow::x &c ourselves here. |
699 * this isn't exactly right. -nenolod | |
700 */ | |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
701 if ( SKINNED_WINDOW(playlistwin)->x != -1 && |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
702 SKINNED_WINDOW(playlistwin)->y != -1 ) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
703 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
704 bmp_cfg_db_set_int(db, NULL, "playlist_x", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
705 SKINNED_WINDOW(playlistwin)->x); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
706 bmp_cfg_db_set_int(db, NULL, "playlist_y", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
707 SKINNED_WINDOW(playlistwin)->y); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
708 } |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
709 |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
710 if ( SKINNED_WINDOW(mainwin)->x != -1 && |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
711 SKINNED_WINDOW(mainwin)->y != -1 ) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
712 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
713 bmp_cfg_db_set_int(db, NULL, "player_x", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
714 SKINNED_WINDOW(mainwin)->x); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
715 bmp_cfg_db_set_int(db, NULL, "player_y", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
716 SKINNED_WINDOW(mainwin)->y); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
717 } |
2530 | 718 |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
719 if ( SKINNED_WINDOW(equalizerwin)->x != -1 && |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
720 SKINNED_WINDOW(equalizerwin)->y != -1 ) |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
721 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
722 bmp_cfg_db_set_int(db, NULL, "equalizer_x", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
723 SKINNED_WINDOW(equalizerwin)->x); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
724 bmp_cfg_db_set_int(db, NULL, "equalizer_y", |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
725 SKINNED_WINDOW(equalizerwin)->y); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
726 } |
2530 | 727 |
2313 | 728 bmp_cfg_db_set_bool(db, NULL, "mainwin_use_xfont", |
2364 | 729 cfg.mainwin_use_xfont); |
2313 | 730 |
731 for (i = 0; i < ncfgsent; ++i) { | |
732 if (bmp_strents[i].se_wrt) | |
733 bmp_cfg_db_set_string(db, NULL, | |
734 bmp_strents[i].se_vname, | |
735 *bmp_strents[i].se_vloc); | |
736 } | |
737 | |
738 bmp_cfg_db_set_float(db, NULL, "equalizer_preamp", cfg.equalizer_preamp); | |
739 | |
740 for (i = 0; i < 10; i++) { | |
741 str = g_strdup_printf("equalizer_band%d", i); | |
742 bmp_cfg_db_set_float(db, NULL, str, cfg.equalizer_bands[i]); | |
743 g_free(str); | |
744 } | |
745 | |
746 if (bmp_active_skin != NULL) | |
747 { | |
748 if (bmp_active_skin->path) | |
749 bmp_cfg_db_set_string(db, NULL, "skin", bmp_active_skin->path); | |
750 else | |
751 bmp_cfg_db_unset_key(db, NULL, "skin"); | |
752 } | |
753 | |
754 if (get_current_output_plugin()) | |
755 bmp_cfg_db_set_string(db, NULL, "output_plugin", | |
756 get_current_output_plugin()->filename); | |
757 else | |
758 bmp_cfg_db_unset_key(db, NULL, "output_plugin"); | |
759 | |
760 str = general_stringify_enabled_list(); | |
761 if (str) { | |
762 bmp_cfg_db_set_string(db, NULL, "enabled_gplugins", str); | |
763 g_free(str); | |
764 } | |
765 else | |
766 bmp_cfg_db_unset_key(db, NULL, "enabled_gplugins"); | |
767 | |
768 str = vis_stringify_enabled_list(); | |
769 if (str) { | |
770 bmp_cfg_db_set_string(db, NULL, "enabled_vplugins", str); | |
771 g_free(str); | |
772 } | |
773 else | |
774 bmp_cfg_db_unset_key(db, NULL, "enabled_vplugins"); | |
775 | |
776 str = effect_stringify_enabled_list(); | |
777 if (str) { | |
778 bmp_cfg_db_set_string(db, NULL, "enabled_eplugins", str); | |
779 g_free(str); | |
780 } | |
781 else | |
782 bmp_cfg_db_unset_key(db, NULL, "enabled_eplugins"); | |
783 | |
784 if (cfg.filesel_path) | |
785 bmp_cfg_db_set_string(db, NULL, "filesel_path", cfg.filesel_path); | |
786 | |
787 if (cfg.playlist_path) | |
788 bmp_cfg_db_set_string(db, NULL, "playlist_path", cfg.playlist_path); | |
789 | |
790 bmp_cfg_db_set_int(db, NULL, "url_history_length", | |
791 g_list_length(cfg.url_history)); | |
792 | |
793 for (node = cfg.url_history, i = 1; node; node = g_list_next(node), i++) { | |
794 str = g_strdup_printf("url_history%d", i); | |
795 bmp_cfg_db_set_string(db, NULL, str, node->data); | |
796 g_free(str); | |
797 } | |
798 | |
799 if (playback_get_playing()) { | |
2364 | 800 cur_pb_time = playback_get_time(); |
2313 | 801 } else |
2364 | 802 cur_pb_time = -1; |
2313 | 803 cfg.resume_playback_on_startup_time = cur_pb_time; |
804 bmp_cfg_db_set_int(db, NULL, "resume_playback_on_startup_time", | |
2364 | 805 cfg.resume_playback_on_startup_time); |
2313 | 806 |
807 bmp_cfg_db_close(db); | |
808 | |
809 playlist_save(playlist, bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
810 } | |
811 | |
812 static void | |
813 bmp_set_default_icon(void) | |
814 { | |
815 GdkPixbuf *icon; | |
816 | |
817 icon = gdk_pixbuf_new_from_xpm_data((const gchar **) audacious_player_xpm); | |
818 gtk_window_set_default_icon(icon); | |
819 g_object_unref(icon); | |
820 } | |
821 | |
822 static void | |
823 register_aud_stock_icons(void) | |
824 { | |
825 GtkIconFactory *iconfactory = gtk_icon_factory_new(); | |
826 GtkIconSet *iconset; | |
827 GdkPixbuf *pixbuf; | |
828 | |
829 /* pick images in icons-csource.h */ | |
830 pixbuf = gdk_pixbuf_new_from_inline( -1 , removedups_pixbuf , FALSE , NULL ); | |
831 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
832 gtk_icon_factory_add( iconfactory , AUD_STOCK_REMOVEDUPS , iconset ); | |
833 pixbuf = gdk_pixbuf_new_from_inline( -1 , removeunavail_pixbuf , FALSE , NULL ); | |
834 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
835 gtk_icon_factory_add( iconfactory , AUD_STOCK_REMOVEUNAVAIL , iconset ); | |
836 pixbuf = gdk_pixbuf_new_from_inline( -1 , randomizepl_pixbuf , FALSE , NULL ); | |
837 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
838 gtk_icon_factory_add( iconfactory , AUD_STOCK_RANDOMIZEPL , iconset ); | |
839 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbytitle_pixbuf , FALSE , NULL ); | |
840 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
841 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYTITLE , iconset ); | |
842 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbyfilename_pixbuf , FALSE , NULL ); | |
843 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
844 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYFILENAME , iconset ); | |
845 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbyartist_pixbuf , FALSE , NULL ); | |
846 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
847 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYARTIST , iconset ); | |
848 pixbuf = gdk_pixbuf_new_from_inline( -1 , sortbypathfile_pixbuf , FALSE , NULL ); | |
849 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
850 gtk_icon_factory_add( iconfactory , AUD_STOCK_SORTBYPATHFILE , iconset ); | |
851 pixbuf = gdk_pixbuf_new_from_inline( -1 , selectnone_pixbuf , FALSE , NULL ); | |
852 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
853 gtk_icon_factory_add( iconfactory , AUD_STOCK_SELECTNONE , iconset ); | |
854 pixbuf = gdk_pixbuf_new_from_inline( -1 , selectall_pixbuf , FALSE , NULL ); | |
855 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
856 gtk_icon_factory_add( iconfactory , AUD_STOCK_SELECTALL , iconset ); | |
857 pixbuf = gdk_pixbuf_new_from_inline( -1 , selectinvert_pixbuf , FALSE , NULL ); | |
858 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
859 gtk_icon_factory_add( iconfactory , AUD_STOCK_SELECTINVERT , iconset ); | |
860 pixbuf = gdk_pixbuf_new_from_inline( -1 , invertpl_pixbuf , FALSE , NULL ); | |
861 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
862 gtk_icon_factory_add( iconfactory , AUD_STOCK_INVERTPL , iconset ); | |
863 pixbuf = gdk_pixbuf_new_from_inline( -1 , queuetoggle_pixbuf , FALSE , NULL ); | |
864 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
865 gtk_icon_factory_add( iconfactory , AUD_STOCK_QUEUETOGGLE , iconset ); | |
866 pixbuf = gdk_pixbuf_new_from_inline( -1 , info_pixbuf , FALSE , NULL ); | |
867 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
868 gtk_icon_factory_add( iconfactory , AUD_STOCK_INFO , iconset ); | |
869 pixbuf = gdk_pixbuf_new_from_inline( -1 , playlist_pixbuf , FALSE , NULL ); | |
870 iconset = gtk_icon_set_new_from_pixbuf( pixbuf ); g_object_unref( pixbuf ); | |
871 gtk_icon_factory_add( iconfactory , AUD_STOCK_PLAYLIST , iconset ); | |
872 | |
873 gtk_icon_factory_add_default( iconfactory ); | |
874 g_object_unref( iconfactory ); | |
875 } | |
876 | |
2411 | 877 static GOptionEntry cmd_entries[] = { |
2448
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
878 {"session", 'n', 0, G_OPTION_ARG_INT, &options.session, N_("Select which Audacious session ID to use"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
879 {"rew", 'r', 0, G_OPTION_ARG_NONE, &options.rew, N_("Skip backwards in playlist"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
880 {"play", 'p', 0, G_OPTION_ARG_NONE, &options.play, N_("Start playing current playlist"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
881 {"pause", 'u', 0, G_OPTION_ARG_NONE, &options.pause, N_("Pause current song"), NULL}, |
2475 | 882 {"stop", 's', 0, G_OPTION_ARG_NONE, &options.stop, N_("Stop current song"), NULL}, |
2551
cea3528b2996
[svn] Fix --play-pause commandline option, by Alex "Monkey" Maclean in #gentoo-x86
chainsaw
parents:
2530
diff
changeset
|
883 {"play-pause", 't', 0, G_OPTION_ARG_NONE, &options.play_pause, N_("Pause if playing, play otherwise"), NULL}, |
2448
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
884 {"fwd", 'f', 0, G_OPTION_ARG_NONE, &options.fwd, N_("Skip forward in playlist"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
885 {"show-jump-box", 'j', 0, G_OPTION_ARG_NONE, &options.show_jump_box, N_("Display Jump to File dialog"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
886 {"enqueue", 'e', 0, G_OPTION_ARG_NONE, &options.enqueue, N_("Don't clear the playlist"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
887 {"enqueue-to-temp", 'E', 0, G_OPTION_ARG_NONE, &options.enqueue_to_temp, N_("Add new files to a temporary playlist"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
888 {"show-main-window", 'm', 0, G_OPTION_ARG_NONE, &options.mainwin, N_("Display the main window"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
889 {"activate", 'a', 0, G_OPTION_ARG_NONE, &options.activate, N_("Display all open Audacious windows"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
890 {"headless", 'H', 0, G_OPTION_ARG_NONE, &options.headless, N_("Enable headless operation"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
891 {"no-log", 'N', 0, G_OPTION_ARG_NONE, &options.no_log, N_("Print all errors and warnings to stdout"), NULL}, |
ff135e2ba10e
[svn] - mark some strings used by GOption as translatable
nenolod
parents:
2420
diff
changeset
|
892 {"version", 'v', 0, G_OPTION_ARG_NONE, &options.version, N_("Show version and builtin features"), NULL}, |
2411 | 893 {G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &options.filenames, N_("FILE..."), NULL}, |
894 {NULL}, | |
895 }; | |
2313 | 896 |
897 static void | |
898 handle_cmd_line_options(BmpCmdLineOpt * options, | |
899 gboolean remote) | |
900 { | |
2411 | 901 gchar **filenames = options->filenames; |
2785 | 902 #ifdef USE_DBUS |
903 DBusGProxy *session = audacious_get_dbus_proxy(); | |
904 printf("session = %p\n", session); | |
2727
14f9a629ba9c
[svn] - rename xmms_remote namespace to audacious_remote namespace
nenolod
parents:
2717
diff
changeset
|
905 #endif |
2313 | 906 |
2411 | 907 if (options->version) |
908 { | |
909 dump_version(); | |
910 exit(EXIT_SUCCESS); | |
911 } | |
912 | |
2788
b2b920b165ad
[svn] - exclude codes which use session if USE_DBUS is not defined.
yaz
parents:
2786
diff
changeset
|
913 #ifdef USE_DBUS |
2411 | 914 if (filenames != NULL) |
915 { | |
2313 | 916 gint pos = 0; |
2411 | 917 gint i = 0; |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
918 GList *fns = NULL; |
2313 | 919 |
2411 | 920 for (i = 0; filenames[i] != NULL; i++) |
921 { | |
2570 | 922 gchar *filename; |
2512
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
923 gchar *current_dir = g_get_current_dir(); |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
924 |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
925 if (filenames[i][0] == '/' || strstr(filenames[i], "://")) |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
926 filename = g_strdup(filenames[i]); |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
927 else |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
928 filename = g_build_filename(current_dir, filenames[i], NULL); |
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
929 |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
930 fns = g_list_prepend(fns, filename); |
2313 | 931 |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
932 g_free(current_dir); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
933 } |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
934 |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
935 fns = g_list_reverse(fns); |
2411 | 936 |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
937 if (options->load_skins) |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
938 { |
2727
14f9a629ba9c
[svn] - rename xmms_remote namespace to audacious_remote namespace
nenolod
parents:
2717
diff
changeset
|
939 audacious_remote_set_skin(session, filenames[0]); |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
940 skin_install_skin(filenames[0]); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
941 } |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
942 else |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
943 { |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
944 if (options->enqueue_to_temp) |
2727
14f9a629ba9c
[svn] - rename xmms_remote namespace to audacious_remote namespace
nenolod
parents:
2717
diff
changeset
|
945 audacious_remote_playlist_enqueue_to_temp(session, filenames[0]); |
2411 | 946 |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
947 if (options->enqueue && options->play) |
2727
14f9a629ba9c
[svn] - rename xmms_remote namespace to audacious_remote namespace
nenolod
parents:
2717
diff
changeset
|
948 pos = audacious_remote_get_playlist_length(session); |
2313 | 949 |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
950 if (!options->enqueue) |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
951 { |
2727
14f9a629ba9c
[svn] - rename xmms_remote namespace to audacious_remote namespace
nenolod
parents:
2717
diff
changeset
|
952 audacious_remote_playlist_clear(session); |
14f9a629ba9c
[svn] - rename xmms_remote namespace to audacious_remote namespace
nenolod
parents:
2717
diff
changeset
|
953 audacious_remote_stop(session); |
2411 | 954 } |
2512
3a1fc6f7c187
[svn] - unbreak relative path support. closes #791.
nenolod
parents:
2506
diff
changeset
|
955 |
2727
14f9a629ba9c
[svn] - rename xmms_remote namespace to audacious_remote namespace
nenolod
parents:
2717
diff
changeset
|
956 audacious_remote_playlist_add(session, fns); |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
957 |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
958 if (options->enqueue && options->play && |
2727
14f9a629ba9c
[svn] - rename xmms_remote namespace to audacious_remote namespace
nenolod
parents:
2717
diff
changeset
|
959 audacious_remote_get_playlist_length(session) > pos) |
14f9a629ba9c
[svn] - rename xmms_remote namespace to audacious_remote namespace
nenolod
parents:
2717
diff
changeset
|
960 audacious_remote_set_playlist_pos(session, pos); |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
961 |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
962 if (!options->enqueue) |
2727
14f9a629ba9c
[svn] - rename xmms_remote namespace to audacious_remote namespace
nenolod
parents:
2717
diff
changeset
|
963 audacious_remote_play(session); |
2313 | 964 } |
965 | |
2605
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
966 g_list_foreach(fns, (GFunc) g_free, NULL); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
967 g_list_free(fns); |
1ceaf00f9c6d
[svn] - fix handling of multiple files on the command line.
nenolod
parents:
2574
diff
changeset
|
968 |
2411 | 969 g_strfreev(filenames); |
2786 | 970 } /* filename */ |
2313 | 971 |
2832 | 972 if (remote) { |
973 if (options->rew) | |
974 audacious_remote_playlist_prev(session); | |
2313 | 975 |
2832 | 976 if (options->play) |
977 audacious_remote_play(session); | |
2313 | 978 |
2832 | 979 if (options->pause) |
980 audacious_remote_pause(session); | |
2313 | 981 |
2832 | 982 if (options->stop) |
983 audacious_remote_stop(session); | |
2313 | 984 |
2832 | 985 if (options->fwd) |
986 audacious_remote_playlist_next(session); | |
2313 | 987 |
2832 | 988 if (options->play_pause) |
989 audacious_remote_play_pause(session); | |
2313 | 990 |
2832 | 991 if (options->show_jump_box) |
992 audacious_remote_show_jtf_box(session); | |
2313 | 993 |
2832 | 994 if (options->mainwin) |
995 audacious_remote_main_win_toggle(session, TRUE); | |
2313 | 996 |
2832 | 997 if (options->activate) |
998 audacious_remote_activate(session); | |
2313 | 999 |
2832 | 1000 if (options->playcd) |
1001 play_medium(); | |
1002 } | |
2785 | 1003 |
1004 printf("remote = %d\n", remote); | |
2786 | 1005 if(remote) { |
2785 | 1006 gboolean is_running = audacious_remote_is_running(session); |
1007 printf("is_running %d\n", is_running); | |
1008 if (is_running) | |
1009 exit(EXIT_SUCCESS); | |
1010 } | |
2788
b2b920b165ad
[svn] - exclude codes which use session if USE_DBUS is not defined.
yaz
parents:
2786
diff
changeset
|
1011 #endif |
2313 | 1012 } |
1013 | |
1014 static void | |
1015 bmp_setup_logger(void) | |
1016 { | |
1017 if (!bmp_logger_start(bmp_paths[BMP_PATH_LOG_FILE])) | |
1018 return; | |
1019 | |
1020 g_atexit(bmp_logger_stop); | |
1021 } | |
1022 | |
1023 static void | |
1024 run_load_skin_error_dialog(const gchar * skin_path) | |
1025 { | |
1026 const gchar *markup = | |
1027 N_("<b><big>Unable to load skin.</big></b>\n" | |
1028 "\n" | |
1029 "Check that skin at '%s' is usable and default skin is properly " | |
1030 "installed at '%s'\n"); | |
1031 | |
1032 GtkWidget *dialog = | |
1033 gtk_message_dialog_new_with_markup(NULL, | |
1034 GTK_DIALOG_MODAL, | |
1035 GTK_MESSAGE_ERROR, | |
1036 GTK_BUTTONS_CLOSE, | |
1037 _(markup), | |
1038 skin_path, | |
1039 BMP_DEFAULT_SKIN_PATH); | |
1040 gtk_dialog_run(GTK_DIALOG(dialog)); | |
1041 gtk_widget_destroy(dialog); | |
1042 } | |
1043 | |
1044 // use a format string? | |
1045 void report_error(const gchar *error_text) | |
1046 { | |
2364 | 1047 fprintf(stderr, error_text); |
2570 | 1048 |
1049 if (options.headless != 1) | |
1050 { | |
2313 | 1051 gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(err), |
1052 error_text); | |
1053 gtk_dialog_run(GTK_DIALOG(err)); | |
1054 gtk_widget_hide(err); | |
1055 } | |
1056 } | |
1057 | |
2369 | 1058 static gboolean |
1059 aud_headless_iteration(gpointer unused) | |
1060 { | |
2506
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1061 audcore_generic_events(); |
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1062 free_vis_data(); |
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1063 return TRUE; |
2369 | 1064 } |
1065 | |
2313 | 1066 gint |
1067 main(gint argc, gchar ** argv) | |
1068 { | |
1069 gboolean gtk_init_check_ok; | |
1070 Playlist *playlist; | |
2411 | 1071 GOptionContext *context; |
1072 GError *error = NULL; | |
2313 | 1073 |
2644
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1074 /* glib-2.13.0 requires g_thread_init() to be called before all |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1075 other GLib functions */ |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1076 g_thread_init(NULL); |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1077 if (!g_thread_supported()) { |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1078 g_printerr(_("Sorry, threads isn't supported on your platform.\n\n" |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1079 "If you're on a libc5 based linux system and installed Glib & GTK+ before you\n" |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1080 "installed LinuxThreads you need to recompile Glib & GTK+.\n")); |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1081 exit(EXIT_FAILURE); |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1082 } |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1083 |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1084 gdk_threads_init(); |
67082557b2c4
[svn] - glib-2.13.0 requires g_thread_init() to be called before all other GLib functions.
yaz
parents:
2605
diff
changeset
|
1085 |
2313 | 1086 /* Setup l10n early so we can print localized error messages */ |
1087 gtk_set_locale(); | |
1088 bindtextdomain(PACKAGE_NAME, LOCALEDIR); | |
1089 bind_textdomain_codeset(PACKAGE_NAME, "UTF-8"); | |
2388
52bcc18eb8bb
[svn] - attempt to bind the audacious-plugins domain
nenolod
parents:
2369
diff
changeset
|
1090 bindtextdomain(PACKAGE_NAME "-plugins", LOCALEDIR); |
52bcc18eb8bb
[svn] - attempt to bind the audacious-plugins domain
nenolod
parents:
2369
diff
changeset
|
1091 bind_textdomain_codeset(PACKAGE_NAME "-plugins", "UTF-8"); |
2313 | 1092 textdomain(PACKAGE_NAME); |
1093 | |
1094 bmp_init_paths(); | |
1095 bmp_make_user_dir(); | |
1096 | |
1097 /* Check GTK version. Really, this is only needed for binary | |
1098 * distribution since configure already checks. */ | |
1099 if (!GTK_CHECK_VERSION(2, 6, 0)) { | |
1100 g_printerr(_("Sorry, your GTK+ version (%d.%d.%d) does not work with Audacious.\n" | |
1101 "Please use GTK+ %s or newer.\n"), | |
1102 gtk_major_version, gtk_minor_version, gtk_micro_version, | |
1103 "2.6.0"); | |
1104 exit(EXIT_FAILURE); | |
1105 } | |
1106 | |
1107 g_set_application_name(_(application_name)); | |
1108 | |
1109 cond_scan = g_cond_new(); | |
1110 mutex_scan = g_mutex_new(); | |
1111 | |
2463 | 1112 gtk_rc_add_default_file(bmp_paths[BMP_PATH_GTKRC_FILE]); |
1113 | |
2313 | 1114 gtk_init_check_ok = gtk_init_check(&argc, &argv); |
2411 | 1115 |
2413 | 1116 memset(&options, '\0', sizeof(BmpCmdLineOpt)); |
1117 options.session = -1; | |
1118 | |
2411 | 1119 context = g_option_context_new(_("- play multimedia files")); |
1120 g_option_context_add_main_entries(context, cmd_entries, PACKAGE_NAME); | |
1121 g_option_context_add_group(context, gtk_get_option_group(TRUE)); | |
1122 g_option_context_parse(context, &argc, &argv, &error); | |
1123 | |
2412 | 1124 if (error != NULL) |
1125 { | |
1126 g_printerr(_("%s: %s\nTry `%s --help' for more information.\n"), argv[0], error->message, argv[0]); | |
1127 exit(EXIT_FAILURE); | |
1128 } | |
1129 | |
2313 | 1130 if (!gtk_init_check_ok) { |
1131 if (argc < 2) { | |
1132 /* GTK check failed, and no arguments passed to indicate | |
1133 that user is intending to only remote control a running | |
1134 session */ | |
2412 | 1135 g_printerr(_("%s: Unable to open display, exiting.\n"), argv[0]); |
2313 | 1136 exit(EXIT_FAILURE); |
1137 } | |
1138 | |
1139 handle_cmd_line_options(&options, TRUE); | |
1140 | |
1141 /* we could be running headless, so GTK probably wont matter */ | |
1142 if (options.headless != 1) | |
1143 exit(EXIT_SUCCESS); | |
1144 } | |
1145 | |
1146 if (options.no_log == FALSE) | |
1147 bmp_setup_logger(); | |
1148 | |
1149 signal_handlers_init(); | |
1150 | |
1151 g_random_set_seed(time(NULL)); | |
1152 | |
1153 bmp_config_load(); | |
1154 | |
2736 | 1155 handle_cmd_line_options(&options, TRUE); |
2313 | 1156 |
2733
cf080b11c3fa
[svn] Implemented more of the stubs in audctrl; Added more methods to objects.xml with implementations in dbus.c. I'm still trying to get plugins working with libaudclient.
magma
parents:
2727
diff
changeset
|
1157 #ifdef USE_DBUS |
cf080b11c3fa
[svn] Implemented more of the stubs in audctrl; Added more methods to objects.xml with implementations in dbus.c. I'm still trying to get plugins working with libaudclient.
magma
parents:
2727
diff
changeset
|
1158 init_dbus(); |
cf080b11c3fa
[svn] Implemented more of the stubs in audctrl; Added more methods to objects.xml with implementations in dbus.c. I'm still trying to get plugins working with libaudclient.
magma
parents:
2727
diff
changeset
|
1159 #endif |
cf080b11c3fa
[svn] Implemented more of the stubs in audctrl; Added more methods to objects.xml with implementations in dbus.c. I'm still trying to get plugins working with libaudclient.
magma
parents:
2727
diff
changeset
|
1160 |
2313 | 1161 plugin_system_init(); |
1162 | |
1163 /* Initialize the playlist system. */ | |
1164 playlist_init(); | |
1165 | |
1166 if (options.headless != 1) | |
1167 { | |
1168 /* register icons in stock */ | |
1169 register_aud_stock_icons(); | |
1170 | |
1171 bmp_set_default_icon(); | |
1172 | |
1173 gtk_accel_map_load(bmp_paths[BMP_PATH_ACCEL_FILE]); | |
1174 | |
1175 /* uimanager */ | |
1176 ui_manager_init(); | |
1177 ui_manager_create_menus(); | |
1178 | |
1179 if (!init_skins(cfg.skin)) { | |
1180 run_load_skin_error_dialog(cfg.skin); | |
1181 exit(EXIT_FAILURE); | |
1182 } | |
1183 | |
1184 GDK_THREADS_ENTER(); | |
1185 } | |
1186 | |
1187 /* Load the default playlist in. */ | |
1188 playlist = playlist_get_active(); | |
1189 playlist_load(playlist, bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
1190 playlist_set_position(playlist, cfg.playlist_position); | |
1191 | |
1192 /* this needs to be called after all 3 windows are created and | |
1193 * input plugins are setup'ed | |
1194 * but not if we're running headless --nenolod | |
1195 */ | |
1196 mainwin_setup_menus(); | |
1197 | |
1198 if (options.headless != 1) | |
1199 GDK_THREADS_LEAVE(); | |
1200 | |
1201 handle_cmd_line_options(&options, FALSE); | |
1202 | |
1203 if (options.headless != 1) | |
1204 { | |
1205 GDK_THREADS_ENTER(); | |
1206 | |
1207 read_volume(VOLSET_STARTUP); | |
1208 mainwin_set_info_text(); | |
1209 | |
1210 /* FIXME: delayed, because it deals directly with the plugin | |
1211 * interface to set menu items */ | |
1212 create_prefs_window(); | |
1213 | |
2364 | 1214 create_fileinfo_window(); |
1215 | |
2313 | 1216 |
1217 if (cfg.player_visible) | |
1218 mainwin_show(TRUE); | |
1219 else if (!cfg.playlist_visible && !cfg.equalizer_visible) | |
2651
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
1220 { |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
1221 /* all of the windows are hidden... warn user about this */ |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
1222 mainwin_show_visibility_warning(); |
4d5e6a8717dd
[svn] - allow the player to start with all of its windows hidden (but give a warning to the user, whose display can be disabled); also, try to remember player windows positions when they stay hidden between sessions
giacomo
parents:
2644
diff
changeset
|
1223 } |
2313 | 1224 |
1225 if (cfg.equalizer_visible) | |
1226 equalizerwin_show(TRUE); | |
1227 | |
1228 if (cfg.playlist_visible) | |
1229 playlistwin_show(); | |
1230 | |
1231 hint_set_always(cfg.always_on_top); | |
1232 | |
1233 playlist_start_get_info_thread(); | |
1234 mainwin_attach_idle_func(); | |
1235 | |
1236 | |
2364 | 1237 starting_up = FALSE; |
1238 has_x11_connection = TRUE; | |
2313 | 1239 |
2364 | 1240 if (cfg.resume_playback_on_startup) |
1241 { | |
1242 if (cfg.resume_playback_on_startup_time != -1 && | |
1243 playlist_get_length(playlist) > 0) | |
1244 { | |
1245 int i; | |
1246 gint l = 0, r = 0; | |
1247 while (gtk_events_pending()) gtk_main_iteration(); | |
1248 output_get_volume(&l, &r); | |
1249 output_set_volume(0,0); | |
1250 playback_initiate(); | |
2313 | 1251 |
2364 | 1252 /* Busy wait; loop is fairly tight to minimize duration of |
1253 * "frozen" GUI. Feel free to tune. --chainsaw */ | |
1254 for (i = 0; i < 20; i++) | |
1255 { | |
1256 g_usleep(1000); | |
1257 if (!ip_data.playing) | |
1258 break; | |
1259 } | |
1260 playback_seek(cfg.resume_playback_on_startup_time / 1000); | |
1261 output_set_volume(l, r); | |
1262 } | |
1263 } | |
1264 | |
2313 | 1265 gtk_main(); |
1266 | |
1267 GDK_THREADS_LEAVE(); | |
1268 | |
1269 g_cond_free(cond_scan); | |
1270 g_mutex_free(mutex_scan); | |
1271 | |
1272 return EXIT_SUCCESS; | |
1273 } | |
2364 | 1274 // if we are running headless |
2313 | 1275 else |
1276 { | |
2506
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1277 GMainLoop *loop; |
2369 | 1278 |
2313 | 1279 mainwin_set_info_text(); |
1280 playlist_start_get_info_thread(); | |
1281 | |
2364 | 1282 starting_up = FALSE; |
2313 | 1283 |
2506
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1284 loop = g_main_loop_new(NULL, TRUE); |
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1285 g_timeout_add(10, aud_headless_iteration, NULL); |
630910fd140f
[svn] - changed plugin directory to ~/.local/share/audacious/Plugins (seems more logical to me)
mf0102
parents:
2475
diff
changeset
|
1286 g_main_loop_run(loop); |
2313 | 1287 |
1288 return EXIT_SUCCESS; | |
1289 } | |
1290 } |