Index: .fossil-settings/ignore-glob ================================================================== --- .fossil-settings/ignore-glob +++ .fossil-settings/ignore-glob @@ -40,10 +40,11 @@ tests/DerivedData tests/EBOOT.PBP tests/Info.plist tests/PARAM.SFO tests/big_dictionary_msgpack_gz.m +tests/gamecontroller/gamecontroller_tests tests/iOS.xcodeproj/*.pbxuser tests/iOS.xcodeproj/project.xcworkspace tests/iOS.xcodeproj/xcuserdata tests/objc_sync/objc_sync tests/plugin/Info.plist Index: src/Makefile ================================================================== --- src/Makefile +++ src/Makefile @@ -23,10 +23,11 @@ OFData+MessagePackParsing.m \ OFDate.m \ OFDictionary.m \ OFEnumerator.m \ OFFileManager.m \ + OFGameController.m \ OFGZIPStream.m \ OFHMAC.m \ OFINICategory.m \ OFINIFile.m \ OFIRI.m \ ADDED src/OFGameController.h Index: src/OFGameController.h ================================================================== --- /dev/null +++ src/OFGameController.h @@ -0,0 +1,306 @@ +/* + * Copyright (c) 2008-2024 Jonathan Schleifer + * + * All rights reserved. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License version 3.0 only, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * version 3.0 for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * version 3.0 along with this program. If not, see + * . + */ + +#import "OFObject.h" +#import "OFString.h" + +OF_ASSUME_NONNULL_BEGIN + +/** @file */ + +@class OFArray OF_GENERIC(ObjectType); +@class OFMutableSet OF_GENERIC(ObjectType); +@class OFSet OF_GENERIC(ObjectType); + +/** + * @brief A button on a controller. + * + * Possible values are: + * + * * @ref OFGameControllerButtonA + * * @ref OFGameControllerButtonB + * * @ref OFGameControllerButtonC + * * @ref OFGameControllerButtonX + * * @ref OFGameControllerButtonY + * * @ref OFGameControllerButtonZ + * * @ref OFGameControllerButtonL + * * @ref OFGameControllerButtonR + * * @ref OFGameControllerButtonZL + * * @ref OFGameControllerButtonZR + * * @ref OFGameControllerButtonSelect + * * @ref OFGameControllerButtonStart + * * @ref OFGameControllerButtonHome + * * @ref OFGameControllerButtonCapture + * * @ref OFGameControllerButtonLeftStick + * * @ref OFGameControllerButtonRightStick + * * @ref OFGameControllerButtonDPadUp + * * @ref OFGameControllerButtonDPadDown + * * @ref OFGameControllerButtonDPadLeft + * * @ref OFGameControllerButtonDPadRight + * * @ref OFGameControllerButtonCPadUp + * * @ref OFGameControllerButtonCPadDown + * * @ref OFGameControllerButtonCPadLeft + * * @ref OFGameControllerButtonCPadRight + * * @ref OFGameControllerButtonMode + */ +typedef OFConstantString *OFGameControllerButton; + +#ifdef __cplusplus +extern "C" { +#endif +/** + * @brief The A button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonA; + +/** + * @brief The B button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonB; + +/** + * @brief The C button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonC; + +/** + * @brief The X button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonX; + +/** + * @brief The Y button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonY; + +/** + * @brief The Z button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonZ; + +/** + * @brief The L button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonL; + +/** + * @brief The R button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonR; + +/** + * @brief The ZL button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonZL; + +/** + * @brief The ZR button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonZR; + +/** + * @brief The Select button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonSelect; + +/** + * @brief The Start button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonStart; + +/** + * @brief The Home button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonHome; + +/** + * @brief The Capture button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonCapture; + +/** + * @brief The left stick button (pressing the left stick) on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonLeftStick; + +/** + * @brief The right stick button (pressing the right stick) on a game + * controller. + */ +extern const OFGameControllerButton OFGameControllerButtonRightStick; + +/** + * @brief The D-Pad Up button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonDPadUp; + +/** + * @brief The D-Pad Down button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonDPadDown; + +/** + * @brief The D-Pad Left button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonDPadLeft; + +/** + * @brief The D-Pad Right button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonDPadRight; + +/** + * @brief The C-Pad Up button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonCPadUp; + +/** + * @brief The C-Pad Down button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonCPadDown; + +/** + * @brief The C-Pad Left button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonCPadLeft; + +/** + * @brief The C-Pad Right button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonCPadRight; + +/** + * @brief The Mode button on a game controller. + */ +extern const OFGameControllerButton OFGameControllerButtonMode; +#ifdef __cplusplus +} +#endif + +/** + * @brief A class for reading state from a game controller. + */ +OF_SUBCLASSING_RESTRICTED +@interface OFGameController: OFObject +{ +#if defined(OF_LINUX) + OFString *_path; + int _fd; + uint16_t _vendorID, _productID; + OFString *_name; + OFMutableSet *_buttons, *_pressedButtons; + bool _hasLeftAnalogStick, _hasRightAnalogStick; + bool _hasZLPressure, _hasZRPressure; + OFPoint _leftAnalogStickPosition, _rightAnalogStickPosition; + float _ZLPressure, _ZRPressure; + int32_t _leftAnalogStickMinX, _leftAnalogStickMaxX; + int32_t _leftAnalogStickMinY, _leftAnalogStickMaxY; + int32_t _rightAnalogStickMinX, _rightAnalogStickMaxX; + int32_t _rightAnalogStickMinY, _rightAnalogStickMaxY; + int32_t _ZLMinPressure, _ZLMaxPressure, _ZRMinPressure, _ZRMaxPressure; +#elif defined(OF_NINTENDO_DS) + OFMutableSet *_pressedButtons; +#elif defined(OF_NINTENDO_3DS) + OFMutableSet *_pressedButtons; + OFPoint _leftAnalogStickPosition; +#elif defined(OF_WINDOWS) + DWORD _index; + OFMutableSet *_pressedButtons; + OFPoint _leftAnalogStickPosition, _rightAnalogStickPosition; + float _ZLPressure, _ZRPressure; +#endif +} + +#ifdef OF_HAVE_CLASS_PROPERTIES +@property (class, readonly, nonatomic) + OFArray *controllers; +#endif + +/** + * @brief The name of the controller. + */ +@property (readonly, nonatomic, copy) OFString *name; + +/** + * @brief The buttons the controller has. + */ +@property (readonly, nonatomic, copy) + OFSet OF_GENERIC(OFGameControllerButton) *buttons; + +/** + * @brief The currently pressed buttons on the controller. + */ +@property (readonly, nonatomic, copy) + OFSet OF_GENERIC(OFGameControllerButton) *pressedButtons; + +/** + * @brief Whether the controller has a left analog stick. + */ +@property (readonly, nonatomic) bool hasLeftAnalogStick; + +/** + * @brief The position of the left analog stick. + * + * The range is from (-1, -1) to (1, 1). + */ +@property (readonly, nonatomic) OFPoint leftAnalogStickPosition; + +/** + * @brief Whether the controller has a right analog stick. + */ +@property (readonly, nonatomic) bool hasRightAnalogStick; + +/** + * @brief The position of the right analog stick. + * + * The range is from (-1, -1) to (1, 1). + */ +@property (readonly, nonatomic) OFPoint rightAnalogStickPosition; + +/** + * @brief Returns the available controllers. + * + * @return The available controllers + */ ++ (OFArray OF_GENERIC(OFGameController *) *)controllers; + +- (instancetype)init OF_UNAVAILABLE; + +/** + * @brief Retrieve the current state from the game controller. + * + * The state returned by @ref OFGameController's messages does not change until + * this method is called. + * + * @throw OFReadFailedException The controller's state could not be read + */ +- (void)retrieveState; + +/** + * @brief Returns how hard the specified button is pressed. + * + * The returned value is in the range from 0 to 1. + * + * @param button The button for which to return how hard it is pressed. + * @return How hard the specified button is pressed + */ +- (float)pressureForButton: (OFGameControllerButton)button; +@end + +OF_ASSUME_NONNULL_END ADDED src/OFGameController.m Index: src/OFGameController.m ================================================================== --- /dev/null +++ src/OFGameController.m @@ -0,0 +1,83 @@ +/* + * Copyright (c) 2008-2024 Jonathan Schleifer + * + * All rights reserved. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License version 3.0 only, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * version 3.0 for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * version 3.0 along with this program. If not, see + * . + */ + +#include "config.h" + +#import "OFGameController.h" +#import "OFArray.h" + +const OFGameControllerButton OFGameControllerButtonA = @"A"; +const OFGameControllerButton OFGameControllerButtonB = @"B"; +const OFGameControllerButton OFGameControllerButtonC = @"C"; +const OFGameControllerButton OFGameControllerButtonX = @"X"; +const OFGameControllerButton OFGameControllerButtonY = @"Y"; +const OFGameControllerButton OFGameControllerButtonZ = @"Z"; +const OFGameControllerButton OFGameControllerButtonL = @"L"; +const OFGameControllerButton OFGameControllerButtonR = @"R"; +const OFGameControllerButton OFGameControllerButtonZL = @"ZL"; +const OFGameControllerButton OFGameControllerButtonZR = @"ZR"; +const OFGameControllerButton OFGameControllerButtonSelect = @"Select"; +const OFGameControllerButton OFGameControllerButtonStart = @"Start"; +const OFGameControllerButton OFGameControllerButtonHome = @"Home"; +const OFGameControllerButton OFGameControllerButtonCapture = @"Capture"; +const OFGameControllerButton OFGameControllerButtonLeftStick = @"Left Stick"; +const OFGameControllerButton OFGameControllerButtonRightStick = @"Right Stick"; +const OFGameControllerButton OFGameControllerButtonDPadUp = @"D-Pad Up"; +const OFGameControllerButton OFGameControllerButtonDPadDown = @"D-Pad Down"; +const OFGameControllerButton OFGameControllerButtonDPadLeft = @"D-Pad Left"; +const OFGameControllerButton OFGameControllerButtonDPadRight = @"D-Pad Right"; +const OFGameControllerButton OFGameControllerButtonCPadUp = @"C-Pad Up"; +const OFGameControllerButton OFGameControllerButtonCPadDown = @"C-Pad Down"; +const OFGameControllerButton OFGameControllerButtonCPadLeft = @"C-Pad Left"; +const OFGameControllerButton OFGameControllerButtonCPadRight = @"C-Pad Right"; +const OFGameControllerButton OFGameControllerButtonMode = @"Mode"; + +#if defined(OF_LINUX) && defined(OF_HAVE_FILES) +# include "platform/Linux/OFGameController.m" +#elif defined(OF_WINDOWS) +# include "platform/Windows/OFGameController.m" +#elif defined(OF_NINTENDO_DS) +# include "platform/NintendoDS/OFGameController.m" +#elif defined(OF_NINTENDO_3DS) +# include "platform/Nintendo3DS/OFGameController.m" +#else +@implementation OFGameController +@dynamic name, buttons, pressedButtons, hasLeftAnalogStick; +@dynamic leftAnalogStickPosition, hasRightAnalogStick, rightAnalogStickPosition; + ++ (OFArray OF_GENERIC(OFGameController *) *)controllers +{ + return [OFArray array]; +} + +- (instancetype)init +{ + OF_INVALID_INIT_METHOD +} + +- (void)retrieveState +{ +} + +- (float)pressureForButton: (OFGameControllerButton)button +{ + return 0; +} +@end +#endif Index: src/ObjFW.h ================================================================== --- src/ObjFW.h +++ src/ObjFW.h @@ -146,10 +146,11 @@ #import "OFOptionsParser.h" #import "OFTimer.h" #import "OFRunLoop.h" #import "OFMatrix4x4.h" +#import "OFGameController.h" #ifdef OF_WINDOWS # import "OFWindowsRegistryKey.h" #endif ADDED src/platform/Linux/OFGameController.m Index: src/platform/Linux/OFGameController.m ================================================================== --- /dev/null +++ src/platform/Linux/OFGameController.m @@ -0,0 +1,504 @@ +/* + * Copyright (c) 2008-2024 Jonathan Schleifer + * + * All rights reserved. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License version 3.0 only, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * version 3.0 for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * version 3.0 along with this program. If not, see + * . + */ + +#include "config.h" + +#include +#include +#include + +#import "OFGameController.h" +#import "OFArray.h" +#import "OFFileManager.h" +#import "OFLocale.h" +#import "OFSet.h" + +#include +#include + +#import "OFInitializationFailedException.h" +#import "OFInvalidArgumentException.h" +#import "OFOpenItemFailedException.h" +#import "OFOutOfRangeException.h" +#import "OFReadFailedException.h" + +static const uint16_t vendorIDNintendo = 0x057E; +static const uint16_t productIDN64Controller = 0x2019; + +@interface OFGameController () +- (instancetype)of_initWithPath: (OFString *)path OF_METHOD_FAMILY(init); +@end + +static const uint16_t buttons[] = { + BTN_A, BTN_B, BTN_C, BTN_X, BTN_Y, BTN_Z, BTN_TL, BTN_TR, BTN_TL2, + BTN_TR2, BTN_SELECT, BTN_START, BTN_MODE, BTN_THUMBL, BTN_THUMBR, + BTN_DPAD_UP, BTN_DPAD_DOWN, BTN_DPAD_LEFT, BTN_DPAD_RIGHT +}; + +static OFGameControllerButton +buttonToName(uint16_t button, uint16_t vendorID, uint16_t productID) +{ + if (vendorID == vendorIDNintendo && + productID == productIDN64Controller) { + switch (button) { + case BTN_TL2: + return OFGameControllerButtonZ; + case BTN_Y: + return OFGameControllerButtonCPadLeft; + case BTN_C: + return OFGameControllerButtonCPadRight; + case BTN_SELECT: + return OFGameControllerButtonCPadUp; + case BTN_X: + return OFGameControllerButtonCPadDown; + case BTN_MODE: + return OFGameControllerButtonHome; + case BTN_Z: + return OFGameControllerButtonCapture; + } + } + + switch (button) { + case BTN_A: + return OFGameControllerButtonA; + case BTN_B: + return OFGameControllerButtonB; + case BTN_C: + return OFGameControllerButtonC; + case BTN_X: + return OFGameControllerButtonX; + case BTN_Y: + return OFGameControllerButtonY; + case BTN_Z: + return OFGameControllerButtonZ; + case BTN_TL: + return OFGameControllerButtonL; + case BTN_TR: + return OFGameControllerButtonR; + case BTN_TL2: + return OFGameControllerButtonZL; + case BTN_TR2: + return OFGameControllerButtonZR; + case BTN_SELECT: + return OFGameControllerButtonSelect; + case BTN_START: + return OFGameControllerButtonStart; + case BTN_MODE: + return OFGameControllerButtonHome; + case BTN_THUMBL: + return OFGameControllerButtonLeftStick; + case BTN_THUMBR: + return OFGameControllerButtonRightStick; + case BTN_DPAD_UP: + return OFGameControllerButtonDPadUp; + case BTN_DPAD_DOWN: + return OFGameControllerButtonDPadDown; + case BTN_DPAD_LEFT: + return OFGameControllerButtonDPadLeft; + case BTN_DPAD_RIGHT: + return OFGameControllerButtonDPadRight; + } + + return nil; +} + +static float +scale(float value, float min, float max) +{ + if (value < min) + value = min; + if (value > max) + value = max; + + return ((value - min) / (max - min) * 2) - 1; +} + +@implementation OFGameController +@synthesize name = _name, buttons = _buttons; +@synthesize hasLeftAnalogStick = _hasLeftAnalogStick; +@synthesize hasRightAnalogStick = _hasRightAnalogStick; +@synthesize leftAnalogStickPosition = _leftAnalogStickPosition; +@synthesize rightAnalogStickPosition = _rightAnalogStickPosition; + ++ (OFArray OF_GENERIC(OFGameController *) *)controllers +{ + OFMutableArray *controllers = [OFMutableArray array]; + void *pool = objc_autoreleasePoolPush(); + + for (OFString *device in [[OFFileManager defaultManager] + contentsOfDirectoryAtPath: @"/dev/input"]) { + OFString *path; + OFGameController *controller; + + if (![device hasPrefix: @"event"]) + continue; + + path = [@"/dev/input" stringByAppendingPathComponent: device]; + + @try { + controller = [[[OFGameController alloc] + of_initWithPath: path] autorelease]; + } @catch (OFOpenItemFailedException *e) { + if (e.errNo == EACCES) + continue; + + @throw e; + } @catch (OFInvalidArgumentException *e) { + /* Not a game controller. */ + continue; + } + + [controllers addObject: controller]; + } + + [controllers sort]; + [controllers makeImmutable]; + + objc_autoreleasePoolPop(pool); + + return controllers; +} + +- (instancetype)init +{ + OF_INVALID_INIT_METHOD +} + +- (instancetype)of_initWithPath: (OFString *)path +{ + self = [super init]; + + @try { + OFStringEncoding encoding = [OFLocale encoding]; + unsigned long evBits[OFRoundUpToPowerOf2(OF_ULONG_BIT, + EV_MAX) / OF_ULONG_BIT] = { 0 }; + unsigned long keyBits[OFRoundUpToPowerOf2(OF_ULONG_BIT, + KEY_MAX) / OF_ULONG_BIT] = { 0 }; + unsigned long absBits[OFRoundUpToPowerOf2(OF_ULONG_BIT, + ABS_MAX) / OF_ULONG_BIT] = { 0 }; + struct input_id inputID; + char name[128]; + + _path = [path copy]; + + if ((_fd = open([_path cStringWithEncoding: encoding], + O_RDONLY | O_NONBLOCK)) == -1) + @throw [OFOpenItemFailedException + exceptionWithPath: _path + mode: @"r" + errNo: errno]; + + if (ioctl(_fd, EVIOCGBIT(0, sizeof(evBits)), evBits) == -1) + @throw [OFInitializationFailedException exception]; + + if (!OFBitSetIsSet(evBits, EV_KEY)) + @throw [OFInvalidArgumentException exception]; + + if (ioctl(_fd, EVIOCGBIT(EV_KEY, sizeof(keyBits)), keyBits) == + -1) + @throw [OFInitializationFailedException exception]; + + if (!OFBitSetIsSet(keyBits, BTN_GAMEPAD)) + @throw [OFInvalidArgumentException exception]; + + if (ioctl(_fd, EVIOCGID, &inputID) == -1) + @throw [OFInvalidArgumentException exception]; + + _vendorID = inputID.vendor; + _productID = inputID.product; + + if (ioctl(_fd, EVIOCGNAME(sizeof(name)), name) == -1) + @throw [OFInitializationFailedException exception]; + + _name = [[OFString alloc] initWithCString: name + encoding: encoding]; + + _buttons = [[OFMutableSet alloc] init]; + for (size_t i = 0; i < sizeof(buttons) / sizeof(*buttons); + i++) + if (OFBitSetIsSet(keyBits, buttons[i])) + [_buttons addObject: buttonToName( + buttons[i], _vendorID, _productID)]; + + _pressedButtons = [[OFMutableSet alloc] init]; + + if (OFBitSetIsSet(evBits, EV_ABS)) { + if (ioctl(_fd, EVIOCGBIT(EV_ABS, sizeof(absBits)), + absBits) == -1) + @throw [OFInitializationFailedException + exception]; + + if (OFBitSetIsSet(absBits, ABS_X) && + OFBitSetIsSet(absBits, ABS_Y)) { + struct input_absinfo infoX, infoY; + + _hasLeftAnalogStick = true; + + if (ioctl(_fd, EVIOCGABS(ABS_X), &infoX) == -1) + @throw [OFInitializationFailedException + exception]; + + if (ioctl(_fd, EVIOCGABS(ABS_Y), &infoY) == -1) + @throw [OFInitializationFailedException + exception]; + + _leftAnalogStickMinX = infoX.minimum; + _leftAnalogStickMaxX = infoX.maximum; + _leftAnalogStickMinY = infoY.minimum; + _leftAnalogStickMaxY = infoY.maximum; + } + + if (OFBitSetIsSet(absBits, ABS_RX) && + OFBitSetIsSet(absBits, ABS_RY)) { + struct input_absinfo infoX, infoY; + + _hasRightAnalogStick = true; + + if (ioctl(_fd, EVIOCGABS(ABS_RX), &infoX) == -1) + @throw [OFInitializationFailedException + exception]; + + if (ioctl(_fd, EVIOCGABS(ABS_RY), &infoY) == -1) + @throw [OFInitializationFailedException + exception]; + + _rightAnalogStickMinX = infoX.minimum; + _rightAnalogStickMaxX = infoX.maximum; + _rightAnalogStickMinY = infoY.minimum; + _rightAnalogStickMaxY = infoY.maximum; + } + + if (OFBitSetIsSet(absBits, ABS_HAT0X) && + OFBitSetIsSet(absBits, ABS_HAT0Y)) { + [_buttons addObject: + OFGameControllerButtonDPadLeft]; + [_buttons addObject: + OFGameControllerButtonDPadRight]; + [_buttons addObject: + OFGameControllerButtonDPadUp]; + [_buttons addObject: + OFGameControllerButtonDPadDown]; + } + + if (OFBitSetIsSet(absBits, ABS_Z)) { + struct input_absinfo info; + + _hasZLPressure = true; + + if (ioctl(_fd, EVIOCGABS(ABS_Z), &info) == -1) + @throw [OFInitializationFailedException + exception]; + + _ZLMinPressure = info.minimum; + _ZLMaxPressure = info.maximum; + + [_buttons addObject: OFGameControllerButtonZL]; + } + + if (OFBitSetIsSet(absBits, ABS_RZ)) { + struct input_absinfo info; + + _hasZRPressure = true; + + if (ioctl(_fd, EVIOCGABS(ABS_RZ), &info) == -1) + @throw [OFInitializationFailedException + exception]; + + _ZRMinPressure = info.minimum; + _ZRMaxPressure = info.maximum; + + [_buttons addObject: OFGameControllerButtonZR]; + } + } + + [_buttons makeImmutable]; + + [self retrieveState]; + } @catch (id e) { + [self release]; + @throw e; + } + + return self; +} + +- (void)dealloc +{ + [_path release]; + + if (_fd != -1) + close(_fd); + + [_name release]; + [_buttons release]; + [_pressedButtons release]; + + [super dealloc]; +} + +- (void)retrieveState +{ + struct input_event event; + + for (;;) { + errno = 0; + + if (read(_fd, &event, sizeof(event)) < (int)sizeof(event)) { + if (errno == EWOULDBLOCK) + return; + + @throw [OFReadFailedException + exceptionWithObject: self + requestedLength: sizeof(event) + errNo: errno]; + } + + switch (event.type) { + case EV_KEY: + if (event.value) + [_pressedButtons addObject: buttonToName( + event.code, _vendorID, _productID)]; + else + [_pressedButtons removeObject: buttonToName( + event.code, _vendorID, _productID)]; + break; + case EV_ABS: + switch (event.code) { + case ABS_X: + _leftAnalogStickPosition.x = scale(event.value, + _leftAnalogStickMinX, _leftAnalogStickMaxX); + break; + case ABS_Y: + _leftAnalogStickPosition.y = scale(event.value, + _leftAnalogStickMinY, _leftAnalogStickMaxY); + break; + case ABS_RX: + _rightAnalogStickPosition.x = scale(event.value, + _rightAnalogStickMinX, + _rightAnalogStickMaxX); + break; + case ABS_RY: + _rightAnalogStickPosition.y = scale(event.value, + _rightAnalogStickMinY, + _rightAnalogStickMaxY); + break; + case ABS_HAT0X: + if (event.value < 0) { + [_pressedButtons addObject: + OFGameControllerButtonDPadLeft]; + [_pressedButtons removeObject: + OFGameControllerButtonDPadRight]; + } else if (event.value > 0) { + [_pressedButtons addObject: + OFGameControllerButtonDPadRight]; + [_pressedButtons removeObject: + OFGameControllerButtonDPadLeft]; + } else { + [_pressedButtons removeObject: + OFGameControllerButtonDPadLeft]; + [_pressedButtons removeObject: + OFGameControllerButtonDPadRight]; + } + break; + case ABS_HAT0Y: + if (event.value < 0) { + [_pressedButtons addObject: + OFGameControllerButtonDPadUp]; + [_pressedButtons removeObject: + OFGameControllerButtonDPadDown]; + } else if (event.value > 0) { + [_pressedButtons addObject: + OFGameControllerButtonDPadDown]; + [_pressedButtons removeObject: + OFGameControllerButtonDPadUp]; + } else { + [_pressedButtons removeObject: + OFGameControllerButtonDPadUp]; + [_pressedButtons removeObject: + OFGameControllerButtonDPadDown]; + } + break; + case ABS_Z: + _ZLPressure = scale(event.value, + _ZLMinPressure, _ZLMaxPressure); + + if (_ZLPressure > 0) + [_pressedButtons addObject: + OFGameControllerButtonZL]; + else + [_pressedButtons removeObject: + OFGameControllerButtonZL]; + break; + case ABS_RZ: + _ZRPressure = scale(event.value, + _ZRMinPressure, _ZRMaxPressure); + + if (_ZRPressure > 0) + [_pressedButtons addObject: + OFGameControllerButtonZR]; + else + [_pressedButtons removeObject: + OFGameControllerButtonZR]; + break; + } + + break; + } + } +} + +- (OFComparisonResult)compare: (OFGameController *)otherController +{ + unsigned long long selfIndex, otherIndex; + + if (![otherController isKindOfClass: [OFGameController class]]) + @throw [OFInvalidArgumentException exception]; + + selfIndex = [_path substringFromIndex: 16].unsignedLongLongValue; + otherIndex = [otherController->_path substringFromIndex: 16] + .unsignedLongLongValue; + + if (selfIndex > otherIndex) + return OFOrderedDescending; + if (selfIndex < otherIndex) + return OFOrderedAscending; + + return OFOrderedSame; +} + +- (OFSet *)pressedButtons +{ + return [[_pressedButtons copy] autorelease]; +} + +- (float)pressureForButton: (OFGameControllerButton)button +{ + if (button == OFGameControllerButtonZL && _hasZLPressure) + return _ZLPressure; + if (button == OFGameControllerButtonZR && _hasZRPressure) + return _ZRPressure; + + return ([self.pressedButtons containsObject: button] ? 1 : 0); +} + +- (OFString *)description +{ + return [OFString stringWithFormat: @"<%@: %@>", self.class, self.name]; +} +@end ADDED src/platform/Nintendo3DS/OFGameController.m Index: src/platform/Nintendo3DS/OFGameController.m ================================================================== --- /dev/null +++ src/platform/Nintendo3DS/OFGameController.m @@ -0,0 +1,187 @@ +/* + * Copyright (c) 2008-2024 Jonathan Schleifer + * + * All rights reserved. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License version 3.0 only, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * version 3.0 for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * version 3.0 along with this program. If not, see + * . + */ + +#include "config.h" + +#import "OFGameController.h" +#import "OFArray.h" +#import "OFSet.h" + +#import "OFOutOfRangeException.h" + +#define id id_3ds +#include <3ds.h> +#undef id + +@interface OFGameController () +- (instancetype)of_init OF_METHOD_FAMILY(init); +@end + +static OFArray OF_GENERIC(OFGameController *) *controllers; + +static void +initControllers(void) +{ + void *pool = objc_autoreleasePoolPush(); + + controllers = [[OFArray alloc] initWithObject: + [[[OFGameController alloc] of_init] autorelease]]; + + objc_autoreleasePoolPop(pool); +} + +@implementation OFGameController +@synthesize leftAnalogStickPosition = _leftAnalogStickPosition; +@dynamic rightAnalogStickPosition; + ++ (OFArray OF_GENERIC(OFGameController *) *)controllers +{ + static OFOnceControl onceControl = OFOnceControlInitValue; + + OFOnce(&onceControl, initControllers); + + return [[controllers retain] autorelease]; +} + +- (instancetype)init +{ + OF_INVALID_INIT_METHOD +} + +- (instancetype)of_init +{ + self = [super init]; + + @try { + _pressedButtons = [[OFMutableSet alloc] initWithCapacity: 18]; + + [self retrieveState]; + } @catch (id e) { + [self release]; + @throw e; + } + + return self; +} + +- (void)dealloc +{ + [_pressedButtons release]; + + [super dealloc]; +} + +- (void)retrieveState +{ + u32 keys; + circlePosition pos; + + hidScanInput(); + + keys = hidKeysHeld(); + hidCircleRead(&pos); + + [_pressedButtons removeAllObjects]; + + if (keys & KEY_A) + [_pressedButtons addObject: OFGameControllerButtonA]; + if (keys & KEY_B) + [_pressedButtons addObject: OFGameControllerButtonB]; + if (keys & KEY_SELECT) + [_pressedButtons addObject: OFGameControllerButtonSelect]; + if (keys & KEY_START) + [_pressedButtons addObject: OFGameControllerButtonStart]; + if (keys & KEY_DRIGHT) + [_pressedButtons addObject: OFGameControllerButtonDPadRight]; + if (keys & KEY_DLEFT) + [_pressedButtons addObject: OFGameControllerButtonDPadLeft]; + if (keys & KEY_DUP) + [_pressedButtons addObject: OFGameControllerButtonDPadUp]; + if (keys & KEY_DDOWN) + [_pressedButtons addObject: OFGameControllerButtonDPadDown]; + if (keys & KEY_R) + [_pressedButtons addObject: OFGameControllerButtonR]; + if (keys & KEY_L) + [_pressedButtons addObject: OFGameControllerButtonL]; + if (keys & KEY_X) + [_pressedButtons addObject: OFGameControllerButtonX]; + if (keys & KEY_Y) + [_pressedButtons addObject: OFGameControllerButtonY]; + if (keys & KEY_ZL) + [_pressedButtons addObject: OFGameControllerButtonZL]; + if (keys & KEY_ZR) + [_pressedButtons addObject: OFGameControllerButtonZR]; + if (keys & KEY_CSTICK_RIGHT) + [_pressedButtons addObject: OFGameControllerButtonCPadRight]; + if (keys & KEY_CSTICK_LEFT) + [_pressedButtons addObject: OFGameControllerButtonCPadLeft]; + if (keys & KEY_CSTICK_UP) + [_pressedButtons addObject: OFGameControllerButtonCPadUp]; + if (keys & KEY_CSTICK_DOWN) + [_pressedButtons addObject: OFGameControllerButtonCPadDown]; + + _leftAnalogStickPosition = OFMakePoint( + (float)pos.dx / (pos.dx < 0 ? -INT16_MIN : INT16_MAX), + (float)pos.dy / (pos.dy < 0 ? -INT16_MIN : INT16_MAX)); +} + +- (OFString *)name +{ + return @"Nintendo 3DS"; +} + +- (OFSet OF_GENERIC(OFGameControllerButton) *)buttons +{ + return [OFSet setWithObjects: OFGameControllerButtonA, + OFGameControllerButtonB, OFGameControllerButtonSelect, + OFGameControllerButtonStart, OFGameControllerButtonDPadRight, + OFGameControllerButtonDPadLeft, OFGameControllerButtonDPadUp, + OFGameControllerButtonDPadDown, OFGameControllerButtonR, + OFGameControllerButtonL, OFGameControllerButtonX, + OFGameControllerButtonY, OFGameControllerButtonZL, + OFGameControllerButtonZR, OFGameControllerButtonCPadRight, + OFGameControllerButtonCPadLeft, OFGameControllerButtonCPadUp, + OFGameControllerButtonCPadDown, nil]; +} + +- (OFSet OF_GENERIC(OFGameControllerButton) *)pressedButtons +{ + return [[_pressedButtons copy] autorelease]; +} + +- (bool)hasLeftAnalogStick +{ + return true; +} + +- (bool)hasRightAnalogStick +{ + return false; +} + +- (float)pressureForButton: (OFGameControllerButton)button +{ + return ([self.pressedButtons containsObject: button] ? 1 : 0); +} + +- (OFString *)description +{ + return [OFString stringWithFormat: @"<%@: %@>", self.class, self.name]; +} +@end ADDED src/platform/NintendoDS/OFGameController.m Index: src/platform/NintendoDS/OFGameController.m ================================================================== --- /dev/null +++ src/platform/NintendoDS/OFGameController.m @@ -0,0 +1,164 @@ +/* + * Copyright (c) 2008-2024 Jonathan Schleifer + * + * All rights reserved. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License version 3.0 only, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * version 3.0 for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * version 3.0 along with this program. If not, see + * . + */ + +#include "config.h" + +#import "OFGameController.h" +#import "OFArray.h" +#import "OFSet.h" + +#import "OFOutOfRangeException.h" + +#define asm __asm__ +#include +#undef asm + +@interface OFGameController () +- (instancetype)of_init OF_METHOD_FAMILY(init); +@end + +static OFArray OF_GENERIC(OFGameController *) *controllers; + +static void +initControllers(void) +{ + void *pool = objc_autoreleasePoolPush(); + + controllers = [[OFArray alloc] initWithObject: + [[[OFGameController alloc] of_init] autorelease]]; + + objc_autoreleasePoolPop(pool); +} + +@implementation OFGameController +@dynamic leftAnalogStickPosition, rightAnalogStickPosition; + ++ (OFArray OF_GENERIC(OFGameController *) *)controllers +{ + static OFOnceControl onceControl = OFOnceControlInitValue; + + OFOnce(&onceControl, initControllers); + + return [[controllers retain] autorelease]; +} + +- (instancetype)init +{ + OF_INVALID_INIT_METHOD +} + +- (instancetype)of_init +{ + self = [super init]; + + @try { + _pressedButtons = [[OFMutableSet alloc] initWithCapacity: 12]; + + [self retrieveState]; + } @catch (id e) { + [self release]; + @throw e; + } + + return self; +} + +- (void)dealloc +{ + [_pressedButtons release]; + + [super dealloc]; +} + +- (void)retrieveState +{ + uint32 keys; + + scanKeys(); + keys = keysCurrent(); + + [_pressedButtons removeAllObjects]; + + if (keys & KEY_A) + [_pressedButtons addObject: OFGameControllerButtonA]; + if (keys & KEY_B) + [_pressedButtons addObject: OFGameControllerButtonB]; + if (keys & KEY_SELECT) + [_pressedButtons addObject: OFGameControllerButtonSelect]; + if (keys & KEY_START) + [_pressedButtons addObject: OFGameControllerButtonStart]; + if (keys & KEY_RIGHT) + [_pressedButtons addObject: OFGameControllerButtonDPadRight]; + if (keys & KEY_LEFT) + [_pressedButtons addObject: OFGameControllerButtonDPadLeft]; + if (keys & KEY_UP) + [_pressedButtons addObject: OFGameControllerButtonDPadUp]; + if (keys & KEY_DOWN) + [_pressedButtons addObject: OFGameControllerButtonDPadDown]; + if (keys & KEY_R) + [_pressedButtons addObject: OFGameControllerButtonR]; + if (keys & KEY_L) + [_pressedButtons addObject: OFGameControllerButtonL]; + if (keys & KEY_X) + [_pressedButtons addObject: OFGameControllerButtonX]; + if (keys & KEY_Y) + [_pressedButtons addObject: OFGameControllerButtonY]; +} + +- (OFString *)name +{ + return @"Nintendo DS"; +} + +- (OFSet OF_GENERIC(OFGameControllerButton) *)buttons +{ + return [OFSet setWithObjects: OFGameControllerButtonA, + OFGameControllerButtonB, OFGameControllerButtonSelect, + OFGameControllerButtonStart, OFGameControllerButtonDPadRight, + OFGameControllerButtonDPadLeft, OFGameControllerButtonDPadUp, + OFGameControllerButtonDPadDown, OFGameControllerButtonR, + OFGameControllerButtonL, OFGameControllerButtonX, + OFGameControllerButtonY, nil]; +} + +- (OFSet OF_GENERIC(OFGameControllerButton) *)pressedButtons +{ + return [[_pressedButtons copy] autorelease]; +} + +- (bool)hasLeftAnalogStick +{ + return false; +} + +- (bool)hasRightAnalogStick +{ + return false; +} + +- (float)pressureForButton: (OFGameControllerButton)button +{ + return ([self.pressedButtons containsObject: button] ? 1 : 0); +} + +- (OFString *)description +{ + return [OFString stringWithFormat: @"<%@: %@>", self.class, self.name]; +} +@end ADDED src/platform/Windows/OFGameController.m Index: src/platform/Windows/OFGameController.m ================================================================== --- /dev/null +++ src/platform/Windows/OFGameController.m @@ -0,0 +1,225 @@ +/* + * Copyright (c) 2008-2024 Jonathan Schleifer + * + * All rights reserved. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License version 3.0 only, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * version 3.0 for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * version 3.0 along with this program. If not, see + * . + */ + +#include "config.h" + +#import "OFGameController.h" +#import "OFArray.h" +#import "OFSet.h" + +#import "OFInitializationFailedException.h" +#import "OFReadFailedException.h" + +#include + +@interface OFGameController () +- (instancetype)of_initWithIndex: (DWORD)index OF_METHOD_FAMILY(init); +@end + +static WINAPI DWORD (*XInputGetStateFuncPtr)(DWORD, XINPUT_STATE *); + +@implementation OFGameController +@synthesize leftAnalogStickPosition = _leftAnalogStickPosition; +@synthesize rightAnalogStickPosition = _rightAnalogStickPosition; + ++ (void)initialize +{ + HMODULE module; + + if (self != [OFGameController class]) + return; + + if ((module = LoadLibraryA("xinput1_3.dll")) != NULL) + XInputGetStateFuncPtr = + (WINAPI DWORD (*)(DWORD, XINPUT_STATE *)) + GetProcAddress(module, "XInputGetState"); +} + ++ (OFArray OF_GENERIC(OFGameController *) *)controllers +{ + OFMutableArray *controllers = [OFMutableArray array]; + + if (XInputGetStateFuncPtr != NULL) { + void *pool = objc_autoreleasePoolPush(); + + for (DWORD i = 0; i < XUSER_MAX_COUNT; i++) { + OFGameController *controller; + + @try { + controller = [[[OFGameController alloc] + of_initWithIndex: i] autorelease]; + } @catch (OFInitializationFailedException *e) { + /* Controller does not exist. */ + continue; + } + + [controllers addObject: controller]; + } + + objc_autoreleasePoolPop(pool); + } + + [controllers makeImmutable]; + + return controllers; +} + +- (instancetype)init +{ + OF_INVALID_INIT_METHOD +} + +- (instancetype)of_initWithIndex: (DWORD)index +{ + self = [super init]; + + @try { + XINPUT_STATE state = { 0 }; + + if (XInputGetStateFuncPtr(index, &state) == + ERROR_DEVICE_NOT_CONNECTED) + @throw [OFInitializationFailedException exception]; + + _index = index; + _pressedButtons = [[OFMutableSet alloc] initWithCapacity: 16]; + + [self retrieveState]; + } @catch (id e) { + [self release]; + @throw e; + } + + return self; +} + +- (void)dealloc +{ + [_pressedButtons release]; + + [super dealloc]; +} + +- (void)retrieveState +{ + XINPUT_STATE state = { 0 }; + + if (XInputGetStateFuncPtr(_index, &state) != ERROR_SUCCESS) + @throw [OFReadFailedException exceptionWithObject: self + requestedLength: sizeof(state) + errNo: 0]; + + [_pressedButtons removeAllObjects]; + + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_UP) + [_pressedButtons addObject: OFGameControllerButtonDPadUp]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_DOWN) + [_pressedButtons addObject: OFGameControllerButtonDPadDown]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_LEFT) + [_pressedButtons addObject: OFGameControllerButtonDPadLeft]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_RIGHT) + [_pressedButtons addObject: OFGameControllerButtonDPadRight]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_START) + [_pressedButtons addObject: OFGameControllerButtonStart]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_BACK) + [_pressedButtons addObject: OFGameControllerButtonSelect]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_LEFT_THUMB) + [_pressedButtons addObject: OFGameControllerButtonLeftStick]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_RIGHT_THUMB) + [_pressedButtons addObject: OFGameControllerButtonRightStick]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_LEFT_SHOULDER) + [_pressedButtons addObject: OFGameControllerButtonL]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_RIGHT_SHOULDER) + [_pressedButtons addObject: OFGameControllerButtonR]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_A) + [_pressedButtons addObject: OFGameControllerButtonA]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_B) + [_pressedButtons addObject: OFGameControllerButtonB]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_X) + [_pressedButtons addObject: OFGameControllerButtonX]; + if (state.Gamepad.wButtons & XINPUT_GAMEPAD_Y) + [_pressedButtons addObject: OFGameControllerButtonY]; + + _ZLPressure = (float)state.Gamepad.bLeftTrigger / 255; + _ZRPressure = (float)state.Gamepad.bRightTrigger / 255; + + if (_ZLPressure > 0) + [_pressedButtons addObject: OFGameControllerButtonZL]; + if (_ZRPressure > 0) + [_pressedButtons addObject: OFGameControllerButtonZR]; + + _leftAnalogStickPosition = OFMakePoint( + (float)state.Gamepad.sThumbLX / + (state.Gamepad.sThumbLX < 0 ? -INT16_MIN : INT16_MAX), + -(float)state.Gamepad.sThumbLY / + (state.Gamepad.sThumbLY < 0 ? -INT16_MIN : INT16_MAX)); + _rightAnalogStickPosition = OFMakePoint( + (float)state.Gamepad.sThumbRX / + (state.Gamepad.sThumbRX < 0 ? -INT16_MIN : INT16_MAX), + -(float)state.Gamepad.sThumbRY / + (state.Gamepad.sThumbRY < 0 ? -INT16_MIN : INT16_MAX)); +} + +- (OFString *)name +{ + return @"XInput 1.3"; +} + +- (OFSet OF_GENERIC(OFGameControllerButton) *)buttons +{ + return [OFSet setWithObjects: + OFGameControllerButtonA, OFGameControllerButtonB, + OFGameControllerButtonX, OFGameControllerButtonY, + OFGameControllerButtonL, OFGameControllerButtonR, + OFGameControllerButtonZL, OFGameControllerButtonZR, + OFGameControllerButtonStart, OFGameControllerButtonSelect, + OFGameControllerButtonLeftStick, OFGameControllerButtonRightStick, + OFGameControllerButtonDPadLeft, OFGameControllerButtonDPadRight, + OFGameControllerButtonDPadUp, OFGameControllerButtonDPadDown, nil]; +} + +- (OFSet OF_GENERIC(OFGameControllerButton) *)pressedButtons +{ + return [[_pressedButtons copy] autorelease]; +} + +- (bool)hasLeftAnalogStick +{ + return true; +} + +- (bool)hasRightAnalogStick +{ + return true; +} + +- (float)pressureForButton: (OFGameControllerButton)button +{ + if (button == OFGameControllerButtonZL) + return _ZLPressure; + if (button == OFGameControllerButtonZR) + return _ZRPressure; + + return ([self.pressedButtons containsObject: button] ? 1 : 0); +} + +- (OFString *)description +{ + return [OFString stringWithFormat: @"<%@: %@>", self.class, self.name]; +} +@end Index: src/test/OTAppDelegate.m ================================================================== --- src/test/OTAppDelegate.m +++ src/test/OTAppDelegate.m @@ -321,32 +321,28 @@ if (WPAD_ButtonsDown(0) & WPAD_BUTTON_A) break; VIDEO_WaitVSync(); } -#elif defined(OF_NINTENDO_DS) +#elif defined(OF_NINTENDO_DS) || defined(OF_NINTENDO_3DS) [OFStdOut setForegroundColor: [OFColor silver]]; [OFStdOut writeLine: @"Press A to continue"]; for (;;) { - swiWaitForVBlank(); - scanKeys(); - - if (keysDown() & KEY_A) - break; - } -#elif defined(OF_NINTENDO_3DS) - [OFStdOut setForegroundColor: [OFColor silver]]; - [OFStdOut writeLine: @"Press A to continue"]; - - for (;;) { - hidScanInput(); - - if (hidKeysDown() & KEY_A) - break; - - gspWaitForVBlank(); + void *pool = objc_autoreleasePoolPush(); + OFGameController *controller = + [[OFGameController controllers] objectAtIndex: 0]; + + if ([controller.pressedButtons containsObject: @"A"]) + break; + +# if defined(OF_NINTENDO_DS) + swiWaitForVBlank(); +# elif defined(OF_NINTENDO_3DS) + gspWaitForVBlank(); +# endif + objc_autoreleasePoolPop(pool); } #elif defined(OF_NINTENDO_SWITCH) [OFStdOut setForegroundColor: [OFColor silver]]; [OFStdOut writeLine: @"Press A to continue"]; Index: tests/Makefile ================================================================== --- tests/Makefile +++ tests/Makefile @@ -1,10 +1,11 @@ include ../extra.mk -SUBDIRS = ${TESTPLUGIN} \ - ${SUBPROCESS} \ - ${OBJC_SYNC} \ +SUBDIRS = ${TESTPLUGIN} \ + ${SUBPROCESS} \ + gamecontroller \ + ${OBJC_SYNC} \ terminal CLEAN = EBOOT.PBP \ boot.dol \ ${PROG_NOINST}.arm9 \ ADDED tests/gamecontroller/GameControllerTests.m Index: tests/gamecontroller/GameControllerTests.m ================================================================== --- /dev/null +++ tests/gamecontroller/GameControllerTests.m @@ -0,0 +1,101 @@ +/* + * Copyright (c) 2008-2024 Jonathan Schleifer + * + * All rights reserved. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License version 3.0 only, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * version 3.0 for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * version 3.0 along with this program. If not, see + * . + */ + +#include "config.h" + +#import "OFApplication.h" +#import "OFArray.h" +#import "OFColor.h" +#import "OFGameController.h" +#import "OFSet.h" +#import "OFStdIOStream.h" +#import "OFThread.h" + +@interface GameControllerTests: OFObject +@end + +OF_APPLICATION_DELEGATE(GameControllerTests) + +@implementation GameControllerTests +- (void)applicationDidFinishLaunching: (OFNotification *)notification +{ + OFArray *controllers = [OFGameController controllers]; + + [OFStdOut clear]; + + for (;;) { + [OFStdOut setCursorPosition: OFMakePoint(0, 0)]; + + for (OFGameController *controller in controllers) { + OFArray OF_GENERIC(OFGameControllerButton) *buttons = + controller.buttons.allObjects.sortedArray; + size_t i = 0; + + [OFStdOut setForegroundColor: [OFColor green]]; + [OFStdOut writeLine: controller.name]; + + [controller retrieveState]; + + for (OFGameControllerButton button in buttons) { + float pressure = + [controller pressureForButton: button]; + + if (pressure == 1) + [OFStdOut setForegroundColor: + [OFColor red]]; + else if (pressure > 0.5) + [OFStdOut setForegroundColor: + [OFColor yellow]]; + else if (pressure > 0) + [OFStdOut setForegroundColor: + [OFColor green]]; + else + [OFStdOut setForegroundColor: + [OFColor gray]]; + + [OFStdOut writeFormat: @"[%@]", button]; + + if (++i == 5) { + [OFStdOut writeString: @"\n"]; + i = 0; + } else + [OFStdOut writeString: @" "]; + } + [OFStdOut setForegroundColor: [OFColor gray]]; + [OFStdOut writeString: @"\n"]; + + if (controller.hasLeftAnalogStick) { + OFPoint position = + controller.leftAnalogStickPosition; + [OFStdOut writeFormat: @"(%5.2f, %5.2f) ", + position.x, position.y]; + } + if (controller.hasRightAnalogStick) { + OFPoint position = + controller.rightAnalogStickPosition; + [OFStdOut writeFormat: @"(%5.2f, %5.2f)", + position.x, position.y]; + } + [OFStdOut writeString: @"\n"]; + } + + [OFThread sleepForTimeInterval: 1.f / 60.f]; + } +} +@end ADDED tests/gamecontroller/Makefile Index: tests/gamecontroller/Makefile ================================================================== --- /dev/null +++ tests/gamecontroller/Makefile @@ -0,0 +1,65 @@ +include ../../extra.mk + +PROG_NOINST = gamecontroller_tests${PROG_SUFFIX} +SRCS = GameControllerTests.m + +include ../../buildsys.mk + +.PHONY: run +run: + rm -f libobjfw.so.${OBJFW_LIB_MAJOR} + rm -f libobjfw.so.${OBJFW_LIB_MAJOR_MINOR} + rm -f objfw${OBJFW_LIB_MAJOR}.dll libobjfw.${OBJFW_LIB_MAJOR}.dylib + rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR} + rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR_MINOR} + rm -f objfwrt${OBJFWRT_LIB_MAJOR}.dll + rm -f libobjfwrt.${OBJFWRT_LIB_MAJOR}.dylib + if test -f ../../src/libobjfw.so; then \ + ${LN_S} ../../src/libobjfw.so libobjfw.so.${OBJFW_LIB_MAJOR}; \ + ${LN_S} ../../src/libobjfw.so \ + libobjfw.so.${OBJFW_LIB_MAJOR_MINOR}; \ + elif test -f ../../src/libobjfw.so.${OBJFW_LIB_MAJOR_MINOR}; then \ + ${LN_S} ../../src/libobjfw.so.${OBJFW_LIB_MAJOR_MINOR} \ + libobjfw.so.${OBJFW_LIB_MAJOR_MINOR}; \ + fi + if test -f ../../src/objfw${OBJFW_LIB_MAJOR}.dll; then \ + ${LN_S} ../../src/objfw${OBJFW_LIB_MAJOR}.dll \ + objfw${OBJFW_LIB_MAJOR}.dll; \ + fi + if test -f ../../src/libobjfw.dylib; then \ + ${LN_S} ../../src/libobjfw.dylib \ + libobjfw.${OBJFW_LIB_MAJOR}.dylib; \ + fi + if test -f ../../src/runtime/libobjfwrt.so; then \ + ${LN_S} ../../src/runtime/libobjfwrt.so \ + libobjfwrt.so.${OBJFWRT_LIB_MAJOR}; \ + ${LN_S} ../../src/runtime/libobjfwrt.so \ + libobjfwrt.so.${OBJFWRT_LIB_MAJOR_MINOR}; \ + elif test -f ../../src/runtime/libobjfwrt.so.${OBJFWRT_LIB_MAJOR_MINOR}; then \ + ${LN_S} ../../src/runtime/libobjfwrt.so.${OBJFWRT_LIB_MAJOR_MINOR} libobjfwrt.so.${OBJFWRT_LIB_MAJOR_MINOR}; \ + fi + if test -f ../../src/runtime/objfwrt${OBJFWRT_LIB_MAJOR}.dll; then \ + ${LN_S} ../../src/runtime/objfwrt${OBJFWRT_LIB_MAJOR}.dll \ + objfwrt${OBJFWRT_LIB_MAJOR}.dll; \ + fi + if test -f ../../src/runtime/libobjfwrt.dylib; then \ + ${LN_S} ../../src/runtime/libobjfwrt.dylib \ + libobjfwrt.${OBJFWRT_LIB_MAJOR}.dylib; \ + fi + LD_LIBRARY_PATH=.$${LD_LIBRARY_PATH+:}$$LD_LIBRARY_PATH \ + DYLD_LIBRARY_PATH=.$${DYLD_LIBRARY_PATH+:}$$DYLD_LIBRARY_PATH \ + LIBRARY_PATH=.$${LIBRARY_PATH+:}$$LIBRARY_PATH \ + ${WRAPPER} ./${PROG_NOINST}; EXIT=$$?; \ + rm -f libobjfw.so.${OBJFW_LIB_MAJOR}; \ + rm -f libobjfw.so.${OBJFW_LIB_MAJOR_MINOR}; \ + rm -f objfw${OBJFW_LIB_MAJOR}.dll; \ + rm -f libobjfw.${OBJFW_LIB_MAJOR}.dylib; \ + rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR}; \ + rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR_MINOR}; \ + rm -f objfwrt${OBJFWRT_LIB_MAJOR}.dll; \ + rm -f libobjfwrt.${OBJFWRT_LIB_MAJOR}.dylib; \ + exit $$EXIT + +CPPFLAGS += -I../../src -I../../src/exceptions -I../../src/runtime -I../.. +LIBS := -L../../src -lobjfw -L../../src/runtime ${RUNTIME_LIBS} ${LIBS} +LD = ${OBJC}