I have been working on extending the code base from SFML Game Dev book. I am adding mouse support, but my solution feels messy.
mKeybinding is declared in player.h as
std::map<sf::keyboard::key, Action> mKeybinding;
The problem is I want sf::keyboard::key to be more general to hold both keyboard and mouse keys/buttons. I combine the two in a enum and handle the offsets. I then have to begin converting from sf::Keyboard::key and sf::Mouse::button to my new enum and back.
In the end it will work, but I keep thinking there is a cleaner approach. Any suggestions? Thanks.
I am blanking on this. Could you give an example?
You're already on the right way. I just mean that inside the input-handling class (Player in the case of the book), you can deal with SFML keyboard and mouse button types, but on your game logic side, you should rather have abstract actions such as "move left" or "launch missile". The idea is to avoid code like
if (/* M key pressed */)
LaunchMissile();
I'm just trying to learn as much as I can in the process of making a simple game.
And...?
It's good if you understand the backgrounds, but once you know what's happening behind the scenes, it may be worthwhile to reuse existing solutions that are already tested. I'm not saying you have to use Thor, but if you want to learn as much as you can, you should also consider to have a look at existing approaches :)
The idea is always the same: In C++, you learn how arrays and new/delete work, but in the end you will use std::vector because it's more productive. For game development, you may learn about graphics cards and OpenGL, but for many cases it's appropriate to use abstracted libraries such as SFML, because they do all the work for you. Same with Thor, SFGUI, Let There Be Light and all the other SFML extensions...