Mercurial > audlegacy
annotate audacious/main.c @ 1967:00db92cf9bfe trunk
[svn] - add code for the shuffle checkbox
author | nenolod |
---|---|
date | Sun, 12 Nov 2006 05:49:04 -0800 |
parents | fcf3900d05b9 |
children | 55b05e25d4ef |
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 |
1966
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
79 #include "newui/newui_window.h" |
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
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 |
1653 | 88 |
0 | 89 struct _BmpCmdLineOpt { |
90 GList *filenames; | |
91 gint session; | |
1885
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
92 gboolean play, stop, pause, fwd, rew, play_pause, playcd, show_jump_box; |
0 | 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 */ | |
120 TRUE, /* analyzer peaks */ | |
121 FALSE, /* equalizer autoload */ | |
122 FALSE, /* easy move */ | |
123 FALSE, /* equalizer active */ | |
124 FALSE, /* playlistwin visible */ | |
125 FALSE, /* equalizer visible */ | |
126 TRUE, /* player visible */ | |
127 FALSE, /* player shaded */ | |
128 FALSE, /* playlistwin shaded */ | |
129 FALSE, /* equalizer shaded */ | |
130 FALSE, /* allow multiple instances */ | |
131 TRUE, /* always show cb */ | |
132 TRUE, TRUE, /* convert '_' and %20 */ | |
133 TRUE, /* show numbers in playlist */ | |
134 TRUE, /* snap windows */ | |
135 TRUE, /* save window positions */ | |
136 TRUE, /* dim titlebar */ | |
137 FALSE, /* get playlist info on load */ | |
138 TRUE, /* get playlist info on demand */ | |
139 TRUE, /* UNUSED (equalizer doublesize linked) */ | |
140 FALSE, /* sort jump to file */ | |
141 FALSE, /* use effect plugins */ | |
142 FALSE, /* always on top */ | |
143 FALSE, /* sticky */ | |
144 FALSE, /* no playlist advance */ | |
1884 | 145 FALSE, /* stop after current song */ |
893
6afdd0d7e1e1
[svn] Make refreshing optional, default to disabled if Gnome VFS available.
nemo
parents:
887
diff
changeset
|
146 TRUE, /* refresh file list */ |
0 | 147 TRUE, /* UNUSED (smooth title scrolling) */ |
148 TRUE, /* use playlist metadata */ | |
149 TRUE, /* warn about unplayables */ | |
150 FALSE, /* use \ as directory delimiter */ | |
151 FALSE, /* random skin on play */ | |
152 FALSE, /* use fontsets */ | |
153 FALSE, /* use X font for mainwin */ | |
154 TRUE, /* use custom cursors */ | |
155 TRUE, /* close dialog on open */ | |
156 TRUE, /* close dialog on add */ | |
157 0.0, /* equalizer preamp */ | |
158 {0, 0, 0, 0, 0, /* equalizer bands */ | |
159 0, 0, 0, 0, 0}, | |
160 NULL, /* skin */ | |
161 NULL, /* output plugin */ | |
162 NULL, /* file selector path */ | |
163 NULL, /* playlist path */ | |
164 NULL, /* playlist font */ | |
165 NULL, /* mainwin font */ | |
166 NULL, /* disabled input plugins */ | |
167 NULL, /* enabled general plugins */ | |
168 NULL, /* enabled visualization plugins */ | |
169 NULL, /* enabled effect plugins */ | |
170 NULL, /* equalizer preset default file */ | |
171 NULL, /* equalizer preset extension */ | |
172 NULL, /* URL history */ | |
173 0, /* timer mode */ | |
174 VIS_ANALYZER, /* visualizer type */ | |
175 ANALYZER_NORMAL, /* analyzer mode */ | |
176 ANALYZER_BARS, /* analyzer type */ | |
177 SCOPE_DOT, /* scope mode */ | |
178 VU_SMOOTH, /* VU mode */ | |
179 REFRESH_FULL, /* visualizer refresh rate */ | |
180 FALLOFF_FAST, /* analyzer fall off rate */ | |
181 FALLOFF_SLOW, /* peaks fall off rate */ | |
182 0, /* playlist position */ | |
183 2, /* pause between songs time */ | |
184 FALSE, /* pause between songs */ | |
185 FALSE, /* show window decorations */ | |
186 8, /* mouse wheel scroll step */ | |
187 FALSE, /* playlist transparent */ | |
1347
8a874906535b
[svn] - use a more standard-looking default title format
nenolod
parents:
1283
diff
changeset
|
188 2, /* 3rd preset (ARTIST - ALBUM - TITLE) */ |
0 | 189 NULL, /* title format */ |
190 FALSE, /* software volume control enabled */ | |
191 TRUE, /* UNUSED (XMMS compatibility mode) */ | |
192 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
|
193 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
|
194 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
|
195 -1, /* resume playback on startup time */ |
1147 | 196 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
|
197 NULL, |
7e208feb36a2
[svn] - new global variable `output_buffer_size', replaces all of the per-plugin buffer sizes
nenolod
parents:
1105
diff
changeset
|
198 NULL, |
1163
ff71f891265b
[svn] - Allow to do format detection on demand; instead of immediately on add
nenolod
parents:
1147
diff
changeset
|
199 3000, /* audio buffer size */ |
1164 | 200 FALSE, /* whether or not to postpone format detection on initial add */ |
1358 | 201 TRUE, /* show filepopup for tuple */ |
1413 | 202 NULL, /* words identifying covers */ |
203 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
|
204 FALSE, |
c04ce16b2b57
[svn] - libaudacious/beepctrl.c: optimise further and be more paranoid about leaks
nenolod
parents:
1429
diff
changeset
|
205 0, |
c04ce16b2b57
[svn] - libaudacious/beepctrl.c: optimise further and be more paranoid about leaks
nenolod
parents:
1429
diff
changeset
|
206 NULL, /* default session uri base (non-NULL = custom session uri base) */ |
1710 | 207 150, /* short side length of the picture in the filepopup */ |
208 20, /* delay until the filepopup comes up */ | |
1904
4960ba312ffe
[svn] - add a default value for cfg.use_file_cover (FALSE)
nenolod
parents:
1889
diff
changeset
|
209 FALSE, /* use filename.jpg for coverart */ |
1905
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1904
diff
changeset
|
210 FALSE, /* use XMMS-style file selection */ |
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}, | |
1938 | 269 {"eq_doublesize_linked", &cfg.eq_doublesize_linked, TRUE}, |
0 | 270 {"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
|
271 {"refresh_file_list", &cfg.refresh_file_list, TRUE}, |
0 | 272 {"sort_jump_to_file", &cfg.sort_jump_to_file, TRUE}, |
273 {"use_pl_metadata", &cfg.use_pl_metadata, TRUE}, | |
274 {"warn_about_unplayables", &cfg.warn_about_unplayables, TRUE}, | |
275 {"use_backslash_as_dir_delimiter", &cfg.use_backslash_as_dir_delimiter, TRUE}, | |
276 {"player_shaded", &cfg.player_shaded, TRUE}, | |
277 {"player_visible", &cfg.player_visible, TRUE}, | |
278 {"shuffle", &cfg.shuffle, TRUE}, | |
279 {"repeat", &cfg.repeat, TRUE}, | |
1938 | 280 {"doublesize", &cfg.doublesize, TRUE}, |
0 | 281 {"autoscroll_songname", &cfg.autoscroll, TRUE}, |
898 | 282 {"stop_after_current_song", &cfg.stopaftersong, TRUE}, |
0 | 283 {"playlist_shaded", &cfg.playlist_shaded, TRUE}, |
284 {"playlist_visible", &cfg.playlist_visible, TRUE}, | |
285 {"playlist_transparent", &cfg.playlist_transparent, TRUE}, | |
286 {"use_fontsets", &cfg.use_fontsets, TRUE}, | |
85
8c8a20f72ace
[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
nenolod
parents:
80
diff
changeset
|
287 {"mainwin_use_xfont", &cfg.mainwin_use_xfont, FALSE}, |
0 | 288 {"equalizer_visible", &cfg.equalizer_visible, TRUE}, |
289 {"equalizer_active", &cfg.equalizer_active, TRUE}, | |
290 {"equalizer_shaded", &cfg.equalizer_shaded, TRUE}, | |
291 {"equalizer_autoload", &cfg.equalizer_autoload, TRUE}, | |
1938 | 292 {"easy_move", &cfg.easy_move, TRUE}, |
0 | 293 {"use_eplugins", &cfg.use_eplugins, TRUE}, |
294 {"always_on_top", &cfg.always_on_top, TRUE}, | |
295 {"sticky", &cfg.sticky, TRUE}, | |
296 {"random_skin_on_play", &cfg.random_skin_on_play, TRUE}, | |
297 {"pause_between_songs", &cfg.pause_between_songs, TRUE}, | |
298 {"show_wm_decorations", &cfg.show_wm_decorations, TRUE}, | |
299 {"eq_extra_filtering", &cfg.eq_extra_filtering, TRUE}, | |
300 {"analyzer_peaks", &cfg.analyzer_peaks, TRUE}, | |
301 {"custom_cursors", &cfg.custom_cursors, TRUE}, | |
302 {"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
|
303 {"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
|
304 {"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
|
305 {"playlist_detect", &cfg.playlist_detect, TRUE}, |
1358 | 306 {"show_filepopup_for_tuple", &cfg.show_filepopup_for_tuple, TRUE}, |
1889
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1886
diff
changeset
|
307 {"recurse_for_cover", &cfg.recurse_for_cover, TRUE}, |
597bd579d9af
[svn] Patch by Michael Hanselmann to fetch a per-song image file.
nemo
parents:
1886
diff
changeset
|
308 {"use_file_cover", &cfg.use_file_cover, TRUE}, |
1905
6b4116c34489
[svn] - change "Transparency" to "Miscillaneous UI Features" in prefswin
nenolod
parents:
1904
diff
changeset
|
309 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE}, |
0 | 310 }; |
311 | |
312 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); | |
313 | |
314 static bmp_cfg_nument bmp_numents[] = { | |
315 {"player_x", &cfg.player_x, TRUE}, | |
316 {"player_y", &cfg.player_y, TRUE}, | |
317 {"timer_mode", &cfg.timer_mode, TRUE}, | |
318 {"vis_type", &cfg.vis_type, TRUE}, | |
319 {"analyzer_mode", &cfg.analyzer_mode, TRUE}, | |
320 {"analyzer_type", &cfg.analyzer_type, TRUE}, | |
321 {"scope_mode", &cfg.scope_mode, TRUE}, | |
322 {"vu_mode", &cfg.vu_mode, TRUE}, | |
323 {"vis_refresh_rate", &cfg.vis_refresh, TRUE}, | |
324 {"analyzer_falloff", &cfg.analyzer_falloff, TRUE}, | |
325 {"peaks_falloff", &cfg.peaks_falloff, TRUE}, | |
326 {"playlist_x", &cfg.playlist_x, TRUE}, | |
327 {"playlist_y", &cfg.playlist_y, TRUE}, | |
328 {"playlist_width", &cfg.playlist_width, TRUE}, | |
329 {"playlist_height", &cfg.playlist_height, TRUE}, | |
330 {"playlist_position", &cfg.playlist_position, TRUE}, | |
331 {"equalizer_x", &cfg.equalizer_x, TRUE}, | |
332 {"equalizer_y", &cfg.equalizer_y, TRUE}, | |
333 {"snap_distance", &cfg.snap_distance, TRUE}, | |
334 {"pause_between_songs_time", &cfg.pause_between_songs_time, TRUE}, | |
335 {"mouse_wheel_change", &cfg.mouse_change, TRUE}, | |
336 {"scroll_pl_by", &cfg.scroll_pl_by, TRUE}, | |
337 {"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
|
338 {"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
|
339 {"output_buffer_size", &cfg.output_buffer_size, TRUE}, |
1710 | 340 {"recurse_for_cover_depth", &cfg.recurse_for_cover_depth, TRUE}, |
341 {"filepopup_pixelsize", &cfg.filepopup_pixelsize, TRUE}, | |
342 {"filepopup_delay", &cfg.filepopup_delay, TRUE}, | |
0 | 343 }; |
344 | |
345 static gint ncfgient = G_N_ELEMENTS(bmp_numents); | |
346 | |
347 static bmp_cfg_strent bmp_strents[] = { | |
348 {"playlist_font", &cfg.playlist_font, TRUE}, | |
349 {"mainwin_font", &cfg.mainwin_font, TRUE}, | |
350 {"eqpreset_default_file", &cfg.eqpreset_default_file, TRUE}, | |
351 {"eqpreset_extension", &cfg.eqpreset_extension, TRUE}, | |
352 {"skin", &cfg.skin, FALSE}, | |
353 {"output_plugin", &cfg.outputplugin, FALSE}, | |
354 {"disabled_iplugins", &cfg.disabled_iplugins, TRUE}, | |
355 {"enabled_gplugins", &cfg.enabled_gplugins, FALSE}, | |
356 {"enabled_vplugins", &cfg.enabled_vplugins, FALSE}, | |
357 {"enabled_eplugins", &cfg.enabled_eplugins, FALSE}, | |
358 {"filesel_path", &cfg.filesel_path, FALSE}, | |
359 {"playlist_path", &cfg.playlist_path, FALSE}, | |
360 {"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
|
361 {"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
|
362 {"chardet_fallback", &cfg.chardet_fallback, TRUE}, |
1413 | 363 {"cover_name_include", &cfg.cover_name_include, TRUE}, |
364 {"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
|
365 {"session_uri_base", &cfg.session_uri_base, TRUE} |
0 | 366 }; |
367 | |
368 static gint ncfgsent = G_N_ELEMENTS(bmp_strents); | |
369 | |
370 gchar *bmp_paths[BMP_PATH_COUNT] = {}; | |
371 | |
372 GList *dock_window_list = NULL; | |
373 | |
374 gboolean pposition_broken = FALSE; | |
375 | |
486 | 376 gboolean starting_up = TRUE; |
0 | 377 |
1883
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
378 /* XXX: case-sensitivity is bad for lazy nenolods. :( -nenolod */ |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
379 static gchar *pl_candidates[] = { |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
380 PLUGIN_FILENAME("ALSA"), |
1886 | 381 PLUGIN_FILENAME("coreaudio"), |
1883
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
382 PLUGIN_FILENAME("OSS"), |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
383 PLUGIN_FILENAME("sun"), |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
384 PLUGIN_FILENAME("ESD"), |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
385 PLUGIN_FILENAME("pulse_audio"), |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
386 PLUGIN_FILENAME("disk_writer"), |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
387 NULL |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
388 }; |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
389 |
0 | 390 static GSList * |
391 get_feature_list(void) | |
392 { | |
393 GSList *features = NULL; | |
394 | |
395 #ifdef HAVE_GCONF | |
396 features = g_slist_append(features, "GConf"); | |
397 #endif | |
398 | |
399 return features; | |
400 } | |
401 | |
402 static void | |
403 dump_version(void) | |
404 { | |
405 GSList *features; | |
406 | |
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
|
407 g_printf("%s %s [%s]", _(application_name), VERSION, svn_stamp); |
0 | 408 |
409 features = get_feature_list(); | |
410 | |
411 if (features) { | |
412 GSList *item; | |
413 | |
414 g_printf(" ("); | |
415 | |
416 for (item = features; g_slist_next(item); item = g_slist_next(item)) | |
417 g_printf("%s, ", (const gchar *) item->data); | |
418 | |
419 g_printf("%s)", (const gchar *) item->data); | |
420 | |
421 g_slist_free(features); | |
422 } | |
423 | |
424 g_printf("\n"); | |
425 } | |
426 | |
427 const gchar * | |
428 xmms_get_gentitle_format(void) | |
429 { | |
625
0a73d1faeb4e
[svn] GCC 4.1 warning fixes by Diego 'Flameeyes' Petteno from Gentoo.
chainsaw
parents:
538
diff
changeset
|
430 guint titlestring_preset = cfg.titlestring_preset; |
0 | 431 |
432 if (titlestring_preset < n_titlestring_presets) | |
433 return bmp_titlestring_presets[titlestring_preset]; | |
434 | |
435 return cfg.gentitle_format; | |
436 } | |
437 | |
887 | 438 void |
0 | 439 make_directory(const gchar * path, mode_t mode) |
440 { | |
441 if (mkdir(path, mode) == 0) | |
442 return; | |
443 | |
444 if (errno == EEXIST) | |
445 return; | |
446 | |
447 g_printerr(_("Could not create directory (%s): %s"), path, | |
448 g_strerror(errno)); | |
449 } | |
450 | |
451 static void | |
452 bmp_make_user_dir(void) | |
453 { | |
454 const mode_t mode755 = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; | |
455 | |
456 make_directory(bmp_paths[BMP_PATH_USER_DIR], mode755); | |
457 make_directory(bmp_paths[BMP_PATH_USER_PLUGIN_DIR], mode755); | |
458 make_directory(bmp_paths[BMP_PATH_USER_SKIN_DIR], mode755); | |
459 make_directory(bmp_paths[BMP_PATH_SKIN_THUMB_DIR], mode755); | |
460 } | |
461 | |
462 static void | |
463 bmp_free_paths(void) | |
464 { | |
465 int i; | |
466 | |
467 for (i = 0; i < BMP_PATH_COUNT; i++) | |
468 { | |
469 g_free(bmp_paths[i]); | |
470 bmp_paths[i] = 0; | |
471 } | |
472 } | |
473 | |
474 | |
475 #define USER_PATH(path) \ | |
476 g_build_filename(bmp_paths[BMP_PATH_USER_DIR], path, NULL); | |
477 | |
478 static void | |
479 bmp_init_paths(void) | |
480 { | |
734 | 481 bmp_paths[BMP_PATH_USER_DIR] = g_build_filename(g_get_home_dir(), BMP_RCPATH, NULL); |
0 | 482 |
483 bmp_paths[BMP_PATH_USER_PLUGIN_DIR] = USER_PATH(BMP_USER_PLUGIN_DIR_BASENAME); | |
484 bmp_paths[BMP_PATH_USER_SKIN_DIR] = USER_PATH(BMP_SKIN_DIR_BASENAME); | |
485 bmp_paths[BMP_PATH_SKIN_THUMB_DIR] = USER_PATH(BMP_SKIN_THUMB_DIR_BASENAME); | |
486 bmp_paths[BMP_PATH_CONFIG_FILE] = USER_PATH(BMP_CONFIG_BASENAME); | |
487 bmp_paths[BMP_PATH_PLAYLIST_FILE] = USER_PATH(BMP_PLAYLIST_BASENAME); | |
488 bmp_paths[BMP_PATH_ACCEL_FILE] = USER_PATH(BMP_ACCEL_BASENAME); | |
489 bmp_paths[BMP_PATH_LOG_FILE] = USER_PATH(BMP_LOG_BASENAME); | |
490 | |
491 g_atexit(bmp_free_paths); | |
492 } | |
493 | |
494 | |
495 void | |
496 bmp_config_load(void) | |
497 { | |
498 ConfigDb *db; | |
499 gint i, length; | |
500 | |
501 memcpy(&cfg, &bmp_default_config, sizeof(BmpConfig)); | |
502 | |
503 db = bmp_cfg_db_open(); | |
504 for (i = 0; i < ncfgbent; ++i) { | |
505 bmp_cfg_db_get_bool(db, NULL, | |
506 bmp_boolents[i].be_vname, | |
507 bmp_boolents[i].be_vloc); | |
508 } | |
509 | |
510 for (i = 0; i < ncfgient; ++i) { | |
511 bmp_cfg_db_get_int(db, NULL, | |
512 bmp_numents[i].ie_vname, | |
513 bmp_numents[i].ie_vloc); | |
514 } | |
515 | |
516 for (i = 0; i < ncfgsent; ++i) { | |
517 bmp_cfg_db_get_string(db, NULL, | |
518 bmp_strents[i].se_vname, | |
519 bmp_strents[i].se_vloc); | |
520 } | |
521 | |
522 /* Preset */ | |
523 bmp_cfg_db_get_float(db, NULL, "equalizer_preamp", &cfg.equalizer_preamp); | |
524 for (i = 0; i < 10; i++) { | |
525 gchar eqtext[18]; | |
526 | |
527 g_snprintf(eqtext, sizeof(eqtext), "equalizer_band%d", i); | |
528 bmp_cfg_db_get_float(db, NULL, eqtext, &cfg.equalizer_bands[i]); | |
529 } | |
530 | |
531 /* History */ | |
532 if (bmp_cfg_db_get_int(db, NULL, "url_history_length", &length)) { | |
533 for (i = 1; i <= length; i++) { | |
534 gchar str[19], *tmp; | |
535 | |
536 g_snprintf(str, sizeof(str), "url_history%d", i); | |
537 if (bmp_cfg_db_get_string(db, NULL, str, &tmp)) | |
538 cfg.url_history = g_list_append(cfg.url_history, tmp); | |
539 } | |
540 } | |
541 | |
542 bmp_cfg_db_close(db); | |
543 | |
544 | |
545 if (cfg.playlist_font && strlen(cfg.playlist_font) == 0) { | |
546 g_free(cfg.playlist_font); | |
547 cfg.playlist_font = NULL; | |
548 } | |
549 | |
550 if (cfg.mainwin_font && strlen(cfg.mainwin_font) == 0) { | |
551 g_free(cfg.mainwin_font); | |
552 cfg.mainwin_font = NULL; | |
553 } | |
554 | |
555 if (!cfg.playlist_font) | |
1653 | 556 cfg.playlist_font = g_strdup(PLAYLISTWIN_DEFAULT_FONT); |
0 | 557 |
558 if (!cfg.mainwin_font) | |
1653 | 559 cfg.mainwin_font = g_strdup(MAINWIN_DEFAULT_FONT); |
0 | 560 |
561 if (!cfg.gentitle_format) | |
1347
8a874906535b
[svn] - use a more standard-looking default title format
nenolod
parents:
1283
diff
changeset
|
562 cfg.gentitle_format = g_strdup("%{p:%p - %}%{a:%a - %}%t"); |
0 | 563 |
564 if (!cfg.outputplugin) { | |
1883
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
565 gint iter; |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
566 gchar *pl_path = g_build_filename(PLUGIN_DIR, plugin_dir_list[0], NULL); |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
567 |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
568 for (iter = 0; pl_candidates[iter] != NULL && cfg.outputplugin == NULL; iter++) |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
569 { |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
570 cfg.outputplugin = find_file_recursively(pl_path, pl_candidates[iter]); |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
571 } |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
572 |
5f0266d393b8
[svn] - try to intelligently choose which output plugin is best. candidates are in an null-terminated array, pl_candidates.
nenolod
parents:
1811
diff
changeset
|
573 g_free(pl_path); |
0 | 574 } |
575 | |
576 if (!cfg.eqpreset_default_file) | |
1653 | 577 cfg.eqpreset_default_file = g_strdup(EQUALIZER_DEFAULT_DIR_PRESET); |
0 | 578 |
579 if (!cfg.eqpreset_extension) | |
1653 | 580 cfg.eqpreset_extension = g_strdup(EQUALIZER_DEFAULT_PRESET_EXT); |
1413 | 581 |
1761
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
582 if (!cfg.chardet_fallback) |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
583 cfg.chardet_fallback = g_strdup(""); |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
584 |
1413 | 585 if (!cfg.cover_name_include) |
586 cfg.cover_name_include = g_strdup(""); | |
587 | |
588 if (!cfg.cover_name_exclude) | |
589 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
|
590 |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
591 if (!cfg.session_uri_base) |
70caa62ead63
[svn] - fix for "bmp_rcfile_write_string: assertion `value != NULL' failed"
yaz
parents:
1753
diff
changeset
|
592 cfg.session_uri_base = g_strdup(""); |
0 | 593 } |
594 | |
595 | |
596 void | |
597 bmp_config_save(void) | |
598 { | |
599 GList *node; | |
600 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
|
601 gint i, cur_pb_time; |
0 | 602 ConfigDb *db; |
603 | |
604 cfg.disabled_iplugins = input_stringify_disabled_list(); | |
605 | |
606 | |
607 db = bmp_cfg_db_open(); | |
608 | |
609 for (i = 0; i < ncfgbent; ++i) | |
610 if (bmp_boolents[i].be_wrt) | |
611 bmp_cfg_db_set_bool(db, NULL, | |
612 bmp_boolents[i].be_vname, | |
613 *bmp_boolents[i].be_vloc); | |
614 | |
615 for (i = 0; i < ncfgient; ++i) | |
616 if (bmp_numents[i].ie_wrt) | |
617 bmp_cfg_db_set_int(db, NULL, | |
618 bmp_numents[i].ie_vname, | |
619 *bmp_numents[i].ie_vloc); | |
620 | |
621 /* This is a bit lame .. it'll end up being written twice, | |
622 * could do with being done a bit neater. -larne */ | |
623 bmp_cfg_db_set_int(db, NULL, "playlist_position", | |
624 playlist_get_position()); | |
625 | |
207
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
626 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
|
627 cfg.mainwin_use_xfont); |
e152a92d3f45
[svn] Save the preference to enable or disable bitmap fonts.
nenolod
parents:
198
diff
changeset
|
628 |
0 | 629 for (i = 0; i < ncfgsent; ++i) { |
630 if (bmp_strents[i].se_wrt) | |
631 bmp_cfg_db_set_string(db, NULL, | |
632 bmp_strents[i].se_vname, | |
633 *bmp_strents[i].se_vloc); | |
634 } | |
635 | |
636 bmp_cfg_db_set_float(db, NULL, "equalizer_preamp", cfg.equalizer_preamp); | |
637 | |
638 for (i = 0; i < 10; i++) { | |
639 str = g_strdup_printf("equalizer_band%d", i); | |
640 bmp_cfg_db_set_float(db, NULL, str, cfg.equalizer_bands[i]); | |
641 g_free(str); | |
642 } | |
643 | |
196 | 644 if (bmp_active_skin != NULL) |
645 { | |
646 if (bmp_active_skin->path) | |
647 bmp_cfg_db_set_string(db, NULL, "skin", bmp_active_skin->path); | |
648 else | |
649 bmp_cfg_db_unset_key(db, NULL, "skin"); | |
650 } | |
0 | 651 |
652 if (get_current_output_plugin()) | |
653 bmp_cfg_db_set_string(db, NULL, "output_plugin", | |
654 get_current_output_plugin()->filename); | |
655 else | |
656 bmp_cfg_db_unset_key(db, NULL, "output_plugin"); | |
657 | |
658 str = general_stringify_enabled_list(); | |
659 if (str) { | |
660 bmp_cfg_db_set_string(db, NULL, "enabled_gplugins", str); | |
661 g_free(str); | |
662 } | |
663 else | |
664 bmp_cfg_db_unset_key(db, NULL, "enabled_gplugins"); | |
665 | |
666 str = vis_stringify_enabled_list(); | |
667 if (str) { | |
668 bmp_cfg_db_set_string(db, NULL, "enabled_vplugins", str); | |
669 g_free(str); | |
670 } | |
671 else | |
672 bmp_cfg_db_unset_key(db, NULL, "enabled_vplugins"); | |
673 | |
674 str = effect_stringify_enabled_list(); | |
675 if (str) { | |
676 bmp_cfg_db_set_string(db, NULL, "enabled_eplugins", str); | |
677 g_free(str); | |
678 } | |
679 else | |
680 bmp_cfg_db_unset_key(db, NULL, "enabled_eplugins"); | |
681 | |
682 if (cfg.filesel_path) | |
683 bmp_cfg_db_set_string(db, NULL, "filesel_path", cfg.filesel_path); | |
684 | |
685 if (cfg.playlist_path) | |
686 bmp_cfg_db_set_string(db, NULL, "playlist_path", cfg.playlist_path); | |
687 | |
688 bmp_cfg_db_set_int(db, NULL, "url_history_length", | |
689 g_list_length(cfg.url_history)); | |
690 | |
691 for (node = cfg.url_history, i = 1; node; node = g_list_next(node), i++) { | |
692 str = g_strdup_printf("url_history%d", i); | |
693 bmp_cfg_db_set_string(db, NULL, str, node->data); | |
694 g_free(str); | |
695 } | |
696 | |
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
|
697 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
|
698 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
|
699 } 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
|
700 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
|
701 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
|
702 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
|
703 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
|
704 |
0 | 705 bmp_cfg_db_close(db); |
706 | |
1557 | 707 playlist_save(bmp_paths[BMP_PATH_PLAYLIST_FILE]); |
0 | 708 } |
709 | |
710 static void | |
711 bmp_set_default_icon(void) | |
712 { | |
713 GdkPixbuf *icon; | |
714 | |
120 | 715 icon = gdk_pixbuf_new_from_xpm_data((const gchar **) audacious_player_xpm); |
0 | 716 gtk_window_set_default_icon(icon); |
717 g_object_unref(icon); | |
718 } | |
719 | |
720 static void | |
721 display_usage(void) | |
722 { | |
44 | 723 g_print(_("Usage: audacious [options] [files] ...\n\n" |
0 | 724 "Options:\n" |
725 "--------\n")); | |
726 g_print("\n-h, --help "); | |
727 /* -h, --help switch */ | |
728 g_print(_("Display this text and exit")); | |
729 g_print("\n-n, --session "); | |
730 /* -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
|
731 g_print(_("Select Audacious/BMP/XMMS session (Default: 0)")); |
0 | 732 g_print("\n-r, --rew "); |
733 /* -r, --rew switch */ | |
734 g_print(_("Skip backwards in playlist")); | |
735 g_print("\n-p, --play "); | |
736 /* -p, --play switch */ | |
737 g_print(_("Start playing current playlist")); | |
738 g_print("\n-u, --pause "); | |
739 /* -u, --pause switch */ | |
740 g_print(_("Pause current song")); | |
741 g_print("\n-s, --stop "); | |
742 /* -s, --stop switch */ | |
743 g_print(_("Stop current song")); | |
744 g_print("\n-t, --play-pause "); | |
745 /* -t, --play-pause switch */ | |
746 g_print(_("Pause if playing, play otherwise")); | |
747 g_print("\n-f, --fwd "); | |
748 /* -f, --fwd switch */ | |
749 g_print(_("Skip forward in playlist")); | |
1885
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
750 g_print("\n-j, --show-jump-box "); |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
751 /* -j, --show-jump-box switch */ |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
752 g_print(_("Display Jump to file dialog")); |
0 | 753 g_print("\n-e, --enqueue "); |
754 /* -e, --enqueue switch */ | |
755 g_print(_("Don't clear the playlist")); | |
756 g_print("\n-m, --show-main-window "); | |
757 /* -m, --show-main-window switch */ | |
758 g_print(_("Show the main window")); | |
759 g_print("\n-a, --activate "); | |
760 /* -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
|
761 g_print(_("Activate Audacious")); |
0 | 762 g_print("\n-i, --sm-client-id "); |
763 /* -i, --sm-client-id switch */ | |
764 g_print(_("Previous session ID")); | |
316
950f104f2e11
[svn] Fix spacing in --help output, patch by Mikachu.
chainsaw
parents:
284
diff
changeset
|
765 g_print("\n-H, --headless "); |
193 | 766 /* -h, --headless switch */ |
767 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
|
768 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
|
769 /* -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
|
770 g_print(_("Disable error/warning interception (logging)")); |
0 | 771 g_print("\n-v, --version "); |
772 /* -v, --version switch */ | |
773 g_print(_("Print version number and exit\n")); | |
774 | |
775 exit(EXIT_SUCCESS); | |
776 } | |
777 | |
778 static void | |
779 parse_cmd_line(gint argc, | |
780 gchar ** argv, | |
781 BmpCmdLineOpt * options) | |
782 { | |
783 static struct option long_options[] = { | |
784 {"help", 0, NULL, 'h'}, | |
785 {"session", 1, NULL, 'n'}, | |
786 {"rew", 0, NULL, 'r'}, | |
787 {"play", 0, NULL, 'p'}, | |
788 {"pause", 0, NULL, 'u'}, | |
789 {"play-pause", 0, NULL, 't'}, | |
790 {"stop", 0, NULL, 's'}, | |
791 {"fwd", 0, NULL, 'f'}, | |
1885
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
792 {"show-jump-box", 0, NULL, 'j'}, |
0 | 793 {"enqueue", 0, NULL, 'e'}, |
794 {"show-main-window", 0, NULL, 'm'}, | |
795 {"activate", 0, NULL, 'a'}, | |
796 {"version", 0, NULL, 'v'}, | |
797 {"sm-client-id", 1, NULL, 'i'}, | |
798 {"xmms", 0, NULL, 'x'}, | |
191 | 799 {"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
|
800 {"no-log", 0, NULL, 'N'}, |
0 | 801 {0, 0, 0, 0} |
802 }; | |
803 | |
804 gchar *filename, *current_dir; | |
805 gint c, i; | |
806 | |
807 memset(options, 0, sizeof(BmpCmdLineOpt)); | |
808 options->session = -1; | |
809 | |
1885
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
810 while ((c = getopt_long(argc, argv, "chn:HrpusfemavtLSj", long_options, |
0 | 811 NULL)) != -1) { |
812 switch (c) { | |
813 case 'h': | |
814 display_usage(); | |
815 break; | |
816 case 'n': | |
817 options->session = atoi(optarg); | |
818 break; | |
191 | 819 case 'H': |
820 options->headless = TRUE; | |
821 break; | |
0 | 822 case 'r': |
823 options->rew = TRUE; | |
824 break; | |
825 case 'p': | |
826 options->play = TRUE; | |
827 break; | |
828 case 'u': | |
829 options->pause = TRUE; | |
830 break; | |
831 case 's': | |
832 options->stop = TRUE; | |
833 break; | |
834 case 'f': | |
835 options->fwd = TRUE; | |
836 break; | |
837 case 't': | |
838 options->play_pause = TRUE; | |
839 break; | |
1885
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
840 case 'j': |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
841 options->show_jump_box = TRUE; |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
842 break; |
0 | 843 case 'm': |
844 options->mainwin = TRUE; | |
845 break; | |
846 case 'a': | |
847 options->activate = TRUE; | |
848 break; | |
849 case 'e': | |
850 options->enqueue = TRUE; | |
851 break; | |
852 case 'v': | |
853 dump_version(); | |
854 exit(EXIT_SUCCESS); | |
855 break; | |
856 case 'i': | |
857 options->previous_session_id = g_strdup(optarg); | |
858 break; | |
859 case 'c': | |
860 options->playcd = TRUE; | |
861 break; | |
862 case 'S': | |
863 options->load_skins = TRUE; | |
864 break; | |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
865 case 'N': |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
866 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
|
867 break; |
0 | 868 } |
869 } | |
870 | |
871 current_dir = g_get_current_dir(); | |
872 | |
873 for (i = optind; i < argc; i++) { | |
874 if (argv[i][0] == '/' || strstr(argv[i], "://")) | |
875 filename = g_strdup(argv[i]); | |
876 else | |
877 filename = g_build_filename(current_dir, argv[i], NULL); | |
878 | |
879 options->filenames = g_list_prepend(options->filenames, filename); | |
880 } | |
881 | |
882 options->filenames = g_list_reverse(options->filenames); | |
883 | |
884 g_free(current_dir); | |
885 } | |
886 | |
887 static void | |
888 handle_cmd_line_options(BmpCmdLineOpt * options, | |
889 gboolean remote) | |
890 { | |
891 GList *filenames = options->filenames; | |
892 gint session = options->session; | |
893 | |
894 if (session == -1) { | |
895 if (!remote) | |
896 session = ctrlsocket_get_session_id(); | |
897 else | |
898 session = 0; | |
899 } | |
900 | |
901 if (filenames) { | |
902 gint pos = 0; | |
903 | |
904 if (options->load_skins) { | |
905 xmms_remote_set_skin(session, filenames->data); | |
906 skin_install_skin(filenames->data); | |
907 } | |
908 else { | |
909 if (options->enqueue && options->play) | |
910 pos = xmms_remote_get_playlist_length(session); | |
911 | |
912 if (!options->enqueue) | |
913 xmms_remote_playlist_clear(session); | |
914 | |
915 xmms_remote_playlist_add(session, filenames); | |
916 | |
917 if (options->enqueue && options->play && | |
918 xmms_remote_get_playlist_length(session) > pos) | |
919 xmms_remote_set_playlist_pos(session, pos); | |
920 | |
921 if (!options->enqueue) | |
922 xmms_remote_play(session); | |
923 } | |
924 | |
925 g_list_foreach(filenames, (GFunc) g_free, NULL); | |
926 g_list_free(filenames); | |
927 } | |
928 | |
929 if (options->rew) | |
930 xmms_remote_playlist_prev(session); | |
931 | |
932 if (options->play) | |
933 xmms_remote_play(session); | |
934 | |
935 if (options->pause) | |
936 xmms_remote_pause(session); | |
937 | |
938 if (options->stop) | |
939 xmms_remote_stop(session); | |
940 | |
941 if (options->fwd) | |
942 xmms_remote_playlist_next(session); | |
943 | |
944 if (options->play_pause) | |
945 xmms_remote_play_pause(session); | |
946 | |
1885
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
947 if (options->show_jump_box) |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
948 xmms_remote_show_jtf_box(session); |
1cd683dd944e
[svn] Jump to track window shown when calling audacious with the -j option. Patch by Henrik Johansson <henrik_johansson@home.se>, submitted as Gentoo bug #151260.
chainsaw
parents:
1884
diff
changeset
|
949 |
0 | 950 if (options->mainwin) |
951 xmms_remote_main_win_toggle(session, TRUE); | |
952 | |
953 if (options->activate) | |
954 xmms_remote_activate(session); | |
955 | |
956 if (options->playcd) | |
957 play_medium(); | |
958 } | |
959 | |
960 static void | |
961 segfault_handler(gint sig) | |
962 { | |
963 g_printerr(_("\nReceived SIGSEGV\n\n" | |
27
d160ae2251e9
[svn] Update SIGSEGV message, contained the BMP mailing information.
nenolod
parents:
0
diff
changeset
|
964 "This could be a bug in Audacious. If you don't know why this happened, " |
1959 | 965 "file a bug at http://bugs-meta.atheme.org/\n\n")); |
0 | 966 #ifdef HANDLE_SIGSEGV |
967 exit(EXIT_FAILURE); | |
968 #else | |
969 abort(); | |
970 #endif | |
971 } | |
972 | |
973 static void | |
974 bmp_setup_logger(void) | |
975 { | |
976 if (!bmp_logger_start(bmp_paths[BMP_PATH_LOG_FILE])) | |
977 return; | |
978 | |
979 g_atexit(bmp_logger_stop); | |
980 } | |
981 | |
982 static void | |
983 run_load_skin_error_dialog(const gchar * skin_path) | |
984 { | |
985 const gchar *markup = | |
986 N_("<b><big>Unable to load skin.</big></b>\n" | |
987 "\n" | |
988 "Check that skin at '%s' is usable and default skin is properly " | |
989 "installed at '%s'\n"); | |
990 | |
991 GtkWidget *dialog = | |
992 gtk_message_dialog_new_with_markup(NULL, | |
993 GTK_DIALOG_MODAL, | |
994 GTK_MESSAGE_ERROR, | |
995 GTK_BUTTONS_CLOSE, | |
996 _(markup), | |
997 skin_path, | |
998 BMP_DEFAULT_SKIN_PATH); | |
999 gtk_dialog_run(GTK_DIALOG(dialog)); | |
1000 gtk_widget_destroy(dialog); | |
1001 } | |
1002 | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1003 // use a format string? |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1004 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
|
1005 { |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1006 fprintf(stderr,error_text); |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1007 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
|
1008 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
|
1009 error_text); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1010 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
|
1011 gtk_widget_hide(err); |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1012 } |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1013 } |
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1014 |
0 | 1015 gint |
1016 main(gint argc, gchar ** argv) | |
1017 { | |
44 | 1018 gboolean gtk_init_check_ok; |
0 | 1019 |
1020 /* Setup l10n early so we can print localized error messages */ | |
1021 gtk_set_locale(); | |
749 | 1022 bindtextdomain(PACKAGE_NAME, LOCALEDIR); |
1023 bind_textdomain_codeset(PACKAGE_NAME, "UTF-8"); | |
1024 textdomain(PACKAGE_NAME); | |
0 | 1025 |
1026 bmp_init_paths(); | |
1027 bmp_make_user_dir(); | |
1028 | |
1029 /* Check GTK version. Really, this is only needed for binary | |
1030 * 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
|
1031 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
|
1032 g_printerr(_("Sorry, your GTK+ version (%d.%d.%d) does not work with Audacious.\n" |
0 | 1033 "Please use GTK+ %s or newer.\n"), |
1034 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
|
1035 "2.6.0"); |
0 | 1036 exit(EXIT_FAILURE); |
1037 } | |
1038 | |
1039 g_set_application_name(_(application_name)); | |
1040 | |
1041 g_thread_init(NULL); | |
1042 if (!g_thread_supported()) { | |
1043 g_printerr(_("Sorry, threads isn't supported on your platform.\n\n" | |
1044 "If you're on a libc5 based linux system and installed Glib & GTK+ before you\n" | |
1045 "installed LinuxThreads you need to recompile Glib & GTK+.\n")); | |
1046 exit(EXIT_FAILURE); | |
1047 } | |
1048 | |
1049 gdk_threads_init(); | |
1050 | |
44 | 1051 gtk_init_check_ok = gtk_init_check(&argc, &argv); |
1052 /* Now let's parse the command line options first. */ | |
1053 parse_cmd_line(argc, argv, &options); | |
1054 if (!gtk_init_check_ok) { | |
0 | 1055 if (argc < 2) { |
1056 /* GTK check failed, and no arguments passed to indicate | |
1057 that user is intending to only remote control a running | |
1058 session */ | |
44 | 1059 g_printerr(_("audacious: Unable to open display, exiting.\n")); |
0 | 1060 exit(EXIT_FAILURE); |
1061 } | |
1062 | |
1063 handle_cmd_line_options(&options, TRUE); | |
191 | 1064 |
1065 /* we could be running headless, so GTK probably wont matter */ | |
1066 if (options.headless != 1) | |
1067 exit(EXIT_SUCCESS); | |
0 | 1068 } |
1069 | |
1348
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
1070 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
|
1071 bmp_setup_logger(); |
cc57f7545876
[svn] - add --no-log switch to disable the system logger (and instead dump to stdout)
nenolod
parents:
1347
diff
changeset
|
1072 |
0 | 1073 if (!vfs_init()) { |
1074 g_printerr(Q_("Could not initialize VFS.\n")); | |
1075 exit(EXIT_FAILURE); | |
1076 } | |
1077 | |
1078 signal(SIGPIPE, SIG_IGN); /* for controlsocket.c */ | |
1079 signal(SIGSEGV, segfault_handler); | |
1080 | |
1081 g_random_set_seed(time(NULL)); | |
1082 | |
1083 bmp_config_load(); | |
1084 | |
1085 if (options.session != -1 || !ctrlsocket_setup()) { | |
1086 handle_cmd_line_options(&options, TRUE); | |
1087 exit(EXIT_SUCCESS); | |
1088 } | |
1089 | |
191 | 1090 if (options.headless != 1) |
1091 { | |
781
12c47704b4b5
[svn] Add error reporting for many places, patch by external contributor Derek
nenolod
parents:
749
diff
changeset
|
1092 |
191 | 1093 bmp_set_default_icon(); |
0 | 1094 |
191 | 1095 gtk_accel_map_load(bmp_paths[BMP_PATH_ACCEL_FILE]); |
0 | 1096 |
1810 | 1097 if (!init_skins(cfg.skin)) { |
1098 run_load_skin_error_dialog(cfg.skin); | |
1099 exit(EXIT_FAILURE); | |
1100 } | |
1101 | |
191 | 1102 GDK_THREADS_ENTER(); |
0 | 1103 } |
1104 | |
1105 plugin_system_init(); | |
1106 | |
1107 playlist_load(bmp_paths[BMP_PATH_PLAYLIST_FILE]); | |
1108 playlist_set_position(cfg.playlist_position); | |
1109 | |
1110 /* this needs to be called after all 3 windows are created and | |
191 | 1111 * input plugins are setup'ed |
1112 * but not if we're running headless --nenolod | |
1113 */ | |
0 | 1114 mainwin_setup_menus(); |
1115 | |
191 | 1116 if (options.headless != 1) |
1117 GDK_THREADS_LEAVE(); | |
0 | 1118 |
1119 ctrlsocket_start(); | |
1120 | |
1121 handle_cmd_line_options(&options, FALSE); | |
1122 | |
191 | 1123 if (options.headless != 1) |
1124 { | |
1125 GDK_THREADS_ENTER(); | |
0 | 1126 |
191 | 1127 read_volume(VOLSET_STARTUP); |
1128 mainwin_set_info_text(); | |
1129 | |
1130 /* FIXME: delayed, because it deals directly with the plugin | |
1131 * interface to set menu items */ | |
1132 create_prefs_window(); | |
0 | 1133 |
1264 | 1134 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
|
1135 create_filepopup_window(); |
1264 | 1136 |
1966
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1137 create_newui_window(); |
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1138 show_newui_window(); |
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1139 |
191 | 1140 if (cfg.player_visible) |
1141 mainwin_show(TRUE); | |
1142 else if (!cfg.playlist_visible && !cfg.equalizer_visible) | |
1143 mainwin_show(TRUE); | |
125 | 1144 |
191 | 1145 if (cfg.equalizer_visible) |
1146 equalizerwin_show(TRUE); | |
1147 | |
1148 if (cfg.playlist_visible) | |
1149 playlistwin_show(); | |
0 | 1150 |
191 | 1151 hint_set_always(cfg.always_on_top); |
0 | 1152 |
191 | 1153 playlist_start_get_info_thread(); |
1154 mainwin_attach_idle_func(); | |
1155 | |
486 | 1156 starting_up = FALSE; |
1157 | |
680
8282b365f6cb
[svn] - Add some sanity checking to make sure we can't do X11 stuff when running headless.
nenolod
parents:
625
diff
changeset
|
1158 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
|
1159 |
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
|
1160 if (cfg.resume_playback_on_startup) { |
1659
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1161 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
|
1162 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
|
1163 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
|
1164 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
|
1165 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
|
1166 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
|
1167 bmp_playback_initiate(); |
1966
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1168 |
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1169 /* Busy wait; loop is fairly tight to minimize duration of "frozen" GUI. Feel free to |
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1170 * tune. --chainsaw |
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1171 */ |
fcf3900d05b9
[svn] - temporarily display the newui at startup along with the oldui
nenolod
parents:
1959
diff
changeset
|
1172 for (i = 0; i < 20; i++) { |
1753
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1173 g_usleep(1000); |
1659
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1174 if (!ip_data.playing) |
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1175 break; |
eeaf62b288a3
[svn] Make the playback resume code a lot more robust.
chainsaw
parents:
1653
diff
changeset
|
1176 } |
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
|
1177 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
|
1178 1000); |
1753
01df1ea5feae
[svn] Mute while seeking for playback resume, tighten the loop. We want a responsive GUI ASAP.
chainsaw
parents:
1710
diff
changeset
|
1179 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
|
1180 } |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1181 } |
8c6949ffd7f8
[svn] Support for saving the playback state, and resuming playback after restart. Patch by cha0smaster, closes bug #479.
chainsaw
parents:
946
diff
changeset
|
1182 |
191 | 1183 gtk_main(); |
1184 | |
1185 GDK_THREADS_LEAVE(); | |
0 | 1186 |
191 | 1187 return EXIT_SUCCESS; |
1188 } | |
1189 else | |
1190 { | |
1191 mainwin_set_info_text(); | |
1192 playlist_start_get_info_thread(); | |
0 | 1193 |
486 | 1194 starting_up = FALSE; |
1195 | |
191 | 1196 for (;;) |
192
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1197 { |
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
|
1198 /* 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
|
1199 audcore_generic_events(); |
198 | 1200 free_vis_data(); /* to prevent buffer overflow -- paranoia */ |
191 | 1201 xmms_usleep(10000); |
192
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1202 } |
0ee0b9b6db7e
[svn] headless now working, use --headless if you wish to experiment.
nenolod
parents:
191
diff
changeset
|
1203 |
191 | 1204 return EXIT_SUCCESS; |
1205 } | |
0 | 1206 } |