View Single Post
  #17  
Old September 27th, 2006, 05:45 PM
Ed Kolis's Avatar

Ed Kolis Ed Kolis is offline
General
 
Join Date: Apr 2001
Location: Cincinnati, Ohio, USA
Posts: 4,547
Thanks: 1
Thanked 7 Times in 5 Posts
Ed Kolis is on a distinguished road
Default Re: Drukman and Shooter Unearthed!

Um, can't you use boolean conditions to prevent that problem?

Code:

if (keyPressed(NUMPAD_7))
{
// exclusive or
if (keyPressed(NUMPAD_8) ^^ !keyPressed(NUMPAD_4))
{
vx = -sqrt(2);
vy = -sqrt(2);
}
else if (keyPressed(NUMPAD_8))
{
vx = 0;
vy = -1;
}
else if (keyPressed(NUMPAD_4))
{
vx = -1;
vy = 0;
}
}
...

__________________
The Ed draws near! What dost thou deaux?
Reply With Quote