From 379a4c6c9662c698f5bcff7cb0e35dc8a63bcc4a Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 16 Nov 2016 22:32:59 -0500 Subject: [PATCH] Intellivision clean up border collision --- .../Consoles/Intellivision/STIC.cs | 23 +++++++++++++++---- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs index 2d6255819a..a6e669369d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs @@ -382,8 +382,6 @@ namespace BizHawk.Emulation.Cores.Intellivision { FrameBuffer[(j * 2) * 159 + i] = ColorToRGBA(Register[0x2C]); FrameBuffer[(j * 2 + 1) * 159 + i] = ColorToRGBA(Register[0x2C]); - Collision[i + 8, j * 2 + 16] |= 1 << 9; - Collision[i + 8, j * 2 + 16 + 1] |= 1 << 9; } } else @@ -393,6 +391,7 @@ namespace BizHawk.Emulation.Cores.Intellivision } } } + } @@ -686,11 +685,25 @@ namespace BizHawk.Emulation.Cores.Intellivision // by now we have collision information for all 8 mobs and the BG // so we can store data in the collision registers here - for (int i = 0;i<159;i++) + int x_border = Register[0x32].Bit(0) ? 16 : 8; + int y_border = Register[0x32].Bit(1) ? 32 : 16; + + for (int i = 0;i<167;i++) { - for (int j=0;j<192;j++) + for (int j=0;j<210;j++) { - if (Collision[i, j] != 0) + //while we are here we can set collision detection bits for the border region + if (i= 208) + { + Collision[i, j] |= (1 << 9); + } + + // the extra condition here is to ignore only border collsion bit set + if (Collision[i, j] != 0 && Collision[i,j] != (1<<9)) { for (int k = 0; k < 8; k++) {