123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- #include <windows.h>
- #include <stdlib.h>
- #include <vfw.h>
- #include <commctrl.h>
- #include <stdio.h>
- #include <math.h>
- #include "resource.h"
- #include "r_defs.h"
- #include "../Agave/Language/api_language.h"
- #define MOD_NAME "Misc / Custom BPM"
- #define C_THISCLASS C_BpmClass
- #define SET_BEAT 0x10000000
- #define CLR_BEAT 0x20000000
- 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_MISC_CUSTOM_BPM,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);
- void SliderStep(int Ctl, int *slide);
- int enabled;
- int arbitrary, skip, invert;
- int arbVal, skipVal;
- DWORD arbLastTC;
- int skipCount;
- int inInc, outInc;
- int inSlide, outSlide;
- int oldInSlide, oldOutSlide;
- int skipfirst;
- int count;
- };
- static C_THISCLASS *g_ConfigThis;
- static HINSTANCE g_hDllInstance;
- C_THISCLASS::~C_THISCLASS()
- {
- }
- C_THISCLASS::C_THISCLASS()
- {
- skipfirst=0;
- inSlide=0;
- outSlide=0;
- oldInSlide=0;
- oldOutSlide=0;
- enabled = 1;
- arbLastTC = GetTickCount();
- arbitrary=1;
- arbVal = 500;
- skipVal = 1;
- skipCount = 0;
- skip=0;
- invert=0;
- }
- #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) { arbitrary=GET_INT(); pos+=4; }
- if (len-pos >= 4) { skip=GET_INT(); pos+=4; }
- if (len-pos >= 4) { invert=GET_INT(); pos+=4; }
- if (len-pos >= 4) { arbVal=GET_INT(); pos+=4; }
- if (len-pos >= 4) { skipVal=GET_INT(); pos+=4; }
- if (len-pos >= 4) { skipfirst=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(arbitrary); pos+=4;
- PUT_INT(skip); pos+=4;
- PUT_INT(invert); pos+=4;
- PUT_INT(arbVal); pos+=4;
- PUT_INT(skipVal); pos+=4;
- PUT_INT(skipfirst); pos+=4;
- return pos;
- }
- void C_THISCLASS::SliderStep(int Ctl, int *slide)
- {
- *slide += Ctl == IDC_IN ? inInc : outInc;
- if (!*slide || *slide == 8) (Ctl == IDC_IN ? inInc : outInc) *= -1;
- }
- int C_THISCLASS::render(char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h)
- {
- if (!enabled) return 0;
- if (isBeat&0x80000000) return 0;
- if (isBeat)
- {
- SliderStep(IDC_IN, &inSlide);
- count++;
- }
- if (skipfirst != 0 && count <= skipfirst)
- return isBeat ? CLR_BEAT : 0;
- if (arbitrary)
- {
- DWORD TCNow = GetTickCount();
- if (TCNow > arbLastTC + arbVal)
- {
- arbLastTC = TCNow;
- SliderStep(IDC_OUT, &outSlide);
- return SET_BEAT;
- }
- return CLR_BEAT;
- }
- if (skip)
- {
- if (isBeat && ++skipCount >= skipVal+1)
- {
- skipCount = 0;
- SliderStep(IDC_OUT, &outSlide);
- return SET_BEAT;
- }
- return CLR_BEAT;
- }
- if (invert)
- {
- if (isBeat)
- return CLR_BEAT;
- else
- {
- SliderStep(IDC_OUT, &outSlide);
- return SET_BEAT;
- }
- }
- return 0;
- }
- static BOOL CALLBACK g_DlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam,LPARAM lParam)
- {
- switch (uMsg)
- {
- case WM_INITDIALOG:
- {
- char txt[40], beat[16], beats[16];
- g_ConfigThis->inInc = 1;
- g_ConfigThis->outInc = 1;
- g_ConfigThis->inSlide = 0;
- g_ConfigThis->outSlide = 0;
- if (g_ConfigThis->enabled) CheckDlgButton(hwndDlg,IDC_CHECK1,BST_CHECKED);
- if (g_ConfigThis->arbitrary) CheckDlgButton(hwndDlg,IDC_ARBITRARY,BST_CHECKED);
- if (g_ConfigThis->skip) CheckDlgButton(hwndDlg,IDC_SKIP,BST_CHECKED);
- if (g_ConfigThis->invert) CheckDlgButton(hwndDlg,IDC_INVERT,BST_CHECKED);
- SendDlgItemMessage(hwndDlg, IDC_ARBVAL, TBM_SETTICFREQ, 100, 0);
- SendDlgItemMessage(hwndDlg, IDC_SKIPVAL, TBM_SETTICFREQ, 1, 0);
- SendDlgItemMessage(hwndDlg, IDC_ARBVAL, TBM_SETRANGE, TRUE, MAKELONG(200, 10000));
- SendDlgItemMessage(hwndDlg, IDC_SKIPVAL, TBM_SETRANGE, TRUE, MAKELONG(1, 16));
- SendDlgItemMessage(hwndDlg, IDC_ARBVAL, TBM_SETPOS, TRUE, g_ConfigThis->arbVal);
- SendDlgItemMessage(hwndDlg, IDC_SKIPVAL, TBM_SETPOS, TRUE, g_ConfigThis->skipVal);
- SendDlgItemMessage(hwndDlg, IDC_IN, TBM_SETTICFREQ, 1, 0);
- SendDlgItemMessage(hwndDlg, IDC_IN, TBM_SETRANGE, TRUE, MAKELONG(0, 8));
- SendDlgItemMessage(hwndDlg, IDC_OUT, TBM_SETTICFREQ, 1, 0);
- SendDlgItemMessage(hwndDlg, IDC_OUT, TBM_SETRANGE, TRUE, MAKELONG(0, 8));
- SendDlgItemMessage(hwndDlg, IDC_SKIPFIRST, TBM_SETTICFREQ, 1, 0);
- SendDlgItemMessage(hwndDlg, IDC_SKIPFIRST, TBM_SETRANGE, TRUE, MAKELONG(0, 64));
- SendDlgItemMessage(hwndDlg, IDC_SKIPFIRST, TBM_SETPOS, TRUE, g_ConfigThis->skipfirst);
- wsprintf(txt, "%d bpm", 60000 / g_ConfigThis->arbVal);
- SetDlgItemText(hwndDlg, IDC_ARBTXT, txt);
- WASABI_API_LNGSTRING_BUF(IDS_BEAT,beat,16);
- WASABI_API_LNGSTRING_BUF(IDS_BEATS,beats,16);
- wsprintf(txt, "%d %s", g_ConfigThis->skipVal, g_ConfigThis->skipVal > 1 ? beats : beat);
- SetDlgItemText(hwndDlg, IDC_SKIPTXT, txt);
- wsprintf(txt, "%d %s", g_ConfigThis->skipfirst, g_ConfigThis->skipfirst > 1 ? beats : beat);
- SetDlgItemText(hwndDlg, IDC_SKIPFIRSTTXT, txt);
- SetTimer(hwndDlg, 0, 50, NULL);
- }
- return 1;
- case WM_TIMER:
- {
- if (g_ConfigThis->oldInSlide != g_ConfigThis->inSlide) {
- SendDlgItemMessage(hwndDlg, IDC_IN, TBM_SETPOS, TRUE, g_ConfigThis->inSlide); g_ConfigThis->oldInSlide=g_ConfigThis->inSlide; }
- if (g_ConfigThis->oldOutSlide != g_ConfigThis->outSlide) {
- SendDlgItemMessage(hwndDlg, IDC_OUT, TBM_SETPOS, TRUE, g_ConfigThis->outSlide); g_ConfigThis->oldOutSlide=g_ConfigThis->outSlide; }
- }
- return 0;
- case WM_NOTIFY:
- {
- char txt[40], beat[16], beats[16];
- if (LOWORD(wParam) == IDC_ARBVAL)
- g_ConfigThis->arbVal = SendDlgItemMessage(hwndDlg, IDC_ARBVAL, TBM_GETPOS, 0, 0);
- if (LOWORD(wParam) == IDC_SKIPVAL)
- g_ConfigThis->skipVal = SendDlgItemMessage(hwndDlg, IDC_SKIPVAL, TBM_GETPOS, 0, 0);
- if (LOWORD(wParam) == IDC_SKIPFIRST)
- g_ConfigThis->skipfirst = SendDlgItemMessage(hwndDlg, IDC_SKIPFIRST, TBM_GETPOS, 0, 0);
- wsprintf(txt, "%d bpm", 60000 / g_ConfigThis->arbVal);
- SetDlgItemText(hwndDlg, IDC_ARBTXT, txt);
- WASABI_API_LNGSTRING_BUF(IDS_BEAT,beat,16);
- WASABI_API_LNGSTRING_BUF(IDS_BEATS,beats,16);
- wsprintf(txt, "%d %s", g_ConfigThis->skipVal, g_ConfigThis->skipVal > 1 ? beats : beat);
- SetDlgItemText(hwndDlg, IDC_SKIPTXT, txt);
- wsprintf(txt, "%d %s", g_ConfigThis->skipfirst, g_ConfigThis->skipfirst > 1 ? beats : beat);
- SetDlgItemText(hwndDlg, IDC_SKIPFIRSTTXT, txt);
- return 0;
- }
- case WM_COMMAND:
- if ((LOWORD(wParam) == IDC_CHECK1) ||
- (LOWORD(wParam) == IDC_ARBITRARY) ||
- (LOWORD(wParam) == IDC_SKIP) ||
- (LOWORD(wParam) == IDC_INVERT))
- {
- g_ConfigThis->enabled=IsDlgButtonChecked(hwndDlg,IDC_CHECK1)?1:0;
- g_ConfigThis->arbitrary=IsDlgButtonChecked(hwndDlg,IDC_ARBITRARY)?1:0;
- g_ConfigThis->skip=IsDlgButtonChecked(hwndDlg,IDC_SKIP)?1:0;
- g_ConfigThis->invert=IsDlgButtonChecked(hwndDlg,IDC_INVERT)?1:0;
- }
- return 0;
- case WM_DESTROY:
- KillTimer(hwndDlg, 0);
- return 0;
- }
- return 0;
- }
- HWND C_THISCLASS::conf(HINSTANCE hInstance, HWND hwndParent)
- {
- g_ConfigThis = this;
- return WASABI_API_CREATEDIALOG(IDD_CFG_BPM,hwndParent,g_DlgProc);
- }
- C_RBASE *R_Bpm(char *desc)
- {
- if (desc) { strcpy(desc,MOD_NAME); return NULL; }
- return (C_RBASE *) new C_THISCLASS();
- }
|