1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
|
/*
* XMMS Crossfade Plugin
* Copyright (C) 2000-2005 Peter Eisenlohr <peter@eisenlohr.org>
*
* based on the original OSS Output Plugin
* Copyright (C) 1998-2000 Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <string.h>
#include <gtk/gtk.h>
#include "monitor.h"
#include "configure.h"
#include "cfgutil.h"
#include "crossfade.h"
#ifdef HAVE_GTK_2_0
# include "interface-2.0.h"
# include "support-2.0.h"
#else
# include "interface.h"
# include "support.h"
#endif
extern pthread_mutex_t buffer_mutex;
GtkWidget *monitor_win;
GtkWidget *monitor_display_drawingarea;
GtkEntry *monitor_output_entry;
GtkProgress *monitor_output_progress;
static GtkLabel *monitor_position_label;
static GtkLabel *monitor_total_label;
static GtkLabel *monitor_left_label;
static GtkLabel *monitor_output_time_label;
static GtkLabel *monitor_output_time_sep;
static GtkLabel *monitor_written_time_label;
static gchar *default_position_str = NULL;
static gchar *default_total_str = NULL;
static gchar *default_left_str = NULL;
static gchar *default_output_time_str = NULL;
static gchar *default_written_time_str = NULL;
static gboolean monitor_active = FALSE;
static guint monitor_tag;
static gint monitor_output_max;
static gint monitor_closing;
#define RUNNING 0
#define CLOSING 1
#define CLOSED 2
#define SMOD(x,n) (((x)<0)?((n)-(x))%(n):((x)%(n)))
static void
draw_wrapped(GtkWidget * widget, gint pos, gint width, GdkGC * gc)
{
GdkDrawable *win = widget->window;
gint ww = widget->allocation.width;
gint wh = widget->allocation.height;
if (width <= 0)
return;
if (width < ww)
{
gint x = SMOD(pos, ww);
if ((x + width) >= ww)
{
gdk_draw_rectangle(win, gc, TRUE, x, 0, ww - x, wh);
gdk_draw_rectangle(win, gc, TRUE, 0, 0, width - (ww - x), wh);
}
else
gdk_draw_rectangle(win, gc, TRUE, x, 0, width, wh);
}
else
gdk_draw_rectangle(win, gc, TRUE, 0, 0, ww, wh);
}
gboolean
on_monitor_display_drawingarea_expose_event(GtkWidget * widget, GdkEventExpose * event, gpointer user_data)
{
if (buffer && buffer->size && output_opened)
{
gint ww = widget->allocation.width;
gint x1 = 0;
gint x2 = buffer->used;
gint x3 = buffer->used + buffer->mix;
gint x4 = buffer->size;
x1 = (gint64) (x1 + buffer->rd_index) * ww / buffer->size;
x2 = (gint64) (x2 + buffer->rd_index) * ww / buffer->size;
x3 = (gint64) (x3 + buffer->rd_index) * ww / buffer->size;
x4 = (gint64) (x4 + buffer->rd_index) * ww / buffer->size;
draw_wrapped(widget, x1, x2 - x1, widget->style->fg_gc[GTK_STATE_NORMAL]);
draw_wrapped(widget, x2, x3 - x2, widget->style->white_gc);
draw_wrapped(widget, x3, x4 - x3, widget->style->bg_gc[GTK_STATE_NORMAL]);
}
else
gdk_window_clear_area(widget->window, event->area.x, event->area.y, event->area.width, event->area.height);
return TRUE;
}
gboolean
on_monitor_win_delete_event(GtkWidget * widget, GdkEvent * event, gpointer user_data)
{
/* V0.1.1 20000618: removed, didn't make much sense since it wasn't saved */
/* if(config) config->enable_monitor = FALSE; */
if (default_position_str)
{
g_free(default_position_str);
default_position_str = NULL;
}
if (default_total_str)
{
g_free(default_total_str);
default_total_str = NULL;
}
if (default_left_str)
{
g_free(default_left_str);
default_left_str = NULL;
}
if (default_output_time_str)
{
g_free(default_output_time_str);
default_output_time_str = NULL;
}
if (default_written_time_str)
{
g_free(default_written_time_str);
default_written_time_str = NULL;
}
return (FALSE); /* FALSE: destroy window */
}
void
xfade_check_monitor_win()
{
gchar *str;
if (config->enable_monitor)
{
if (!monitor_win && !(monitor_win = create_monitor_win()))
{
DEBUG(("[crossfade] check_monitor_win: error creating window!\n"));
return;
}
/* automatically set config_win to NULL when window is destroyed */
gtk_signal_connect(GTK_OBJECT(monitor_win), "destroy", GTK_SIGNAL_FUNC(gtk_widget_destroyed), &monitor_win);
/* show window */
gtk_widget_hide(GTK_WIDGET(lookup_widget(monitor_win, "monitor_seekeof_button")));
gtk_widget_show(monitor_win);
/* get pointers to widgets (used by crossfade.c to update the monitor) */
monitor_display_drawingarea = lookup_widget(monitor_win, "monitor_display_drawingarea");
monitor_output_progress = GTK_PROGRESS(lookup_widget(monitor_win, "monitor_output_progress"));
monitor_position_label = GTK_LABEL (lookup_widget(monitor_win, "monpos_position_label"));
monitor_total_label = GTK_LABEL (lookup_widget(monitor_win, "monpos_total_label"));
monitor_left_label = GTK_LABEL (lookup_widget(monitor_win, "monpos_left_label"));
monitor_output_time_label = GTK_LABEL (lookup_widget(monitor_win, "monpos_output_time_label"));
monitor_output_time_sep = GTK_LABEL (lookup_widget(monitor_win, "monpos_output_time_separator_label"));
monitor_written_time_label = GTK_LABEL (lookup_widget(monitor_win, "monpos_written_time_label"));
/* get default strings (displayed when monitor is stopped) */
if (!default_position_str)
{
gtk_label_get(monitor_position_label, &str);
default_position_str = g_strdup(str);
}
if (!default_total_str)
{
gtk_label_get(monitor_total_label, &str);
default_total_str = g_strdup(str);
}
if (!default_left_str)
{
gtk_label_get(monitor_left_label, &str);
default_left_str = g_strdup(str);
}
if (!default_output_time_str)
{
gtk_label_get(monitor_output_time_label, &str);
default_output_time_str = g_strdup(str);
}
if (!default_written_time_str)
{
gtk_label_get(monitor_written_time_label, &str);
default_written_time_str = g_strdup(str);
}
/* force gtk_progress_configure */
monitor_output_max = 0;
}
else if (monitor_win)
gtk_widget_destroy(monitor_win);
}
void
label_set_text(GtkLabel * label, gchar * text)
{
gchar *old_text;
gtk_label_get(label, &old_text);
if (strcmp(old_text, text) == 0)
return;
gtk_label_set_text(label, text);
}
gint
xfade_update_monitor(gpointer userdata)
{
/* HACK: (see xfade_stop_monitor() below) */
if (monitor_closing == CLOSED)
return TRUE;
if (monitor_closing == CLOSING)
monitor_closing = CLOSED;
if (!monitor_win)
return TRUE;
/* lock buffer (only if we need to) */
if (monitor_closing != CLOSED)
pthread_mutex_lock(&buffer_mutex);
if (monitor_win)
{
gint output_time = the_op->output_time();
gint written_time = the_op->written_time();
gint output_used = written_time - output_time;
/*** Mixing Buffer ***/
if (monitor_display_drawingarea)
{
GdkRectangle update_rect;
update_rect.x = 0;
update_rect.y = 0;
update_rect.width = monitor_display_drawingarea->allocation.width;
update_rect.height = monitor_display_drawingarea->allocation.height;
if (monitor_closing == CLOSED)
gdk_window_clear_area(monitor_display_drawingarea->window,
update_rect.x, update_rect.y, update_rect.width, update_rect.height);
else
gtk_widget_draw(monitor_display_drawingarea, &update_rect);
}
/*** Output Buffer ***/
if (monitor_output_progress)
{
if (monitor_closing == CLOSED)
{
gtk_progress_configure(monitor_output_progress, 0, 0, 0);
#ifdef HAVE_GTK_2_0
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(monitor_output_progress), " ");
#endif
monitor_output_max = 0;
}
else
{
if (output_opened && the_op->buffer_playing())
{
if (output_used < 0)
output_used = 0;
if (output_used > monitor_output_max)
{
monitor_output_max = output_used;
gtk_progress_configure(monitor_output_progress,
output_used, 0, monitor_output_max);
}
else
gtk_progress_set_value(monitor_output_progress, output_used);
#ifdef HAVE_GTK_2_0
{
gchar temp[32];
g_snprintf(temp, sizeof(temp), "%d", output_used);
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(monitor_output_progress), temp);
}
#endif
}
else
{
gtk_progress_configure(monitor_output_progress, 0, 0, 0);
#ifdef HAVE_GTK_2_0
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(monitor_output_progress), " ");
#endif
monitor_output_max = 0;
}
}
}
/*** Position ***/
if (monitor_position_label && monitor_total_label && monitor_left_label)
{
if (!get_input_playing() || (monitor_closing == CLOSED)) /* XMMS */
{
gtk_label_set_text(monitor_position_label, default_position_str);
gtk_label_set_text(monitor_total_label, default_total_str);
gtk_label_set_text(monitor_left_label, default_left_str);
}
else
{
gchar buffer[32];
gint position = output_time - output_offset;
gint total = playlist_get_current_length(); /* XMMS */
gint left = total - position;
/* position */
g_snprintf(buffer, sizeof(buffer),
position < 0 ? "-%d:%02d.%01d" : "%d:%02d.%01d",
ABS((position / 60000)), ABS((position / 1000) % 60), ABS((position / 100) % 10));
gtk_label_set_text(monitor_position_label, buffer);
/* total */
if (total > 0)
{
g_snprintf(buffer, sizeof(buffer), "%d:%02d", total / 60000, (total / 1000) % 60);
gtk_label_set_text(monitor_total_label, buffer);
}
else
label_set_text(monitor_total_label, default_total_str);
/* left */
if (total > 0)
{
g_snprintf(buffer, sizeof(buffer), "%d:%02d", left / 60000, (left / 1000) % 60);
gtk_label_set_text(monitor_left_label, buffer);
}
else
label_set_text(monitor_left_label, default_left_str);
}
}
/* Output Plugin position */
if (monitor_closing == CLOSED)
{
gtk_widget_hide(GTK_WIDGET(monitor_output_time_label));
gtk_widget_hide(GTK_WIDGET(monitor_output_time_sep));
gtk_label_set_text(monitor_written_time_label, default_written_time_str);
}
else
{
gchar buffer[32];
/* check for output plugin bug -- diff should always be 0 */
gint diff = written_time - (gint) (output_streampos * 1000 / OUTPUT_BPS);
if (diff)
{
gtk_widget_show(GTK_WIDGET(monitor_output_time_label));
gtk_widget_show(GTK_WIDGET(monitor_output_time_sep));
g_snprintf(buffer, sizeof(buffer),
output_time <
0 ? "-%d:%02d.%03d" : "%d:%02d.%03d",
ABS((diff / 60000)), ABS((diff / 1000) % 60), ABS((diff) % 1000));
gtk_label_set_text(monitor_output_time_label, buffer);
}
else
{
gtk_widget_hide(GTK_WIDGET(monitor_output_time_label));
gtk_widget_hide(GTK_WIDGET(monitor_output_time_sep));
}
/* written_time */
g_snprintf(buffer, sizeof(buffer),
written_time < 0 ? "-%d:%02d:%02d.%01d" : "%d:%02d:%02d.%01d",
ABS((written_time / 3600000)),
ABS((written_time / 60000) % 60),
ABS((written_time / 1000) % 60), ABS((written_time / 100) % 10));
gtk_label_set_text(monitor_written_time_label, buffer);
}
}
/* unlock buffer */
if (monitor_closing != CLOSED)
pthread_mutex_unlock(&buffer_mutex);
return TRUE; /* continue calling this function */
}
void
xfade_start_monitor()
{
if (monitor_active)
return;
monitor_output_max = 0;
monitor_closing = RUNNING;
monitor_active = TRUE;
monitor_tag = gtk_timeout_add(UPDATE_INTERVAL, xfade_update_monitor, NULL);
}
void
xfade_stop_monitor()
{
gint max_wait = UPDATE_INTERVAL / 10 + 1 + 1; /* round up / add safety */
if (!monitor_active)
return;
/* HACK, ugly HACK: force a final call of xfade_update_monitor */
monitor_closing = CLOSING;
while ((monitor_closing == CLOSING) && (max_wait-- > 0))
xmms_usleep(10000);
if (max_wait <= 0)
DEBUG(("[crossfade] stop_monitor: timeout!\n"));
/* stop calling xfade_update_monitor() */
gtk_timeout_remove(monitor_tag);
monitor_active = FALSE;
}
#if defined(HAVE_INPUT_SEEK)
void input_seek(int time); /* XMMS */
void
on_monitor_seekeof_button_clicked(GtkButton *button, gpointer user_data)
{
gint total = playlist_get_current_length(); /* XMMS */
gint offset = xfade_cfg_offset(&config->fc[FADE_CONFIG_XFADE])
- config->songchange_timeout;
gint position = total + offset - 2500;
if (position < 0)
return;
DEBUG(("[crossfade] monitor_seek_eof: total=%d offset=%d position=%d\n", total, offset, position))
input_seek(position/1000); /* XMMS */
}
#else
void on_monitor_seekeof_button_clicked(GtkButton *button, gpointer user_data)
{ }
#endif
|