home *** CD-ROM | disk | FTP | other *** search
/ Bart's Chess Hits / Chess.iso / Chess / GAMES / CHESSFX / CHESSFX.ASM < prev    next >
Encoding:
Assembly Source File  |  1992-09-26  |  98.5 KB  |  4,240 lines

  1. ;Programm: chessfx
  2. ;Funktion: Schachprogramm
  3. ;Sprache:  TASM
  4. ;Autor:    Frank Höppner
  5. ; (c) 1992 DMV Widuch GmbH & Co. KG
  6.  
  7. ;Das Programm nicht ohne die
  8. ;beiden folgenden PCX-Bilder im
  9. ;aktuellen Verzeichnis starten:
  10. ;chess.pcx : Spielbrett & Figuren
  11. ;titel.pcx : beliebiges Titelbild
  12.  
  13.         .RADIX 10
  14.         .MODEL SMALL
  15.         .STACK 200
  16.         .DATA
  17.  
  18.         ; ********************************
  19.         ;    Schach-Konstanten / Variablen
  20.         ; ********************************
  21.  
  22. Denkzeit        EQU 10
  23. Rand            EQU 0
  24. KoenigS         EQU 1
  25. DameS           EQU 2
  26. TurmS           EQU 3
  27. LaeuferS        EQU 4
  28. SpringerS       EQU 5
  29. BauerS          EQU 6
  30. leer            EQU 7
  31. BauerW          EQU 8
  32. SpringerW       EQU 9
  33. LaeuferW        EQU 10
  34. TurmW           EQU 11
  35. DameW           EQU 12
  36. KoenigW         EQU 13
  37. weiss           EQU 0
  38. schwarz         EQU -1
  39. false           EQU 0
  40. true            EQU -1
  41. betastart       EQU -32000
  42. alphastart      EQU 32000
  43.  
  44. Schlagzug       EQU 3
  45. klRochade       EQU 4
  46. grRochade       EQU 5
  47. VideoSeg        EQU 0B800h
  48.  
  49. Zug             STRUC
  50.   von             DB 0
  51.   nach            DB 0
  52.   option          DW 0
  53.   value           DW 0
  54.   next            DW 0
  55. Zug             ENDS
  56.  
  57.                 ; Wortgröße vorausgesetzt
  58. Spielstand      STRUC
  59. feld              DB 120 DUP (0)
  60.  
  61. list              Zug 100 DUP (<0,0,0>)
  62. anzahl            DW 0
  63. start             DW 0
  64.  
  65. EndSpielS         DB 0
  66. EndSpielW         DB 0
  67. MatWertS          DW 0
  68. MatWertW          DW 0
  69. MatDiff           DW 0
  70. StellungTyp       DB 0
  71. KoenPS            DB 0
  72. KoenPW            DB 0
  73. klRochWmgl        DB 0
  74. klRochSmgl        DB 0
  75. grRochWmgl        DB 0
  76. grRochSmgl        DB 0
  77. RochadeFaktor     DB 0
  78. RochadeErfolgt    DB 0
  79. dummy             DB 0
  80.  
  81. AmZug             DB 0
  82. ZugNr             DW 0
  83. cutoff            DB 0
  84. alpha             DW 0
  85. beta              DW 0
  86. ruhewert          DW 0
  87. bedrohungwert     DW 0
  88.  
  89. savelist          Zug 100 DUP (<0,0,0>)
  90. saveanzahl        DW 0
  91. savestart         DW 0
  92. Spielstand      ENDS
  93.  
  94. GameStack       Spielstand 8 DUP (?)
  95. aktStack        DW 0
  96.  
  97. Depth0  EQU OffSet GameStack
  98. Depth1  EQU Depth0+SIZE Spielstand
  99. Depth7  EQU Depth0+7*SIZE Spielstand
  100.  
  101. Brett   DB 20 DUP (0)
  102.         DB 0,3,5,4,2,1,4,5,3,0
  103.         DB 0,6,6,6,6,6,6,6,6,0
  104.         DB 0,7,7,7,7,7,7,7,7,0
  105.         DB 0,7,7,7,7,7,7,7,7,0
  106.         DB 0,7,7,7,7,7,7,7,7,0
  107.         DB 0,7,7,7,7,7,7,7,7,0
  108.         DB 0,8,8,8,8,8,8,8,8,0
  109.         DB 0,11,9,10,12,13,10,9,11,0
  110.         DB 20 DUP (0)
  111.  
  112. Spalte  DB 20 DUP (0)
  113.         DB 6 DUP (0,1,2,3,4,5,6,7,8,0)
  114. Zeile   DB 2 DUP (0,1,2,3,4,5,6,7,8,0)
  115.         DB 10 DUP (1)
  116.         DB 0,8 DUP (2),0
  117.         DB 0,8 DUP (3),0
  118.         DB 0,8 DUP (4),0
  119.         DB 0,8 DUP (5),0
  120.         DB 0,8 DUP (6),0
  121.         DB 0,8 DUP (7),0
  122.         DB 0,8 DUP (8),0
  123.  
  124. SprTW   DW 20 DUP (0) ; Springerwert weiß
  125.         DW 0,-420,-300,-180,-60
  126.         DW -60,-180,-300,-420,0
  127.         DW 0,-300,-180,-60,60
  128.         DW 60,-60,-180,-300,0
  129.         DW 0,-180,-60,60,180
  130.         DW 180,60,-60,-180,0
  131.         DW 0,-60,60,180,300
  132.         DW 300,180,60,-60,0
  133.         DW 0,-60,60,180,300
  134.         DW 300,180,60,-60,0
  135.         DW 0,-180,-60,60,180
  136.         DW 180,60,-60,-180,0
  137.         DW 0,-300,-180,-60,60
  138.         DW 60,-60,-180,-300,0
  139.         DW 0,-420,-300,-180,-60
  140.         DW -60,-180,-300,-420,0
  141. ZAbst   DW 20 DUP (0) ; Zentrumabstand
  142.         DW 0,600,500,400,300
  143.         DW 300,400,500,600,0
  144.         DW 0,500,400,300,200
  145.         DW 200,300,400,500,0
  146.         DW 0,400,300,200,100
  147.         DW 100,200,300,400,0
  148.         DW 0,300,200,100,0
  149.         DW 0,100,200,300,0
  150.         DW 0,300,200,100,0
  151.         DW 0,100,200,300,0
  152.         DW 0,400,300,200,100
  153.         DW 100,200,300,400,0
  154.         DW 0,500,400,300,200
  155.         DW 200,300,400,500,0
  156.         DW 0,600,500,400,300
  157.         DW 300,400,500,600,0
  158. ZWert   DB 20 DUP (0) ; Bedrohungswert
  159.         DB 0,20,20,20,20,20,20,20,20,0
  160.         DB 0,20,20,20,20,20,20,20,20,0
  161.         DB 0,20,20,60,60,60,60,20,20,0
  162.         DB 0,20,20,60,100,100,60,20,20,0
  163.         DB 0,20,20,60,100,100,60,20,20,0
  164.         DB 0,20,20,60,60,60,60,20,20,0
  165.         DB 0,20,20,20,20,20,20,20,20,0
  166.         DB 0,20,20,20,20,20,20,20,20,0
  167.         ; Vorrückwerte für Bauern W/S
  168. VorBW   DW 10 DUP (0)
  169. VorBS   DW 10 DUP (0)
  170.         ; Default Werte Vorrücken
  171.         ; für Mittel/Endspiel
  172. VorMS   DW 0,0,0,390,540,700,230,0,0,0
  173. VorES   DW 0,200,200,200,200
  174.         DW 200,200,200,200,0
  175.  
  176.         ; alle Daten zwischen POSBW und
  177.         ; HORIZON werden bei neuer
  178.         ; Stellung gelöscht
  179.  
  180.         ; Bauernposition, bei Null Anzahl
  181. PosBW   DB 10 DUP (0)
  182. SpaBW   DB 10 DUP (0)
  183. ZeiBW   DB 10 DUP (0)
  184. PosBS   DB 10 DUP (0)
  185. SpaBS   DB 10 DUP (0)
  186. ZeiBS   DB 10 DUP (0)
  187.         ; Bauern-Zähler pro Spalte W/S
  188. SZaBW   DB 10 DUP (0)
  189. SZaBS   DB 10 DUP (0)
  190.         ; am wenigsten vorgerückte Bauern
  191.         ; je Spalte W/S
  192. SlowBW  DB 10 DUP (0)
  193. SlowBS  DB 10 DUP (0)
  194.         ; Bauernliste Position S/W
  195. ListBW  DB 60 DUP (0)
  196. ListBS  DB 60 DUP (0)
  197.         ; Freibauern in Spalte S/W
  198. FreiBW  DB 10 DUP (0)
  199. FreiBS  DB 10 DUP (0)
  200.         ; rückständige Bauern S/W
  201. RuckBW  DB 10 DUP (0)
  202. RuckBS  DB 10 DUP (0)
  203.         ; Position aller Figuren S/W
  204.         ; bei Null Figurenzähler
  205. PosFW   DB 17 DUP (0)
  206. PosFS   DB 17 DUP (0)
  207. SumFW   DB 0  ; Summe Figuren weiß
  208. TurmSW  DB 0  ; Turm-Spalte weiß
  209. DamePW  DB 0  ; Dame-Position weiß
  210. GrlFW   DB 0  ; Sum.Leichtfiguren Grundr.
  211. LaufW   DB 0  ; Läufer weiß vorhanden
  212. SumFS   DB 0  ; dito schwarz
  213. TurmSS  DB 0
  214. DamePS  DB 0
  215. GrlFS   DB 0
  216. LaufS   DB 0
  217. schach  DB 0  ; aktueller König bedroht?
  218. DrohWrt DW 0
  219.  
  220. horizon DW 0
  221. OutZone DW Depth7
  222. zugwahl DW 0
  223. schutzL DW 0
  224. schutzR DW 0
  225. gameovr DB 0
  226. sieger  DB 0
  227. timeout DB 0
  228. abort   DB 0
  229. Wert    DW 0,0,-900,-500,-325,-325,-100
  230.         DW 0,100,325,325,500,900,0
  231. msgCZ   EQU 2  ; Computerzug
  232. msgSZ   EQU 1  ; Spielerzug
  233. msgCG   EQU 4  ; ComputerSieg
  234. msgSG   EQU 5  ; SpielerSieg
  235. msgKG   EQU 0  ; Remis
  236. msgEr   EQU 3  ; ungültiger Zug
  237. txtCG   DB 'Tja, die Partie ging an mich'
  238.         DB '. Vielen Dank fürs Spielen!$'
  239. txtSG   DB 'Gratuliere, Sie haben gewonn'
  240.         DB 'en. Wann gibts Revanche?$'
  241. txtKG   DB 'Remis! Verschieben wir die E'
  242.         DB 'ntscheidung auf die nächste'
  243.         DB ' Partie!$'
  244. txtAB   DB 'Chess-fx abgebrochen!$'
  245.  
  246.         ; ********************************
  247.         ; VGA-Grafik Konstanten/Variablen
  248.         ; ********************************
  249.  
  250. gCRTC           EQU 3D4h
  251. gPixelX         EQU 320d
  252. gPixelXHalf     EQU gPixelX/2
  253. gPixelY         EQU 200d
  254. gPixelYHalf     EQU gPixelY/2
  255. gScreenSize     EQU 200d*80d
  256. gScreenPage0    EQU 0000h
  257. gScreenPage1    EQU gScreenSize
  258. gScreenPage2    EQU 2*gScreenSize
  259. gScreenPage3    EQU 3*gScreenSize
  260. gScreenSegment  EQU 0A000h
  261.  
  262. gScreen DW  gScreenPage1
  263. gColor  DB  02h
  264. FallDown DB  200,190,180,170,160
  265.          DB  150,140,130,120,110
  266.          DB  100,90,80,70,60,50,40
  267.          DB  30,20,10,0,5,10,15,20
  268.          DB  25,30,33,36,38,39,40
  269.          DB  40,40,39,38,36,33,30
  270.          DB  25,20,15,10,5,0,3,5
  271.          DB  7,9,11,11,9,7,5,3,0
  272.          DB  1,2,3,4,3,2,1,0
  273.          DB  1,2,3,2,1,0,1,2,1,0
  274.          DB  1,0,1,0,255
  275. Aufbau   DB  230,20,20,0,230,20,195,0
  276.          DB  254,20,20,154,254,20,195,154
  277.          DB  230,60,45,0,230,60,170,0
  278.          DB  254,60,45,154,254,60,170,154
  279.          DB  230,40,70,0,230,40,145,0
  280.          DB  254,40,70,154,254,40,145,154
  281.          DB  230,80,95,0,230,100,120,0
  282.          DB  254,80,95,154,254,100,120,154
  283. FigurPos DW 0,0,230,300,230,280,230
  284.          DW 220,230,240,230,260,230,200
  285.          DW 0,0,254,200,254,260,254
  286.          DW 240,254,220,254,280,254,300
  287.  
  288. xcount          DW 0
  289. ycount          DW 0
  290. pack            DB 0
  291. bufpos          DW 0
  292. gPCXfileTitel   DB 'TITEL.PCX',0
  293. gPCXfileBrett   DB 'CHESS.PCX',0
  294. gPCXBuffer      DB 1024 DUP (0)
  295.  
  296.         .CODE
  297.  
  298.         ; ********************************
  299.         ;                         CHESS-fx
  300.         ; ********************************
  301.  
  302.         call Intro
  303.         mov ax,seg GameStack
  304.         mov ds,ax
  305.         mov es,ax
  306.         mov ax,offset GameStack
  307.         mov word ptr[ds:aktStack],ax
  308.  
  309.         mov si,aktStack
  310.         call Spiel
  311.         call gExit
  312.         call Quit
  313.  
  314.         mov ah,4Ch
  315.         int 21h
  316.  
  317.         ; ********************************
  318.         ;       Zuggenerator-Zug eintragen
  319.         ; ********************************
  320.  
  321. NeuerZug PROC
  322.         ; Neuen Zug eintragen
  323.         ; al=von, ah=nach
  324.         ; dx=variante
  325.         ; (Schlagzüge werden autom.
  326.         ; erkannt und markiert)
  327.  
  328.         push ax
  329.         push bx
  330.         push si
  331.         mov si,AktStack
  332.         xor bh,bh
  333.  
  334.         ; klRochade?
  335.         cmp dl,klRochade
  336.         je nz02
  337.         ; grRochade?
  338.         cmp dl,grRochade
  339.         je nz02
  340.  
  341.         ; Zielfeld leer
  342.         mov bl,ah
  343.         cmp BYTE PTR [ds:si+bx],leer
  344.         je nz02
  345.         cmp BYTE PTR [ds:si+bx],rand
  346.         je nz01
  347.         ; wer schlägt?
  348.         mov bl,al
  349.         cmp BYTE PTR [ds:si+bx],leer
  350.         jl nz03
  351.         ; weiss schlägt!
  352.         mov bl,ah
  353.         cmp BYTE PTR [ds:si+bx],leer
  354.         ; sich selbst schlagen gilt nicht
  355.         jg nz01
  356.         mov dx,Schlagzug
  357.         jmp nz02
  358.  
  359.         ; schwarz schlägt!
  360. nz03:   mov bl,ah
  361.         cmp BYTE PTR [ds:si+bx],leer
  362.         ; sich selbst schlagen gilt nicht
  363.         jl nz01
  364.         mov dx,Schlagzug
  365.  
  366.         ; Zug eintragen
  367.  
  368. nz02:   push cx
  369.         xor ch,ch
  370.         mov cl,byte ptr[ds:ZWert+bx]
  371.         add word ptr[ds:DrohWrt],cx
  372.         pop cx
  373.  
  374.         ; noch volle Suche?
  375.         cmp si,horizon
  376.         jle nz02ok  ; ja!
  377.         ; nein, also Sonderzug?
  378.         cmp dx,Schlagzug
  379.         jne nz01
  380.  
  381.         ; wurde Zug schon einmal bewertet?
  382. nz02ok: push ax
  383.         push dx
  384.         mov dx,ax
  385.         ; Bewertung in ax holen
  386.         ; (aus savelist)
  387.         call Aussortieren
  388.  
  389.         ; Zug eintragen (von,nach,option)
  390.         mov bx,word ptr[ds:si.anzahl]
  391.         pop cx ; option
  392.      mov word ptr[ds:si.list+bx.option],cx
  393.         pop cx ; zug
  394.         mov word ptr[ds:si.list+bx],cx
  395.  
  396.         ; nach letzter Bewertung(ax)
  397.         ; einsortieren
  398.         mov dx,word ptr[ds:si.anzahl]
  399.         mov di,si
  400.         add di,size feld
  401.         mov bx,word ptr[ds:si.start]
  402.         call Einsortieren
  403.         mov word ptr[ds:si.start],bx
  404.        add word ptr[ds:si.anzahl],size zug
  405.         xor dx,dx
  406.  
  407. nz01:   pop si
  408.         pop bx
  409.         pop ax
  410.         ret
  411. NeuerZug ENDP
  412.  
  413.         ; ********************************
  414.         ;               Bauernzug -- weiss
  415.         ; ********************************
  416.  
  417. BauernZugWeiss PROC
  418.         push bx
  419.         xor dx,dx
  420.         mov al,bl
  421.  
  422.         ; Schlagzug links
  423.         sub bl,11
  424.         mov ah,bl
  425.         cmp BYTE PTR [ds:si+bx],leer
  426.         jge bzgw03
  427.         CALL bzwEintragen
  428.  
  429.         ; Schlagzug rechts
  430. bzgw03: inc bl
  431.         inc bl
  432.         mov ah,bl
  433.         cmp BYTE PTR [ds:si+bx],leer
  434.         jge bzgw01
  435.         CALL bzwEintragen
  436.  
  437. bzgw01: ; ein weiter leer?
  438.         mov bl,al
  439.         sub bl,10
  440.         mov ah,bl
  441.         cmp BYTE PTR [ds:si+bx],leer
  442.         jne bzgw02
  443.         CALL bzwEintragen
  444.  
  445.         ; zwei vorwärts, wenn leer
  446.         cmp al,80
  447.         jl bzgw02
  448.         sub bl,10
  449.         mov ah,bl
  450.         cmp BYTE PTR [ds:si+bx],leer
  451.         jne bzgw02
  452.         CALL NeuerZug
  453.  
  454. bzgw02: pop bx
  455.         ret
  456. BauernZugWeiss ENDP
  457.  
  458.         ; ********************************
  459.         ;   Hilfroutine für BauernZugWeiss
  460.         ; ********************************
  461.  
  462. bzwEintragen PROC
  463.         ; Bauernumwandlung?
  464.         cmp ah,30
  465.         jg bzgw05
  466.         ; Bauer in Dame
  467.         mov dx,DameW
  468.         CALL NeuerZug
  469.         ; Bauer in Springer
  470.         mov dx,SpringerW
  471.         CALL NeuerZug
  472.         ret
  473. bzgw05: ; oder einfach vorwärts
  474.         CALL NeuerZug
  475.         ret
  476. bzwEintragen ENDP
  477.  
  478.         ; ********************************
  479.         ;             Bauernzug -- schwarz
  480.         ; ********************************
  481.  
  482. BauernZugSchw PROC
  483.         push bx
  484.         xor dx,dx
  485.         mov al,bl
  486.  
  487.         ; Schlagzug links
  488.         add bl,9
  489.         mov ah,bl
  490.         cmp BYTE PTR [ds:si+bx],leer
  491.         jle bzgs03
  492.         CALL bzsEintragen
  493.  
  494.         ; Schlagzug rechts
  495. bzgs03: inc bl
  496.         inc bl
  497.         mov ah,bl
  498.         cmp BYTE PTR [ds:si+bx],leer
  499.         jle bzgs01
  500.         CALL bzsEintragen
  501.  
  502. bzgs01: ; ein weiter leer?
  503.         mov bl,al
  504.         add bl,10
  505.         mov ah,bl
  506.         cmp BYTE PTR [ds:si+bx],leer
  507.         jne bzgs02
  508.         call bzsEintragen
  509.  
  510.         ; zwei vorwärts, wenn leer
  511.         cmp al,40
  512.         jg bzgs02
  513.         add bl,10
  514.         mov ah,bl
  515.         cmp BYTE PTR [ds:si+bx],leer
  516.         jne bzgs02
  517.         CALL NeuerZug
  518.  
  519. bzgs02: pop bx
  520.         ret
  521. BauernZugSchw ENDP
  522.  
  523.         ; ********************************
  524.         ;   Hilfsroutine für BauernZugSchw
  525.         ; ********************************
  526.  
  527. bzsEintragen PROC
  528.         ; dann Bauernumwandlung?
  529.         cmp ah,90
  530.         jl bzgs05
  531.         ; Bauer in Dame
  532.         mov dx,DameS
  533.         CALL NeuerZug
  534.         ; Bauer in Springer
  535.         mov dx,SpringerS
  536.         CALL NeuerZug
  537.         ret
  538.  
  539. bzgs05: ; oder einfach vorwärts
  540.         CALL NeuerZug
  541.         ret
  542. bzsEintragen ENDP
  543.  
  544.         ; ********************************
  545.         ;                      Springerzug
  546.         ; ********************************
  547.  
  548. SpringerZug     PROC
  549.         mov al,bl
  550.         mov ah,al
  551.         xor dx,dx
  552.  
  553.         add ah,21     ; 21
  554.         CALL NeuerZug
  555.         sub ah,21+21  ; -21
  556.         CALL NeuerZug
  557.         add ah,21+8   ; 8
  558.         CALL NeuerZug
  559.         sub ah,8 +8   ; -8
  560.         CALL NeuerZug
  561.         add ah,8 +12  ; 12
  562.         CALL NeuerZug
  563.         sub ah,12+12  ; -12
  564.         CALL NeuerZug
  565.         add ah,12+19  ; 19
  566.         CALL NeuerZug
  567.         sub ah,19+19  ; -19
  568.         CALL NeuerZug
  569.  
  570.         ret
  571. SpringerZug ENDP
  572.  
  573.         ; ********************************
  574.         ;                   diagonale Züge
  575.         ; ********************************
  576.  
  577. DiagonalZug PROC
  578.         push bx
  579.         mov al,bl
  580.         mov ah,al
  581.         xor dx,dx
  582.  
  583.         ; nach rechts oben (-9)
  584. dzro:   sub ah,9
  585.         mov bl,ah
  586.         CALL NeuerZug
  587.         cmp BYTE PTR [ds:si+bx],leer
  588.         je dzro
  589.         mov ah,al
  590.  
  591.         ; nach rechts unten (+9)
  592. dzru:   add ah,9
  593.         mov bl,ah
  594.         CALL NeuerZug
  595.         cmp BYTE PTR [ds:si+bx],leer
  596.         je dzru
  597.         mov ah,al
  598.  
  599.         ; nach links oben (-11)
  600. dzlo:   sub ah,11
  601.         mov bl,ah
  602.         CALL NeuerZug
  603.         cmp BYTE PTR [ds:si+bx],leer
  604.         je dzlo
  605.         mov ah,al
  606.  
  607.         ; nach links oben (+11)
  608. dzlu:   add ah,11
  609.         mov bl,ah
  610.         CALL NeuerZug
  611.         cmp BYTE PTR [ds:si+bx],leer
  612.         je dzlu
  613.  
  614.         pop bx
  615.         ret
  616. DiagonalZug ENDP
  617.  
  618.         ; ********************************
  619.         ;       horizontale/vertikale Züge
  620.         ; ********************************
  621.  
  622. HorizVertZug PROC
  623.         push bx
  624.         mov al,bl
  625.         mov ah,al
  626.         xor dx,dx
  627.  
  628.         ; nach links (-1)
  629. hvzl:   dec ah
  630.         mov bl,ah
  631.         CALL NeuerZug
  632.         cmp BYTE PTR [ds:si+bx],leer
  633.         je hvzl
  634.         mov ah,al
  635.  
  636.         ; nach rechts (+1)
  637. hvzr:   inc ah
  638.         mov bl,ah
  639.         CALL NeuerZug
  640.         cmp BYTE PTR [ds:si+bx],leer
  641.         je hvzr
  642.         mov ah,al
  643.  
  644.         ; nach oben (-10)
  645. hvzo:   sub ah,10
  646.         mov bl,ah
  647.         CALL NeuerZug
  648.         cmp BYTE PTR [ds:si+bx],leer
  649.         je hvzo
  650.         mov ah,al
  651.  
  652.         ; nach unten (+10)
  653. hvzu:   add ah,10
  654.         mov bl,ah
  655.         CALL NeuerZug
  656.         cmp BYTE PTR [ds:si+bx],leer
  657.         je hvzu
  658.  
  659.         pop bx
  660.         ret
  661. HorizVertZug ENDP
  662.  
  663.  
  664.         ; ********************************
  665.         ;                        Königszug
  666.         ; ********************************
  667.  
  668. KoenigsZug PROC
  669.         mov al,bl
  670.         mov ah,al
  671.         xor dx,dx
  672.  
  673.         inc ah        ; 1
  674.         CALL NeuerZug
  675.         sub ah,1+1    ; -1
  676.         CALL NeuerZug
  677.         add ah,1+11   ; 11
  678.         CALL NeuerZug
  679.         sub ah,11+11  ; -11
  680.         CALL NeuerZug
  681.         add ah,11+10  ; 10
  682.         CALL NeuerZug
  683.         sub ah,10+10  ; -10
  684.         CALL NeuerZug
  685.         add ah,10+9   ; 9
  686.         CALL NeuerZug
  687.         sub ah,9+9    ; -9
  688.         CALL NeuerZug
  689.  
  690.         ret
  691. KoenigsZug ENDP
  692.  
  693.         ; ********************************
  694.         ;     Rochade nach Regeln möglich?
  695.         ;     dx linkes Byte der zu unter-
  696.         ;     suchenden Doppelposition des
  697.         ;              Koenig (jetzt&test)
  698.         ;  (Update in KoenPs/w außerhalb!)
  699.         ; ********************************
  700.  
  701. RochadeMoeglich PROC
  702.         push ax
  703.         push bx
  704.         push cx
  705.         mov bx,dx
  706.         mov ax,word ptr[ds:si+bx]
  707.         xchg ah,al
  708.         mov word ptr[ds:si+bx],ax
  709.         push dx
  710.         call KoenigImSchach
  711.         pop bx
  712.         mov ax,word ptr[ds:si+bx]
  713.         xchg ah,al
  714.         mov word ptr[ds:si+bx],ax
  715.         pop cx
  716.         pop bx
  717.         pop ax
  718.         ret
  719. RochadeMoeglich ENDP
  720.  
  721.         ; ********************************
  722.         ;  Rochade nur erlaubt, wenn König
  723.         ;            nicht im Schach steht
  724.         ; ********************************
  725.  
  726. RochadeErlaubt PROC
  727.         push ax
  728.         push bx
  729.         push cx
  730.         call KoenigImSchach
  731.         pop cx
  732.         pop bx
  733.         pop ax
  734.         ret
  735. RochadeErlaubt ENDP
  736.  
  737.         ; ********************************
  738.         ;                RochadenZug weiss
  739.         ; ********************************
  740.  
  741. RochadenZugW PROC
  742.         cmp al,95
  743.         jne rzwend
  744.         mov al,bl
  745.  
  746.         ; kleine Rochade
  747.         cmp BYTE PTR [ds:si+96],leer
  748.         jne rzwg
  749.         cmp BYTE PTR [ds:si+97],leer
  750.         jne rzwg
  751.       cmp BYTE PTR [ds:si.klRochWmgl],true
  752.         jne rzwg
  753.         call RochadeErlaubt
  754.         jc rzwg
  755.         mov byte ptr[ds:si.KoenPW],96
  756.         mov dx,95
  757.         call RochadeMoeglich
  758.         mov byte ptr[ds:si.KoenPW],95
  759.         jc rzwg
  760.         mov dx,klRochade
  761.         mov ah,97
  762.         CALL NeuerZug
  763.  
  764.         ; große Rochade
  765. rzwg:   cmp BYTE PTR [ds:si+92],leer
  766.         jne rzwend
  767.         cmp BYTE PTR [ds:si+93],leer
  768.         jne rzwend
  769.         cmp BYTE PTR [ds:si+94],leer
  770.         jne rzwend
  771.       cmp BYTE PTR [ds:si.grRochWmgl],true
  772.         jne rzwend
  773.         call RochadeErlaubt
  774.         jc rzwend
  775.         mov byte ptr[ds:si.KoenPW],94
  776.         mov dx,94
  777.         call RochadeMoeglich
  778.         mov byte ptr[ds:si.KoenPW],95
  779.         jc rzwend
  780.         mov dx,grRochade
  781.         mov ah,93
  782.         CALL NeuerZug
  783.  
  784. rzwend: ret
  785. RochadenZugW ENDP
  786.  
  787.  
  788.         ; ********************************
  789.         ;              RochadenZug schwarz
  790.         ; ********************************
  791.  
  792. RochadenZugS PROC
  793.         cmp bl,25
  794.         jne rzsend
  795.         mov al,bl
  796.  
  797.         ; kleine Rochade
  798.         cmp BYTE PTR [ds:si+26],leer
  799.         jne rzsg
  800.         cmp BYTE PTR [ds:si+27],leer
  801.         jne rzsg
  802.       cmp BYTE PTR [ds:si.klRochSmgl],true
  803.         jne rzsg
  804.         call RochadeErlaubt
  805.         jc rzsg
  806.         mov byte ptr[ds:si.KoenPW],26
  807.         mov dx,25
  808.         call RochadeMoeglich
  809.         mov byte ptr[ds:si.KoenPW],25
  810.         jc rzsg
  811.         mov dx,klRochade
  812.         mov ah,27
  813.         CALL NeuerZug
  814.  
  815.         ; große Rochade
  816. rzsg:   cmp BYTE PTR [ds:si+22],leer
  817.         jne rzsend
  818.         cmp BYTE PTR [ds:si+23],leer
  819.         jne rzsend
  820.         cmp BYTE PTR [ds:si+24],leer
  821.         jne rzsend
  822.       cmp BYTE PTR [ds:si.grRochSmgl],true
  823.         jne rzsend
  824.         call RochadeErlaubt
  825.         jc rzsend
  826.         mov byte ptr[ds:si.KoenPW],24
  827.         mov dx,24
  828.         call RochadeMoeglich
  829.         mov byte ptr[ds:si.KoenPW],25
  830.         jc rzsend
  831.         mov dx,grRochade
  832.         mov ah,23
  833.         CALL NeuerZug
  834.  
  835. rzsend: ret
  836. RochadenZugS ENDP
  837.  
  838.  
  839.         ; ********************************
  840.         ;         gesamte Zugliste löschen
  841.         ; ********************************
  842.  
  843. LoescheListe PROC
  844.         cld
  845.         mov di,aktStack
  846.         mov word ptr[ds:di.Anzahl],0
  847.         mov word ptr[ds:di.Start],0
  848.        mov word ptr[ds:di.BedrohungWert],0
  849.         add di,SIZE feld
  850.         xor ax,ax
  851.         mov cx,SIZE List
  852.         sar cx,1
  853.         rep stosw
  854.         ret
  855. LoescheListe ENDP
  856.  
  857.         ; ********************************
  858.         ;       sortierte Zugliste löschen
  859.         ; ********************************
  860.  
  861. LoescheSaveList PROC
  862.         mov di,aktStack
  863.         mov word ptr[ds:di.savestart],0
  864.         mov word ptr[ds:di.saveanzahl],0
  865.   add di,(size spielstand-size savelist-4)
  866.         xor ax,ax
  867.         mov cx,size savelist
  868.         sar cx,1
  869.         rep stosw
  870.         ret
  871. LoescheSaveList ENDP
  872.  
  873.         ; ********************************
  874.         ;          mögliche Züge für weiss
  875.         ; ********************************
  876.  
  877. ZugGenWeiss PROC
  878.         push si
  879.         CALL LoescheListe
  880.         mov si,aktStack
  881.         mov bx,20
  882.         mov cx,79
  883.  
  884.         ; weisse Figur?
  885. zgw01:  inc bx
  886.         push cx
  887.         mov cl,BYTE PTR [ds:si+bx]
  888.         cmp cl,leer
  889.         jle zgw02
  890.  
  891.         mov word ptr[ds:DrohWrt],0
  892.  
  893.         cmp cl,BauerW
  894.         jnz zgw03
  895.         CALL BauernZugWeiss
  896. zgw03:  cmp cl,SpringerW
  897.         jnz zgw04
  898.         CALL SpringerZug
  899.         jmp zgw02
  900. zgw04:  cmp cl,TurmW
  901.         jnz zgw05
  902.         CALL HorizVertZug
  903.         mov dx,word ptr[ds:DrohWrt]
  904.         sal dx,1
  905.       add word ptr[ds:si.BedrohungWert],dx
  906.         jmp zgw02
  907. zgw05:  cmp cl,LaeuferW
  908.         jnz zgw06
  909.         CALL DiagonalZug
  910.         mov dx,word ptr[ds:DrohWrt]
  911.         sal dx,1
  912.       add word ptr[ds:si.BedrohungWert],dx
  913.         jmp zgw02
  914. zgw06:  cmp cl,DameW
  915.         jnz zgw07
  916.         CALL HorizVertZug
  917.         CALL DiagonalZug
  918.         mov dx,word ptr[ds:DrohWrt]
  919.       add word ptr[ds:si.BedrohungWert],dx
  920.         jmp zgw02
  921. zgw07:  cmp cl,KoenigW
  922.         jnz zgw02
  923.         mov byte ptr[ds:si.KoenPW],bl
  924.         CALL KoenigsZug
  925.         CALL RochadenZugW
  926.  
  927. zgw02:  pop cx
  928.         loop zgw01
  929.  
  930.         call LoescheSaveList
  931.         pop si
  932.         ret
  933. ZugGenWeiss ENDP
  934.  
  935.         ; ********************************
  936.         ;        mögliche Züge für schwarz
  937.         ; ********************************
  938.  
  939. ZugGenSchwarz   PROC
  940.         push si
  941.         CALL LoescheListe
  942.         mov si,aktStack
  943.         mov bx,20
  944.         mov cx,79
  945.  
  946.         ; weisse Figur?
  947. zgs01:  inc bx
  948.         push cx
  949.         mov cl,BYTE PTR [ds:si+bx]
  950.         cmp cl,leer
  951.         jge zgs02
  952.  
  953.         mov word ptr[ds:DrohWrt],0
  954.  
  955.         cmp cl,BauerS
  956.         jnz zgs03
  957.         CALL BauernZugSchw
  958. zgs03:  cmp cl,SpringerS
  959.         jnz zgs04
  960.         CALL SpringerZug
  961.         jmp zgs02
  962. zgs04:  cmp cl,TurmS
  963.         jnz zgs05
  964.         CALL HorizVertZug
  965.         mov dx,word ptr[ds:DrohWrt]
  966.         sal dx,1
  967.       sub word ptr[ds:si.BedrohungWert],dx
  968.         jmp zgs02
  969. zgs05:  cmp cl,LaeuferS
  970.         jnz zgs06
  971.         CALL DiagonalZug
  972.         mov dx,word ptr[ds:DrohWrt]
  973.         sal dx,1
  974.       sub word ptr[ds:si.BedrohungWert],dx
  975.         jmp zgs02
  976. zgs06:  cmp cl,DameS
  977.         jnz zgs07
  978.         CALL HorizVertZug
  979.         CALL DiagonalZug
  980.         mov dx,word ptr[ds:DrohWrt]
  981.       sub word ptr[ds:si.BedrohungWert],dx
  982.         jmp zgs02
  983. zgs07:  cmp cl,KoenigS
  984.         jnz zgs02
  985.         mov byte ptr[ds:si.KoenPS],bl
  986.         CALL KoenigsZug
  987.         CALL RochadenZugS
  988.  
  989. zgs02:  pop cx
  990.         loop zgs01
  991.  
  992.         call LoescheSaveList
  993.         pop si
  994.         ret
  995. ZugGenSchwarz ENDP
  996.  
  997.  
  998.         ; ********************************
  999.         ;             Fuehre Zug Nr BX aus
  1000.         ; ********************************
  1001.  
  1002. FuehreZugAus PROC
  1003.         push bx
  1004.         mov ax,word ptr [ds:si.list+bx]
  1005.    mov dx,word ptr [ds:si.list+bx.option]
  1006.  
  1007.         xor bx,bx
  1008.         mov bl,ah  ; bx=nach
  1009.         mov ch,byte ptr [ds:si+bx]
  1010.  
  1011.         ; Rochadenrechte klären
  1012.         ; (Turm/König bewegt?)
  1013.         cmp al,25  ; Pos. schwarzer König
  1014.         jne fza001
  1015.       mov byte ptr[ds:si.klRochSmgl],false
  1016.       mov byte ptr[ds:si.grRochSmgl],false
  1017.         cmp dx,klRochade
  1018.         jge fza000
  1019.         jmp fzaw
  1020. fza000:
  1021.      sub byte ptr[ds:si.RochadeFaktor],100
  1022.      mov byte ptr[ds:si.RochadeErfolgt],dl
  1023.         mov byte ptr[ds:si+bx],KoenigS
  1024.         mov byte ptr[ds:si+25],leer
  1025.         mov byte ptr[ds:si.KoenPS],bl
  1026.         add bl,25
  1027.         shr bl,1
  1028.         mov byte ptr[ds:si+bx],TurmS
  1029.         cmp dx,klRochade
  1030.         je fzaSKR
  1031.         mov byte ptr[ds:si+21],leer
  1032.         jmp fza99
  1033. fzaSKR: mov byte ptr[ds:si+28],leer
  1034.         jmp fza99
  1035. fza001: cmp al,21  ; Pos.links schw Turm
  1036.         jne fza002
  1037.       mov byte ptr[ds:si.grRochSmgl],false
  1038.         jmp fzaw
  1039. fza002: cmp al,28  ; Pos.rechts schw Turm
  1040.         jne fza003
  1041.       mov byte ptr[ds:si.klRochSmgl],false
  1042.         jmp fzaw
  1043. fza003: cmp al,95  ; Pos. weißer König
  1044.         jne fza004
  1045.       mov byte ptr[ds:si.klRochWmgl],false
  1046.       mov byte ptr[ds:si.grRochWmgl],false
  1047.         cmp dx,klRochade
  1048.         jl fzaw
  1049.      add byte ptr[ds:si.RochadeFaktor],100
  1050.      mov byte ptr[ds:si.RochadeErfolgt],dl
  1051.         mov byte ptr[ds:si+bx],KoenigW
  1052.         mov byte ptr[ds:si+95],leer
  1053.         mov byte ptr[ds:si.KoenPW],bl
  1054.         add bl,95
  1055.         shr bl,1
  1056.         mov byte ptr[ds:si+bx],TurmW
  1057.         cmp dx,klRochade
  1058.         je fzaWKR
  1059.         mov byte ptr[ds:si+91],leer
  1060.         jmp fza99
  1061. fzaWKR: mov byte ptr[ds:si+98],leer
  1062.         jmp fza99
  1063. fza004: cmp al,91  ;Pos.links weißer Turm
  1064.         jne fza005
  1065.       mov byte ptr[ds:si.grRochWmgl],false
  1066.         jmp fzaw
  1067. fza005: cmp al,98  ;Pos.rechts weißer Turm
  1068.         jne fzaw
  1069.       mov byte ptr[ds:si.klRochWmgl],false
  1070.  
  1071.         ; Schlagzug?
  1072. fzaw:   cmp ch,leer
  1073.         je fza09
  1074.         jl fza01
  1075.  
  1076.         ; weiß geschlagen
  1077.         push bx
  1078.         xor bh,bh
  1079.         mov bl,ch
  1080.         sal bx,1
  1081.         mov dx,word ptr[ds:Wert+bx]
  1082.         pop bx
  1083.         sub word ptr[ds:si.MatWertW],dx
  1084.         sub word ptr[ds:si.MatDiff],dx
  1085.         jmp fza09
  1086.  
  1087.         ; schwarz geschlagen
  1088. fza01:  push bx
  1089.         xor bh,bh
  1090.         mov bl,ch
  1091.         sal bx,1
  1092.         mov dx,word ptr[ds:Wert+bx]
  1093.         pop bx
  1094.         sub word ptr[ds:si.MatWertS],dx
  1095.         sub word ptr[ds:si.MatDiff],dx
  1096.  
  1097. fza09:  mov bl,al  ; bx=von
  1098.         mov cl,byte ptr [ds:si+bx]
  1099.  
  1100.         ; neue Königsposition
  1101.         cmp cl,KoenigW
  1102.         jne fza09a
  1103.         mov byte ptr[ds:si.KoenPW],ah
  1104.         jmp fza09b
  1105. fza09a: cmp cl,KoenigS
  1106.         jne fza09b
  1107.         mov byte ptr[ds:si.KoenPS],ah
  1108.  
  1109.         ; Bauernumwandlung?
  1110. fza09b: cmp cl,BauerW
  1111.         jne fza10
  1112.         cmp bl,39
  1113.         jg fza11
  1114.         mov cl,dl
  1115.         push bx
  1116.         mov bx,dx
  1117.         sal bx,1
  1118.         mov dx,word ptr[ds:Wert+bx]
  1119.         sub dx,word ptr[ds:Wert+2*BauerW]
  1120.         pop bx
  1121.         add word ptr[ds:si.MatWertW],dx
  1122.         add word ptr[ds:si.MatDiff],dx
  1123.         jmp fza11
  1124.  
  1125. fza10:  cmp cl,BauerS
  1126.         jne fza11
  1127.         cmp bl,80
  1128.         jl fza11
  1129.         mov cl,dl
  1130.         push bx
  1131.         mov bx,dx
  1132.         sal bx,1
  1133.         mov dx,word ptr[ds:Wert+bx]
  1134.         sub dx,word ptr[ds:Wert+2*BauerS]
  1135.         pop bx
  1136.         add word ptr[ds:si.MatWertS],dx
  1137.         add word ptr[ds:si.MatDiff],dx
  1138.  
  1139. fza11:  mov bl,ah
  1140.         mov byte ptr [ds:si+bx],cl
  1141.         mov bl,al
  1142.         mov byte ptr [ds:si+bx],leer
  1143.  
  1144. fza99:  pop bx
  1145.         ret
  1146. FuehreZugAus ENDP
  1147.  
  1148.         ; ********************************
  1149.         ; Stellungsanalyse
  1150.         ; ********************************
  1151.  
  1152. Analyse PROC
  1153.         ; alte Daten löschen
  1154.         xor ax,ax
  1155.         mov cx,offset Horizon
  1156.         sub cx,offset PosBW
  1157.         mov bx,offset PosBW
  1158.         sar cx,1
  1159.         mov di,bx
  1160.         rep stosw
  1161.  
  1162.         ; Endspiel S/W
  1163.         cmp word ptr[ds:si.MatWertW],2000
  1164.         jg an01
  1165.         mov byte ptr[ds:si.EndspielW],true
  1166. an01:   cmp word ptr[ds:si.MatWertS],-2000
  1167.         jl an02
  1168.         mov byte ptr[ds:si.EndspielS],true
  1169.  
  1170.         ; Bauernstandorte
  1171. an02:   mov si,aktStack
  1172.         mov bx,20
  1173.         mov cx,79
  1174.  
  1175. an03:   inc bx
  1176.         cmp byte ptr[ds:si+bx],leer
  1177.         jl an03s
  1178.         je an03w
  1179.         cmp byte ptr[ds:si+bx],BauerW
  1180.         je an03w
  1181.         ; weiße Figur eintragen
  1182.         xor dh,dh
  1183.         mov dl,byte ptr[ds:PosFW]
  1184.         inc dl
  1185.         mov di,dx
  1186.         mov byte ptr[ds:PosFW],dl
  1187.         mov byte ptr[ds:PosFW+di],bl
  1188.         mov dl,byte ptr[ds:si+bx]
  1189.         jmp an03w
  1190.  
  1191.         ; schwarze Figur eintragen
  1192. an03s:  cmp byte ptr[ds:si+bx],rand
  1193.         je an03w
  1194.         cmp byte ptr[ds:si+bx],BauerS
  1195.         je an04
  1196.         xor dh,dh
  1197.         mov dl,byte ptr[ds:PosFS]
  1198.         inc dl
  1199.         mov di,dx
  1200.         mov byte ptr[ds:PosFS],dl
  1201.         mov byte ptr[ds:PosFS+di],bl
  1202.         mov dl,byte ptr[ds:si+bx]
  1203.         jmp an03w
  1204.  
  1205.         ; Konstr. wegen near jump
  1206. an03a:  loop an03
  1207.         jmp an05
  1208.  
  1209. an03w:  cmp byte ptr[ds:si+bx],BauerW
  1210.         jne an04
  1211.         ; neuer Bauer
  1212.         inc byte ptr[ds:PosBW]
  1213.         ; di=wievielter weißer Bauer
  1214.         xor dh,dh
  1215.         mov dl,byte ptr[ds:PosBW]
  1216.         mov di,dx
  1217.         ; Bauerspalte/zeile ermitteln
  1218.         ; ah=Zeile, al=Spalte
  1219.         mov ah,byte ptr[ds:bx+Zeile]
  1220.         mov al,byte ptr[ds:bx+Spalte]
  1221.         ; Bauernposition
  1222.         mov byte ptr[ds:di+PosBW],bl
  1223.         mov byte ptr[ds:di+SpaBW],al
  1224.         mov byte ptr[ds:di+ZeiBW],ah
  1225.         ; Bauern-Spaltenzähler
  1226.         ; Position/Slowest
  1227.         xor ah,ah
  1228.         mov di,ax  ; di=spalte
  1229.         mov dh,byte ptr[ds:di+SZaBW]
  1230.         inc byte ptr[ds:di+SZaBW]
  1231.         ; jeweils neuer Bauer  ist auch
  1232.         ; langsamster weißer Bauer
  1233.         mov byte ptr[ds:di+SlowBW],bl
  1234.         shl dh,1
  1235.         mov dl,dh
  1236.         shl dh,1
  1237.         shl dh,1
  1238.         add dl,dh
  1239.         xor dh,dh
  1240.         add dx,di
  1241.         mov di,dx
  1242.         mov byte ptr[ds:di+ListBW],bl
  1243.         jmp an03a
  1244.  
  1245. an04:   cmp byte ptr[ds:si+bx],BauerS
  1246.         jne an03a
  1247.         ; neuer Bauer
  1248.         inc byte ptr[ds:PosBS]
  1249.         ; di=wievielter schwarzer Bauer
  1250.         xor dh,dh
  1251.         mov dl,byte ptr[ds:PosBS]
  1252.         mov di,dx
  1253.         ; Bauerspalte/zeile ermitteln
  1254.         ; ah=Zeile, al=Spalte
  1255.         mov ah,byte ptr[ds:bx+Zeile]
  1256.         mov al,byte ptr[ds:bx+Spalte]
  1257.         ; Bauernposition
  1258.         mov byte ptr[ds:di+PosBS],bl
  1259.         mov byte ptr[ds:di+SpaBS],al
  1260.         mov byte ptr[ds:di+ZeiBS],ah
  1261.         ; Bauern-Spaltenzähler/Position
  1262.         xor ah,ah
  1263.         mov di,ax ; di=spalte
  1264.         mov dh,byte ptr[ds:di+SZaBS]
  1265.         inc byte ptr[ds:di+SZaBS]
  1266.         cmp dh,0
  1267.         jnz an03b
  1268.         ; erster Bauer in Spalte
  1269.         ; (bei schwarz gleichzeitig der
  1270.         ; langsamste Bauer in Spalte)
  1271.         mov byte ptr[ds:di+SlowBS],bl
  1272. an03b:  shl dh,1
  1273.         mov dl,dh
  1274.         shl dh,1
  1275.         shl dh,1
  1276.         add dl,dh
  1277.         xor dh,dh
  1278.         add dx,di
  1279.         mov di,dx
  1280.         mov byte ptr[ds:di+ListBS],bl
  1281.         jmp an03a
  1282.  
  1283.         ; Stellungstyp ermitteln
  1284. an05:   cmp byte ptr[ds:si.EndSpielW],true
  1285.         je an06
  1286.         cmp byte ptr[ds:si.EndSpielS],true
  1287.         je an06
  1288.         ; normal
  1289. an08:   mov byte ptr[ds:si.StellungTyp],4
  1290.         jmp an07
  1291.  
  1292.         ; noch weisse Bauern?
  1293. an06:   cmp byte ptr[ds:di+PosBW],0
  1294.         jg an08
  1295.         ; noch schwarze Bauern?
  1296.         cmp byte ptr[ds:di+PosBS],0
  1297.         jg an08
  1298.  
  1299.         ; Mattführung gg Schwarz?
  1300.         cmp word ptr[ds:si.MatDiff],500
  1301.         jl an09
  1302.         cmp word ptr[ds:si.MatWertS],-650
  1303.         jl an08
  1304.         mov byte ptr[ds:si.StellungTyp],3
  1305.         jmp an07
  1306.  
  1307.         ; Mattführung gg Weiss
  1308. an09:   cmp word ptr[ds:si.MatDiff],-500
  1309.         jg an10
  1310.         cmp word ptr[ds:si.MatWertW],650
  1311.         jg an08
  1312.         mov byte ptr[ds:si.StellungTyp],1
  1313.         jmp an07
  1314.  
  1315.         ; Remis-Stellungstyp
  1316. an10:   cmp word ptr[ds:si.MatWertW],325
  1317.         jg an08
  1318.         cmp word ptr[ds:si.MatWertS],-325
  1319.         jl an08
  1320.         mov byte ptr[ds:si.StellungTyp],2
  1321.  
  1322. an07:   ret
  1323. Analyse ENDP
  1324.  
  1325.  
  1326.         ; ********************************
  1327.         ;            Bauernbewertung weiss
  1328.         ; ********************************
  1329.  
  1330. BauernWertWeiss PROC
  1331.         mov si,aktStack
  1332.  
  1333.         ; überhaupt Bauern da?
  1334.         cmp byte ptr[ds:PosBW],0
  1335.         jnz bww
  1336.         ret
  1337.  
  1338. bww:    xor ax,ax
  1339.  
  1340.        cmp byte ptr[ds:si.EndSpielW],false
  1341.         je bww01
  1342.         push si
  1343.         mov si,offset VorES
  1344.         mov di,offset VorBW
  1345.         mov cx,8
  1346.         rep movsw
  1347.         pop si
  1348.  
  1349.         ; Blockierung Zentrumsbauern
  1350. bww01:  cmp byte ptr[ds:si+84],BauerW
  1351.         jne bww02
  1352.         cmp byte ptr[ds:si+74],leer
  1353.         je bww02
  1354.         sub ax,1000
  1355. bww02:  cmp byte ptr[ds:si+85],BauerW
  1356.         jne bww03
  1357.         cmp byte ptr[ds:si+75],leer
  1358.         je bww03
  1359.         sub ax,1000
  1360.  
  1361.         ; cx=Anzahl weiße Bauern
  1362.         ; ax=Bewertung der Bauern
  1363. bww03:  mov cl,byte ptr[ds:PosBW]
  1364.         xor ch,ch
  1365.  
  1366.         ; cx Nummer des weissen Bauern
  1367.         ; (wir zählen rückwärts)
  1368.         ; di=cx,dh=Pos,bx=Spalte,dl=Zeile
  1369. bwwl:   mov di,cx
  1370.         xor bh,bh
  1371.         mov si,aktStack
  1372.         mov bl,byte ptr[ds:PosBW+di]
  1373.         add si,bx
  1374.         mov dh,bl
  1375.         mov bl,byte ptr[ds:SpaBW+di]
  1376.         mov dl,byte ptr[ds:ZeiBW+di]
  1377.  
  1378.         ; isolierte Bauern
  1379.         ; (isolierte Bauern haben links
  1380.         ; und rechts keine eigenen Bauern)
  1381.  
  1382.         cmp byte ptr[ds:SZaBW+bx-1],0
  1383.         jne bww04
  1384.         cmp byte ptr[ds:SZaBW+bx+1],0
  1385.         jne bww04
  1386.         sub ax,1500
  1387.  
  1388.         ; Mehrfachbauern
  1389.         ; (in einer Spalte mehrere eigene
  1390.         ; Bauern)
  1391.  
  1392. bww04:  cmp byte ptr[ds:SZaBW+bx],2
  1393.         jl bww05
  1394.         sub ax,300
  1395.         cmp byte ptr[ds:SZaBW+bx],2
  1396.         je bww05
  1397.         sub ax,1800
  1398.  
  1399.         ; Freibauern (können durch
  1400.         ; gegn. Bauern nicht mehr
  1401.         ; geschlagen werden)
  1402.  
  1403.         ; links
  1404. bww05:  cmp byte ptr[ds:SZaBS+bx-1],0
  1405.         jz bww05a
  1406.         cmp byte ptr[ds:SlowBS+bx-1],dh
  1407.         jge bww05a
  1408.         jmp bww06
  1409.         ; geradeaus
  1410. bww05a: cmp byte ptr[ds:SZaBS+bx],0
  1411.         jz bww05b
  1412.         cmp byte ptr[ds:SlowBS+bx],dh
  1413.         jge bww05b
  1414.         jmp bww06
  1415.         ; rechts
  1416. bww05b: cmp byte ptr[ds:SZaBS+bx+1],0
  1417.         jz bww05c
  1418.         cmp byte ptr[ds:SlowBS+bx+1],dh
  1419.         jge bww05c
  1420.         jmp bww06
  1421.         ; ok, ist also Freibauer
  1422. bww05c: mov byte ptr[ds:FreiBW+bx],true
  1423.         ; bewertung=+ESFaktor
  1424.         ;          *UmwFaktor*Zeile*Zeile
  1425.         push bx
  1426.         push ax
  1427.         mov bx,115
  1428.         cmp byte ptr[ds:si-10],leer
  1429.         ; gegner davor?
  1430.         jge bww05x
  1431.         mov bl,80
  1432.         ; links oder rechts hinten
  1433.         ; eigener Bauer?
  1434. bww05x: cmp byte ptr[ds:si+11],BauerW
  1435.         jnz bww05d
  1436.         add bl,35
  1437.         jmp bww05e
  1438. bww05d: cmp byte ptr[ds:si+9],BauerW
  1439.         jnz bww05e
  1440.         add bl,35
  1441. bww05e:
  1442.        cmp byte ptr[ds:si.endspielS],false
  1443.         jz bww05f
  1444.         shl bl,1
  1445.         jmp bww05g
  1446. bww05f:
  1447.        cmp byte ptr[ds:si.endspielW],false
  1448.         jz bww05g
  1449.         shl bl,1
  1450.         ; Produkt errechnen
  1451. bww05g: mov al,bl
  1452.         xor ah,ah
  1453.         ; mal Quadrat der Zeile
  1454.         mov bl,8
  1455.         sub bl,dl
  1456.         mul bl
  1457.         mul bl
  1458.         mov bx,ax
  1459.         pop ax
  1460.         add ax,bx
  1461.         pop bx
  1462.  
  1463.         ; Vorrücken der Bauern
  1464.         ; ax:=ax+(8-zeile)*Vorrückwert
  1465. bww06:  push dx
  1466.         push ax
  1467.         shl bx,1
  1468.         mov ax,7
  1469.         sub al,dl
  1470.         mul word ptr[ds:VorBW+bx]
  1471.         mov dx,ax
  1472.         sar bx,1
  1473.         pop ax
  1474.         add ax,dx
  1475.         pop dx
  1476.  
  1477.         ; rückständige bauern
  1478.         ; (Bauern, die nicht durch eigene
  1479.         ; Bauern gedeckt sind (neben oder
  1480.         ; schräg-hinter) aber am Vor-
  1481.         ; rücken durch gegn. Bauern
  1482.         ; gehindert werden)
  1483.  
  1484.         cmp byte ptr[ds:si-1],BauerW
  1485.         jz bww07
  1486.         cmp byte ptr[ds:si+1],BauerW
  1487.         jz bww07
  1488.         cmp byte ptr[ds:si+9],BauerW
  1489.         jz bww07
  1490.         cmp byte ptr[ds:si+11],BauerW
  1491.         jz bww07
  1492.         cmp byte ptr[ds:si-19],BauerS
  1493.         jnz bww07
  1494.         sub ax,200
  1495.         sub byte ptr[ds:RuckBS+di],200
  1496.         cmp byte ptr[ds:si-21],BauerS
  1497.         jnz bww07
  1498.         sub ax,200
  1499.         sub byte ptr[ds:RuckBS+di],200
  1500.  
  1501. bww07:  dec cx
  1502.         jz bww08
  1503.         jmp bwwl
  1504.  
  1505. bww08:  ret
  1506. BauernWertWeiss ENDP
  1507.  
  1508.         ; ********************************
  1509.         ;          Bauernbewertung schwarz
  1510.         ; ********************************
  1511.  
  1512. BauernWertSchw PROC
  1513.         mov si,aktStack
  1514.  
  1515.         ; überhaupt Bauern vorhanden?
  1516.         cmp byte ptr[ds:PosBS],0
  1517.         jnz bws
  1518.         ret
  1519.  
  1520. bws:    xor ax,ax
  1521.  
  1522.        cmp byte ptr[ds:si.EndSpielS],false
  1523.         je bws01
  1524.         push si
  1525.         mov si,offset VorES
  1526.         mov di,offset VorBS
  1527.         mov cx,8
  1528.         rep movsw
  1529.         pop si
  1530.  
  1531.         ; Blockierung Zentrumsbauern
  1532. bws01:  cmp byte ptr[ds:si+34],BauerS
  1533.         jne bws02
  1534.         cmp byte ptr[ds:si+44],leer
  1535.         je bws02
  1536.         add ax,1000
  1537. bws02:  cmp byte ptr[ds:si+35],BauerS
  1538.         jne bws03
  1539.         cmp byte ptr[ds:si+45],leer
  1540.         je bws03
  1541.         add ax,1000
  1542.  
  1543.         ; cx=Anzahl schwarzen Bauern
  1544.         ; ax=Bewertung der Bauern
  1545. bws03:  mov cl,byte ptr[ds:PosBS]
  1546.         xor ch,ch
  1547.  
  1548.         ; cx Nummer des schwarzen Bauern
  1549.         ; (wir zählen rückwärts)
  1550.         ; di=cx,dh=Pos,bx=Spalte,dl=Zeile
  1551. bwsl:   mov di,cx
  1552.         xor bh,bh
  1553.         mov si,aktStack
  1554.         mov bl,byte ptr[ds:PosBS+di]
  1555.         add si,bx
  1556.         mov dh,bl
  1557.         mov bl,byte ptr[ds:SpaBS+di]
  1558.         mov dl,byte ptr[ds:ZeiBS+di]
  1559.  
  1560.         ; isolierte Bauern
  1561.         ; (isolierte Bauern haben links
  1562.         ; und rechts keine eigenen Bauern)
  1563.  
  1564.         cmp byte ptr[ds:SZaBS+bx-1],0
  1565.         jne bws04
  1566.         cmp byte ptr[ds:SZaBS+bx+1],0
  1567.         jne bws04
  1568.         add ax,1500
  1569.  
  1570.         ; Mehrfachbauern
  1571.         ; (in einer Spalte mehrere eigene
  1572.         ; Bauern)
  1573.  
  1574. bws04:  cmp byte ptr[ds:SZaBS+bx],2
  1575.         jl bws05
  1576.         add ax,300
  1577.         cmp byte ptr[ds:SZaBS+bx],2
  1578.         je bws05
  1579.         add ax,1800
  1580.  
  1581.         ; Freibauern (können durch
  1582.         ; gegn. Bauern nicht mehr
  1583.         ; geschlagen werden)
  1584.  
  1585.         ; links
  1586. bws05:  cmp byte ptr[ds:SZaBW+bx-1],0
  1587.         jz bws05a
  1588.         cmp byte ptr[ds:SlowBW+bx-1],dh
  1589.         jle bws05a
  1590.         jmp bws06
  1591.         ; geradeaus
  1592. bws05a: cmp byte ptr[ds:SZaBW+bx],0
  1593.         jz bws05b
  1594.         cmp byte ptr[ds:SlowBW+bx],dh
  1595.         jle bws05b
  1596.         jmp bws06
  1597.         ; rechts
  1598. bws05b: cmp byte ptr[ds:SZaBW+bx+1],0
  1599.         jz bws05c
  1600.         cmp byte ptr[ds:SlowBW+bx+1],dh
  1601.         jle bws05c
  1602.         jmp bws06
  1603.         ; ok, ist also Freibauer
  1604. bws05c: mov byte ptr[ds:FreiBS+bx],-1
  1605.         ; bewertung=+ESFaktor*
  1606.         ;        UmwFaktor*Zeile*Zeile
  1607.         push bx
  1608.         push ax
  1609.         mov bl,115
  1610.         cmp byte ptr[ds:si+10],leer
  1611.         ; gegner davor?
  1612.         jle bws05x
  1613.         mov bl,80
  1614.         ; links oder rechts
  1615.         ; hinten eigener Bauer
  1616. bws05x: cmp byte ptr[ds:si-11],BauerS
  1617.         jnz bws05d
  1618.         add bl,35
  1619.         jmp bws05e
  1620. bws05d: cmp byte ptr[ds:si-9],BauerS
  1621.         jnz bws05e
  1622.         add bl,35
  1623. bws05e:
  1624.        cmp byte ptr[ds:si.endspielS],false
  1625.         jz bws05f
  1626.         shl bl,1
  1627.         jmp bws05g
  1628. bws05f:
  1629.        cmp byte ptr[ds:si.endspielW],false
  1630.         jz bws05g
  1631.         shl bl,1
  1632.         ; Produkt errechnen
  1633. bws05g: mov al,bl
  1634.         xor ah,ah
  1635.         ; mal Quadrat der Zeile
  1636.         mov bl,dl
  1637.         mul bl
  1638.         mul bl
  1639.         mov bx,ax
  1640.         pop ax
  1641.         sub ax,bx
  1642.         pop bx
  1643.  
  1644.         ; Vorrücken der Bauern
  1645.         ; ax:=ax-(spalte)*Vorrückwert
  1646. bws06:  push dx
  1647.         push ax
  1648.         shl bx,1
  1649.         xor ah,ah
  1650.         mov al,dl
  1651.         dec al
  1652.         dec al
  1653.         mul word ptr[ds:VorBS+bx]
  1654.         mov dx,ax
  1655.         sar bx,1
  1656.         pop ax
  1657.         sub ax,dx
  1658.         pop dx
  1659.  
  1660.         ; rückständige bauern
  1661.  
  1662.         cmp byte ptr[ds:si-1],BauerS
  1663.         jz bws07
  1664.         cmp byte ptr[ds:si+1],BauerS
  1665.         jz bws07
  1666.         cmp byte ptr[ds:si-9],BauerS
  1667.         jz bws07
  1668.         cmp byte ptr[ds:si-11],BauerS
  1669.         jz bws07
  1670.         cmp byte ptr[ds:si+19],BauerW
  1671.         jnz bws07
  1672.         add ax,200
  1673.         add byte ptr[ds:RuckBW+di],200
  1674.         cmp byte ptr[ds:si+21],BauerW
  1675.         jnz bws07
  1676.         add ax,200
  1677.         add byte ptr[ds:RuckBW+di],200
  1678.  
  1679. bws07:  dec cx
  1680.         jz bws08
  1681.         jmp bwsl
  1682.  
  1683. bws08:  ret
  1684. BauernWertSchw ENDP
  1685.  
  1686.         ; ********************************
  1687.         ;                 Figurenwert weiß
  1688.         ; ********************************
  1689.  
  1690. FigurWertWeiss PROC
  1691.         mov si,aktStack
  1692.         xor ax,ax
  1693.  
  1694.         ; cx Anzahl Figuren weiß
  1695.         ; di Spalte aktuelle Figur
  1696.         ; bx Position aktuelle Figur
  1697.         xor ch,ch
  1698.         mov cl,byte ptr[ds:PosFW]
  1699. fwwl:   mov di,cx
  1700.         mov bl,byte ptr[ds:PosFW+di]
  1701.         xor bh,bh
  1702.         mov dl,byte ptr[ds:Spalte+bx]
  1703.         xor dh,dh
  1704.         mov di,dx
  1705.  
  1706.         cmp byte ptr[ds:si+bx],SpringerW
  1707.         jnz fww01
  1708.         ; weißer Springer
  1709.         shl bx,1
  1710.         add ax,word ptr[ds:SprTW+bx]
  1711.         sar bx,1
  1712.         inc byte ptr[ds:SumFW]
  1713.         cmp bl,90
  1714.         jl fww00
  1715.         inc byte ptr[ds:GrLFW]
  1716.         sub ax,470
  1717. fww00:  jmp fww09
  1718.  
  1719. fww01:  cmp byte ptr[ds:si+bx],LaeuferW
  1720.         jnz fww02
  1721.         ; weißer Läufer
  1722.         cmp byte ptr[ds:LauFW],0
  1723.         jz fww01a
  1724.         ; noch zwei Läufer-Bonus
  1725.         add ax,400
  1726. fww01a: mov byte ptr[ds:LauFW],1
  1727.         inc byte ptr[ds:SumFW]
  1728.         cmp bl,90
  1729.         jl fww01b
  1730.         inc byte ptr[ds:GrlFW]
  1731.         sub ax,550
  1732. fww01b: jmp fww09
  1733.  
  1734. fww02:  cmp byte ptr[ds:si+bx],TurmW
  1735.         jnz fww03
  1736.         ; weißer Turm vor gegn.Grundreihe?
  1737.         inc byte ptr[ds:SumFW]
  1738.         cmp bl,40
  1739.         jl fww02a
  1740.         cmp bl,39
  1741.         jg fww02a
  1742.         add ax,500
  1743.         cmp byte ptr[ds:PosFS],30
  1744.         jg fww02a
  1745.         add ax,600
  1746.         ; Turm-Bauer Lage
  1747. fww02a: cmp byte ptr[ds:SZaBW+di],0
  1748.         jz fww02b
  1749.         add ax, 150
  1750.         cmp byte ptr[ds:SZaBS+di],0
  1751.         jnz fww02b
  1752.         add ax,250
  1753.         ; zweiter Turm gleiche Spalte?
  1754. fww02b: mov dx,di
  1755.         cmp byte ptr[ds:TurmSW],dl
  1756.         jne fww02c
  1757.         add ax,800
  1758. fww02c: mov byte ptr[ds:TurmSW],dl
  1759.         ; Freibauern auf dieser Spalte?
  1760.         cmp byte ptr[ds:FreiBS+di],0
  1761.         jz fww02d
  1762.         add ax,1000
  1763.         jmp fww03
  1764. fww02d: cmp byte ptr[ds:FreiBW+di],false
  1765.         jz fww03
  1766.         add ax,1000
  1767.         jmp fww09
  1768.  
  1769.         ; Dame
  1770. fww03:  cmp byte ptr[ds:si+bx],DameW
  1771.         jnz fww04
  1772.         add byte ptr[ds:SumFW],3
  1773.         mov byte ptr[ds:DamePW],bl
  1774.         cmp bl,90
  1775.         jl fww09
  1776.         add byte ptr[ds:GrlFW],3
  1777.         jmp fww09
  1778.  
  1779.         ; König (nur Position feststellen)
  1780. fww04:  cmp byte ptr[ds:si+bx],KoenigW
  1781.         jne fww09
  1782.         mov byte ptr[ds:si.KoenPW],bl
  1783.  
  1784. fww09:  dec cx
  1785.         jz fww10
  1786.         jmp fwwl
  1787. fww10:  ret
  1788. FigurWertWeiss ENDP
  1789.  
  1790.         ; ********************************
  1791.         ;              Figurenwert schwarz
  1792.         ; ********************************
  1793.  
  1794. FigurWertSchw PROC
  1795.         mov si,aktStack
  1796.         xor ax,ax
  1797.  
  1798.         ; cx Anzahl Figuren schwarz
  1799.         ; di Spalte aktuelle Figur
  1800.         ; bx Position aktuelle Figur
  1801.         xor ch,ch
  1802.         mov cl,byte ptr[ds:PosFS]
  1803. fwsl:   mov di,cx
  1804.         mov bl,byte ptr[ds:PosFS+di]
  1805.         xor bh,bh
  1806.         mov dl,byte ptr[ds:Spalte+bx]
  1807.         xor dh,dh
  1808.         mov di,dx
  1809.  
  1810.         cmp byte ptr[ds:si+bx],SpringerS
  1811.         jnz fws01
  1812.         ; schwarzer Springer
  1813.         shl bx,1
  1814.         sub ax,word ptr[ds:SprTW+bx]
  1815.         sar bx,1
  1816.         inc byte ptr[ds:SumFS]
  1817.         cmp bl,30
  1818.         jg fws00
  1819.         inc byte ptr[ds:GrLFS]
  1820.         add ax,470
  1821. fws00:  jmp fws09
  1822.  
  1823. fws01:  cmp byte ptr[ds:si+bx],LaeuferS
  1824.         jnz fws02
  1825.         ; schwarzer Läufer
  1826.         cmp byte ptr[ds:LauFS],0
  1827.         jz fws01a
  1828.         ; noch zwei Läufer => Bonus
  1829.         sub ax,400
  1830. fws01a: mov byte ptr[ds:LauFS],1
  1831.         inc byte ptr[ds:SumFS]
  1832.         cmp bl,30
  1833.         jg fws01b
  1834.         inc byte ptr[ds:GrlFS]
  1835.         add ax,550
  1836. fws01b: jmp fws09
  1837.  
  1838. fws02:  cmp byte ptr[ds:si+bx],TurmS
  1839.         jnz fws03
  1840.         ; schw. Turm vor gegn.Grundreihe?
  1841.         inc byte ptr[ds:SumFS]
  1842.         cmp bl,80
  1843.         jl fws02a
  1844.         cmp bl,89
  1845.         jg fws02a
  1846.         sub ax,500
  1847.         cmp byte ptr[ds:PosFW],89
  1848.         jl fws02a
  1849.         sub ax,600
  1850.         ; Turm-Bauer Lage
  1851. fws02a: cmp byte ptr[ds:SZaBS+di],0
  1852.         jz fws02b
  1853.         sub ax, 150
  1854.         cmp byte ptr[ds:SZaBW+di],0
  1855.         jnz fws02b
  1856.         sub ax,250
  1857.         ; zweiter Turm gleiche Spalte?
  1858. fws02b: mov dx,di
  1859.         cmp byte ptr[ds:TurmSS],dl
  1860.         jne fws02c
  1861.         sub ax,800
  1862. fws02c: mov byte ptr[ds:TurmSS],dl
  1863.         ; Freibauern auf dieser Spalte?
  1864.         cmp byte ptr[ds:FreiBW+di],false
  1865.         jz fws02d
  1866.         sub ax,1000
  1867.         jmp fws03
  1868. fws02d: cmp byte ptr[ds:FreiBS+di],0
  1869.         jz fws03
  1870.         sub ax,1000
  1871.         jmp fws09
  1872.  
  1873.         ; Dame
  1874. fws03:  cmp byte ptr[ds:si+bx],DameS
  1875.         jnz fws04
  1876.         add byte ptr[ds:SumFS],3
  1877.         mov byte ptr[ds:DamePS],bl
  1878.         cmp bl,30
  1879.         jg fws09
  1880.         add byte ptr[ds:GrlFS],3
  1881.         jmp fws09
  1882.  
  1883.         ; König (nur Position feststellen)
  1884. fws04:  cmp byte ptr[ds:si+bx],KoenigS
  1885.         jne fws09
  1886.         mov byte ptr[ds:si.KoenPS],bl
  1887.  
  1888. fws09:  dec cx
  1889.         jz fws10
  1890.         jmp fwsl
  1891. fws10:  ret
  1892. FigurWertSchw ENDP
  1893.  
  1894.         ; ********************************
  1895.         ;                  Königswert weiß
  1896.         ; ********************************
  1897.  
  1898.         ; gibt in ax den Abstand von cl,ch
  1899. Abstand PROC
  1900.         xor ax,ax
  1901.         xor bh,bh
  1902.         mov bl,cl
  1903.         mov dl,byte ptr[ds:spalte+bx]
  1904.         mov al,byte ptr[ds:zeile+bx]
  1905.         mov bl,ch
  1906.         mov dh,byte ptr[ds:spalte+bx]
  1907.         mov ah,byte ptr[ds:zeile+bx]
  1908.  
  1909.         ; Zeilenabstand
  1910.         cmp al,ah
  1911.         jg abst01
  1912.         xchg ah,al
  1913. abst01: sub al,ah
  1914.  
  1915.         ; Spaltenabstand
  1916. abst02: cmp dl,dh
  1917.         jg abst03
  1918.         xchg dh,dl
  1919. abst03: sub dl,dh
  1920.  
  1921.         ; summieren
  1922.         add al,dl
  1923.         xor ah,ah
  1924.  
  1925.         ret
  1926. Abstand ENDP
  1927.  
  1928.         ; ********************************
  1929.         ;   bewertet Abstände Bauern-König
  1930.         ;           in cl den Standort des
  1931.         ;   betreffenden Königs übergeben,
  1932.         ;          addiert Bewertung zu ax
  1933.         ; ********************************
  1934.  
  1935. BauerKoenigAbst PROC
  1936.         push ax
  1937.         xor ax,ax
  1938.         xor dx,dx
  1939.         ; gewichteter Bauernabstand (weiß)
  1940.         xor bh,bh
  1941.         mov bl,byte ptr[ds:PosBW]
  1942.         or bl,bl
  1943.         jz bkas
  1944. bka01:  mov ch,byte ptr[ds:PosBW+bx]
  1945.         push cx
  1946.         push ax
  1947.         push dx
  1948.         push bx
  1949.         call Abstand
  1950.         pop dx
  1951.         mov bx,dx
  1952.         mov bl,byte ptr[ds:SpaBW+bx]
  1953.         cmp byte ptr[ds:FreiBW+bx],true
  1954.         mov bx,dx
  1955.         jne bka02
  1956.         mov dx,600
  1957.         mul dx
  1958.         pop dx
  1959.         add dx,6
  1960.         jmp bka03
  1961. bka02:  mov dx,200
  1962.         mul dx
  1963.         pop dx
  1964.         add dx,2
  1965. bka03:  mov cx,ax
  1966.         pop ax
  1967.         add ax,cx
  1968.         pop cx
  1969.         dec bx
  1970.         jnz bka01
  1971.  
  1972. bkas:   xor bh,bh
  1973.         mov bl,byte ptr[ds:PosBS]
  1974.         or bl,bl
  1975.         jz bkadd
  1976. bka04:  mov ch,byte ptr[ds:PosBS+bx]
  1977.         push cx
  1978.         push ax
  1979.         push dx
  1980.         push bx
  1981.         call Abstand
  1982.         pop dx
  1983.         mov bx,dx
  1984.         mov bl,byte ptr[ds:SpaBS+bx]
  1985.         cmp byte ptr[ds:FreiBS+bx],true
  1986.         mov bx,dx
  1987.         jne bka05
  1988.         mov dx,600
  1989.         mul dx
  1990.         pop dx
  1991.         add dx,6
  1992.         jmp bka06
  1993. bka05:  mov dx,200
  1994.         mul dx
  1995.         pop dx
  1996.         add dx,2
  1997. bka06:  mov cx,ax
  1998.         pop ax
  1999.         add ax,cx
  2000.         pop cx
  2001.         dec bx
  2002.         jnz bka04
  2003.  
  2004.         ; mitteln, dann wert=-6*(Mittel-6)
  2005.         mov cx,dx
  2006.         xor dx,dx
  2007.         div cx
  2008.         sub ax,600
  2009.         mov bx,-600
  2010.         imul bx
  2011. bkadd:  pop bx
  2012.         add ax,bx
  2013.         ret
  2014. BauerKoenigAbst ENDP
  2015.  
  2016.         ; ********************************
  2017.         ; König Bewertung für weißen König
  2018.         ; ********************************
  2019.  
  2020. KoenigWertWeiss PROC
  2021.         ; Endspiel oder Normalbewertung
  2022.         cmp byte ptr[ds:si.EndSpielW],true
  2023.         jne kww00
  2024.         jmp kww11
  2025.  
  2026.         ; Normalbewertung
  2027. kww00:
  2028.       mov al,byte ptr[ds:si.rochadefaktor]
  2029.         cbw
  2030.  
  2031.         ; Abzug für exponierte Stellung
  2032.         cmp byte ptr[ds:si.KoenPW],80
  2033.         jg kww01
  2034.         add ax,2000
  2035.         xor bx,bx
  2036.         jmp kww10
  2037.  
  2038.         ; Ermitteln der Gefährdungswerte
  2039.         ; der Flügel
  2040. kww01:  mov word ptr[ds:schutzL],0
  2041.         mov word ptr[ds:schutzR],0
  2042.         ; linker Flügel
  2043.         mov bx,1
  2044. kww02:  cmp byte ptr[ds:si+bx+80],BauerW
  2045.         je kww03
  2046.         add word ptr[ds:schutzL],50
  2047.         cmp byte ptr[ds:SZaBW+bx],0
  2048.         jne kww03
  2049.         add word ptr[ds:schutzL],50
  2050. kww03:  inc bx
  2051.         cmp bx,4
  2052.         jl kww02
  2053.         ; Rochade auf linkem Flügel mgl?
  2054.       cmp byte ptr[ds:si.RochadeErfolgt],0
  2055.         jne kww04
  2056.         add word ptr[ds:schutzL],50
  2057.        cmp byte ptr[ds:si.grRochWmgl],true
  2058.         je kww04
  2059.         add word ptr[ds:schutzL],150
  2060.  
  2061.         ; rechter Flügel
  2062. kww04:  mov bx,7
  2063. kww05:  cmp byte ptr[ds:si+bx+80],BauerW
  2064.         je kww06
  2065.         add word ptr[ds:schutzR],50
  2066.         cmp byte ptr[ds:SZaBW+bx],0
  2067.         jne kww06
  2068.         add word ptr[ds:schutzR],50
  2069. kww06:  inc bx
  2070.         cmp bx,9
  2071.         jl kww05
  2072.         ; Rochade auf rechtem Flügel mgl?
  2073.       cmp byte ptr[ds:si.RochadeErfolgt],0
  2074.         jne kww07
  2075.         add word ptr[ds:schutzR],50
  2076.        cmp byte ptr[ds:si.klRochWmgl],true
  2077.         je kww07
  2078.         add word ptr[ds:schutzR],150
  2079.  
  2080.         ; je nachdem, ob rochiert wurde
  2081.         ; den Flügel mit dem besseren
  2082.         ; Gefährdungswert aussuchen
  2083. kww07:
  2084.       cmp byte ptr[ds:si.RochadeErfolgt],0
  2085.         jne kww08
  2086.         mov bx,word ptr[ds:schutzr]
  2087.         cmp bx,word ptr[ds:schutzl]
  2088.         jl kww10
  2089.         mov bx,word ptr[ds:schutzl]
  2090.         jmp kww10
  2091.  
  2092. kww08:
  2093.       cmp [ds:si.RochadeErfolgt],klRochade
  2094.         jne kww09
  2095.         mov bx,word ptr[ds:schutzR]
  2096.         jmp kww10
  2097. kww09:  mov bx,word ptr[ds:schutzL]
  2098.  
  2099.         ; gefundene Summe mit gegnerischem
  2100.         ; Figurenwert mult.
  2101. kww10:  add ax,bx
  2102.         dec byte ptr[ds:SumFS]
  2103.         mul byte ptr[ds:SumFS]
  2104.         neg ax
  2105.         ret
  2106.  
  2107.         ; Endspielbewertung
  2108.         ; Zentralisierung
  2109. kww11:  xor bh,bh
  2110.         mov bl,byte ptr[ds:si.KoenPW]
  2111.         shl bx,1
  2112.         mov ax,word ptr[ds:ZAbst+bx]
  2113.         shl ax,1
  2114.         shl ax,1
  2115.         neg ax
  2116.  
  2117.         mov cl,byte ptr[ds:si.KoenPW]
  2118.         call BauerKoenigAbst
  2119.         ret
  2120. KoenigWertWeiss ENDP
  2121.  
  2122.         ; ********************************
  2123.         ;  König Bewertung für schw. König
  2124.         ; ********************************
  2125.  
  2126. KoenigWertSchw PROC
  2127.         ; Endspiel oder Normalbewertung
  2128.         cmp byte ptr[ds:si.EndSpielS],true
  2129.         jne kws00
  2130.         jmp kws11
  2131.  
  2132.         ; Normalbewertung
  2133. kws00:
  2134.       mov al,byte ptr[ds:si.rochadefaktor]
  2135.         cbw
  2136.  
  2137.         ; Abzug für exponierte Stellung
  2138.         cmp byte ptr[ds:si.KoenPS],40
  2139.         jl kws01
  2140.         add ax,2000
  2141.         xor bx,bx
  2142.         jmp kws10
  2143.  
  2144.         ; Ermitteln der Gefährdungswerte
  2145.         ; der Flügel
  2146. kws01:  mov word ptr[ds:schutzL],0
  2147.         mov word ptr[ds:schutzR],0
  2148.         ; linker Flügel
  2149.         mov bx,1
  2150. kws02:  cmp byte ptr[ds:si+bx+30],BauerS
  2151.         je kws03
  2152.         add word ptr[ds:schutzL],50
  2153.         cmp byte ptr[ds:SZaBS+bx],0
  2154.         jne kws03
  2155.         add word ptr[ds:schutzL],50
  2156. kws03:  inc bx
  2157.         cmp bx,4
  2158.         jl kws02
  2159.         ; Rochade auf linkem Flügel mgl?
  2160.       cmp byte ptr[ds:si.RochadeErfolgt],0
  2161.         jne kws04
  2162.         add word ptr[ds:schutzL],50
  2163.        cmp byte ptr[ds:si.grRochSmgl],true
  2164.         je kws04
  2165.         add word ptr[ds:schutzL],150
  2166.  
  2167.         ; rechter Flügel
  2168. kws04:  mov bx,7
  2169. kws05:  cmp byte ptr[ds:si+bx+30],BauerS
  2170.         je kws06
  2171.         add word ptr[ds:schutzR],50
  2172.         cmp byte ptr[ds:SZaBS+bx],0
  2173.         jne kws06
  2174.         add word ptr[ds:schutzR],50
  2175. kws06:  inc bx
  2176.         cmp bx,9
  2177.         jl kws05
  2178.         ; Rochade auf rechtem Flügel mgl?
  2179.       cmp byte ptr[ds:si.RochadeErfolgt],0
  2180.         jne kws07
  2181.         add word ptr[ds:schutzR],50
  2182.        cmp byte ptr[ds:si.klRochSmgl],true
  2183.         je kws07
  2184.         add word ptr[ds:schutzR],150
  2185.  
  2186.         ; je nachdem, ob rochiert wurde,
  2187.         ; den Flügel mit dem besseren
  2188.         ; Gefährdungswert aussuchen
  2189. kws07:
  2190.       cmp byte ptr[ds:si.RochadeErfolgt],0
  2191.         jne kws08
  2192.         mov bx,word ptr[ds:schutzr]
  2193.         cmp bx,word ptr[ds:schutzl]
  2194.         jl kws10
  2195.         mov bx,word ptr[ds:schutzl]
  2196.         jmp kws10
  2197.  
  2198. kws08:
  2199.       cmp [ds:si.RochadeErfolgt],klRochade
  2200.         jne kws09
  2201.         mov bx,word ptr[ds:schutzR]
  2202.         jmp kws10
  2203. kws09:  mov bx,word ptr[ds:schutzL]
  2204.  
  2205.         ; gefundene Summe mit gegnerischem
  2206.         ; Figurenwert mult.
  2207. kws10:  add ax,bx
  2208.         dec byte ptr[ds:SumFW]
  2209.         mul byte ptr[ds:SumFW]
  2210.         ret
  2211.  
  2212.         ; Endspielbewertung
  2213.         ; Zentralisierung
  2214. kws11:  xor bh,bh
  2215.         mov bl,byte ptr[ds:si.KoenPS]
  2216.         shl bx,1
  2217.         mov ax,word ptr[ds:ZAbst+bx]
  2218.         shl ax,1
  2219.         shl ax,1
  2220.  
  2221.         mov cl,byte ptr[ds:si.KoenPS]
  2222.         call BauerKoenigAbst
  2223.         ret
  2224. KoenigWertSchw ENDP
  2225.  
  2226.         ; ********************************
  2227.         ;       Routine zur Mattbewertung,
  2228.         ;     ax:=ax+16*(14-Abstand cl-ch)
  2229.         ; ********************************
  2230.  
  2231. AbstandWert PROC
  2232.         push ax
  2233.         call Abstand
  2234.         neg ax
  2235.         add ax,14
  2236.         sal ax,1
  2237.         sal ax,1
  2238.         sal ax,1
  2239.         sal ax,1
  2240.         pop cx
  2241.         add ax,cx
  2242.         ret
  2243. AbstandWert ENDP
  2244.  
  2245.         ; ********************************
  2246.         ; Wert für:weiß setzt schwarz matt
  2247.         ; ********************************
  2248.  
  2249. MattWertWeiss PROC
  2250.         ; Zentralisierung des schw. Königs
  2251.         xor bh,bh
  2252.         mov bl,byte ptr[ds:si.KoenPS]
  2253.         shl bx,1
  2254.         mov ax,word ptr[ds:ZAbst+bx]
  2255.         shl ax,1
  2256.         shl ax,1
  2257.         shl ax,1
  2258.         ; Abstand der Könige
  2259.         mov cl,byte ptr[ds:si.KoenPS]
  2260.         mov ch,byte ptr[ds:si.KoenPW]
  2261.         call AbstandWert
  2262.         ; Abstand zu Springern
  2263.         xor bh,bh
  2264.         mov bl,byte ptr[ds:PosFW]
  2265. mww00: cmp byte ptr[ds:PosFW+bx],SpringerW
  2266.         jne mww01
  2267.         mov cl,byte ptr[ds:si.KoenPS]
  2268.         mov ch,byte ptr[ds:PosFW+bx]
  2269.         call AbstandWert
  2270. mww01:  dec bx
  2271.         jnz mww00
  2272.         mov cl,7
  2273.         sar ax,cl
  2274.         add ax,word ptr[ds:si.MatDiff]
  2275.         ret
  2276. MattWertWeiss ENDP
  2277.  
  2278.         ; ********************************
  2279.         ; Wert für:schwarz setzt weiß matt
  2280.         ; ********************************
  2281.  
  2282. MattWertSchw PROC
  2283.         ;Zentralisierung des weißen Königs
  2284.         xor bh,bh
  2285.         mov bl,byte ptr[ds:si.KoenPW]
  2286.         shl bx,1
  2287.         mov ax,word ptr[ds:ZAbst+bx]
  2288.         shl ax,1
  2289.         shl ax,1
  2290.         shl ax,1
  2291.         ; Abstand der Könige
  2292.         mov cl,byte ptr[ds:si.KoenPS]
  2293.         mov ch,byte ptr[ds:si.KoenPW]
  2294.         call AbstandWert
  2295.         ; Abstand zu Springern
  2296.         xor bh,bh
  2297.         mov bl,byte ptr[ds:PosFS]
  2298. mws00: cmp byte ptr[ds:PosFS+bx],SpringerS
  2299.         jne mws01
  2300.         mov cl,byte ptr[ds:si.KoenPW]
  2301.         mov ch,byte ptr[ds:PosFS+bx]
  2302.         call AbstandWert
  2303. mws01:  dec bx
  2304.         jnz mws00
  2305.         mov cl,7
  2306.         sar ax,cl
  2307.         neg ax
  2308.         add ax,word ptr[ds:si.MatDiff]
  2309.         ret
  2310. MattWertSchw ENDP
  2311.  
  2312.         ; ********************************
  2313.         ;    kann gegner. König geschlagen
  2314.         ;   werden? Überprüfung anhand der
  2315.         ;  Zuglisten (kein Check ob Listen
  2316.         ;  leer...) Resultat in AX (0 wenn
  2317.         ; nicht im Schach, sonst Bewertung
  2318.         ;                       des Zuges)
  2319.         ; ********************************
  2320.  
  2321. KoenigSchlagbar PROC
  2322.         cmp byte ptr[ds:si.AmZug],weiss
  2323.         jne ks01
  2324.         mov dl,byte ptr[ds:si.KoenPS]
  2325.         mov ax,30000+size spielstand
  2326.         sub ax,si
  2327.         jmp ks02
  2328.  
  2329. ks01:   mov dl,byte ptr[ds:si.KoenPW]
  2330.         mov ax,-30000-size spielstand
  2331.         add ax,si
  2332.  
  2333. ks02:   xor bx,bx
  2334. ks03:  cmp byte ptr[ds:si.list+bx.nach],dl
  2335.         je ks04
  2336.         add bx,size zug
  2337.         cmp bx,word ptr[ds:si.anzahl]
  2338.         jl ks03
  2339.         ; Entwarnung
  2340.         clc
  2341.         ret
  2342.  
  2343. ks04:   stc
  2344.         ret
  2345. KoenigSchlagbar ENDP
  2346.  
  2347.         ; ********************************
  2348.         ;     ist eigener König im Schach?
  2349.         ; ********************************
  2350.  
  2351. KoenigImSchach PROC
  2352.         xor bh,bh
  2353.         mov byte ptr[ds:schach],false
  2354.         cmp byte ptr[ds:si.AmZug],weiss
  2355.         jne kis02
  2356.  
  2357.         ; Routine für weiss
  2358.         ; kann ein Bauer schlagen?
  2359.         mov ax,-30000-size spielstand
  2360.         add ax,si
  2361.         push ax
  2362.         mov bl,byte ptr[ds:si.KoenPW]
  2363.         mov dl,bl
  2364.      cmp byte ptr[ds:si.feld+bx-11],BauerS
  2365.         je kis_schach2
  2366.       cmp byte ptr[ds:si.feld+bx-9],BauerS
  2367.         je kis_schach2
  2368.         ; Figuren festlegen
  2369.         mov ah,DameS
  2370.         mov al,LaeuferS
  2371.         push ax
  2372.         mov al,TurmS
  2373.         mov cl,SpringerS
  2374.         jmp kis03
  2375.  
  2376.         ; Routine für schwarz
  2377. kis02:  mov ax,30000+size spielstand
  2378.         sub ax,si
  2379.         push ax
  2380.         mov bl,byte ptr[ds:si.KoenPS]
  2381.         mov dl,bl
  2382.      cmp byte ptr[ds:si.feld+bx+11],BauerW
  2383.         je kis_schach2
  2384.       cmp byte ptr[ds:si.feld+bx+9],BauerW
  2385.         je kis_schach2
  2386.         ; Figuren festlegen
  2387.         mov ah,DameW
  2388.         mov al,LaeuferW
  2389.         push ax
  2390.         mov al,TurmW
  2391.         mov cl,SpringerW
  2392.         jmp kis03
  2393.  
  2394. kis_schach1:
  2395.         pop dx
  2396. kis_schach2:
  2397.         mov byte ptr[ds:schach],true
  2398.         pop ax
  2399.         stc
  2400.         ret
  2401.  
  2402.         ; Springer-Bedrohung
  2403. kis03:  cmp byte ptr[ds:si.feld+bx+21],cl
  2404.         je kis_schach1
  2405.         cmp byte ptr[ds:si.feld+bx-21],cl
  2406.         je kis_schach1
  2407.         cmp byte ptr[ds:si.feld+bx-19],cl
  2408.         je kis_schach1
  2409.         cmp byte ptr[ds:si.feld+bx+19],cl
  2410.         je kis_schach1
  2411.         cmp byte ptr[ds:si.feld+bx-12],cl
  2412.         je kis_schach1
  2413.         cmp byte ptr[ds:si.feld+bx+12],cl
  2414.         je kis_schach1
  2415.         cmp byte ptr[ds:si.feld+bx-8],cl
  2416.         je kis_schach1
  2417.         cmp byte ptr[ds:si.feld+bx+8],cl
  2418.         je kis_schach1
  2419.  
  2420.         ; Damen/Läufer/Turm-Bedrohung
  2421.         mov dh,10
  2422.         call suche
  2423.         jc kis_schach1
  2424.         mov dh,-10
  2425.         call suche
  2426.         jc kis_schach1
  2427.         mov dh,1
  2428.         call suche
  2429.         jc kis_schach1
  2430.         mov dh,-1
  2431.         call suche
  2432.         jc kis_schach1
  2433.         pop ax
  2434.         mov dh,9
  2435.         call suche
  2436.         jc kis_schach2
  2437.         mov dh,-9
  2438.         call suche
  2439.         jc kis_schach2
  2440.         mov dh,11
  2441.         call suche
  2442.         jc kis_schach2
  2443.         mov dh,-11
  2444.         call suche
  2445.         jc kis_schach2
  2446.         pop ax
  2447.         clc
  2448.         ret
  2449. KoenigImSchach ENDP
  2450.  
  2451.         ; ********************************
  2452.         ;  Hilfsroutine für KoenigImSchach
  2453.         ;    - sucht von dl in richtung dh
  2454.         ;            nach Figur ah oder al
  2455.         ; ********************************
  2456.  
  2457. suche PROC
  2458.         mov bl,dl
  2459. suche1: add bl,dh
  2460.         cmp byte ptr[ds:si.feld+bx],leer
  2461.         je suche1
  2462.         cmp byte ptr[ds:si.feld+bx],ah
  2463.         je suche2
  2464.         cmp byte ptr[ds:si.feld+bx],al
  2465.         je suche2
  2466.         clc  ; nicht bedroht
  2467.         ret
  2468.  
  2469. suche2: stc  ; bedroht
  2470.         ret
  2471. suche ENDP
  2472.  
  2473.         ; ********************************
  2474.         ;               Bewertungsfunktion
  2475.         ; ********************************
  2476.  
  2477. BrettWert PROC
  2478.         cmp byte ptr[ds:si.StellungTyp],4
  2479.         jl bw80
  2480.  
  2481.         ; normale Bewertung
  2482.         ; CutOff-Vorhersage bei zu hoher
  2483.         ; Differenz Materialwert
  2484.         ; zu alpha/beta
  2485.         mov ax,word ptr[ds:si.MatDiff]
  2486.         sub ax,120
  2487.         cmp ax,word ptr[ds:si.alpha]
  2488.         jl bw01
  2489.         ret
  2490. bw01:   add ax,240
  2491.         cmp ax,word ptr[ds:si.beta]
  2492.         jg bw02
  2493.         ret
  2494.  
  2495.         ; nur Abschätzung bei
  2496.         ; Schlagzugsuche
  2497. bw02:   mov ax,word ptr[ds:si.MatDiff]
  2498.         add ax,word ptr[ds:si.ruhewert]
  2499.         cmp si,horizon
  2500.         jle bw03
  2501.         ret
  2502.  
  2503.         ; positionelle und
  2504.         ; materielle Bewertung
  2505. bw03:   call PosWert
  2506.         mov word ptr[ds:si.ruhewert],ax
  2507.         add ax,word ptr[ds:si.MatDiff]
  2508.         ret
  2509.  
  2510.         ; Endspielbewertung
  2511. bw80:   cmp byte ptr[ds:si.StellungTyp],1
  2512.         jne bw81
  2513.         call MattWertWeiss
  2514.         ret
  2515.  
  2516. bw81:   cmp byte ptr[ds:si.StellungTyp],3
  2517.         jne bw82
  2518.         call MattWertSchw
  2519.         ret
  2520.  
  2521. bw82:   xor ax,ax  ; patt
  2522.         ret
  2523. BrettWert ENDP
  2524.  
  2525.         ; ********************************
  2526.         ;           ermittelt positionelle
  2527.         ;                  Bewertung in ax
  2528.         ; ********************************
  2529.  
  2530. PosWert PROC
  2531.         push si
  2532.         call Analyse
  2533.         call BauernWertWeiss
  2534.         push ax
  2535.         call BauernWertSchw
  2536.         push ax
  2537.         call FigurWertWeiss
  2538.         push ax
  2539.         call FigurWertSchw
  2540.         push ax
  2541.         call KoenigWertWeiss
  2542.         push ax
  2543.         call KoenigWertSchw
  2544.  
  2545.         ; summieren
  2546.         pop bx
  2547.         add ax,bx
  2548.         pop bx
  2549.         add ax,bx
  2550.         pop bx
  2551.         add ax,bx
  2552.         pop bx
  2553.         add ax,bx
  2554.         pop bx
  2555.         add ax,bx
  2556.       add ax,word ptr[ds:si.BedrohungWert]
  2557.         sar ax,1 ; ax/2
  2558.         sar ax,1 ; ax/4
  2559.         sar ax,1 ; ax/8
  2560.         ; Strafpunkte für leichte Fig.
  2561.         ; auf der Grundlinie
  2562.         xor bh,bh
  2563.         mov bl,byte ptr[ds:grlfw]
  2564.         sub ax,bx
  2565.         mov bl,byte ptr[ds:grlfs]
  2566.         add ax,bx
  2567.         sar ax,1 ; ax/16
  2568.         sar ax,1 ; ax/32
  2569.         sar ax,1 ; ax/64
  2570.         sar ax,1 ; ax/128
  2571.         pop si
  2572.         ret
  2573. PosWert ENDP
  2574.  
  2575.         ; ********************************
  2576.         ;       Zug/Save-Listen Verwaltung
  2577.         ; ********************************
  2578.  
  2579. ; ****************************************
  2580. ;    löst einen Zug aus einer Liste heraus
  2581. ;  löst den Zug DX (von/nach) aus SAVELIST
  2582. ;  heraus, falls Zug vorhanden war enthält
  2583. ;              AX dessen letzte Bewertung,
  2584. ;                 sonst AX alpha/betastart
  2585. ; ****************************************
  2586.  
  2587. Aussortieren PROC
  2588.         ; ist Liste schon leer?
  2589.         cmp word ptr[ds:si.saveanzahl],0
  2590.         ; ja, also ex. Zug nicht in Liste!
  2591.         je aus03
  2592.       cmp word ptr[ds:si.savestart],0ffffh
  2593.         je aus03 ; ja, schon "leergesucht"
  2594.         ; ist Zug der Anfang der Liste?
  2595.         mov bx,word ptr[ds:si.savestart]
  2596.         cmp dx,word ptr[ds:si.savelist+bx]
  2597.         je aus02
  2598.         ; nein, dann Vorgänger finden
  2599. aus00:  mov cx,bx
  2600.    mov bx,word ptr[ds:si.savelist+bx.next]
  2601.         cmp bx,0ffffh
  2602.         ; Zugliste zuende, nicht gefunden
  2603.         je aus03 
  2604.         cmp dx,word ptr[ds:si.savelist+bx]
  2605.         je aus01  ; Zug gefunden bei BX
  2606.         jmp aus00
  2607.  
  2608.         ; in Liste gefunden
  2609. aus01:  push dx
  2610.   mov ax,word ptr[ds:si.savelist+bx.value]
  2611.         ; in dx Nachfolger des
  2612.         ; auszusortierenden Zuges
  2613.    mov dx,word ptr[ds:si.savelist+bx.next]
  2614.         mov bx,cx
  2615.         ; in Vorgänger diesen
  2616.         ; Nachfolger eintragen
  2617.    mov word ptr[ds:si.savelist+bx.next],dx
  2618.         pop dx
  2619.         jmp aus04
  2620.  
  2621.         ; Zug ist Erster
  2622.         ; Nachfolger wird Anfang
  2623. aus02:
  2624.   mov ax,word ptr[ds:si.savelist+bx.value]
  2625.    mov cx,word ptr[ds:si.savelist+bx.next]
  2626.         mov word ptr[ds:si.savestart],cx
  2627.         jmp aus04
  2628.  
  2629.         ; Zug nicht gefunden,
  2630.         ; also Startwert zurückgeben
  2631. aus03:  cmp byte ptr[ds:si.AmZug],weiss
  2632.         je aus03w
  2633.         ; schwarz minimiert alpha
  2634.         mov ax,alphastart
  2635.         jmp aus04
  2636.         ; weiß maximiert beta
  2637. aus03w: mov ax,betastart
  2638.  
  2639. aus04:  ret
  2640. Aussortieren ENDP
  2641.  
  2642. ; ****************************************
  2643. ;   Einsortieren eines Zuges in eine Liste
  2644. ;    DX : Position des Zuges
  2645. ;    AX : Wert des Zuges, Sortierkriterium
  2646. ;    DI : zeigt auf die Liste (sort/save)
  2647. ;    BX : enthält den Listenanfang
  2648. ;  je nachdem, ob schwarz oder weiß am Zug
  2649. ;  ist erfolgt unterschiedliche Sortierung
  2650. ;     Es wird in BX der Listenanfang (eve.
  2651. ;               jetzt neu!) zurückgegeben.
  2652. ;          WICHTIG: bei gleicher Bewertung
  2653. ;          zweier Züge, hintendran anfügen
  2654. ; ****************************************
  2655.  
  2656. Einsortieren PROC
  2657.         ; Liste noch ganz leer?
  2658.         or dx,dx
  2659.         je ein01
  2660.  
  2661.         push bx ; Listenanfang sichern
  2662.         ;ist es schwarze oder weiße Liste?
  2663.         cmp byte ptr[ds:si.AmZug],schwarz
  2664.         je ein01s
  2665.  
  2666.         ;in "weißer" Liste Position suchen
  2667.         cmp ax,word ptr[ds:di+bx.value]
  2668.         ; Position vor Listenanfang
  2669.         jg ein04
  2670. ein01wl: mov cx,bx
  2671.         mov bx,word ptr[ds:di+bx.next]
  2672.         ; Position am Listenende
  2673.         cmp bx,0ffffh 
  2674.         je ein03
  2675.         cmp ax,word ptr[ds:di+bx.value]
  2676.         jg ein02  ; Position gefunden
  2677.         jmp ein01wl
  2678.  
  2679.         ;in "schw." Liste Position suchen
  2680. ein01s: cmp ax,word ptr[ds:di+bx.value]
  2681.         ; Position am Listenanfang
  2682.         jl ein04
  2683. ein01sl: mov cx,bx
  2684.         mov bx,word ptr[ds:di+bx.next]
  2685.         cmp bx,0ffffh
  2686.         je ein03
  2687.         cmp ax,word ptr[ds:di+bx.value]
  2688.         jl ein02  ; Position gefunden
  2689.         jmp ein01sl
  2690.  
  2691.         ; allererster Eintrag der Liste
  2692. ein01:  xor bx,bx ; Listenanfang ganz vorn
  2693.         mov word ptr[ds:di+bx.next],0ffffh
  2694.         mov word ptr[ds:di+bx.value],ax
  2695.         ret
  2696.  
  2697.         ; mitten in Liste einsortieren
  2698. ein02:  mov bx,cx
  2699.         mov cx,word ptr[ds:di+bx.next]
  2700.         mov word ptr[ds:di+bx.next],dx
  2701.         mov bx,dx
  2702.         mov word ptr[ds:di+bx.next],cx
  2703.         mov word ptr[ds:di+bx.value],ax
  2704.         pop bx ; Listenanfang unverändert
  2705.         ret
  2706.  
  2707.         ; am Listenende einsortieren
  2708. ein03:  mov bx,cx
  2709.         mov word ptr[ds:di+bx.next],dx
  2710.         mov bx,dx
  2711.         mov word ptr[ds:di+bx.next],0ffffh
  2712.         mov word ptr[ds:di+bx.value],ax
  2713.         pop bx ; Listenanfang unverändert
  2714.         ret
  2715.  
  2716.         ; vor Listenanfang einsortieren
  2717. ein04:  xchg bx,dx
  2718.         mov word ptr[ds:di+bx.next],dx
  2719.         mov word ptr[ds:di+bx.value],ax
  2720.         pop dx ; neuer Listenanfang
  2721.         ret
  2722. Einsortieren ENDP
  2723.  
  2724.         ; ********************************
  2725.         ;            erhöht die Stacktiefe
  2726.         ; ********************************
  2727.  
  2728. IncDepth PROC
  2729.         mov cx,ds
  2730.         mov es,cx
  2731.         mov si,aktStack
  2732.         mov di,aktStack
  2733.         add di,SIZE Spielstand
  2734.         mov cx,SIZE Spielstand
  2735.         ; die Savelist & SaveStart
  2736.         ; nicht löschen!
  2737.         sub cx,(SIZE savelist + 4)
  2738.         sar cx,1
  2739.         rep movsw
  2740.         add aktstack,SIZE Spielstand
  2741.         mov si,aktstack
  2742.         not byte ptr[ds:si.AmZug]
  2743.         ret
  2744. IncDepth ENDP
  2745.  
  2746.         ; ********************************
  2747.         ;           mindert die Stacktiefe
  2748.         ; ********************************
  2749.  
  2750. DecDepth PROC
  2751.         sub aktStack,SIZE Spielstand
  2752.         mov si,aktStack
  2753.         ret
  2754. DecDepth ENDP
  2755.  
  2756.         ; ********************************
  2757.         ;   Weiss an der Reihe (maximiert)
  2758.         ; ********************************
  2759.  
  2760. WeissZug PROC
  2761.         cmp ax,word ptr[ds:si.alpha]
  2762.         jle wz01
  2763.         mov byte ptr[ds:si.cutoff],true
  2764.  
  2765. wz01:   cmp ax,word ptr[ds:si.beta]
  2766.         jle wz02
  2767.         mov word ptr[ds:si.beta],ax
  2768.         cmp si,Depth1
  2769.         jne wz02
  2770.         cmp byte ptr[ds:timeout],0
  2771.         jnz wz02
  2772.         mov cx,word ptr[ds:si.zugNr]
  2773.         mov word ptr[ds:ZugWahl],cx
  2774.  
  2775. wz02:   ret
  2776. WeissZug ENDP
  2777.  
  2778.         ; ********************************
  2779.         ; Schwarz an der Reihe (minimiert)
  2780.         ; ********************************
  2781.  
  2782. SchwarzZug PROC
  2783.         cmp ax,word ptr[ds:si.beta]
  2784.         jge sz01
  2785.         mov byte ptr[ds:si.cutoff],true
  2786.  
  2787. sz01:   cmp ax,word ptr[ds:si.alpha]
  2788.         jge sz99
  2789.         mov word ptr[ds:si.alpha],ax
  2790.         cmp si,Depth1
  2791.         jne sz99
  2792.         cmp byte ptr[ds:timeout],0
  2793.         jnz sz99
  2794.         mov cx,word ptr[ds:si.zugnr]
  2795.         mov word ptr[ds:ZugWahl],cx
  2796.  
  2797. sz99:   ret
  2798. SchwarzZug ENDP
  2799.  
  2800.         ; ********************************
  2801.         ;                restauriert Brett
  2802.         ; ********************************
  2803.  
  2804. Restore PROC
  2805.         push di
  2806.         push si
  2807.         push cx
  2808.         mov si,aktStack
  2809.         sub si,SIZE Spielstand
  2810.         mov di,aktStack
  2811.         ; Brett restaurieren
  2812.         mov cx,50 ; Brett in Bytes 10*10/2
  2813.         rep movsw
  2814.         ; Statistik restaurieren
  2815.         mov si,aktStack
  2816.    add si,offset EndSpielS-SIZE Spielstand
  2817.         mov di,aktStack
  2818.         add di,offset EndSpielS
  2819.         mov cx,9
  2820.         rep movsw
  2821.         pop cx
  2822.         pop si
  2823.         pop di
  2824.         ret
  2825. Restore ENDP
  2826.  
  2827.         ; ********************************
  2828.         ; Suche,ermittelt den "besten" Zug
  2829.         ; ********************************
  2830.  
  2831. ZugAuswahl PROC
  2832.         ; weitere Vertiefung möglich?
  2833.         cmp si,word ptr[ds:OutZone]
  2834.         jl za01
  2835. za00:   call BrettWert
  2836.         ret
  2837.  
  2838. za01:   call IncDepth
  2839.         mov byte ptr[ds:si.cutoff],false
  2840.  
  2841.         cmp byte ptr[ds:si.AmZug],schwarz
  2842.         jne za02
  2843.         call ZugGenSchwarz
  2844.       mov word ptr[ds:si.alpha],alphastart
  2845.         jmp za03
  2846. za02:   call ZugGenWeiss
  2847.         mov word ptr[ds:si.beta],betastart
  2848.  
  2849.         ; überhaupt Züge vorhanden?
  2850. za03:   cmp word ptr[ds:si.anzahl],0
  2851.         jne za03w
  2852.         call Brettwert
  2853.         call DecDepth
  2854.         ret
  2855.  
  2856.         ; illegale Stellung?
  2857. za03w:  call KoenigSchlagbar
  2858.         ; legt auch Bewertung fest!
  2859.         jnc za03x
  2860.         call DecDepth
  2861.         ret
  2862.  
  2863. za03x:  ; noch volle Suche?
  2864.         cmp si,horizon
  2865.         jle za03c
  2866.         ; nein, nur noch Schlagzüge werden
  2867.         ; untersucht. Als Basis RUHEWERT
  2868.         ; ermitteln
  2869.         call brettwert
  2870.         cmp byte ptr[ds:si.AmZug],schwarz
  2871.         jne za03a
  2872.         call SchwarzZug
  2873.         jmp za03b
  2874. za03a:  call WeissZug
  2875. za03b:  cmp word ptr[ds:si.cutoff],true
  2876.         jne za03c
  2877.         call DecDepth
  2878.         ret
  2879.  
  2880. za03c:  mov bx,word ptr[ds:si.start]
  2881.         ; Zugschleife
  2882. za04:   mov word ptr[ds:si.ZugNr],bx
  2883.         call Restore
  2884.         call FuehreZugAus
  2885.  
  2886.         push bx
  2887.         cmp si,horizon
  2888.         jl za06  ; noch volle Suche
  2889.       cmp word ptr[ds:si.list+bx.option],0
  2890.         jne za06
  2891.         call KoenigImSchach
  2892.         jc za07
  2893.         call BrettWert
  2894.         jmp za07
  2895. za06:   call ZugAuswahl
  2896.  
  2897. za07:   pop bx
  2898.         mov cx,bx
  2899.         cmp byte ptr[ds:si.AmZug],schwarz
  2900.         jne za08
  2901.         call SchwarzZug
  2902.         jmp za09
  2903. za08:   call WeissZug
  2904.  
  2905.         ; bewerteten Zug in savelist
  2906.         ; einsortieren
  2907. za09:   mov cx,word ptr[ds:si.list+bx]
  2908.         push bx
  2909.         mov bx,word ptr[ds:si.saveanzahl]
  2910.         mov word ptr[ds:si.savelist+bx],cx
  2911.         mov dx,bx
  2912.         mov di,si
  2913.   add di,(size spielstand-size savelist-4)
  2914.         mov bx,word ptr[ds:si.savestart]
  2915.         call Einsortieren
  2916.         mov word ptr[ds:si.savestart],bx
  2917.         pop bx
  2918.         add word ptr[ds:si.saveanzahl],8
  2919.  
  2920.         ; Ende der Suche durch CUTOFF?
  2921.         cmp byte ptr[ds:si.cutoff],true
  2922.         je za10
  2923.         ; Ende der Liste?
  2924.        mov bx,word ptr[ds:si.list+bx.next]
  2925.         cmp bx,0ffffh
  2926.         je za10
  2927.         ; Zeit zu Ende?
  2928.         cmp byte ptr[ds:timeout],0
  2929.         jne za10
  2930. za09l:  jmp za04
  2931.  
  2932. za10:   cmp byte ptr[ds:si.AmZug],schwarz
  2933.         je za11
  2934.         ; weiss am Zug: Bewertung=beta
  2935.         mov ax,word ptr[ds:si.beta]
  2936.         jmp za99
  2937.         ; schwarz am Zug: Bewertung=alpha
  2938. za11:   mov ax,word ptr[ds:si.alpha]
  2939.  
  2940. za99:   call DecDepth
  2941.         ret
  2942. ZugAuswahl ENDP
  2943.  
  2944.         ; ********************************
  2945.         ;                      Computerzug
  2946.         ; ********************************
  2947.  
  2948. ComputerZug PROC
  2949.         mov bx,seg GameStack
  2950.         mov ds,bx
  2951.         mov es,bx
  2952.         ; GameStack-Reset
  2953.         xor ax,ax
  2954.         mov di,Depth1
  2955.         mov cx,Size Spielstand*7/2
  2956.         rep stosw
  2957.         ; Timer rücksetzen
  2958.         mov ah,1
  2959.         xor cx,cx
  2960.         xor dx,dx
  2961.         int 15h
  2962.         ; Timer-Intervall setzen
  2963.         mov ah,83h
  2964.         xor al,al
  2965.         mov bx,offset timeout
  2966.         mov cx,15*Denkzeit
  2967.         xor dx,dx
  2968.         int 15h
  2969.         ; Flags löschen
  2970.         mov byte ptr[ds:timeout],0
  2971.  
  2972.         mov cx,5
  2973.         mov bx,Depth0
  2974.  
  2975.         ; Zug ermitteln
  2976. cz00:   add bx,size Spielstand
  2977.         mov horizon,bx
  2978.         push bx
  2979.         push cx
  2980.         call ZugAuswahl
  2981.         pop cx
  2982.         pop bx
  2983.         cmp byte ptr[ds:timeout],0
  2984.         jne cz01
  2985.         loop cz00
  2986.  
  2987. cz01:   ; Stellung analysieren
  2988.         test ax,1000000000000000b
  2989.         jnz cz02
  2990.         cmp ax,30000-2*size spielstand
  2991.         jl cz03
  2992.         mov byte ptr[ds:gameovr],true
  2993.         mov byte ptr[ds:sieger],weiss
  2994.         jmp cz04
  2995. cz02:   cmp ax,-30000+2*size spielstand
  2996.         jg cz03
  2997.         mov byte ptr[ds:gameovr],true
  2998.         mov byte ptr[ds:sieger],schwarz
  2999.         jmp cz04
  3000. cz03:   call Analyse
  3001.         cmp byte ptr[ds:si.StellungTyp],2
  3002.         jne cz04
  3003.         mov byte ptr[ds:gameovr],true
  3004.         mov byte ptr[ds:sieger],3
  3005.  
  3006.         ; Fertigmeldung
  3007. cz04:   mov ah,0Eh
  3008.         mov al,07
  3009.         int 10h
  3010.  
  3011.         ; Zug übergeben
  3012.         add si,size spielstand
  3013.         mov bx,word ptr[ds:ZugWahl]
  3014.         mov ax,word ptr[ds:si.list+bx]
  3015.      mov dx,word ptr[ds:si.list+bx.option]
  3016.         mov si,offset gamestack
  3017.         mov word ptr[ds:si.list],ax
  3018.         mov word ptr[ds:si.list+2],dx
  3019.         xor bx,bx
  3020.  
  3021.         ret
  3022. ComputerZug ENDP
  3023.  
  3024.         ; ********************************
  3025.         ;            Spielverlauf-Schleife
  3026.         ;    liest Koordinate von Tastatur
  3027.         ;      liefert in bx Brettposition
  3028.         ; ********************************
  3029.  
  3030. KoordEingabe PROC
  3031. ke01:   mov ah,8
  3032.         int 21h
  3033.         ; Umwandlung klein->groß
  3034.         cmp al,27
  3035.         je ke99
  3036.         cmp al,'a'
  3037.         jl ke01a
  3038.         sub al,32
  3039. ke01a:  cmp al,'A'
  3040.         jl ke01
  3041.         cmp al,'H'
  3042.         jg ke01
  3043.         mov dl,al
  3044.         sub dl,64
  3045.  
  3046. ke02:   mov ah,8
  3047.         int 21h
  3048.         cmp al,27
  3049.         je ke99
  3050.         cmp al,'1'
  3051.         jl ke02
  3052.         cmp al,'8'
  3053.         jg ke02
  3054.         mov dh,':'
  3055.         sub dh,al
  3056.  
  3057.         ; 10 Mal Zeile
  3058.         shl dh,1
  3059.         mov bl,dh
  3060.         shl dh,1
  3061.         shl dh,1
  3062.         add bl,dh
  3063.  
  3064.         ; plus Spalte
  3065.         add bl,dl
  3066.  
  3067.         xor bh,bh
  3068.         ret
  3069.  
  3070.         ; ESC-Abort Programm
  3071. ke99:   mov word ptr[ds:abort],true
  3072.         ret
  3073. KoordEingabe ENDP
  3074.  
  3075.         ; ********************************
  3076.         ;    liest Spielerzug von Tastatur
  3077.         ; ********************************
  3078.  
  3079. ZugEingabe PROC
  3080. ze_neu: call KoordEingabe
  3081.         cmp byte ptr[ds:abort],true
  3082.         je ze_abort
  3083.         cmp byte ptr[ds:si+bx],leer
  3084.         jle ze_neu
  3085.         mov al,bl
  3086.  
  3087.         push ax
  3088.         call KoordEingabe
  3089.         cmp byte ptr[ds:abort],true
  3090.         je ze_abort
  3091.         pop ax
  3092.         mov ah,bl
  3093.  
  3094.         mov bx,word ptr[ds:si.Anzahl]
  3095. ze_suche: cmp ax,word ptr[ds:si.list+bx]
  3096.         je ze_found
  3097.         sub bx,SIZE Zug
  3098.         jns ze_suche
  3099.  
  3100.         mov ax,msgEr
  3101.         call Message
  3102.  
  3103.         jmp ze_neu
  3104.  
  3105.         ; eve. Bauernumwandlung gewählt?
  3106. ze_found: push bx
  3107.         xor bh,bh
  3108.         mov bl,al
  3109.         cmp byte ptr[ds:si.feld+bx],BauerW
  3110.         jne ze_quit
  3111.         cmp bl,39
  3112.         jg ze_quit
  3113.  
  3114. ze_bauer: mov ah,8
  3115.         int 21h
  3116.         cmp al,'a'
  3117.         jl ze_b01
  3118.         sub al,32
  3119. ze_b01: cmp al,'D'
  3120.         jne ze_b02
  3121.         mov dx,DameW
  3122.         jmp ze_b99
  3123. ze_b02: cmp al,'S'
  3124.         jne ze_bauer
  3125.         mov dx,SpringerW
  3126. ze_b99: pop bx
  3127.      mov word ptr[ds:si.list+bx.option],dx
  3128.         ret
  3129.  
  3130. ze_quit: pop bx
  3131. ze_abort: ret
  3132. ZugEingabe ENDP
  3133.  
  3134.         ; ********************************
  3135.         ; abwechselnd Computer/Spieler Zug
  3136.         ; ********************************
  3137.  
  3138. Spiel PROC
  3139. sp00:   cmp byte ptr[ds:si.AmZug],weiss
  3140.         jne sp01
  3141.  
  3142.         mov ax,msgSZ
  3143.         call Message
  3144.         call ZugGenWeiss
  3145. sp01a:  call ZugEingabe
  3146.         cmp byte ptr[ds:abort],true
  3147.         je sp_abort
  3148.         ; Zug korrekt (König nicht
  3149.         ; ins Schach gestellt?)
  3150.         push bx
  3151.         call IncDepth
  3152.         call FuehreZugAus
  3153.         call ZugGenSchwarz
  3154.         call KoenigSchlagbar
  3155.         pop bx
  3156.         jnc sp01b
  3157.         call DecDepth
  3158.         mov ax,MsgEr
  3159.         call Message
  3160.         jmp sp01a
  3161.  
  3162. sp01b:  call DecDepth
  3163.         call Anzeige
  3164.         call FuehreZugAus
  3165.         not byte ptr[ds:si.AmZug]
  3166.         mov ax,msgCZ
  3167.         call Message
  3168.         jmp sp02
  3169.  
  3170. sp01:   not byte ptr[ds:si.AmZug]
  3171.         call ComputerZug
  3172.         call Anzeige
  3173.         call FuehreZugAus
  3174.  
  3175. sp02:   cmp byte ptr[ds:gameovr],true
  3176.         jne sp00
  3177.         cmp byte ptr[ds:sieger],weiss
  3178.         jne sp03
  3179.         mov ax,msgSG
  3180.         jmp sp99
  3181. sp03:   cmp byte ptr[ds:sieger],schwarz
  3182.         jne sp04
  3183.         mov ax,msgCG
  3184.         jmp sp99
  3185. sp04:   mov ax,msgKG
  3186. sp99:   call Message
  3187.         mov ah,86h
  3188.         mov cx,120
  3189.         xor dx,dx
  3190.         int 15h
  3191. sp_abort: ret
  3192. Spiel ENDP
  3193.  
  3194.         ; ********************************
  3195.         ;        Mitteilung No AX anzeigen
  3196.         ; ********************************
  3197.  
  3198. Message PROC
  3199.         push es
  3200.         push bx
  3201.         mov dx,gScreen
  3202.         push dx
  3203.         cmp dx,gScreenPage0
  3204.         je msg00
  3205.         mov gScreen,gScreenPage0
  3206.         jmp msg01
  3207. msg00:  mov gScreen,gScreenPage2
  3208. msg01:  mov bx,20
  3209.         mul bx
  3210.         mov cx,278
  3211.         add ax,200
  3212.         call sGrab
  3213.         mov cx,244
  3214.         mov ax,158
  3215.         call sDrop
  3216.         pop dx
  3217.         mov gScreen,dx
  3218.         pop bx
  3219.         pop es
  3220.         ret
  3221. Message ENDP
  3222.  
  3223.         ; ********************************
  3224.         ;             Anzeige des Zuges BX
  3225.         ;       Aktualisierung des Brettes
  3226.         ;        Eingabe : Spielfeldpos BX
  3227.         ;           Ausgabe : x/y in cx/ax
  3228.         ; ********************************
  3229.  
  3230. Schirmkoord PROC
  3231.         mov dl,byte ptr[ds:spalte+bx]
  3232.         mov dh,byte ptr[ds:zeile+bx]
  3233.         dec dl
  3234.         dec dh
  3235.         ; x-Position in cx ermitteln
  3236.         xor ah,ah
  3237.         mov al,dl
  3238.         mov bx,25
  3239.         push dx
  3240.         mul bx
  3241.         pop dx
  3242.         mov cx,ax
  3243.         add cx,20
  3244.         ; y-Position in ax ermitteln
  3245.         xor ah,ah
  3246.         mov al,dh
  3247.         mov bx,22
  3248.         mul bx
  3249.         ret
  3250. Schirmkoord ENDP
  3251.  
  3252.         ; ********************************
  3253.         ;                       Rochadezug
  3254.         ;      als zwei Spielzüge anzeigen
  3255.         ; ********************************
  3256.  
  3257. RochadeAnzeige PROC
  3258.         mov ax,word ptr[ds:si.list+bx]
  3259.         push ax
  3260.      mov dx,word ptr[ds:si.list+bx.option]
  3261.         push dx
  3262.         cmp dx,klRochade
  3263.         je ra01
  3264.         ; große Rochade
  3265.         inc ah
  3266.         sub al,4
  3267.         mov word ptr[ds:si.list+bx],ax
  3268.       mov word ptr[ds:si.list+bx.option],0
  3269.         call Anzeige
  3270.         jmp ra02
  3271.         ; kleine Rochade
  3272. ra01:   dec ah
  3273.         add al,3
  3274.         mov word ptr[ds:si.list+bx],ax
  3275.       mov word ptr[ds:si.list+bx.option],0
  3276.         call Anzeige
  3277.         ; ok, Zug restaurieren
  3278. ra02:   pop dx
  3279.         pop ax
  3280.         mov word ptr[ds:si.list+bx],ax
  3281.      mov word ptr[ds:si.list+bx.option],dx
  3282.         ret
  3283. RochadeAnzeige ENDP
  3284.  
  3285.         ; ********************************
  3286.         ;       Animation eines Spielzuges
  3287.         ; ********************************
  3288.  
  3289. Anzeige PROC
  3290.         ; kleine oder große Rochade?
  3291.       cmp word ptr[ds:si.list+bx.option],4
  3292.         jl anzNormal
  3293.         push bx
  3294.         mov bx,word ptr[ds:si.list+bx]
  3295.         xor bh,bh
  3296.         mov dl,byte ptr[ds:si+bx]
  3297.         pop bx
  3298.         cmp dl,BauerW
  3299.         je anzNormal
  3300.         cmp dl,BauerS
  3301.         je anzNormal
  3302.         call RochadeAnzeige
  3303.  
  3304. anzNormal: push si
  3305.         push es
  3306.         call gCopy
  3307.         ; zuerst Startfeld löschen
  3308.         ; (mit Feld-Backup)
  3309.         push bx
  3310.         mov bx,word ptr[ds:si.list+bx]
  3311.         xor bh,bh
  3312.         call SchirmKoord
  3313.         push ax
  3314.         push cx
  3315.         add ax,200
  3316.         call sGrab
  3317.         pop cx
  3318.         pop ax
  3319.         call sDrop
  3320.  
  3321.         ; dann Spielfigur grabben
  3322.         pop bx
  3323.         push bx
  3324.         mov bx,word ptr[ds:si.list+bx]
  3325.         xor bh,bh
  3326.         mov bl,byte ptr[ds:si+bx]
  3327.         xor bh,bh
  3328.         shl bx,1
  3329.         shl bx,1
  3330.         mov cx,word ptr[ds:FigurPos+bx]
  3331.         mov ax,word ptr[ds:FigurPos+bx+2]
  3332.         call sGrab
  3333.  
  3334.         ; Toggle-Schleife verschiebt Figur
  3335.         pop bx
  3336.         push bx
  3337.         mov ax,word ptr[ds:si.list+bx]
  3338.         push ax
  3339.         mov bl,ah
  3340.         xor bh,bh
  3341.         call SchirmKoord
  3342.         mov word ptr[ds:xcount],cx
  3343.         mov word ptr[ds:ycount],ax
  3344.         pop ax
  3345.         mov bl,al
  3346.         xor bh,bh
  3347.         call SchirmKoord
  3348.  
  3349.         ; Animation
  3350. anz00:  push ax
  3351.         push cx
  3352.         call sToggle ; setzen
  3353.         call gSwitchEm
  3354.         call gWaitDisplay
  3355.         pop cx
  3356.         pop ax
  3357.         push ax
  3358.         push cx
  3359.         call sToggle ; löschen
  3360.         pop cx
  3361.         pop ax
  3362.         cmp ax,word ptr[ds:ycount]
  3363.         jl anz01
  3364.         jg anz02
  3365.         jmp anz03
  3366. anz01:  inc ax
  3367.         jmp anz03
  3368. anz02:  dec ax
  3369. anz03:  cmp cx,word ptr[ds:xcount]
  3370.         jl anz04
  3371.         jg anz05
  3372.         jmp anz06
  3373. anz04:  inc cx
  3374.         jmp anz06
  3375. anz05:  dec cx
  3376. anz06:  cmp cx,word ptr[ds:xcount]
  3377.         jne anz00
  3378.         cmp ax,word ptr[ds:ycount]
  3379.         jne anz00
  3380.  
  3381.         ; Zielfeld löschen
  3382.         pop bx
  3383.         push bx
  3384.         mov ax,word ptr[ds:si.list+bx]
  3385.         xor bh,bh
  3386.         mov bl,ah
  3387.         call SchirmKoord
  3388.         add ax,200
  3389.         push ax
  3390.         push cx
  3391.         call sGrab
  3392.         pop cx
  3393.         pop ax
  3394.         sub ax,200
  3395.         call sDrop
  3396.  
  3397.         ; Zugfigur setzen
  3398.         pop bx
  3399.         push bx
  3400.      mov di,word ptr[ds:si.list+bx.option]
  3401.         mov bx,word ptr[ds:si.list+bx]
  3402.         xor bh,bh
  3403.         mov dl,byte ptr[ds:si+bx]
  3404.         xor dh,dh
  3405.         ; Bauernumwandlung??
  3406.         cmp dl,BauerW
  3407.         jne anz07
  3408.         cmp bl,39
  3409.         jg anz08
  3410.         mov dx,di
  3411.         jmp anz08
  3412. anz07:  cmp dl,BauerS
  3413.         jne anz08
  3414.         cmp bl,80
  3415.         jl anz08
  3416.         mov dx,di
  3417.         ; dx nun Figur (bei Bauernumw.
  3418.         ; die Ersatzfigur)
  3419. anz08:  mov bx,dx
  3420.         shl bx,1
  3421.         shl bx,1
  3422.         mov cx,word ptr[ds:FigurPos+bx]
  3423.         mov ax,word ptr[ds:FigurPos+bx+2]
  3424.         call sGrab
  3425.         pop bx
  3426.         push bx
  3427.         mov ax,word ptr[ds:si.list+bx]
  3428.         xor bh,bh
  3429.         mov bl,ah
  3430.         call SchirmKoord
  3431.         call sToggle
  3432.         call gSwitchEm
  3433.  
  3434.         pop bx
  3435.         pop es
  3436.         pop si
  3437.         ret
  3438. Anzeige ENDP
  3439.  
  3440.         ; ********************************
  3441.         ;            Quit (Verabschiedung)
  3442.         ; ********************************
  3443.  
  3444. Quit PROC
  3445.         mov ah,09h
  3446.         cmp byte ptr[ds:abort],true
  3447.         je q04
  3448.         cmp byte ptr[ds:sieger],weiss
  3449.         je q00
  3450.         cmp byte ptr[ds:sieger],schwarz
  3451.         je q01
  3452.         cmp byte ptr[ds:sieger],3
  3453.         je q02
  3454. q04:    mov dx,offset txtAB
  3455.         int 21h
  3456.         ret
  3457. q00:    mov dx,offset txtSG
  3458.         int 21h
  3459.         ret
  3460. q01:    mov dx,offset txtCG
  3461.         int 21h
  3462.         ret
  3463. q02:    mov dx,offset txtKG
  3464.         int 21h
  3465.         ret
  3466. Quit ENDP
  3467.  
  3468.         ; ********************************
  3469.         ;                     Intro & Init
  3470.         ; ********************************
  3471.  
  3472. Intro PROC
  3473.         ; VGA-Grafikkarte vorbereiten
  3474.         call gInit
  3475.         call gHide
  3476.         mov dx,seg gPCXFileTitel
  3477.         mov ds,dx
  3478.         mov dx,offset gPCXFileTitel
  3479.         call gLoadPCX
  3480.         call gShow
  3481.  
  3482.         ; Titel CHESSfx anzeigen
  3483.         mov si,0
  3484. titelloop1:
  3485.         xor ah,ah
  3486.         mov al,byte ptr[ds:Falldown+si]
  3487.         mov bx,80d
  3488.         mul bx
  3489.         add ax,16000
  3490.         mov bx,ax
  3491.         call gStartAddr
  3492.         mov ah,86h
  3493.         xor cx,cx
  3494.         mov dx,22000
  3495.         int 15h
  3496.         inc si
  3497.         cmp byte ptr[ds:Falldown+si],255
  3498.         jne titelloop1
  3499.  
  3500.         ; Schachbrett vorbereiten
  3501.         mov dx,offset gPCXFileBrett
  3502.         mov gScreen,gScreenPage0
  3503.         call gLoadPCX
  3504.         ; Bauern setzen
  3505.         mov cx,20
  3506. SetBauern:
  3507.         push cx
  3508.         mov ax,0
  3509.         mov cx,230
  3510.         call sGrab
  3511.         mov ax,22
  3512.         pop cx
  3513.         push cx
  3514.         call sToggle
  3515.         mov ax,0
  3516.         mov cx,254
  3517.         call sGrab
  3518.         mov ax,132
  3519.         pop cx
  3520.         push cx
  3521.         call sToggle
  3522.         pop cx
  3523.         add cx,25
  3524.         cmp cx,220
  3525.         jl SetBauern
  3526.         ; Figuren setzen
  3527.         mov si,offset Aufbau
  3528. SetFiguren:
  3529.         xor ch,ch
  3530.         xor ah,ah
  3531.         mov cl,byte ptr[ds:si]
  3532.         inc si
  3533.         mov al,byte ptr[ds:si]
  3534.         inc si
  3535.         call sGrab
  3536.         xor ch,ch
  3537.         xor ah,ah
  3538.         mov cl,byte ptr[ds:si]
  3539.         inc si
  3540.         mov al,byte ptr[ds:si]
  3541.         inc si
  3542.         call SToggle
  3543.         cmp si,offset Aufbau+64
  3544.         jl SetFiguren
  3545.  
  3546.         ; Figuren rechts löschen
  3547.         mov si,offset gPCXBuffer
  3548.         mov word ptr[ds:ycount],0
  3549.         mov word ptr[ds:xcount],230
  3550. tclear1: call gSetPix
  3551.         inc word ptr[ds:xcount]
  3552.         cmp word ptr[ds:xcount],230+73
  3553.         jl tclear1
  3554.         mov word ptr[ds:xcount],230
  3555.         inc word ptr[ds:ycount]
  3556.         cmp word ptr[ds:ycount],120
  3557.         jl tclear1
  3558.  
  3559.         ; Spielfeld anzeigen
  3560.         mov bx,16000
  3561. titelloop2: sub bx,80
  3562.         call gStartAddr
  3563.         mov ah,86h
  3564.         xor cx,cx
  3565.         mov dx,8000
  3566.         int 15h
  3567.         or bx,bx
  3568.         jnz titelloop2
  3569.         call gWaitDisplay
  3570.  
  3571.         ; Brett-Backup laden
  3572.         mov dx,offset gPCXFileBrett
  3573.         mov gScreen,gScreenPage1
  3574.         call gLoadPCX
  3575.         mov gScreen,gScreenPage2
  3576.  
  3577.         ; interne Schachwerte setzen
  3578.         ; Brett aufbauen
  3579.         mov ax,seg Brett
  3580.         mov es,ax
  3581.         mov ds,ax
  3582.         mov si,offset Brett
  3583.         mov di,offset GameStack
  3584.         mov aktStack,di
  3585.         mov cx,60
  3586.         rep movsw
  3587.  
  3588.         ; Vorrück-Werte definieren
  3589.         mov si,offset VorMS
  3590.         mov di,offset VorBW
  3591.         mov cx,8
  3592.         rep movsw
  3593.         mov si,offset VorMS
  3594.         mov di,offset VorBS
  3595.         mov cx,8
  3596.         rep movsw
  3597.  
  3598.       mov si,aktStack
  3599.       mov word ptr[ds:si.alpha],alphastart
  3600.       mov word ptr[ds:si.beta],betastart
  3601.       mov word ptr[ds:si.matdiff],0
  3602.       mov word ptr[ds:si.matwertw],4050
  3603.       mov word ptr[ds:si.matwerts],-4050
  3604.       mov byte ptr[ds:si.stellungtyp],4
  3605.       mov byte ptr[ds:si.klRochWmgl],true
  3606.       mov byte ptr[ds:si.klRochSmgl],true
  3607.       mov byte ptr[ds:si.grRochWmgl],true
  3608.       mov byte ptr[ds:si.grRochSmgl],true
  3609.       mov byte ptr[ds:si.koenps],25
  3610.       mov byte ptr[ds:si.koenpw],95
  3611.       mov byte ptr[ds:abort],false
  3612.  
  3613.         ret
  3614. Intro ENDP
  3615.  
  3616.         ; ********************************
  3617.         ;             Initialisiert Grafik
  3618.         ; ********************************
  3619.  
  3620. gInit PROC
  3621.         push ax
  3622.         push dx
  3623.  
  3624.         mov ax,13h
  3625.         int 10h
  3626.  
  3627.         mov dx,03C4h
  3628.         mov al,04h
  3629.         out dx,al
  3630.         inc dx
  3631.         in al,dx
  3632.         and al,(not 8h)
  3633.         out dx,al
  3634.  
  3635.         mov dx,03D4h
  3636.         mov al,14h
  3637.         out dx,al
  3638.         inc dx
  3639.         in al,dx
  3640.         and al,(not 40h)
  3641.         out dx,al
  3642.  
  3643.         dec dx
  3644.         mov al,17h
  3645.         out dx,al
  3646.         inc dx
  3647.         in al,dx
  3648.         or al,40h
  3649.         out dx,al
  3650.  
  3651.         mov ax,gScreenSegment
  3652.         mov es,ax
  3653.         xor ax,ax
  3654.         xor di,di
  3655.         mov cx,07FFFh
  3656.         rep stosw
  3657.  
  3658.         pop dx
  3659.         pop ax
  3660.         ret
  3661. gInit ENDP
  3662.  
  3663.         ; ********************************
  3664.         ;             versteckt Bildaufbau
  3665.         ; ********************************
  3666.  
  3667. gHide PROC
  3668.         mov ah,12h
  3669.         mov al,01h
  3670.         mov bl,36h
  3671.         int 10h
  3672.         ret
  3673. gHide ENDP
  3674.  
  3675.         ; ********************************
  3676.         ;          zeigt Bildschirm wieder
  3677.         ; ********************************
  3678.  
  3679. gShow PROC
  3680.         mov ah,12h
  3681.         mov al,00h
  3682.         mov bl,36h
  3683.         int 10h
  3684.         ret
  3685. gShow ENDP
  3686.  
  3687.         ; ********************************
  3688.         ;           setzt wieder Textmodus
  3689.         ; ********************************
  3690.  
  3691. gExit PROC
  3692.         push ax
  3693.         xor ah,ah
  3694.         mov al,3h
  3695.         int 10h
  3696.         pop ax
  3697.         ret
  3698. gExit ENDP
  3699.  
  3700.         ; ********************************
  3701.         ;         setzt einen Graphikpunkt
  3702.         ; ********************************
  3703.  
  3704. gSetPix PROC
  3705.         push bx
  3706.         push es
  3707.         push dx
  3708.         push cx
  3709.         mov cl,byte ptr[ds:si]
  3710.         mov ax,word ptr[ds:xcount]
  3711.         mov bx,word ptr[ds:ycount]
  3712.         push cx
  3713.         push ax
  3714.         push ax
  3715.  
  3716.         shl bx,1
  3717.         shl bx,1
  3718.         shl bx,1
  3719.         shl bx,1
  3720.         mov ax,bx
  3721.         shl bx,1
  3722.         shl bx,1
  3723.         add ax,bx
  3724.  
  3725.         pop bx
  3726.         shr bx,1
  3727.         shr bx,1
  3728.         add ax,bx
  3729.  
  3730.         mov di,gScreen
  3731.         add di,ax
  3732.         mov ax,gScreenSegment
  3733.         mov es,ax
  3734.  
  3735.         pop cx
  3736.         and cl,3h
  3737.         mov bx,1h
  3738.         shl bx,cl
  3739.         pop cx       ; Color
  3740.         mov ah,bl
  3741.         mov al,2h
  3742.         mov dx,03C4h
  3743.         out dx,ax
  3744.         mov byte ptr es:[di],cl
  3745.  
  3746.         pop cx
  3747.         pop dx
  3748.         pop es
  3749.         pop bx
  3750.         ret
  3751. gSetPix ENDP
  3752.  
  3753.         ; ********************************
  3754.         ;      setzt die Bildschirm-Start-
  3755.         ;                     auf 0A000:BX
  3756.         ; ********************************
  3757.  
  3758. gStartAddr PROC
  3759.         call gWaitDisplay
  3760.         push ds
  3761.         mov dx,gCRTC
  3762.         mov ah,bh
  3763.         mov al,0Ch
  3764.         out dx,ax
  3765.         mov ah,bl
  3766.         inc al
  3767.         out dx,ax
  3768.  
  3769.         xor cx,cx
  3770.         mov ds,cx
  3771.         mov WORD PTR ds:[044Eh],bx
  3772.  
  3773.         pop ds
  3774.         ret
  3775. gStartAddr ENDP
  3776.  
  3777.         ; ********************************
  3778.         ;         Hilfsroutine für LoadPCX
  3779.         ; ********************************
  3780.  
  3781. gNextPixel PROC
  3782.         inc word ptr[ds:xcount]
  3783.         cmp word ptr[ds:xcount],320
  3784.         je gnp_next
  3785.         ret
  3786. gnp_next:
  3787.         inc word ptr[ds:ycount]
  3788.         mov word ptr[ds:xcount],0
  3789.         ret
  3790. gNextPixel ENDP
  3791.  
  3792.         ; ********************************
  3793.         ;    Lädt ein 320x200x256 PCX Bild
  3794.         ;              Dateiname bei ds:dx
  3795.         ; ********************************
  3796.  
  3797. gLoadPCX PROC
  3798.         ; Dateiname bei ds:dx
  3799.         ; Datei öffnen
  3800.         mov ah,3Dh
  3801.         mov al,10010000b
  3802.         int 21h
  3803.  
  3804.         ; 128 Bytes lesen
  3805.         mov bx,ax
  3806.         mov ah,3Fh
  3807.         mov cx,128
  3808.         mov dx,seg gPCXBuffer
  3809.         mov ds,dx
  3810.         mov dx,offset gPCXBuffer
  3811.         int 21h
  3812.  
  3813.         ; gültige 320x200x256 PCX-Datei?
  3814.         mov si,offset gPCXBuffer
  3815.         cmp byte ptr[ds:si],10
  3816.         jne glPCX_No
  3817.         cmp byte ptr[ds:si+3],8
  3818.         jne glPCX_No
  3819.         jmp glPCX_Ok
  3820. glPCX_No:
  3821.         mov ah,3Eh
  3822.         int 21h
  3823.         ret
  3824.  
  3825. glPCX_Ok:
  3826.         mov word ptr[ds:xcount],0
  3827.         mov word ptr[ds:ycount],0
  3828.         mov byte ptr[ds:pack],0
  3829.  
  3830. glPCX_load:       ; nachladen
  3831.         mov ah,3Fh
  3832.         mov cx,1024
  3833.         mov dx,offset gPCXBuffer
  3834.         int 21h
  3835.         mov si,offset gPCXBuffer
  3836.  
  3837.         mov word ptr[ds:bufpos],0
  3838. glPCX_loop:
  3839.         cmp word ptr[ds:bufpos],cx
  3840.         jge glPCX_load
  3841.         cmp byte ptr[ds:pack],0
  3842.         jz glPCX_nopack
  3843.  
  3844.         push cx
  3845.         xor ch,ch
  3846.         mov cl,byte ptr[ds:pack]
  3847. glPCX_unpack:
  3848.         call gSetPix
  3849.         call gNextPixel
  3850.         loop glPCX_unpack
  3851.         pop cx
  3852.         mov byte ptr[ds:pack],0
  3853.         jmp glPCX_next
  3854.  
  3855. glPCX_nopack:
  3856.         mov al,byte ptr[ds:si]
  3857.         and al,0C0h
  3858.         cmp al,0c0h
  3859.         jnz glPCX_pixel
  3860.         mov al,byte ptr[ds:si]
  3861.         and al,3Fh
  3862.         mov byte ptr[ds:pack],al
  3863.         jmp glPCX_next
  3864.  
  3865. glPCX_pixel:
  3866.         call gSetPix
  3867.         call gNextPixel
  3868.  
  3869. glPCX_next:
  3870.         inc si
  3871.         inc word ptr[ds:bufpos]
  3872.         cmp word ptr[ds:ycount],200
  3873.         je glPCX_end
  3874.         jmp glPCX_loop
  3875.  
  3876. glPCX_end:
  3877.         push bx
  3878.         ; palette finden
  3879.         mov ah,42h
  3880.         mov al,2
  3881.         mov cx,0FFFFh
  3882.         mov dx,-(3*256)
  3883.         int 21h
  3884.         ; palette laden
  3885.         mov ah,3Fh
  3886.         mov cx,3*256
  3887.         mov dx,offset gPCXBuffer
  3888.         int 21h
  3889.         ; palette anpassen
  3890.         mov cx,2*256
  3891.         mov si,offset gPCXBuffer
  3892. glPCX_pal:
  3893.         shr byte ptr[ds:si],1
  3894.         shr byte ptr[ds:si],1
  3895.         inc si
  3896.         loop glPCX_pal
  3897.         ; palette setzen
  3898.         mov ax,seg gPCXBuffer
  3899.         mov es,ax
  3900.         mov dx,offset gPCXBuffer
  3901.         mov al,12h
  3902.         mov ah,10h
  3903.         xor bx,bx
  3904.         mov cx,256
  3905.         int 10h
  3906.         pop bx
  3907.  
  3908.         ; File schließen
  3909.         mov ah,3Eh
  3910.         int 21h
  3911.  
  3912.         ret
  3913. gLoadPCX ENDP
  3914.  
  3915.         ; ********************************
  3916.         ;                    Spritegrabber
  3917.         ;          bei cx,ax in gPCXBuffer
  3918.         ; ********************************
  3919.  
  3920. sGrab PROC
  3921.         cld
  3922.         push ds
  3923.         push si
  3924.         mov bl,20
  3925.         mov bh,24
  3926.         mov dx,(320-24)/4
  3927.         push dx
  3928.         push bx
  3929.         mov bx,seg gPCXBuffer
  3930.         mov es,bx
  3931.         mov di,offset gPCXBuffer
  3932.         mov bx,320
  3933.  
  3934.         shr bx,1
  3935.         shr bx,1
  3936.         mul bx
  3937.         mov bx,cx
  3938.         shr bx,1
  3939.         shr bx,1
  3940.         add ax,bx
  3941.         mov si,ax  ; si Screenpos
  3942.         pop bx
  3943.         pop dx
  3944.  
  3945.         mov ax,gScreenSegment
  3946.         mov ds,ax  ; ds:si Screenpos
  3947.  
  3948. sg_yloop:
  3949.         push cx
  3950.         push dx
  3951.         push bx
  3952.         mov dx,03CEh
  3953.         mov al,4h
  3954. sg_xloop:
  3955.         mov ah,cl
  3956.         and ah,3h
  3957.         out dx,ax
  3958.         movsb    ; Transfer
  3959.         cmp ah,3h
  3960.         jz sg_noinc
  3961.         dec si   ; div 4
  3962. sg_noinc:
  3963.         inc cx
  3964.         dec bh
  3965.         jnz sg_xloop
  3966.         pop bx
  3967.         pop dx
  3968.         add si,dx
  3969.         dec bl
  3970.         pop cx
  3971.         jnz sg_yloop
  3972.  
  3973.         pop si
  3974.         pop ds
  3975.         ret
  3976. sGrab ENDP
  3977.  
  3978.         ; ********************************
  3979.         ;            Spielfigur gPCXBuffer
  3980.         ;                 bei cx,ax setzen
  3981.         ; ********************************
  3982.  
  3983. sDrop PROC
  3984.         cld
  3985.         push ds
  3986.         push si
  3987.         mov bl,20
  3988.         mov bh,24
  3989.         mov dx,(320-24)/4
  3990.         push dx
  3991.         push bx
  3992.         mov bx,seg gPCXBuffer
  3993.         mov ds,bx
  3994.         mov si,offset gPCXBuffer
  3995.         mov bx,320/4
  3996.         mul bx
  3997.         mov bx,cx
  3998.         shr bx,1
  3999.         shr bx,1
  4000.         add ax,bx
  4001.         mov di,ax  ; si Screenpos
  4002.         add di,gScreen
  4003.         pop bx
  4004.         pop dx
  4005.  
  4006.         mov ax,gScreenSegment
  4007.         mov es,ax  ; ds:si Screenpos
  4008.  
  4009. sd_yloop:
  4010.         push cx
  4011.         push dx
  4012.         push bx
  4013.         mov dx,03C4h
  4014.         mov al,2h
  4015. sd_xloop:
  4016.         push cx
  4017.         and cl,3h
  4018.         mov ah,1
  4019.         shl ah,cl
  4020.         pop cx
  4021.  
  4022.         out dx,ax
  4023.         movsb    ; Transfer
  4024.         cmp ah,8h
  4025.         jz sd_noinc
  4026.         dec di   ; div 4
  4027. sd_noinc:
  4028.         inc cx
  4029.         dec bh
  4030.         jnz sd_xloop
  4031.         pop bx
  4032.         pop dx
  4033.         add di,dx
  4034.         dec bl
  4035.         pop cx
  4036.         jnz sd_yloop
  4037.  
  4038.         pop si
  4039.         pop ds
  4040.         ret
  4041. sDrop ENDP
  4042.  
  4043.         ; ********************************
  4044.         ;     Spielfigur bei cx,ax togglen
  4045.         ; ********************************
  4046.  
  4047. sToggle PROC
  4048.         cld
  4049.         push ds
  4050.         push di
  4051.         push si
  4052.         mov bl,20
  4053.         mov bh,24
  4054.         mov dx,320/4
  4055.         push dx
  4056.         push bx
  4057.         mov bx,seg gPCXBuffer
  4058.         mov es,bx
  4059.         mov di,offset gPCXBuffer
  4060.         mov bx,320/4
  4061.         mul bx
  4062.         mov bx,cx
  4063.         shr bx,1
  4064.         shr bx,1
  4065.         add ax,bx
  4066.         mov si,ax  ; si Screenpos
  4067.         add si,gScreen
  4068.         pop bx
  4069.         pop dx
  4070.  
  4071.         mov ax,gScreenSegment
  4072.         mov ds,ax  ; ds:si Screenpos
  4073.  
  4074. st_yloop:
  4075.         push cx
  4076.         push dx
  4077.         push bx
  4078.         push si
  4079.  
  4080. st_xloop:
  4081.         mov al,byte ptr es:di
  4082.         cmp al,00h
  4083.         jz st_skipbyte
  4084.  
  4085.         mov ah,cl
  4086.         and ah,3h
  4087.         push ax
  4088.         mov dx,03CEh
  4089.         mov al,4h
  4090.         out dx,ax
  4091.         movsb
  4092.         dec si
  4093.         dec di
  4094.         pop ax
  4095.         push cx
  4096.         xchg ah,al
  4097.         mov cx,ax
  4098.         mov ah,1
  4099.         shl ah,cl
  4100.         mov dx,03C4h
  4101.         mov al,2h
  4102.         out dx,ax
  4103.         mov byte ptr ds:si,ch
  4104.  
  4105.         pop cx
  4106. st_skipbyte:
  4107.         push cx
  4108.         and cl,3h
  4109.         cmp cl,3h
  4110.         jnz st_noinc
  4111.         inc si
  4112. st_noinc:
  4113.         pop cx
  4114.         inc di
  4115.         inc cx
  4116.         dec bh
  4117.         jnz st_xloop
  4118.         pop si
  4119.         pop bx
  4120.         pop dx
  4121.         add si,dx
  4122.         pop cx
  4123.         dec bl
  4124.         jnz st_yloop
  4125.  
  4126.         pop si
  4127.         pop di
  4128.         pop ds
  4129.         ret
  4130. sToggle ENDP
  4131.  
  4132.         ; ********************************
  4133.         ;       gSwitchEm tauscht Anzeige-
  4134.         ;    und Bearbeitungs- Grafikseite
  4135.         ; ********************************
  4136.  
  4137. gSwitchEm PROC
  4138.        push bx
  4139.        mov ax,SEG gScreen
  4140.        mov ds,ax
  4141.        cmp WORD PTR gScreen,gScreenPage0
  4142.        je gSwitchEm_Disp0
  4143.  
  4144. gSwitchEm_Disp2:
  4145.        mov bx,gScreenPage2
  4146.        CALL gStartAddr
  4147.        mov WORD PTR gScreen,gScreenPage0
  4148.        call gCopy
  4149.        pop bx
  4150.        ret
  4151.  
  4152. gSwitchEm_Disp0:
  4153.        mov bx,gScreenPage0
  4154.        CALL gStartAddr
  4155.        mov WORD PTR gScreen,gScreenPage2
  4156.        call gCopy
  4157.        pop bx
  4158.        ret
  4159. gSwitchEm ENDP
  4160.  
  4161.         ; ********************************
  4162.         ;      Bildschirm-Kopie herstellen
  4163.         ;         (für flüssige Animation)
  4164.         ; ********************************
  4165.  
  4166. gCopy PROC
  4167.         push bx
  4168.         push ax
  4169.         push cx
  4170.         push ds
  4171.         push si
  4172.         mov dx,3C4h
  4173.         mov al,2
  4174.         out dx,al
  4175.         mov dx,3C5h
  4176.         mov al,0Fh
  4177.         out dx,al
  4178.         mov ah,0
  4179.         mov al,1
  4180.         call gSetMode
  4181.         mov di,word ptr gScreen
  4182.         cmp di,gScreenPage0
  4183.         je gc1
  4184.         mov si,gScreenPage0
  4185.         jmp gc2
  4186. gc1:    mov si,gScreenPage2
  4187. gc2:    mov cx,16000
  4188.         mov ax,gScreenSegment
  4189.         mov es,ax
  4190.         mov ds,ax
  4191.         rep movsb
  4192.         mov ah,0
  4193.         mov al,0
  4194.         call gSetMode
  4195.         pop si
  4196.         pop ds
  4197.         pop cx
  4198.         pop ax
  4199.         pop bx
  4200.         ret
  4201. gCopy ENDP
  4202.  
  4203.         ; ********************************
  4204.         ; setzt VGA-Schreibmodus r=ah,w=al
  4205.         ; ********************************
  4206.  
  4207. gSetMode PROC
  4208.         and ah,1h
  4209.         shl ah,1
  4210.         shl ah,1
  4211.         shl ah,1
  4212.         and al,3h
  4213.         add ah,al
  4214.         or ah,40h
  4215.         mov dx,03CEh
  4216.         mov al,5h
  4217.         out dx,ax
  4218.         ret
  4219. gSetMode ENDP
  4220.  
  4221.         ; ********************************
  4222.         ;        wartet auf Strahlrücklauf
  4223.         ; ********************************
  4224.  
  4225. gWaitDisplay PROC
  4226.         push ax
  4227.         mov dx,gCRTC+6
  4228. wd_r:   in al,dx
  4229.         test al,8d
  4230.         jz wd_r
  4231. wd_d:   in al,dx
  4232.         test al,8d
  4233.         jnz wd_d
  4234.         pop ax
  4235.         ret
  4236. gWaitDisplay ENDP
  4237.  
  4238.         END
  4239.  
  4240.