| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 | 
							- /*
 
-   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 <commctrl.h>
 
- #include "resource.h"
 
- #include "r_defs.h"
 
- #include "../Agave/Language/api_language.h"
 
- #ifndef LASER
 
- #define MD_XI    0
 
- #define MD_X8    1
 
- #define MD_X4    2
 
- #define MD_X2    3
 
- #define MD_X05   4
 
- #define MD_X025  5
 
- #define MD_X0125 6
 
- #define MD_XS    7
 
- // this will be the directory and APE name displayed in the AVS Editor
 
- #define MOD_NAME "Trans / Multiplier"
 
- #define C_THISCLASS C_MultiplierClass
 
- typedef struct {
 
- 	int	ml;
 
- } apeconfig;
 
- 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 HWND conf(HINSTANCE hInstance, HWND hwndParent);
 
- 		virtual char *get_desc();
 
- 		virtual void load_config(unsigned char *data, int len);
 
- 		virtual int  save_config(unsigned char *data);
 
- 		apeconfig config;
 
- 		HWND hwndDlg;
 
- };
 
- // global configuration dialog pointer 
 
- static C_THISCLASS *g_ConfigThis; 
 
- static HINSTANCE g_hDllInstance; 
 
- // this is where we deal with the configuration screen
 
- static BOOL CALLBACK g_DlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
 
- {
 
- 	int id;
 
- 	switch (uMsg)
 
- 	{
 
- 		case WM_COMMAND:
 
- 			if (HIWORD(wParam) == BN_CLICKED) {
 
- 				id = LOWORD(wParam);
 
- 				switch (id) {
 
- 				case IDC_XI:
 
- 					g_ConfigThis->config.ml = MD_XI;
 
- 					break;
 
- 				case IDC_X8:
 
- 					g_ConfigThis->config.ml = MD_X8;
 
- 					break;
 
- 				case IDC_X4:
 
- 					g_ConfigThis->config.ml = MD_X4;
 
- 					break;
 
- 				case IDC_X2:
 
- 					g_ConfigThis->config.ml = MD_X2;
 
- 					break;
 
- 				case IDC_X05:
 
- 					g_ConfigThis->config.ml = MD_X05;
 
- 					break;
 
- 				case IDC_X025:
 
- 					g_ConfigThis->config.ml = MD_X025;
 
- 					break;
 
- 				case IDC_X0125:
 
- 					g_ConfigThis->config.ml = MD_X0125;
 
- 					break;
 
- 				case IDC_XS:
 
- 					g_ConfigThis->config.ml = MD_XS;
 
- 					break;
 
- 				}
 
- 			}
 
- 			return 0;
 
- 		case WM_INITDIALOG:
 
- 			g_ConfigThis->hwndDlg = hwndDlg;
 
- 			switch (g_ConfigThis->config.ml) {
 
- 			case MD_XI:
 
- 				id = IDC_XI;
 
- 				break;
 
- 			case MD_X8:
 
- 				id = IDC_X8;
 
- 				break;
 
- 			case MD_X4:
 
- 				id = IDC_X4;
 
- 				break;
 
- 			case MD_X2:
 
- 				id = IDC_X2;
 
- 				break;
 
- 			case MD_X05:
 
- 				id = IDC_X05;
 
- 				break;
 
- 			case MD_X025:
 
- 				id = IDC_X025;
 
- 				break;
 
- 			case MD_X0125:
 
- 				id = IDC_X0125;
 
- 				break;
 
- 			case MD_XS:
 
- 				id = IDC_XS;
 
- 				break;
 
- 			}
 
- 			SendMessage(GetDlgItem(hwndDlg, id), BM_SETCHECK, BST_CHECKED, 0);
 
- 			return 1;
 
- 		case WM_DESTROY:
 
- 			return 1;
 
- 	}
 
- 	return 0;
 
- }
 
- // set up default configuration 
 
- C_THISCLASS::C_THISCLASS() 
 
- {
 
- 	memset(&config, 0, sizeof(apeconfig));
 
- 	config.ml = MD_X2;
 
- }
 
- // virtual destructor
 
- C_THISCLASS::~C_THISCLASS() 
 
- {
 
- }
 
- int C_THISCLASS::render(char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h)
 
- {
 
-   if (isBeat&0x80000000) return 0;
 
- 	int b,c;
 
- 	__int64 mask;
 
- 	c = w*h;
 
- 	switch (config.ml) {
 
- 	case MD_XI:
 
- 		__asm {
 
- 			mov ebx, framebuffer;
 
- 			mov ecx, c;
 
- 			mov	edx, b;
 
- 			lp0:
 
- 			xor eax, eax;
 
- 			dec ecx;
 
- 			test ecx, ecx;
 
- 			jz end;
 
- 			mov eax, dword ptr [ebx+ecx*4];
 
- 			test eax, eax;
 
- 			jz sk0;
 
- 			mov eax, 0xFFFFFF;
 
- 			sk0:
 
- 			mov [ebx+ecx*4], eax;
 
- 			jmp lp0;			
 
- 		}
 
- 		break;
 
- 	case MD_XS:
 
- 		__asm {
 
- 			mov ebx, framebuffer;
 
- 			mov ecx, c;
 
- 			mov	edx, b;
 
- 			lp9:
 
- 			xor eax, eax;
 
- 			dec ecx;
 
- 			test ecx, ecx;
 
- 			jz end;
 
- 			mov eax, dword ptr [ebx+ecx*4];
 
- 			cmp eax, 0xFFFFFF;
 
- 			je sk9;
 
- 			mov eax, 0x000000;
 
- 			sk9:
 
- 			mov [ebx+ecx*4], eax;
 
- 			jmp lp9;			
 
- 		}
 
- 		break;
 
- 	case MD_X8:
 
- 		c = w*h/2;
 
- 		__asm {
 
- 			mov ebx, framebuffer;
 
- 			mov ecx, c;
 
- 			lp1:
 
- 			movq mm0, [ebx];
 
- 			paddusb mm0, mm0;
 
- 			paddusb mm0, mm0;
 
- 			paddusb mm0, mm0;
 
- 			movq [ebx], mm0;
 
- 			add ebx, 8;
 
- 			dec ecx;
 
- 			test ecx, ecx;
 
- 			jz end;
 
- 			jmp lp1;
 
- 		}
 
- 		break;
 
- 	case MD_X4:
 
- 		c = w*h/2;
 
- 		__asm {
 
- 			mov ebx, framebuffer;
 
- 			mov ecx, c;
 
- 			lp2:
 
- 			movq mm0, [ebx];
 
- 			paddusb mm0, mm0;
 
- 			paddusb mm0, mm0;
 
- 			movq [ebx], mm0;
 
- 			add ebx, 8;
 
- 			dec ecx;
 
- 			test ecx, ecx;
 
- 			jz end;
 
- 			jmp lp2;
 
- 		}
 
- 		break;
 
- 	case MD_X2:
 
- 		c = w*h/2;
 
- 		__asm {
 
- 			mov ebx, framebuffer;
 
- 			mov ecx, c;
 
- 			lp3:
 
- 			movq mm0, [ebx];
 
- 			paddusb mm0, mm0;
 
- 			movq [ebx], mm0;
 
- 			add ebx, 8;
 
- 			dec ecx;
 
- 			test ecx, ecx;
 
- 			jz end;
 
- 			jmp lp3;
 
- 		}
 
- 		break;
 
- 	case MD_X05:
 
- 		c = w*h/2;
 
- 		mask = 0x7F7F7F7F7F7F7F7F;
 
- 		__asm {
 
- 			mov ebx, framebuffer;
 
- 			mov ecx, c;
 
- 			movq mm1, mask;
 
- 			lp4:
 
- 			movq mm0, [ebx];
 
- 			psrlq mm0, 1;
 
- 			pand mm0, mm1;
 
- 			movq [ebx], mm0;
 
- 			add ebx, 8;
 
- 			dec ecx;
 
- 			test ecx, ecx;
 
- 			jz end;
 
- 			jmp lp4;
 
- 		}
 
- 		break;
 
- 	case MD_X025:
 
- 		c = w*h/2;
 
- 		mask = 0x3F3F3F3F3F3F3F3F;
 
- 		__asm {
 
- 			mov ebx, framebuffer;
 
- 			mov ecx, c;
 
- 			movq mm1, mask;
 
- 			lp5:
 
- 			movq mm0, [ebx];
 
- 			psrlq mm0, 2;
 
- 			pand mm0, mm1;
 
- 			movq [ebx], mm0;
 
- 			add ebx, 8;
 
- 			dec ecx;
 
- 			test ecx, ecx;
 
- 			jz end;
 
- 			jmp lp5;
 
- 		}
 
- 		break;
 
- 	case MD_X0125:
 
- 		c = w*h/2;
 
- 		mask = 0x1F1F1F1F1F1F1F1F;
 
- 		__asm {
 
- 			mov ebx, framebuffer;
 
- 			mov ecx, c;
 
- 			movq mm1, mask;
 
- 			lp6:
 
- 			movq mm0, [ebx];
 
- 			psrlq mm0, 3;
 
- 			pand mm0, mm1;
 
- 			movq [ebx], mm0;
 
- 			add ebx, 8;
 
- 			dec ecx;
 
- 			test ecx, ecx;
 
- 			jz end;
 
- 			jmp lp6;
 
- 		}
 
- 		break;
 
- 	}
 
- 	end:
 
- 	__asm emms;
 
- 	return 0;
 
- }
 
- HWND C_THISCLASS::conf(HINSTANCE hInstance, HWND hwndParent) 
 
- {
 
- 	g_ConfigThis = this;
 
- 	return WASABI_API_CREATEDIALOG(IDD_CFG_MULT, hwndParent, (DLGPROC)g_DlgProc);
 
- }
 
- char *C_THISCLASS::get_desc(void)
 
- { 
 
- 	static char desc[128]; return (!desc[0]?WASABI_API_LNGSTRING_BUF(IDS_TRANS_MULTIPLIER,desc,128):desc); 
 
- }
 
- void C_THISCLASS::load_config(unsigned char *data, int len) 
 
- {
 
- 	if (len == sizeof(apeconfig))
 
- 		memcpy(&this->config, data, len);
 
- 	else
 
- 		memset(&this->config, 0, sizeof(apeconfig));
 
- }
 
- int  C_THISCLASS::save_config(unsigned char *data) 
 
- {
 
- 	memcpy(data, &this->config, sizeof(apeconfig));
 
- 	return sizeof(apeconfig);
 
- }
 
- C_RBASE *R_Multiplier(char *desc) 
 
- {
 
- 	if (desc) { 
 
- 		strcpy(desc,MOD_NAME); 
 
- 		return NULL; 
 
- 	}
 
- 	return (C_RBASE *) new C_THISCLASS();
 
- }
 
- #endif
 
 
  |