@@ -2,6 +2,10 @@ import generateTiledJSON from './util/generateTiledJSON.js'; // Exports to Tiled
2
2
import Mersenne from './util/mersenne.js' ; // Randomness
3
3
import noise from './util/noise.js' ; // Perlin Noise
4
4
5
+ import getTileAt from './TileMap/getTileAt.js' ;
6
+ import transform from './TileMap/transform.js' ;
7
+ import query from './TileMap/query.js' ;
8
+
5
9
export default class TileMap {
6
10
constructor ( { x = 0 , y = 0 , width = 16 , height = 16 , depth = 1 , tileWidth = 16 , tileHeight = 16 , is3D = false } = { } ) {
7
11
this . x = x ;
@@ -16,7 +20,12 @@ export default class TileMap {
16
20
this . Noise = new noise ( ) ;
17
21
this . noise = this . Noise . noise ;
18
22
this . seedNoise = this . Noise . noiseSeed ;
23
+ this . transform = transform . bind ( this ) ;
24
+ this . query = query . bind ( this ) ;
25
+ this . getTileAt = getTileAt . bind ( this ) ;
19
26
this . data = this . initializeDataArray ( ) ;
27
+ this . tileSet = [ ] ;
28
+
20
29
// ASCII representations for tiles 0-10
21
30
// TODO: Is there a better default set of ASCII characters we can use?
22
31
this . defaultRogueLike = [ '-' , '#' , '+' , '0' , '<' , '>' , '$' , '⌂' , '@' , '&' , '?' ] ;
@@ -155,14 +164,6 @@ export default class TileMap {
155
164
}
156
165
}
157
166
158
- getTileAt ( x , y , z ) {
159
- if ( this . is3D ) {
160
- return this . data [ z ] [ y * this . width + x ] ;
161
- } else {
162
- return this . data [ y * this . width + x ] ;
163
- }
164
- }
165
-
166
167
toJSON ( ) {
167
168
return JSON . stringify ( {
168
169
width : this . width ,
@@ -177,50 +178,6 @@ export default class TileMap {
177
178
return generateTiledJSON ( this ) ;
178
179
}
179
180
180
- query ( { x, y, width, height, z, tileName } = { } ) {
181
- let results = [ ] ;
182
-
183
- if ( x !== undefined && y !== undefined && width !== undefined && height !== undefined ) {
184
- for ( let offsetY = 0 ; offsetY < height ; offsetY ++ ) {
185
- for ( let offsetX = 0 ; offsetX < width ; offsetX ++ ) {
186
- const queryX = x + offsetX ;
187
- const queryY = y + offsetY ;
188
-
189
- if ( queryX >= this . width || queryY >= this . height ) {
190
- results . push ( undefined ) ; // Add undefined for out-of-bounds indices
191
- } else {
192
- const index = queryY * this . width + queryX ; // Calculate the correct index in the 1D array
193
- if ( this . is3D ) {
194
- if ( z !== undefined && this . data [ z ] && this . data [ z ] [ index ] !== undefined ) {
195
- results . push ( this . data [ z ] [ index ] ) ;
196
- } else {
197
- results . push ( undefined ) ;
198
- }
199
- } else {
200
- if ( this . data [ index ] !== undefined ) {
201
- results . push ( this . data [ index ] ) ;
202
- } else {
203
- results . push ( undefined ) ;
204
- }
205
- }
206
- }
207
- }
208
- }
209
- }
210
-
211
- // create a new TileMap instance from the results
212
- let subsection = new TileMap ( {
213
- width,
214
- height,
215
- is3D : this . is3D
216
- } ) ;
217
-
218
- subsection . data = results ;
219
-
220
- return subsection ;
221
- } ;
222
-
223
-
224
181
// query3D is WIP - not fully implemented yet, see: ./test/tilemap-query-test.js
225
182
query3D ( { x, y, z, width, height, depth, tileName } = { } ) {
226
183
let results = [ ] ;
0 commit comments