SFML community forums
Help => General => Topic started by: diseasedtoe on July 23, 2011, 01:57:00 am
-
Hey guys, I actually have a problem I was hoping you could help me with. I saw this tutorial a while back, when I using 1.6:
https://github.com/SFML/SFML/wiki/TutorialManageDynamicKeyBinding
however now that I have switched to 2.0, this no longer seems to work for me. Can you guys help me somehow use this with sfml 2.0, or at least point me in the write direction? Thanks in advance.
-
GetEvent is now PollEvent and the input system has been revamped. It shouldn't be too hard to convert since that example uses events.
-
You could also reuse something existing like this (http://www.bromeon.ch/thor/v1.1/tutorial-actions.html) :P
thor::ActionMap<std::string> map;
//Let's bind the left mouse button to the "Shoot" action
map["Shoot"] = thor::Action(sf::Mouse::Left);
//Let's bind the Return key to the "Jump" action
map["Jump"] = thor::Action(sf::Keyboard::Return);
//Let's bind any of the control keys to the "Use" action
Keys["Use"] = thor::Action(sf::Keyboard::LControl) || thor::Action(sf::Keyboard::RControl);