-
Hello
I have a problem regarding checking if an user pressed a button.
Code:
#include <iostream>
using namespace std;
int main() {
bool repeat = true;
while (repeat) {
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Escape) {
cout << "Are you sure you want to quit?" <<endl;
} else if (sf::Keyboard::isKeyPressed(sf::Keyboard::A) {
cout << "A is pressed, moving forward." <<endl;
}
}
}
What I need to do, is checking if an user pressed a button, if it does it should print a message.
My problems:
- If I put it in a while loop to repeat checking if a button is pressed, my window gets spammed with "A is pressed, moving forward". The message should just appear once.
- If I don't put a while loop, my program just terminates without me even having the chance to type.
How do I keep repeating that checking for when a button is pressed without my program terminating and without my window spammed with the couts?
Thanks for reading,
Niely
-
There are at least two ways to achieve this behaviour:
1.) Use events, something like this
//in event loop (pollEvent/waitEvent)
if(event.type == sf::Event::KeyPressed)
{
switch(event.key.code)
{
case sf::Keyboard::A :
cout << "A is pressed, moving forward." <<endl;
break;
}
}
2) You can have somewhere a bool to check if the button was pressed last frame.
void somefunc()
{
static bool stateLastFrame = false; //static to make the example simple... could be a member/local variable outside of the gameloop...
if (sf::Keyboard::isKeyPressed(sf::Keyboard::A))
{
if(!stateLastFrame)
cout << "A is pressed, moving forward." <<endl;
stateLastFrame = true;
}
else
stateLastFrame = false;
}
I hope I understood you correctly and you were asking for a way to get one "message" per key press.
AlexAUT
-
Hi!
Thanks a lot, your second option works.
However; the only problem now is; that if I typ 'fast', the program ignores some key-presses.
That stateLastFrame isn't switched fast enough to false, or that the code didn't reached the else statement to make it false.
-
If you use bools for this you would need a bool for each key, because if you just use one bool for all, it stays true as long as any key is pressed.
I suggest using events like AlexAUT already showed you. Especially because it seems you are trying to implement a text field to enter something. Take a look at the text entered event.
-
I'm trying to do this with events then, because I assume that'd work better then booleans. However; the sample code provided doesn't work.
How exactly would that go with events? I already tried a few things, but those don't work.
-
Have you read the tutorials? Everything is explained there: http://www.sfml-dev.org/tutorials/2.2/window-events.php
Anyways a minimal example, basically the same as in my first post:
#include <iostream>
#include <SFML/Window.hpp>
int main()
{
sf::Window window({ 800, 600 }, "test");
while (window.isOpen())
{
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::KeyPressed)
{
switch (event.key.code)
{
case sf::Keyboard::A:
std::cout << "A is pressed, moving forward." << std::endl;
break;
}
}
}
}
}
AlexAUT
-
I already got the window to work. However, now I only need this piece to work:
Code:
#include <iostream>
#include <SFML/Window.hpp>
int main()
{
sf::Event event;
while(true) {
if (event.type == sf::Event::KeyPressed)
{
switch (event.key.code)
{
case sf::Keyboard::A :
std::cout << "A is pressed, moving forward." << std::endl;
break;
}
}
}
}
This is the compiler G++:
g++ -o test test.cpp -std=c++11 -lsfml-system -lsfml-window
No compile error, however, when I press 'a' or 'A' no cout shows up. I'm using Linux Mint 17.1 by the way.
-
You should go read the tutorials again. You need a window for events, and to call sf::Window::pollEvent() (http://www.sfml-dev.org/documentation/2.2/classsf_1_1Window.php#a338e996585faf82e93069858e3b531b7) to get an actual event.
-
I didn't needed it when I used Booleans... How do I make a 'fake' window then? I want to use CLI, not GUI.
With window by the way, also no cout shows up.