Mercurial > audlegacy
annotate audacious/main.c @ 1847:a46b6465c7e5 trunk
[svn] - update NEWS
author | nenolod |
---|---|
date | Sun, 08 Oct 2006 18:17:58 -0700 |
parents | a6a248bfafc3 |
children | 5f0266d393b8 |
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 | |
1459 | 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
0 | 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> | |
1640 | 46 |
47 #include "platform/smartinclude.h" | |
0 | 48 |
49 #include "libaudacious/configdb.h" | |
50 #include "libaudacious/beepctrl.h" | |
51 #include "libaudacious/util.h" | |
52 #include "libaudacious/vfs.h" | |
53 | |
54 #include "controlsocket.h" | |
55 #include "dnd.h" | |
56 #include "effect.h" | |
1653 | 57 #include "equalizer.h" |
0 | 58 #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
|
59 #include "genevent.h" |
0 | 60 #include "hints.h" |
61 #include "input.h" | |
62 #include "logger.h" | |
1653 | 63 #include "mainwin.h" |
0 | 64 #include "output.h" |
538
e4e897d20791
[svn] remove libaudcore, we never did anything with it
nenolod
parents:
534
diff
changeset
|
65 #include "playback.h" |
0 | 66 #include "playlist.h" |
1653 | 67 #include "ui_playlist.h" |
0 | 68 #include "pluginenum.h" |
69 #include "prefswin.h" | |
70 #include "skinwin.h" | |
71 #include "util.h" | |
72 #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
|
73 #include "build_stamp.h" |
1264 | 74 #include "ui_fileinfo.h" |
0 | 75 |
76 #include "pixmaps.h" | |
120 | 77 #include "images/audacious_player.xpm" |
0 | 78 |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
79 gboolean has_x11_connection = FALSE; /* do we have an X11 connection? */ |
0 | 80 |
81 /* Translatable string for beep.desktop's comment field */ | |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
82 const gchar *desktop_comment = N_("Audacious"); |
0 | 83 |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
84 const gchar *application_name = N_("Audacious"); |
0 | 85 |
1653 | 86 |
0 | 87 struct _BmpCmdLineOpt { |
88 GList *filenames; | |
89 gint session; | |
90 gboolean play, stop, pause, fwd, rew, play_pause, playcd; | |
91 gboolean enqueue, mainwin, remote, activate; | |
92 gboolean load_skins; | |
191 | 93 gboolean headless; |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
94 gboolean no_log; |
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 */ | |
1347
8a874906535b
[svn] - use a more standard-looking default title format
nenolod
parents:
1283
diff
changeset
|
190 2, /* 3rd preset (ARTIST - ALBUM - 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 */ |
1358 | 203 TRUE, /* show filepopup for tuple */ |
1413 | 204 NULL, /* words identifying covers */ |
205 NULL, /* words that might not show up in cover names */ | |
1444
c04ce16b2b57
[svn] - libaudacious/beepctrl.c: optimise further and be more paranoid about leaks
nenolod
parents:
1429
diff
changeset
|
206 FALSE, |
c04ce16b2b57
[svn] - libaudacious/beepctrl.c: optimise further and be more paranoid about leaks
nenolod
parents:
1429
diff
changeset
|
207 0, |
c04ce16b2b57
[svn] - libaudacious/beepctrl.c: optimise further and be more paranoid about leaks
nenolod
parents:
1429
diff
changeset
|
208 NULL, /* default session uri base (non-NULL = custom session uri base) */ |
1710 | 209 150, /* short side length of the picture in the filepopup */ |
210 20, /* delay until the filepopup comes up */ | |
0 | 211 }; |
212 | |
213 typedef struct bmp_cfg_boolent_t { | |
214 char const *be_vname; | |
215 gboolean *be_vloc; | |
216 gboolean be_wrt; | |
217 } bmp_cfg_boolent; | |
218 | |
219 typedef struct bmp_cfg_nument_t { | |
220 char const *ie_vname; | |
221 gint *ie_vloc; | |
222 gboolean ie_wrt; | |
223 } bmp_cfg_nument; | |
224 | |
225 typedef struct bmp_cfg_strent_t { | |
226 char const *se_vname; | |
227 char **se_vloc; | |
228 gboolean se_wrt; | |
229 } bmp_cfg_strent; | |
230 | |
231 const gchar *bmp_titlestring_presets[] = { | |
232 "%t", | |
946
8cfe13fcd0c7
[svn] - Forgot a few things regarding titlestrings!
nhjm449
parents:
943
diff
changeset
|
233 "%{p:%p - %}%t", |
8cfe13fcd0c7
[svn] - Forgot a few things regarding titlestrings!
nhjm449
parents:
943
diff
changeset
|
234 "%{p:%p - %}%{a:%a - %}%t", |
943 | 235 "%{p:%p - %}%{a:%a - %}%{n:%n. %}%t", |
236 "%{p:%p %}%{a:[ %a ] %}%{p:- %}%{n:%n. %}%{t:%t%}", | |
946
8cfe13fcd0c7
[svn] - Forgot a few things regarding titlestrings!
nhjm449
parents:
943
diff
changeset
|
237 "%{a:%a - %}%t" |
0 | 238 }; |
239 | |
240 const guint n_titlestring_presets = G_N_ELEMENTS(bmp_titlestring_presets); | |
241 | |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
242 const gchar *chardet_detector_presets[] = { |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
243 "None", |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
244 "Japanese", |
1595
e6cc84e06444
[svn] - libguess update: workaround for that g_convert can't convert properly from UCS-2BE/LE trailing after BOM.
yaz
parents:
1566
diff
changeset
|
245 "Taiwanese", |
e6cc84e06444
[svn] - libguess update: workaround for that g_convert can't convert properly from UCS-2BE/LE trailing after BOM.
yaz
parents:
1566
diff
changeset
|
246 "Chinese", |
e6cc84e06444
[svn] - libguess update: workaround for that g_convert can't convert properly from UCS-2BE/LE trailing after BOM.
yaz
parents:
1566
diff
changeset
|
247 "Korean", |
1613
9becbe564217
[svn] - chardet patch for Russian language witten by Valentine Sinitsyn.
yaz
parents:
1595
diff
changeset
|
248 "Russian", |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
249 #ifdef HAVE_UDET |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
250 "Universal" |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
251 #endif |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
252 }; |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
253 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
1068
diff
changeset
|
254 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
|
255 |
0 | 256 static bmp_cfg_boolent bmp_boolents[] = { |
257 {"allow_multiple_instances", &cfg.allow_multiple_instances, TRUE}, | |
258 {"use_realtime", &cfg.use_realtime, TRUE}, | |
259 {"always_show_cb", &cfg.always_show_cb, TRUE}, | |
260 {"convert_underscore", &cfg.convert_underscore, TRUE}, | |
261 {"convert_twenty", &cfg.convert_twenty, TRUE}, | |
262 {"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
|
263 {"show_separator_in_pl", &cfg.show_separator_in_pl, TRUE}, |
0 | 264 {"snap_windows", &cfg.snap_windows, TRUE}, |
265 {"save_window_positions", &cfg.save_window_position, TRUE}, | |
266 {"dim_titlebar", &cfg.dim_titlebar, TRUE}, | |
267 {"get_info_on_load", &cfg.get_info_on_load, TRUE}, | |
268 {"get_info_on_demand", &cfg.get_info_on_demand, TRUE}, | |
269 {"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
|
270 {"refresh_file_list", &cfg.refresh_file_list, TRUE}, |
0 | 271 {"sort_jump_to_file", &cfg.sort_jump_to_file, TRUE}, |
272 {"use_pl_metadata", &cfg.use_pl_metadata, TRUE}, | |
273 {"warn_about_unplayables", &cfg.warn_about_unplayables, TRUE}, | |
274 {"use_backslash_as_dir_delimiter", &cfg.use_backslash_as_dir_delimiter, TRUE}, | |
275 {"player_shaded", &cfg.player_shaded, TRUE}, | |
276 {"player_visible", &cfg.player_visible, TRUE}, | |
277 {"shuffle", &cfg.shuffle, TRUE}, | |
278 {"repeat", &cfg.repeat, TRUE}, | |
279 {"autoscroll_songname", &cfg.autoscroll, TRUE}, | |
898 | 280 {"stop_after_current_song", &cfg.stopaftersong, TRUE}, |
0 | 281 {"playlist_shaded", &cfg.playlist_shaded, TRUE}, |
282 {"playlist_visible", &cfg.playlist_visible, TRUE}, | |
283 {"playlist_transparent", &cfg.playlist_transparent, TRUE}, | |
284 {"use_fontsets", &cfg.use_fontsets, TRUE}, | |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
285 {"mainwin_use_xfont", &cfg.mainwin_use_xfont, FALSE}, |
0 | 286 {"equalizer_visible", &cfg.equalizer_visible, TRUE}, |
287 {"equalizer_active", &cfg.equalizer_active, TRUE}, | |
288 {"equalizer_shaded", &cfg.equalizer_shaded, TRUE}, | |
289 {"equalizer_autoload", &cfg.equalizer_autoload, TRUE}, | |
290 {"use_eplugins", &cfg.use_eplugins, TRUE}, | |
291 {"always_on_top", &cfg.always_on_top, TRUE}, | |
292 {"sticky", &cfg.sticky, TRUE}, | |
293 {"random_skin_on_play", &cfg.random_skin_on_play, TRUE}, | |
294 {"pause_between_songs", &cfg.pause_between_songs, TRUE}, | |
295 {"show_wm_decorations", &cfg.show_wm_decorations, TRUE}, | |
296 {"eq_extra_filtering", &cfg.eq_extra_filtering, TRUE}, | |
297 {"analyzer_peaks", &cfg.analyzer_peaks, TRUE}, | |
298 {"custom_cursors", &cfg.custom_cursors, TRUE}, | |
299 {"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
|
300 {"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
|
301 {"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
|
302 {"playlist_detect", &cfg.playlist_detect, TRUE}, |
1358 | 303 {"show_filepopup_for_tuple", &cfg.show_filepopup_for_tuple, TRUE}, |
1429
a360afd8df52
[svn] Make annoying recursion that consistently returns wrong art, optional.
nemo
parents:
1413
diff
changeset
|
304 {"recurse_for_cover", &cfg.recurse_for_cover, TRUE} |
0 | 305 }; |
306 | |
307 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); | |
308 | |
309 static bmp_cfg_nument bmp_numents[] = { | |
310 {"player_x", &cfg.player_x, TRUE}, | |
311 {"player_y", &cfg.player_y, TRUE}, | |
312 {"timer_mode", &cfg.timer_mode, TRUE}, | |
313 {"vis_type", &cfg.vis_type, TRUE}, | |
314 {"analyzer_mode", &cfg.analyzer_mode, TRUE}, | |
315 {"analyzer_type", &cfg.analyzer_type, TRUE}, | |
316 {"scope_mode", &cfg.scope_mode, TRUE}, | |
317 {"vu_mode", &cfg.vu_mode, TRUE}, | |
318 {"vis_refresh_rate", &cfg.vis_refresh, TRUE}, | |
319 {"analyzer_falloff", &cfg.analyzer_falloff, TRUE}, | |
320 {"peaks_falloff", &cfg.peaks_falloff, TRUE}, | |
321 {"playlist_x", &cfg.playlist_x, TRUE}, | |
322 {"playlist_y", &cfg.playlist_y, TRUE}, | |
323 {"playlist_width", &cfg.playlist_width, TRUE}, | |
324 {"playlist_height", &cfg.playlist_height, TRUE}, | |
325 {"playlist_position", &cfg.playlist_position, TRUE}, | |
326 {"equalizer_x", &cfg.equalizer_x, TRUE}, | |
327 {"equalizer_y", &cfg.equalizer_y, TRUE}, | |
328 {"snap_distance", &cfg.snap_distance, TRUE}, | |
329 {"pause_between_songs_time", &cfg.pause_between_songs_time, TRUE}, | |
330 {"mouse_wheel_change", &cfg.mouse_change, TRUE}, | |
331 {"scroll_pl_by", &cfg.scroll_pl_by, TRUE}, | |
332 {"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
|
333 {"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
|
334 {"output_buffer_size", &cfg.output_buffer_size, TRUE}, |
1710 | 335 {"recurse_for_cover_depth", &cfg.recurse_for_cover_depth, TRUE}, |
336 {"filepopup_pixelsize", &cfg.filepopup_pixelsize, TRUE}, | |
337 {"filepopup_delay", &cfg.filepopup_delay, TRUE}, | |
0 | 338 }; |
339 | |
340 static gint ncfgient = G_N_ELEMENTS(bmp_numents); | |
341 | |
342 static bmp_cfg_strent bmp_strents[] = { | |
343 {"playlist_font", &cfg.playlist_font, TRUE}, | |
344 {"mainwin_font", &cfg.mainwin_font, TRUE}, | |
345 {"eqpreset_default_file", &cfg.eqpreset_default_file, TRUE}, | |
346 {"eqpreset_extension", &cfg.eqpreset_extension, TRUE}, | |
347 {"skin", &cfg.skin, FALSE}, | |
348 {"output_plugin", &cfg.outputplugin, FALSE}, | |
349 {"disabled_iplugins", &cfg.disabled_iplugins, TRUE}, | |
350 {"enabled_gplugins", &cfg.enabled_gplugins, FALSE}, | |
351 {"enabled_vplugins", &cfg.enabled_vplugins, FALSE}, | |
352 {"enabled_eplugins", &cfg.enabled_eplugins, FALSE}, | |
353 {"filesel_path", &cfg.filesel_path, FALSE}, | |
354 {"playlist_path", &cfg.playlist_path, FALSE}, | |
355 {"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
|
356 {"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
|
357 {"chardet_fallback", &cfg.chardet_fallback, TRUE}, |
1413 | 358 {"cover_name_include", &cfg.cover_name_include, TRUE}, |
359 {"cover_name_exclude", &cfg.cover_name_exclude, TRUE}, | |
1444
c04ce16b2b57
[svn] - libaudacious/beepctrl.c: optimise further and be more paranoid about leaks
nenolod
parents:
1429
diff
changeset
|
360 {"session_uri_base", &cfg.session_uri_base, TRUE} |
0 | 361 }; |
362 | |
363 static gint ncfgsent = G_N_ELEMENTS(bmp_strents); | |
364 | |
365 gchar *bmp_paths[BMP_PATH_COUNT] = {}; | |
366 | |
367 GList *dock_window_list = NULL; | |
368 | |
369 gboolean pposition_broken = FALSE; | |
370 | |
486 | 371 gboolean starting_up = TRUE; |
0 | 372 |
373 static GSList * | |
374 get_feature_list(void) | |
375 { | |
376 GSList *features = NULL; | |
377 | |
378 #ifdef HAVE_GNOME_VFS | |
379 features = g_slist_append(features, "GNOME VFS"); | |
380 #endif | |
381 | |
382 #ifdef HAVE_GCONF | |
383 features = g_slist_append(features, "GConf"); | |
384 #endif | |
385 | |
386 return features; | |
387 } | |
388 | |
389 static void | |
390 dump_version(void) | |
391 { | |
392 GSList *features; | |
393 | |
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
|
394 g_printf("%s %s [%s]", _(application_name), VERSION, svn_stamp); |
0 | 395 |
396 features = get_feature_list(); | |
397 | |
398 if (features) { | |
399 GSList *item; | |
400 | |
401 g_printf(" ("); | |
402 | |
403 for (item = features; g_slist_next(item); item = g_slist_next(item)) | |
404 g_printf("%s, ", (const gchar *) item->data); | |
405 | |
406 g_printf("%s)", (const gchar *) item->data); | |
407 | |
408 g_slist_free(features); | |
409 } | |
410 | |
411 g_printf("\n"); | |
412 } | |
413 | |
414 const gchar * | |
415 xmms_get_gentitle_format(void) | |
416 { | |
625
0a73d1faeb4e
[svn] GCC 4.1 warning fixes by Diego 'Flameeyes' Petteno from Gentoo.
chainsaw
parents:
538
diff
changeset
|
417 guint titlestring_preset = cfg.titlestring_preset; |
0 | 418 |
419 if (titlestring_preset < n_titlestring_presets) | |
420 return bmp_titlestring_presets[titlestring_preset]; | |
421 | |
422 return cfg.gentitle_format; | |
423 } | |
424 | |
887 | 425 void |
0 | 426 make_directory(const gchar * path, mode_t mode) |
427 { | |
428 if (mkdir(path, mode) == 0) | |
429 return; | |
430 | |
431 if (errno == EEXIST) | |
432 return; | |
433 | |
434 g_printerr(_("Could not create directory (%s): %s"), path, | |
435 g_strerror(errno)); | |
436 } | |
437 | |
438 static void | |
439 bmp_make_user_dir(void) | |
440 { | |
441 const mode_t mode755 = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; | |
442 | |
443 make_directory(bmp_paths[BMP_PATH_USER_DIR], mode755); | |
444 make_directory(bmp_paths[BMP_PATH_USER_PLUGIN_DIR], mode755); | |
445 make_directory(bmp_paths[BMP_PATH_USER_SKIN_DIR], mode755); | |
446 make_directory(bmp_paths[BMP_PATH_SKIN_THUMB_DIR], mode755); | |
447 } | |
448 | |
449 static void | |
450 bmp_free_paths(void) | |
451 { | |
452 int i; | |
453 | |
454 for (i = 0; i < BMP_PATH_COUNT; i++) | |
455 { | |
456 g_free(bmp_paths[i]); | |
457 bmp_paths[i] = 0; | |
458 } | |
459 } | |
460 | |
461 | |
462 #define USER_PATH(path) \ | |
463 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], path, NULL); | |
464 | |
465 static void | |
466 bmp_init_paths(void) | |
467 { | |
734 | 468 bmp_paths[BMP_PATH_USER_DIR] = g_build_filename(g_get_home_dir(), BMP_RCPATH, NULL); |
0 | 469 |
470 bmp_paths[BMP_PATH_USER_PLUGIN_DIR] = USER_PATH(BMP_USER_PLUGIN_DIR_BASENAME); | |
471 bmp_paths[BMP_PATH_USER_SKIN_DIR] = USER_PATH(BMP_SKIN_DIR_BASENAME); | |
472 bmp_paths[BMP_PATH_SKIN_THUMB_DIR] = USER_PATH(BMP_SKIN_THUMB_DIR_BASENAME); | |
473 bmp_paths[BMP_PATH_CONFIG_FILE] = USER_PATH(BMP_CONFIG_BASENAME); | |
474 bmp_paths[BMP_PATH_PLAYLIST_FILE] = USER_PATH(BMP_PLAYLIST_BASENAME); | |
475 bmp_paths[BMP_PATH_ACCEL_FILE] = USER_PATH(BMP_ACCEL_BASENAME); | |
476 bmp_paths[BMP_PATH_LOG_FILE] = USER_PATH(BMP_LOG_BASENAME); | |
477 | |
478 g_atexit(bmp_free_paths); | |
479 } | |
480 | |
481 | |
482 void | |
483 bmp_config_load(void) | |
484 { | |
485 ConfigDb *db; | |
486 gint i, length; | |
487 | |
488 memcpy(&cfg, &bmp_default_config, sizeof(BmpConfig)); | |
489 | |
490 db = bmp_cfg_db_open(); | |
491 for (i = 0; i < ncfgbent; ++i) { | |
492 bmp_cfg_db_get_bool(db, NULL, | |
493 bmp_boolents[i].be_vname, | |
494 bmp_boolents[i].be_vloc); | |
495 } | |
496 | |
497 for (i = 0; i < ncfgient; ++i) { | |
498 bmp_cfg_db_get_int(db, NULL, | |
499 bmp_numents[i].ie_vname, | |
500 bmp_numents[i].ie_vloc); | |
501 } | |
502 | |
503 for (i = 0; i < ncfgsent; ++i) { | |
504 bmp_cfg_db_get_string(db, NULL, | |
505 bmp_strents[i].se_vname, | |
506 bmp_strents[i].se_vloc); | |
507 } | |
508 | |
509 /* Preset */ | |
510 bmp_cfg_db_get_float(db, NULL, "equalizer_preamp", &cfg.equalizer_preamp); | |
511 for (i = 0; i < 10; i++) { | |
512 gchar eqtext[18]; | |
513 | |
514 g_snprintf(eqtext, sizeof(eqtext), "equalizer_band%d", i); | |
515 bmp_cfg_db_get_float(db, NULL, eqtext, &cfg.equalizer_bands[i]); | |
516 } | |
517 | |
518 /* History */ | |
519 if (bmp_cfg_db_get_int(db, NULL, "url_history_length", &length)) { | |
520 for (i = 1; i <= length; i++) { | |
521 gchar str[19], *tmp; | |
522 | |
523 g_snprintf(str, sizeof(str), "url_history%d", i); | |
524 if (bmp_cfg_db_get_string(db, NULL, str, &tmp)) | |
525 cfg.url_history = g_list_append(cfg.url_history, tmp); | |
526 } | |
527 } | |
528 | |
529 bmp_cfg_db_close(db); | |
530 | |
531 | |
532 if (cfg.playlist_font && strlen(cfg.playlist_font) == 0) { | |
533 g_free(cfg.playlist_font); | |
534 cfg.playlist_font = NULL; | |
535 } | |
536 | |
537 if (cfg.mainwin_font && strlen(cfg.mainwin_font) == 0) { | |
538 g_free(cfg.mainwin_font); | |
539 cfg.mainwin_font = NULL; | |
540 } | |
541 | |
542 if (!cfg.playlist_font) | |
1653 | 543 cfg.playlist_font = g_strdup(PLAYLISTWIN_DEFAULT_FONT); |
0 | 544 |
545 if (!cfg.mainwin_font) | |
1653 | 546 cfg.mainwin_font = g_strdup(MAINWIN_DEFAULT_FONT); |
0 | 547 |
548 if (!cfg.gentitle_format) | |
1347
8a874906535b
[svn] - use a more standard-looking default title format
nenolod
parents:
1283
diff
changeset
|
549 cfg.gentitle_format = g_strdup("%{p:%p - %}%{a:%a - %}%t"); |
0 | 550 |
551 if (!cfg.outputplugin) { | |
552 #ifdef HAVE_OSS | |
553 cfg.outputplugin = g_build_filename(PLUGIN_DIR, plugin_dir_list[0], | |
554 PLUGIN_FILENAME("OSS"), NULL); | |
555 #else | |
556 /* FIXME: This implicitly means the output plugin that is | |
557 * first in the alphabet will be used (usually the disk writer | |
558 * plugin) */ | |
559 cfg.outputplugin = g_strdup(""); | |
560 #endif | |
561 } | |
562 | |
563 if (!cfg.eqpreset_default_file) | |
1653 | 564 cfg.eqpreset_default_file = g_strdup(EQUALIZER_DEFAULT_DIR_PRESET); |
0 | 565 |
566 if (!cfg.eqpreset_extension) | |
1653 | 567 cfg.eqpreset_extension = g_strdup(EQUALIZER_DEFAULT_PRESET_EXT); |
1413 | 568 |
1761
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
569 if (!cfg.chardet_fallback) |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
570 cfg.chardet_fallback = g_strdup(""); |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
571 |
1413 | 572 if (!cfg.cover_name_include) |
573 cfg.cover_name_include = g_strdup(""); | |
574 | |
575 if (!cfg.cover_name_exclude) | |
576 cfg.cover_name_exclude = g_strdup("back"); | |
1761
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
577 |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
578 if (!cfg.session_uri_base) |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
579 cfg.session_uri_base = g_strdup(""); |
0 | 580 } |
581 | |
582 | |
583 void | |
584 bmp_config_save(void) | |
585 { | |
586 GList *node; | |
587 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
|
588 gint i, cur_pb_time; |
0 | 589 ConfigDb *db; |
590 | |
591 cfg.disabled_iplugins = input_stringify_disabled_list(); | |
592 | |
593 | |
594 db = bmp_cfg_db_open(); | |
595 | |
596 for (i = 0; i < ncfgbent; ++i) | |
597 if (bmp_boolents[i].be_wrt) | |
598 bmp_cfg_db_set_bool(db, NULL, | |
599 bmp_boolents[i].be_vname, | |
600 *bmp_boolents[i].be_vloc); | |
601 | |
602 for (i = 0; i < ncfgient; ++i) | |
603 if (bmp_numents[i].ie_wrt) | |
604 bmp_cfg_db_set_int(db, NULL, | |
605 bmp_numents[i].ie_vname, | |
606 *bmp_numents[i].ie_vloc); | |
607 | |
608 /* This is a bit lame .. it'll end up being written twice, | |
609 * could do with being done a bit neater. -larne */ | |
610 bmp_cfg_db_set_int(db, NULL, "playlist_position", | |
611 playlist_get_position()); | |
612 | |
207
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
613 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
|
614 cfg.mainwin_use_xfont); |
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
615 |
0 | 616 for (i = 0; i < ncfgsent; ++i) { |
617 if (bmp_strents[i].se_wrt) | |
618 bmp_cfg_db_set_string(db, NULL, | |
619 bmp_strents[i].se_vname, | |
620 *bmp_strents[i].se_vloc); | |
621 } | |
622 | |
623 bmp_cfg_db_set_float(db, NULL, "equalizer_preamp", cfg.equalizer_preamp); | |
624 | |
625 for (i = 0; i < 10; i++) { | |
626 str = g_strdup_printf("equalizer_band%d", i); | |
627 bmp_cfg_db_set_float(db, NULL, str, cfg.equalizer_bands[i]); | |
628 g_free(str); | |
629 } | |
630 | |
196 | 631 if (bmp_active_skin != NULL) |
632 { | |
633 if (bmp_active_skin->path) | |
634 bmp_cfg_db_set_string(db, NULL, "skin", bmp_active_skin->path); | |
635 else | |
636 bmp_cfg_db_unset_key(db, NULL, "skin"); | |
637 } | |
0 | 638 |
639 if (get_current_output_plugin()) | |
640 bmp_cfg_db_set_string(db, NULL, "output_plugin", | |
641 get_current_output_plugin()->filename); | |
642 else | |
643 bmp_cfg_db_unset_key(db, NULL, "output_plugin"); | |
644 | |
645 str = general_stringify_enabled_list(); | |
646 if (str) { | |
647 bmp_cfg_db_set_string(db, NULL, "enabled_gplugins", str); | |
648 g_free(str); | |
649 } | |
650 else | |
651 bmp_cfg_db_unset_key(db, NULL, "enabled_gplugins"); | |
652 | |
653 str = vis_stringify_enabled_list(); | |
654 if (str) { | |
655 bmp_cfg_db_set_string(db, NULL, "enabled_vplugins", str); | |
656 g_free(str); | |
657 } | |
658 else | |
659 bmp_cfg_db_unset_key(db, NULL, "enabled_vplugins"); | |
660 | |
661 str = effect_stringify_enabled_list(); | |
662 if (str) { | |
663 bmp_cfg_db_set_string(db, NULL, "enabled_eplugins", str); | |
664 g_free(str); | |
665 } | |
666 else | |
667 bmp_cfg_db_unset_key(db, NULL, "enabled_eplugins"); | |
668 | |
669 if (cfg.filesel_path) | |
670 bmp_cfg_db_set_string(db, NULL, "filesel_path", cfg.filesel_path); | |
671 | |
672 if (cfg.playlist_path) | |
673 bmp_cfg_db_set_string(db, NULL, "playlist_path", cfg.playlist_path); | |
674 | |
675 bmp_cfg_db_set_int(db, NULL, "url_history_length", | |
676 g_list_length(cfg.url_history)); | |
677 | |
678 for (node = cfg.url_history, i = 1; node; node = g_list_next(node), i++) { | |
679 str = g_strdup_printf("url_history%d", i); | |
680 bmp_cfg_db_set_string(db, NULL, str, node->data); | |
681 g_free(str); | |
682 } | |
683 | |
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
|
684 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
|
685 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
|
686 } 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
|
687 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
|
688 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
|
689 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
|
690 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
|
691 |
0 | 692 bmp_cfg_db_close(db); |
693 | |
1557 | 694 playlist_save(bmp_paths[BMP_PATH_PLAYLIST_FILE]); |
0 | 695 } |
696 | |
697 static void | |
698 bmp_set_default_icon(void) | |
699 { | |
700 GdkPixbuf *icon; | |
701 | |
120 | 702 icon = gdk_pixbuf_new_from_xpm_data((const gchar **) audacious_player_xpm); |
0 | 703 gtk_window_set_default_icon(icon); |
704 g_object_unref(icon); | |
705 } | |
706 | |
707 static void | |
708 display_usage(void) | |
709 { | |
44 | 710 g_print(_("Usage: audacious [options] [files] ...\n\n" |
0 | 711 "Options:\n" |
712 "--------\n")); | |
713 g_print("\n-h, --help "); | |
714 /* -h, --help switch */ | |
715 g_print(_("Display this text and exit")); | |
716 g_print("\n-n, --session "); | |
717 /* -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
|
718 g_print(_("Select Audacious/BMP/XMMS session (Default: 0)")); |
0 | 719 g_print("\n-r, --rew "); |
720 /* -r, --rew switch */ | |
721 g_print(_("Skip backwards in playlist")); | |
722 g_print("\n-p, --play "); | |
723 /* -p, --play switch */ | |
724 g_print(_("Start playing current playlist")); | |
725 g_print("\n-u, --pause "); | |
726 /* -u, --pause switch */ | |
727 g_print(_("Pause current song")); | |
728 g_print("\n-s, --stop "); | |
729 /* -s, --stop switch */ | |
730 g_print(_("Stop current song")); | |
731 g_print("\n-t, --play-pause "); | |
732 /* -t, --play-pause switch */ | |
733 g_print(_("Pause if playing, play otherwise")); | |
734 g_print("\n-f, --fwd "); | |
735 /* -f, --fwd switch */ | |
736 g_print(_("Skip forward in playlist")); | |
737 g_print("\n-e, --enqueue "); | |
738 /* -e, --enqueue switch */ | |
739 g_print(_("Don't clear the playlist")); | |
740 g_print("\n-m, --show-main-window "); | |
741 /* -m, --show-main-window switch */ | |
742 g_print(_("Show the main window")); | |
743 g_print("\n-a, --activate "); | |
744 /* -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
|
745 g_print(_("Activate Audacious")); |
0 | 746 g_print("\n-i, --sm-client-id "); |
747 /* -i, --sm-client-id switch */ | |
748 g_print(_("Previous session ID")); | |
316
950f104f2e11
[svn] Fix spacing in --help output, patch by Mikachu.
chainsaw
parents:
284
diff
changeset
|
749 g_print("\n-H, --headless "); |
193 | 750 /* -h, --headless switch */ |
751 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
|
752 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
|
753 /* -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
|
754 g_print(_("Disable error/warning interception (logging)")); |
0 | 755 g_print("\n-v, --version "); |
756 /* -v, --version switch */ | |
757 g_print(_("Print version number and exit\n")); | |
758 | |
759 exit(EXIT_SUCCESS); | |
760 } | |
761 | |
762 static void | |
763 parse_cmd_line(gint argc, | |
764 gchar ** argv, | |
765 BmpCmdLineOpt * options) | |
766 { | |
767 static struct option long_options[] = { | |
768 {"help", 0, NULL, 'h'}, | |
769 {"session", 1, NULL, 'n'}, | |
770 {"rew", 0, NULL, 'r'}, | |
771 {"play", 0, NULL, 'p'}, | |
772 {"pause", 0, NULL, 'u'}, | |
773 {"play-pause", 0, NULL, 't'}, | |
774 {"stop", 0, NULL, 's'}, | |
775 {"fwd", 0, NULL, 'f'}, | |
776 {"enqueue", 0, NULL, 'e'}, | |
777 {"show-main-window", 0, NULL, 'm'}, | |
778 {"activate", 0, NULL, 'a'}, | |
779 {"version", 0, NULL, 'v'}, | |
780 {"sm-client-id", 1, NULL, 'i'}, | |
781 {"xmms", 0, NULL, 'x'}, | |
191 | 782 {"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
|
783 {"no-log", 0, NULL, 'N'}, |
0 | 784 {0, 0, 0, 0} |
785 }; | |
786 | |
787 gchar *filename, *current_dir; | |
788 gint c, i; | |
789 | |
790 memset(options, 0, sizeof(BmpCmdLineOpt)); | |
791 options->session = -1; | |
792 | |
191 | 793 while ((c = getopt_long(argc, argv, "chn:HrpusfemavtLS", long_options, |
0 | 794 NULL)) != -1) { |
795 switch (c) { | |
796 case 'h': | |
797 display_usage(); | |
798 break; | |
799 case 'n': | |
800 options->session = atoi(optarg); | |
801 break; | |
191 | 802 case 'H': |
803 options->headless = TRUE; | |
804 break; | |
0 | 805 case 'r': |
806 options->rew = TRUE; | |
807 break; | |
808 case 'p': | |
809 options->play = TRUE; | |
810 break; | |
811 case 'u': | |
812 options->pause = TRUE; | |
813 break; | |
814 case 's': | |
815 options->stop = TRUE; | |
816 break; | |
817 case 'f': | |
818 options->fwd = TRUE; | |
819 break; | |
820 case 't': | |
821 options->play_pause = TRUE; | |
822 break; | |
823 case 'm': | |
824 options->mainwin = TRUE; | |
825 break; | |
826 case 'a': | |
827 options->activate = TRUE; | |
828 break; | |
829 case 'e': | |
830 options->enqueue = TRUE; | |
831 break; | |
832 case 'v': | |
833 dump_version(); | |
834 exit(EXIT_SUCCESS); | |
835 break; | |
836 case 'i': | |
837 options->previous_session_id = g_strdup(optarg); | |
838 break; | |
839 case 'c': | |
840 options->playcd = TRUE; | |
841 break; | |
842 case 'S': | |
843 options->load_skins = TRUE; | |
844 break; | |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
845 case 'N': |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
846 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
|
847 break; |
0 | 848 } |
849 } | |
850 | |
851 current_dir = g_get_current_dir(); | |
852 | |
853 for (i = optind; i < argc; i++) { | |
854 if (argv[i][0] == '/' || strstr(argv[i], "://")) | |
855 filename = g_strdup(argv[i]); | |
856 else | |
857 filename = g_build_filename(current_dir, argv[i], NULL); | |
858 | |
859 options->filenames = g_list_prepend(options->filenames, filename); | |
860 } | |
861 | |
862 options->filenames = g_list_reverse(options->filenames); | |
863 | |
864 g_free(current_dir); | |
865 } | |
866 | |
867 static void | |
868 handle_cmd_line_options(BmpCmdLineOpt * options, | |
869 gboolean remote) | |
870 { | |
871 GList *filenames = options->filenames; | |
872 gint session = options->session; | |
873 | |
874 if (session == -1) { | |
875 if (!remote) | |
876 session = ctrlsocket_get_session_id(); | |
877 else | |
878 session = 0; | |
879 } | |
880 | |
881 if (filenames) { | |
882 gint pos = 0; | |
883 | |
884 if (options->load_skins) { | |
885 xmms_remote_set_skin(session, filenames->data); | |
886 skin_install_skin(filenames->data); | |
887 } | |
888 else { | |
889 if (options->enqueue && options->play) | |
890 pos = xmms_remote_get_playlist_length(session); | |
891 | |
892 if (!options->enqueue) | |
893 xmms_remote_playlist_clear(session); | |
894 | |
895 xmms_remote_playlist_add(session, filenames); | |
896 | |
897 if (options->enqueue && options->play && | |
898 xmms_remote_get_playlist_length(session) > pos) | |
899 xmms_remote_set_playlist_pos(session, pos); | |
900 | |
901 if (!options->enqueue) | |
902 xmms_remote_play(session); | |
903 } | |
904 | |
905 g_list_foreach(filenames, (GFunc) g_free, NULL); | |
906 g_list_free(filenames); | |
907 } | |
908 | |
909 if (options->rew) | |
910 xmms_remote_playlist_prev(session); | |
911 | |
912 if (options->play) | |
913 xmms_remote_play(session); | |
914 | |
915 if (options->pause) | |
916 xmms_remote_pause(session); | |
917 | |
918 if (options->stop) | |
919 xmms_remote_stop(session); | |
920 | |
921 if (options->fwd) | |
922 xmms_remote_playlist_next(session); | |
923 | |
924 if (options->play_pause) | |
925 xmms_remote_play_pause(session); | |
926 | |
927 if (options->mainwin) | |
928 xmms_remote_main_win_toggle(session, TRUE); | |
929 | |
930 if (options->activate) | |
931 xmms_remote_activate(session); | |
932 | |
933 if (options->playcd) | |
934 play_medium(); | |
935 } | |
936 | |
937 static void | |
938 segfault_handler(gint sig) | |
939 { | |
940 g_printerr(_("\nReceived SIGSEGV\n\n" | |
27
d160ae2251e9
[svn] Update SIGSEGV message, contained the BMP mailing information.
nenolod
parents:
0
diff
changeset
|
941 "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
|
942 "file a bug at http://bugs.nenolod.net/\n\n")); |
0 | 943 #ifdef HANDLE_SIGSEGV |
944 exit(EXIT_FAILURE); | |
945 #else | |
946 abort(); | |
947 #endif | |
948 } | |
949 | |
950 static void | |
951 bmp_setup_logger(void) | |
952 { | |
953 if (!bmp_logger_start(bmp_paths[BMP_PATH_LOG_FILE])) | |
954 return; | |
955 | |
956 g_atexit(bmp_logger_stop); | |
957 } | |
958 | |
959 static void | |
960 run_load_skin_error_dialog(const gchar * skin_path) | |
961 { | |
962 const gchar *markup = | |
963 N_("<b><big>Unable to load skin.</big></b>\n" | |
964 "\n" | |
965 "Check that skin at '%s' is usable and default skin is properly " | |
966 "installed at '%s'\n"); | |
967 | |
968 GtkWidget *dialog = | |
969 gtk_message_dialog_new_with_markup(NULL, | |
970 GTK_DIALOG_MODAL, | |
971 GTK_MESSAGE_ERROR, | |
972 GTK_BUTTONS_CLOSE, | |
973 _(markup), | |
974 skin_path, | |
975 BMP_DEFAULT_SKIN_PATH); | |
976 gtk_dialog_run(GTK_DIALOG(dialog)); | |
977 gtk_widget_destroy(dialog); | |
978 } | |
979 | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
980 // use a format string? |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
981 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
|
982 { |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
983 fprintf(stderr,error_text); |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
984 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
|
985 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
|
986 error_text); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
987 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
|
988 gtk_widget_hide(err); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
989 } |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
990 } |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
991 |
0 | 992 gint |
993 main(gint argc, gchar ** argv) | |
994 { | |
44 | 995 gboolean gtk_init_check_ok; |
0 | 996 |
997 /* Setup l10n early so we can print localized error messages */ | |
998 gtk_set_locale(); | |
749 | 999 bindtextdomain(PACKAGE_NAME, LOCALEDIR); |
1000 bind_textdomain_codeset(PACKAGE_NAME, "UTF-8"); | |
1001 textdomain(PACKAGE_NAME); | |
0 | 1002 |
1003 bmp_init_paths(); | |
1004 bmp_make_user_dir(); | |
1005 | |
1006 /* Check GTK version. Really, this is only needed for binary | |
1007 * 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
|
1008 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
|
1009 g_printerr(_("Sorry, your GTK+ version (%d.%d.%d) does not work with Audacious.\n" |
0 | 1010 "Please use GTK+ %s or newer.\n"), |
1011 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
|
1012 "2.6.0"); |
0 | 1013 exit(EXIT_FAILURE); |
1014 } | |
1015 | |
1016 g_set_application_name(_(application_name)); | |
1017 | |
1018 g_thread_init(NULL); | |
1019 if (!g_thread_supported()) { | |
1020 g_printerr(_("Sorry, threads isn't supported on your platform.\n\n" | |
1021 "If you're on a libc5 based linux system and installed Glib & GTK+ before you\n" | |
1022 "installed LinuxThreads you need to recompile Glib & GTK+.\n")); | |
1023 exit(EXIT_FAILURE); | |
1024 } | |
1025 | |
1026 gdk_threads_init(); | |
1027 | |
44 | 1028 gtk_init_check_ok = gtk_init_check(&argc, &argv); |
1029 /* Now let's parse the command line options first. */ | |
1030 parse_cmd_line(argc, argv, &options); | |
1031 if (!gtk_init_check_ok) { | |
0 | 1032 if (argc < 2) { |
1033 /* GTK check failed, and no arguments passed to indicate | |
1034 that user is intending to only remote control a running | |
1035 session */ | |
44 | 1036 g_printerr(_("audacious: Unable to open display, exiting.\n")); |
0 | 1037 exit(EXIT_FAILURE); |
1038 } | |
1039 | |
1040 handle_cmd_line_options(&options, TRUE); | |
191 | 1041 |
1042 /* we could be running headless, so GTK probably wont matter */ | |
1043 if (options.headless != 1) | |
1044 exit(EXIT_SUCCESS); | |
0 | 1045 } |
1046 | |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
1047 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
|
1048 bmp_setup_logger(); |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
1049 |
0 | 1050 if (!vfs_init()) { |
1051 g_printerr(Q_("Could not initialize VFS.\n")); | |
1052 exit(EXIT_FAILURE); | |
1053 } | |
1054 | |
1055 signal(SIGPIPE, SIG_IGN); /* for controlsocket.c */ | |
1056 signal(SIGSEGV, segfault_handler); | |
1057 | |
1058 g_random_set_seed(time(NULL)); | |
1059 | |
1060 bmp_config_load(); | |
1061 | |
1062 if (options.session != -1 || !ctrlsocket_setup()) { | |
1063 handle_cmd_line_options(&options, TRUE); | |
1064 exit(EXIT_SUCCESS); | |
1065 } | |
1066 | |
191 | 1067 if (options.headless != 1) |
1068 { | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1069 |
191 | 1070 bmp_set_default_icon(); |
0 | 1071 |
191 | 1072 gtk_accel_map_load(bmp_paths[BMP_PATH_ACCEL_FILE]); |
0 | 1073 |
1810 | 1074 if (!init_skins(cfg.skin)) { |
1075 run_load_skin_error_dialog(cfg.skin); | |
1076 exit(EXIT_FAILURE); | |
1077 } | |
1078 | |
191 | 1079 GDK_THREADS_ENTER(); |
0 | 1080 } |
1081 | |
1082 plugin_system_init(); | |
1083 | |
1084 playlist_load(bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
1085 playlist_set_position(cfg.playlist_position); | |
1086 | |
1087 /* this needs to be called after all 3 windows are created and | |
191 | 1088 * input plugins are setup'ed |
1089 * but not if we're running headless --nenolod | |
1090 */ | |
0 | 1091 mainwin_setup_menus(); |
1092 | |
191 | 1093 if (options.headless != 1) |
1094 GDK_THREADS_LEAVE(); | |
0 | 1095 |
1096 ctrlsocket_start(); | |
1097 | |
1098 handle_cmd_line_options(&options, FALSE); | |
1099 | |
191 | 1100 if (options.headless != 1) |
1101 { | |
1102 GDK_THREADS_ENTER(); | |
0 | 1103 |
191 | 1104 read_volume(VOLSET_STARTUP); |
1105 mainwin_set_info_text(); | |
1106 | |
1107 /* FIXME: delayed, because it deals directly with the plugin | |
1108 * interface to set menu items */ | |
1109 create_prefs_window(); | |
0 | 1110 |
1264 | 1111 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
|
1112 create_filepopup_window(); |
1264 | 1113 |
191 | 1114 if (cfg.player_visible) |
1115 mainwin_show(TRUE); | |
1116 else if (!cfg.playlist_visible && !cfg.equalizer_visible) | |
1117 mainwin_show(TRUE); | |
125 | 1118 |
191 | 1119 if (cfg.equalizer_visible) |
1120 equalizerwin_show(TRUE); | |
1121 | |
1122 if (cfg.playlist_visible) | |
1123 playlistwin_show(); | |
0 | 1124 |
191 | 1125 hint_set_always(cfg.always_on_top); |
0 | 1126 |
191 | 1127 playlist_start_get_info_thread(); |
1128 mainwin_attach_idle_func(); | |
1129 | |
486 | 1130 starting_up = FALSE; |
1131 | |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1132 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
|
1133 |
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
|
1134 if (cfg.resume_playback_on_startup) { |
1659
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1135 if (cfg.resume_playback_on_startup_time != -1 && playlist_get_length() > 0) { |
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1136 int i; |
1753
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1137 gint l=0, r=0; |
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
|
1138 while (gtk_events_pending()) gtk_main_iteration(); |
1753
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1139 output_get_volume(&l, &r); |
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1140 output_set_volume(0,0); |
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
|
1141 bmp_playback_initiate(); |
1753
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1142 for (i = 0; i < 20; i++) { /* Busy wait; loop is fairly tight to minimize duration of "frozen" GUI. Feel free to tune. --chainsaw */ |
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1143 g_usleep(1000); |
1659
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1144 if (!ip_data.playing) |
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1145 break; |
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1146 } |
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
|
1147 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
|
1148 1000); |
1753
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1149 output_set_volume(l, r); |
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
|
1150 } |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1151 } |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1152 |
191 | 1153 gtk_main(); |
1154 | |
1155 GDK_THREADS_LEAVE(); | |
0 | 1156 |
191 | 1157 return EXIT_SUCCESS; |
1158 } | |
1159 else | |
1160 { | |
1161 mainwin_set_info_text(); | |
1162 playlist_start_get_info_thread(); | |
0 | 1163 |
486 | 1164 starting_up = FALSE; |
1165 | |
191 | 1166 for (;;) |
192
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1167 { |
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
|
1168 /* 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
|
1169 audcore_generic_events(); |
198 | 1170 free_vis_data(); /* to prevent buffer overflow -- paranoia */ |
191 | 1171 xmms_usleep(10000); |
192
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1172 } |
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1173 |
191 | 1174 return EXIT_SUCCESS; |
1175 } | |
0 | 1176 } |