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