-
Notifications
You must be signed in to change notification settings - Fork 21
/
binary-grid.ts
149 lines (133 loc) · 3.8 KB
/
binary-grid.ts
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
import type { Bit } from "./utility-types.ts";
import { getLog2 } from "./utilities.ts";
/**
* Implements a grid or 2D matrix of bits.
*/
export class BinaryGrid extends Uint32Array {
size = 0;
static get [Symbol.species](): Uint32ArrayConstructor {
return Uint32Array;
}
/**
* Number of columns in the grid.
*/
get columns(): number {
return 1 << this.size;
}
/**
* Specifies the number of columns of the grid.
*/
set columns(columns: number) {
this.size = getLog2(columns);
}
/**
* Number of rows in the grid.
*/
get rows(): number {
return (this.length << 5) >> this.size;
}
/**
* Creates a binary grid of specified dimensions.
*
* @param rows the amount of rows
* @param columns the amount of columns
* @return a new binary grid
*/
static create(rows: number, columns = 1): BinaryGrid {
const offset = getLog2(columns);
const length = (rows << offset) >> 5;
const grid = new this(length || 1);
grid.size = offset;
return grid;
}
/**
* Creates a new binary grid from an array of arrays representing rows and item value of the grid.
*
* @param arrays the array of arrays
* @return a new binary grid
*/
static fromArrays(arrays: Array<Array<Bit>>): BinaryGrid {
const rows = arrays.length;
// find longest array to get the column size
let columns = arrays[0].length; // if !arrays[0].length
for (let i = 0; i < rows; i++) {
if (arrays[i].length > columns) columns = arrays[i].length;
}
// create grid of the required length
const grid = this.create(rows, columns);
grid.size = getLog2(columns);
// fill the grid with values from arrays
for (let i = 0; i < rows; i++) {
for (let j = 0; j < arrays[i].length; j++) {
grid.setValue(i, j, arrays[i][j]);
}
}
return grid;
}
/**
* Returns the length of the underlying TypedArray required to hold a grid of specified dimensions.
*
* @param rows the amount of rows
* @param columns the amount of columns
* @return the required length
*/
static getLength(rows: number, columns = 1): number {
return (rows << getLog2(columns)) >> 5;
}
getCoordinates(row: number, column = 1): [bucket: number, position: number] {
const index = (row << this.size) + column;
const bucket = index >> 5;
return [bucket, index - (bucket << 5)];
}
/**
* Returns the index of an item holding the bit at given coordinates.
*
* @param rows the row index
* @param columns the column index
* @return the item index
*/
getIndex(row: number, column = 1): number {
const index = (row << this.size) + column;
return index >> 5;
}
/**
* Returns the bit at given coordinates.
*
* @param rows the row index
* @param columns the column index
* @return the bit
*/
getValue(row: number, column: number): Bit {
const [bucket, position] = this.getCoordinates(row, column);
return ((this[bucket] >> position) & 1) as Bit;
}
/**
* Sets the bit at given coordinates.
*
* @param rows the row index
* @param columns the column index
* @param value the bit
* @return the grid
*/
setValue(row: number, column: number, value: Bit = 1): this {
const [bucket, position] = this.getCoordinates(row, column || 0);
this[bucket] = (this[bucket] & ~(1 << position)) | (value << position);
return this;
}
/**
* Creates an array of arrays representing rows of the grid.
*
* @return an array of arrays
*/
toArrays(): Array<Array<Bit>> {
const { rows, columns } = this;
const result: Array<Array<Bit>> = new Array(rows);
for (let i = 0; i < rows; i++) {
result[i] = new Array(columns);
for (let j = 0; j < columns; j++) {
result[i][j] = this.getValue(i, j);
}
}
return result;
}
}