Mercurial > audlegacy
annotate src/audacious/playback.c @ 2495:6fb56e6bc6ec trunk
[svn] - remove debugging notices
- remove some more common dock code that is part of SkinnedWindow now.
author | nenolod |
---|---|
date | Sat, 10 Feb 2007 17:04:31 -0800 |
parents | aa60c92e7491 |
children | 6f7be3702c5f |
rev | line source |
---|---|
2313 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2007 Audacious development team | |
3 * | |
4 * Based on BMP: | |
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; under version 2 of the License. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 # include "config.h" | |
26 #endif | |
27 | |
28 #include <glib.h> | |
29 #include <glib/gi18n.h> | |
30 #include <glib/gprintf.h> | |
31 #include <stdlib.h> | |
32 #include <string.h> | |
33 #include <time.h> | |
34 | |
35 #include <unistd.h> | |
36 #include <sys/types.h> | |
37 #include <sys/stat.h> | |
38 #include <dirent.h> | |
39 | |
40 #include "libaudacious/configdb.h" | |
41 | |
2420 | 42 #include "hook.h" |
2313 | 43 #include "input.h" |
44 #include "main.h" | |
45 #include "ui_equalizer.h" | |
46 #include "output.h" | |
47 #include "playlist.h" | |
2420 | 48 #include "ui_main.h" |
2313 | 49 #include "ui_playlist.h" |
50 #include "ui_skinselector.h" | |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2407
diff
changeset
|
51 #include "urldecode.h" |
2313 | 52 #include "util.h" |
53 | |
54 #include "playback.h" | |
55 | |
56 | |
57 gint | |
58 playback_get_time(void) | |
59 { | |
2438
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
60 InputPlayback *playback; |
2420 | 61 g_return_val_if_fail(playback_get_playing(), -1); |
2438
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
62 playback = get_current_input_playback(); |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
63 g_return_val_if_fail(playback, -1); |
2313 | 64 |
2438
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
65 if (playback->plugin->get_time) |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
66 return playback->plugin->get_time(playback); |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
67 if (playback->error) |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
68 return -2; |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
69 if (!playback->playing || |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
70 (playback->eof && !playback->output->buffer_playing())) |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
71 return -1; |
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
72 return playback->output->output_time(); |
2313 | 73 } |
74 | |
75 void | |
76 playback_initiate(void) | |
77 { | |
78 PlaylistEntry *entry = NULL; | |
79 Playlist *playlist = playlist_get_active(); | |
80 gint penalty = 0; | |
81 | |
2420 | 82 g_return_if_fail(playlist_get_length(playlist) != 0); |
2313 | 83 |
84 if (playback_get_playing()) | |
85 playback_stop(); | |
86 | |
87 vis_clear_data(mainwin_vis); | |
88 svis_clear_data(mainwin_svis); | |
89 mainwin_disable_seekbar(); | |
90 | |
91 entry = playlist_get_entry_to_play(playlist); | |
2420 | 92 g_return_if_fail(entry != NULL); |
2313 | 93 |
94 /* | |
95 * If the playlist entry cannot be played, try to pick another one. | |
96 * If that does not work, e.g. entry == NULL, then bail. | |
97 * | |
98 * - nenolod | |
99 */ | |
2420 | 100 for (penalty = 0; penalty <= 15 && entry != NULL && !playback_play_file(entry); penalty++) |
2313 | 101 { |
102 playlist_next(playlist); | |
103 | |
104 entry = playlist_get_entry_to_play(playlist); | |
105 | |
2420 | 106 /* XXX ew. workaround for a stupid bug where audacious will keep |
107 * trying to play a file with no valid decoder. | |
108 */ | |
109 g_return_if_fail(entry != NULL); | |
2313 | 110 |
2420 | 111 if (entry->decoder == NULL ) |
112 entry->decoder = input_check_file(entry->filename, FALSE); | |
2313 | 113 |
2420 | 114 /* if we hit 15 entries in a row with no valid decoder, just |
2313 | 115 * bail due to confusion |
2420 | 116 */ |
117 if (penalty == 15) | |
118 return; | |
2313 | 119 } |
120 | |
121 if (playback_get_time() != -1) { | |
122 equalizerwin_load_auto_preset(entry->filename); | |
123 input_set_eq(cfg.equalizer_active, cfg.equalizer_preamp, | |
124 cfg.equalizer_bands); | |
125 output_set_eq(cfg.equalizer_active, cfg.equalizer_preamp, | |
126 cfg.equalizer_bands); | |
127 } | |
128 | |
129 playlist_check_pos_current(playlist); | |
130 mainwin_set_info_text(); | |
2407
1dc1d36d0347
[svn] - add hooks: playback begin, playback end, playlist reached end
nenolod
parents:
2366
diff
changeset
|
131 |
1dc1d36d0347
[svn] - add hooks: playback begin, playback end, playlist reached end
nenolod
parents:
2366
diff
changeset
|
132 hook_call("playback begin", entry); |
2313 | 133 } |
134 | |
135 void | |
136 playback_pause(void) | |
137 { | |
138 if (!playback_get_playing()) | |
139 return; | |
140 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
141 if (!get_current_input_playback()) |
2313 | 142 return; |
143 | |
144 ip_data.paused = !ip_data.paused; | |
145 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
146 if (get_current_input_playback()->plugin->pause) |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
147 get_current_input_playback()->plugin->pause(get_current_input_playback(), |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
148 ip_data.paused); |
2313 | 149 |
150 g_return_if_fail(mainwin_playstatus != NULL); | |
151 | |
152 if (ip_data.paused) | |
153 playstatus_set_status(mainwin_playstatus, STATUS_PAUSE); | |
154 else | |
155 playstatus_set_status(mainwin_playstatus, STATUS_PLAY); | |
156 } | |
157 | |
158 void | |
159 playback_stop(void) | |
160 { | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
161 if (ip_data.playing && get_current_input_playback()) { |
2313 | 162 |
163 if (playback_get_paused()) { | |
164 output_flush(get_written_time()); /* to avoid noise */ | |
165 playback_pause(); | |
166 } | |
167 | |
168 ip_data.playing = FALSE; | |
169 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
170 if (get_current_input_playback()->plugin->stop) |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
171 get_current_input_playback()->plugin->stop(get_current_input_playback()); |
2313 | 172 |
173 free_vis_data(); | |
174 ip_data.paused = FALSE; | |
175 | |
176 if (input_info_text) { | |
177 g_free(input_info_text); | |
178 input_info_text = NULL; | |
179 mainwin_set_info_text(); | |
180 } | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
181 |
2438
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
182 g_free(get_current_input_playback()->filename); |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
183 g_free(get_current_input_playback()); |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
184 set_current_input_playback(NULL); |
2313 | 185 } |
186 | |
187 ip_data.buffering = FALSE; | |
188 ip_data.playing = FALSE; | |
189 | |
190 g_return_if_fail(mainwin_playstatus != NULL); | |
191 playstatus_set_status_buffering(mainwin_playstatus, FALSE); | |
192 } | |
193 | |
194 static void | |
195 run_no_output_plugin_dialog(void) | |
196 { | |
197 const gchar *markup = | |
198 N_("<b><big>No output plugin selected.</big></b>\n" | |
199 "You have not selected an output plugin."); | |
200 | |
201 GtkWidget *dialog = | |
202 gtk_message_dialog_new_with_markup(GTK_WINDOW(mainwin), | |
203 GTK_DIALOG_DESTROY_WITH_PARENT, | |
204 GTK_MESSAGE_ERROR, | |
205 GTK_BUTTONS_OK, | |
206 _(markup)); | |
207 gtk_dialog_run(GTK_DIALOG(dialog)); | |
208 gtk_widget_destroy(dialog); | |
209 } | |
210 | |
211 gboolean | |
212 playback_play_file(PlaylistEntry *entry) | |
213 { | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
214 InputPlayback * playback; |
2313 | 215 g_return_val_if_fail(entry != NULL, FALSE); |
216 | |
217 if (!get_current_output_plugin()) { | |
218 run_no_output_plugin_dialog(); | |
219 mainwin_stop_pushed(); | |
220 return FALSE; | |
221 } | |
222 | |
223 if (cfg.random_skin_on_play) | |
2443
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2438
diff
changeset
|
224 skin_set_random_skin(); |
2313 | 225 |
226 /* | |
227 * This is slightly uglier than the original version, but should | |
228 * fix the "crash" issues as seen in 0.2 when dealing with this situation. | |
229 * - nenolod | |
230 */ | |
231 if (!entry->decoder && | |
2420 | 232 (((entry->decoder = input_check_file(entry->filename, FALSE)) == NULL) || |
2313 | 233 !input_is_enabled(entry->decoder->filename))) |
234 { | |
235 input_file_not_playable(entry->filename); | |
236 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
237 set_current_input_playback(NULL); |
2313 | 238 mainwin_set_info_text(); |
239 | |
240 return FALSE; | |
241 } | |
242 | |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
243 playback = g_new0(InputPlayback, 1); |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
244 |
2313 | 245 entry->decoder->output = &psuedo_output_plugin; |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
246 |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
247 playback->plugin = entry->decoder; |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
248 playback->output = &psuedo_output_plugin; |
2438
8750a62abed8
[svn] Provide flags in InputPlayback for common plugin flag needs, and provide a
iabervon
parents:
2436
diff
changeset
|
249 playback->filename = g_strdup(entry->filename); |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
250 |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
251 set_current_input_playback(playback); |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
252 |
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
253 entry->decoder->play_file(playback); |
2313 | 254 |
255 ip_data.playing = TRUE; | |
256 | |
257 return TRUE; | |
258 } | |
259 | |
260 gboolean | |
261 playback_get_playing(void) | |
262 { | |
263 return ip_data.playing; | |
264 } | |
265 | |
266 gboolean | |
267 playback_get_paused(void) | |
268 { | |
269 return ip_data.paused; | |
270 } | |
271 | |
272 void | |
273 playback_seek(gint time) | |
274 { | |
275 gboolean restore_pause = FALSE; | |
276 gint l=0, r=0; | |
277 | |
2420 | 278 g_return_if_fail(ip_data.playing); |
2436
f346d30bf5ab
[svn] Change the input plugin API to use a struct for the currently-playing file.
iabervon
parents:
2420
diff
changeset
|
279 g_return_if_fail(get_current_input_playback()); |
2313 | 280 |
281 /* FIXME WORKAROUND...that should work with all plugins | |
282 * mute the volume, start playback again, do the seek, then pause again | |
283 * -Patrick Sudowe | |
284 */ | |
2420 | 285 if (ip_data.paused) |
2313 | 286 { |
2420 | 287 restore_pause = TRUE; |
288 output_get_volume(&l, &r); | |
289 output_set_volume(0,0); | |
290 playback_pause(); | |
2313 | 291 } |
292 | |
293 free_vis_data(); | |
2454 | 294 get_current_input_playback()->plugin->seek(get_current_input_playback(), time); |
2313 | 295 |
2420 | 296 if (restore_pause) |
2313 | 297 { |
2420 | 298 playback_pause(); |
299 output_set_volume(l, r); | |
2313 | 300 } |
301 } | |
302 | |
303 void | |
304 playback_seek_relative(gint offset) | |
305 { | |
306 gint time = CLAMP(playback_get_time() / 1000 + offset, | |
307 0, playlist_get_current_length(playlist_get_active()) / 1000 - 1); | |
308 playback_seek(time); | |
309 } |