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