From f8d8ce4d35bfbba5391af2a3fbce2ad88f94dd69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juha=20Vehvil=C3=A4inen?= Date: Tue, 9 Jul 2002 12:36:46 +0000 Subject: PeRColate svn path=/trunk/Framestein/; revision=31 --- Plugins/cga.c | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 Plugins/cga.c (limited to 'Plugins/cga.c') diff --git a/Plugins/cga.c b/Plugins/cga.c new file mode 100644 index 0000000..bc329d7 --- /dev/null +++ b/Plugins/cga.c @@ -0,0 +1,78 @@ +// 242.cga -- does bit-level quantization on an input image. +// by r. luke dubois (luke@music.columbia.edu), +// computer music center, columbia university, 2001. +// +// Pd / Framestein port by Olaf Matthes , June 2002 +// +// objects and source are provided without warranty of any kind, express or implied. +// +// usage: cga +// + +#include +#include +#include +#include "plugin.h" + +#pragma warning( disable : 4761 ) // the (lossy) conversion _IS_ our effect ! + +void perform_effect(struct frame f, struct args arg) +{ + int x,y; + int red, green, blue; // parameters + byte r, g, b; + byte bits = f.pixelformat/8; + pixel16 *c16; + pixel24 *c24; + pixel32 *c32; + char *t; + + // get r g b and alpha params + if(!arg.s) return; + red = atoi(arg.s); + if(!(t = strstr(arg.s, " "))) return; + green = atoi(t+1); + if(!(t = strstr(t+1, " "))) return; + blue = atoi(t+1); + + printf("cga: r%d g%d b%d\n", red, green, blue); + + for(y = 0; y < f.height; y++) + { + for(x = 0; x < f.width; x++) + { + switch(f.pixelformat) + { + case 16: + c16 = scanline16(f, y); + r = r16(c16[x]); + g = g16(c16[x]); + b = b16(c16[x]); + // shift it up, then shift it back down + c16[x] = rgbtocolor16((r>>red<>green<>blue<>red<>green<>blue<>red<>green<>blue<