Swiftpack.co - zydeco/SteamController as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by zydeco.
zydeco/SteamController v1.3
Steam Controller support for iOS and tvOS
⭐️ 56
🕓 2 years ago
iOS macOS tvOS
.package(url: "https://github.com/zydeco/SteamController.git", from: "v1.3")

SteamController

Drop-in support for Steam Controllers for iOS and tvOS.

For information about how to use a Steam Controller in Bluetoth LE mode, see Steam Controller BLE.

Example

To run the example project, clone the repo, and run the SteamControllerTestApp target.

Screenshot

In the example app, power on your controller (in BLE or BLE pairing mode) and press Scan. Connected controllers will appear in the list, and the UI will reflect the state of the controller. Tapping on a controller from the list will open the settings view for that controller, where you can also see the battery level, and change its configuration (seen above).

Requirements

  • iOS 12 or later (not tested on earlier versions).
  • Steam Controller with BLE firmware.
  • A game supporting MFi controllers using the GameController framework.
  • Starting on iOS 13, your app's Info.plist needs a NSBluetoothAlwaysUsageDescription key with a description of how it uses bluetooth.

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate SteamController into your Xcode project using CocoaPods, specify it in your Podfile:

pod 'SteamController'

Then, run the following command:

$ pod install

Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with Homebrew using the following command:

$ brew update
$ brew install carthage

To integrate SteamController into your Xcode project using Carthage, specify it in your Cartfile:

github "zydeco/SteamController"

Run carthage update to build the framework and drag the built SteamController.framework into your Xcode project.

Usage

Everything should work like with MFi controllers. Depending on how your game works, you might not need any changes at all.

  • #import <SteamController/SteamController.h>.
  • To listen for steam controllers, either:
    • Call [SteamControllerManager listenForConnections] when your app starts (uses private IOKit API).
    • Call [[SteamControllerManager sharedManager] scanForControllers] when you want to scan for controllers.
  • The framework will post GCControllerDidConnectNotification and GCControllerDidDisconnectNotification, as with native controllers.
  • Connected Steam Controllers will be returned in [GCController controllers].
  • Steam Controllers are a subclass of GCController (SteamController) that implements the extendedGamepad profile.
  • Core buttons are mapped to Apple's MFi Extended Gamepad Profile.
  • Trackpads and stick can be mapped to D-pad and thumbsticks. (see below)
  • Trackpads can be set to require click for input (default), or not.

Button Mapping

  • Analog Stick: L-Thumbstick
  • Left Trackpad: D-Pad (Requires Click)
  • Right Trackpad: R-Thumbstick / C-Buttons (Requires Click)
  • A, B, X, Y: Equivalent
  • Bumpers/Shoulders: L1 / R1
  • Triggers: L2 / R2
  • Grip buttons: L3 / R3
  • Steam Button: Pause handler and combinations via steamButtonCombinationHandler, or home button
  • Analog Stick click: L3 (Default)
  • Trackpad clicks: L3 / R3 (when click is not required for input)
  • Back: Options button
  • Forward: Menu button
Alternate mapping for backward compatibility:

Since options and menu buttons were added in iOS 13, back and forward are also added as a class extension to GCExtendedGamepad.

  • Back: steamBackButton
  • Forward: steamForwardButton

Controller Configuration

The SteamController class has some additional properties to customise its configuration. See the documentation for more info. These are available as GUI options in the example app.

License

The SteamController framework is available under the MIT license. See the LICENSE file for more info.

GitHub

link
Stars: 56
Last commit: 2 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

v1.3
2 years ago

iOS 14 support contributed by @ToddLa:

  • Mapping Steam button as Home button
  • Support other controllers/input devices in demo app
  • Added STEAMCONTROLLER_NO_SWIZZLING compile-time option, to remove swizzling of [GCController controllers]

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics