Seperating Axis Theorem troubles

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
cndr
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 65
Joined: Sat Apr 24, 2010 7:03 am
Programming Language of Choice: etc.

Seperating Axis Theorem troubles

Post by cndr »

I've been following an article at http://www.gamedev.net/reference/progra ... /page2.asp. I've read through the article a bunch of times and wrote out what I understood in code, I'm not sure if I'm misinterpreting something, but my code always returns a collision. any one know what I did wrong?

Code: Select all

#include <iostream>
using namespace std;
int main()
{
struct coordinates {float x; float y; float z; float w; float h; float d;};
coordinates coord_a = {2,6,0, 2,2,0};
coordinates coord_b = {0,0,0,   1,1,0};
coordinates axis[4];
coordinates rect[2][4];

float temp[3];
float scalar[4][2][4];
float minmax[4][2][2];//axis,rect,min/max

#define UR 0
#define UL 1
#define LL 2
#define LR 3

rect[0][UR].x = coord_a.x+coord_a.w; //UR
rect[0][UR].y = coord_a.y;
rect[0][UL].x = coord_a.x; //UL
rect[0][UL].y = coord_a.y;
rect[0][LL].x = coord_a.x;  //LL
rect[0][LL].y = coord_a.y+coord_a.h;
rect[0][LR].x = coord_a.x+coord_a.w; //LR
rect[0][LR].y = coord_a.y+coord_a.h;

rect[1][UR].x = coord_b.x+coord_b.w; //UR
rect[1][UR].y = coord_b.y;
rect[1][UL].x = coord_b.x; //UL
rect[1][UL].y = coord_b.y;
rect[1][LL].x = coord_b.x; //LL
rect[1][LL].y = coord_b.y+coord_b.h;
rect[1][LR].x = coord_b.x+coord_b.w; //LR
rect[1][LR].y = coord_b.y+coord_b.h;

axis[0].x = rect[0][UR].x - rect[0][UL].x;
axis[0].y = rect[0][UR].y - rect[0][UL].y;
axis[1].x = rect[0][UR].x - rect[0][LR].x;
axis[1].y = rect[0][UR].y - rect[0][LR].y;
axis[2].x = rect[1][UL].x - rect[1][LL].x;
axis[2].y = rect[1][UL].y - rect[1][LL].y;
axis[3].x = rect[1][UL].x - rect[1][UR].x;
axis[3].y = rect[1][UL].y - rect[1][UR].y;

for (int i=0; i<4; i++) //axis
{
	for (int j=0; j<2; j++) // rect
	{
		for (int k=0; k<4; k++) //vector
		{
		temp[0] = (rect[j][k].x * axis[i].x + rect[j][k].y * axis[i].y)/((axis[i].x*axis[i].x)+(axis[i].y*axis[i].y));
		temp[1] = temp[0]*axis[i].x;
		temp[2] = temp[0]*axis[i].y;

		scalar[i][j][k] = (temp[1] * axis[i].x) + (temp[2] * axis[i].y);
		}
	}
}

for (int i=0; i<4;i++)
{
	for (int j=0; j<2; j++)
	{
	minmax[i][j][0] = 99999999;
	minmax[i][j][1] = -99999999;
	}
}

for (int i=0; i<4; i++) //axis
{
	for (int j=0; j<2; j++) // rect
	{
		for (int k=0; k<4; k++) //vector
		{
			if (scalar[i][j][k] < minmax[i][j][0])
			{
			minmax[i][j][0] = scalar[i][j][k];
			}
			if (scalar[i][j][k] > minmax[i][j][1])
			{
			minmax[i][j][1] = scalar[i][j][k];
			}
		}
	}
}

for (int i=0; i<4; i++)
{

	if (minmax[i][1][0] <= minmax[i][0][1] || minmax[i][1][1] >= minmax[i][0][0])
	{
	cout << "collision: "<< i <<endl;
	}
	else 
	{
	cout << "No Collision"<<endl;
	break;
	}
}

return 0;
}
Long Live The Queen!
User avatar
Milch
Chaos Rift Junior
Chaos Rift Junior
Posts: 241
Joined: Sat Jul 11, 2009 5:55 am
Programming Language of Choice: C++
Location: Austria, Vienna

Re: Seperating Axis Theorem troubles

Post by Milch »

Follow me on twitter!
User avatar
cndr
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 65
Joined: Sat Apr 24, 2010 7:03 am
Programming Language of Choice: etc.

Re: Seperating Axis Theorem troubles

Post by cndr »

thanks for the help, will take a look at it.
Long Live The Queen!
Post Reply