LINEAR.ASM 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. .386
  2. .MODEL small
  3. INCLUDE defs.inc
  4. ;============================================================================
  5. ;
  6. ; unwound vertical scaling code
  7. ;
  8. ; eax light table pointer, 0 lowbyte overwritten
  9. ; ebx all 0, low byte overwritten
  10. ; ecx fractional step value
  11. ; edx fractional scale value
  12. ; esi start of source pixels
  13. ; edi bottom pixel in screenbuffer to blit into
  14. ;
  15. ; ebx should be set to 0 0 0 dh to feed the pipeline
  16. ;
  17. ; The graphics wrap vertically at 128 pixels
  18. ;============================================================================
  19. .DATA
  20. EXTRN _centery:DWORD
  21. SCALEDEFINE MACRO number
  22. dd vscale&number
  23. ENDM
  24. ALIGN 4
  25. scalecalls LABEL
  26. LINE = 0
  27. REPT SCREENHEIGHT+1
  28. SCALEDEFINE %LINE
  29. LINE = LINE+1
  30. ENDM
  31. FUZZSCALEDEFINE MACRO number
  32. dd fuzzvscale&number
  33. ENDM
  34. ALIGN 4
  35. fuzzscalecalls LABEL
  36. LINE = 0
  37. REPT SCREENHEIGHT+1
  38. FUZZSCALEDEFINE %LINE
  39. LINE = LINE+1
  40. ENDM
  41. calladdr dd ?
  42. ;=================================
  43. .CODE
  44. ;================
  45. ;
  46. ; R_DrawColumn
  47. ;
  48. ;================
  49. PROC R_DrawColumn_
  50. PUBLIC R_DrawColumn_
  51. PUSHR
  52. mov ebp,[_dc_yh]
  53. mov ebx,ebp
  54. mov edi,[_ylookup+ebx*4]
  55. mov ebx,[_dc_x]
  56. add edi,[_columnofs + ebx*4]
  57. mov eax,[_dc_yl]
  58. sub ebp,eax ; ebp = pixel count
  59. or ebp,ebp
  60. js done
  61. mov ecx,[_dc_iscale]
  62. sub eax,[_centery]
  63. imul ecx
  64. mov edx,[_dc_texturemid]
  65. add edx,eax
  66. shl edx,9 ; 7 significant bits, 25 frac
  67. shl ecx,9 ; 7 significant bits, 25 frac
  68. mov esi,[_dc_source]
  69. mov eax,[_dc_colormap]
  70. xor ebx,ebx
  71. shld ebx,edx,7 ; get address of first location
  72. call [scalecalls+4+ebp*4]
  73. done:
  74. POPR
  75. ret
  76. ;============ HIGH DETAIL ============
  77. SCALELABEL MACRO number
  78. vscale&number:
  79. ENDM
  80. LINE = SCREENHEIGHT
  81. REPT SCREENHEIGHT-1
  82. SCALELABEL %LINE
  83. mov al,[esi+ebx] ; get source pixel
  84. add edx,ecx ; calculate next location
  85. mov al,[eax] ; translate the color
  86. ; xor ebx,ebx
  87. ; shld ebx,edx,7 ; get address of next location
  88. mov ebx,edx
  89. shr ebx,25
  90. mov [edi-(LINE-1)*SCREENWIDTH],al ; draw a pixel to the buffer
  91. LINE = LINE-1
  92. ENDM
  93. vscale1:
  94. mov al,[esi+ebx]
  95. mov al,[eax]
  96. mov [edi],al
  97. vscale0:
  98. ret
  99. ENDP
  100. ;================
  101. ;
  102. ; R_DrawFuzz
  103. ;
  104. ;================
  105. PROC R_DrawFuzzColumn_
  106. PUBLIC R_DrawFuzzColumn_
  107. PUSHR
  108. mov ebp,[_dc_yh]
  109. mov ebx,ebp
  110. mov edi,[_ylookup+ebx*4]
  111. mov ebx,[_dc_x]
  112. add edi,[_columnofs + ebx*4]
  113. mov eax,[_dc_yl]
  114. sub ebp,eax ; ebp = pixel count
  115. or ebp,ebp
  116. js fuzzdone
  117. mov ecx,[_dc_iscale]
  118. sub eax,[_centery]
  119. imul ecx
  120. mov edx,[_dc_texturemid]
  121. add edx,eax
  122. shl edx,9 ; 7 significant bits, 25 frac
  123. shl ecx,9 ; 7 significant bits, 25 frac
  124. mov esi,[_dc_source]
  125. mov eax,[_dc_colormap]
  126. xor ebx,ebx
  127. shld ebx,edx,7 ;get address of first location
  128. mov ebp, [fuzzscalecalls+4+ebp*4]
  129. mov calladdr, ebp
  130. mov ebp, ecx
  131. xor ecx, ecx
  132. call [calladdr]
  133. fuzzdone:
  134. POPR
  135. ret
  136. FUZZSCALELABEL MACRO number
  137. fuzzvscale&number:
  138. ENDM
  139. LINE = SCREENHEIGHT
  140. REPT SCREENHEIGHT-1
  141. FUZZSCALELABEL %LINE
  142. mov al, byte ptr [esi+ebx] ; get source pixel
  143. add edx, ebp ; calculate next location
  144. mov cl, byte ptr [edi-(LINE-1)*SCREENWIDTH]
  145. mov ch, [eax]
  146. add ecx, [_tinttable]
  147. mov ebx, edx
  148. shr ebx, 25
  149. mov al, [ecx]
  150. mov [edi-(LINE-1)*SCREENWIDTH],al ; draw a pixel to the buffer
  151. xor ecx, ecx
  152. LINE = LINE-1
  153. ENDM
  154. fuzzvscale1:
  155. mov al,[esi+ebx]
  156. mov cl, byte ptr [edi-(LINE-1)*SCREENWIDTH]
  157. mov ch, [eax]
  158. add ecx, [_tinttable]
  159. mov al, [ecx]
  160. mov [edi],al
  161. fuzzvscale0:
  162. ret
  163. ENDP
  164. ;============================================================================
  165. ;
  166. ; unwound horizontal texture mapping code
  167. ;
  168. ; eax lighttable
  169. ; ebx scratch register
  170. ; ecx position 6.10 bits x, 6.10 bits y
  171. ; edx step 6.10 bits x, 6.10 bits y
  172. ; esi start of block
  173. ; edi dest
  174. ; ebp fff to mask bx
  175. ;
  176. ; ebp should by preset from ebx / ecx before calling
  177. ;============================================================================
  178. OP_SHLD = 0fh
  179. .DATA
  180. MAPDEFINE MACRO number
  181. dd hmap&number
  182. ENDM
  183. ALIGN 4
  184. mapcalls LABEL
  185. LINE = 0
  186. REPT SCREENWIDTH+1
  187. MAPDEFINE %LINE
  188. LINE = LINE+1
  189. ENDM
  190. callpoint dd 0
  191. returnpoint dd 0
  192. .CODE
  193. ;================
  194. ;
  195. ; R_DrawSpan
  196. ;
  197. ; Horizontal texture mapping
  198. ;
  199. ;================
  200. PROC R_DrawSpan_
  201. PUBLIC R_DrawSpan_
  202. PUSHR
  203. IFE SKIPPRIMITIVES
  204. mov eax,[_ds_x1]
  205. mov ebx,[_ds_x2]
  206. mov eax,[mapcalls+eax*4]
  207. mov [callpoint],eax ; spot to jump into unwound
  208. mov eax,[mapcalls+4+ebx*4]
  209. mov [returnpoint],eax ; spot to patch a ret at
  210. mov BYTE PTR [eax], OP_RET
  211. ;
  212. ; build composite position
  213. ;
  214. mov ecx,[_ds_xfrac]
  215. shl ecx,10
  216. and ecx,0ffff0000h
  217. mov eax,[_ds_yfrac]
  218. shr eax,6
  219. and eax,0ffffh
  220. or ecx,eax
  221. ;
  222. ; build composite step
  223. ;
  224. mov edx,[_ds_xstep]
  225. shl edx,10
  226. and edx,0ffff0000h
  227. mov eax,[_ds_ystep]
  228. shr eax,6
  229. and eax,0ffffh
  230. or edx,eax
  231. mov esi,[_ds_source]
  232. mov edi,[_ds_y]
  233. mov edi,[_ylookup+edi*4]
  234. add edi,[_columnofs]
  235. mov eax,[_ds_colormap]
  236. ;
  237. ; feed the pipeline and jump in
  238. ;
  239. mov ebp,0fffh ; used to mask off slop high bits from position
  240. shld ebx,ecx,22 ; shift y units in
  241. shld ebx,ecx,6 ; shift x units in
  242. and ebx,ebp ; mask off slop bits
  243. call [callpoint]
  244. mov ebx,[returnpoint]
  245. mov BYTE PTR [ebx],OP_MOVAL ; remove the ret patched in
  246. ENDIF
  247. POPR
  248. ret
  249. ;============= HIGH DETAIL ============
  250. .CODE
  251. MAPLABEL MACRO number
  252. hmap&number:
  253. ENDM
  254. LINE = 0
  255. PCOL = 0
  256. REPT SCREENWIDTH/4
  257. PLANE = 0
  258. REPT 4
  259. MAPLABEL %LINE
  260. LINE = LINE + 1
  261. mov al,[esi+ebx] ; get source pixel
  262. shld ebx,ecx,22 ; shift y units in
  263. shld ebx,ecx,6 ; shift x units in
  264. mov al,[eax] ; translate color
  265. and ebx,ebp ; mask off slop bits
  266. add ecx,edx ; position += step
  267. mov [edi+PLANE+PCOL*4],al ; write pixel
  268. PLANE = PLANE + 1
  269. ENDM
  270. PCOL = PCOL + 1
  271. ENDM
  272. hmap320:
  273. ret
  274. ENDP
  275. END