SFML community forums

Help => General => Topic started by: Monoking007 on May 25, 2019, 08:58:59 pm

Title: 2.5.1 Joystick Class not reading my controller in my program
Post by: Monoking007 on May 25, 2019, 08:58:59 pm
I'm trying to configure my controller to my program using the Joystick class for SFML 2.5.1 but no matter what number i use it still says it's not connected. the code i used to test the connection is

#include <SFML/Window/Joystick.hpp>
using namespace std;

int main()

{
   bool connected = sf::Joystick::isConnected(0);
   cout << connected << endl;
   }
Title: Re: 2.5.1 Joystick Class not reading my controller in my program
Post by: G. on May 25, 2019, 09:52:52 pm
Quote from: https://www.sfml-dev.org/documentation/2.5.1/classsf_1_1Joystick.php#details
Unlike the keyboard or mouse, the state of joysticks is sometimes not directly available (depending on the OS), therefore an update() function must be called in order to update the current state of joysticks. When you have a window with event handling, this is done automatically, you don't need to call anything. But if you have no window, or if you want to check joysticks state before creating one, you must call sf::Joystick::update explicitly.
Title: Re: 2.5.1 Joystick Class not reading my controller in my program
Post by: Monoking007 on May 25, 2019, 11:52:28 pm
Thank you! I will test it out and see if it works.