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 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
|
/* Iris - visualization plugin for XMMS
* Copyright (C) 2000-2002 Cdric DELFOSSE (cdelfosse@free.fr)
*
* 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.
*/
#include "config.h"
#include <X11/Xlib.h>
#include <X11/keysym.h>
#include <gtk/gtk.h>
#include <math.h>
#include <GL/gl.h>
#include <GL/glx.h>
#include <X11/extensions/xf86vmode.h>
#include <pthread.h>
#ifdef HAVE_SCHED_SETSCHEDULER
#include <sched.h>
#endif
#include <stdlib.h>
#include <sys/time.h>
#include <unistd.h>
#include <xmms/plugin.h>
#include <xmms/util.h>
#include <xmms/xmmsctrl.h>
#include <xmms/configfile.h>
#include "iris.h"
#define BEAT_MAX 100
GLfloat y_angle = 45.0, y_speed = 0.5;
GLfloat x_angle = 20.0, x_speed = 0.0;
GLfloat z_angle = 0.0, z_speed = 0.0;
static GLfloat scale;
static GLfloat x_angle_wanted;
GLWindow GLWin;
/* attributes for a single buffered visual in RGBA format with at least
* 4 bits per color and a 16 bit depth buffer */
static int attrListSgl[] = { GLX_RGBA, GLX_RED_SIZE, 4,
GLX_GREEN_SIZE, 4,
GLX_BLUE_SIZE, 4,
GLX_DEPTH_SIZE, 16,
None
};
/* attributes for a double buffered visual in RGBA format with at least
* 4 bits per color and a 16 bit depth buffer */
static int attrListDbl[] = { GLX_RGBA, GLX_DOUBLEBUFFER,
GLX_RED_SIZE, 4,
GLX_GREEN_SIZE, 4,
GLX_BLUE_SIZE, 4,
GLX_DEPTH_SIZE, 16,
None
};
static gboolean going = FALSE;
static gboolean grabbed_pointer = FALSE, firsttime = TRUE;
static Atom wmDelete;
static pthread_t draw_thread;
datas_t datas;
static int num_bands = NUM_BANDS;
static int beat = 0;
unsigned int transition_frames = 0;
unsigned int max_transition_frames = 0;
static void iris_init (void);
static void iris_cleanup (void);
static void iris_about (void);
static void iris_playback_start (void);
static void iris_playback_stop (void);
static void iris_render_freq (gint16 data[][256]);
static float dps = 0;
gint beat_before = -1;
extern iris_config newconfig;
VisPlugin iris_vp = {
NULL,
NULL,
0,
NULL, /* Description */
0,
1,
iris_init, /* init */
iris_cleanup, /* cleanup */
iris_about, /* about */
iris_configure, /* configure */
NULL, /* disable_plugin */
iris_playback_start, /* playback_start */
iris_playback_stop, /* playback_stop */
NULL, /* render_pcm */
iris_render_freq /* render_freq */
};
void
about_close_clicked (GtkWidget * w, GtkWidget ** window)
{
gtk_widget_destroy (*window);
*window = NULL;
}
void
about_closed (GtkWidget * w, GdkEvent * e, GtkWidget ** window)
{
about_close_clicked (w, window);
}
static void
iris_about (void)
{
static GtkWidget *window_about = NULL;
GtkWidget *vbox, *button, *close, *label;
if (window_about)
return;
window_about = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_window_set_title (GTK_WINDOW (window_about), "About IRIS plugin");
gtk_window_set_policy (GTK_WINDOW (window_about), FALSE, FALSE, FALSE);
gtk_window_set_position (GTK_WINDOW (window_about), GTK_WIN_POS_MOUSE);
vbox = gtk_vbox_new (FALSE, 4);
gtk_container_add (GTK_CONTAINER (window_about), vbox);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 8);
gtk_widget_show (vbox);
label = gtk_label_new ("\n\
Iris XMMS Plugin.\n\
Copyright (C) 2001-2003, Cdric Delfosse.\n\
\n\
Email: <cdelfosse@free.fr> \n\
Homepage: <http://cdelfosse.free.fr/xmms-iris/>\n\
Development: <http://savannah.gnu.org/projects/iris/>\n\
\n\
Authors:\n\
Cdric Delfosse\n\
Marinus Schraal\n\
Ron Lockwood-Childs\n\
\n\
This program is free software; you can redistribute it and/or modify\n\
it under the terms of the GNU General Public License as published by\n\
the Free Software Foundation; either version 2 of the License, or\n\
(at your option) any later version.\n\
\n\
This program is distributed in the hope that it will be useful,\n\
but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\
GNU General Public License for more details.\n\
\n\
You should have received a copy of the GNU General Public License\n\
along with this program; if not, write to the Free Software\n\
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307\n\
USA");
gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 8);
gtk_widget_show (label);
button = gtk_hbutton_box_new ();
gtk_box_pack_end (GTK_BOX (vbox), button, FALSE, FALSE, 8);
gtk_widget_show (button);
close = gtk_button_new_with_label ("Close");
GTK_WIDGET_SET_FLAGS (close, GTK_CAN_DEFAULT);
gtk_window_set_default (GTK_WINDOW (window_about), close);
gtk_hbutton_box_set_layout_default (GTK_BUTTONBOX_END);
gtk_box_pack_end (GTK_BOX (button), close, FALSE, FALSE, 8);
gtk_widget_show (close);
gtk_signal_connect (GTK_OBJECT (close), "clicked",
GTK_SIGNAL_FUNC (about_close_clicked), &window_about);
gtk_signal_connect (GTK_OBJECT (window_about), "delete-event",
GTK_SIGNAL_FUNC (about_closed), &window_about);
gtk_widget_show (window_about);
}
/* Creates an empty cursor icon for when hovering over our window content */
void
hide_cursor ()
{
Cursor no_ptr;
Pixmap bm_no;
Colormap cmap;
XColor black, dummy;
static unsigned char bm_no_data[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
cmap = DefaultColormap (GLWin.dpy, DefaultScreen (GLWin.dpy));
XAllocNamedColor (GLWin.dpy, cmap, "black", &black, &dummy);
bm_no = XCreateBitmapFromData (GLWin.dpy, GLWin.window, bm_no_data, 8, 8);
no_ptr =
XCreatePixmapCursor (GLWin.dpy, bm_no, bm_no, &black, &black, 0, 0);
XDefineCursor (GLWin.dpy, GLWin.window, no_ptr);
}
/* this function creates our window and sets it up properly */
static Window
create_window (char *title)
{
XVisualInfo *vi;
int i;
/* get a connection */
GLWin.dpy = XOpenDisplay (0);
if (GLWin.dpy == NULL)
g_log (NULL, G_LOG_LEVEL_CRITICAL,
__FILE__ ": XOpenDisplay returns NULL");
GLWin.screen = DefaultScreen (GLWin.dpy);
/* get an appropriate visual */
vi = glXChooseVisual (GLWin.dpy, GLWin.screen, attrListDbl);
if (vi == NULL)
{
vi = glXChooseVisual (GLWin.dpy, GLWin.screen, attrListSgl);
GLWin.DoubleBuffered = 0;
}
else
GLWin.DoubleBuffered = 1;
if (vi == NULL)
g_log (NULL, G_LOG_LEVEL_CRITICAL,
__FILE__ ": glXChooseVisual returns NULL");
glXQueryVersion (GLWin.dpy, &GLWin.glxMajorVersion, &GLWin.glxMinorVersion);
/* create a GLX context */
GLWin.ctx = glXCreateContext (GLWin.dpy, vi, 0, GL_TRUE);
if (GLWin.ctx == NULL)
g_log (NULL, G_LOG_LEVEL_CRITICAL,
__FILE__ ": glXCreateContext can\'t create a rendering context");
/* create a color map */
GLWin.attr.colormap =
XCreateColormap (GLWin.dpy, RootWindow (GLWin.dpy, vi->screen),
vi->visual, AllocNone);
GLWin.attr.border_pixel = 0;
if ((config.fullscreen && firsttime) || GLWin.fs)
{
int bestMode = 0;
GLWin.fs = True;
GLWin.fs_width = config.fs_width;
GLWin.fs_height = config.fs_height;
/* look for mode with requested resolution */
for (i = 0; i < GLWin.modeNum; i++)
{
if ((GLWin.modes[i]->hdisplay == GLWin.fs_width)
&& (GLWin.modes[i]->vdisplay == GLWin.fs_height))
{
bestMode = i;
}
}
XF86VidModeSwitchToMode (GLWin.dpy, GLWin.screen,
GLWin.modes[bestMode]);
XF86VidModeSetViewPort (GLWin.dpy, GLWin.screen, 0, 0);
GLWin.fs_width = GLWin.modes[bestMode]->hdisplay;
GLWin.fs_height = GLWin.modes[bestMode]->vdisplay;
/* create a fullscreen window */
GLWin.attr.override_redirect = True;
GLWin.attr.event_mask =
ExposureMask | KeyPressMask | ButtonPressMask | StructureNotifyMask;
GLWin.window =
XCreateWindow (GLWin.dpy,
RootWindow (GLWin.dpy, vi->screen), 0,
0, GLWin.fs_width, GLWin.fs_height, 0, vi->depth,
InputOutput, vi->visual,
CWBorderPixel | CWColormap |
CWEventMask | CWOverrideRedirect, &GLWin.attr);
XWarpPointer (GLWin.dpy, None, GLWin.window, 0, 0, 0, 0, 0, 0);
XMapRaised (GLWin.dpy, GLWin.window);
XGrabKeyboard (GLWin.dpy, GLWin.window, True, GrabModeAsync,
GrabModeAsync, CurrentTime);
XGrabPointer (GLWin.dpy, GLWin.window, True, ButtonPressMask,
GrabModeAsync, GrabModeAsync, GLWin.window,
FALSE, CurrentTime);
}
else
{
XClassHint xclasshint={"xmms","visplugin"};
GLWin.window_width = config.window_width;
GLWin.window_height = config.window_height;
/* needed if those aren't set yet - ideally need a way to get the default values for these */
if (config.window_height == 0 || config.window_width == 0)
{
config.window_width = 640;
config.window_height = 480;
}
/* create a window in window mode */
GLWin.attr.event_mask =
ExposureMask | KeyPressMask | ButtonPressMask | StructureNotifyMask;
GLWin.window =
XCreateWindow (GLWin.dpy,
RootWindow (GLWin.dpy, vi->screen), 0,
0, GLWin.window_width, GLWin.window_height, 0,
vi->depth, InputOutput, vi->visual,
CWBorderPixel | CWColormap | CWEventMask, &GLWin.attr);
XmbSetWMProperties(GLWin.dpy, GLWin.window, "iris","iris", NULL, 0, NULL, NULL, &xclasshint);
/* only set window title and handle wm_delete_events if in windowed mode */
wmDelete = XInternAtom (GLWin.dpy, "WM_DELETE_WINDOW", True);
XSetWMProtocols (GLWin.dpy, GLWin.window, &wmDelete, 1);
XSetStandardProperties (GLWin.dpy, GLWin.window, title,
title, None, NULL, 0, NULL);
XMapRaised (GLWin.dpy, GLWin.window);
}
/* connect the glx-context to the window */
if (!glXMakeCurrent (GLWin.dpy, GLWin.window, GLWin.ctx))
g_log (NULL, G_LOG_LEVEL_CRITICAL,
__FILE__ ": glXMakeCurrent returns an error");
if (glXIsDirect (GLWin.dpy, GLWin.ctx))
GLWin.DRI = 1;
hide_cursor ();
XFree (vi);
firsttime = FALSE;
return GLWin.window;
}
VisPlugin *
get_vplugin_info (void)
{
iris_vp.description = g_strdup_printf ("iris 3D analyzer %s", VERSION);
return &iris_vp;
}
static int
detect_beat (gint32 loudness)
{
static gint32 aged; /* smoothed out oudness */
static gint32 lowest; /* quietest point in current beat */
static int elapsed; /* frames since last beat */
static int isquiet; /* was previous frame quiet */
int detected_beat;
/* Incorporate the current loudness into history */
aged = (aged * 7 + loudness) >> 3;
elapsed++;
/* If silent, then clobber the beat */
if (aged < 2000 || elapsed > BEAT_MAX)
{
elapsed = 0;
lowest = aged;
}
else if (aged < lowest)
lowest = aged;
/* Beats are detected by looking for a sudden loudness after a lull.
* They are also limited to occur no more than once every 15 frames,
* so the beat flashes don't get too annoying.
*/
detected_beat = (loudness * 4 > aged * 3 && aged * 2 > lowest * 3
&& elapsed > 15);
if (detected_beat)
lowest = aged, elapsed = 0;
/* Silence is computed from the aged loudness. The quietref value is
* set to TRUE only at the start of silence, not throughout the silent
* period. Also, there is some hysteresis so that silence followed
* by a slight noise and more silence won't count as two silent
* periods -- that sort of thing happens during many fade edits, so
* we have to account for it.
*/
if (aged < (isquiet ? 1500 : 500))
/* Quiet now -- is this the start of quiet? */
isquiet = TRUE;
else
isquiet = FALSE;
/* return the result */
return detected_beat;
}
/* limit_rotation_speed keep rotation speed to at least dps_config
by second */
static void
limit_rotation_speed (gboolean init)
{
static struct timeval tv_past;
struct timezone tz;
struct timeval tv_now;
float dps_config = 15;
if (!init)
{
long t;
gettimeofday (&tv_now, &tz);
t =
(tv_now.tv_sec - tv_past.tv_sec) * 10000000 + (tv_now.tv_usec -
tv_past.tv_usec);
dps = y_speed * ((float) 1000000 / (float) t);
if (dps >= (float) dps_config)
y_speed -= 0.02;
else
y_speed += 0.02;
memcpy (&tv_past, &tv_now, sizeof (struct timeval));
}
else
gettimeofday (&tv_past, &tz);
}
/* limit_fps tries to keep the number of
frame per seconds to config.fps */
static void
limit_fps (gboolean init)
{
static float fps = 0;
static struct timeval tv_past;
struct timezone tz;
struct timeval tv_now;
static int usec = 0;
if (init)
gettimeofday (&tv_past, &tz);
else
{
long t;
gettimeofday (&tv_now, &tz);
t =
(tv_now.tv_sec - tv_past.tv_sec) * 10000000 + (tv_now.tv_usec -
tv_past.tv_usec);
fps = (float) 1000000 / (float) t;
if (fps >= (float) config.fps)
usec += 100;
else
{
if (usec > 0)
usec -= 100;
}
xmms_usleep (usec);
memcpy (&tv_past, &tv_now, sizeof (struct timeval));
}
}
static void
init_general_draw_mode (int num)
{
int transparency;
int wireframe;
if (theme[num].config->global->transparency != -1)
transparency = theme[num].config->global->transparency;
else
transparency = (int) (2.0 * rand () / (RAND_MAX + 1.0));
if (theme[num].config->global->wireframe != -1)
wireframe = theme[num].config->global->wireframe;
else
wireframe = (int) (2.0 * rand () / (RAND_MAX + 1.0));
if (transparency)
{
if (!glIsEnabled (GL_BLEND))
{
glBlendFunc (GL_SRC_ALPHA, GL_ONE);
glEnable (GL_BLEND);
}
glDisable (GL_DEPTH_TEST);
}
else
{
if (glIsEnabled (GL_BLEND))
{
glDisable (GL_BLEND);
}
glEnable (GL_DEPTH_TEST);
}
if (wireframe)
glPolygonMode (GL_FRONT_AND_BACK, GL_LINE);
else
glPolygonMode (GL_FRONT_AND_BACK, GL_FILL);
if (glIsEnabled(GL_TEXTURE_2D))
glDisable(GL_TEXTURE_2D);
}
static int
compute_theme ()
{
gfloat f_rand, f;
gint i;
for (i = 0, f_rand = 0.0; i < THEME_NUMBER; i++)
f_rand += theme[i].config->global->priority;
f_rand = f_rand * rand () / (RAND_MAX + 1.0);
i = 0;
f = 0;
while (i < THEME_NUMBER)
{
gfloat f_theme;
f_theme = theme[i].config->global->priority;
if (f_theme)
{
f += f_theme;
if (f_rand < f)
break;
}
i++;
}
if (!f)
return (int) ((gfloat) THEME_NUMBER * rand () / (RAND_MAX + 1.0));
else
return i;
}
static int
choose_theme (gboolean init)
{
static long sec_btw_theme = 10 * 10000000;
static struct timeval tv_past;
struct timezone tz;
struct timeval tv_now;
static int th, th_tmp;
if (!init)
{
long t;
gettimeofday (&tv_now, &tz);
t =
(tv_now.tv_sec - tv_past.tv_sec) * 10000000 + (tv_now.tv_usec -
tv_past.tv_usec);
if ((t > sec_btw_theme) || (beat && config.change_theme_on_beat))
{
/* we come here if:
- time for the theme is expired
- a beat is detected and the change_theme_on_beat option is on
*/
if (config.transition)
{
if (transition_frames == 0)
{
th_tmp = compute_theme ();
if (th != th_tmp)
{
transition_frames =
(unsigned int) config.fps * config.trans_duration /
10;
max_transition_frames = transition_frames;
memcpy (&tv_past, &tv_now, sizeof (struct timeval));
init_theme_transition (transition_frames,
max_transition_frames);
}
}
}
else
{
th = compute_theme ();
init_general_draw_mode (th);
if (theme[th].init_draw_mode != NULL)
theme[th].init_draw_mode ();
memcpy (&tv_past, &tv_now, sizeof (struct timeval));
x_angle_wanted = theme[th].get_x_angle ();
x_speed = copysign (0.08, x_angle_wanted - x_angle);
}
}
/* change theme after half of the set frames have passed */
else if ((((int) max_transition_frames / 2) == transition_frames)
&& config.transition && (transition_frames != 0))
{
th = th_tmp;
init_general_draw_mode (th);
if (theme[th].init_draw_mode != NULL)
theme[th].init_draw_mode ();
x_angle_wanted = theme[th].get_x_angle ();
x_speed = copysign (0.08, x_angle_wanted - x_angle);
}
}
else
{
/* the first time choose_theme is called,
tv_past is initialized */
gettimeofday (&tv_past, &tz);
th = compute_theme ();
init_general_draw_mode (th);
if (theme[th].init_draw_mode != NULL)
theme[th].init_draw_mode ();
}
return (th);
}
static void
draw_iris (void)
{
int th;
limit_fps (FALSE);
th = choose_theme (FALSE);
if ((config.color_beat) && (beat_before > 0))
glClearColor (config.color_flash_red, config.color_flash_green,
config.color_flash_blue, 1);
else
glClearColor (config.bgc_red, config.bgc_green, config.bgc_blue, 1);
glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glPushMatrix ();
glTranslatef (0.0, -0.5, -7.0);
glRotatef (x_angle, 1.0, 0.0, 0.0);
glRotatef (y_angle, 0.0, 1.0, 0.0);
glRotatef (z_angle, 0.0, 0.0, 1.0);
if (transition_frames > 0 && config.transition)
{
theme_transition ();
transition_frames--;
}
theme[th].draw_one_frame (beat);
glEnd ();
glPopMatrix ();
glXSwapBuffers (GLWin.dpy, GLWin.window);
}
static gint
disable_func (gpointer data)
{
iris_vp.disable_plugin (&iris_vp);
return FALSE;
}
GLvoid
init_gl (GLvoid)
{
glMatrixMode (GL_PROJECTION);
glLoadIdentity ();
glFrustum (-1, 1, -1.5, 1, 1.5, 12);
glMatrixMode (GL_MODELVIEW);
glLoadIdentity ();
}
GLvoid
kill_gl_window (GLvoid)
{
if (GLWin.ctx)
{
glXMakeCurrent (GLWin.dpy, None, NULL);
glXDestroyContext (GLWin.dpy, GLWin.ctx);
GLWin.ctx = NULL;
}
/* switch back to original desktop resolution if we were in fs */
if (GLWin.fs)
{
XF86VidModeSwitchToMode (GLWin.dpy, GLWin.screen, &GLWin.deskMode);
XF86VidModeSetViewPort (GLWin.dpy, GLWin.screen, 0, 0);
}
}
void *
draw_thread_func (void *arg)
{
Bool configured = FALSE;
g_log (NULL, G_LOG_LEVEL_DEBUG, __FILE__ ": draw_thread_func: Starting.");
if ((GLWin.window = create_window ("Iris")) == 0)
{
g_log (NULL, G_LOG_LEVEL_CRITICAL,
__FILE__ ": unable to create window");
pthread_exit (NULL);
}
init_gl ();
choose_theme (TRUE);
#ifdef HAVE_SCHED_SETSCHEDULER
if (xmms_check_realtime_priority ())
{
struct sched_param sparam;
sparam.sched_priority = sched_get_priority_max (SCHED_OTHER);
pthread_setschedparam (pthread_self (), SCHED_OTHER, &sparam);
}
#endif
while (going) /* plugin enabled */
{
while (XPending (GLWin.dpy))
{
XEvent event;
KeySym keysym;
char buf[16];
XNextEvent (GLWin.dpy, &event);
switch (event.type)
{
case Expose:
if (event.xexpose.count != 0)
break;
configured = TRUE;
break;
case ConfigureNotify:
glViewport (0, 0, event.xconfigure.width,
event.xconfigure.height);
configured = TRUE;
break;
case KeyPress:
XLookupString (&event.xkey, buf, 16, &keysym, NULL);
switch (keysym)
{
case XK_Escape:
/* Ugly hack to get the disable_plugin call in the main thread. */
GDK_THREADS_ENTER ();
gtk_idle_add (disable_func, NULL);
GDK_THREADS_LEAVE ();
break;
case XK_z:
xmms_remote_playlist_prev (iris_vp.xmms_session);
break;
case XK_x:
xmms_remote_play (iris_vp.xmms_session);
break;
case XK_c:
xmms_remote_pause (iris_vp.xmms_session);
break;
case XK_v:
xmms_remote_stop (iris_vp.xmms_session);
break;
case XK_b:
xmms_remote_playlist_next (iris_vp.xmms_session);
break;
case XK_Left:
y_speed -= 0.1;
if (y_speed < -3.0)
y_speed = -3.0;
break;
case XK_Right:
y_speed += 0.1;
if (y_speed > 3.0)
y_speed = 3.0;
break;
case XK_Return:
x_speed = 0.0;
y_speed = 0.3;
z_speed = 0.0;
x_angle = 70.0;
y_angle = 45.0;
z_angle = 0.0;
break;
case XK_Tab:
iris_configure ();
break;
case XK_f:
//iris_save_window_attributes ();
kill_gl_window ();
XCloseDisplay (GLWin.dpy);
GLWin.fs = !GLWin.fs;
create_window ("Iris");
init_gl ();
choose_theme (TRUE);
break;
}
break;
case ClientMessage:
if ((Atom) event.xclient.data.l[0] == wmDelete)
{
GDK_THREADS_ENTER ();
gtk_idle_add (disable_func, NULL);
GDK_THREADS_LEAVE ();
}
break;
}
}
if (configured)
{
limit_rotation_speed (FALSE);
if ((x_angle > x_angle_wanted) && (x_speed > 0))
x_angle = x_angle_wanted;
else if ((x_angle < x_angle_wanted) && (x_speed < 0))
x_angle = x_angle_wanted;
x_angle += x_speed;
if (x_angle > 85.0)
x_angle = 85.0;
else if (x_angle < 0.0)
x_angle = 0.0;
y_angle += y_speed;
if (y_angle >= 360.0)
y_angle -= 360.0;
z_angle += z_speed;
if (z_angle >= 360.0)
z_angle -= 360.0;
draw_iris ();
}
}
g_log (NULL, G_LOG_LEVEL_DEBUG, __FILE__ ": draw_thread_func: Exiting.");
pthread_exit (NULL);
}
static void
start_display (void)
{
scale = 1.0 / log (256.0);
x_speed = 0.0;
y_speed = 0.3;
z_speed = 0.0;
x_angle = 45.0;
y_angle = 45.0;
z_angle = 0.0;
going = TRUE;
limit_fps (TRUE);
limit_rotation_speed (TRUE);
if (pthread_create (&draw_thread, NULL, draw_thread_func, NULL))
g_log (NULL, G_LOG_LEVEL_CRITICAL, __FILE__ ": pthread_create: Can't create drawing thread.");
}
static void
stop_display (void)
{
if (going)
{
going = FALSE;
pthread_join (draw_thread, NULL);
}
kill_gl_window ();
if (GLWin.window)
{
if (grabbed_pointer)
{
XUngrabPointer (GLWin.dpy, CurrentTime);
grabbed_pointer = FALSE;
}
XDestroyWindow (GLWin.dpy, GLWin.window);
GLWin.window = 0;
}
XCloseDisplay (GLWin.dpy);
}
static void
iris_init (void)
{
int i;
iris_first_init ();
datas.loudness = 0;
/* if the config window is open, we don't want to trash the config the user has done */
if (!config_window)
iris_config_read ();
for (i = 0; i < THEME_NUMBER; i++)
if (theme[i].init != NULL)
theme[i].init ();
srand (666);
start_display ();
}
static void
iris_cleanup (void)
{
int i;
// iris_save_window_attributes ();
stop_display ();
for (i = 0; i < THEME_NUMBER; i++)
if (theme[i].cleanup != NULL)
theme[i].cleanup ();
}
static void
iris_playback_start (void)
{
}
static void
iris_playback_stop (void)
{
}
static void
iris_render_freq (gint16 data[2][256])
{
GLfloat val;
static int angle = 0;
int i;
for (i = 0; i < num_bands; i++)
{
int y, c;
gint xscale[] =
{ 0, 1, 2, 3, 5, 7, 10, 14, 20, 28, 40, 54, 74, 101, 137, 156,
255
};
gint xscale8[] = { 0, 2, 5, 10, 20, 40, 74, 137, 255 };
if (num_bands == 16)
for (c = xscale[i], y = 0; c < xscale[i + 1]; c++)
{
if (data[0][c] > y)
y = data[0][c];
}
else
for (c = xscale8[i], y = 0; c < xscale8[i + 1]; c++)
{
if (data[0][c] > y)
y = data[0][c];
}
datas.loudness +=
(y / (xscale[i + 1] - xscale[i] + 1)) * (abs (i - NUM_BANDS / 2) +
NUM_BANDS / 2) * (4 + i);
y >>= 7;
if (y > 0)
val = (log (y) * scale);
else
val = 0;
datas.data360[angle][i] = val;
datas.data1[i] = val;
}
datas.loudness /= (NUM_BANDS * 4);
beat = detect_beat (datas.loudness);
if (beat)
{
beat_before = config.flash_speed;
if (dps <= 90.0)
y_speed += 0.7;
if (config.bgc_random)
{
config.bgc_red = 1.0 * rand () / (RAND_MAX + 1.0);
config.bgc_green = 1.0 * rand () / (RAND_MAX + 1.0);
config.bgc_blue = 1.0 * rand () / (RAND_MAX + 1.0);
}
if (config.color12_random)
{
config.color1_red = 1.0 * rand () / (RAND_MAX + 1.0);
config.color1_green = 1.0 * rand () / (RAND_MAX + 1.0);
config.color1_blue = 1.0 * rand () / (RAND_MAX + 1.0);
config.color2_red = 1.0 * rand () / (RAND_MAX + 1.0);
config.color2_green = 1.0 * rand () / (RAND_MAX + 1.0);
config.color2_blue = 1.0 * rand () / (RAND_MAX + 1.0);
}
if (config.color_random)
{
config.color_red = 1.0 * rand () / (RAND_MAX + 1.0);
config.color_green = 1.0 * rand () / (RAND_MAX + 1.0);
config.color_blue = 1.0 * rand () / (RAND_MAX + 1.0);
}
}
if (beat_before > 0)
beat_before--;
angle++;
if (angle == 360)
angle = 0;
}
|