Mercurial > audlegacy
annotate audacious/playback.c @ 1828:b469c6c567a4 trunk
[svn] - use gtk_window_present() to make X render the right sized skin
author | nenolod |
---|---|
date | Thu, 05 Oct 2006 07:09:01 -0700 |
parents | 600efc52c645 |
children | 30d40252862d |
rev | line source |
---|---|
283 | 1 /* BMP - Cross-platform multimedia player |
2 * Copyright (C) 2003-2004 BMP development team. | |
3 * | |
4 * Based on XMMS: | |
5 * Copyright (C) 1998-2003 XMMS development team. | |
6 * | |
7 * This program is free software; you can redistribute it and/or modify | |
1460 | 8 * it under the terms of the GNU General Public License as published by |
283 | 9 * the Free Software Foundation; either version 2 of the License, or |
10 * (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, | |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 * GNU General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU General Public License | |
18 * along with this program; if not, write to the Free Software | |
1459 | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
283 | 20 */ |
21 | |
22 #ifdef HAVE_CONFIG_H | |
23 # include "config.h" | |
24 #endif | |
25 | |
26 #include <glib.h> | |
27 #include <glib/gi18n.h> | |
28 #include <glib/gprintf.h> | |
29 #include <stdlib.h> | |
30 #include <string.h> | |
31 #include <time.h> | |
32 | |
33 #include <unistd.h> | |
34 #include <sys/types.h> | |
35 #include <sys/stat.h> | |
36 #include <dirent.h> | |
37 | |
38 #include "libaudacious/util.h" | |
39 #include "libaudacious/configdb.h" | |
40 | |
41 #include "input.h" | |
42 #include "main.h" | |
1653 | 43 #include "mainwin.h" |
44 #include "equalizer.h" | |
283 | 45 #include "output.h" |
46 #include "playlist.h" | |
1653 | 47 #include "ui_playlist.h" |
283 | 48 #include "skinwin.h" |
49 #include "urldecode.h" | |
50 #include "util.h" | |
51 | |
52 | |
53 #include "playback.h" | |
1653 | 54 |
55 | |
56 /* FIXME: yuck!! this shouldn't be here... */ | |
57 void | |
58 bmp_playback_set_random_skin(void) | |
59 { | |
60 SkinNode *node; | |
61 guint32 randval; | |
62 | |
63 /* Get a random value to select the skin to use */ | |
64 randval = g_random_int_range(0, g_list_length(skinlist)); | |
65 node = g_list_nth(skinlist, randval)->data; | |
66 bmp_active_skin_load(node->path); | |
67 } | |
283 | 68 |
69 gint | |
70 bmp_playback_get_time(void) | |
71 { | |
72 if (!bmp_playback_get_playing()) | |
73 return -1; | |
74 | |
75 if (!get_current_input_plugin()) | |
76 return -1; | |
77 | |
78 return get_current_input_plugin()->get_time(); | |
79 } | |
80 | |
81 void | |
82 bmp_playback_initiate(void) | |
83 { | |
398
f908bcd87c3d
[svn] Generate cache content on demand if it was not previously there.
nenolod
parents:
385
diff
changeset
|
84 PlaylistEntry *entry; |
283 | 85 |
86 if (playlist_get_length() == 0) | |
87 return; | |
88 | |
89 if (bmp_playback_get_playing()) | |
90 bmp_playback_stop(); | |
91 | |
92 vis_clear_data(mainwin_vis); | |
93 svis_clear_data(mainwin_svis); | |
94 mainwin_disable_seekbar(); | |
95 | |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
96 entry = playlist_get_entry_to_play(); |
283 | 97 |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
98 if (!entry) |
283 | 99 return; |
100 | |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
101 if (!bmp_playback_play_file(entry)) |
283 | 102 return; |
103 | |
104 if (bmp_playback_get_time() != -1) { | |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
105 equalizerwin_load_auto_preset(entry->filename); |
283 | 106 input_set_eq(cfg.equalizer_active, cfg.equalizer_preamp, |
107 cfg.equalizer_bands); | |
108 output_set_eq(cfg.equalizer_active, cfg.equalizer_preamp, | |
109 cfg.equalizer_bands); | |
110 } | |
111 | |
112 playlist_check_pos_current(); | |
113 mainwin_set_info_text(); | |
114 } | |
115 | |
116 void | |
117 bmp_playback_pause(void) | |
118 { | |
119 if (!bmp_playback_get_playing()) | |
120 return; | |
121 | |
122 if (!get_current_input_plugin()) | |
123 return; | |
124 | |
125 ip_data.paused = !ip_data.paused; | |
126 | |
1672
600efc52c645
[svn] - be careful about referencing a NULL widget (e.g. headless/serveronly mode crashes on streams, bug #562)
nenolod
parents:
1653
diff
changeset
|
127 if (get_current_input_plugin()->pause) |
600efc52c645
[svn] - be careful about referencing a NULL widget (e.g. headless/serveronly mode crashes on streams, bug #562)
nenolod
parents:
1653
diff
changeset
|
128 get_current_input_plugin()->pause(ip_data.paused); |
600efc52c645
[svn] - be careful about referencing a NULL widget (e.g. headless/serveronly mode crashes on streams, bug #562)
nenolod
parents:
1653
diff
changeset
|
129 |
600efc52c645
[svn] - be careful about referencing a NULL widget (e.g. headless/serveronly mode crashes on streams, bug #562)
nenolod
parents:
1653
diff
changeset
|
130 g_return_if_fail(mainwin_playstatus != NULL); |
600efc52c645
[svn] - be careful about referencing a NULL widget (e.g. headless/serveronly mode crashes on streams, bug #562)
nenolod
parents:
1653
diff
changeset
|
131 |
283 | 132 if (ip_data.paused) |
133 playstatus_set_status(mainwin_playstatus, STATUS_PAUSE); | |
134 else | |
135 playstatus_set_status(mainwin_playstatus, STATUS_PLAY); | |
136 } | |
137 | |
138 void | |
139 bmp_playback_stop(void) | |
140 { | |
141 if (ip_data.playing && get_current_input_plugin()) { | |
142 ip_data.playing = FALSE; | |
143 | |
144 if (bmp_playback_get_paused()) | |
145 bmp_playback_pause(); | |
146 | |
147 if (get_current_input_plugin()->stop) | |
148 get_current_input_plugin()->stop(); | |
149 | |
150 free_vis_data(); | |
151 ip_data.paused = FALSE; | |
152 | |
153 if (input_info_text) { | |
154 g_free(input_info_text); | |
155 input_info_text = NULL; | |
156 mainwin_set_info_text(); | |
157 } | |
158 } | |
159 | |
1273
3b990c26fc46
[svn] - Support for the buffer indicator in playpaus.png that was apparently
nhjm449
parents:
890
diff
changeset
|
160 ip_data.buffering = FALSE; |
1672
600efc52c645
[svn] - be careful about referencing a NULL widget (e.g. headless/serveronly mode crashes on streams, bug #562)
nenolod
parents:
1653
diff
changeset
|
161 ip_data.playing = FALSE; |
600efc52c645
[svn] - be careful about referencing a NULL widget (e.g. headless/serveronly mode crashes on streams, bug #562)
nenolod
parents:
1653
diff
changeset
|
162 |
600efc52c645
[svn] - be careful about referencing a NULL widget (e.g. headless/serveronly mode crashes on streams, bug #562)
nenolod
parents:
1653
diff
changeset
|
163 g_return_if_fail(mainwin_playstatus != NULL); |
600efc52c645
[svn] - be careful about referencing a NULL widget (e.g. headless/serveronly mode crashes on streams, bug #562)
nenolod
parents:
1653
diff
changeset
|
164 |
1653 | 165 playstatus_set_status_buffering(mainwin_playstatus, FALSE); |
283 | 166 } |
167 | |
168 void | |
169 bmp_playback_stop_reentrant(void) | |
170 { | |
171 if (ip_data.playing && get_current_input_plugin()) { | |
172 ip_data.playing = FALSE; | |
173 | |
174 if (bmp_playback_get_paused()) | |
175 bmp_playback_pause(); | |
176 | |
177 free_vis_data(); | |
178 ip_data.paused = FALSE; | |
179 | |
180 if (input_info_text) { | |
181 g_free(input_info_text); | |
182 input_info_text = NULL; | |
183 mainwin_set_info_text(); | |
184 } | |
185 } | |
186 | |
1273
3b990c26fc46
[svn] - Support for the buffer indicator in playpaus.png that was apparently
nhjm449
parents:
890
diff
changeset
|
187 ip_data.buffering = FALSE; |
283 | 188 ip_data.playing = FALSE; |
189 } | |
190 | |
191 static void | |
192 run_no_output_plugin_dialog(void) | |
193 { | |
194 const gchar *markup = | |
195 N_("<b><big>No output plugin selected.</big></b>\n" | |
196 "You have not selected an output plugin."); | |
197 | |
198 GtkWidget *dialog = | |
1653 | 199 gtk_message_dialog_new_with_markup(GTK_WINDOW(mainwin), |
283 | 200 GTK_DIALOG_DESTROY_WITH_PARENT, |
201 GTK_MESSAGE_ERROR, | |
202 GTK_BUTTONS_OK, | |
203 _(markup)); | |
204 gtk_dialog_run(GTK_DIALOG(dialog)); | |
205 gtk_widget_destroy(dialog); | |
206 } | |
207 | |
208 gboolean | |
398
f908bcd87c3d
[svn] Generate cache content on demand if it was not previously there.
nenolod
parents:
385
diff
changeset
|
209 bmp_playback_play_file(PlaylistEntry *entry) |
283 | 210 { |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
211 g_return_val_if_fail(entry != NULL, FALSE); |
283 | 212 |
213 if (!get_current_output_plugin()) { | |
214 run_no_output_plugin_dialog(); | |
215 mainwin_stop_pushed(); | |
216 return FALSE; | |
217 } | |
218 | |
219 if (cfg.random_skin_on_play) | |
220 bmp_playback_set_random_skin(); | |
221 | |
677
f52f596dc0d8
[svn] - Working exception handling at no extra charge. Closes bugs #408, #409.
nenolod
parents:
561
diff
changeset
|
222 /* |
f52f596dc0d8
[svn] - Working exception handling at no extra charge. Closes bugs #408, #409.
nenolod
parents:
561
diff
changeset
|
223 * This is slightly uglier than the original version, but should |
f52f596dc0d8
[svn] - Working exception handling at no extra charge. Closes bugs #408, #409.
nenolod
parents:
561
diff
changeset
|
224 * fix the "crash" issues as seen in 0.2 when dealing with this situation. |
f52f596dc0d8
[svn] - Working exception handling at no extra charge. Closes bugs #408, #409.
nenolod
parents:
561
diff
changeset
|
225 * - nenolod |
f52f596dc0d8
[svn] - Working exception handling at no extra charge. Closes bugs #408, #409.
nenolod
parents:
561
diff
changeset
|
226 */ |
f52f596dc0d8
[svn] - Working exception handling at no extra charge. Closes bugs #408, #409.
nenolod
parents:
561
diff
changeset
|
227 if (!entry->decoder && |
678 | 228 (((entry->decoder = input_check_file(entry->filename, FALSE)) == NULL) || |
229 !input_is_enabled(entry->decoder->filename))) | |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
230 { |
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
231 input_file_not_playable(entry->filename); |
283 | 232 |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
233 set_current_input_plugin(NULL); |
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
234 mainwin_set_info_text(); |
283 | 235 |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
236 return FALSE; |
283 | 237 } |
238 | |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
239 set_current_input_plugin(entry->decoder); |
890
ed26947bbf57
[svn] Gapless support. This comes with a few caveats, that I will mention here:
nenolod
parents:
678
diff
changeset
|
240 entry->decoder->output = &psuedo_output_plugin; |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
241 entry->decoder->play_file(entry->filename); |
283 | 242 |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
243 ip_data.playing = TRUE; |
283 | 244 |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
245 return TRUE; |
283 | 246 } |
247 | |
248 gboolean | |
249 bmp_playback_get_playing(void) | |
250 { | |
251 return ip_data.playing; | |
252 } | |
253 | |
254 gboolean | |
255 bmp_playback_get_paused(void) | |
256 { | |
257 return ip_data.paused; | |
258 } | |
259 | |
260 void | |
261 bmp_playback_seek(gint time) | |
262 { | |
263 gboolean restore_pause = FALSE; | |
264 gint l=0, r=0; | |
265 | |
266 if (!ip_data.playing) | |
267 return; | |
268 | |
269 if (!get_current_input_plugin()) | |
270 return; | |
271 | |
272 /* FIXME WORKAROUND...that should work with all plugins | |
273 * mute the volume, start playback again, do the seek, then pause again | |
677
f52f596dc0d8
[svn] - Working exception handling at no extra charge. Closes bugs #408, #409.
nenolod
parents:
561
diff
changeset
|
274 * -Patrick Sudowe |
f52f596dc0d8
[svn] - Working exception handling at no extra charge. Closes bugs #408, #409.
nenolod
parents:
561
diff
changeset
|
275 */ |
283 | 276 if(ip_data.paused) |
277 { | |
278 restore_pause = TRUE; | |
279 output_get_volume(&l, &r); | |
280 output_set_volume(0,0); | |
281 bmp_playback_pause(); | |
282 } | |
283 | |
284 free_vis_data(); | |
285 get_current_input_plugin()->seek(time); | |
286 | |
287 if(restore_pause) | |
288 { | |
289 bmp_playback_pause(); | |
290 output_set_volume(l, r); | |
291 } | |
292 } | |
293 | |
294 void | |
295 bmp_playback_seek_relative(gint offset) | |
296 { | |
297 gint time = CLAMP(bmp_playback_get_time() / 1000 + offset, | |
298 0, playlist_get_current_length() / 1000 - 1); | |
299 bmp_playback_seek(time); | |
300 } |