IJ_T.asm 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. ; Seven Kingdoms: Ancient Adversaries
  2. ;
  3. ; Copyright 1997,1998 Enlight Software Ltd.
  4. ;
  5. ; This program is free software: you can redistribute it and/or modify
  6. ; it under the terms of the GNU General Public License as published by
  7. ; the Free Software Foundation, either version 2 of the License, or
  8. ; (at your option) any later version.
  9. ;
  10. ; This program is distributed in the hope that it will be useful,
  11. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ; GNU General Public License for more details.
  14. ;
  15. ; You should have received a copy of the GNU General Public License
  16. ; along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. ;
  18. ;Filename : IBJ_T.ASM
  19. ;Description : Add a bitmap and another display surface to the display
  20. ; surface on the same place with transparency handling
  21. INCLUDE IMGFUN.inc
  22. INCLUDE COLCODE.inc
  23. .CODE
  24. ;-------- BEGIN OF FUNCTION IMGjoinTrans ----------
  25. ;
  26. ; Put an non-compressed bitmap on image buffer.
  27. ; It handles color key transparency. The color key code is 255.
  28. ;
  29. ; Syntax : IMGjoinTrans( imageBuf, backBuf x, y, bitmapBuf )
  30. ;
  31. ; char *imageBuf - the pointer to the display surface buffer
  32. ; int imgPitch - the pitch of the display surface buffer
  33. ; char *backBuf - the pointer to the back buffer
  34. ; int backPitch - the pitch of the back buffer
  35. ; int x,y - where to put the image on the surface buffer
  36. ; char *bitmapPtr - the pointer to the bitmap buffer
  37. ;
  38. ;-------------------------------------------------
  39. ;
  40. ; Format of the bitmap data :
  41. ;
  42. ; <short> width
  43. ; <short> height
  44. ; <char..> bitmap image
  45. ;
  46. ;-------------------------------------------------
  47. PUBLIC IMGjoinTrans
  48. IMGjoinTrans PROC imageBuf, imgPitch, backBuf, backPitch, x, y, bitmapPtr
  49. LOCAL bitmapWidth:DWORD
  50. STARTPROC
  51. MOV EAX, backBuf
  52. MOV image_buf, EAX
  53. CALC_ADDR EBX, x, y, backPitch
  54. MOV EAX, imageBuf ; store the address of the image buffer to a variable
  55. MOV image_buf, EAX
  56. CALC_ADDR EDI, x, y, imgPitch ; Get the offset to the image buffer address
  57. ;------ get the bitmap width and height -----;
  58. MOV AX , DS
  59. MOV ES , AX
  60. MOV ESI, bitmapPtr
  61. XOR EAX, EAX
  62. LODSW ; get bitmap width
  63. MOV bitmapWidth, EAX
  64. SUB imgPitch, EAX ; lineDiff = image_width - bitmap_width
  65. SUB backPitch, EAX ; lineDiff = image_width - bitmap_width
  66. LODSW ; get bitmap height
  67. MOV ECX, EAX
  68. CLD ; clear direction flag for MOVSB
  69. ;------- pixels copying loop --------;
  70. @@moreLines:
  71. PUSH ECX
  72. MOV ECX, bitmapWidth ; ECX is the line pixel counter
  73. @@moreColumns:
  74. LODSB
  75. CMP AL, TRANSPARENT_CODE
  76. JNE @@notrans
  77. MOV AL, [EBX]
  78. @@notrans:
  79. STOSB
  80. INC EBX
  81. LOOP @@moreColumns
  82. POP ECX
  83. ADD EDI, imgPitch
  84. ADD EBX, backPitch
  85. LOOP @@moreLines
  86. @@end: ENDPROC
  87. IMGjoinTrans ENDP
  88. ;----------- END OF FUNCTION IMGjoinTrans ----------
  89. END