-
Notifications
You must be signed in to change notification settings - Fork 2
378 lines (261 loc) · 8.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
; Chess
; Copyright (c) 2019-2020 Andrew Davie
; SLOT0 - screen draw, state machine dispatcher
; SLOT1 - anything
; SLOT2 - moves/ply
; SLOT3 - board
SLOT 0
;---------------------------------------------------------------------------------------------------
;######################################### FIXED BANK ############################################
;---------------------------------------------------------------------------------------------------
_ORIGIN SET _FIRST_BANK
NEWBANK THE_FIRST_BANK
RORG $f000
;---------------------------------------------------------------------------------------------------
DEF StartupBankReset
SUBROUTINE
VEND StartupBankReset
; On startup, 3E+ switches banks 0 and 3 to the 1st ROM bank (1K), from which the reset
; vector is obtained from bank 0 (+$FFC). Chess3E+ (maybe) will leave this bank (3) alone
; so that a system reset will always have the reset vectors available at FFFC, where expected
ldx #$FF
txs
; ldx #0
;joy cpx #0
; beq joy
CALL CartInit
CALL SetupBanks
CALL InitialisePieceSquares
;CALL ListPlayerMoves
.StartFrame
; START OF FRAME
lda #%1110 ; VSYNC ON
.loopVSync3 sta WSYNC
sta VSYNC
lsr
bne .loopVSync3 ; branch until VYSNC has been reset
sta VBLANK
ldy #TIME_PART_1
sty TIM64T
; LOTS OF PROCESSING TIME - USE IT
jsr AiStateMachine
IF ASSERTS
; Catch timer expired already
; bit TIMINT
;.whoops bmi .whoops
ENDIF
.wait bit TIMINT
bpl .wait
; START OF VISIBLE SCANLINES
CALL longD
ldx #SLOT_DrawRow ; + BANK_DrawRow
stx SET_BANK_RAM
jsr DrawRow ; draw the ENTIRE visible screen!
CALL tidySc
jsr AiStateMachine
lda INTIM
cmp #20
bcc .notnow
;CALL GameSpeak
CALL PositionSprites
IF 0
; "draw" sprite shapes into row banks
ldx #SLOT_DrawRow + 7
zapem stx SET_BANK_RAM
jsr WriteBlank
dex
bpl zapem
jsr WriteCursor
ENDIF
.notnow
.waitTime bit TIMINT
bpl .waitTime
jmp .StartFrame
;---------------------------------------------------------------------------------------------------
DEF ThinkBar
SUBROUTINE
IF DIAGNOSTICS
inc positionCount
bne .p1
inc positionCount+1
bne .p1
inc positionCount+2
.p1
ENDIF
; The 'thinkbar' pattern...
lda #0
ldy INPT4
bmi .doThink
inc __thinkbar
lda __thinkbar
and #15
tay
lda SynapsePattern,y
.doThink sta PF2
sta PF1
rts
SynapsePattern
.byte %11000001
.byte %01100000
.byte %00110000
.byte %00011000
.byte %00001100
.byte %00000110
.byte %10000011
.byte %11000001
.byte %10000011
.byte %00000110
.byte %00001100
.byte %00011000
.byte %00110000
.byte %01100000
.byte %11000001
.byte %10000011
;---------------------------------------------------------------------------------------------------
DEF CopySinglePiece;@0 - uses @2
SUBROUTINE
TIMING COPYSINGLEPIECE, (2600)
REFER aiDrawEntireBoard
REFER aiSpecialMoveFixup
REFER aiWriteStartPieceBlank
REFER aiDrawPart2
REFER aiMarchB
REFER aiFinalFlash
REFER UNSAFE_showMoveCaptures
REFER aiMarchToTargetA
REFER aiMarchB2
REFER aiMarchToTargetB
REFER aiSelectDestinationSquare
REFER aiPromotePawnStart
REFER aiChoosePromotePiece
VEND CopySinglePiece
; WARNING: CANNOT USE VAR/OVERLAY IN ANY ROUTINE CALLING THIS!!
; ALSO CAN'T USE IN THIS ROUTINE
; This routine will STOMP on those vars due to __pieceShapeBuffer occupying whole overlay
; @2150 max
; = 33 TIM64T
; Board is [SLOT3]
CALL CopySetup;@2
DEF InterceptMarkerCopy
SUBROUTINE
; Copy a piece shape (3 PF bytes wide x 24 lines) to the RAM buffer
; y = piece index
lda #BANK_PIECE_VECTOR_BANK
sta SET_BANK;@2
lda PIECE_VECTOR_LO,y
sta __ptr
lda PIECE_VECTOR_HI,y
sta __ptr+1
lda PIECE_VECTOR_BANK,y
sta SET_BANK;@2
ldy #PIECE_SHAPE_SIZE-1
.copy lda (__ptr),y
sta __pieceShapeBuffer,y
dey
bpl .copy
lda squareToDraw
sec
ldx #10
.sub10 sbc #10
dex
bcs .sub10
adc #8
cmp #4 ; CS = right side of screen
txa
ora #[SLOT2]
sta SET_BANK_RAM;@2 ; bank row
CALL CopyPieceToRowBitmap;@3
rts
;---------------------------------------------------------------------------------------------------
P SET 0
MAC AIN
AI_{1} SET P
P SET P+1
ENDM
MAC LO
.byte <ai{1}
ENDM
MAC HI
.byte >ai{1}
ENDM
MAC BK
.byte BANK_ai{1}
ENDM
ONCEPERFRAME = 40
MAC TABDEF ; {1} = macro to use
{1} FlashComputerMove
{1} BeginSelectMovePhase
{1} SelectStartSquare
{1} StartSquareSelected
{1} DrawMoves
{1} ShowMoveCaptures
{1} SlowFlash
{1} UnDrawTargetSquares
{1} SelectDestinationSquare
{1} Quiescent
{1} ReselectDebounce
{1} StartMoveGen
{1} StepMoveGen
{1} StartClearBoard
{1} ClearEachRow
{1} DrawEntireBoard
{1} DrawPart2
{1} DrawPart3
{1} GenerateMoves
{1} ComputerMove
{1} MoveIsSelected
{1} WriteStartPieceBlank
{1} MarchToTargetA
{1} MarchA2
{1} MarchB
{1} MarchToTargetB
{1} MarchB2
{1} FinalFlash
{1} SpecialMoveFixup
{1} InCheckBackup
{1} InCheckDelay
{1} PromotePawnStart
{1} RollPromotionPiece
{1} ChoosePromotePiece
{1} ChooseDebounce
{1} CheckMate
{1} Draw
{1} DelayAfterMove
{1} DelayAfterMove2
{1} DelayAfterPlaced
{1} DelayAfterPlaced2
ENDM
TABDEF AIN
DEF AiVectorLO
TABDEF LO
DEF AiVectorHI
TABDEF HI
DEF AiVectorBANK
TABDEF BK
;---------------------------------------------------------------------------------------------------
DEF AiStateMachine
SUBROUTINE
REFER StartupBankReset
VEND AiStateMachine
; State machine vector setup - points to current routine to execute
ldx aiState
lda AiVectorLO,x
sta __ptr
lda AiVectorHI,x
sta __ptr+1
lda AiVectorBANK,x
sta savedBank
sta SET_BANK
jmp (__ptr) ; NOTE: could branch back to squeeze cycles
;---------------------------------------------------------------------------------------------------
ECHO "FREE BYTES IN STARTUP BANK = ", $F0FC - *
;---------------------------------------------------------------------------------------------------
; The reset vectors
; these must live in the first 1K bank of the ROM
SEG StartupInterruptVectors
ORG _FIRST_BANK + $3FC
.word StartupBankReset ; RESET
.word StartupBankReset ; IRQ (not used)
;---------------------------------------------------------------------------------------------------
; EOF