@@ -18,7 +18,10 @@ import { TileCache, drawPixelsFromLineOfTile, getTileDataAddress } from './tiles
18
18
import { eightBitLoadFromGBMemory } from '../memory/load' ;
19
19
import { Memory } from '../memory/memory' ;
20
20
import { hexLog , checkBitOnByte , setBitOnByte , resetBitOnByte } from '../helpers/index' ;
21
- import { u8Portable } from '../portable/portable' ;
21
+ import { u8Portable , i32Portable } from '../portable/portable' ;
22
+
23
+ // NOTE: i32Portable wraps modulo here as somehow it gets converted to a double:
24
+ // https://github.com/torch2424/wasmboy/issues/216
22
25
23
26
export function renderBackground ( scanlineRegister : i32 , tileDataMemoryLocation : i32 , tileMapMemoryLocation : i32 ) : void {
24
27
// NOTE: Camera is reffering to what you can see inside the 160x144 viewport of the entire rendered 256x256 map.
@@ -67,7 +70,9 @@ export function renderWindow(scanlineRegister: i32, tileDataMemoryLocation: i32,
67
70
let pixelYPositionInMap : i32 = scanlineRegister - windowY ;
68
71
69
72
// xOffset is simply a neagative window x
70
- let xOffset : i32 = - 1 * windowX ;
73
+ // NOTE: This can become negative zero?
74
+ // https://github.com/torch2424/wasmboy/issues/216
75
+ let xOffset : i32 = i32Portable ( - 1 * windowX ) ;
71
76
72
77
// Draw the Background scanline
73
78
drawBackgroundWindowScanline ( scanlineRegister , tileDataMemoryLocation , tileMapMemoryLocation , pixelYPositionInMap , windowX , xOffset ) ;
@@ -203,7 +208,7 @@ function drawMonochromePixelFromTileId(
203
208
// yPixel = 144. 144 % 8 = 0.
204
209
// 0 Represents last line of pixels in a tile, 1 represents first. 1 2 3 4 5 6 7 0.
205
210
// Because remember, we are counting lines on the display NOT including zero
206
- let pixelYInTile : i32 = pixelYPositionInMap % 8 ;
211
+ let pixelYInTile : i32 = i32Portable ( pixelYPositionInMap % 8 ) ;
207
212
208
213
// Remember to represent a single line of 8 pixels on a tile, we need two bytes.
209
214
// Therefore, we need to times our modulo by 2, to get the correct line of pixels on the tile.
@@ -217,7 +222,7 @@ function drawMonochromePixelFromTileId(
217
222
// Therefore, is pixelX was 2, then really is need to be 5
218
223
// So 2 - 7 = -5, * 1 = 5
219
224
// Or to simplify, 7 - 2 = 5 haha!
220
- let pixelXInTile : i32 = pixelXPositionInMap % 8 ;
225
+ let pixelXInTile : i32 = i32Portable ( pixelXPositionInMap % 8 ) ;
221
226
pixelXInTile = 7 - pixelXInTile ;
222
227
223
228
// Now we can get the color for that pixel
@@ -284,7 +289,7 @@ function drawColorPixelFromTileId(
284
289
let bgMapAttributes : i32 = loadFromVramBank ( tileMapAddress , 1 ) ;
285
290
286
291
// See above for explanation
287
- let pixelYInTile : i32 = pixelYPositionInMap % 8 ;
292
+ let pixelYInTile : i32 = i32Portable ( pixelYPositionInMap % 8 ) ;
288
293
if ( checkBitOnByte ( 6 , bgMapAttributes ) ) {
289
294
// We are mirroring the tile, therefore, we need to opposite byte
290
295
// So if our pixel was 0 our of 8, it wild become 7 :)
@@ -303,7 +308,7 @@ function drawColorPixelFromTileId(
303
308
304
309
// Get our X pixel. Need to NOT reverse it if it was flipped.
305
310
// See above, you have to reverse this normally
306
- let pixelXInTile : i32 = pixelXPositionInMap % 8 ;
311
+ let pixelXInTile : i32 = i32Portable ( pixelXPositionInMap % 8 ) ;
307
312
if ( ! checkBitOnByte ( 5 , bgMapAttributes ) ) {
308
313
pixelXInTile = 7 - pixelXInTile ;
309
314
}
@@ -406,7 +411,7 @@ function drawLineOfTileFromTileCache(
406
411
// Calculate when we should do the tileCache calculation again
407
412
if ( xPixel >= TileCache . nextXIndexToPerformCacheCheck ) {
408
413
TileCache . nextXIndexToPerformCacheCheck = xPixel + 8 ;
409
- let xOffsetTileWidthRemainder : i32 = pixelXPositionInMap % 8 ;
414
+ let xOffsetTileWidthRemainder : i32 = i32Portable ( pixelXPositionInMap % 8 ) ;
410
415
if ( xPixel < xOffsetTileWidthRemainder ) {
411
416
TileCache . nextXIndexToPerformCacheCheck += xOffsetTileWidthRemainder ;
412
417
}
@@ -427,7 +432,7 @@ function drawLineOfTileFromTileId(
427
432
tileIdFromTileMap : i32
428
433
) : i32 {
429
434
// Get the which line of the tile we are rendering
430
- let tileLineY : i32 = pixelYPositionInMap % 8 ;
435
+ let tileLineY : i32 = i32Portable ( pixelYPositionInMap % 8 ) ;
431
436
432
437
// Now lets find our tileX start and end
433
438
// This is for the case where i = 0, but scroll X was 3.
0 commit comments