Add fixed white space

This commit is contained in:
manzerbredes 2015-05-03 10:07:39 +02:00
parent 4cc6c6596b
commit bf5ec3cfe5

View file

@ -70,6 +70,9 @@ kbdh::Direction ConsoleController::waitArrowKeyPress()
//Initialise keyPress
kbdh::Direction keyPress;
//White space to remove arrows print by the terminal
std::string spaces=" ";
//Wait for keypress
while(1){
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Left))
@ -78,7 +81,7 @@ kbdh::Direction ConsoleController::waitArrowKeyPress()
while(sf::Keyboard::isKeyPressed(sf::Keyboard::Left))
{
//Wait for release and try to remove arrow printed characters
std::cout << "\r" << " ";
std::cout << "\r" << spaces;
}
break;
}
@ -88,7 +91,7 @@ kbdh::Direction ConsoleController::waitArrowKeyPress()
while(sf::Keyboard::isKeyPressed(sf::Keyboard::Right))
{
//Wait for release and try to remove arrow printed characters
std::cout << "\r" << " ";
std::cout << "\r" << spaces;
}
break;
}
@ -98,7 +101,7 @@ kbdh::Direction ConsoleController::waitArrowKeyPress()
while(sf::Keyboard::isKeyPressed(sf::Keyboard::Up))
{
//Wait for release and try to remove arrow printed characters
std::cout << "\r" << " ";
std::cout << "\r" << spaces;
}
break;
}
@ -108,7 +111,7 @@ kbdh::Direction ConsoleController::waitArrowKeyPress()
while(sf::Keyboard::isKeyPressed(sf::Keyboard::Down))
{
//Wait for release and try to remove arrow printed characters
std::cout << "\r" << " ";
std::cout << "\r" << spaces;
}
break;
}