Skip to content

Commit 1874a8b

Browse files
committed
MapImageDumper: Fix drawing of sprites on chunk boundary
1 parent 0d07ab7 commit 1874a8b

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

cache/src/main/java/net/runelite/cache/MapImageDumper.java

+9-12
Original file line numberDiff line numberDiff line change
@@ -1507,7 +1507,6 @@ else if (rotation == 3)
15071507
//What is offsetY?
15081508
int objSizeOffset = Math.max(2, object.getOffsetY());
15091509
int drawY = (drawBaseY + (Region.Y - objSizeOffset - localY)) * MAP_SCALE;
1510-
15111510
if (object.getMapSceneID() != -1)
15121511
{
15131512
blitMapDecoration(image, drawX, drawY, object);
@@ -1850,23 +1849,21 @@ private void blitIcon(BufferedImage dst, int x, int y, SpriteDefinition sprite,
18501849
float stepSizeHeight = 1 + 1 - scale;
18511850
float stepSizeWidth = 1 + 1 - scale;
18521851

1853-
int ymin = Math.max(0, -y);
1854-
int ymax = Math.min(displayHeight, dst.getHeight() - y);
1855-
1856-
int xmin = Math.max(0, -x);
1857-
int xmax = Math.min(displayWidth, dst.getWidth() - x);
18581852

18591853
float indexX = 0;
18601854
float indexY = 0;
1861-
for (int yo = ymin; yo < ymax; yo++)
1855+
for (int yo = 0; yo < displayHeight; yo++)
18621856
{
1863-
for (int xo = xmin; xo < xmax; xo++)
1857+
for (int xo = 0; xo < displayWidth; xo++)
18641858
{
1865-
int index = (int) (indexX) + ((int) (indexY) * (sprite.getWidth()));
1866-
byte color = sprite.pixelIdx[index];
1867-
if (color != 0)
1859+
if (x + xo >= 0 && x + xo < dst.getWidth() && y + yo >= 0 && y + yo < dst.getHeight())
18681860
{
1869-
dst.setRGB(x + xo, y + yo, sprite.palette[color & 255] | 0xFF000000);
1861+
int index = (int) (indexX) + ((int) (indexY) * (sprite.getWidth()));
1862+
byte color = sprite.pixelIdx[index];
1863+
if (color != 0)
1864+
{
1865+
dst.setRGB(x + xo, y + yo, sprite.palette[color & 255] | 0xFF000000);
1866+
}
18701867
}
18711868
indexX += stepSizeWidth;
18721869
}

0 commit comments

Comments
 (0)