Basically, whenever I call certain functions it ends up changing other values that are unrelated to what I did.
I have defined
typedef struct {
double x;
double y;
} coordinate;
class collisionBox {
public:
double x, y, lineOfSight, length, width;
int index, angle;
coordinate cornerPosition (int number); //corners go clockwise from top
coordinate position (void);
coordinate lineOfSightLocation (void);
collisionBox (void);
};
The problem arises in this function:
aCollision collisionImminent (collisionBox object)
{
coordinate corners[3], lOS;
aCollision result;
int n = 0;
while (n <= boxIndex) {
if (n != object.index) {
corners[0] = allBoxes[n]->cornerPosition(1);
corners[1] = allBoxes[n]->cornerPosition(2);
corners[2] = allBoxes[n]->cornerPosition(3);
corners[3] = allBoxes[n]->cornerPosition(4);
cout << "corners[3].y = " << corners[3].y << "\n";
lOS = object.lineOfSightLocation();
cout << "corners[3].y = " << corners[3].y << "\n";
The value of corners[3].y changes after I call object.lineOfSightLocation() (it changes to the y value of lOS), I can't figure out why...
Here's the other function:
coordinate collisionBox::lineOfSightLocation (void)
{
coordinate lOS;
lOS.x = x + cos(angle * RADIANS) * lineOfSight;
lOS.y = y + sin(angle * RADIANS) * lineOfSight;
return lOS;
}
Anyways, thanks for your time and help, I'm probably doing something utterly wrong, but I really have no idea what it is...