Skip to content

Commit 0cb4bb8

Browse files
committed
Wrapped modulo in i32Portable as mentioned in #216
1 parent 94741ec commit 0cb4bb8

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

core/graphics/backgroundWindow.ts

+13-8
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ import { TileCache, drawPixelsFromLineOfTile, getTileDataAddress } from './tiles
1818
import { eightBitLoadFromGBMemory } from '../memory/load';
1919
import { Memory } from '../memory/memory';
2020
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
2225

2326
export function renderBackground(scanlineRegister: i32, tileDataMemoryLocation: i32, tileMapMemoryLocation: i32): void {
2427
// 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,
6770
let pixelYPositionInMap: i32 = scanlineRegister - windowY;
6871

6972
// 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);
7176

7277
// Draw the Background scanline
7378
drawBackgroundWindowScanline(scanlineRegister, tileDataMemoryLocation, tileMapMemoryLocation, pixelYPositionInMap, windowX, xOffset);
@@ -203,7 +208,7 @@ function drawMonochromePixelFromTileId(
203208
// yPixel = 144. 144 % 8 = 0.
204209
// 0 Represents last line of pixels in a tile, 1 represents first. 1 2 3 4 5 6 7 0.
205210
// 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);
207212

208213
// Remember to represent a single line of 8 pixels on a tile, we need two bytes.
209214
// 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(
217222
// Therefore, is pixelX was 2, then really is need to be 5
218223
// So 2 - 7 = -5, * 1 = 5
219224
// Or to simplify, 7 - 2 = 5 haha!
220-
let pixelXInTile: i32 = pixelXPositionInMap % 8;
225+
let pixelXInTile: i32 = i32Portable(pixelXPositionInMap % 8);
221226
pixelXInTile = 7 - pixelXInTile;
222227

223228
// Now we can get the color for that pixel
@@ -284,7 +289,7 @@ function drawColorPixelFromTileId(
284289
let bgMapAttributes: i32 = loadFromVramBank(tileMapAddress, 1);
285290

286291
// See above for explanation
287-
let pixelYInTile: i32 = pixelYPositionInMap % 8;
292+
let pixelYInTile: i32 = i32Portable(pixelYPositionInMap % 8);
288293
if (checkBitOnByte(6, bgMapAttributes)) {
289294
// We are mirroring the tile, therefore, we need to opposite byte
290295
// So if our pixel was 0 our of 8, it wild become 7 :)
@@ -303,7 +308,7 @@ function drawColorPixelFromTileId(
303308

304309
// Get our X pixel. Need to NOT reverse it if it was flipped.
305310
// See above, you have to reverse this normally
306-
let pixelXInTile: i32 = pixelXPositionInMap % 8;
311+
let pixelXInTile: i32 = i32Portable(pixelXPositionInMap % 8);
307312
if (!checkBitOnByte(5, bgMapAttributes)) {
308313
pixelXInTile = 7 - pixelXInTile;
309314
}
@@ -406,7 +411,7 @@ function drawLineOfTileFromTileCache(
406411
// Calculate when we should do the tileCache calculation again
407412
if (xPixel >= TileCache.nextXIndexToPerformCacheCheck) {
408413
TileCache.nextXIndexToPerformCacheCheck = xPixel + 8;
409-
let xOffsetTileWidthRemainder: i32 = pixelXPositionInMap % 8;
414+
let xOffsetTileWidthRemainder: i32 = i32Portable(pixelXPositionInMap % 8);
410415
if (xPixel < xOffsetTileWidthRemainder) {
411416
TileCache.nextXIndexToPerformCacheCheck += xOffsetTileWidthRemainder;
412417
}
@@ -427,7 +432,7 @@ function drawLineOfTileFromTileId(
427432
tileIdFromTileMap: i32
428433
): i32 {
429434
// Get the which line of the tile we are rendering
430-
let tileLineY: i32 = pixelYPositionInMap % 8;
435+
let tileLineY: i32 = i32Portable(pixelYPositionInMap % 8);
431436

432437
// Now lets find our tileX start and end
433438
// This is for the case where i = 0, but scroll X was 3.

0 commit comments

Comments
 (0)