-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathgrid.ts
168 lines (150 loc) · 4.18 KB
/
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
import type { Constructor, TypedArrayConstructors } from "./utility-types.ts";
import { getLog2 } from "./utilities.ts";
/**
* Creates a Grid class extending a given Array-like class.
*/
export function GridMixin<
ItemType = number,
U extends Constructor<Array<ItemType>> | TypedArrayConstructors = Constructor<
Array<ItemType>
>,
>(Base: U) {
/**
* Extends built-in indexed collections to handle 2 dimensional data.
*/
return class Grid extends Base {
[key: number]: ItemType;
size = 0;
static get [Symbol.species]() {
return Base;
}
/**
* Number of columns in the grid.
*/
get columns() {
return 1 << this.size;
}
/**
* Specifies the number of columns of the grid.
*/
set columns(columns) {
this.size = getLog2(columns);
}
/**
* Number of rows in the grid.
*/
get rows() {
//@ts-ignore 2339
return this.length >> this.size;
}
/**
* Creates a grid of specified dimensions.
*
* @param rows the amount of rows
* @param columns the amount of columns
* @return a new grid
*/
static create<T extends typeof Grid>(
this: T,
rows: number,
columns = 1,
): InstanceType<T> {
const offset = getLog2(columns);
const length = rows << offset;
const grid = new this(length);
grid.size = offset;
return grid as InstanceType<T>;
}
/**
* Creates a grid from an array of arrays.
*
* @param arrays the array of arrays
* @return a new grid
*/
static fromArrays<T extends typeof Grid>(
this: T,
arrays: Array<Array<ItemType>>,
): InstanceType<T> {
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;
}
const offset = getLog2(columns);
columns = 1 << offset;
// create grid of the required length
const grid = this.create(rows, columns);
// fill the grid with values from arrays
for (let i = 0; i < rows; i++) {
const rowId = i << offset;
for (let j = 0; j < arrays[i].length; j++) {
grid[rowId + j] = arrays[i][j];
}
}
return grid;
}
/**
* Returns the length of the underlying Array required to hold the 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);
}
getCoordinates(index: number): [row: number, column: number] {
return [index >> this.size, index & ((1 << this.size) - 1)];
}
/**
* Returns the index of an element at given coordinates.
*
* @param rows the row index
* @param columns the column index
* @return the element index
*/
getIndex(row: number, column = 1): number {
return (row << this.size) + column;
}
/**
* Returns the element at given coordinates.
*
* @param rows the row index
* @param columns the column index
* @return the element
*/
getValue(row: number, column: number): ItemType {
return this[this.getIndex(row, column)];
}
/**
* Sets the element at given coordinates.
*
* @param rows the row index
* @param columns the column index
* @param value the element
* @return the grid
*/
setValue(row: number, column: number, value: ItemType): this {
this[this.getIndex(row, column)] = value;
return this;
}
/**
* Creates an array of arrays representing rows of the grid.
*
* @return an array of arrays
*/
toArrays(): Array<Array<ItemType>> {
const { rows, columns, size } = this;
const result: Array<Array<ItemType>> = [];
for (let i = 0; i < rows; i++) {
const rowOffset = i << size;
result[i] = [];
for (let j = 0; j < columns; j++) {
result[i][j] = this[rowOffset + j];
}
}
return result;
}
};
}