1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- ; Seven Kingdoms: Ancient Adversaries
- ;
- ; Copyright 1997,1998 Enlight Software Ltd.
- ;
- ; This program is free software: you can redistribute it and/or modify
- ; it under the terms of the GNU General Public License as published by
- ; the Free Software Foundation, either version 2 of the License, or
- ; (at your option) any later version.
- ;
- ; This program is distributed in the hope that it will be useful,
- ; but WITHOUT ANY WARRANTY; without even the implied warranty of
- ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ; GNU General Public License for more details.
- ;
- ; You should have received a copy of the GNU General Public License
- ; along with this program. If not, see <http://www.gnu.org/licenses/>.
- ;
- ;Filename : IR.ASM
- ;Description : Remap a bitmap on vga image buffer
- INCLUDE IMGFUN.inc
- .CODE
- ;--------- BEGIN OF FUNCTION IMGremap -----------
- ;
- ; Remap on the VGA screen
- ;
- ; Note : No border checking is made in this function.
- ; Placing an icon outside image buffer will cause serious BUG.
- ;
- ; char *imageBuf - the pointer to the display surface buffer
- ; int pitch - the pitch of the display surface buffer
- ; int x1,y1 - the top left vertex of the bar
- ; char *bitmapPtr - the pointer to the bitmap array
- ; char **colorTableArray - the pointer to the scale 0 of remap table array
- ;
- PUBLIC IMGremap
- IMGremap PROC imageBuf, pitch, x1, y1, bitmapPtr, colorTableArray
- LOCAL mapWidth:DWORD, destLineDiff:DWORD
- STARTPROC
- MOV EAX, imageBuf ; store the address of the image buffer to a variable
- MOV image_buf, EAX
- ;------ calc bar width and height -----;
- MOV AX , DS
- MOV ES , AX
- XOR EAX, EAX
- MOV ESI, bitmapPtr
- LODSW
- MOV mapWidth, EAX
- LODSW
- MOV ECX, EAX
- MOV EDX, pitch
- SUB EDX, mapWidth
- MOV destLineDiff, EDX
- MOV EDX, colorTableArray
- CLD ; clear direction flag for MOVSB
- ;------- pixels copying loop --------;
- CALC_ADDR EDI, x1, y1, pitch ; Get the offset to the image buffer address
- @@startY: PUSH ECX
- MOV ECX, mapWidth
- @@startX:
- LODSB
- MOVSX EAX, AL
- MOV EBX, [EDX + 4*EAX]
- MOV AL,[EDI]
- XLATB [EBX]
- STOSB
- LOOP @@startX
- POP ECX
- ADD EDI, destLineDiff
- LOOP @@startY
- @@end: ENDPROC
- IMGremap ENDP
- ;---------- END OF FUNCTION IMGremap ------------
- END
|