2007-03-26 14:18:08 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
2008-12-28 22:21:41 +01:00
|
|
|
;; Copyright (C) KolibriOS team 2004-2008. All rights reserved. ;;
|
2007-03-26 14:18:08 +02:00
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;; ;;
|
|
|
|
;; VESA20.INC ;;
|
|
|
|
;; ;;
|
|
|
|
;; Vesa 2.0 functions for MenuetOS ;;
|
|
|
|
;; ;;
|
|
|
|
;; Copyright 2002 Ville Turjanmaa ;;
|
|
|
|
;; Alexey, kgaz@crosswindws.net ;;
|
|
|
|
;; - Voodoo compatible graphics ;;
|
|
|
|
;; Juan M. Caravaca ;;
|
|
|
|
;; - Graphics optimimizations eg. drawline ;;
|
|
|
|
;; ;;
|
|
|
|
;; See file COPYING for details ;;
|
|
|
|
;; ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2005-10-06 19:56:22 +02:00
|
|
|
|
2007-07-27 15:52:03 +02:00
|
|
|
$Revision$
|
|
|
|
|
|
|
|
|
2005-10-06 19:56:22 +02:00
|
|
|
; If you're planning to write your own video driver I suggest
|
|
|
|
; you replace the VESA12.INC file and see those instructions.
|
|
|
|
|
2008-02-22 13:38:59 +01:00
|
|
|
;Screen_Max_X equ 0xfe00
|
|
|
|
;Screen_Max_Y equ 0xfe04
|
2007-03-01 21:32:19 +01:00
|
|
|
;BytesPerScanLine equ 0xfe08
|
|
|
|
;LFBAddress equ 0xfe80
|
|
|
|
;ScreenBPP equ 0xfbf1
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;*************************************************
|
|
|
|
; getpixel
|
|
|
|
;
|
|
|
|
; in:
|
|
|
|
; eax = x coordinate
|
|
|
|
; ebx = y coordinate
|
|
|
|
;
|
|
|
|
; ret:
|
|
|
|
; ecx = 00 RR GG BB
|
|
|
|
|
|
|
|
getpixel:
|
2007-04-24 10:56:03 +02:00
|
|
|
push eax ebx edx edi
|
|
|
|
call dword [GETPIXEL]
|
|
|
|
pop edi edx ebx eax
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
Vesa20_getpixel24:
|
2007-04-24 10:56:03 +02:00
|
|
|
; eax = x
|
|
|
|
; ebx = y
|
|
|
|
imul ebx, [BytesPerScanLine] ; ebx = y * y multiplier
|
|
|
|
lea edi, [eax+eax*2] ; edi = x*3
|
|
|
|
add edi, ebx ; edi = x*3+(y*y multiplier)
|
2009-12-01 14:32:57 +01:00
|
|
|
mov ecx, [LFB_BASE+edi]
|
2007-04-24 10:56:03 +02:00
|
|
|
and ecx, 0xffffff
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
Vesa20_getpixel32:
|
2007-04-24 10:56:03 +02:00
|
|
|
imul ebx, [BytesPerScanLine] ; ebx = y * y multiplier
|
|
|
|
lea edi, [ebx+eax*4] ; edi = x*4+(y*y multiplier)
|
2009-12-01 14:32:57 +01:00
|
|
|
mov ecx, [LFB_BASE+edi]
|
2007-04-24 10:56:03 +02:00
|
|
|
and ecx, 0xffffff
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
;*************************************************
|
|
|
|
|
|
|
|
virtual at esp
|
|
|
|
putimg:
|
|
|
|
.real_sx dd ?
|
|
|
|
.real_sy dd ?
|
|
|
|
.image_sx dd ?
|
|
|
|
.image_sy dd ?
|
|
|
|
.image_cx dd ?
|
|
|
|
.image_cy dd ?
|
|
|
|
.pti dd ?
|
|
|
|
.abs_cx dd ?
|
|
|
|
.abs_cy dd ?
|
|
|
|
.line_increment dd ?
|
|
|
|
.winmap_newline dd ?
|
|
|
|
.screen_newline dd ?
|
2007-01-19 16:02:33 +01:00
|
|
|
.stack_data = 4*12
|
|
|
|
.edi dd ?
|
|
|
|
.esi dd ?
|
|
|
|
.ebp dd ?
|
2007-02-02 16:09:14 +01:00
|
|
|
.esp dd ?
|
|
|
|
.ebx dd ?
|
|
|
|
.edx dd ?
|
|
|
|
.ecx dd ?
|
|
|
|
.eax dd ?
|
|
|
|
.ret_addr dd ?
|
|
|
|
.arg_0 dd ?
|
2005-10-06 19:56:22 +02:00
|
|
|
end virtual
|
|
|
|
|
2007-01-19 16:02:33 +01:00
|
|
|
align 16
|
2005-10-06 19:56:22 +02:00
|
|
|
; ebx = pointer
|
|
|
|
; ecx = size [x|y]
|
|
|
|
; edx = coordinates [x|y]
|
2007-01-19 16:02:33 +01:00
|
|
|
; ebp = pointer to 'get' function
|
|
|
|
; esi = pointer to 'init' function
|
|
|
|
; edi = parameter for 'get' function
|
2007-04-24 10:56:03 +02:00
|
|
|
|
2005-10-06 19:56:22 +02:00
|
|
|
vesa20_putimage:
|
2007-04-24 10:56:03 +02:00
|
|
|
pushad
|
2009-12-01 14:32:57 +01:00
|
|
|
call [_display.disable_mouse]
|
2007-04-24 10:56:03 +02:00
|
|
|
sub esp, putimg.stack_data
|
|
|
|
; save pointer to image
|
|
|
|
mov [putimg.pti], ebx
|
|
|
|
; unpack the size
|
|
|
|
mov eax, ecx
|
|
|
|
and ecx, 0xFFFF
|
|
|
|
shr eax, 16
|
|
|
|
mov [putimg.image_sx], eax
|
|
|
|
mov [putimg.image_sy], ecx
|
|
|
|
; unpack the coordinates
|
|
|
|
mov eax, edx
|
|
|
|
and edx, 0xFFFF
|
|
|
|
shr eax, 16
|
|
|
|
mov [putimg.image_cx], eax
|
|
|
|
mov [putimg.image_cy], edx
|
|
|
|
; calculate absolute (i.e. screen) coordinates
|
|
|
|
mov eax, [TASK_BASE]
|
|
|
|
mov ebx, [eax-twdw + WDATA.box.left]
|
|
|
|
add ebx, [putimg.image_cx]
|
|
|
|
mov [putimg.abs_cx], ebx
|
|
|
|
mov ebx, [eax-twdw + WDATA.box.top]
|
|
|
|
add ebx, [putimg.image_cy]
|
|
|
|
mov [putimg.abs_cy], ebx
|
|
|
|
; real_sx = MIN(wnd_sx-image_cx, image_sx);
|
|
|
|
mov ebx, [eax-twdw + WDATA.box.width] ; ebx = wnd_sx
|
2006-08-21 15:06:02 +02:00
|
|
|
; \begin{diamond}[20.08.2006]
|
|
|
|
; note that WDATA.box.width is one pixel less than real window x-size
|
2007-04-24 10:56:03 +02:00
|
|
|
inc ebx
|
2006-08-21 15:06:02 +02:00
|
|
|
; \end{diamond}[20.08.2006]
|
2007-04-24 10:56:03 +02:00
|
|
|
sub ebx, [putimg.image_cx]
|
|
|
|
ja @f
|
|
|
|
add esp, putimg.stack_data
|
|
|
|
popad
|
|
|
|
ret
|
|
|
|
@@:
|
|
|
|
cmp ebx, [putimg.image_sx]
|
|
|
|
jbe .end_x
|
|
|
|
mov ebx, [putimg.image_sx]
|
|
|
|
.end_x:
|
|
|
|
mov [putimg.real_sx], ebx
|
|
|
|
; init real_sy
|
|
|
|
mov ebx, [eax-twdw + WDATA.box.height] ; ebx = wnd_sy
|
2006-08-21 15:06:02 +02:00
|
|
|
; \begin{diamond}[20.08.2006]
|
2007-04-24 10:56:03 +02:00
|
|
|
inc ebx
|
2006-08-21 15:06:02 +02:00
|
|
|
; \end{diamond}[20.08.2006]
|
2007-04-24 10:56:03 +02:00
|
|
|
sub ebx, [putimg.image_cy]
|
|
|
|
ja @f
|
|
|
|
add esp, putimg.stack_data
|
|
|
|
popad
|
|
|
|
ret
|
|
|
|
@@:
|
|
|
|
cmp ebx, [putimg.image_sy]
|
|
|
|
jbe .end_y
|
|
|
|
mov ebx, [putimg.image_sy]
|
|
|
|
.end_y:
|
|
|
|
mov [putimg.real_sy], ebx
|
|
|
|
; line increment
|
|
|
|
mov eax, [putimg.image_sx]
|
2008-11-06 09:56:18 +01:00
|
|
|
mov ecx, [putimg.real_sx]
|
|
|
|
sub eax, ecx
|
2007-04-24 10:56:03 +02:00
|
|
|
;; imul eax, [putimg.source_bpp]
|
|
|
|
; lea eax, [eax + eax * 2]
|
|
|
|
call esi
|
|
|
|
add eax, [putimg.arg_0]
|
|
|
|
mov [putimg.line_increment], eax
|
|
|
|
; winmap new line increment
|
2008-02-22 13:38:59 +01:00
|
|
|
mov eax, [Screen_Max_X]
|
2007-04-24 10:56:03 +02:00
|
|
|
inc eax
|
|
|
|
sub eax, [putimg.real_sx]
|
|
|
|
mov [putimg.winmap_newline], eax
|
|
|
|
; screen new line increment
|
|
|
|
mov eax, [BytesPerScanLine]
|
|
|
|
movzx ebx, byte [ScreenBPP]
|
|
|
|
shr ebx, 3
|
|
|
|
imul ecx, ebx
|
|
|
|
sub eax, ecx
|
|
|
|
mov [putimg.screen_newline], eax
|
|
|
|
; pointer to image
|
|
|
|
mov esi, [putimg.pti]
|
|
|
|
; pointer to screen
|
|
|
|
mov edx, [putimg.abs_cy]
|
|
|
|
imul edx, [BytesPerScanLine]
|
|
|
|
mov eax, [putimg.abs_cx]
|
|
|
|
movzx ebx, byte [ScreenBPP]
|
|
|
|
shr ebx, 3
|
|
|
|
imul eax, ebx
|
|
|
|
add edx, eax
|
|
|
|
; pointer to pixel map
|
|
|
|
mov eax, [putimg.abs_cy]
|
2008-02-22 13:38:59 +01:00
|
|
|
imul eax, [Screen_Max_X]
|
2007-04-24 10:56:03 +02:00
|
|
|
add eax, [putimg.abs_cy]
|
|
|
|
add eax, [putimg.abs_cx]
|
2009-12-01 14:32:57 +01:00
|
|
|
add eax, [_WinMapAddress]
|
2007-04-24 10:56:03 +02:00
|
|
|
xchg eax, ebp
|
|
|
|
; get process number
|
|
|
|
mov ebx, [CURRENT_TASK]
|
|
|
|
cmp byte [ScreenBPP], 32
|
|
|
|
je put_image_end_32
|
2005-10-06 19:56:22 +02:00
|
|
|
;put_image_end_24:
|
2007-04-24 10:56:03 +02:00
|
|
|
mov edi, [putimg.real_sy]
|
|
|
|
align 4
|
|
|
|
.new_line:
|
|
|
|
mov ecx, [putimg.real_sx]
|
|
|
|
; push ebp edx
|
|
|
|
align 4
|
|
|
|
.new_x:
|
|
|
|
push [putimg.edi]
|
|
|
|
mov eax, [putimg.ebp+4]
|
|
|
|
call eax
|
|
|
|
cmp [ebp], bl
|
|
|
|
jne .skip
|
|
|
|
; mov eax, [esi] ; eax = RRBBGGRR
|
2009-12-01 14:32:57 +01:00
|
|
|
mov [LFB_BASE+edx], ax
|
2007-04-24 10:56:03 +02:00
|
|
|
shr eax, 16
|
2009-12-01 14:32:57 +01:00
|
|
|
mov [LFB_BASE+edx+2], al
|
2007-04-24 10:56:03 +02:00
|
|
|
.skip:
|
|
|
|
; add esi, 3 ;[putimg.source_bpp]
|
|
|
|
add edx, 3
|
|
|
|
inc ebp
|
|
|
|
dec ecx
|
|
|
|
jnz .new_x
|
|
|
|
; pop edx ebp
|
|
|
|
add esi, [putimg.line_increment]
|
|
|
|
add edx, [putimg.screen_newline] ;[BytesPerScanLine]
|
2008-02-22 13:38:59 +01:00
|
|
|
add ebp, [putimg.winmap_newline] ;[Screen_Max_X]
|
2007-04-24 10:56:03 +02:00
|
|
|
; inc ebp
|
2008-11-06 09:56:18 +01:00
|
|
|
cmp [putimg.ebp], putimage_get1bpp
|
|
|
|
jz .correct
|
2008-11-11 11:55:26 +01:00
|
|
|
cmp [putimg.ebp], putimage_get2bpp
|
|
|
|
jz .correct
|
2008-11-06 09:56:18 +01:00
|
|
|
cmp [putimg.ebp], putimage_get4bpp
|
|
|
|
jnz @f
|
|
|
|
.correct:
|
|
|
|
mov eax, [putimg.edi]
|
|
|
|
mov byte [eax], 80h
|
|
|
|
@@:
|
2007-04-24 10:56:03 +02:00
|
|
|
dec edi
|
|
|
|
jnz .new_line
|
|
|
|
.finish:
|
|
|
|
add esp, putimg.stack_data
|
|
|
|
popad
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
put_image_end_32:
|
2007-04-24 10:56:03 +02:00
|
|
|
mov edi, [putimg.real_sy]
|
|
|
|
align 4
|
|
|
|
.new_line:
|
|
|
|
mov ecx, [putimg.real_sx]
|
|
|
|
; push ebp edx
|
|
|
|
align 4
|
|
|
|
.new_x:
|
|
|
|
push [putimg.edi]
|
|
|
|
mov eax, [putimg.ebp+4]
|
|
|
|
call eax
|
|
|
|
cmp [ebp], bl
|
|
|
|
jne .skip
|
|
|
|
; mov eax, [esi] ; ecx = RRBBGGRR
|
2009-12-01 14:32:57 +01:00
|
|
|
mov [LFB_BASE+edx], eax
|
2007-04-24 10:56:03 +02:00
|
|
|
.skip:
|
|
|
|
; add esi, [putimg.source_bpp]
|
|
|
|
add edx, 4
|
|
|
|
inc ebp
|
|
|
|
dec ecx
|
|
|
|
jnz .new_x
|
|
|
|
; pop edx ebp
|
|
|
|
add esi, [putimg.line_increment]
|
|
|
|
add edx, [putimg.screen_newline] ;[BytesPerScanLine]
|
2008-02-22 13:38:59 +01:00
|
|
|
add ebp, [putimg.winmap_newline] ;[Screen_Max_X]
|
2007-04-24 10:56:03 +02:00
|
|
|
; inc ebp
|
2008-11-06 09:56:18 +01:00
|
|
|
cmp [putimg.ebp], putimage_get1bpp
|
|
|
|
jz .correct
|
2008-11-11 11:55:26 +01:00
|
|
|
cmp [putimg.ebp], putimage_get2bpp
|
|
|
|
jz .correct
|
2008-11-06 09:56:18 +01:00
|
|
|
cmp [putimg.ebp], putimage_get4bpp
|
|
|
|
jnz @f
|
|
|
|
.correct:
|
|
|
|
mov eax, [putimg.edi]
|
|
|
|
mov byte [eax], 80h
|
|
|
|
@@:
|
2007-04-24 10:56:03 +02:00
|
|
|
dec edi
|
|
|
|
jnz .new_line
|
|
|
|
.finish:
|
|
|
|
add esp, putimg.stack_data
|
|
|
|
popad
|
|
|
|
call VGA__putimage
|
|
|
|
mov [EGA_counter],1
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
;*************************************************
|
|
|
|
align 4
|
|
|
|
__sys_putpixel:
|
|
|
|
|
|
|
|
; eax = x coordinate
|
|
|
|
; ebx = y coordinate
|
|
|
|
; ecx = ?? RR GG BB ; 0x01000000 negation
|
|
|
|
; edi = 0x00000001 force
|
|
|
|
|
|
|
|
;;; mov [novesachecksum], dword 0
|
2007-04-24 10:56:03 +02:00
|
|
|
pushad
|
2008-02-22 13:38:59 +01:00
|
|
|
cmp [Screen_Max_X], eax
|
2007-04-24 10:56:03 +02:00
|
|
|
jb .exit
|
2008-02-22 13:38:59 +01:00
|
|
|
cmp [Screen_Max_Y], ebx
|
2007-04-24 10:56:03 +02:00
|
|
|
jb .exit
|
2009-12-01 14:32:57 +01:00
|
|
|
test edi,1 ; force ?
|
|
|
|
jnz .forced
|
|
|
|
|
|
|
|
; not forced:
|
|
|
|
|
|
|
|
push eax
|
|
|
|
mov edx,[_display.width] ; screen x size
|
|
|
|
imul edx, ebx
|
|
|
|
add eax, [_WinMapAddress]
|
|
|
|
movzx edx, byte [eax+edx]
|
|
|
|
cmp edx, [CURRENT_TASK]
|
|
|
|
pop eax
|
|
|
|
jne .exit
|
|
|
|
|
|
|
|
.forced:
|
2007-04-24 10:56:03 +02:00
|
|
|
; check if negation
|
|
|
|
test ecx,0x01000000
|
|
|
|
jz .noneg
|
|
|
|
call getpixel
|
|
|
|
not ecx
|
|
|
|
mov [esp+32-8],ecx
|
|
|
|
.noneg:
|
|
|
|
; OK to set pixel
|
|
|
|
call dword [PUTPIXEL] ; call the real put_pixel function
|
|
|
|
.exit:
|
|
|
|
popad
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
align 4
|
|
|
|
Vesa20_putpixel24:
|
2007-04-24 10:56:03 +02:00
|
|
|
; eax = x
|
|
|
|
; ebx = y
|
|
|
|
imul ebx, [BytesPerScanLine] ; ebx = y * y multiplier
|
|
|
|
lea edi, [eax+eax*2] ; edi = x*3
|
|
|
|
mov eax, [esp+32-8+4]
|
2009-12-01 14:32:57 +01:00
|
|
|
mov [LFB_BASE+ebx+edi], ax
|
2007-04-24 10:56:03 +02:00
|
|
|
shr eax, 16
|
2009-12-01 14:32:57 +01:00
|
|
|
mov [LFB_BASE+ebx+edi+2], al
|
2007-04-24 10:56:03 +02:00
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
align 4
|
|
|
|
Vesa20_putpixel32:
|
2007-04-24 10:56:03 +02:00
|
|
|
; eax = x
|
|
|
|
; ebx = y
|
|
|
|
imul ebx, [BytesPerScanLine] ; ebx = y * y multiplier
|
|
|
|
lea edi, [ebx+eax*4] ; edi = x*4+(y*y multiplier)
|
|
|
|
mov eax, [esp+32-8+4] ; eax = color
|
2009-12-01 14:32:57 +01:00
|
|
|
mov [LFB_BASE+edi], eax
|
2007-04-24 10:56:03 +02:00
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
;*************************************************
|
|
|
|
|
|
|
|
;align 4
|
|
|
|
calculate_edi:
|
2007-04-24 10:56:03 +02:00
|
|
|
mov edi, ebx
|
2008-02-22 13:38:59 +01:00
|
|
|
imul edi, [Screen_Max_X]
|
2007-04-24 10:56:03 +02:00
|
|
|
add edi, ebx
|
|
|
|
add edi, eax
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
;*************************************************
|
|
|
|
|
|
|
|
; DRAWLINE
|
|
|
|
|
|
|
|
align 4
|
|
|
|
__sys_draw_line:
|
2006-01-13 19:30:12 +01:00
|
|
|
; inc [mouse_pause]
|
2009-12-01 14:32:57 +01:00
|
|
|
call [_display.disable_mouse]
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
; draw a line
|
|
|
|
; eax = HIWORD = x1
|
|
|
|
; LOWORD = x2
|
|
|
|
; ebx = HIWORD = y1
|
|
|
|
; LOWORD = y2
|
|
|
|
; ecx = color
|
|
|
|
; edi = force ?
|
|
|
|
pusha
|
|
|
|
|
|
|
|
dl_x1 equ esp+20
|
|
|
|
dl_y1 equ esp+16
|
|
|
|
dl_x2 equ esp+12
|
|
|
|
dl_y2 equ esp+8
|
|
|
|
dl_dx equ esp+4
|
|
|
|
dl_dy equ esp+0
|
|
|
|
|
2007-04-24 10:56:03 +02:00
|
|
|
xor edx, edx ; clear edx
|
|
|
|
xor esi, esi ; unpack arguments
|
|
|
|
xor ebp, ebp
|
|
|
|
mov si, ax ; esi = x2
|
|
|
|
mov bp, bx ; ebp = y2
|
|
|
|
shr eax, 16 ; eax = x1
|
|
|
|
shr ebx, 16 ; ebx = y1
|
|
|
|
push eax ; save x1
|
|
|
|
push ebx ; save y1
|
|
|
|
push esi ; save x2
|
|
|
|
push ebp ; save y2
|
|
|
|
; checking x-axis...
|
|
|
|
sub esi, eax ; esi = x2-x1
|
|
|
|
push esi ; save y2-y1
|
|
|
|
jl .x2lx1 ; is x2 less than x1 ?
|
|
|
|
jg .no_vline ; x1 > x2 ?
|
|
|
|
mov edx, ebp ; else (if x1=x2)
|
|
|
|
call vline
|
|
|
|
push edx ; necessary to rightly restore stack frame at .exit
|
|
|
|
jmp .exit
|
2005-10-06 19:56:22 +02:00
|
|
|
.x2lx1:
|
2007-04-24 10:56:03 +02:00
|
|
|
neg esi ; get esi absolute value
|
2005-10-06 19:56:22 +02:00
|
|
|
.no_vline:
|
2007-04-24 10:56:03 +02:00
|
|
|
; checking y-axis...
|
|
|
|
sub ebp, ebx ; ebp = y2-y1
|
|
|
|
push ebp ; save y2-y1
|
|
|
|
jl .y2ly1 ; is y2 less than y1 ?
|
|
|
|
jg .no_hline ; y1 > y2 ?
|
|
|
|
mov edx, [dl_x2] ; else (if y1=y2)
|
|
|
|
call hline
|
|
|
|
jmp .exit
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
.y2ly1:
|
2007-04-24 10:56:03 +02:00
|
|
|
neg ebp ; get ebp absolute value
|
2005-10-06 19:56:22 +02:00
|
|
|
.no_hline:
|
2007-04-24 10:56:03 +02:00
|
|
|
cmp ebp, esi
|
|
|
|
jle .x_rules ; |y2-y1| < |x2-x1| ?
|
|
|
|
cmp [dl_y2], ebx ; make sure y1 is at the begining
|
|
|
|
jge .no_reverse1
|
|
|
|
neg dword [dl_dx]
|
|
|
|
mov edx, [dl_x2]
|
|
|
|
mov [dl_x2], eax
|
|
|
|
mov [dl_x1], edx
|
|
|
|
mov edx, [dl_y2]
|
|
|
|
mov [dl_y2], ebx
|
|
|
|
mov [dl_y1], edx
|
2005-10-06 19:56:22 +02:00
|
|
|
.no_reverse1:
|
2007-04-24 10:56:03 +02:00
|
|
|
mov eax, [dl_dx]
|
|
|
|
cdq ; extend eax sing to edx
|
|
|
|
shl eax, 16 ; using 16bit fix-point maths
|
|
|
|
idiv ebp ; eax = ((x2-x1)*65536)/(y2-y1)
|
|
|
|
mov edx, ebp ; edx = counter (number of pixels to draw)
|
|
|
|
mov ebp, 1 *65536 ; <<16 ; ebp = dy = 1.0
|
|
|
|
mov esi, eax ; esi = dx
|
|
|
|
jmp .y_rules
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
.x_rules:
|
2007-04-24 10:56:03 +02:00
|
|
|
cmp [dl_x2], eax ; make sure x1 is at the begining
|
|
|
|
jge .no_reverse2
|
|
|
|
neg dword [dl_dy]
|
|
|
|
mov edx, [dl_x2]
|
|
|
|
mov [dl_x2], eax
|
|
|
|
mov [dl_x1], edx
|
|
|
|
mov edx, [dl_y2]
|
|
|
|
mov [dl_y2], ebx
|
|
|
|
mov [dl_y1], edx
|
2005-10-06 19:56:22 +02:00
|
|
|
.no_reverse2:
|
2007-04-24 10:56:03 +02:00
|
|
|
xor edx, edx
|
|
|
|
mov eax, [dl_dy]
|
|
|
|
cdq ; extend eax sing to edx
|
|
|
|
shl eax, 16 ; using 16bit fix-point maths
|
|
|
|
idiv esi ; eax = ((y2-y1)*65536)/(x2-x1)
|
|
|
|
mov edx, esi ; edx = counter (number of pixels to draw)
|
|
|
|
mov esi, 1 *65536 ;<< 16 ; esi = dx = 1.0
|
|
|
|
mov ebp, eax ; ebp = dy
|
2005-10-06 19:56:22 +02:00
|
|
|
.y_rules:
|
2007-04-24 10:56:03 +02:00
|
|
|
mov eax, [dl_x1]
|
|
|
|
mov ebx, [dl_y1]
|
|
|
|
shl eax, 16
|
|
|
|
shl ebx, 16
|
2005-10-06 19:56:22 +02:00
|
|
|
align 4
|
|
|
|
.draw:
|
2007-04-24 10:56:03 +02:00
|
|
|
push eax ebx
|
|
|
|
shr eax, 16
|
|
|
|
shr ebx, 16
|
|
|
|
call [putpixel]
|
|
|
|
pop ebx eax
|
|
|
|
add ebx, ebp ; y = y+dy
|
|
|
|
add eax, esi ; x = x+dx
|
|
|
|
dec edx
|
|
|
|
jnz .draw
|
|
|
|
; force last drawn pixel to be at (x2,y2)
|
|
|
|
mov eax, [dl_x2]
|
|
|
|
mov ebx, [dl_y2]
|
|
|
|
call [putpixel]
|
2005-10-06 19:56:22 +02:00
|
|
|
.exit:
|
2007-04-24 10:56:03 +02:00
|
|
|
add esp, 6*4
|
|
|
|
popa
|
2006-01-13 19:30:12 +01:00
|
|
|
; dec [mouse_pause]
|
|
|
|
call [draw_pointer]
|
2007-04-24 10:56:03 +02:00
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
hline:
|
|
|
|
; draw an horizontal line
|
|
|
|
; eax = x1
|
|
|
|
; edx = x2
|
|
|
|
; ebx = y
|
|
|
|
; ecx = color
|
|
|
|
; edi = force ?
|
2007-04-24 10:56:03 +02:00
|
|
|
push eax edx
|
|
|
|
cmp edx, eax ; make sure x2 is above x1
|
|
|
|
jge @f
|
|
|
|
xchg eax, edx
|
|
|
|
align 4
|
|
|
|
@@:
|
|
|
|
call [putpixel]
|
|
|
|
inc eax
|
|
|
|
cmp eax, edx
|
|
|
|
jle @b
|
|
|
|
pop edx eax
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
vline:
|
|
|
|
; draw a vertical line
|
|
|
|
; eax = x
|
|
|
|
; ebx = y1
|
|
|
|
; edx = y2
|
|
|
|
; ecx = color
|
|
|
|
; edi = force ?
|
2007-04-24 10:56:03 +02:00
|
|
|
push ebx edx
|
|
|
|
cmp edx, ebx ; make sure y2 is above y1
|
|
|
|
jge @f
|
|
|
|
xchg ebx, edx
|
|
|
|
align 4
|
|
|
|
@@:
|
|
|
|
call [putpixel]
|
|
|
|
inc ebx
|
|
|
|
cmp ebx, edx
|
|
|
|
jle @b
|
|
|
|
pop edx ebx
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
;*************************************************
|
|
|
|
|
|
|
|
|
|
|
|
virtual at esp
|
2007-04-24 10:56:03 +02:00
|
|
|
drbar:
|
|
|
|
.bar_sx dd ?
|
|
|
|
.bar_sy dd ?
|
|
|
|
.bar_cx dd ?
|
|
|
|
.bar_cy dd ?
|
|
|
|
.abs_cx dd ?
|
|
|
|
.abs_cy dd ?
|
|
|
|
.real_sx dd ?
|
|
|
|
.real_sy dd ?
|
|
|
|
.color dd ?
|
|
|
|
.line_inc_scr dd ?
|
|
|
|
.line_inc_map dd ?
|
|
|
|
.stack_data = 4*11
|
2005-10-06 19:56:22 +02:00
|
|
|
end virtual
|
|
|
|
|
|
|
|
align 4
|
|
|
|
; eax cx
|
|
|
|
; ebx cy
|
|
|
|
; ecx xe
|
|
|
|
; edx ye
|
|
|
|
; edi color
|
|
|
|
vesa20_drawbar:
|
2007-04-24 10:56:03 +02:00
|
|
|
pushad
|
2009-12-01 14:32:57 +01:00
|
|
|
call [_display.disable_mouse]
|
2007-04-24 10:56:03 +02:00
|
|
|
sub esp, drbar.stack_data
|
|
|
|
mov [drbar.color], edi
|
|
|
|
sub edx, ebx
|
|
|
|
jle .exit ;// mike.dld, 2005-01-29
|
|
|
|
sub ecx, eax
|
|
|
|
jle .exit ;// mike.dld, 2005-01-29
|
|
|
|
mov [drbar.bar_sy], edx
|
|
|
|
mov [drbar.bar_sx], ecx
|
|
|
|
mov [drbar.bar_cx], eax
|
|
|
|
mov [drbar.bar_cy], ebx
|
|
|
|
mov edi, [TASK_BASE]
|
|
|
|
add eax, [edi-twdw + WDATA.box.left] ; win_cx
|
|
|
|
add ebx, [edi-twdw + WDATA.box.top] ; win_cy
|
|
|
|
mov [drbar.abs_cx], eax
|
|
|
|
mov [drbar.abs_cy], ebx
|
|
|
|
; real_sx = MIN(wnd_sx-bar_cx, bar_sx);
|
|
|
|
mov ebx, [edi-twdw + WDATA.box.width] ; ebx = wnd_sx
|
2006-08-21 15:06:02 +02:00
|
|
|
; \begin{diamond}[20.08.2006]
|
|
|
|
; note that WDATA.box.width is one pixel less than real window x-size
|
2007-04-24 10:56:03 +02:00
|
|
|
inc ebx
|
2006-08-21 15:06:02 +02:00
|
|
|
; \end{diamond}[20.08.2006]
|
2007-04-24 10:56:03 +02:00
|
|
|
sub ebx, [drbar.bar_cx]
|
|
|
|
ja @f
|
|
|
|
.exit: ;// mike.dld, 2005-01-29
|
|
|
|
add esp, drbar.stack_data
|
|
|
|
popad
|
|
|
|
xor eax, eax
|
|
|
|
inc eax
|
|
|
|
ret
|
|
|
|
@@:
|
|
|
|
cmp ebx, [drbar.bar_sx]
|
|
|
|
jbe .end_x
|
|
|
|
mov ebx, [drbar.bar_sx]
|
|
|
|
.end_x:
|
|
|
|
mov [drbar.real_sx], ebx
|
|
|
|
; real_sy = MIN(wnd_sy-bar_cy, bar_sy);
|
|
|
|
mov ebx, [edi-twdw + WDATA.box.height] ; ebx = wnd_sy
|
2006-08-21 15:06:02 +02:00
|
|
|
; \begin{diamond}[20.08.2006]
|
2007-04-24 10:56:03 +02:00
|
|
|
inc ebx
|
2006-08-21 15:06:02 +02:00
|
|
|
; \end{diamond}
|
2007-04-24 10:56:03 +02:00
|
|
|
sub ebx, [drbar.bar_cy]
|
|
|
|
ja @f
|
|
|
|
add esp, drbar.stack_data
|
|
|
|
popad
|
|
|
|
xor eax, eax
|
|
|
|
inc eax
|
|
|
|
ret
|
|
|
|
@@:
|
|
|
|
cmp ebx, [drbar.bar_sy]
|
|
|
|
jbe .end_y
|
|
|
|
mov ebx, [drbar.bar_sy]
|
|
|
|
.end_y:
|
|
|
|
mov [drbar.real_sy], ebx
|
|
|
|
; line_inc_map
|
2008-02-22 13:38:59 +01:00
|
|
|
mov eax, [Screen_Max_X]
|
2007-04-24 10:56:03 +02:00
|
|
|
sub eax, [drbar.real_sx]
|
|
|
|
inc eax
|
|
|
|
mov [drbar.line_inc_map], eax
|
|
|
|
; line_inc_scr
|
|
|
|
mov eax, [drbar.real_sx]
|
|
|
|
movzx ebx, byte [ScreenBPP]
|
|
|
|
shr ebx, 3
|
|
|
|
imul eax, ebx
|
|
|
|
neg eax
|
|
|
|
add eax, [BytesPerScanLine]
|
|
|
|
mov [drbar.line_inc_scr], eax
|
|
|
|
; pointer to screen
|
|
|
|
mov edx, [drbar.abs_cy]
|
|
|
|
imul edx, [BytesPerScanLine]
|
|
|
|
mov eax, [drbar.abs_cx]
|
|
|
|
; movzx ebx, byte [ScreenBPP]
|
|
|
|
; shr ebx, 3
|
|
|
|
imul eax, ebx
|
|
|
|
add edx, eax
|
|
|
|
; pointer to pixel map
|
|
|
|
mov eax, [drbar.abs_cy]
|
2008-02-22 13:38:59 +01:00
|
|
|
imul eax, [Screen_Max_X]
|
2007-04-24 10:56:03 +02:00
|
|
|
add eax, [drbar.abs_cy]
|
|
|
|
add eax, [drbar.abs_cx]
|
2009-12-01 14:32:57 +01:00
|
|
|
add eax, [_WinMapAddress]
|
2007-04-24 10:56:03 +02:00
|
|
|
xchg eax, ebp
|
|
|
|
; get process number
|
|
|
|
mov ebx, [CURRENT_TASK]
|
|
|
|
cmp byte [ScreenBPP], 24
|
|
|
|
jne draw_bar_end_32
|
2005-10-06 19:56:22 +02:00
|
|
|
draw_bar_end_24:
|
2007-04-24 10:56:03 +02:00
|
|
|
mov eax, [drbar.color] ;; BBGGRR00
|
|
|
|
mov bh, al ;; bh = BB
|
|
|
|
shr eax, 8 ;; eax = RRGG
|
2005-10-06 19:56:22 +02:00
|
|
|
; eax - color high RRGG
|
|
|
|
; bl - process num
|
|
|
|
; bh - color low BB
|
|
|
|
; ecx - temp
|
|
|
|
; edx - pointer to screen
|
|
|
|
; esi - counter
|
|
|
|
; edi - counter
|
2007-04-24 10:56:03 +02:00
|
|
|
mov esi, [drbar.real_sy]
|
|
|
|
align 4
|
|
|
|
.new_y:
|
|
|
|
mov edi, [drbar.real_sx]
|
|
|
|
align 4
|
|
|
|
.new_x:
|
|
|
|
cmp byte [ebp], bl
|
|
|
|
jne .skip
|
2009-12-01 14:32:57 +01:00
|
|
|
|
|
|
|
mov [LFB_BASE+edx], bh
|
|
|
|
mov [LFB_BASE+edx + 1], ax
|
2007-04-24 10:56:03 +02:00
|
|
|
.skip:
|
|
|
|
; add pixel
|
|
|
|
add edx, 3
|
|
|
|
inc ebp
|
|
|
|
dec edi
|
|
|
|
jnz .new_x
|
|
|
|
; add line
|
|
|
|
add edx, [drbar.line_inc_scr]
|
|
|
|
add ebp, [drbar.line_inc_map]
|
|
|
|
; <Ivan 15.10.04> drawing gradient bars
|
|
|
|
test eax, 0x00800000
|
|
|
|
jz @f
|
|
|
|
test bh, bh
|
|
|
|
jz @f
|
|
|
|
dec bh
|
|
|
|
@@:
|
|
|
|
; </Ivan 15.10.04>
|
|
|
|
dec esi
|
|
|
|
jnz .new_y
|
|
|
|
add esp, drbar.stack_data
|
|
|
|
popad
|
|
|
|
xor eax, eax
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
draw_bar_end_32:
|
2007-04-24 10:56:03 +02:00
|
|
|
mov eax, [drbar.color] ;; BBGGRR00
|
|
|
|
mov esi, [drbar.real_sy]
|
|
|
|
align 4
|
|
|
|
.new_y:
|
|
|
|
mov edi, [drbar.real_sx]
|
|
|
|
align 4
|
|
|
|
.new_x:
|
|
|
|
cmp byte [ebp], bl
|
|
|
|
jne .skip
|
2009-12-01 14:32:57 +01:00
|
|
|
|
|
|
|
mov [LFB_BASE+edx], eax
|
2007-04-24 10:56:03 +02:00
|
|
|
.skip:
|
|
|
|
; add pixel
|
|
|
|
add edx, 4
|
|
|
|
inc ebp
|
|
|
|
dec edi
|
|
|
|
jnz .new_x
|
|
|
|
; add line
|
|
|
|
add edx, [drbar.line_inc_scr]
|
|
|
|
add ebp, [drbar.line_inc_map]
|
|
|
|
; <Ivan 15.10.04> drawing gradient bars
|
|
|
|
test eax, 0x80000000
|
|
|
|
jz @f
|
|
|
|
test al, al
|
|
|
|
jz @f
|
|
|
|
dec al
|
|
|
|
@@:
|
|
|
|
; </Ivan 15.10.04>
|
|
|
|
dec esi
|
|
|
|
jnz .new_y
|
|
|
|
add esp, drbar.stack_data
|
|
|
|
popad
|
|
|
|
call VGA_draw_bar
|
|
|
|
xor eax, eax
|
|
|
|
mov [EGA_counter],1
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
2009-12-01 14:32:57 +01:00
|
|
|
align 4
|
2005-10-06 19:56:22 +02:00
|
|
|
vesa20_drawbackground_tiled:
|
2009-12-01 14:32:57 +01:00
|
|
|
call [_display.disable_mouse]
|
2007-05-30 15:48:21 +02:00
|
|
|
pushad
|
|
|
|
; External loop for all y from start to end
|
|
|
|
mov ebx, [draw_data+32+RECT.top] ; y start
|
|
|
|
dp2:
|
|
|
|
mov ebp, [draw_data+32+RECT.left] ; x start
|
|
|
|
; 1) Calculate pointers in WinMapAddress (does pixel belong to OS thread?) [ebp]
|
|
|
|
; and LFB data (output for our function) [edi]
|
|
|
|
mov eax, [BytesPerScanLine]
|
|
|
|
mul ebx
|
|
|
|
xchg ebp, eax
|
|
|
|
add ebp, eax
|
|
|
|
add ebp, eax
|
|
|
|
add ebp, eax
|
|
|
|
cmp [ScreenBPP], byte 24 ; 24 or 32 bpp ? - x size
|
|
|
|
jz @f
|
|
|
|
add ebp, eax
|
2007-04-24 10:56:03 +02:00
|
|
|
@@:
|
2009-12-01 14:32:57 +01:00
|
|
|
add ebp, LFB_BASE
|
2007-04-24 10:56:03 +02:00
|
|
|
; ebp:=Y*BytesPerScanLine+X*BytesPerPixel+AddrLFB
|
2007-05-30 15:48:21 +02:00
|
|
|
call calculate_edi
|
|
|
|
xchg edi, ebp
|
2009-12-01 14:32:57 +01:00
|
|
|
add ebp, [_WinMapAddress]
|
2007-05-30 15:48:21 +02:00
|
|
|
; Now eax=x, ebx=y, edi->output, ebp=offset in WinMapAddress
|
|
|
|
; 2) Calculate offset in background memory block
|
|
|
|
push eax
|
|
|
|
xor edx, edx
|
|
|
|
mov eax, ebx
|
2008-04-02 20:40:54 +02:00
|
|
|
div dword [BgrDataHeight] ; edx := y mod BgrDataHeight
|
2007-05-30 15:48:21 +02:00
|
|
|
pop eax
|
|
|
|
push eax
|
2008-04-02 20:40:54 +02:00
|
|
|
mov ecx, [BgrDataWidth]
|
2007-05-30 15:48:21 +02:00
|
|
|
mov esi, edx
|
2008-04-02 20:40:54 +02:00
|
|
|
imul esi, ecx ; esi := (y mod BgrDataHeight) * BgrDataWidth
|
2007-05-30 15:48:21 +02:00
|
|
|
xor edx, edx
|
2008-04-02 20:40:54 +02:00
|
|
|
div ecx ; edx := x mod BgrDataWidth
|
|
|
|
sub ecx, edx
|
2007-05-30 15:48:21 +02:00
|
|
|
add esi, edx ; esi := (y mod BgrDataHeight)*BgrDataWidth + (x mod BgrDataWidth)
|
|
|
|
pop eax
|
|
|
|
lea esi, [esi*3]
|
|
|
|
add esi, [img_background]
|
|
|
|
xor edx, edx
|
|
|
|
inc edx
|
|
|
|
; 3) Loop through redraw rectangle and copy background data
|
|
|
|
; Registers meaning:
|
|
|
|
; eax = x, ebx = y (screen coordinates)
|
|
|
|
; ecx = deltax - number of pixels left in current tile block
|
|
|
|
; edx = 1
|
|
|
|
; esi -> bgr memory, edi -> output
|
|
|
|
; ebp = offset in WinMapAddress
|
|
|
|
dp3:
|
2009-12-01 14:32:57 +01:00
|
|
|
cmp [ebp], dl
|
2007-05-30 15:48:21 +02:00
|
|
|
jnz nbgp
|
|
|
|
movsb
|
|
|
|
movsb
|
|
|
|
movsb
|
|
|
|
jmp @f
|
2007-04-24 10:56:03 +02:00
|
|
|
nbgp:
|
2007-05-30 15:48:21 +02:00
|
|
|
add esi, 3
|
|
|
|
add edi, 3
|
2007-04-24 10:56:03 +02:00
|
|
|
@@:
|
2007-05-30 15:48:21 +02:00
|
|
|
cmp [ScreenBPP], byte 25 ; 24 or 32 bpp?
|
|
|
|
sbb edi, -1 ; +1 for 32 bpp
|
|
|
|
; I do not use 'inc eax' because this is slightly slower then 'add eax,1'
|
|
|
|
add ebp, edx
|
|
|
|
add eax, edx
|
|
|
|
cmp eax, [draw_data+32+RECT.right]
|
|
|
|
ja dp4
|
|
|
|
sub ecx, edx
|
|
|
|
jnz dp3
|
|
|
|
; next tile block on x-axis
|
|
|
|
mov ecx, [BgrDataWidth]
|
|
|
|
sub esi, ecx
|
|
|
|
sub esi, ecx
|
|
|
|
sub esi, ecx
|
|
|
|
jmp dp3
|
|
|
|
dp4:
|
|
|
|
; next scan line
|
|
|
|
inc ebx
|
|
|
|
cmp ebx, [draw_data+32+RECT.bottom]
|
|
|
|
jbe dp2
|
|
|
|
popad
|
|
|
|
mov [EGA_counter], 1
|
|
|
|
call VGA_drawbackground
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
|
|
|
; ----------
|
|
|
|
|
|
|
|
|
|
|
|
vesa20_drawbackground_stretch:
|
2009-12-01 14:32:57 +01:00
|
|
|
call [_display.disable_mouse]
|
2007-05-30 15:48:21 +02:00
|
|
|
pushad
|
|
|
|
; Helper variables
|
2008-02-23 11:16:37 +01:00
|
|
|
; calculate 2^32*(BgrDataWidth-1) mod (ScreenWidth-1)
|
2007-05-30 15:48:21 +02:00
|
|
|
mov eax, [BgrDataWidth]
|
2007-06-18 18:39:42 +02:00
|
|
|
dec eax
|
2007-05-30 15:48:21 +02:00
|
|
|
xor edx, edx
|
2008-02-22 13:38:59 +01:00
|
|
|
div dword [Screen_Max_X]
|
2007-06-18 18:39:42 +02:00
|
|
|
push eax ; high
|
|
|
|
xor eax, eax
|
2008-02-22 13:38:59 +01:00
|
|
|
div dword [Screen_Max_X]
|
2007-06-18 18:39:42 +02:00
|
|
|
push eax ; low
|
|
|
|
; the same for height
|
2007-05-30 15:48:21 +02:00
|
|
|
mov eax, [BgrDataHeight]
|
2007-06-18 18:39:42 +02:00
|
|
|
dec eax
|
2007-05-30 15:48:21 +02:00
|
|
|
xor edx, edx
|
2008-02-22 13:38:59 +01:00
|
|
|
div dword [Screen_Max_Y]
|
2007-06-18 18:39:42 +02:00
|
|
|
push eax ; high
|
|
|
|
xor eax, eax
|
2008-02-22 13:38:59 +01:00
|
|
|
div dword [Screen_Max_Y]
|
2007-06-18 18:39:42 +02:00
|
|
|
push eax ; low
|
2007-05-30 15:48:21 +02:00
|
|
|
; External loop for all y from start to end
|
|
|
|
mov ebx, [draw_data+32+RECT.top] ; y start
|
|
|
|
mov ebp, [draw_data+32+RECT.left] ; x start
|
|
|
|
; 1) Calculate pointers in WinMapAddress (does pixel belong to OS thread?) [ebp]
|
|
|
|
; and LFB data (output for our function) [edi]
|
|
|
|
mov eax, [BytesPerScanLine]
|
|
|
|
mul ebx
|
|
|
|
xchg ebp, eax
|
|
|
|
add ebp, eax
|
|
|
|
add ebp, eax
|
|
|
|
add ebp, eax
|
|
|
|
cmp [ScreenBPP], byte 24 ; 24 or 32 bpp ? - x size
|
|
|
|
jz @f
|
|
|
|
add ebp, eax
|
2007-04-24 10:56:03 +02:00
|
|
|
@@:
|
|
|
|
; ebp:=Y*BytesPerScanLine+X*BytesPerPixel+AddrLFB
|
2007-05-30 15:48:21 +02:00
|
|
|
call calculate_edi
|
|
|
|
xchg edi, ebp
|
|
|
|
; Now eax=x, ebx=y, edi->output, ebp=offset in WinMapAddress
|
|
|
|
push ebx
|
|
|
|
push eax
|
2007-06-18 18:39:42 +02:00
|
|
|
; 2) Calculate offset in background memory block
|
2007-05-30 15:48:21 +02:00
|
|
|
mov eax, ebx
|
2007-06-18 18:39:42 +02:00
|
|
|
imul ebx, dword [esp+12]
|
|
|
|
mul dword [esp+8]
|
2008-02-23 11:16:37 +01:00
|
|
|
add edx, ebx ; edx:eax = y * 2^32*(BgrDataHeight-1)/(ScreenHeight-1)
|
2007-06-18 18:39:42 +02:00
|
|
|
mov esi, edx
|
|
|
|
imul esi, [BgrDataWidth]
|
2007-06-07 15:34:43 +02:00
|
|
|
push edx
|
2007-06-18 18:39:42 +02:00
|
|
|
push eax
|
|
|
|
mov eax, [esp+8]
|
|
|
|
mul dword [esp+28]
|
|
|
|
push eax
|
|
|
|
mov eax, [esp+12]
|
|
|
|
mul dword [esp+28]
|
|
|
|
add [esp], edx
|
2008-02-23 11:16:37 +01:00
|
|
|
pop edx ; edx:eax = x * 2^32*(BgrDataWidth-1)/(ScreenWidth-1)
|
2007-06-18 18:39:42 +02:00
|
|
|
add esi, edx
|
2007-05-30 15:48:21 +02:00
|
|
|
lea esi, [esi*3]
|
|
|
|
add esi, [img_background]
|
2007-06-26 17:52:28 +02:00
|
|
|
push eax
|
|
|
|
push edx
|
|
|
|
push esi
|
|
|
|
; 3) Smooth horizontal
|
|
|
|
bgr_resmooth0:
|
|
|
|
mov ecx, [esp+8]
|
|
|
|
mov edx, [esp+4]
|
|
|
|
mov esi, [esp]
|
|
|
|
push edi
|
|
|
|
mov edi, bgr_cur_line
|
|
|
|
call smooth_line
|
|
|
|
bgr_resmooth1:
|
2007-06-30 14:42:59 +02:00
|
|
|
mov eax, [esp+16+4]
|
|
|
|
inc eax
|
|
|
|
cmp eax, [BgrDataHeight]
|
|
|
|
jae bgr.no2nd
|
2007-06-26 17:52:28 +02:00
|
|
|
mov ecx, [esp+8+4]
|
|
|
|
mov edx, [esp+4+4]
|
|
|
|
mov esi, [esp+4]
|
|
|
|
add esi, [BgrDataWidth]
|
|
|
|
add esi, [BgrDataWidth]
|
|
|
|
add esi, [BgrDataWidth]
|
|
|
|
mov edi, bgr_next_line
|
|
|
|
call smooth_line
|
|
|
|
bgr.no2nd:
|
|
|
|
pop edi
|
|
|
|
sdp3:
|
|
|
|
xor esi, esi
|
|
|
|
mov ecx, [esp+12]
|
|
|
|
; 4) Loop through redraw rectangle and copy background data
|
2007-05-30 15:48:21 +02:00
|
|
|
; Registers meaning:
|
2007-06-26 17:52:28 +02:00
|
|
|
; esi = offset in current line, edi -> output
|
2007-05-30 15:48:21 +02:00
|
|
|
; ebp = offset in WinMapAddress
|
2007-06-26 17:52:28 +02:00
|
|
|
; dword [esp] = offset in bgr data
|
2008-02-23 11:16:37 +01:00
|
|
|
; qword [esp+4] = x * 2^32 * (BgrDataWidth-1) / (ScreenWidth-1)
|
|
|
|
; qword [esp+12] = y * 2^32 * (BgrDataHeight-1) / (ScreenHeight-1)
|
2007-06-07 15:34:43 +02:00
|
|
|
; dword [esp+20] = x
|
2007-06-18 18:39:42 +02:00
|
|
|
; dword [esp+24] = y
|
2007-05-30 15:48:21 +02:00
|
|
|
; precalculated constants:
|
2008-02-23 11:16:37 +01:00
|
|
|
; qword [esp+28] = 2^32*(BgrDataHeight-1)/(ScreenHeight-1)
|
|
|
|
; qword [esp+36] = 2^32*(BgrDataWidth-1)/(ScreenWidth-1)
|
2007-06-26 17:52:28 +02:00
|
|
|
sdp3a:
|
2009-12-01 14:32:57 +01:00
|
|
|
mov eax, [_WinMapAddress]
|
|
|
|
cmp [ebp+eax], byte 1
|
2007-05-30 15:48:21 +02:00
|
|
|
jnz snbgp
|
2007-06-26 17:52:28 +02:00
|
|
|
mov eax, [bgr_cur_line+esi]
|
2007-06-18 18:39:42 +02:00
|
|
|
test ecx, ecx
|
|
|
|
jz .novert
|
2007-06-26 17:52:28 +02:00
|
|
|
mov ebx, [bgr_next_line+esi]
|
|
|
|
call [overlapping_of_points_ptr]
|
2007-06-18 18:39:42 +02:00
|
|
|
.novert:
|
2009-12-01 14:32:57 +01:00
|
|
|
|
|
|
|
mov [LFB_BASE+edi], ax
|
2007-05-30 15:48:21 +02:00
|
|
|
shr eax, 16
|
2009-12-01 14:32:57 +01:00
|
|
|
|
|
|
|
mov [LFB_BASE+edi+2], al
|
2007-04-24 10:56:03 +02:00
|
|
|
snbgp:
|
2007-05-30 15:48:21 +02:00
|
|
|
cmp [ScreenBPP], byte 25
|
|
|
|
sbb edi, -4
|
|
|
|
add ebp, 1
|
2007-06-07 15:34:43 +02:00
|
|
|
mov eax, [esp+20]
|
2007-05-30 15:48:21 +02:00
|
|
|
add eax, 1
|
2007-06-07 15:34:43 +02:00
|
|
|
mov [esp+20], eax
|
2007-06-26 17:52:28 +02:00
|
|
|
add esi, 4
|
2007-05-30 15:48:21 +02:00
|
|
|
cmp eax, [draw_data+32+RECT.right]
|
2007-06-26 17:52:28 +02:00
|
|
|
jbe sdp3a
|
2007-05-30 15:48:21 +02:00
|
|
|
sdp4:
|
|
|
|
; next y
|
2007-06-18 18:39:42 +02:00
|
|
|
mov ebx, [esp+24]
|
2007-05-30 15:48:21 +02:00
|
|
|
add ebx, 1
|
2007-06-18 18:39:42 +02:00
|
|
|
mov [esp+24], ebx
|
2007-05-30 15:48:21 +02:00
|
|
|
cmp ebx, [draw_data+32+RECT.bottom]
|
|
|
|
ja sdpdone
|
|
|
|
; advance edi, ebp to next scan line
|
|
|
|
sub eax, [draw_data+32+RECT.left]
|
|
|
|
sub ebp, eax
|
2008-02-22 13:38:59 +01:00
|
|
|
add ebp, [Screen_Max_X]
|
2007-05-30 15:48:21 +02:00
|
|
|
add ebp, 1
|
|
|
|
sub edi, eax
|
|
|
|
sub edi, eax
|
|
|
|
sub edi, eax
|
|
|
|
cmp [ScreenBPP], byte 24
|
|
|
|
jz @f
|
|
|
|
sub edi, eax
|
2007-04-24 10:56:03 +02:00
|
|
|
@@:
|
2007-05-30 15:48:21 +02:00
|
|
|
add edi, [BytesPerScanLine]
|
|
|
|
; restore ecx,edx; advance esi to next background line
|
2007-06-18 18:39:42 +02:00
|
|
|
mov eax, [esp+28]
|
|
|
|
mov ebx, [esp+32]
|
|
|
|
add [esp+12], eax
|
|
|
|
mov eax, [esp+16]
|
|
|
|
adc [esp+16], ebx
|
2007-06-26 17:52:28 +02:00
|
|
|
sub eax, [esp+16]
|
|
|
|
mov ebx, eax
|
2007-06-18 18:39:42 +02:00
|
|
|
lea eax, [eax*3]
|
|
|
|
imul eax, [BgrDataWidth]
|
2007-06-26 17:52:28 +02:00
|
|
|
sub [esp], eax
|
2007-05-30 15:48:21 +02:00
|
|
|
mov eax, [draw_data+32+RECT.left]
|
2007-06-07 15:34:43 +02:00
|
|
|
mov [esp+20], eax
|
2007-06-26 17:52:28 +02:00
|
|
|
test ebx, ebx
|
|
|
|
jz sdp3
|
|
|
|
cmp ebx, -1
|
|
|
|
jnz bgr_resmooth0
|
|
|
|
push edi
|
|
|
|
mov esi, bgr_next_line
|
|
|
|
mov edi, bgr_cur_line
|
2008-02-22 13:38:59 +01:00
|
|
|
mov ecx, [Screen_Max_X]
|
2007-06-26 17:52:28 +02:00
|
|
|
inc ecx
|
|
|
|
rep movsd
|
|
|
|
jmp bgr_resmooth1
|
2007-05-30 15:48:21 +02:00
|
|
|
sdpdone:
|
2007-06-18 18:39:42 +02:00
|
|
|
add esp, 44
|
2007-05-30 15:48:21 +02:00
|
|
|
popad
|
|
|
|
mov [EGA_counter],1
|
|
|
|
call VGA_drawbackground
|
|
|
|
ret
|
2005-10-06 19:56:22 +02:00
|
|
|
|
2007-06-26 17:52:28 +02:00
|
|
|
uglobal
|
|
|
|
align 4
|
2010-02-19 18:58:55 +01:00
|
|
|
bgr_cur_line rd 1920 ; maximum width of screen
|
|
|
|
bgr_next_line rd 1920
|
2007-06-26 17:52:28 +02:00
|
|
|
endg
|
|
|
|
|
|
|
|
smooth_line:
|
|
|
|
mov al, [esi+2]
|
|
|
|
shl eax, 16
|
|
|
|
mov ax, [esi]
|
|
|
|
test ecx, ecx
|
|
|
|
jz @f
|
|
|
|
mov ebx, [esi+2]
|
|
|
|
shr ebx, 8
|
|
|
|
call [overlapping_of_points_ptr]
|
|
|
|
@@:
|
|
|
|
stosd
|
|
|
|
mov eax, [esp+20+8]
|
|
|
|
add eax, 1
|
|
|
|
mov [esp+20+8], eax
|
|
|
|
cmp eax, [draw_data+32+RECT.right]
|
|
|
|
ja @f
|
|
|
|
add ecx, [esp+36+8]
|
|
|
|
mov eax, edx
|
|
|
|
adc edx, [esp+40+8]
|
|
|
|
sub eax, edx
|
|
|
|
lea eax, [eax*3]
|
|
|
|
sub esi, eax
|
|
|
|
jmp smooth_line
|
|
|
|
@@:
|
|
|
|
mov eax, [draw_data+32+RECT.left]
|
|
|
|
mov [esp+20+8], eax
|
|
|
|
ret
|
|
|
|
|
|
|
|
align 16
|
2007-05-30 15:48:21 +02:00
|
|
|
overlapping_of_points:
|
2007-06-26 17:52:28 +02:00
|
|
|
if 0
|
|
|
|
; this version of procedure works, but is slower than next version
|
2007-06-18 18:39:42 +02:00
|
|
|
push ecx edx
|
|
|
|
mov edx, eax
|
|
|
|
push esi
|
|
|
|
shr ecx, 24
|
|
|
|
mov esi, ecx
|
|
|
|
mov ecx, ebx
|
2007-05-30 15:48:21 +02:00
|
|
|
movzx ebx, dl
|
2007-06-18 18:39:42 +02:00
|
|
|
movzx eax, cl
|
|
|
|
sub eax, ebx
|
2007-05-30 15:48:21 +02:00
|
|
|
movzx ebx, dh
|
2007-06-18 18:39:42 +02:00
|
|
|
imul eax, esi
|
|
|
|
add dl, ah
|
2007-05-30 15:48:21 +02:00
|
|
|
movzx eax, ch
|
2007-06-18 18:39:42 +02:00
|
|
|
sub eax, ebx
|
|
|
|
imul eax, esi
|
|
|
|
add dh, ah
|
|
|
|
ror ecx, 16
|
|
|
|
ror edx, 16
|
|
|
|
movzx eax, cl
|
|
|
|
movzx ebx, dl
|
|
|
|
sub eax, ebx
|
|
|
|
imul eax, esi
|
|
|
|
pop esi
|
|
|
|
add dl, ah
|
|
|
|
mov eax, edx
|
|
|
|
pop edx
|
2007-05-30 15:48:21 +02:00
|
|
|
ror eax, 16
|
2007-06-18 18:39:42 +02:00
|
|
|
pop ecx
|
2007-05-30 15:48:21 +02:00
|
|
|
ret
|
2007-06-26 17:52:28 +02:00
|
|
|
else
|
|
|
|
push ecx edx
|
|
|
|
mov edx, eax
|
|
|
|
push esi
|
|
|
|
shr ecx, 26
|
|
|
|
mov esi, ecx
|
|
|
|
mov ecx, ebx
|
|
|
|
shl esi, 9
|
|
|
|
movzx ebx, dl
|
|
|
|
movzx eax, cl
|
|
|
|
sub eax, ebx
|
|
|
|
movzx ebx, dh
|
|
|
|
add dl, [BgrAuxTable+(eax+0x100)+esi]
|
|
|
|
movzx eax, ch
|
|
|
|
sub eax, ebx
|
|
|
|
add dh, [BgrAuxTable+(eax+0x100)+esi]
|
|
|
|
ror ecx, 16
|
|
|
|
ror edx, 16
|
|
|
|
movzx eax, cl
|
|
|
|
movzx ebx, dl
|
|
|
|
sub eax, ebx
|
|
|
|
add dl, [BgrAuxTable+(eax+0x100)+esi]
|
|
|
|
pop esi
|
|
|
|
mov eax, edx
|
|
|
|
pop edx
|
|
|
|
ror eax, 16
|
|
|
|
pop ecx
|
|
|
|
ret
|
|
|
|
end if
|
|
|
|
|
|
|
|
iglobal
|
|
|
|
align 4
|
|
|
|
overlapping_of_points_ptr dd overlapping_of_points
|
|
|
|
endg
|
|
|
|
|
|
|
|
init_background:
|
|
|
|
mov edi, BgrAuxTable
|
|
|
|
xor edx, edx
|
|
|
|
.loop2:
|
|
|
|
mov eax, edx
|
|
|
|
shl eax, 8
|
|
|
|
neg eax
|
|
|
|
mov ecx, 0x200
|
|
|
|
.loop1:
|
|
|
|
mov byte [edi], ah
|
|
|
|
inc edi
|
|
|
|
add eax, edx
|
|
|
|
loop .loop1
|
|
|
|
add dl, 4
|
|
|
|
jnz .loop2
|
2007-07-03 15:04:51 +02:00
|
|
|
test byte [cpu_caps+(CAPS_MMX/8)], 1 shl (CAPS_MMX mod 8)
|
2007-06-26 17:52:28 +02:00
|
|
|
jz @f
|
|
|
|
mov [overlapping_of_points_ptr], overlapping_of_points_mmx
|
|
|
|
@@:
|
|
|
|
ret
|
|
|
|
|
|
|
|
align 16
|
|
|
|
overlapping_of_points_mmx:
|
|
|
|
movd mm0, eax
|
|
|
|
movd mm4, eax
|
|
|
|
movd mm1, ebx
|
|
|
|
pxor mm2, mm2
|
|
|
|
punpcklbw mm0, mm2
|
|
|
|
punpcklbw mm1, mm2
|
|
|
|
psubw mm1, mm0
|
|
|
|
movd mm3, ecx
|
|
|
|
psrld mm3, 24
|
|
|
|
packuswb mm3, mm3
|
|
|
|
packuswb mm3, mm3
|
|
|
|
pmullw mm1, mm3
|
|
|
|
psrlw mm1, 8
|
|
|
|
packuswb mm1, mm2
|
|
|
|
paddb mm4, mm1
|
|
|
|
movd eax, mm4
|
|
|
|
ret
|