Mercurial > audlegacy
annotate audacious/main.c @ 1420:0aa4bee03747 trunk
[svn] - ok, move this fix down a little
author | nenolod |
---|---|
date | Tue, 18 Jul 2006 12:33:34 -0700 |
parents | 878c7f8d0a8c |
children | a360afd8df52 |
rev | line source |
---|---|
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1 /* Audacious - Cross-platform multimedia player |
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
2 * Copyright (C) 2005-2006 Audacious development team. |
197
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
3 * |
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
4 * Based on BMP: |
0 | 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; either version 2 of the License, or | |
13 * (at your option) any later version. | |
14 * | |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program; if not, write to the Free Software | |
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
23 */ | |
24 | |
25 #ifdef HAVE_CONFIG_H | |
26 # include "config.h" | |
27 #endif | |
28 | |
29 #include "main.h" | |
30 | |
31 #include <glib.h> | |
32 #include <glib/gi18n.h> | |
33 #include <glib/gprintf.h> | |
34 #include <gdk/gdk.h> | |
35 #include <stdlib.h> | |
36 #include <string.h> | |
37 #include <getopt.h> | |
38 #include <ctype.h> | |
39 #include <time.h> | |
40 | |
41 #include <unistd.h> | |
42 #include <errno.h> | |
43 #include <sys/types.h> | |
44 #include <sys/stat.h> | |
45 #include <signal.h> | |
46 #include <gdk/gdkx.h> | |
47 #include <X11/Xlib.h> | |
48 #include <X11/Xatom.h> | |
49 | |
50 #include "libaudacious/configdb.h" | |
51 #include "libaudacious/beepctrl.h" | |
52 #include "libaudacious/util.h" | |
53 #include "libaudacious/vfs.h" | |
54 | |
55 #include "controlsocket.h" | |
56 #include "dnd.h" | |
57 #include "effect.h" | |
58 #include "equalizer.h" | |
59 #include "general.h" | |
197
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
60 #include "genevent.h" |
0 | 61 #include "hints.h" |
62 #include "input.h" | |
63 #include "logger.h" | |
64 #include "mainwin.h" | |
65 #include "output.h" | |
538
e4e897d20791
[svn] remove libaudcore, we never did anything with it
nenolod
parents:
534
diff
changeset
|
66 #include "playback.h" |
0 | 67 #include "playlist.h" |
383 | 68 #include "ui_playlist.h" |
0 | 69 #include "pluginenum.h" |
70 #include "prefswin.h" | |
71 #include "skin.h" | |
72 #include "skinwin.h" | |
73 #include "util.h" | |
74 #include "visualization.h" | |
530
1947144093bc
[svn] When running SVN, make a note of the SVN version. The SVN version is stored in build_stamp.c.
nenolod
parents:
486
diff
changeset
|
75 #include "build_stamp.h" |
1264 | 76 #include "ui_fileinfo.h" |
0 | 77 |
78 #include "pixmaps.h" | |
120 | 79 #include "images/audacious_player.xpm" |
0 | 80 |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
81 gboolean has_x11_connection = FALSE; /* do we have an X11 connection? */ |
0 | 82 |
83 /* Translatable string for beep.desktop's comment field */ | |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
84 const gchar *desktop_comment = N_("Audacious"); |
0 | 85 |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
86 const gchar *application_name = N_("Audacious"); |
0 | 87 |
88 | |
89 struct _BmpCmdLineOpt { | |
90 GList *filenames; | |
91 gint session; | |
92 gboolean play, stop, pause, fwd, rew, play_pause, playcd; | |
93 gboolean enqueue, mainwin, remote, activate; | |
94 gboolean load_skins; | |
191 | 95 gboolean headless; |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
96 gboolean no_log; |
0 | 97 gchar *previous_session_id; |
98 }; | |
99 | |
100 typedef struct _BmpCmdLineOpt BmpCmdLineOpt; | |
101 | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
102 BmpCmdLineOpt options; |
0 | 103 |
104 BmpConfig cfg; | |
105 | |
106 BmpConfig bmp_default_config = { | |
107 MAINWIN_DEFAULT_POS_X, /* mainwin x position */ | |
108 MAINWIN_DEFAULT_POS_Y, /* mainwin y position */ | |
109 EQUALIZER_DEFAULT_POS_X, /* equalizer x position */ | |
110 EQUALIZER_DEFAULT_POS_Y, /* equalizer y position */ | |
111 PLAYLISTWIN_DEFAULT_POS_X, /* playlistwin x position */ | |
112 PLAYLISTWIN_DEFAULT_POS_Y, /* playlistwin y position */ | |
113 PLAYLISTWIN_DEFAULT_WIDTH, /* playlistwin width */ | |
114 PLAYLISTWIN_DEFAULT_HEIGHT, /* playlistwin height */ | |
115 10, /* snap distance */ | |
116 FALSE, /* real-time priority */ | |
117 FALSE, FALSE, /* shuffle, repeat */ | |
118 FALSE, /* UNUSED (double size) */ | |
119 TRUE, /* autoscroll */ | |
898 | 120 FALSE, /* stop after current song */ |
0 | 121 TRUE, /* analyzer peaks */ |
122 FALSE, /* equalizer autoload */ | |
123 FALSE, /* easy move */ | |
124 FALSE, /* equalizer active */ | |
125 FALSE, /* playlistwin visible */ | |
126 FALSE, /* equalizer visible */ | |
127 TRUE, /* player visible */ | |
128 FALSE, /* player shaded */ | |
129 FALSE, /* playlistwin shaded */ | |
130 FALSE, /* equalizer shaded */ | |
131 FALSE, /* allow multiple instances */ | |
132 TRUE, /* always show cb */ | |
133 TRUE, TRUE, /* convert '_' and %20 */ | |
134 TRUE, /* show numbers in playlist */ | |
135 TRUE, /* snap windows */ | |
136 TRUE, /* save window positions */ | |
137 TRUE, /* dim titlebar */ | |
138 FALSE, /* get playlist info on load */ | |
139 TRUE, /* get playlist info on demand */ | |
140 TRUE, /* UNUSED (equalizer doublesize linked) */ | |
141 FALSE, /* sort jump to file */ | |
142 FALSE, /* use effect plugins */ | |
143 FALSE, /* always on top */ | |
144 FALSE, /* sticky */ | |
145 FALSE, /* no playlist advance */ | |
893
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
146 #ifdef HAVE_GNOME_VFS |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
147 FALSE, /* refresh file list - should be unneeded with VFS */ |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
148 #else |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
149 TRUE, /* refresh file list */ |
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
150 #endif |
0 | 151 TRUE, /* UNUSED (smooth title scrolling) */ |
152 TRUE, /* use playlist metadata */ | |
153 TRUE, /* warn about unplayables */ | |
154 FALSE, /* use \ as directory delimiter */ | |
155 FALSE, /* random skin on play */ | |
156 FALSE, /* use fontsets */ | |
157 FALSE, /* use X font for mainwin */ | |
158 TRUE, /* use custom cursors */ | |
159 TRUE, /* close dialog on open */ | |
160 TRUE, /* close dialog on add */ | |
161 0.0, /* equalizer preamp */ | |
162 {0, 0, 0, 0, 0, /* equalizer bands */ | |
163 0, 0, 0, 0, 0}, | |
164 NULL, /* skin */ | |
165 NULL, /* output plugin */ | |
166 NULL, /* file selector path */ | |
167 NULL, /* playlist path */ | |
168 NULL, /* playlist font */ | |
169 NULL, /* mainwin font */ | |
170 NULL, /* disabled input plugins */ | |
171 NULL, /* enabled general plugins */ | |
172 NULL, /* enabled visualization plugins */ | |
173 NULL, /* enabled effect plugins */ | |
174 NULL, /* equalizer preset default file */ | |
175 NULL, /* equalizer preset extension */ | |
176 NULL, /* URL history */ | |
177 0, /* timer mode */ | |
178 VIS_ANALYZER, /* visualizer type */ | |
179 ANALYZER_NORMAL, /* analyzer mode */ | |
180 ANALYZER_BARS, /* analyzer type */ | |
181 SCOPE_DOT, /* scope mode */ | |
182 VU_SMOOTH, /* VU mode */ | |
183 REFRESH_FULL, /* visualizer refresh rate */ | |
184 FALLOFF_FAST, /* analyzer fall off rate */ | |
185 FALLOFF_SLOW, /* peaks fall off rate */ | |
186 0, /* playlist position */ | |
187 2, /* pause between songs time */ | |
188 FALSE, /* pause between songs */ | |
189 FALSE, /* show window decorations */ | |
190 8, /* mouse wheel scroll step */ | |
191 FALSE, /* playlist transparent */ | |
1347
8a874906535b
[svn] - use a more standard-looking default title format
nenolod
parents:
1283
diff
changeset
|
192 2, /* 3rd preset (ARTIST - ALBUM - TITLE) */ |
0 | 193 NULL, /* title format */ |
194 FALSE, /* software volume control enabled */ | |
195 TRUE, /* UNUSED (XMMS compatibility mode) */ | |
196 TRUE, /* extra eq filtering */ | |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
197 3, /* scroll pl by */ |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
198 FALSE, /* resume playback on startup */ |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
199 -1, /* resume playback on startup time */ |
1147 | 200 TRUE, /* show seperators in pl */ |
1146
7e208feb36a2
[svn] - new global variable `output_buffer_size', replaces all of the per-plugin buffer sizes
nenolod
parents:
1105
diff
changeset
|
201 NULL, |
7e208feb36a2
[svn] - new global variable `output_buffer_size', replaces all of the per-plugin buffer sizes
nenolod
parents:
1105
diff
changeset
|
202 NULL, |
1163
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
203 3000, /* audio buffer size */ |
1164 | 204 FALSE, /* whether or not to postpone format detection on initial add */ |
1358 | 205 TRUE, /* show filepopup for tuple */ |
1413 | 206 NULL, /* words identifying covers */ |
207 NULL, /* words that might not show up in cover names */ | |
0 | 208 }; |
209 | |
210 typedef struct bmp_cfg_boolent_t { | |
211 char const *be_vname; | |
212 gboolean *be_vloc; | |
213 gboolean be_wrt; | |
214 } bmp_cfg_boolent; | |
215 | |
216 typedef struct bmp_cfg_nument_t { | |
217 char const *ie_vname; | |
218 gint *ie_vloc; | |
219 gboolean ie_wrt; | |
220 } bmp_cfg_nument; | |
221 | |
222 typedef struct bmp_cfg_strent_t { | |
223 char const *se_vname; | |
224 char **se_vloc; | |
225 gboolean se_wrt; | |
226 } bmp_cfg_strent; | |
227 | |
228 const gchar *bmp_titlestring_presets[] = { | |
229 "%t", | |
946
8cfe13fcd0c7
[svn] - Forgot a few things regarding titlestrings!
nhjm449
parents:
943
diff
changeset
|
230 "%{p:%p - %}%t", |
8cfe13fcd0c7
[svn] - Forgot a few things regarding titlestrings!
nhjm449
parents:
943
diff
changeset
|
231 "%{p:%p - %}%{a:%a - %}%t", |
943 | 232 "%{p:%p - %}%{a:%a - %}%{n:%n. %}%t", |
233 "%{p:%p %}%{a:[ %a ] %}%{p:- %}%{n:%n. %}%{t:%t%}", | |
946
8cfe13fcd0c7
[svn] - Forgot a few things regarding titlestrings!
nhjm449
parents:
943
diff
changeset
|
234 "%{a:%a - %}%t" |
0 | 235 }; |
236 | |
237 const guint n_titlestring_presets = G_N_ELEMENTS(bmp_titlestring_presets); | |
238 | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
239 const gchar *chardet_detector_presets[] = { |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
240 "None", |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
241 "Japanese", |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
242 "Taiwanese (alpha test)", |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
243 "Chinese (alpha test)", |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
244 "Korean (alpha test)", |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
245 #ifdef HAVE_UDET |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
246 "Universal" |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
247 #endif |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
248 }; |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
249 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
250 const guint n_chardet_detector_presets = G_N_ELEMENTS(chardet_detector_presets); |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
251 |
0 | 252 static bmp_cfg_boolent bmp_boolents[] = { |
253 {"allow_multiple_instances", &cfg.allow_multiple_instances, TRUE}, | |
254 {"use_realtime", &cfg.use_realtime, TRUE}, | |
255 {"always_show_cb", &cfg.always_show_cb, TRUE}, | |
256 {"convert_underscore", &cfg.convert_underscore, TRUE}, | |
257 {"convert_twenty", &cfg.convert_twenty, TRUE}, | |
258 {"show_numbers_in_pl", &cfg.show_numbers_in_pl, TRUE}, | |
1056
21628529c615
[svn] add the config option to enable/disable separator line in the playlist
yaz
parents:
1042
diff
changeset
|
259 {"show_separator_in_pl", &cfg.show_separator_in_pl, TRUE}, |
0 | 260 {"snap_windows", &cfg.snap_windows, TRUE}, |
261 {"save_window_positions", &cfg.save_window_position, TRUE}, | |
262 {"dim_titlebar", &cfg.dim_titlebar, TRUE}, | |
263 {"get_info_on_load", &cfg.get_info_on_load, TRUE}, | |
264 {"get_info_on_demand", &cfg.get_info_on_demand, TRUE}, | |
265 {"no_playlist_advance", &cfg.no_playlist_advance, TRUE}, | |
893
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
266 {"refresh_file_list", &cfg.refresh_file_list, TRUE}, |
0 | 267 {"sort_jump_to_file", &cfg.sort_jump_to_file, TRUE}, |
268 {"use_pl_metadata", &cfg.use_pl_metadata, TRUE}, | |
269 {"warn_about_unplayables", &cfg.warn_about_unplayables, TRUE}, | |
270 {"use_backslash_as_dir_delimiter", &cfg.use_backslash_as_dir_delimiter, TRUE}, | |
271 {"player_shaded", &cfg.player_shaded, TRUE}, | |
272 {"player_visible", &cfg.player_visible, TRUE}, | |
273 {"shuffle", &cfg.shuffle, TRUE}, | |
274 {"repeat", &cfg.repeat, TRUE}, | |
275 {"autoscroll_songname", &cfg.autoscroll, TRUE}, | |
898 | 276 {"stop_after_current_song", &cfg.stopaftersong, TRUE}, |
0 | 277 {"playlist_shaded", &cfg.playlist_shaded, TRUE}, |
278 {"playlist_visible", &cfg.playlist_visible, TRUE}, | |
279 {"playlist_transparent", &cfg.playlist_transparent, TRUE}, | |
280 {"use_fontsets", &cfg.use_fontsets, TRUE}, | |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
281 {"mainwin_use_xfont", &cfg.mainwin_use_xfont, FALSE}, |
0 | 282 {"equalizer_visible", &cfg.equalizer_visible, TRUE}, |
283 {"equalizer_active", &cfg.equalizer_active, TRUE}, | |
284 {"equalizer_shaded", &cfg.equalizer_shaded, TRUE}, | |
285 {"equalizer_autoload", &cfg.equalizer_autoload, TRUE}, | |
286 {"use_eplugins", &cfg.use_eplugins, TRUE}, | |
287 {"always_on_top", &cfg.always_on_top, TRUE}, | |
288 {"sticky", &cfg.sticky, TRUE}, | |
289 {"random_skin_on_play", &cfg.random_skin_on_play, TRUE}, | |
290 {"pause_between_songs", &cfg.pause_between_songs, TRUE}, | |
291 {"show_wm_decorations", &cfg.show_wm_decorations, TRUE}, | |
292 {"eq_extra_filtering", &cfg.eq_extra_filtering, TRUE}, | |
293 {"analyzer_peaks", &cfg.analyzer_peaks, TRUE}, | |
294 {"custom_cursors", &cfg.custom_cursors, TRUE}, | |
295 {"close_dialog_open", &cfg.close_dialog_open, TRUE}, | |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
296 {"close_dialog_add", &cfg.close_dialog_add, TRUE}, |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
297 {"resume_playback_on_startup", &cfg.resume_playback_on_startup, TRUE}, |
1163
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
298 {"playlist_detect", &cfg.playlist_detect, TRUE}, |
1358 | 299 {"show_filepopup_for_tuple", &cfg.show_filepopup_for_tuple, TRUE}, |
0 | 300 }; |
301 | |
302 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); | |
303 | |
304 static bmp_cfg_nument bmp_numents[] = { | |
305 {"player_x", &cfg.player_x, TRUE}, | |
306 {"player_y", &cfg.player_y, TRUE}, | |
307 {"timer_mode", &cfg.timer_mode, TRUE}, | |
308 {"vis_type", &cfg.vis_type, TRUE}, | |
309 {"analyzer_mode", &cfg.analyzer_mode, TRUE}, | |
310 {"analyzer_type", &cfg.analyzer_type, TRUE}, | |
311 {"scope_mode", &cfg.scope_mode, TRUE}, | |
312 {"vu_mode", &cfg.vu_mode, TRUE}, | |
313 {"vis_refresh_rate", &cfg.vis_refresh, TRUE}, | |
314 {"analyzer_falloff", &cfg.analyzer_falloff, TRUE}, | |
315 {"peaks_falloff", &cfg.peaks_falloff, TRUE}, | |
316 {"playlist_x", &cfg.playlist_x, TRUE}, | |
317 {"playlist_y", &cfg.playlist_y, TRUE}, | |
318 {"playlist_width", &cfg.playlist_width, TRUE}, | |
319 {"playlist_height", &cfg.playlist_height, TRUE}, | |
320 {"playlist_position", &cfg.playlist_position, TRUE}, | |
321 {"equalizer_x", &cfg.equalizer_x, TRUE}, | |
322 {"equalizer_y", &cfg.equalizer_y, TRUE}, | |
323 {"snap_distance", &cfg.snap_distance, TRUE}, | |
324 {"pause_between_songs_time", &cfg.pause_between_songs_time, TRUE}, | |
325 {"mouse_wheel_change", &cfg.mouse_change, TRUE}, | |
326 {"scroll_pl_by", &cfg.scroll_pl_by, TRUE}, | |
327 {"titlestring_preset", &cfg.titlestring_preset, TRUE}, | |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
328 {"resume_playback_on_startup_time", &cfg.resume_playback_on_startup_time, TRUE}, |
1146
7e208feb36a2
[svn] - new global variable `output_buffer_size', replaces all of the per-plugin buffer sizes
nenolod
parents:
1105
diff
changeset
|
329 {"output_buffer_size", &cfg.output_buffer_size, TRUE}, |
0 | 330 }; |
331 | |
332 static gint ncfgient = G_N_ELEMENTS(bmp_numents); | |
333 | |
334 static bmp_cfg_strent bmp_strents[] = { | |
335 {"playlist_font", &cfg.playlist_font, TRUE}, | |
336 {"mainwin_font", &cfg.mainwin_font, TRUE}, | |
337 {"eqpreset_default_file", &cfg.eqpreset_default_file, TRUE}, | |
338 {"eqpreset_extension", &cfg.eqpreset_extension, TRUE}, | |
339 {"skin", &cfg.skin, FALSE}, | |
340 {"output_plugin", &cfg.outputplugin, FALSE}, | |
341 {"disabled_iplugins", &cfg.disabled_iplugins, TRUE}, | |
342 {"enabled_gplugins", &cfg.enabled_gplugins, FALSE}, | |
343 {"enabled_vplugins", &cfg.enabled_vplugins, FALSE}, | |
344 {"enabled_eplugins", &cfg.enabled_eplugins, FALSE}, | |
345 {"filesel_path", &cfg.filesel_path, FALSE}, | |
346 {"playlist_path", &cfg.playlist_path, FALSE}, | |
347 {"generic_title_format", &cfg.gentitle_format, TRUE}, | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
348 {"chardet_detector", &cfg.chardet_detector, TRUE}, |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
349 {"chardet_fallback", &cfg.chardet_fallback, TRUE}, |
1413 | 350 {"cover_name_include", &cfg.cover_name_include, TRUE}, |
351 {"cover_name_exclude", &cfg.cover_name_exclude, TRUE}, | |
0 | 352 }; |
353 | |
354 static gint ncfgsent = G_N_ELEMENTS(bmp_strents); | |
355 | |
356 gchar *bmp_paths[BMP_PATH_COUNT] = {}; | |
357 | |
358 GList *dock_window_list = NULL; | |
359 | |
360 gboolean pposition_broken = FALSE; | |
361 | |
486 | 362 gboolean starting_up = TRUE; |
0 | 363 |
364 static GSList * | |
365 get_feature_list(void) | |
366 { | |
367 GSList *features = NULL; | |
368 | |
369 #ifdef HAVE_GNOME_VFS | |
370 features = g_slist_append(features, "GNOME VFS"); | |
371 #endif | |
372 | |
373 #ifdef HAVE_GCONF | |
374 features = g_slist_append(features, "GConf"); | |
375 #endif | |
376 | |
377 return features; | |
378 } | |
379 | |
380 static void | |
381 dump_version(void) | |
382 { | |
383 GSList *features; | |
384 | |
530
1947144093bc
[svn] When running SVN, make a note of the SVN version. The SVN version is stored in build_stamp.c.
nenolod
parents:
486
diff
changeset
|
385 g_printf("%s %s [%s]", _(application_name), VERSION, svn_stamp); |
0 | 386 |
387 features = get_feature_list(); | |
388 | |
389 if (features) { | |
390 GSList *item; | |
391 | |
392 g_printf(" ("); | |
393 | |
394 for (item = features; g_slist_next(item); item = g_slist_next(item)) | |
395 g_printf("%s, ", (const gchar *) item->data); | |
396 | |
397 g_printf("%s)", (const gchar *) item->data); | |
398 | |
399 g_slist_free(features); | |
400 } | |
401 | |
402 g_printf("\n"); | |
403 } | |
404 | |
405 const gchar * | |
406 xmms_get_gentitle_format(void) | |
407 { | |
625
0a73d1faeb4e
[svn] GCC 4.1 warning fixes by Diego 'Flameeyes' Petteno from Gentoo.
chainsaw
parents:
538
diff
changeset
|
408 guint titlestring_preset = cfg.titlestring_preset; |
0 | 409 |
410 if (titlestring_preset < n_titlestring_presets) | |
411 return bmp_titlestring_presets[titlestring_preset]; | |
412 | |
413 return cfg.gentitle_format; | |
414 } | |
415 | |
887 | 416 void |
0 | 417 make_directory(const gchar * path, mode_t mode) |
418 { | |
419 if (mkdir(path, mode) == 0) | |
420 return; | |
421 | |
422 if (errno == EEXIST) | |
423 return; | |
424 | |
425 g_printerr(_("Could not create directory (%s): %s"), path, | |
426 g_strerror(errno)); | |
427 } | |
428 | |
429 static void | |
430 bmp_make_user_dir(void) | |
431 { | |
432 const mode_t mode755 = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; | |
433 | |
434 make_directory(bmp_paths[BMP_PATH_USER_DIR], mode755); | |
435 make_directory(bmp_paths[BMP_PATH_USER_PLUGIN_DIR], mode755); | |
436 make_directory(bmp_paths[BMP_PATH_USER_SKIN_DIR], mode755); | |
437 make_directory(bmp_paths[BMP_PATH_SKIN_THUMB_DIR], mode755); | |
438 } | |
439 | |
440 static void | |
441 bmp_free_paths(void) | |
442 { | |
443 int i; | |
444 | |
445 for (i = 0; i < BMP_PATH_COUNT; i++) | |
446 { | |
447 g_free(bmp_paths[i]); | |
448 bmp_paths[i] = 0; | |
449 } | |
450 } | |
451 | |
452 | |
453 #define USER_PATH(path) \ | |
454 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], path, NULL); | |
455 | |
456 static void | |
457 bmp_init_paths(void) | |
458 { | |
734 | 459 bmp_paths[BMP_PATH_USER_DIR] = g_build_filename(g_get_home_dir(), BMP_RCPATH, NULL); |
0 | 460 |
461 bmp_paths[BMP_PATH_USER_PLUGIN_DIR] = USER_PATH(BMP_USER_PLUGIN_DIR_BASENAME); | |
462 bmp_paths[BMP_PATH_USER_SKIN_DIR] = USER_PATH(BMP_SKIN_DIR_BASENAME); | |
463 bmp_paths[BMP_PATH_SKIN_THUMB_DIR] = USER_PATH(BMP_SKIN_THUMB_DIR_BASENAME); | |
464 bmp_paths[BMP_PATH_CONFIG_FILE] = USER_PATH(BMP_CONFIG_BASENAME); | |
465 bmp_paths[BMP_PATH_PLAYLIST_FILE] = USER_PATH(BMP_PLAYLIST_BASENAME); | |
466 bmp_paths[BMP_PATH_ACCEL_FILE] = USER_PATH(BMP_ACCEL_BASENAME); | |
467 bmp_paths[BMP_PATH_LOG_FILE] = USER_PATH(BMP_LOG_BASENAME); | |
468 | |
469 g_atexit(bmp_free_paths); | |
470 } | |
471 | |
472 | |
473 void | |
474 bmp_config_load(void) | |
475 { | |
476 ConfigDb *db; | |
477 gint i, length; | |
478 | |
479 memcpy(&cfg, &bmp_default_config, sizeof(BmpConfig)); | |
480 | |
481 db = bmp_cfg_db_open(); | |
482 for (i = 0; i < ncfgbent; ++i) { | |
483 bmp_cfg_db_get_bool(db, NULL, | |
484 bmp_boolents[i].be_vname, | |
485 bmp_boolents[i].be_vloc); | |
486 } | |
487 | |
488 for (i = 0; i < ncfgient; ++i) { | |
489 bmp_cfg_db_get_int(db, NULL, | |
490 bmp_numents[i].ie_vname, | |
491 bmp_numents[i].ie_vloc); | |
492 } | |
493 | |
494 for (i = 0; i < ncfgsent; ++i) { | |
495 bmp_cfg_db_get_string(db, NULL, | |
496 bmp_strents[i].se_vname, | |
497 bmp_strents[i].se_vloc); | |
498 } | |
499 | |
500 /* Preset */ | |
501 bmp_cfg_db_get_float(db, NULL, "equalizer_preamp", &cfg.equalizer_preamp); | |
502 for (i = 0; i < 10; i++) { | |
503 gchar eqtext[18]; | |
504 | |
505 g_snprintf(eqtext, sizeof(eqtext), "equalizer_band%d", i); | |
506 bmp_cfg_db_get_float(db, NULL, eqtext, &cfg.equalizer_bands[i]); | |
507 } | |
508 | |
509 /* History */ | |
510 if (bmp_cfg_db_get_int(db, NULL, "url_history_length", &length)) { | |
511 for (i = 1; i <= length; i++) { | |
512 gchar str[19], *tmp; | |
513 | |
514 g_snprintf(str, sizeof(str), "url_history%d", i); | |
515 if (bmp_cfg_db_get_string(db, NULL, str, &tmp)) | |
516 cfg.url_history = g_list_append(cfg.url_history, tmp); | |
517 } | |
518 } | |
519 | |
520 bmp_cfg_db_close(db); | |
521 | |
522 | |
523 if (cfg.playlist_font && strlen(cfg.playlist_font) == 0) { | |
524 g_free(cfg.playlist_font); | |
525 cfg.playlist_font = NULL; | |
526 } | |
527 | |
528 if (cfg.mainwin_font && strlen(cfg.mainwin_font) == 0) { | |
529 g_free(cfg.mainwin_font); | |
530 cfg.mainwin_font = NULL; | |
531 } | |
532 | |
533 if (!cfg.playlist_font) | |
534 cfg.playlist_font = g_strdup(PLAYLISTWIN_DEFAULT_FONT); | |
535 | |
536 if (!cfg.mainwin_font) | |
537 cfg.mainwin_font = g_strdup(MAINWIN_DEFAULT_FONT); | |
538 | |
539 if (!cfg.gentitle_format) | |
1347
8a874906535b
[svn] - use a more standard-looking default title format
nenolod
parents:
1283
diff
changeset
|
540 cfg.gentitle_format = g_strdup("%{p:%p - %}%{a:%a - %}%t"); |
0 | 541 |
542 if (!cfg.outputplugin) { | |
543 #ifdef HAVE_OSS | |
544 cfg.outputplugin = g_build_filename(PLUGIN_DIR, plugin_dir_list[0], | |
545 PLUGIN_FILENAME("OSS"), NULL); | |
546 #else | |
547 /* FIXME: This implicitly means the output plugin that is | |
548 * first in the alphabet will be used (usually the disk writer | |
549 * plugin) */ | |
550 cfg.outputplugin = g_strdup(""); | |
551 #endif | |
552 } | |
553 | |
554 if (!cfg.eqpreset_default_file) | |
555 cfg.eqpreset_default_file = g_strdup(EQUALIZER_DEFAULT_DIR_PRESET); | |
556 | |
557 if (!cfg.eqpreset_extension) | |
558 cfg.eqpreset_extension = g_strdup(EQUALIZER_DEFAULT_PRESET_EXT); | |
1413 | 559 |
560 if (!cfg.cover_name_include) | |
561 cfg.cover_name_include = g_strdup(""); | |
562 | |
563 if (!cfg.cover_name_exclude) | |
564 cfg.cover_name_exclude = g_strdup("back"); | |
0 | 565 } |
566 | |
567 | |
568 void | |
569 bmp_config_save(void) | |
570 { | |
571 GList *node; | |
572 gchar *str; | |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
573 gint i, cur_pb_time; |
0 | 574 ConfigDb *db; |
575 | |
576 cfg.disabled_iplugins = input_stringify_disabled_list(); | |
577 | |
578 | |
579 db = bmp_cfg_db_open(); | |
580 | |
581 for (i = 0; i < ncfgbent; ++i) | |
582 if (bmp_boolents[i].be_wrt) | |
583 bmp_cfg_db_set_bool(db, NULL, | |
584 bmp_boolents[i].be_vname, | |
585 *bmp_boolents[i].be_vloc); | |
586 | |
587 for (i = 0; i < ncfgient; ++i) | |
588 if (bmp_numents[i].ie_wrt) | |
589 bmp_cfg_db_set_int(db, NULL, | |
590 bmp_numents[i].ie_vname, | |
591 *bmp_numents[i].ie_vloc); | |
592 | |
593 /* This is a bit lame .. it'll end up being written twice, | |
594 * could do with being done a bit neater. -larne */ | |
595 bmp_cfg_db_set_int(db, NULL, "playlist_position", | |
596 playlist_get_position()); | |
597 | |
207
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
598 bmp_cfg_db_set_bool(db, NULL, "mainwin_use_xfont", |
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
599 cfg.mainwin_use_xfont); |
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
600 |
0 | 601 for (i = 0; i < ncfgsent; ++i) { |
602 if (bmp_strents[i].se_wrt) | |
603 bmp_cfg_db_set_string(db, NULL, | |
604 bmp_strents[i].se_vname, | |
605 *bmp_strents[i].se_vloc); | |
606 } | |
607 | |
608 bmp_cfg_db_set_float(db, NULL, "equalizer_preamp", cfg.equalizer_preamp); | |
609 | |
610 for (i = 0; i < 10; i++) { | |
611 str = g_strdup_printf("equalizer_band%d", i); | |
612 bmp_cfg_db_set_float(db, NULL, str, cfg.equalizer_bands[i]); | |
613 g_free(str); | |
614 } | |
615 | |
196 | 616 if (bmp_active_skin != NULL) |
617 { | |
618 if (bmp_active_skin->path) | |
619 bmp_cfg_db_set_string(db, NULL, "skin", bmp_active_skin->path); | |
620 else | |
621 bmp_cfg_db_unset_key(db, NULL, "skin"); | |
622 } | |
0 | 623 |
624 if (get_current_output_plugin()) | |
625 bmp_cfg_db_set_string(db, NULL, "output_plugin", | |
626 get_current_output_plugin()->filename); | |
627 else | |
628 bmp_cfg_db_unset_key(db, NULL, "output_plugin"); | |
629 | |
630 str = general_stringify_enabled_list(); | |
631 if (str) { | |
632 bmp_cfg_db_set_string(db, NULL, "enabled_gplugins", str); | |
633 g_free(str); | |
634 } | |
635 else | |
636 bmp_cfg_db_unset_key(db, NULL, "enabled_gplugins"); | |
637 | |
638 str = vis_stringify_enabled_list(); | |
639 if (str) { | |
640 bmp_cfg_db_set_string(db, NULL, "enabled_vplugins", str); | |
641 g_free(str); | |
642 } | |
643 else | |
644 bmp_cfg_db_unset_key(db, NULL, "enabled_vplugins"); | |
645 | |
646 str = effect_stringify_enabled_list(); | |
647 if (str) { | |
648 bmp_cfg_db_set_string(db, NULL, "enabled_eplugins", str); | |
649 g_free(str); | |
650 } | |
651 else | |
652 bmp_cfg_db_unset_key(db, NULL, "enabled_eplugins"); | |
653 | |
654 if (cfg.filesel_path) | |
655 bmp_cfg_db_set_string(db, NULL, "filesel_path", cfg.filesel_path); | |
656 | |
657 if (cfg.playlist_path) | |
658 bmp_cfg_db_set_string(db, NULL, "playlist_path", cfg.playlist_path); | |
659 | |
660 bmp_cfg_db_set_int(db, NULL, "url_history_length", | |
661 g_list_length(cfg.url_history)); | |
662 | |
663 for (node = cfg.url_history, i = 1; node; node = g_list_next(node), i++) { | |
664 str = g_strdup_printf("url_history%d", i); | |
665 bmp_cfg_db_set_string(db, NULL, str, node->data); | |
666 g_free(str); | |
667 } | |
668 | |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
669 if (bmp_playback_get_playing()) { |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
670 cur_pb_time = bmp_playback_get_time(); |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
671 } else |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
672 cur_pb_time = -1; |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
673 cfg.resume_playback_on_startup_time = cur_pb_time; |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
674 bmp_cfg_db_set_int(db, NULL, "resume_playback_on_startup_time", |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
675 cfg.resume_playback_on_startup_time); |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
676 |
0 | 677 bmp_cfg_db_close(db); |
678 | |
679 playlist_save(bmp_paths[BMP_PATH_PLAYLIST_FILE], FALSE); | |
680 } | |
681 | |
682 static void | |
683 bmp_set_default_icon(void) | |
684 { | |
685 GdkPixbuf *icon; | |
686 | |
120 | 687 icon = gdk_pixbuf_new_from_xpm_data((const gchar **) audacious_player_xpm); |
0 | 688 gtk_window_set_default_icon(icon); |
689 g_object_unref(icon); | |
690 } | |
691 | |
692 static void | |
693 display_usage(void) | |
694 { | |
44 | 695 g_print(_("Usage: audacious [options] [files] ...\n\n" |
0 | 696 "Options:\n" |
697 "--------\n")); | |
698 g_print("\n-h, --help "); | |
699 /* -h, --help switch */ | |
700 g_print(_("Display this text and exit")); | |
701 g_print("\n-n, --session "); | |
702 /* -n, --session switch */ | |
257
256b3acc87d4
[svn] Properly report Audacious instead of XMMS or BMP in all places. Patch by laci; closes bug #379.
chainsaw
parents:
216
diff
changeset
|
703 g_print(_("Select Audacious/BMP/XMMS session (Default: 0)")); |
0 | 704 g_print("\n-r, --rew "); |
705 /* -r, --rew switch */ | |
706 g_print(_("Skip backwards in playlist")); | |
707 g_print("\n-p, --play "); | |
708 /* -p, --play switch */ | |
709 g_print(_("Start playing current playlist")); | |
710 g_print("\n-u, --pause "); | |
711 /* -u, --pause switch */ | |
712 g_print(_("Pause current song")); | |
713 g_print("\n-s, --stop "); | |
714 /* -s, --stop switch */ | |
715 g_print(_("Stop current song")); | |
716 g_print("\n-t, --play-pause "); | |
717 /* -t, --play-pause switch */ | |
718 g_print(_("Pause if playing, play otherwise")); | |
719 g_print("\n-f, --fwd "); | |
720 /* -f, --fwd switch */ | |
721 g_print(_("Skip forward in playlist")); | |
722 g_print("\n-e, --enqueue "); | |
723 /* -e, --enqueue switch */ | |
724 g_print(_("Don't clear the playlist")); | |
725 g_print("\n-m, --show-main-window "); | |
726 /* -m, --show-main-window switch */ | |
727 g_print(_("Show the main window")); | |
728 g_print("\n-a, --activate "); | |
729 /* -a, --activate switch */ | |
257
256b3acc87d4
[svn] Properly report Audacious instead of XMMS or BMP in all places. Patch by laci; closes bug #379.
chainsaw
parents:
216
diff
changeset
|
730 g_print(_("Activate Audacious")); |
0 | 731 g_print("\n-i, --sm-client-id "); |
732 /* -i, --sm-client-id switch */ | |
733 g_print(_("Previous session ID")); | |
316
950f104f2e11
[svn] Fix spacing in --help output, patch by Mikachu.
chainsaw
parents:
284
diff
changeset
|
734 g_print("\n-H, --headless "); |
193 | 735 /* -h, --headless switch */ |
736 g_print(_("Headless operation [experimental]")); | |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
737 g_print("\n-N, --no-log "); |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
738 /* -N, --no-log switch */ |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
739 g_print(_("Disable error/warning interception (logging)")); |
0 | 740 g_print("\n-v, --version "); |
741 /* -v, --version switch */ | |
742 g_print(_("Print version number and exit\n")); | |
743 | |
744 exit(EXIT_SUCCESS); | |
745 } | |
746 | |
747 static void | |
748 parse_cmd_line(gint argc, | |
749 gchar ** argv, | |
750 BmpCmdLineOpt * options) | |
751 { | |
752 static struct option long_options[] = { | |
753 {"help", 0, NULL, 'h'}, | |
754 {"session", 1, NULL, 'n'}, | |
755 {"rew", 0, NULL, 'r'}, | |
756 {"play", 0, NULL, 'p'}, | |
757 {"pause", 0, NULL, 'u'}, | |
758 {"play-pause", 0, NULL, 't'}, | |
759 {"stop", 0, NULL, 's'}, | |
760 {"fwd", 0, NULL, 'f'}, | |
761 {"enqueue", 0, NULL, 'e'}, | |
762 {"show-main-window", 0, NULL, 'm'}, | |
763 {"activate", 0, NULL, 'a'}, | |
764 {"version", 0, NULL, 'v'}, | |
765 {"sm-client-id", 1, NULL, 'i'}, | |
766 {"xmms", 0, NULL, 'x'}, | |
191 | 767 {"headless", 0, NULL, 'H'}, |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
768 {"no-log", 0, NULL, 'N'}, |
0 | 769 {0, 0, 0, 0} |
770 }; | |
771 | |
772 gchar *filename, *current_dir; | |
773 gint c, i; | |
774 | |
775 memset(options, 0, sizeof(BmpCmdLineOpt)); | |
776 options->session = -1; | |
777 | |
191 | 778 while ((c = getopt_long(argc, argv, "chn:HrpusfemavtLS", long_options, |
0 | 779 NULL)) != -1) { |
780 switch (c) { | |
781 case 'h': | |
782 display_usage(); | |
783 break; | |
784 case 'n': | |
785 options->session = atoi(optarg); | |
786 break; | |
191 | 787 case 'H': |
788 options->headless = TRUE; | |
789 break; | |
0 | 790 case 'r': |
791 options->rew = TRUE; | |
792 break; | |
793 case 'p': | |
794 options->play = TRUE; | |
795 break; | |
796 case 'u': | |
797 options->pause = TRUE; | |
798 break; | |
799 case 's': | |
800 options->stop = TRUE; | |
801 break; | |
802 case 'f': | |
803 options->fwd = TRUE; | |
804 break; | |
805 case 't': | |
806 options->play_pause = TRUE; | |
807 break; | |
808 case 'm': | |
809 options->mainwin = TRUE; | |
810 break; | |
811 case 'a': | |
812 options->activate = TRUE; | |
813 break; | |
814 case 'e': | |
815 options->enqueue = TRUE; | |
816 break; | |
817 case 'v': | |
818 dump_version(); | |
819 exit(EXIT_SUCCESS); | |
820 break; | |
821 case 'i': | |
822 options->previous_session_id = g_strdup(optarg); | |
823 break; | |
824 case 'c': | |
825 options->playcd = TRUE; | |
826 break; | |
827 case 'S': | |
828 options->load_skins = TRUE; | |
829 break; | |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
830 case 'N': |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
831 options->no_log = TRUE; |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
832 break; |
0 | 833 } |
834 } | |
835 | |
836 current_dir = g_get_current_dir(); | |
837 | |
838 for (i = optind; i < argc; i++) { | |
839 if (argv[i][0] == '/' || strstr(argv[i], "://")) | |
840 filename = g_strdup(argv[i]); | |
841 else | |
842 filename = g_build_filename(current_dir, argv[i], NULL); | |
843 | |
844 options->filenames = g_list_prepend(options->filenames, filename); | |
845 } | |
846 | |
847 options->filenames = g_list_reverse(options->filenames); | |
848 | |
849 g_free(current_dir); | |
850 } | |
851 | |
852 static void | |
853 handle_cmd_line_options(BmpCmdLineOpt * options, | |
854 gboolean remote) | |
855 { | |
856 GList *filenames = options->filenames; | |
857 gint session = options->session; | |
858 | |
859 if (session == -1) { | |
860 if (!remote) | |
861 session = ctrlsocket_get_session_id(); | |
862 else | |
863 session = 0; | |
864 } | |
865 | |
866 if (filenames) { | |
867 gint pos = 0; | |
868 | |
869 if (options->load_skins) { | |
870 xmms_remote_set_skin(session, filenames->data); | |
871 skin_install_skin(filenames->data); | |
872 } | |
873 else { | |
874 if (options->enqueue && options->play) | |
875 pos = xmms_remote_get_playlist_length(session); | |
876 | |
877 if (!options->enqueue) | |
878 xmms_remote_playlist_clear(session); | |
879 | |
880 xmms_remote_playlist_add(session, filenames); | |
881 | |
882 if (options->enqueue && options->play && | |
883 xmms_remote_get_playlist_length(session) > pos) | |
884 xmms_remote_set_playlist_pos(session, pos); | |
885 | |
886 if (!options->enqueue) | |
887 xmms_remote_play(session); | |
888 } | |
889 | |
890 g_list_foreach(filenames, (GFunc) g_free, NULL); | |
891 g_list_free(filenames); | |
892 } | |
893 | |
894 if (options->rew) | |
895 xmms_remote_playlist_prev(session); | |
896 | |
897 if (options->play) | |
898 xmms_remote_play(session); | |
899 | |
900 if (options->pause) | |
901 xmms_remote_pause(session); | |
902 | |
903 if (options->stop) | |
904 xmms_remote_stop(session); | |
905 | |
906 if (options->fwd) | |
907 xmms_remote_playlist_next(session); | |
908 | |
909 if (options->play_pause) | |
910 xmms_remote_play_pause(session); | |
911 | |
912 if (options->mainwin) | |
913 xmms_remote_main_win_toggle(session, TRUE); | |
914 | |
915 if (options->activate) | |
916 xmms_remote_activate(session); | |
917 | |
918 if (options->playcd) | |
919 play_medium(); | |
920 } | |
921 | |
922 static void | |
923 segfault_handler(gint sig) | |
924 { | |
925 g_printerr(_("\nReceived SIGSEGV\n\n" | |
27
d160ae2251e9
[svn] Update SIGSEGV message, contained the BMP mailing information.
nenolod
parents:
0
diff
changeset
|
926 "This could be a bug in Audacious. If you don't know why this happened, " |
d160ae2251e9
[svn] Update SIGSEGV message, contained the BMP mailing information.
nenolod
parents:
0
diff
changeset
|
927 "file a bug at http://bugs.nenolod.net/\n\n")); |
0 | 928 #ifdef HANDLE_SIGSEGV |
929 exit(EXIT_FAILURE); | |
930 #else | |
931 abort(); | |
932 #endif | |
933 } | |
934 | |
935 static void | |
936 bmp_setup_logger(void) | |
937 { | |
938 if (!bmp_logger_start(bmp_paths[BMP_PATH_LOG_FILE])) | |
939 return; | |
940 | |
941 g_atexit(bmp_logger_stop); | |
942 } | |
943 | |
944 static void | |
945 run_load_skin_error_dialog(const gchar * skin_path) | |
946 { | |
947 const gchar *markup = | |
948 N_("<b><big>Unable to load skin.</big></b>\n" | |
949 "\n" | |
950 "Check that skin at '%s' is usable and default skin is properly " | |
951 "installed at '%s'\n"); | |
952 | |
953 GtkWidget *dialog = | |
954 gtk_message_dialog_new_with_markup(NULL, | |
955 GTK_DIALOG_MODAL, | |
956 GTK_MESSAGE_ERROR, | |
957 GTK_BUTTONS_CLOSE, | |
958 _(markup), | |
959 skin_path, | |
960 BMP_DEFAULT_SKIN_PATH); | |
961 gtk_dialog_run(GTK_DIALOG(dialog)); | |
962 gtk_widget_destroy(dialog); | |
963 } | |
964 | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
965 // use a format string? |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
966 void report_error(const gchar *error_text) |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
967 { |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
968 fprintf(stderr,error_text); |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
969 if (options.headless!=1) { |
813
c8cf439179b8
[svn] - Fix a ton and a half of memory leaks, via the wonderful Leonardo Boshell <leonardop -at- gentoo.org>.
nenolod
parents:
781
diff
changeset
|
970 gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(err), |
c8cf439179b8
[svn] - Fix a ton and a half of memory leaks, via the wonderful Leonardo Boshell <leonardop -at- gentoo.org>.
nenolod
parents:
781
diff
changeset
|
971 error_text); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
972 gtk_dialog_run(GTK_DIALOG(err)); |
813
c8cf439179b8
[svn] - Fix a ton and a half of memory leaks, via the wonderful Leonardo Boshell <leonardop -at- gentoo.org>.
nenolod
parents:
781
diff
changeset
|
973 gtk_widget_hide(err); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
974 } |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
975 } |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
976 |
0 | 977 gint |
978 main(gint argc, gchar ** argv) | |
979 { | |
44 | 980 gboolean gtk_init_check_ok; |
0 | 981 |
982 /* Setup l10n early so we can print localized error messages */ | |
983 gtk_set_locale(); | |
749 | 984 bindtextdomain(PACKAGE_NAME, LOCALEDIR); |
985 bind_textdomain_codeset(PACKAGE_NAME, "UTF-8"); | |
986 textdomain(PACKAGE_NAME); | |
0 | 987 |
988 bmp_init_paths(); | |
989 bmp_make_user_dir(); | |
990 | |
991 /* Check GTK version. Really, this is only needed for binary | |
992 * distribution since configure already checks. */ | |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
993 if (!GTK_CHECK_VERSION(2, 6, 0)) { |
257
256b3acc87d4
[svn] Properly report Audacious instead of XMMS or BMP in all places. Patch by laci; closes bug #379.
chainsaw
parents:
216
diff
changeset
|
994 g_printerr(_("Sorry, your GTK+ version (%d.%d.%d) does not work with Audacious.\n" |
0 | 995 "Please use GTK+ %s or newer.\n"), |
996 gtk_major_version, gtk_minor_version, gtk_micro_version, | |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
997 "2.6.0"); |
0 | 998 exit(EXIT_FAILURE); |
999 } | |
1000 | |
1001 g_set_application_name(_(application_name)); | |
1002 | |
1003 g_thread_init(NULL); | |
1004 if (!g_thread_supported()) { | |
1005 g_printerr(_("Sorry, threads isn't supported on your platform.\n\n" | |
1006 "If you're on a libc5 based linux system and installed Glib & GTK+ before you\n" | |
1007 "installed LinuxThreads you need to recompile Glib & GTK+.\n")); | |
1008 exit(EXIT_FAILURE); | |
1009 } | |
1010 | |
1011 gdk_threads_init(); | |
1012 | |
44 | 1013 gtk_init_check_ok = gtk_init_check(&argc, &argv); |
1014 /* Now let's parse the command line options first. */ | |
1015 parse_cmd_line(argc, argv, &options); | |
1016 if (!gtk_init_check_ok) { | |
0 | 1017 if (argc < 2) { |
1018 /* GTK check failed, and no arguments passed to indicate | |
1019 that user is intending to only remote control a running | |
1020 session */ | |
44 | 1021 g_printerr(_("audacious: Unable to open display, exiting.\n")); |
0 | 1022 exit(EXIT_FAILURE); |
1023 } | |
1024 | |
1025 handle_cmd_line_options(&options, TRUE); | |
191 | 1026 |
1027 /* we could be running headless, so GTK probably wont matter */ | |
1028 if (options.headless != 1) | |
1029 exit(EXIT_SUCCESS); | |
0 | 1030 } |
1031 | |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
1032 if (options.no_log == FALSE) |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
1033 bmp_setup_logger(); |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
1034 |
0 | 1035 if (!vfs_init()) { |
1036 g_printerr(Q_("Could not initialize VFS.\n")); | |
1037 exit(EXIT_FAILURE); | |
1038 } | |
1039 | |
1040 signal(SIGPIPE, SIG_IGN); /* for controlsocket.c */ | |
1041 signal(SIGSEGV, segfault_handler); | |
1042 | |
1043 g_random_set_seed(time(NULL)); | |
1044 | |
1045 bmp_config_load(); | |
1046 | |
1047 if (options.session != -1 || !ctrlsocket_setup()) { | |
1048 handle_cmd_line_options(&options, TRUE); | |
1049 exit(EXIT_SUCCESS); | |
1050 } | |
1051 | |
191 | 1052 if (options.headless != 1) |
1053 { | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1054 |
191 | 1055 bmp_set_default_icon(); |
0 | 1056 |
191 | 1057 gtk_accel_map_load(bmp_paths[BMP_PATH_ACCEL_FILE]); |
0 | 1058 |
191 | 1059 mainwin_create(); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1060 |
191 | 1061 playlistwin_create(); |
1062 equalizerwin_create(); | |
0 | 1063 |
191 | 1064 if (!init_skins(cfg.skin)) { |
1065 run_load_skin_error_dialog(cfg.skin); | |
1066 exit(EXIT_FAILURE); | |
1067 } | |
1068 | |
1069 GDK_THREADS_ENTER(); | |
0 | 1070 } |
1071 | |
1072 plugin_system_init(); | |
1073 | |
1074 playlist_load(bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
1075 playlist_set_position(cfg.playlist_position); | |
1076 | |
1077 /* this needs to be called after all 3 windows are created and | |
191 | 1078 * input plugins are setup'ed |
1079 * but not if we're running headless --nenolod | |
1080 */ | |
0 | 1081 mainwin_setup_menus(); |
1082 | |
191 | 1083 if (options.headless != 1) |
1084 GDK_THREADS_LEAVE(); | |
0 | 1085 |
1086 ctrlsocket_start(); | |
1087 | |
1088 handle_cmd_line_options(&options, FALSE); | |
1089 | |
191 | 1090 if (options.headless != 1) |
1091 { | |
1092 GDK_THREADS_ENTER(); | |
0 | 1093 |
191 | 1094 read_volume(VOLSET_STARTUP); |
1095 mainwin_set_info_text(); | |
1096 | |
1097 /* FIXME: delayed, because it deals directly with the plugin | |
1098 * interface to set menu items */ | |
1099 create_prefs_window(); | |
0 | 1100 |
1264 | 1101 create_fileinfo_window(); |
1283
19b1d3f22e10
[svn] - when hovering over a playlist tuple, describe the tuple via a tooltip-like popup
nenolod
parents:
1264
diff
changeset
|
1102 create_filepopup_window(); |
1264 | 1103 |
191 | 1104 if (cfg.player_visible) |
1105 mainwin_show(TRUE); | |
1106 else if (!cfg.playlist_visible && !cfg.equalizer_visible) | |
1107 mainwin_show(TRUE); | |
125 | 1108 |
191 | 1109 if (cfg.equalizer_visible) |
1110 equalizerwin_show(TRUE); | |
1111 | |
1112 if (cfg.playlist_visible) | |
1113 playlistwin_show(); | |
0 | 1114 |
191 | 1115 hint_set_always(cfg.always_on_top); |
0 | 1116 |
191 | 1117 playlist_start_get_info_thread(); |
1118 mainwin_attach_idle_func(); | |
1119 | |
486 | 1120 starting_up = FALSE; |
1121 | |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1122 has_x11_connection = TRUE; |
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1123 |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1124 if (cfg.resume_playback_on_startup) { |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1125 if (cfg.resume_playback_on_startup_time != -1) { |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1126 while (gtk_events_pending()) gtk_main_iteration(); |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1127 bmp_playback_initiate(); |
1009
1008da26c12d
[svn] - add an additional usleep to the playback resume code per Chainsaw
nenolod
parents:
998
diff
changeset
|
1128 g_usleep(10000); /* XXX: musepack and others need this! */ |
998
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1129 while (!ip_data.playing) |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1130 g_usleep(10000); |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1131 bmp_playback_seek(cfg.resume_playback_on_startup_time / |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1132 1000); |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1133 } |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1134 } |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1135 |
191 | 1136 gtk_main(); |
1137 | |
1138 GDK_THREADS_LEAVE(); | |
0 | 1139 |
191 | 1140 return EXIT_SUCCESS; |
1141 } | |
1142 else | |
1143 { | |
1144 mainwin_set_info_text(); | |
1145 playlist_start_get_info_thread(); | |
0 | 1146 |
486 | 1147 starting_up = FALSE; |
1148 | |
191 | 1149 for (;;) |
192
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1150 { |
197
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
1151 /* headless eventloop */ |
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
196
diff
changeset
|
1152 audcore_generic_events(); |
198 | 1153 free_vis_data(); /* to prevent buffer overflow -- paranoia */ |
191 | 1154 xmms_usleep(10000); |
192
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1155 } |
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1156 |
191 | 1157 return EXIT_SUCCESS; |
1158 } | |
0 | 1159 } |