-
Notifications
You must be signed in to change notification settings - Fork 2
/
map.tin
330 lines (293 loc) · 15.1 KB
/
map.tin
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun map-create (n1 n2) net map-create)
(defnet map-create (n1 n2 @map)
(deflocal a1 a2)
(integerp n1)
(>= n1 1)
(integerp n2)
(>= n2 1)
(set a1 (array 3))
(set <a1 0> 1)
(set <a1 1> n1)
(set a2 (array 3))
(set <a2 0> 1)
(set <a2 1> n2)
(set @map (cons (array default a1 1)
(array default a2 1) )))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun map-max1 (m)
(map-max-low (car (match-map m))) )
(defun map-max2 (m)
(map-max-low (cdr (match-map m))) )
(defun map-max-low (map)
<map -1 1> )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun map-free1 (m)
(map-free-low (map-undef1 m)) )
(defun map-free2 (m)
(map-free-low (map-undef2 m)) )
(defun map-free-low (u) net map-free-low)
(defnet map-free-low (u @n)
(deflocal ut)
(set @n 0)
(while (> (length u) 0) do
(set ut (queue-get u))
(inc @n (- <ut 1> <ut 0> -1)) ))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet map-bind (m p q n)
(array-append (match-map-step m) (list p q n))
(set m (match-map m))
(map-bind-low (car m) p q n)
(map-bind-low (cdr m) q p n) )
(defnet map-bind-low (map p q n)
(deflocal i j a aa freea freeb found)
(for i in 0 .. (- (length map) 1) do
(set a <map i>)
(set freea <a 0>)
(set freeb <a 1>)
(set found (in p freea .. freeb))
until found )
(truep found)
(= <a 2> undef)
(set j (+ p n -1))
(in j freea .. freeb)
(if (> p freea)
then (set aa (array 3))
(set <aa 0> freea)
(set <aa 1> (- p 1))
(array-insert map i aa)
(inc i) )
(if (< j freeb)
then (set aa (array 3))
(set <aa 0> (+ j 1))
(set <aa 1> freeb)
(array-insert map (+ i 1) aa) )
(set <a 0> p)
(set <a 1> j)
(set <a 2> q)
(if (and (> i 0)
(= p freea)
(= (- <map (- i 1) 2> <map (- i 1) 0>)
(- q p) ))
then (array-remove map i)
(inc i -1)
(set a <map i>)
(set <a 1> j)
(set p <a 0>)
(set q <a 2>) )
(if (and (= j freeb)
(= (- <map (+ i 1) 2> <map (+ i 1) 0>)
(- q p) ))
then (set <a 1> <map (+ i 1) 1>)
(array-remove map (+ i 1)) ))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun map-undef1 (m)
(map-undef-low (car (match-map m)) (cdr (match-map m))) )
(defun map-undef2 (m)
(map-undef-low (cdr (match-map m)) (car (match-map m))) )
(defun map-undef-low (map1 map2)
(map-undef-low-low map1 map2 false) )
(defun map-undef-low-low (map1 map2 also-empty) net map-undef-low-low)
(defnet map-undef-low-low (map1 map2 also-empty @q)
(deflocal i a min max)
(set @q (queue))
(set min 1)
(for i in 1 .. (length map1) do
(set a <map1 (for-pos)>)
(if (= <a 2> undef)
then (set max (if (= i (length map1))
<map2 -1 1>
(- <map1 i 2> 1) ))
(if (or also-empty (<= min max))
then (queue-put @q (list <a 0> <a 1> min max)) )
else (set min (+ <a 2> <a 1> -<a 0> 1)) )))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun map-point1 (m p)
(map-point-low (car (match-map m)) p) )
(defun map-point2 (m p)
(map-point-low (cdr (match-map m)) p) )
(defun map-point-low (map p) net map-point-low)
(defnet map-point-low (map p @q)
(deflocal i a found)
(set found false)
(for i in 1 .. (length map) do
(set a <map (for-pos)>)
(if (in p <a 0> .. <a 1>)
then (set @q (+ <a 2> p -<a 0>))
(set found true) )
until found )
(= found true) )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defnet map-report (m)
(map-report-low (match-th-main m) (match-map m)
(match-name1 m) (match-name2 m)
(match-rx m) (match-ry m)
(length (match-cache m)) (match-passed m) true ))
(defnet map-report-low (target map name1 name2 rx ry nchecks npassed go-home)
(deflocal buf buf2 ab map-max1 map-max2 wrn1 wrn2 u ut a p1 p2 q prv freecnt diffcnt diff diffprv i)
(if (listp target)
then (set ab (cdr target))
(set target (car target)) )
(set map-max1 (map-max-low (car map)))
(set map-max2 (map-max-low (cdr map)))
(set buf (iup-text-buffer))
(set buf2 (iup-text-buffer))
(map-report-print (cons "p1" (+
"(1) " name1 nl
"(2) " name2 nl
nl
"free (1): " (map-free-low (map-undef-low (car map) (cdr map))) "/" map-max1 nl
"free (2): " (map-free-low (map-undef-low (cdr map) (car map))) "/" map-max2 nl
nl
$"checks: " nchecks $" (passed: " npassed ")" nl
(if (= rx undef) "" (+
$"horizontal ratio: " (approx3 rx) nl ))
(if (= ry undef) "" (+
$"vertical ratio: " (approx3 ry) nl )))) buf )
(set wrn1 (queue))
(set wrn2 (queue))
(set u (map-undef-low (car map) (cdr map)))
(set ut (queue-get u))
(set map (car map))
(set freecnt 0)
(set diffcnt 0)
(for i in 1 .. (length map) do
(set a <map (for-pos)>)
(set p1 <a 0>)
(set p2 <a 1>)
(set q <a 2>)
(if (= q undef)
then (if (and (= p1 <ut 0>) (= p2 <ut 1>))
then (map-report-print-range p1 p2 (red) (blue) buf2)
(map-report-print (cons "p1c" (cons (red) (+ " -/-> ???" " {" (- p2 p1 -1) "-" (- <ut 3> <ut 2> -1) "}" nl))) buf2)
(if (arrayp ab)
then (array-append ab (list p1 <ut 2> 0) (list p2 <ut 3> 0)) )
(set ut (queue-get u))
(inc freecnt)
else (queue-put wrn1 (list p1 p2 (if (= prv undef) 0 prv))) )
(clr prv)
else (if (integerp prv)
then (queue-put wrn2 (list (+ prv 1) (- q 1) (- p1 1))) )
(set prv (+ q p2 -p1))
(set diff (- q p1))
(if (integerp diffprv)
then (if (<> diff diffprv)
then (inc diffcnt) ))
(set diffprv diff)
(map-report-print-range p1 p2 (darkgreen) (blue) buf2)
(map-report-print (cons "p1c" (cons (darkgreen) (+ " ---> ["
(int->str q 6 '0') "-" (int->str prv 6 '0') "] {"
(int->str (- p2 p1 -1) 6 '0') "} (diff=" diff ")" nl))) buf2 )
(if (arrayp ab)
then (if (= p1 p2)
then (array-append ab (list p1 q 3))
else (array-append ab (list p1 q 1) (list p2 prv 2)) ))
(if (and (= i 1) (= p1 1) (> q 1))
then (queue-put wrn2 (list 1 (- q 1) 0)) )
(if (and (= i (length map)) (= p2 map-max1) (< (+ q p2 -p1) map-max2))
then (queue-put wrn2 (list (+ q p2 -p1 1) map-max2 map-max1)) )))
(if (> (length wrn1) 0)
then (map-report-print (cons "p1" $"\n1st movie frame(s) not found in the 2nd one:\n") buf2)
(map-report-diff wrn1 buf2 0) )
(if (> (length wrn2) 0)
then (map-report-print (cons "p1" $"\n2nd movie frame(s) not found in the 1st one:\n") buf2)
(map-report-diff wrn2 buf2 1) )
(map-report-print (cons "p1" (+ "internal diff: " diffcnt nl
"free segm: " freecnt nl
nl )) buf )
(iup-text-buffer-cat buf buf2)
(if (arrayp ab)
then (gui-text1-hack true)
(set target <_kv "text1">)
(iup-text-buffer-flush buf target)
(if go-home
then (iup-set-int target "CARETPOS" 0)
else (gui-text1-hack-post) )
else (sendbuf 100 (cons "bf1" buf) to target)
(if go-home
then (sendbuf 100 [ "h1" . undef ] to target) )))
(defnet map-report-diff (wrn buf which)
(deflocal i)
(while (> (length wrn) 0) do
(set i (queue-get wrn))
(map-report-print-range <i 0> <i 1> (black) (blue) buf)
(map-report-print (cons "p1" (+ <[ "¹" "²" ] which> "---> [" (int->str <i 2> 6 '0') "] {"
(- <i 1> <i 0> -1) "}" nl )) buf )))
(defnet map-report-print-range (p1 p2 color1 color2 buf)
(map-report-print (cons "p1c" (cons color1 "[")) buf)
(map-report-print (cons "p1c" (cons color2 (int->str p1 6 '0'))) buf)
(map-report-print (cons "p1c" (cons color1 "-")) buf)
(map-report-print (cons "p1c" (cons color2 (int->str p2 6 '0'))) buf)
(map-report-print (cons "p1c" (cons color1 "]")) buf) )
(defnet map-report-print (msg buf)
(deflocal req)
(set req (car msg))
(set msg (cdr msg))
(case req of
"p1" (iup-text-buffer-append buf msg)
"p1c" (iup-text-buffer-append-color buf (car msg) (cdr msg)) ))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;