Source file cell_occupancy.ml
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
open Geometry
type cell_occupancy_state =
| Unoccupied
| DefinitelyPlaced
| AutoPlaced
type t = {
mutable inner : cell_occupancy_state array array;
mutable columns : Grid_track_counts.t;
mutable rows : Grid_track_counts.t;
}
let with_track_counts columns rows =
let col_count = Grid_track_counts.len columns in
let row_count = Grid_track_counts.len rows in
let inner = Array.make_matrix row_count col_count Unoccupied in
{ inner; columns; rows }
let row_count t = Array.length t.inner
let col_count t = if row_count t > 0 then Array.length t.inner.(0) else 0
let is_area_in_range t primary_axis primary_range secondary_range =
let open Absolute_axis in
let primary_start, primary_end = primary_range in
let secondary_start, secondary_end = secondary_range in
let primary_count =
match primary_axis with
| Horizontal -> col_count t
| Vertical -> row_count t
in
let secondary_count =
match primary_axis with
| Horizontal -> row_count t
| Vertical -> col_count t
in
primary_start >= 0
&& primary_end <= primary_count
&& secondary_start >= 0
&& secondary_end <= secondary_count
let expand_to_fit_range t row_range col_range =
let row_start, row_end = row_range in
let col_start, col_end = col_range in
let req_negative_rows = max (-row_start) 0 in
let req_positive_rows = max (row_end - row_count t) 0 in
let req_negative_cols = max (-col_start) 0 in
let req_positive_cols = max (col_end - col_count t) 0 in
let old_row_count = row_count t in
let old_col_count = col_count t in
let new_row_count = old_row_count + req_negative_rows + req_positive_rows in
let new_col_count = old_col_count + req_negative_cols + req_positive_cols in
let new_inner = Array.make_matrix new_row_count new_col_count Unoccupied in
for row = 0 to old_row_count - 1 do
for col = 0 to old_col_count - 1 do
new_inner.(row + req_negative_rows).(col + req_negative_cols) <-
t.inner.(row).(col)
done
done;
t.inner <- new_inner;
t.rows <-
{
t.rows with
negative_implicit = t.rows.negative_implicit + req_negative_rows;
positive_implicit = t.rows.positive_implicit + req_positive_rows;
};
t.columns <-
{
t.columns with
negative_implicit = t.columns.negative_implicit + req_negative_cols;
positive_implicit = t.columns.positive_implicit + req_positive_cols;
}
let mark_area_as t primary_axis primary_span secondary_span value =
let open Absolute_axis in
let row_span, column_span =
match primary_axis with
| Horizontal -> (secondary_span, primary_span)
| Vertical -> (primary_span, secondary_span)
in
let col_range =
Grid_track_counts.oz_line_range_to_track_range t.columns column_span
in
let row_range =
Grid_track_counts.oz_line_range_to_track_range t.rows row_span
in
let is_in_range = is_area_in_range t Horizontal col_range row_range in
let col_range, row_range =
if not is_in_range then (
expand_to_fit_range t row_range col_range;
let col_range =
Grid_track_counts.oz_line_range_to_track_range t.columns column_span
in
let row_range =
Grid_track_counts.oz_line_range_to_track_range t.rows row_span
in
(col_range, row_range))
else (col_range, row_range)
in
let row_start, row_end = row_range in
let col_start, col_end = col_range in
for row = row_start to row_end - 1 do
for col = col_start to col_end - 1 do
t.inner.(row).(col) <- value
done
done
let track_area_is_unoccupied t primary_axis primary_range secondary_range =
let open Absolute_axis in
let row_range, col_range =
match primary_axis with
| Horizontal -> (secondary_range, primary_range)
| Vertical -> (primary_range, secondary_range)
in
let row_start, row_end = row_range in
let col_start, col_end = col_range in
try
for row = row_start to row_end - 1 do
for col = col_start to col_end - 1 do
if row >= 0 && row < row_count t && col >= 0 && col < col_count t then
match t.inner.(row).(col) with Unoccupied -> () | _ -> raise Exit
done
done;
true
with Exit -> false
let track_counts t track_type =
let open Absolute_axis in
match track_type with Horizontal -> t.columns | Vertical -> t.rows
let row_is_occupied t row_index =
if row_index >= row_count t then false
else
try
for col = 0 to col_count t - 1 do
match t.inner.(row_index).(col) with
| Unoccupied -> ()
| _ -> raise Exit
done;
false
with Exit -> true
let line_area_is_unoccupied t primary_axis primary_span secondary_span =
let primary_range =
Grid_track_counts.oz_line_range_to_track_range
(track_counts t primary_axis)
primary_span
in
let secondary_range =
Grid_track_counts.oz_line_range_to_track_range
(track_counts t (Absolute_axis.other primary_axis))
secondary_span
in
track_area_is_unoccupied t primary_axis primary_range secondary_range
let column_is_occupied t column_index =
if column_index >= col_count t then false
else
try
for row = 0 to row_count t - 1 do
match t.inner.(row).(column_index) with
| Unoccupied -> ()
| _ -> raise Exit
done;
false
with Exit -> true
let last_of_type t track_type start_at kind =
let open Absolute_axis in
let track_counts = track_counts t (other track_type) in
let track_computed_index =
Grid_track_counts.oz_line_to_next_track track_counts start_at
in
if
track_computed_index < 0
|| track_computed_index
>=
match track_type with
| Horizontal -> row_count t
| Vertical -> col_count t
then None
else
let rec search_backwards idx =
if idx < 0 then None
else
let cell =
match track_type with
| Horizontal -> t.inner.(track_computed_index).(idx)
| Vertical -> t.inner.(idx).(track_computed_index)
in
if cell = kind then
Some (Grid_track_counts.track_to_prev_oz_line track_counts idx)
else search_backwards (idx - 1)
in
let max_idx =
match track_type with
| Horizontal -> col_count t - 1
| Vertical -> row_count t - 1
in
search_backwards max_idx
let to_string t =
let buf = Buffer.create 256 in
Printf.bprintf buf "Rows: neg_implicit=%d explicit=%d pos_implicit=%d\n"
t.rows.negative_implicit t.rows.explicit t.rows.positive_implicit;
Printf.bprintf buf "Cols: neg_implicit=%d explicit=%d pos_implicit=%d\n"
t.columns.negative_implicit t.columns.explicit t.columns.positive_implicit;
Buffer.add_string buf "State:\n";
for row = 0 to row_count t - 1 do
for col = 0 to col_count t - 1 do
let letter =
match t.inner.(row).(col) with
| Unoccupied -> '_'
| DefinitelyPlaced -> 'D'
| AutoPlaced -> 'A'
in
Buffer.add_char buf letter
done;
Buffer.add_char buf '\n'
done;
Buffer.contents buf