2011-06-25 03:52:11 +02:00
|
|
|
|
//CODED by Veliant, Leency, Nable. GNU GPL licence.
|
|
|
|
|
|
|
|
|
|
#startaddress 0
|
|
|
|
|
#code32 TRUE
|
|
|
|
|
|
|
|
|
|
char os_name[8] = {'M','E','N','U','E','T','0','1'};
|
|
|
|
|
dword os_version = 0x00000001;
|
|
|
|
|
dword start_addr = #main;
|
|
|
|
|
dword final_addr = #stop+32;
|
|
|
|
|
dword alloc_mem = #0x00100000;
|
|
|
|
|
dword x86esp_reg = #0x00100000;
|
|
|
|
|
dword I_Param = #param;
|
2011-08-20 17:36:15 +02:00
|
|
|
|
dword I_Path = #program_path;
|
2012-04-04 23:00:56 +02:00
|
|
|
|
char param[4096];
|
|
|
|
|
char program_path[4096];
|
2011-06-25 03:52:11 +02:00
|
|
|
|
|
|
|
|
|
//Events
|
|
|
|
|
#define evMouse 6
|
|
|
|
|
#define evButton 3
|
|
|
|
|
#define evKey 2
|
|
|
|
|
#define evReDraw 1
|
|
|
|
|
|
|
|
|
|
//Button options
|
|
|
|
|
#define BT_DEL 0x80000000
|
|
|
|
|
#define BT_HIDE 0x40000000
|
|
|
|
|
#define BT_NOFRAME 0x20000000
|
|
|
|
|
|
|
|
|
|
#define OLD -1
|
|
|
|
|
#define true 1
|
|
|
|
|
#define false 0
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
struct mouse{
|
|
|
|
|
dword x,y,lkm,pkm,hor,vert;
|
|
|
|
|
void get();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void mouse::get()
|
|
|
|
|
{
|
|
|
|
|
EAX = 37;
|
|
|
|
|
EBX = 1;
|
|
|
|
|
$int 0x40
|
|
|
|
|
$mov ebx, eax
|
|
|
|
|
$shr eax, 16
|
|
|
|
|
$and ebx,0x0000FFFF
|
|
|
|
|
x = EAX;
|
|
|
|
|
y = EBX;
|
|
|
|
|
EAX = 37;
|
|
|
|
|
EBX = 2;
|
|
|
|
|
$int 0x40
|
|
|
|
|
$mov ebx, eax
|
|
|
|
|
$and eax, 0x00000001
|
|
|
|
|
$shr ebx, 1
|
|
|
|
|
$and ebx, 0x00000001
|
|
|
|
|
lkm = EAX;
|
|
|
|
|
pkm = EBX;
|
|
|
|
|
EAX = 37; //<2F><><EFBFBD>
|
|
|
|
|
EBX = 7;
|
|
|
|
|
$int 0x40
|
|
|
|
|
$mov ebx, eax
|
|
|
|
|
$shr eax, 16
|
|
|
|
|
$and ebx,0x0000FFFF
|
|
|
|
|
//hor = EAX;
|
|
|
|
|
vert = EBX;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct system_colors{
|
|
|
|
|
dword frame,grab,grab_button,grab_button_text,grab_text,work,work_button,work_button_text,work_text,work_graph;
|
|
|
|
|
void get();
|
|
|
|
|
};
|
|
|
|
|
void system_colors::get()
|
|
|
|
|
{
|
|
|
|
|
EAX = 48;
|
|
|
|
|
EBX = 3;
|
|
|
|
|
ECX = #frame;
|
|
|
|
|
EDX = 40;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
inline fastcall dword WaitEvent(){
|
|
|
|
|
EAX = 10;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall dword WaitEventTimeout(dword EBX){
|
|
|
|
|
EAX = 23;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall SetEventMask(dword EBX)
|
|
|
|
|
{
|
|
|
|
|
EAX = 40;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall ScancodesGeting(){
|
|
|
|
|
$mov eax,66;
|
|
|
|
|
$mov ebx,1;
|
|
|
|
|
$mov ecx,1; //᪠<><E1AAA0><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-20 17:36:15 +02:00
|
|
|
|
|
|
|
|
|
inline fastcall word GetKey(){ //Gluk fix
|
|
|
|
|
$push edx
|
|
|
|
|
@getkey:
|
|
|
|
|
$mov eax,2
|
|
|
|
|
$int 0x40
|
|
|
|
|
$cmp eax,1
|
|
|
|
|
$jne getkeyi
|
|
|
|
|
$mov ah,dh
|
|
|
|
|
$jmp getkeyii //jz?
|
|
|
|
|
@getkeyi:
|
|
|
|
|
$mov dh,ah
|
|
|
|
|
$jmp getkey
|
|
|
|
|
@getkeyii:
|
|
|
|
|
$pop edx
|
|
|
|
|
EAX = EAX >> 8;
|
2011-06-25 03:52:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-28 11:49:22 +01:00
|
|
|
|
|
|
|
|
|
inline fastcall Pause(dword EBX)
|
|
|
|
|
{ //<2F><>㧠, <20> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> ᥪ㭤<E1A5AA> EBX = value
|
|
|
|
|
$mov eax, 5
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//==================================================================
|
|
|
|
|
|
2011-06-25 03:52:11 +02:00
|
|
|
|
inline fastcall word GetButtonID(){
|
|
|
|
|
EAX = 17;
|
|
|
|
|
$int 0x40
|
|
|
|
|
EAX = EAX >> 8;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-28 11:49:22 +01:00
|
|
|
|
struct proc_info{
|
|
|
|
|
dword use_cpu;
|
|
|
|
|
word pos_in_stack,num_slot,rezerv1;
|
|
|
|
|
char name[11];
|
|
|
|
|
char rezerv2;
|
|
|
|
|
dword adress,use_memory,ID,left,top,width,height;
|
|
|
|
|
word status_slot,rezerv3;
|
|
|
|
|
dword work_left,work_top,work_width,work_height;
|
|
|
|
|
char status_window;
|
|
|
|
|
void GetInfo(dword ECX);
|
|
|
|
|
byte reserved[1024-71];
|
|
|
|
|
#define SelfInfo -1
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void GetProcessInfo(dword EBX, ECX)
|
|
|
|
|
{
|
|
|
|
|
EAX = 9;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int GetProcessSlot(ECX) //ECX = process ID
|
|
|
|
|
{
|
|
|
|
|
EAX = 18;
|
|
|
|
|
EBX = 21;
|
|
|
|
|
$int 0x40;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-25 03:52:11 +02:00
|
|
|
|
inline fastcall ExitProcess(){
|
|
|
|
|
EAX = -1; // close this program
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-28 11:49:22 +01:00
|
|
|
|
inline fastcall KillProcess(dword ECX){
|
|
|
|
|
$mov eax,18;
|
|
|
|
|
$mov ebx,18;
|
2011-06-25 03:52:11 +02:00
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-28 11:49:22 +01:00
|
|
|
|
//==================================================================
|
2011-06-25 03:52:11 +02:00
|
|
|
|
|
2011-09-30 19:37:08 +02:00
|
|
|
|
//eax = <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (1=eng, 2=fi, 3=ger, 4=rus)
|
|
|
|
|
inline fastcall int GetSystemLanguage(){
|
|
|
|
|
EAX = 26;
|
|
|
|
|
EBX = 5;
|
|
|
|
|
$int 0x40
|
|
|
|
|
RETURN EAX;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-25 03:52:11 +02:00
|
|
|
|
inline fastcall void DrawTitle(dword ECX)
|
|
|
|
|
{
|
|
|
|
|
EAX = 71;
|
|
|
|
|
EBX = 1;
|
|
|
|
|
$int 0x40;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall dword GetSkinWidth()
|
|
|
|
|
{
|
|
|
|
|
EAX = 48;
|
|
|
|
|
EBX = 4;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-22 14:28:02 +01:00
|
|
|
|
inline fastcall void SetSystemSkin(ECX){
|
2011-06-25 03:52:11 +02:00
|
|
|
|
EAX = 48;
|
|
|
|
|
EBX = 8;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall dword GetScreenWidth()
|
|
|
|
|
{
|
|
|
|
|
EAX = 14;
|
|
|
|
|
EBX = 4;
|
|
|
|
|
$int 0x40
|
|
|
|
|
$shr eax, 16
|
|
|
|
|
$and eax,0x0000FFFF
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall MoveSize(dword EBX,ECX,EDX,ESI)
|
|
|
|
|
{
|
|
|
|
|
EAX = 67;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall dword LoadLibrary(dword ECX)
|
|
|
|
|
{
|
|
|
|
|
$mov eax, 68
|
|
|
|
|
$mov ebx, 19
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
inline fastcall dword strlen(dword EDI){
|
|
|
|
|
EAX=0;
|
|
|
|
|
ECX=-1;
|
|
|
|
|
$REPNE $SCASB
|
|
|
|
|
EAX-=2+ECX;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall copystr(dword ESI,EDI)
|
|
|
|
|
{
|
|
|
|
|
$cld
|
|
|
|
|
l1:
|
|
|
|
|
$lodsb
|
|
|
|
|
$stosb
|
|
|
|
|
$test al,al
|
|
|
|
|
$jnz l1
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-30 19:37:08 +02:00
|
|
|
|
|
2011-06-25 03:52:11 +02:00
|
|
|
|
byte fastcall TestBit(EAX, CL)
|
|
|
|
|
{
|
|
|
|
|
$shr eax,cl
|
|
|
|
|
$and eax,1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char buffer[11]="";
|
|
|
|
|
inline fastcall dword IntToStr(dword ESI)
|
|
|
|
|
{
|
|
|
|
|
$mov edi, #buffer
|
|
|
|
|
$mov ecx, 10
|
|
|
|
|
$test esi, esi
|
|
|
|
|
$jns f1
|
|
|
|
|
$mov al, '-'
|
|
|
|
|
$stosb
|
|
|
|
|
$neg esi
|
|
|
|
|
f1:
|
|
|
|
|
$mov eax, esi
|
|
|
|
|
$push -'0'
|
|
|
|
|
f2:
|
|
|
|
|
$xor edx, edx
|
|
|
|
|
$div ecx
|
|
|
|
|
$push edx
|
|
|
|
|
$test eax, eax
|
|
|
|
|
$jnz f2
|
|
|
|
|
f3:
|
|
|
|
|
$pop eax
|
|
|
|
|
$add al, '0'
|
|
|
|
|
$stosb
|
|
|
|
|
$jnz f3
|
|
|
|
|
$mov eax, #buffer
|
|
|
|
|
$ret
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline fastcall dword StrToInt()
|
|
|
|
|
{
|
|
|
|
|
ESI=EDI=EAX;
|
|
|
|
|
IF(DSBYTE[ESI]=='-')ESI++;
|
|
|
|
|
EAX=0;
|
|
|
|
|
BH=AL;
|
|
|
|
|
do{
|
|
|
|
|
BL=DSBYTE[ESI]-'0';
|
|
|
|
|
EAX=EAX*10+EBX;
|
|
|
|
|
ESI++;
|
|
|
|
|
}while(DSBYTE[ESI]>0);
|
|
|
|
|
IF(DSBYTE[EDI]=='-') -EAX;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline fastcall int strcmp(ESI, EDI)
|
|
|
|
|
{
|
|
|
|
|
loop()
|
|
|
|
|
{
|
|
|
|
|
IF (DSBYTE[ESI]<DSBYTE[EDI]) RETURN -1;
|
|
|
|
|
IF (DSBYTE[ESI]>DSBYTE[EDI]) RETURN 1;
|
|
|
|
|
IF (DSBYTE[ESI]=='\0') RETURN 0;
|
|
|
|
|
ESI++;
|
|
|
|
|
EDI++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall unsigned int find_symbol(ESI,BL)
|
|
|
|
|
{
|
|
|
|
|
int jj=0, last=-1;
|
|
|
|
|
do{
|
|
|
|
|
jj++;
|
|
|
|
|
$lodsb
|
|
|
|
|
IF(AL==BL) last=jj;
|
|
|
|
|
} while(AL!=0);
|
|
|
|
|
return last;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline fastcall dword upcase(dword ESI)
|
|
|
|
|
{
|
|
|
|
|
do{
|
|
|
|
|
AL=DSBYTE[ESI];
|
|
|
|
|
IF(AL>='a')IF(AL<='z')DSBYTE[ESI]=AL&0x5f;
|
|
|
|
|
ESI++;
|
|
|
|
|
}while(AL!=0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*inline fastcall void lowcase(ESI)
|
|
|
|
|
{
|
|
|
|
|
do{
|
|
|
|
|
$LODSB
|
|
|
|
|
IF(AL>='A')&&(AL<='Z'){
|
|
|
|
|
AL+=0x20;
|
|
|
|
|
DSBYTE[ESI-1]=AL;
|
|
|
|
|
CONTINUE;
|
|
|
|
|
}
|
|
|
|
|
}while(AL!=0);
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
inline fastcall lowcase(ESI)
|
|
|
|
|
{
|
|
|
|
|
do{
|
|
|
|
|
$LODSB
|
|
|
|
|
IF(AL>='A')&&(AL<='Z'){
|
|
|
|
|
AL+=0x20;
|
|
|
|
|
DSBYTE[ESI-1]=AL;
|
|
|
|
|
CONTINUE;
|
|
|
|
|
}
|
|
|
|
|
}while(AL!=0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dword Hex2Symb(char* htmlcolor)
|
|
|
|
|
{
|
|
|
|
|
dword j=0, symbol=0;
|
|
|
|
|
char ch=0x00;
|
|
|
|
|
FOR (;j<2;j++)
|
|
|
|
|
{
|
|
|
|
|
ch=ESBYTE[htmlcolor+j];
|
2011-06-25 14:58:55 +02:00
|
|
|
|
IF (ch==0x0d) || (ch=='\9') RETURN '';
|
2011-06-25 03:52:11 +02:00
|
|
|
|
IF ((ch>='0') && (ch<='9')) ch -= '0';
|
|
|
|
|
IF ((ch>='A') && (ch<='F')) ch -= 'A'-10;
|
|
|
|
|
IF ((ch>='a') && (ch<='f')) ch -= 'a'-10;
|
|
|
|
|
symbol = symbol*0x10 + ch;
|
|
|
|
|
}
|
|
|
|
|
wintodos(#symbol);
|
|
|
|
|
AL=symbol;
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-30 19:37:08 +02:00
|
|
|
|
/*int hex2char(char c)
|
|
|
|
|
{
|
|
|
|
|
if (c <=9)
|
|
|
|
|
return (c+48);
|
|
|
|
|
|
|
|
|
|
return (c - 10 + 'a');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int hex2char(dword c)
|
|
|
|
|
{
|
|
|
|
|
if (c <=9)
|
|
|
|
|
return (c+48);
|
|
|
|
|
|
|
|
|
|
return (c - 10 + 'a');
|
|
|
|
|
}*/
|
|
|
|
|
|
2011-06-25 03:52:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void DefineAndDrawWindow(dword x,y,sizeX,sizeY,byte mainAreaType,dword mainAreaColour,byte headerType,dword headerColour,EDI)
|
|
|
|
|
{
|
2012-02-28 11:49:22 +01:00
|
|
|
|
EAX = 12; // function 12:tell os about windowdraw
|
|
|
|
|
EBX = 1;
|
|
|
|
|
$int 0x40
|
|
|
|
|
|
2011-06-25 03:52:11 +02:00
|
|
|
|
EBX = x << 16 + sizeX;
|
|
|
|
|
ECX = y << 16 + sizeY;
|
|
|
|
|
EDX = mainAreaType << 24 | mainAreaColour;
|
|
|
|
|
ESI = headerType << 24 | headerColour;
|
|
|
|
|
$xor eax,eax
|
|
|
|
|
$int 0x40
|
2012-02-28 11:49:22 +01:00
|
|
|
|
|
|
|
|
|
EAX = 12; // function 12:tell os about windowdraw
|
|
|
|
|
EBX = 2;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-25 03:52:11 +02:00
|
|
|
|
|
|
|
|
|
inline fastcall dword CreateThread(dword ECX,EDX)
|
|
|
|
|
{
|
|
|
|
|
EAX = 51;
|
|
|
|
|
EBX = 1;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-22 14:28:02 +01:00
|
|
|
|
inline fastcall int GetSlot(dword ECX)
|
|
|
|
|
{
|
|
|
|
|
EAX = 18;
|
|
|
|
|
EBX = 21;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall int GetActiveProcess()
|
|
|
|
|
{
|
|
|
|
|
EAX = 18;
|
|
|
|
|
EBX = 7;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-06-25 03:52:11 +02:00
|
|
|
|
void WriteText(dword x,y,byte fontType, dword color, EDX, ESI)
|
|
|
|
|
{
|
|
|
|
|
EAX = 4;
|
|
|
|
|
EBX = x<<16+y;
|
|
|
|
|
ECX = fontType<<24+color;
|
|
|
|
|
$int 0x40;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-10 10:54:53 +01:00
|
|
|
|
void CopyScreen(dword EBX, x, y, sizeX, sizeY)
|
|
|
|
|
{
|
|
|
|
|
EAX = 36;
|
|
|
|
|
ECX = sizeX << 16 + sizeY;
|
|
|
|
|
EDX = x << 16 + y;
|
|
|
|
|
$int 0x40;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-25 03:52:11 +02:00
|
|
|
|
void PutImage(dword EBX,w,h,x,y)
|
|
|
|
|
{
|
|
|
|
|
EAX = 7;
|
|
|
|
|
ECX = w<<16+h;
|
|
|
|
|
EDX = x<<16+y;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PutPaletteImage(dword EBX,w,h,x,y,ESI,EDI)
|
|
|
|
|
{
|
|
|
|
|
EAX = 65;
|
|
|
|
|
ECX = w<<16+h;
|
|
|
|
|
EDX = x<<16+y;
|
|
|
|
|
EBP = 0;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall void PutPixel(dword EBX,ECX,EDX){
|
|
|
|
|
EAX=1;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DrawBar(dword x,y,w,h,EDX)
|
|
|
|
|
{
|
|
|
|
|
EAX = 13;
|
|
|
|
|
EBX = x<<16+w;
|
|
|
|
|
ECX = y<<16+h;
|
|
|
|
|
$int 0x40
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DefineButton(dword x,y,w,h,EDX,ESI)
|
|
|
|
|
{
|
|
|
|
|
EAX = 8;
|
2012-03-30 12:14:05 +02:00
|
|
|
|
$push edx
|
|
|
|
|
EDX += BT_DEL; //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD> <20><>, <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
$int 0x40;
|
2011-06-25 03:52:11 +02:00
|
|
|
|
EBX = x<<16+w;
|
|
|
|
|
ECX = y<<16+h;
|
2012-03-30 12:14:05 +02:00
|
|
|
|
$pop edx
|
|
|
|
|
$int 0x40
|
2011-06-25 03:52:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline fastcall void DeleteButton(dword EDX)
|
|
|
|
|
{
|
|
|
|
|
EAX = 8;
|
|
|
|
|
EDX += BT_DEL;
|
|
|
|
|
$int 0x40;
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-30 19:37:08 +02:00
|
|
|
|
:void DrawRegion(dword x,y,width,height,color1)
|
2011-06-25 03:52:11 +02:00
|
|
|
|
{
|
|
|
|
|
DrawBar(x,y,width,1,color1); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ᢥ<><E1A2A5><EFBFBD>
|
|
|
|
|
DrawBar(x,y+height,width,1,color1); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ᭨<><E1ADA8>
|
|
|
|
|
DrawBar(x,y,1,height,color1); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <><E1ABA5>
|
|
|
|
|
DrawBar(x+width,y,1,height+1,color1); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><>ࠢ<EFBFBD>
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-30 19:37:08 +02:00
|
|
|
|
:void DrawRegion_3D(dword x,y,width,height,color1,color2)
|
2011-06-25 03:52:11 +02:00
|
|
|
|
{
|
|
|
|
|
DrawBar(x,y,width+1,1,color1); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ᢥ<><E1A2A5><EFBFBD>
|
|
|
|
|
DrawBar(x,y+1,1,height-1,color1); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <><E1ABA5>
|
|
|
|
|
DrawBar(x+width,y+1,1,height,color2); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ࠢ<EFBFBD>
|
|
|
|
|
DrawBar(x,y+height,width,1,color2); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ᭨<><E1ADA8>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DrawFlatButton(dword x,y,width,height,id,color,text)
|
|
|
|
|
{
|
|
|
|
|
DrawRegion_3D(x,y,width,height,0x94AECE,0x94AECE);
|
|
|
|
|
DrawRegion_3D(x+1,y+1,width-2,height-2,0xFFFFFF,0xC7C7C7);
|
|
|
|
|
DrawBar(x+2,y+2,width-3,height-3,color); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
IF (id<>0) DefineButton(x,y,width,height,id+BT_HIDE,0xEFEBEF); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
WriteText(-strlen(text)*6+width/2+x+1,height/2-3+y,0x80,0,text,0);
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-30 19:37:08 +02:00
|
|
|
|
:void DrawCircle(int x, y, r)
|
2011-06-25 03:52:11 +02:00
|
|
|
|
{
|
|
|
|
|
int i; float px=0, py=r, ii = r * 3.1415926 * 2;
|
2011-06-25 14:58:55 +02:00
|
|
|
|
FOR (i = 0; i < ii; i++)
|
2011-06-25 03:52:11 +02:00
|
|
|
|
{
|
|
|
|
|
PutPixel(px + x, y - py, 0);
|
|
|
|
|
px = py / r + px;
|
|
|
|
|
py = -px / r + py;
|
|
|
|
|
//Pause(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
inline fastcall dword WriteDebug(dword EDX)
|
|
|
|
|
{
|
|
|
|
|
$push ebx
|
|
|
|
|
$push ecx
|
|
|
|
|
$mov eax, 63
|
|
|
|
|
$mov ebx, 1
|
|
|
|
|
next_char:
|
|
|
|
|
$mov ecx, DSDWORD[edx]
|
|
|
|
|
$or cl, cl
|
|
|
|
|
$jz done
|
|
|
|
|
$int 0x40
|
|
|
|
|
$inc edx
|
|
|
|
|
$jmp next_char
|
|
|
|
|
done:
|
|
|
|
|
$mov cl, 13
|
|
|
|
|
$int 0x40
|
|
|
|
|
$mov cl, 10
|
|
|
|
|
$int 0x40
|
|
|
|
|
$pop ecx
|
|
|
|
|
$pop ebx
|
|
|
|
|
}
|