Mercurial > audlegacy
annotate audacious/playback.c @ 659:bb0d818a6ed6 trunk
[svn] add HEADERS for audacious/
author | nenolod |
---|---|
date | Wed, 22 Feb 2006 17:10:11 -0800 |
parents | 2b9dc862967b |
children | f52f596dc0d8 |
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 | |
8 * it under the terms of the GNU General Public Licensse as published by | |
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 | |
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
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" | |
43 #include "mainwin.h" | |
44 #include "equalizer.h" | |
45 #include "output.h" | |
46 #include "playlist.h" | |
385 | 47 #include "ui_playlist.h" |
283 | 48 #include "playlist_list.h" |
49 #include "skin.h" | |
50 #include "skinwin.h" | |
51 #include "urldecode.h" | |
52 #include "util.h" | |
53 | |
54 | |
55 #include "playback.h" | |
56 | |
57 | |
58 /* FIXME: yuck!! this shouldn't be here... */ | |
59 void | |
60 bmp_playback_set_random_skin(void) | |
61 { | |
62 SkinNode *node; | |
63 guint32 randval; | |
64 | |
65 /* Get a random value to select the skin to use */ | |
66 randval = g_random_int_range(0, g_list_length(skinlist)); | |
67 node = g_list_nth(skinlist, randval)->data; | |
68 bmp_active_skin_load(node->path); | |
69 } | |
70 | |
71 gint | |
72 bmp_playback_get_time(void) | |
73 { | |
74 if (!bmp_playback_get_playing()) | |
75 return -1; | |
76 | |
77 if (!get_current_input_plugin()) | |
78 return -1; | |
79 | |
80 return get_current_input_plugin()->get_time(); | |
81 } | |
82 | |
83 void | |
84 bmp_playback_initiate(void) | |
85 { | |
398
f908bcd87c3d
[svn] Generate cache content on demand if it was not previously there.
nenolod
parents:
385
diff
changeset
|
86 PlaylistEntry *entry; |
283 | 87 |
88 if (playlist_get_length() == 0) | |
89 return; | |
90 | |
91 if (bmp_playback_get_playing()) | |
92 bmp_playback_stop(); | |
93 | |
94 vis_clear_data(mainwin_vis); | |
95 svis_clear_data(mainwin_svis); | |
96 mainwin_disable_seekbar(); | |
97 | |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
98 entry = playlist_get_entry_to_play(); |
283 | 99 |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
100 if (!entry) |
283 | 101 return; |
102 | |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
103 if (!bmp_playback_play_file(entry)) |
283 | 104 return; |
105 | |
106 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
|
107 equalizerwin_load_auto_preset(entry->filename); |
283 | 108 input_set_eq(cfg.equalizer_active, cfg.equalizer_preamp, |
109 cfg.equalizer_bands); | |
110 output_set_eq(cfg.equalizer_active, cfg.equalizer_preamp, | |
111 cfg.equalizer_bands); | |
112 } | |
113 | |
114 playlist_check_pos_current(); | |
115 mainwin_set_info_text(); | |
116 } | |
117 | |
118 void | |
119 bmp_playback_pause(void) | |
120 { | |
121 if (!bmp_playback_get_playing()) | |
122 return; | |
123 | |
124 if (!get_current_input_plugin()) | |
125 return; | |
126 | |
127 ip_data.paused = !ip_data.paused; | |
128 | |
129 if (ip_data.paused) | |
130 playstatus_set_status(mainwin_playstatus, STATUS_PAUSE); | |
131 else | |
132 playstatus_set_status(mainwin_playstatus, STATUS_PLAY); | |
133 | |
134 if (get_current_input_plugin()->pause) | |
135 get_current_input_plugin()->pause(ip_data.paused); | |
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 | |
160 ip_data.playing = FALSE; | |
161 } | |
162 | |
163 void | |
164 bmp_playback_stop_reentrant(void) | |
165 { | |
166 if (ip_data.playing && get_current_input_plugin()) { | |
167 ip_data.playing = FALSE; | |
168 | |
169 if (bmp_playback_get_paused()) | |
170 bmp_playback_pause(); | |
171 | |
172 free_vis_data(); | |
173 ip_data.paused = FALSE; | |
174 | |
175 if (input_info_text) { | |
176 g_free(input_info_text); | |
177 input_info_text = NULL; | |
178 mainwin_set_info_text(); | |
179 } | |
180 } | |
181 | |
182 ip_data.playing = FALSE; | |
183 } | |
184 | |
185 static void | |
186 run_no_output_plugin_dialog(void) | |
187 { | |
188 const gchar *markup = | |
189 N_("<b><big>No output plugin selected.</big></b>\n" | |
190 "You have not selected an output plugin."); | |
191 | |
192 GtkWidget *dialog = | |
193 gtk_message_dialog_new_with_markup(GTK_WINDOW(mainwin), | |
194 GTK_DIALOG_DESTROY_WITH_PARENT, | |
195 GTK_MESSAGE_ERROR, | |
196 GTK_BUTTONS_OK, | |
197 _(markup)); | |
198 gtk_dialog_run(GTK_DIALOG(dialog)); | |
199 gtk_widget_destroy(dialog); | |
200 } | |
201 | |
202 gboolean | |
398
f908bcd87c3d
[svn] Generate cache content on demand if it was not previously there.
nenolod
parents:
385
diff
changeset
|
203 bmp_playback_play_file(PlaylistEntry *entry) |
283 | 204 { |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
205 g_return_val_if_fail(entry != NULL, FALSE); |
283 | 206 |
207 if (!get_current_output_plugin()) { | |
208 run_no_output_plugin_dialog(); | |
209 mainwin_stop_pushed(); | |
210 return FALSE; | |
211 } | |
212 | |
213 if (cfg.random_skin_on_play) | |
214 bmp_playback_set_random_skin(); | |
215 | |
398
f908bcd87c3d
[svn] Generate cache content on demand if it was not previously there.
nenolod
parents:
385
diff
changeset
|
216 if (!entry->decoder) |
f908bcd87c3d
[svn] Generate cache content on demand if it was not previously there.
nenolod
parents:
385
diff
changeset
|
217 entry->decoder = input_check_file(entry->filename, FALSE); |
f908bcd87c3d
[svn] Generate cache content on demand if it was not previously there.
nenolod
parents:
385
diff
changeset
|
218 |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
219 if (!entry->decoder || !input_is_enabled(entry->decoder->filename)) |
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
220 { |
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
221 input_file_not_playable(entry->filename); |
283 | 222 |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
223 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
|
224 mainwin_set_info_text(); |
283 | 225 |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
226 return FALSE; |
283 | 227 } |
228 | |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
229 set_current_input_plugin(entry->decoder); |
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
230 entry->decoder->output = get_current_output_plugin(); |
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
231 entry->decoder->play_file(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 ip_data.playing = TRUE; |
283 | 234 |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
283
diff
changeset
|
235 return TRUE; |
283 | 236 } |
237 | |
238 gboolean | |
239 bmp_playback_get_playing(void) | |
240 { | |
241 return ip_data.playing; | |
242 } | |
243 | |
244 gboolean | |
245 bmp_playback_get_paused(void) | |
246 { | |
247 return ip_data.paused; | |
248 } | |
249 | |
250 void | |
251 bmp_playback_seek(gint time) | |
252 { | |
253 gboolean restore_pause = FALSE; | |
254 gint l=0, r=0; | |
255 | |
256 if (!ip_data.playing) | |
257 return; | |
258 | |
259 if (!get_current_input_plugin()) | |
260 return; | |
261 | |
262 /* FIXME WORKAROUND...that should work with all plugins | |
263 * mute the volume, start playback again, do the seek, then pause again | |
264 * -Patrick Sudowe */ | |
265 if(ip_data.paused) | |
266 { | |
267 restore_pause = TRUE; | |
268 output_get_volume(&l, &r); | |
269 output_set_volume(0,0); | |
270 bmp_playback_pause(); | |
271 } | |
272 | |
273 free_vis_data(); | |
274 get_current_input_plugin()->seek(time); | |
275 | |
276 if(restore_pause) | |
277 { | |
278 bmp_playback_pause(); | |
279 output_set_volume(l, r); | |
280 } | |
281 } | |
282 | |
283 void | |
284 bmp_playback_seek_relative(gint offset) | |
285 { | |
286 gint time = CLAMP(bmp_playback_get_time() / 1000 + offset, | |
287 0, playlist_get_current_length() / 1000 - 1); | |
288 bmp_playback_seek(time); | |
289 } |