-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfindpath.asm
419 lines (340 loc) · 9.98 KB
/
findpath.asm
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
;**************************************************************************
; build a simple distance map with a recursive search
;**************************************************************************
conflit xor a : ret
findpath
ld hl,depmap+16 : xor a
.razdep
ld (hl),a : inc l : ld (hl),a : inc l
ld (hl),a : inc l : ld (hl),a : inc l
ld (hl),a : inc l : ld (hl),a : inc l
ld (hl),a : inc l : ld (hl),a : inc l
jr nz,.razdep
ld hl,zeback+8*16
ld a,(hl)
and #FE
jr nz,conflit ; pas de tour au point de depart, merci!
ld (hl),0
ld hl,zeback+8*16+15
ld a,(hl)
and #FE
jr nz,conflit ; pas de tour au point d'arrivee, merci!
ld (hl),0
ld hl,zeback
ld de,zeback+16
ld hl,zemap+16
ld bc,#FF00
.tomap
ld a,(de) : inc e : or a : jr z,.mapreset : ld (hl),b : inc l : ld a,(de) : inc e : or a : jr z,.mapreset2 : ld (hl),b : inc l : jr nz,.tomap
jr .build_path
.mapreset
ld (hl),c : inc l : ld a,(de) : inc e : or a : jr z,.mapreset2 : ld (hl),b : inc l : jr nz,.tomap
jr .build_path
.mapreset2
ld (hl),c : inc l : jr nz,.tomap
; parcours de la map comme une onde
.build_path
ld ix,scantmp1
ld (ix+0),0
ld (ix+1),8
ld (ix+3),0 ; never 0
ld a,1
ld (zemap+8*16),a
inc a
ld yl,a
.loopscan
ld ix,scantmp1
ld hl,scantmp2
call .scanmap : inc yl : inc l : ld (hl),a : dec l
ld a,l : or a : jp z,path_optimal
ld ix,scantmp2
ld hl,scantmp1
call .scanmap : inc yl : inc l : ld (hl),a : dec l ; scanmap returns with A=0
ld a,l : or a : jr nz,.loopscan
jp path_optimal
;de=map
;ix=table input
;hl=table output
;yl=life
.scanmap
ld a,(ix+1) : or a : ret z : ld c,a : ld b,(ix+0) : inc lx : inc lx
; construire le DE
ld a,b : and #F : ld e,a : ld a,c : rrca : rrca : rrca : rrca : and #F0 : or e : ld e,a : ld d,hi(zemap)
ld a,b : cp 15 : jr z,.buteegauche
inc e : ld a,(de) : dec e
or a : jr nz,.buteegauche
inc e : ld a,yl : ld (de),a : dec e
inc b : ld (hl),b : dec b : inc l : ld (hl),c : inc l
.buteegauche
ld a,b : or a : jr z,.buteedroite
dec e : ld a,(de) : inc e
or a : jr nz,.buteedroite
dec e : ld a,yl : ld (de),a : inc e
dec b : ld (hl),b : inc b : inc l : ld (hl),c : inc l
.buteedroite
ld a,c : cp 15 : jr z,.buteebasse
ld a,e : exa : ld a,e : add 16 : ld e,a : ld a,(de) : exa : ld e,a : exa
or a : jr nz,.buteebasse
ld a,e : exa : ld a,e : add 16 : ld e,a : ld a,yl : ld (de),a : exa : ld e,a
ld (hl),b : inc l : inc c : ld (hl),c : dec c : inc l
.buteebasse
ld a,c : cp 1 : jr z,.scanmap
ld a,e : sub 16 : ld e,a : ld a,(de)
or a : jr nz,.scanmap
ld a,yl : ld (de),a
ld (hl),b : inc l : dec c : ld (hl),c : inc l
jp .scanmap
;****************************************************************
; create directions for optimal path
;****************************************************************
path_optimal
ld hl,zemap+8*16+15
ld a,(hl)
or a
ret z
inc a
ret z
ld b,15
ld c,8
ld hl,zemap+15+8*16
ld e,(hl) ; valeur de sortie
ADROITE=1
AGAUCHE=2
ENBAS =3
ENHAUT =4
inc h : ld (hl),ADROITE
dec h
.reloop
dec e
jp z,path_escape
.retry ld a,r : add e : xor e : and #1F : add a : exx : ld hl,.jumporder : add l : ld l,a : ld a,(hl) : inc hl : ld h,(hl) : ld l,a : jp (hl)
.testdroite ld a,b : or a : ret z
dec l : ld a,(hl) : inc l : cp e : ret nz
dec b : dec l : inc h : ld (hl),ADROITE : dec h : pop af : jr .reloop
.testbas ld a,c : cp 1 : ret z
ld d,l : ld a,-16 : add l : ld l,a : ld a,(hl) : ld l,d : cp e : ret nz
ld a,-16 : add l : ld l,a : dec c : inc h : ld (hl),ENBAS : dec h : pop af : jr .reloop
.testhaut ld a,c : cp 15 : ret z
ld d,l : ld a,16 : add l : ld l,a : ld a,(hl) : ld l,d : cp e : ret nz
ld a,16 : add l : ld l,a : inc c : inc h : ld (hl),ENHAUT : dec h : pop af : jr .reloop
.testgauche ld a,b : cp 15 : ret z
inc l : ld a,(hl) : dec l : cp e : ret nz
inc b : inc l : inc h : ld (hl),AGAUCHE : dec h : pop af : jr .reloop
confine 64
.jumporder
repeat 32,cbn
defw .combi{cbn-1}
rend
.combi24 : .combi25 : .combi26 : .combi27 : .combi28 : .combi29 : .combi30 : .combi31 : exx : jp .retry
;*******************************************************************************
; reverse search for optimal path use some randomness to be less predictable
;*******************************************************************************
cbn=0
.combi{cbn}
cbn+=1
exx : call .testdroite : call .testgauche : call .testbas : call .testhaut
.combi{cbn}
cbn+=1
exx : call .testdroite : call .testgauche : call .testhaut : call .testbas
.combi{cbn}
cbn+=1
exx : call .testdroite : call .testhaut : call .testbas : call .testgauche
.combi{cbn}
cbn+=1
exx : call .testdroite : call .testhaut : call .testgauche : call .testbas
.combi{cbn}
cbn+=1
exx : call .testdroite : call .testbas : call .testgauche : call .testhaut
.combi{cbn}
cbn+=1
exx : call .testdroite : call .testbas : call .testhaut : call .testgauche
.combi{cbn}
cbn+=1
exx : call .testbas : call .testdroite : call .testgauche : call .testhaut
.combi{cbn}
cbn+=1
exx : call .testbas : call .testdroite : call .testhaut : call .testgauche
.combi{cbn}
cbn+=1
exx : call .testbas : call .testhaut : call .testgauche : call .testdroite
.combi{cbn}
cbn+=1
exx : call .testbas : call .testhaut : call .testdroite : call .testgauche
.combi{cbn}
cbn+=1
exx : call .testbas : call .testgauche : call .testdroite : call .testhaut
.combi{cbn}
cbn+=1
exx : call .testbas : call .testgauche : call .testhaut : call .testdroite
.combi{cbn}
cbn+=1
exx : call .testgauche : call .testdroite : call .testbas : call .testhaut
.combi{cbn}
cbn+=1
exx : call .testgauche : call .testdroite : call .testhaut : call .testbas
.combi{cbn}
cbn+=1
exx : call .testgauche : call .testhaut : call .testbas : call .testdroite
.combi{cbn}
cbn+=1
exx : call .testgauche : call .testhaut : call .testdroite : call .testbas
.combi{cbn}
cbn+=1
exx : call .testgauche : call .testbas : call .testdroite : call .testhaut
.combi{cbn}
cbn+=1
exx : call .testgauche : call .testbas : call .testhaut : call .testdroite
.combi{cbn}
cbn+=1
exx : call .testhaut : call .testdroite : call .testbas : call .testgauche
.combi{cbn}
cbn+=1
exx : call .testhaut : call .testdroite : call .testgauche : call .testbas
.combi{cbn}
cbn+=1
exx : call .testhaut : call .testgauche : call .testbas : call .testdroite
.combi{cbn}
cbn+=1
exx : call .testhaut : call .testgauche : call .testdroite : call .testbas
.combi{cbn}
cbn+=1
exx : call .testhaut : call .testbas : call .testdroite : call .testgauche
.combi{cbn}
cbn+=1
exx : call .testhaut : call .testbas : call .testgauche : call .testdroite
;****************************************************************
; create all escape path
;****************************************************************
path_escape
ld hl,zemap+16
ld c,15 : ld e,l ; E=16
; ligne du haut
ld b,e
.loopx_haut
ld h,hi(deptmp) : ld (hl),0
ld h,hi(zemap) : ld a,(hl) : inc a : jr z,.loopnext_haut : inc h /* depmap */ : ld a,(hl) : or a : call z,.escape_generic
.loopnext_haut
inc l
djnz .loopx_haut
dec c
.loopy
ld b,e
ld h,hi(deptmp) : ld (hl),0
ld h,hi(zemap) : ld a,(hl) : inc a : jr z,.loopxprep : inc h /* depmap */ : ld a,(hl) : or a : call z,.escape_generic
.loopxprep
inc l : dec b
.loopx
ld h,hi(deptmp) : ld (hl),0
ld h,hi(zemap) : ld a,(hl) : inc a : jr z,.loopnext : inc h /* depmap */ : ld a,(hl) : or a : call z,.escape_notest
.loopnext
inc l
dec b
ld a,1
cp b
jr nz,.loopx
ld h,hi(deptmp) : ld (hl),0
ld h,hi(zemap) : ld a,(hl) : inc a : jr z,.loopxprep2 : inc h /* depmap */ : ld a,(hl) : or a : call z,.escape_generic
.loopxprep2
inc l
dec c
ld a,1
cp c
jr nz,.loopy
; ligne du bas
ld b,e ; Xloop=16 C=1
.loopx_bas
ld h,hi(deptmp) : ld (hl),0
ld h,hi(zemap) : ld a,(hl) : inc a : jr z,.loopnext_bas : inc h /* depmap */ : ld a,(hl) : or a : call z,.escape_generic
.loopnext_bas
inc l
djnz .loopx_bas
jp .one_pass_done
.escape_generic
ld a,c : dec a : jr z,.noyb
ld d,l : ld a,e : add l : ld l,a : ld a,(hl) :ld l,d : or a : jr z,.noyb
inc h : ld (hl),ENBAS : ret
.noyb
ld a,c : cp 15 : jr z,.noyh
ld d,l : ld a,l : sub e : ld l,a : ld a,(hl) :ld l,d : or a : jr z,.noyh
inc h : ld (hl),ENHAUT : ret
.noyh
ld a,b : dec a : jr z,.noxd
inc l : ld a,(hl) : dec l : or a : jr z,.noxd
inc h : ld (hl),ADROITE : ret
.noxd
ld a,b : cp e : ret z
dec l : ld a,(hl) : inc l : or a : ret z
inc h : ld (hl),AGAUCHE
ret
.escape_notest
ld d,l : ld a,l : add e : ld l,a : ld a,(hl) :ld l,d : or a : jr z,.shortnoyb
inc h : ld (hl),ENBAS : ret
.shortnoyb
ld d,l : ld a,l : sub e : ld l,a : ld a,(hl) :ld l,d : or a : jr z,.shortnoyh
inc h : ld (hl),ENHAUT : ret
.shortnoyh
inc l : ld a,(hl) : dec l : or a : jr z,.shortnoxd
inc h : ld (hl),ADROITE : ret
.shortnoxd
dec l : ld a,(hl) : inc l : or a : ret z
inc h : ld (hl),AGAUCHE
ret
.one_pass_done
;************************
; blend new dep with dep
;************************
ld hl,deptmp+16
ld d,hi(depmap)
ld b,1
xor a
.reloop
cp (hl) : call nz,.blend : inc l : cp (hl) : call nz,.blend : inc l
cp (hl) : call nz,.blend : inc l : cp (hl) : call nz,.blend : inc l
jr nz,.reloop
;
dec b
jp nz,path_escape ; need another iteration!
ld hl,zeback+8*16
ld (hl),1
ld hl,zeback+8*16+15
ld (hl),1
;*************************************************
; check for prisonners BUT flyers
;*************************************************
ld ix,MYENNEMY
ld a,(ennemy.pcpt) : or a : jr z,.path_ok : ld yl,a
ld bc,SIZE_ENNEMY
ld de,#FF0
ld h,hi(depmap)
.check_prisonners
ld a,(ix+5) : cp hi(spr_flyer) : jr z,.nonono
ld a,(ix+0) : rrca : rrca : rrca : rrca : and d : ld l,a : ld a,(ix+1) : and e : or l : ld l,a
ld a,(hl) : or a : ret z ; findpath KO !
.nonono
add ix,bc
dec yl
jr nz,.check_prisonners
;*****************************************
; force unused borders
;*****************************************
; ligne 1 et colonne 15 superieure
ld l,#10
ld b,15
.enforce_exit
ld a,(hl) : or a : jr nz,.enforce_next
ld (hl),AGAUCHE
.enforce_next
inc l
djnz .enforce_exit
ld bc,#710
.enforce_exit2
ld a,(hl) : or a : jr nz,.enforce_next2
ld (hl),ENBAS
.enforce_next2
ld a,l : add c : ld l,a
djnz .enforce_exit2
.path_ok
ld a,1 : or a
ret
.blend ld e,l : ld a,(hl) : ld (de),a : xor a : ld b,a : ret
;save"find.bin",#8000,$-#8000,DSK,"findpath.dsk"