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
|
/* gAlan - Graphical Audio Language
* Copyright (C) 1999 Tony Garnock-Jones
*
* 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
*/
/* Template gAlan plugin file. Please distribute your plugins according to
the GNU General Public License! (You don't have to, but I'd prefer it.) */
/* yep GPL apllies */
/* modified to be a scope plugin... requires changes to galan... but only
* because of me being lazy #include "sample-display.c" should do the job..
*
* but because sample display is so powerful i plan to use it for sample input
* to... (well.. should be in rart.c for loops)
*
* missing features:
* - display n*SAMPLE_RATE samples
* - trigger
* - resizing
* - you know what a hardware scope can do :-)
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stddef.h>
#include <gdk/gdk.h>
#include <gtk/gtk.h>
#include <gmodule.h>
#include "global.h"
#include "generator.h"
#include "comp.h"
#include "control.h"
#include "gencomp.h"
#include "sample-display.h"
#define GENERATOR_CLASS_NAME "scope"
#define GENERATOR_CLASS_PATH "Misc/Scope"
#define GENERATOR_CLASS_PIXMAP "template.xpm"
#define SIG_INPUT 1
#define SIG_OUTPUT 0
#define EVT_TRIGGER 0
#define EVT_YSCALE 1
#define EVT_XSCALE 2
#define NUM_EVENT_INPUTS 3
#define EVT_OUTPUT 0
#define NUM_EVENT_OUTPUTS 0
typedef struct Data {
/* state, to be pickled, unpickled */
gint32 phase;
gdouble ysize; /* sizeof(intbuf) = ysize * SAMPLE_RATE */
gdouble xsize;
/* transient the table size is yscale */
gint8 *intbuf;
} Data;
PRIVATE void setup_tables(void) {
/* Put any plugin-wide initialisation here. */
}
PRIVATE void realtime_handler(Generator *g, AEvent *event) {
/* TODO: the EVENT contains event->d.integer samples.
* i convert these samples to gint8 and put them
* into data->intbuf[phase++] until phase >= ysize;
* first i discard the old data.
*
* when ysize is reached, i draw the buffer.
*
*/
Data *data = g->data;
switch (event->kind)
{
case AE_REALTIME:
{
gint32 oldphase;
SAMPLE buf[MAXIMUM_REALTIME_STEP], *bufX;
int bufbytes = event->d.integer * sizeof(SAMPLE);
int intbufbytes = sizeof(gint8)*(SAMPLE_RATE*data->ysize);
if (!gen_read_realtime_input(g, 0, -1, buf, event->d.integer))
memset(buf, 0, bufbytes);
for( bufX=buf,oldphase = data->phase;
(data->phase-oldphase)<event->d.integer && (data->phase < intbufbytes);
(data->phase)++,bufX++ ) {
data->intbuf[data->phase]=CLIP_SAMPLE(*bufX * data->xsize)*127;
}
if( data->phase >= intbufbytes )
{
gen_update_controls( g, 0 );
data->phase = 0;
}
break;
}
default:
g_warning("scope module doesn't care for events of kind %d.", event->kind);
break;
}
}
PRIVATE gboolean init_instance(Generator *g) {
Data *data = safe_malloc(sizeof(Data));
g->data = data;
data->phase = 0;
data->ysize = 0.1;
data->xsize = 1;
data->intbuf = safe_malloc( sizeof(gint8)*(SAMPLE_RATE*data->ysize+1));
gen_register_realtime_fn(g, realtime_handler);
return TRUE;
}
PRIVATE void destroy_instance(Generator *g) {
gen_deregister_realtime_fn(g, realtime_handler);
free(((Data *)(g->data))->intbuf);
free(g->data);
}
PRIVATE void unpickle_instance(Generator *g, ObjectStoreItem *item, ObjectStore *db) {
Data *data = safe_malloc(sizeof(Data));
g->data = data;
data->phase = objectstore_item_get_integer(item, "scope_phase", 0);
data->ysize = objectstore_item_get_double(item, "scope_ysize", 0.1);
data->xsize = objectstore_item_get_double(item, "scope_xsize", 1.0);
data->intbuf = (gint8 *)safe_malloc( sizeof(gint8)*(SAMPLE_RATE*data->ysize+1));
gen_register_realtime_fn(g, realtime_handler);
}
PRIVATE void pickle_instance(Generator *g, ObjectStoreItem *item, ObjectStore *db) {
Data *data = g->data;
objectstore_item_set_integer(item, "scope_phase", data->phase);
objectstore_item_set_double(item, "scope_ysize", data->ysize);
objectstore_item_set_double(item, "scope_xsize", data->xsize);
}
PRIVATE void init_scope( Control *control ) {
GtkWidget *sc;
sc = sample_display_new(FALSE);
g_assert( sc != NULL );
control->widget = sc;
}
PRIVATE void done_scope(Control *control) {
}
PRIVATE void refresh_scope(Control *control) {
Data *data = control->g->data;
int intbufbytes = sizeof(gint8)*(SAMPLE_RATE*data->ysize);
sample_display_set_data_8( (SampleDisplay *)control->widget,
data->intbuf, intbufbytes, TRUE );
}
PRIVATE void evt_trigger_handler(Generator *g, AEvent *event) {
/* handle incoming events on queue EVT_TRIGGER
* set phase=0;
*/
Data *data = g->data;
data->phase=0;
}
PRIVATE void evt_yscale_handler(Generator *g, AEvent *event) {
/* handle incoming events on queue EVT_YSCALE
* when yscale changes need to resize buffer
* first free, malloc, then be smart
* i also drop all data in the buffer. could be better...
* lets see if there is demand..
*/
Data *data = g->data;
free( data->intbuf );
data->ysize = event->d.number;
data->intbuf = (gint8 *)safe_malloc( sizeof(gint8)*(SAMPLE_RATE*data->ysize+1));
data->phase = 0;
gen_update_controls( g, 1 );
}
PRIVATE void evt_xscale_handler(Generator *g, AEvent *event) {
/* handle incoming events on queue EVT_XSCALE
* this only changes XSCALE factor which is only used for
* generating the gint8[] so nothing special here
*/
Data *data = g->data;
data->xsize = event->d.number;
gen_update_controls( g, 2 );
}
PRIVATE InputSignalDescriptor input_sigs[] = {
{ "Input", SIG_FLAG_REALTIME },
{ NULL, }
};
PRIVATE ControlDescriptor controls[] = {
{ CONTROL_KIND_USERDEF, "scope", 0,0,0,0, 0,FALSE, 0,0, init_scope, done_scope, refresh_scope },
{ CONTROL_KIND_KNOB, "time", 0,0.5,0.001,0.001, 0,TRUE, TRUE,EVT_YSCALE,
NULL,NULL, control_double_updater, (gpointer) offsetof(Data, ysize) },
{ CONTROL_KIND_KNOB, "YScale", 0,5,0.01,0.01, 0,TRUE, TRUE,EVT_XSCALE,
NULL,NULL, control_double_updater, (gpointer) offsetof(Data, xsize) },
/* { kind, name, min,max,step,page, size,editable, is_dst,queue_number,
init,destroy,refresh,refresh_data }, */
{ CONTROL_KIND_NONE, }
};
PRIVATE void setup_class(void) {
GeneratorClass *k = gen_new_generatorclass(GENERATOR_CLASS_NAME, FALSE,
NUM_EVENT_INPUTS, NUM_EVENT_OUTPUTS,
input_sigs, NULL, controls,
init_instance, destroy_instance,
unpickle_instance, pickle_instance);
gen_configure_event_input(k, EVT_TRIGGER, "Trigger", evt_trigger_handler);
gen_configure_event_input(k, EVT_YSCALE, "Time", evt_yscale_handler);
gen_configure_event_input(k, EVT_XSCALE, "YScale", evt_xscale_handler);
//gen_configure_event_output(k, EVT_OUTPUT, "Output");
gencomp_register_generatorclass(k, FALSE, GENERATOR_CLASS_PATH,
PIXMAPDIRIFY(GENERATOR_CLASS_PIXMAP),
NULL);
}
PUBLIC void init_plugin_scope(void) {
setup_tables();
setup_class();
}
|