I'm trying to implement collision detection in my game, but what seemed easy at first has mutated into a monster I can't quite tackle without some help.
The game will be an RTS at some point, but right now it's only a bunch of units which can be told to move to a particular location on the screen. But, the units keep disappearing into only one unit, so I defined bounding boxes for each unit and tested for collision between the units after moving them in the game loop so as to separate them.
That didn't work because I had not implemented a way of knowing that the particular unit I am shifting does not take some other unit's place (which I had already iterated through).
I tried to maintain positions (or regions) already occupied so as to shift where there are no units. But this also does not work in some cases, such as when a unit is shifted in any of the four corners of the screen, it can't go beyond the screen's bounds and also cannot occupy the regions occupied the units it is colliding with.
I'm still pretty sure I'm overly complicating something which can be done easily with a different approach.
Each unit has it's own bounding sphere, position, direction vector and velocity vector.
class Unit {
friend class Party;
protected:
float xPos, yPos;
float destX, destY;
float detectionRange;
Vector *vel;
Vector *dest;
int dir;
int offset;
int width, height;
Circle *circle; //Bounding Circle
...
public:
...
};
//Collision Checking
void Party::checkCollisions() {
bool noCol;
float dx, dy;
Circle *mCircle = NULL;
Circle *sCircle = NULL;
do {
noCol = true;
for(int i=0; i<numUnits; i++) {
mCircle = units[i]->getCircle();
for(int j=0; j<numUnits; j++) {
if(j==i) {
continue;
}
sCircle = units[j]->getCircle();
if(mCircle->isColliding(sCircle)) {
noCol = false;
mCircle->getShifts(sCircle, &dx, &dy);
units[i]->shift(dx, dy);
units[j]->shift(-dx, -dy);
}
}
}
} while(noCol == false);
}
//IsColliding. This is overriden for isColliding(Circle *circle), but here
//you see the actual algorithm.
bool Circle::isColliding(float X, float Y, int rad) {
float mag = sqrt((X-x)*(X-x) + (Y-y)*(Y-y));
if(mag <= (radius + rad)){
return true;
}
return false;
}
//Get Shifts
void Circle::getShifts(Circle *c, float *dx, float *dy) {
float x1 = x - c->x;
float y1 = y - c->y;
if(x1 > -1 && x1 < 1) {
x1 = 1;
}
if(y1 > -1 && y1 < 1) {
y1 = 1;
}
*dx = x1/fabs(x1);
*dy = y1/fabs(y1);
}
This video shows what I have got so far, but it's apparent that it is extremely glitched and has unnecessary unit movements.
What I want is that when two or more units come together, they flock naturally. But all units will not form one flock at all times. Since each unit has a different detection range, it is possible to separate one or more units from a flock. I want this so that later I can select and move different groups of units.