Hello, I was wondering if the main causes for SFML triggering anti-virus software could be improved upon in this respect. I'm not sure on what are all the causes for anti-virus false positives. Someone had suggested that the cause could be sf::Keyboard because this is detected as keylogging. Alternatively sf::Event does not get seen as such. As far as the keylogger mistake, I made a very simple function that just stores the event input so that an external function can detect a keypress.
Like so:
namespace Key
{
bool keyStates[sf::Keyboard::KeyCount];
bool Get(sf::Keyboard::Key key)
{
return keyStates[key];
}
void update(sf::Event &e)
{
//handle key press
if (e.type == sf::Event::KeyPressed) {
int keyCode = e.key.code;
if (keyCode >= 0 && keyCode < sf::Keyboard::KeyCount) {
keyStates[keyCode] = true;
}
}
// Handle key release
if (e.type == sf::Event::KeyReleased) {
int keyCode = e.key.code;
if (keyCode >= 0 && keyCode < sf::Keyboard::KeyCount) {
keyStates[keyCode] = false;
}
}
}
};
I'm not aware if the problems with anti-virus false positives was fixed in SFML 3 or not but this is what I have for SFML 2. What do you think? Is sf::Keyboard only one of several issues or not. Or is sf::Keyboard not even the culprit?