Controller
Create a new Controller to manage.
Parameters
The Gamepad to wrap (gamepad1, gamepad2)
The user this gamepad is designated to. Normally, accessing the gamepad.getUser()
method can return null if the gamepad has not been "activated" via the controller by the user doing Start + A or B. This behaviour is a strange oddity of the SDK but leads to unexpected behaviour for users extracting controller data in init. This field is used to re-expose as the designatedUser public field, which ensures that a user object can be retrieved without risk of it being null. Note that the presence of this field does not impact the user field on the actual gamepad, as it is being parsed directly from the SDK to ensure consistent behaviour and eliminate risk of race conditions. A try-getter, tryGetUser exists for convenience.