2006-08-14 23:38:03 +02:00
|
|
|
; check mouse
|
|
|
|
;
|
|
|
|
;
|
|
|
|
; FB00 -> FB0F mouse memory 00 chunk count - FB0A-B x - FB0C-D y
|
|
|
|
; FB10 -> FB17 mouse color mem
|
|
|
|
; FB21 x move
|
|
|
|
; FB22 y move
|
|
|
|
; FB30 color temp
|
|
|
|
; FB28 high bits temp
|
|
|
|
; FB4A -> FB4D FB4A-B x-under - FB4C-D y-under
|
|
|
|
; FC00 -> FCFE com1/ps2 buffer
|
|
|
|
; FCFF com1/ps2 buffer count starting from FC00
|
|
|
|
|
|
|
|
uglobal
|
|
|
|
mousecount dd 0x0
|
|
|
|
mousedata dd 0x0
|
|
|
|
endg
|
|
|
|
|
|
|
|
mouse_delay dd 10
|
|
|
|
mouse_speed_factor dw 3
|
|
|
|
|
|
|
|
include 'm_ps2.inc'
|
|
|
|
include 'm_com1.inc'
|
|
|
|
include 'm_com2.inc'
|
|
|
|
|
|
|
|
|
|
|
|
;test_mario79:
|
|
|
|
; push esi
|
|
|
|
; push eax
|
|
|
|
; mov [write_error_to],process_test_m79+43
|
|
|
|
; movzx eax,al ;[DevErrorCode]
|
|
|
|
; call writehex
|
|
|
|
; mov esi,process_test_m79
|
|
|
|
; call sys_msg_board_str
|
|
|
|
; pop eax
|
|
|
|
; pop esi
|
|
|
|
; ret
|
|
|
|
;process_test_m79 db 'K : Process - test Mario79 error 00000000',13,10,0
|
|
|
|
|
|
|
|
__sys_draw_mouse_under:
|
|
|
|
; return old picture
|
|
|
|
|
2007-03-03 18:43:42 +01:00
|
|
|
cmp [set_hw_cursor], 0
|
|
|
|
jz @F
|
|
|
|
pushad
|
|
|
|
movzx eax,word [X_UNDER]
|
|
|
|
movzx ebx,word [Y_UNDER]
|
|
|
|
stdcall [hw_restore], eax, ebx
|
|
|
|
popad
|
|
|
|
ret
|
|
|
|
@@:
|
2006-08-14 23:38:03 +02:00
|
|
|
pushad
|
|
|
|
xor ecx,ecx
|
|
|
|
xor edx,edx
|
|
|
|
align 4
|
2007-03-03 18:43:42 +01:00
|
|
|
mres:
|
|
|
|
movzx eax,word [X_UNDER]
|
|
|
|
movzx ebx,word [Y_UNDER]
|
2006-08-14 23:38:03 +02:00
|
|
|
add eax,ecx
|
|
|
|
add ebx,edx
|
|
|
|
push ecx
|
|
|
|
push edx
|
2007-03-03 18:43:42 +01:00
|
|
|
push eax
|
|
|
|
push ebx
|
|
|
|
mov eax,edx
|
|
|
|
shl eax,6
|
|
|
|
shl ecx,2
|
|
|
|
add eax,ecx
|
|
|
|
add eax,mouseunder
|
|
|
|
mov ecx,[eax]
|
|
|
|
pop ebx
|
|
|
|
pop eax
|
|
|
|
mov edi, 1 ;force
|
2006-08-14 23:38:03 +02:00
|
|
|
call [putpixel]
|
|
|
|
pop edx
|
|
|
|
pop ecx
|
|
|
|
inc ecx
|
2007-03-03 18:43:42 +01:00
|
|
|
cmp ecx, 16
|
2006-08-14 23:38:03 +02:00
|
|
|
jnz mres
|
|
|
|
xor ecx, ecx
|
|
|
|
inc edx
|
2007-03-03 18:43:42 +01:00
|
|
|
cmp edx, 24
|
2006-08-14 23:38:03 +02:00
|
|
|
jnz mres
|
|
|
|
popad
|
|
|
|
ret
|
|
|
|
|
|
|
|
save_draw_mouse:
|
2007-03-03 18:43:42 +01:00
|
|
|
|
|
|
|
cmp [set_hw_cursor], 0
|
|
|
|
jz @F
|
|
|
|
pushad
|
|
|
|
|
|
|
|
mov [X_UNDER],ax
|
|
|
|
mov [Y_UNDER],bx
|
|
|
|
movzx eax,word [MOUSE_Y]
|
|
|
|
movzx ebx,word [MOUSE_X]
|
|
|
|
push eax
|
|
|
|
push ebx
|
|
|
|
|
|
|
|
mov ecx, [ScreenWidth]
|
|
|
|
inc ecx
|
|
|
|
mul ecx
|
|
|
|
movzx edx, byte [display_data+ebx+eax]
|
|
|
|
shl edx, 8
|
|
|
|
mov ecx, [edx+SLOT_BASE+APPDATA.cursor]
|
|
|
|
|
|
|
|
cmp [ecx+CURSOR.magic], 'CURS'
|
|
|
|
jne .fail
|
|
|
|
; cmp [ecx+CURSOR.size], CURSOR_SIZE
|
|
|
|
; jne .fail
|
|
|
|
push ecx
|
|
|
|
call [set_hw_cursor]
|
|
|
|
popad
|
|
|
|
ret
|
|
|
|
.fail:
|
|
|
|
mov ecx, [def_cursor]
|
|
|
|
mov [edx+SLOT_BASE+APPDATA.cursor], ecx
|
|
|
|
push ecx
|
|
|
|
call [set_hw_cursor]
|
|
|
|
popad
|
|
|
|
ret
|
|
|
|
|
|
|
|
@@:
|
2006-08-14 23:38:03 +02:00
|
|
|
pushad
|
|
|
|
; save & draw
|
2007-03-03 18:43:42 +01:00
|
|
|
mov [X_UNDER],ax
|
|
|
|
mov [Y_UNDER],bx
|
2006-08-14 23:38:03 +02:00
|
|
|
push eax
|
|
|
|
push ebx
|
2007-03-03 18:43:42 +01:00
|
|
|
mov ecx,0
|
|
|
|
mov edx,0
|
|
|
|
align 4
|
|
|
|
drm:
|
|
|
|
push eax
|
|
|
|
push ebx
|
|
|
|
push ecx
|
|
|
|
push edx
|
|
|
|
; helloworld
|
|
|
|
push ecx
|
2006-08-14 23:38:03 +02:00
|
|
|
add eax,ecx ; save picture under mouse
|
|
|
|
add ebx,edx
|
2007-03-03 18:43:42 +01:00
|
|
|
push ecx
|
|
|
|
call getpixel
|
|
|
|
mov [COLOR_TEMP],ecx
|
|
|
|
pop ecx
|
|
|
|
mov eax,edx
|
|
|
|
shl eax,6
|
|
|
|
shl ecx,2
|
|
|
|
add eax,ecx
|
|
|
|
add eax,mouseunder
|
|
|
|
mov ebx,[COLOR_TEMP]
|
|
|
|
mov [eax],ebx
|
|
|
|
pop ecx
|
|
|
|
mov edi,edx ; y cycle
|
|
|
|
shl edi,4 ; *16 bytes per row
|
|
|
|
add edi,ecx ; x cycle
|
|
|
|
mov esi, edi
|
|
|
|
add edi, esi
|
|
|
|
add edi, esi ; *3
|
|
|
|
add edi,[MOUSE_PICTURE] ; we have our str address
|
|
|
|
mov esi, edi
|
|
|
|
add esi, 16*24*3
|
|
|
|
push ecx
|
|
|
|
mov ecx, [COLOR_TEMP]
|
2006-08-14 23:38:03 +02:00
|
|
|
call combine_colors
|
2007-03-03 18:43:42 +01:00
|
|
|
mov [MOUSE_COLOR_MEM], ecx
|
|
|
|
pop ecx
|
|
|
|
pop edx
|
|
|
|
pop ecx
|
|
|
|
pop ebx
|
|
|
|
pop eax
|
2006-08-14 23:38:03 +02:00
|
|
|
add eax,ecx ; we have x coord+cycle
|
|
|
|
add ebx,edx ; and y coord+cycle
|
2007-03-03 18:43:42 +01:00
|
|
|
push ecx
|
|
|
|
mov ecx, [MOUSE_COLOR_MEM]
|
2006-08-14 23:38:03 +02:00
|
|
|
mov edi, 1
|
|
|
|
call [putpixel]
|
2007-03-03 18:43:42 +01:00
|
|
|
pop ecx
|
2006-08-14 23:38:03 +02:00
|
|
|
mov ebx,[esp+0] ; pure y coord again
|
|
|
|
mov eax,[esp+4] ; and x
|
|
|
|
inc ecx ; +1 cycle
|
2007-03-03 18:43:42 +01:00
|
|
|
cmp ecx,16 ; if more than 16
|
2006-08-14 23:38:03 +02:00
|
|
|
jnz drm
|
2007-03-03 18:43:42 +01:00
|
|
|
xor ecx, ecx
|
2006-08-14 23:38:03 +02:00
|
|
|
inc edx
|
2007-03-03 18:43:42 +01:00
|
|
|
cmp edx,24
|
2006-08-14 23:38:03 +02:00
|
|
|
jnz drm
|
2007-03-03 18:43:42 +01:00
|
|
|
add esp,8
|
2006-08-14 23:38:03 +02:00
|
|
|
popad
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
|
|
combine_colors:
|
|
|
|
; in
|
|
|
|
; ecx - color ( 00 RR GG BB )
|
|
|
|
; edi - ref to new color byte
|
|
|
|
; esi - ref to alpha byte
|
|
|
|
;
|
|
|
|
; out
|
|
|
|
; ecx - new color ( roughly (ecx*[esi]>>8)+([edi]*[esi]>>8) )
|
2007-03-03 18:43:42 +01:00
|
|
|
push eax
|
|
|
|
push ebx
|
|
|
|
push edx
|
2006-08-14 23:38:03 +02:00
|
|
|
push ecx
|
2007-03-03 18:43:42 +01:00
|
|
|
xor ecx, ecx
|
|
|
|
; byte 2
|
|
|
|
mov eax, 0xff
|
|
|
|
sub al, [esi+0]
|
|
|
|
mov ebx, [esp]
|
|
|
|
shr ebx, 16
|
|
|
|
and ebx, 0xff
|
|
|
|
mul ebx
|
|
|
|
shr eax, 8
|
|
|
|
add ecx, eax
|
|
|
|
xor eax, eax
|
|
|
|
xor ebx, ebx
|
|
|
|
mov al, [edi+0]
|
|
|
|
mov bl, [esi+0]
|
|
|
|
mul ebx
|
|
|
|
shr eax, 8
|
|
|
|
add ecx, eax
|
|
|
|
shl ecx, 8
|
|
|
|
; byte 1
|
|
|
|
mov eax, 0xff
|
|
|
|
sub al, [esi+1]
|
|
|
|
mov ebx, [esp]
|
|
|
|
shr ebx, 8
|
|
|
|
and ebx, 0xff
|
|
|
|
mul ebx
|
|
|
|
shr eax, 8
|
|
|
|
add ecx, eax
|
|
|
|
xor eax, eax
|
|
|
|
xor ebx, ebx
|
|
|
|
mov al, [edi+1]
|
|
|
|
mov bl, [esi+1]
|
|
|
|
mul ebx
|
|
|
|
shr eax, 8
|
|
|
|
add ecx, eax
|
|
|
|
shl ecx, 8
|
|
|
|
; byte 2
|
|
|
|
mov eax, 0xff
|
|
|
|
sub al, [esi+2]
|
|
|
|
mov ebx, [esp]
|
|
|
|
and ebx, 0xff
|
|
|
|
mul ebx
|
|
|
|
shr eax, 8
|
|
|
|
add ecx, eax
|
|
|
|
xor eax, eax
|
|
|
|
xor ebx, ebx
|
|
|
|
mov al, [edi+2]
|
|
|
|
mov bl, [esi+2]
|
|
|
|
mul ebx
|
|
|
|
shr eax, 8
|
|
|
|
add ecx, eax
|
|
|
|
pop eax
|
|
|
|
pop edx
|
|
|
|
pop ebx
|
|
|
|
pop eax
|
2006-08-14 23:38:03 +02:00
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
|
|
__sys_disable_mouse:
|
2007-03-03 18:43:42 +01:00
|
|
|
cmp dword [MOUSE_VISIBLE],dword 0
|
2006-08-14 23:38:03 +02:00
|
|
|
je @f
|
|
|
|
ret
|
2007-03-03 18:43:42 +01:00
|
|
|
@@:
|
2006-08-14 23:38:03 +02:00
|
|
|
pushad
|
2007-03-03 18:43:42 +01:00
|
|
|
cmp [CURRENT_TASK],dword 1
|
2006-08-14 23:38:03 +02:00
|
|
|
je disable_m
|
2007-03-03 18:43:42 +01:00
|
|
|
mov edx,[CURRENT_TASK]
|
2006-08-14 23:38:03 +02:00
|
|
|
shl edx,5
|
|
|
|
add edx,window_data
|
2007-03-03 18:43:42 +01:00
|
|
|
movzx eax, word [MOUSE_X]
|
|
|
|
movzx ebx, word [MOUSE_Y]
|
|
|
|
mov ecx,[ScreenWidth]
|
|
|
|
inc ecx
|
2006-08-14 23:38:03 +02:00
|
|
|
imul ecx,ebx
|
|
|
|
add ecx,eax
|
|
|
|
add ecx, display_data
|
2007-03-03 18:43:42 +01:00
|
|
|
mov eax, [CURRENT_TASK]
|
2006-08-14 23:38:03 +02:00
|
|
|
movzx ebx, byte [ecx]
|
|
|
|
cmp eax,ebx
|
|
|
|
je yes_mouse_disable
|
2007-03-03 18:43:42 +01:00
|
|
|
movzx ebx, byte [ecx+16]
|
2006-08-14 23:38:03 +02:00
|
|
|
cmp eax,ebx
|
|
|
|
je yes_mouse_disable
|
2007-03-03 18:43:42 +01:00
|
|
|
mov ebx,[ScreenWidth]
|
2006-08-14 23:38:03 +02:00
|
|
|
inc ebx
|
2007-03-03 18:43:42 +01:00
|
|
|
imul ebx,10
|
2006-08-14 23:38:03 +02:00
|
|
|
add ecx,ebx
|
|
|
|
movzx ebx, byte [ecx]
|
|
|
|
cmp eax,ebx
|
|
|
|
je yes_mouse_disable
|
2007-03-03 18:43:42 +01:00
|
|
|
movzx ebx, byte [ecx+16]
|
2006-08-14 23:38:03 +02:00
|
|
|
cmp eax,ebx
|
|
|
|
je yes_mouse_disable
|
|
|
|
jmp no_mouse_disable
|
|
|
|
yes_mouse_disable:
|
2007-03-03 18:43:42 +01:00
|
|
|
mov edx,[CURRENT_TASK]
|
2006-08-14 23:38:03 +02:00
|
|
|
shl edx,5
|
|
|
|
add edx,window_data
|
2007-03-03 18:43:42 +01:00
|
|
|
movzx eax, word [MOUSE_X]
|
|
|
|
movzx ebx, word [MOUSE_Y]
|
2006-08-14 23:38:03 +02:00
|
|
|
mov ecx,[edx+0] ; mouse inside the area ?
|
2007-03-03 18:43:42 +01:00
|
|
|
add eax,14
|
2006-08-14 23:38:03 +02:00
|
|
|
cmp eax,ecx
|
2007-03-03 18:43:42 +01:00
|
|
|
jb no_mouse_disable
|
|
|
|
sub eax,14
|
2006-08-14 23:38:03 +02:00
|
|
|
add ecx,[edx+8]
|
|
|
|
cmp eax,ecx
|
|
|
|
jg no_mouse_disable
|
|
|
|
mov ecx,[edx+4]
|
2007-03-03 18:43:42 +01:00
|
|
|
add ebx,20
|
2006-08-14 23:38:03 +02:00
|
|
|
cmp ebx,ecx
|
2007-03-03 18:43:42 +01:00
|
|
|
jb no_mouse_disable
|
|
|
|
sub ebx,20
|
2006-08-14 23:38:03 +02:00
|
|
|
add ecx,[edx+12]
|
|
|
|
cmp ebx,ecx
|
|
|
|
jg no_mouse_disable
|
|
|
|
disable_m:
|
2007-03-03 18:43:42 +01:00
|
|
|
cmp dword [MOUSE_VISIBLE],dword 0
|
2006-08-14 23:38:03 +02:00
|
|
|
jne no_mouse_disable
|
|
|
|
cli
|
2007-03-03 18:43:42 +01:00
|
|
|
call [draw_mouse_under]
|
2006-08-14 23:38:03 +02:00
|
|
|
sti
|
2007-03-03 18:43:42 +01:00
|
|
|
mov [MOUSE_VISIBLE],dword 1
|
2006-08-14 23:38:03 +02:00
|
|
|
no_mouse_disable:
|
|
|
|
popad
|
|
|
|
ret
|
|
|
|
|
|
|
|
__sys_draw_pointer:
|
|
|
|
cmp [mouse_pause],0
|
|
|
|
je @f
|
|
|
|
ret
|
|
|
|
@@:
|
|
|
|
push eax
|
|
|
|
mov eax,[timer_ticks]
|
|
|
|
sub eax,[MouseTickCounter]
|
|
|
|
cmp eax,1
|
|
|
|
ja @f
|
|
|
|
pop eax
|
|
|
|
ret
|
|
|
|
@@:
|
|
|
|
mov eax,[timer_ticks]
|
|
|
|
mov [MouseTickCounter],eax
|
|
|
|
pop eax
|
|
|
|
pushad
|
2007-03-03 18:43:42 +01:00
|
|
|
cmp dword [MOUSE_VISIBLE],dword 0 ; mouse visible ?
|
2006-08-14 23:38:03 +02:00
|
|
|
je chms00
|
2007-03-03 18:43:42 +01:00
|
|
|
mov [MOUSE_VISIBLE], dword 0
|
|
|
|
movzx ebx,word [MOUSE_Y]
|
|
|
|
movzx eax,word [MOUSE_X]
|
2006-08-14 23:38:03 +02:00
|
|
|
cli
|
|
|
|
call save_draw_mouse
|
|
|
|
sti
|
|
|
|
nodmu2:
|
|
|
|
popad
|
|
|
|
ret
|
|
|
|
chms00:
|
2007-03-03 18:43:42 +01:00
|
|
|
movzx ecx,word [X_UNDER]
|
|
|
|
movzx edx,word [Y_UNDER]
|
|
|
|
movzx ebx,word [MOUSE_Y]
|
|
|
|
movzx eax,word [MOUSE_X]
|
2006-08-14 23:38:03 +02:00
|
|
|
cmp eax,ecx
|
|
|
|
jne redrawmouse
|
|
|
|
cmp ebx,edx
|
|
|
|
jne redrawmouse
|
|
|
|
jmp nodmp
|
|
|
|
redrawmouse:
|
|
|
|
cli
|
|
|
|
call [draw_mouse_under]
|
|
|
|
call save_draw_mouse
|
|
|
|
sti
|
|
|
|
nodmp:
|
|
|
|
popad
|
|
|
|
ret
|
|
|
|
|