
Original topic:
http://elysianshadows.com/phpBB3/viewto ... f=6&t=4130
Corrected code:
viewtopic.php?f=6&t=4255&p=49381&hilit= ... lap#p49381
Moderator: Coders of Rage
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
I thought you had already accomplished that and were having trouble getting it to stop when it reached the gem (a.k.a. collided with the gem)?lotios611 wrote:My problem (at least in my mind) has nothing to do with collision. I'm simple trying to get the AI's x and y to the gem's x and y.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
The issue is that, so long as you increment more than one base unit every update call there's a chance of overstepping your target (throw floating point values into the mix and you're almost certain to overstep your target). It's the nature of computers, but everything happens in discrete steps. If you're moving from 0 to 31 on the x axis, for example, and your movement interval is in units of 3, you'll never land exactly on your target. You'll eventually reach 33, then bob back and forth between 30 and 33.lotios611 wrote:My problem (at least in my mind) has nothing to do with collision. I'm simple trying to get the AI's x and y to the gem's x and y.
I get that, but what I'm saying is that instead of having to add the correction code for that into your AI to move it in a smaller increment, you could implement that in your collision detection and have it do the same thing. There's really nothing wrong with doing it either way in the context you're talking about - I'm just outlining another option and why someone might do it that way.lotios611 wrote:I don't think you're understandng my problem. Just as an example, imagine that the AI's x and y both start at 0 and the gem's x and y are 201 and 448.The AI would start increasing it's x by 2 because it is less than the gem's x. Once the AI got to 200, 0, it would increase it's x to 2, but then on the next frame, it would decrease it by 2 because the AI's x position is greater than the gem's. It would keep going forever in a loop of inreasing and decreasing.
Code: Select all
// Calculate the distance between the positions
int delta = (int)player2Pos.x - (int)gemPos.x;
// Change the distance into an absolute value
if (delta < 0) {
delta = -delta;
}
// Check if the difference between the players is smaller than or equal to a particular value (in this case 1)
if (delta <= 1) {
COLLISION = true; // put however you handle a collision in here
}
Alright, I understand your side now. Thanks for the info, I'll take that into consideration next time I have to program AI.EccentricDuck wrote:I get that, but what I'm saying is that instead of having to add the correction code for that into your AI to move it in a smaller increment, you could implement that in your collision detection and have it do the same thing. There's really nothing wrong with doing it either way in the context you're talking about - I'm just outlining another option and why someone might do it that way.lotios611 wrote:I don't think you're understandng my problem. Just as an example, imagine that the AI's x and y both start at 0 and the gem's x and y are 201 and 448.The AI would start increasing it's x by 2 because it is less than the gem's x. Once the AI got to 200, 0, it would increase it's x to 2, but then on the next frame, it would decrease it by 2 because the AI's x position is greater than the gem's. It would keep going forever in a loop of inreasing and decreasing.
If you were to get to frame 200 and you had your collision detection routine detect collision within a range of 1 then you could achieve the same thing, eg:It's not wrong to handle it the way you handled it, especially for Pickin' Sticks since the way you're doing it accomplishes your goals (which is the the most important thing).Code: Select all
// Calculate the distance between the positions int delta = (int)player2Pos.x - (int)gemPos.x; // Change the distance into an absolute value if (delta < 0) { delta = -delta; } // Check if the difference between the players is smaller than or equal to a particular value (in this case 1) if (delta <= 1) { COLLISION = true; // put however you handle a collision in here }
This is just feedback if you wanted to try taking a similar approach elsewhere. The main issue is that the AI needs to specifically home in on a particular small point on an object in order to initiate a collision. This is fine if the AI initiates all movement itself, but as soon as you throw anything like basic physics or random behavior into the mix you suddenly make it very hard for the AI routine to manually home in on that one very specific point. By doing it more generally by checking it in your collision detection routine you make it so that any force that makes your AI agent bump into an object will initiate a collision without skipping past that small point. Once again though, it's a non-issue if your approach is constrained to Pickin' Sticks and there's no other way to manipulate the AI agent's movement (like having your player push them).