/* Libvisual-plugins - Standard plugins for libvisual * * Copyright (C) 2004, 2005 Dennis Smit * * Authors: Dennis Smit * * $Id: * * 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 */ #ifndef _ACTOR_JAKDAW_H #define _ACTOR_JAKDAW_H #include typedef enum { PLOTTER_SCOPE_LINES, PLOTTER_SCOPE_DOTS, PLOTTER_SCOPE_SOLID, PLOTTER_SCOPE_NOTHING } JakdawPlotterOptions; typedef enum { PLOTTER_COLOUR_SOLID, PLOTTER_COLOUR_RANDOM, PLOTTER_COLOUR_MUSICTRIG } JakdawPlotterColor; typedef enum { FEEDBACK_ZOOMRIPPLE, FEEDBACK_BLURONLY, FEEDBACK_ZOOMROTATE, FEEDBACK_SCROLL, FEEDBACK_INTOSCREEN, FEEDBACK_NEWRIPPLE } JakdawFeedbackType; typedef struct { int xres; int yres; int decay_rate; JakdawFeedbackType zoom_mode; double zoom_ripplesize; double zoom_ripplefact; double zoom_zoomfact; int plotter_amplitude; JakdawPlotterColor plotter_colortype; int plotter_scopecolor; JakdawPlotterOptions plotter_scopetype; /* Plotter privates */ int *xlat_table; int *amplitude_table; int shifts; /* Feedback privates */ uint32_t *table; uint32_t *new_image; int tableptr; /* Plugin it's random context */ VisRandomContext *rcontext; } JakdawPrivate; #endif /* _ACTOR_JAKDAW_H */