mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-11-15 02:24:55 -05:00
525 lines
No EOL
16 KiB
C++
525 lines
No EOL
16 KiB
C++
/*
|
|
LICENSE
|
|
-------
|
|
Copyright 2005 Nullsoft, Inc.
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without modification,
|
|
are permitted provided that the following conditions are met:
|
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
this list of conditions and the following disclaimer in the documentation
|
|
and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of Nullsoft nor the names of its contributors may be used to
|
|
endorse or promote products derived from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
|
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
#include <windows.h>
|
|
#include <stdlib.h>
|
|
#include <commctrl.h>
|
|
#include <math.h>
|
|
#include "resource.h"
|
|
#include "r_defs.h"
|
|
#include "../Agave/Language/api_language.h"
|
|
|
|
#ifndef LASER
|
|
|
|
#define MOD_NAME "Trans / Interferences"
|
|
#define C_THISCLASS C_InterferencesClass
|
|
|
|
class C_THISCLASS : public C_RBASE {
|
|
protected:
|
|
public:
|
|
C_THISCLASS();
|
|
virtual ~C_THISCLASS();
|
|
float GET_FLOAT(unsigned char *data, int pos);
|
|
void PUT_FLOAT(float f, unsigned char *data, int pos);
|
|
virtual int render(char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h);
|
|
virtual char *get_desc() { static char desc[128]; return (!desc[0]?WASABI_API_LNGSTRING_BUF(IDS_TRANS_INTERFERENCES,desc,128):desc); }
|
|
virtual HWND conf(HINSTANCE hInstance, HWND hwndParent);
|
|
virtual void load_config(unsigned char *data, int len);
|
|
virtual int save_config(unsigned char *data);
|
|
int enabled;
|
|
int nPoints;
|
|
int distance;
|
|
int alpha;
|
|
int rotation;
|
|
int rotationinc;
|
|
int distance2;
|
|
int alpha2;
|
|
int rotationinc2;
|
|
int rgb;
|
|
int blend;
|
|
int blendavg;
|
|
float speed;
|
|
int onbeat;
|
|
float a;
|
|
int _distance;
|
|
int _alpha;
|
|
int _rotationinc;
|
|
int _rgb;
|
|
float status;
|
|
};
|
|
|
|
#define PI 3.14159
|
|
|
|
static C_THISCLASS *g_ConfigThis; // global configuration dialog pointer
|
|
static HINSTANCE g_hDllInstance; // global DLL instance pointer (not needed in this example, but could be useful)
|
|
|
|
|
|
C_THISCLASS::~C_THISCLASS()
|
|
{
|
|
}
|
|
|
|
// configuration read/write
|
|
|
|
C_THISCLASS::C_THISCLASS() // set up default configuration
|
|
{
|
|
enabled=1;
|
|
nPoints = 2;
|
|
distance=10;
|
|
alpha=128;
|
|
rotation=0;
|
|
rotationinc=0;
|
|
rgb=1;
|
|
blendavg=0;
|
|
blend=0;
|
|
onbeat=1;
|
|
distance2=32;
|
|
rotationinc2=25;
|
|
alpha2=192;
|
|
status=2;
|
|
speed = (float)0.2;
|
|
a=(float)rotation/255*(float)PI*2;
|
|
}
|
|
|
|
void C_THISCLASS::PUT_FLOAT(float f, unsigned char *data, int pos)
|
|
{
|
|
int y = *(int *)&f;
|
|
data[pos]=(y)&255; data[pos+1]=(y>>8)&255; data[pos+2]=(y>>16)&255; data[pos+3]=(y>>24)&255;
|
|
}
|
|
|
|
float C_THISCLASS::GET_FLOAT(unsigned char *data, int pos)
|
|
{
|
|
int a = data[pos]|(data[pos+1]<<8)|(data[pos+2]<<16)|(data[pos+3]<<24);
|
|
float f = *(float *)&a;
|
|
return f;
|
|
}
|
|
|
|
#define GET_INT() (data[pos]|(data[pos+1]<<8)|(data[pos+2]<<16)|(data[pos+3]<<24))
|
|
void C_THISCLASS::load_config(unsigned char *data, int len) // read configuration of max length "len" from data.
|
|
{
|
|
int pos=0;
|
|
if (len-pos >= 4) { enabled=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { nPoints=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { rotation=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { distance=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { alpha=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { rotationinc=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { blend=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { blendavg=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { distance2=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { alpha2=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { rotationinc2=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { rgb=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { onbeat=GET_INT(); pos+=4; }
|
|
if (len-pos >= 4) { speed=GET_FLOAT(data, pos); pos+=4; }
|
|
a=(float)rotation/255*(float)PI*2;
|
|
status=(float)PI;
|
|
}
|
|
|
|
#define PUT_INT(y) data[pos]=(y)&255; data[pos+1]=(y>>8)&255; data[pos+2]=(y>>16)&255; data[pos+3]=(y>>24)&255
|
|
int C_THISCLASS::save_config(unsigned char *data) // write configuration to data, return length. config data should not exceed 64k.
|
|
{
|
|
int pos=0;
|
|
|
|
PUT_INT(enabled); pos+=4;
|
|
PUT_INT(nPoints); pos+=4;
|
|
PUT_INT(rotation); pos+=4;
|
|
PUT_INT(distance); pos+=4;
|
|
PUT_INT(alpha); pos+=4;
|
|
PUT_INT(rotationinc); pos+=4;
|
|
PUT_INT(blend); pos+=4;
|
|
PUT_INT(blendavg); pos+=4;
|
|
PUT_INT(distance2); pos+=4;
|
|
PUT_INT(alpha2); pos+=4;
|
|
PUT_INT(rotationinc2); pos+=4;
|
|
PUT_INT(rgb); pos+=4;
|
|
PUT_INT(onbeat); pos+=4;
|
|
PUT_FLOAT(speed, data, pos); pos+=4;
|
|
|
|
return pos;
|
|
}
|
|
|
|
// render function
|
|
// render should return 0 if it only used framebuffer, or 1 if the new output data is in fbout. this is
|
|
// used when you want to do something that you'd otherwise need to make a copy of the framebuffer.
|
|
// w and h are the width and height of the screen, in pixels.
|
|
// isBeat is 1 if a beat has been detected.
|
|
// visdata is in the format of [spectrum:0,wave:1][channel][band].
|
|
|
|
#define MAX_POINTS 8
|
|
|
|
int C_THISCLASS::render(char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h)
|
|
{
|
|
int pnts=nPoints;
|
|
int x,y;
|
|
int i;
|
|
int mask=0;
|
|
float s;
|
|
|
|
if (isBeat&0x80000000) return 0;
|
|
if (!enabled) return 0;
|
|
if (pnts == 0) return 0;
|
|
|
|
float angle=(float)(2*PI)/pnts;
|
|
|
|
if (onbeat && isBeat)
|
|
if (status >= PI)
|
|
status=0;
|
|
|
|
s = (float)sin(status);
|
|
_rotationinc = rotationinc + (int)((float)(rotationinc2-rotationinc) * s);
|
|
_alpha = alpha + (int)((float)(alpha2-alpha) * s);
|
|
_distance = distance + (int)((float)(distance2-distance) * s);
|
|
|
|
a=(float)rotation/255*(float)PI*2;
|
|
|
|
int xpoints[MAX_POINTS],ypoints[MAX_POINTS];
|
|
|
|
int minx=0, maxx=0;
|
|
int miny=0, maxy=0;
|
|
|
|
for (i=0;i<pnts;i++)
|
|
{
|
|
xpoints[i] = (int)(cos(a)*_distance);
|
|
ypoints[i] = (int)(sin(a)*_distance);
|
|
if (ypoints[i] > miny) miny=ypoints[i];
|
|
if (-ypoints[i] > maxy) maxy=-ypoints[i];
|
|
if (xpoints[i] > minx) minx=xpoints[i];
|
|
if (-xpoints[i] > maxx) maxx=-xpoints[i];
|
|
a += angle;
|
|
}
|
|
|
|
unsigned char *bt=g_blendtable[_alpha];
|
|
|
|
int *outp=fbout;
|
|
for (y = 0; y < h; y ++)
|
|
{
|
|
int yp=ypoints[i];
|
|
int yoffs[MAX_POINTS];
|
|
for (i = 0; i < pnts; i ++)
|
|
{
|
|
if (y >= ypoints[i] && y-ypoints[i] < h)
|
|
yoffs[i]=(y-ypoints[i])*w;
|
|
else yoffs[i]=-1;
|
|
}
|
|
if (rgb && (pnts==3 || pnts==6))
|
|
{
|
|
if (pnts == 3) for (x = 0; x < w; x ++)
|
|
{
|
|
int r=0,g=0,b=0;
|
|
int xp;
|
|
xp=x-xpoints[0];
|
|
if (xp >= 0 && xp < w && yoffs[0]!=-1)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[0]];
|
|
r=bt[pix&0xff];
|
|
}
|
|
xp=x-xpoints[1];
|
|
if (xp >= 0 && xp < w && yoffs[1]!=-1)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[1]];
|
|
g=bt[(pix>>8)&0xff];
|
|
}
|
|
xp=x-xpoints[2];
|
|
if (xp >= 0 && xp < w && yoffs[2]!=-1)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[2]];
|
|
b=bt[(pix>>16)&0xff];
|
|
}
|
|
*outp++ = r|(g<<8)|(b<<16);
|
|
}
|
|
else for (x = 0; x < w; x ++)
|
|
{
|
|
int r=0,g=0,b=0;
|
|
int xp;
|
|
xp=x-xpoints[0];
|
|
if (xp >= 0 && xp < w && yoffs[0]!=-1)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[0]];
|
|
r=bt[pix&0xff];
|
|
}
|
|
xp=x-xpoints[1];
|
|
if (xp >= 0 && xp < w && yoffs[1]!=-1)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[1]];
|
|
g=bt[(pix>>8)&0xff];
|
|
}
|
|
xp=x-xpoints[2];
|
|
if (xp >= 0 && xp < w && yoffs[2]!=-1)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[2]];
|
|
b=bt[(pix>>16)&0xff];
|
|
}
|
|
xp=x-xpoints[3];
|
|
if (xp >= 0 && xp < w && yoffs[3]!=-1)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[3]];
|
|
r+=bt[pix&0xff];
|
|
}
|
|
xp=x-xpoints[4];
|
|
if (xp >= 0 && xp < w && yoffs[4]!=-1)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[4]];
|
|
g+=bt[(pix>>8)&0xff];
|
|
}
|
|
xp=x-xpoints[5];
|
|
if (xp >= 0 && xp < w && yoffs[5]!=-1)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[5]];
|
|
b+=bt[(pix>>16)&0xff];
|
|
}
|
|
if (r > 255) r=255;
|
|
if (g > 255) g=255;
|
|
if (b > 255) b=255;
|
|
*outp++ = r|(g<<8)|(b<<16);
|
|
}
|
|
}
|
|
else if (y > miny && y < h-maxy && minx+maxx < w) // no y clipping required
|
|
{
|
|
for (x = 0; x < minx; x ++)
|
|
{
|
|
int r=0,g=0,b=0;
|
|
for (i = 0; i < pnts; i++)
|
|
{
|
|
int xp=x-xpoints[i];
|
|
if (xp >= 0 && xp < w)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[i]];
|
|
r+=bt[pix&0xff];
|
|
g+=bt[(pix>>8)&0xff];
|
|
b+=bt[(pix>>16)&0xff];
|
|
}
|
|
}
|
|
if (r > 255) r=255;
|
|
if (g > 255) g=255;
|
|
if (b > 255) b=255;
|
|
*outp++ = r|(g<<8)|(b<<16);
|
|
}
|
|
int *lfb=framebuffer+x;
|
|
for (; x < w-maxx; x ++)
|
|
{
|
|
int r=0,g=0,b=0;
|
|
for (i = 0; i < pnts; i++)
|
|
{
|
|
int pix=lfb[yoffs[i]-xpoints[i]];
|
|
r+=bt[pix&0xff];
|
|
g+=bt[(pix>>8)&0xff];
|
|
b+=bt[(pix>>16)&0xff];
|
|
}
|
|
if (r > 255) r=255;
|
|
if (g > 255) g=255;
|
|
if (b > 255) b=255;
|
|
lfb++;
|
|
*outp++ = r|(g<<8)|(b<<16);
|
|
}
|
|
for (; x < w; x ++)
|
|
{
|
|
int r=0,g=0,b=0;
|
|
for (i = 0; i < pnts; i++)
|
|
{
|
|
int xp=x-xpoints[i];
|
|
if (xp >= 0 && xp < w)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[i]];
|
|
r+=bt[pix&0xff];
|
|
g+=bt[(pix>>8)&0xff];
|
|
b+=bt[(pix>>16)&0xff];
|
|
}
|
|
}
|
|
if (r > 255) r=255;
|
|
if (g > 255) g=255;
|
|
if (b > 255) b=255;
|
|
*outp++ = r|(g<<8)|(b<<16);
|
|
}
|
|
}
|
|
else for (x = 0; x < w; x ++)
|
|
{
|
|
int r=0,g=0,b=0;
|
|
for (i = 0; i < pnts; i++)
|
|
{
|
|
int xp=x-xpoints[i];
|
|
if (xp >= 0 && xp < w && yoffs[i]!=-1)
|
|
{
|
|
int pix=framebuffer[xp+yoffs[i]];
|
|
r+=bt[pix&0xff];
|
|
g+=bt[(pix>>8)&0xff];
|
|
b+=bt[(pix>>16)&0xff];
|
|
}
|
|
}
|
|
if (r > 255) r=255;
|
|
if (g > 255) g=255;
|
|
if (b > 255) b=255;
|
|
*outp++ = r|(g<<8)|(b<<16);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rotation+=_rotationinc;
|
|
rotation=rotation>255 ? rotation-255 : rotation;
|
|
rotation=rotation<-255 ? rotation+255 : rotation;
|
|
|
|
status += speed;
|
|
status=min(status, (float)PI);
|
|
if (status<-PI) status = (float) PI;
|
|
|
|
int *p = framebuffer;
|
|
int *d = fbout;
|
|
|
|
if (!blend && !blendavg) return 1;
|
|
if (blendavg)
|
|
{
|
|
int i=w*h/4;
|
|
while (i--)
|
|
{
|
|
p[0] = BLEND_AVG(p[0], d[0]);
|
|
p[1] = BLEND_AVG(p[1], d[1]);
|
|
p[2] = BLEND_AVG(p[2], d[2]);
|
|
p[3] = BLEND_AVG(p[3], d[3]);
|
|
p+=4;
|
|
d+=4;
|
|
}
|
|
}
|
|
else
|
|
mmx_addblend_block(p,d,w*h);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
// configuration dialog stuff
|
|
|
|
|
|
static BOOL CALLBACK g_DlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam,LPARAM lParam)
|
|
{
|
|
switch (uMsg)
|
|
{
|
|
case WM_INITDIALOG:
|
|
SendDlgItemMessage(hwndDlg, IDC_NPOINTS, TBM_SETTICFREQ, 1, 0);
|
|
SendDlgItemMessage(hwndDlg, IDC_NPOINTS, TBM_SETRANGE, TRUE, MAKELONG(0, 8));
|
|
SendDlgItemMessage(hwndDlg, IDC_NPOINTS, TBM_SETPOS, TRUE, g_ConfigThis->nPoints);
|
|
SendDlgItemMessage(hwndDlg, IDC_ALPHA, TBM_SETTICFREQ, 16, 0);
|
|
SendDlgItemMessage(hwndDlg, IDC_ALPHA, TBM_SETRANGE, TRUE, MAKELONG(1, 255));
|
|
SendDlgItemMessage(hwndDlg, IDC_ALPHA, TBM_SETPOS, TRUE, g_ConfigThis->alpha);
|
|
SendDlgItemMessage(hwndDlg, IDC_DISTANCE, TBM_SETTICFREQ, 8, 0);
|
|
SendDlgItemMessage(hwndDlg, IDC_DISTANCE, TBM_SETRANGE, TRUE, MAKELONG(1, 64));
|
|
SendDlgItemMessage(hwndDlg, IDC_DISTANCE, TBM_SETPOS, TRUE, g_ConfigThis->distance);
|
|
SendDlgItemMessage(hwndDlg, IDC_ROTATE, TBM_SETTICFREQ, 2, 0);
|
|
SendDlgItemMessage(hwndDlg, IDC_ROTATE, TBM_SETRANGE, TRUE, MAKELONG(0, 64));
|
|
SendDlgItemMessage(hwndDlg, IDC_ROTATE, TBM_SETPOS, TRUE, g_ConfigThis->rotationinc*-1+32);
|
|
SendDlgItemMessage(hwndDlg, IDC_ALPHA2, TBM_SETTICFREQ, 16, 0);
|
|
SendDlgItemMessage(hwndDlg, IDC_ALPHA2, TBM_SETRANGE, TRUE, MAKELONG(1, 255));
|
|
SendDlgItemMessage(hwndDlg, IDC_ALPHA2, TBM_SETPOS, TRUE, g_ConfigThis->alpha2);
|
|
SendDlgItemMessage(hwndDlg, IDC_DISTANCE2, TBM_SETTICFREQ, 8, 0);
|
|
SendDlgItemMessage(hwndDlg, IDC_DISTANCE2, TBM_SETRANGE, TRUE, MAKELONG(1, 64));
|
|
SendDlgItemMessage(hwndDlg, IDC_DISTANCE2, TBM_SETPOS, TRUE, g_ConfigThis->distance2);
|
|
SendDlgItemMessage(hwndDlg, IDC_ROTATE2, TBM_SETTICFREQ, 2, 0);
|
|
SendDlgItemMessage(hwndDlg, IDC_ROTATE2, TBM_SETRANGE, TRUE, MAKELONG(0, 64));
|
|
SendDlgItemMessage(hwndDlg, IDC_ROTATE2, TBM_SETPOS, TRUE, g_ConfigThis->rotationinc2*-1+32);
|
|
SendDlgItemMessage(hwndDlg, IDC_INITROT, TBM_SETTICFREQ, 16, 0);
|
|
SendDlgItemMessage(hwndDlg, IDC_INITROT, TBM_SETRANGE, TRUE, MAKELONG(0, 255));
|
|
SendDlgItemMessage(hwndDlg, IDC_INITROT, TBM_SETPOS, TRUE, 255-g_ConfigThis->rotation);
|
|
SendDlgItemMessage(hwndDlg, IDC_SPEED, TBM_SETTICFREQ, 1000, 0);
|
|
SendDlgItemMessage(hwndDlg, IDC_SPEED, TBM_SETRANGE, TRUE, MAKELONG(1, 128));
|
|
SendDlgItemMessage(hwndDlg, IDC_SPEED, TBM_SETPOS, TRUE, (int)(g_ConfigThis->speed*100));
|
|
if (g_ConfigThis->enabled) CheckDlgButton(hwndDlg,IDC_CHECK1,BST_CHECKED);
|
|
if (g_ConfigThis->blend) CheckDlgButton(hwndDlg,IDC_ADDITIVE,BST_CHECKED);
|
|
if (g_ConfigThis->blendavg) CheckDlgButton(hwndDlg,IDC_5050,BST_CHECKED);
|
|
if (!g_ConfigThis->blend && !g_ConfigThis->blendavg)
|
|
CheckDlgButton(hwndDlg,IDC_REPLACE,BST_CHECKED);
|
|
EnableWindow(GetDlgItem(hwndDlg, IDC_RGB), (g_ConfigThis->nPoints == 3 || g_ConfigThis->nPoints==6));
|
|
CheckDlgButton(hwndDlg,IDC_RGB,g_ConfigThis->rgb ? BST_CHECKED: BST_UNCHECKED);
|
|
CheckDlgButton(hwndDlg,IDC_ONBEAT,g_ConfigThis->onbeat ? BST_CHECKED: BST_UNCHECKED);
|
|
return 1;
|
|
case WM_COMMAND:
|
|
if ((LOWORD(wParam) == IDC_CHECK1) ||
|
|
(LOWORD(wParam) == IDC_RGB) ||
|
|
(LOWORD(wParam) == IDC_ONBEAT) ||
|
|
(LOWORD(wParam) == IDC_ADDITIVE) ||
|
|
(LOWORD(wParam) == IDC_REPLACE) ||
|
|
(LOWORD(wParam) == IDC_5050) )
|
|
{
|
|
g_ConfigThis->enabled=IsDlgButtonChecked(hwndDlg,IDC_CHECK1)?1:0;
|
|
g_ConfigThis->blend=IsDlgButtonChecked(hwndDlg,IDC_ADDITIVE)?1:0;
|
|
g_ConfigThis->blendavg=IsDlgButtonChecked(hwndDlg,IDC_5050)?1:0;
|
|
g_ConfigThis->rgb=IsDlgButtonChecked(hwndDlg,IDC_RGB)?1:0;
|
|
g_ConfigThis->onbeat=IsDlgButtonChecked(hwndDlg,IDC_ONBEAT)?1:0;
|
|
}
|
|
return 0;
|
|
case WM_NOTIFY:
|
|
if (LOWORD(wParam) == IDC_NPOINTS)
|
|
{
|
|
g_ConfigThis->nPoints = SendDlgItemMessage(hwndDlg, IDC_NPOINTS, TBM_GETPOS, 0, 0);
|
|
EnableWindow(GetDlgItem(hwndDlg, IDC_RGB), (g_ConfigThis->nPoints == 3 || g_ConfigThis->nPoints==6));
|
|
}
|
|
if (LOWORD(wParam) == IDC_ALPHA)
|
|
g_ConfigThis->alpha = SendDlgItemMessage(hwndDlg, IDC_ALPHA, TBM_GETPOS, 0, 0);
|
|
if (LOWORD(wParam) == IDC_DISTANCE)
|
|
g_ConfigThis->distance = SendDlgItemMessage(hwndDlg, IDC_DISTANCE, TBM_GETPOS, 0, 0);
|
|
if (LOWORD(wParam) == IDC_ROTATE)
|
|
g_ConfigThis->rotationinc= -1*(SendDlgItemMessage(hwndDlg, IDC_ROTATE, TBM_GETPOS, 0, 0)-32);
|
|
if (LOWORD(wParam) == IDC_INITROT)
|
|
g_ConfigThis->rotation = 255-SendDlgItemMessage(hwndDlg, IDC_INITROT, TBM_GETPOS, 0, 0);
|
|
if (LOWORD(wParam) == IDC_SPEED)
|
|
g_ConfigThis->speed = (float)SendDlgItemMessage(hwndDlg, IDC_SPEED, TBM_GETPOS, 0, 0)/100;
|
|
if (LOWORD(wParam) == IDC_ALPHA2)
|
|
g_ConfigThis->alpha2 = SendDlgItemMessage(hwndDlg, IDC_ALPHA2, TBM_GETPOS, 0, 0);
|
|
if (LOWORD(wParam) == IDC_DISTANCE2)
|
|
g_ConfigThis->distance2 = SendDlgItemMessage(hwndDlg, IDC_DISTANCE2, TBM_GETPOS, 0, 0);
|
|
if (LOWORD(wParam) == IDC_ROTATE2)
|
|
g_ConfigThis->rotationinc2= -1*(SendDlgItemMessage(hwndDlg, IDC_ROTATE2, TBM_GETPOS, 0, 0)-32);
|
|
return 0;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
HWND C_THISCLASS::conf(HINSTANCE hInstance, HWND hwndParent) // return NULL if no config dialog possible
|
|
{
|
|
g_ConfigThis = this;
|
|
return WASABI_API_CREATEDIALOG(IDD_CFG_INTERF,hwndParent,g_DlgProc);
|
|
}
|
|
|
|
// export stuff
|
|
|
|
C_RBASE *R_Interferences(char *desc) // creates a new effect object if desc is NULL, otherwise fills in desc with description
|
|
{
|
|
if (desc) { strcpy(desc,MOD_NAME); return NULL; }
|
|
return (C_RBASE *) new C_THISCLASS();
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
C_RBASE *R_Interferences(char *desc) // creates a new effect object if desc is NULL, otherwise fills in desc with description
|
|
{
|
|
return NULL;
|
|
}
|
|
#endif |