123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406 |
- #include <windows.h>
- #include <stdlib.h>
- #include <vfw.h>
- #include <commctrl.h>
- #include "resource.h"
- #include "r_defs.h"
- #include "../Agave/Language/api_language.h"
- #ifndef LASER
- #define MOD_NAME "Trans / Grain"
- #define C_THISCLASS C_GrainClass
- class C_THISCLASS : public C_RBASE {
- protected:
- public:
- C_THISCLASS();
- virtual ~C_THISCLASS();
- 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_GRAIN,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);
- unsigned char __inline fastrandbyte(void);
- void reinit(int w, int h);
- int enabled;
- int blend, blendavg, smax;
- unsigned char *depthBuffer;
- int oldx, oldy;
- int staticgrain;
- unsigned char randtab[491];
- int randtab_pos;
- };
- static C_THISCLASS *g_ConfigThis;
- static HINSTANCE g_hDllInstance;
- C_THISCLASS::~C_THISCLASS()
- {
- if (depthBuffer)
- GlobalFree(depthBuffer);
- }
- C_THISCLASS::C_THISCLASS()
- {
- blend=0;
- blendavg=0;
- smax=100;
- enabled=1;
- oldx=0;
- oldy=0;
- staticgrain=0;
- depthBuffer=NULL;
- int x;
- for (x = 0 ;x < sizeof(randtab); x ++)
- randtab[x]=rand()&255;
- randtab_pos=rand()%sizeof(randtab);
- }
- unsigned char __inline C_THISCLASS::fastrandbyte(void)
- {
- unsigned char r=randtab[randtab_pos];
- randtab_pos++;
- if (!(randtab_pos&15))
- {
- randtab_pos+=rand()%73;
- }
- if (randtab_pos >= 491) randtab_pos-=491;
- return r;
- }
- #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)
- {
- int pos=0;
- if (len-pos >= 4) { enabled=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) { smax=GET_INT(); pos+=4; }
- if (len-pos >= 4) { staticgrain=GET_INT(); pos+=4; }
- }
- #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)
- {
- int pos=0;
- PUT_INT(enabled); pos+=4;
- PUT_INT(blend); pos+=4;
- PUT_INT(blendavg); pos+=4;
- PUT_INT(smax); pos+=4;
- PUT_INT(staticgrain); pos+=4;
- return pos;
- }
- void C_THISCLASS::reinit(int w, int h)
- {
- int x,y;
- unsigned char *p;
- if (depthBuffer)
- GlobalFree(depthBuffer);
- depthBuffer = (unsigned char *)GlobalAlloc(GMEM_FIXED,w*h*2);
- p = depthBuffer;
- if (p)
- for (y=0;y<h;y++)
- for (x=0;x<w;x++)
- {
- *p++ = (rand()%255);
- *p++ = (rand()%100);
- }
- }
- int C_THISCLASS::render(char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h)
- {
- if (isBeat&0x80000000) return 0;
- if (!enabled) return 0;
- int smax_sc = (smax*255)/100;
- int *p;
- unsigned char *q;
- int l=w*h;
- if (w != oldx || h != oldy)
- {
- reinit(w, h);
- oldx = w;
- oldy = h;
- }
- randtab_pos+=rand()%300;
- if (randtab_pos >= 491) randtab_pos-=491;
- p = framebuffer;
- q = depthBuffer;
- if (staticgrain)
- {
- if (blend)
- {
- while (l--)
- {
- if (*p)
- {
- int c=0;
- if (q[1] < smax_sc)
- {
- int s = q[0];
- int r=(((p[0]&0xff0000)*s)>>8);
- if (r > 0xff0000) r=0xff0000;
- c|=r&0xff0000;
- r=(((p[0]&0xff00)*s)>>8);
- if (r > 0xff00) r=0xff00;
- c|=r&0xff00;
- r=(((p[0]&0xff)*s)>>8);
- if (r > 0xff) r=0xff;
- c|=r;
- }
- *p = BLEND(*p, c);
- }
- p++;
- q+=2;
- }
- }
- else if (blendavg)
- {
- while (l--)
- {
- if (*p)
- {
- int c=0;
- if (q[1] < smax_sc)
- {
- int s = q[0];
- int r=(((p[0]&0xff0000)*s)>>8);
- if (r > 0xff0000) r=0xff0000;
- c|=r&0xff0000;
- r=(((p[0]&0xff00)*s)>>8);
- if (r > 0xff00) r=0xff00;
- c|=r&0xff00;
- r=(((p[0]&0xff)*s)>>8);
- if (r > 0xff) r=0xff;
- c|=r;
- }
- *p = BLEND_AVG(*p, c);
- }
- p++;
- q+=2;
- }
- }
- else
- {
- while (l--)
- {
- if (*p)
- {
- int c=0;
- if (q[1] < smax_sc)
- {
- int s = q[0];
- int r=(((p[0]&0xff0000)*s)>>8);
- if (r > 0xff0000) r=0xff0000;
- c|=r&0xff0000;
- r=(((p[0]&0xff00)*s)>>8);
- if (r > 0xff00) r=0xff00;
- c|=r&0xff00;
- r=(((p[0]&0xff)*s)>>8);
- if (r > 0xff) r=0xff;
- c|=r;
- }
- *p = c;
- }
- p++;
- q+=2;
- }
- }
- }
- else
- {
- if (blend)
- {
- while (l--)
- {
- if (*p)
- {
- int c=0;
- if (fastrandbyte() < smax_sc)
- {
- int s = fastrandbyte();
- int r=(((p[0]&0xff0000)*s)>>8);
- if (r > 0xff0000) r=0xff0000;
- c|=r&0xff0000;
- r=(((p[0]&0xff00)*s)>>8);
- if (r > 0xff00) r=0xff00;
- c|=r&0xff00;
- r=(((p[0]&0xff)*s)>>8);
- if (r > 0xff) r=0xff;
- c|=r;
- }
- *p = BLEND(*p, c);
- }
- p++;
- q+=2;
- }
- }
- else if (blendavg)
- {
- while (l--)
- {
- if (*p)
- {
- int c=0;
- if (fastrandbyte() < smax_sc)
- {
- int s = fastrandbyte();
- int r=(((p[0]&0xff0000)*s)>>8);
- if (r > 0xff0000) r=0xff0000;
- c|=r&0xff0000;
- r=(((p[0]&0xff00)*s)>>8);
- if (r > 0xff00) r=0xff00;
- c|=r&0xff00;
- r=(((p[0]&0xff)*s)>>8);
- if (r > 0xff) r=0xff;
- c|=r;
- }
- *p = BLEND_AVG(*p, c);
- }
- p++;
- q+=2;
- }
- }
- else
- {
- while (l--)
- {
- if (*p)
- {
- int c=0;
- if (fastrandbyte() < smax_sc)
- {
- int s = fastrandbyte();
- int r=(((p[0]&0xff0000)*s)>>8);
- if (r > 0xff0000) r=0xff0000;
- c|=r&0xff0000;
- r=(((p[0]&0xff00)*s)>>8);
- if (r > 0xff00) r=0xff00;
- c|=r&0xff00;
- r=(((p[0]&0xff)*s)>>8);
- if (r > 0xff) r=0xff;
- c|=r;
- }
- *p = c;
- }
- p++;
- q+=2;
- }
- }
- }
- return 0;
- }
- static BOOL CALLBACK g_DlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam,LPARAM lParam)
- {
- switch (uMsg)
- {
- case WM_INITDIALOG:
- SendDlgItemMessage(hwndDlg, IDC_MAX, TBM_SETTICFREQ, 10, 0);
- SendDlgItemMessage(hwndDlg, IDC_MAX, TBM_SETRANGE, TRUE, MAKELONG(0, 100));
- SendDlgItemMessage(hwndDlg, IDC_MAX, TBM_SETPOS, TRUE, g_ConfigThis->smax);
- if (g_ConfigThis->enabled) CheckDlgButton(hwndDlg,IDC_CHECK1,BST_CHECKED);
- if (g_ConfigThis->staticgrain) CheckDlgButton(hwndDlg,IDC_STATGRAIN,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);
- return 1;
- case WM_NOTIFY:
- {
- if (LOWORD(wParam) == IDC_MAX)
- g_ConfigThis->smax = SendDlgItemMessage(hwndDlg, IDC_MAX, TBM_GETPOS, 0, 0);
- return 0;
- }
- case WM_COMMAND:
- if ((LOWORD(wParam) == IDC_CHECK1) ||
- (LOWORD(wParam) == IDC_STATGRAIN) ||
- (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->staticgrain=IsDlgButtonChecked(hwndDlg,IDC_STATGRAIN)?1:0;
- }
- return 0;
- }
- return 0;
- }
- HWND C_THISCLASS::conf(HINSTANCE hInstance, HWND hwndParent)
- {
- g_ConfigThis = this;
- return WASABI_API_CREATEDIALOG(IDD_CFG_GRAIN,hwndParent,g_DlgProc);
- }
- C_RBASE *R_Grain(char *desc)
- {
- if (desc) { strcpy(desc,MOD_NAME); return NULL; }
- return (C_RBASE *) new C_THISCLASS();
- }
- #else
- C_RBASE *R_Grain(char *desc)
- {
- return NULL;
- }
- #endif
|