Artifact f54e2d335a76d43dbdebaa27be9a951291c7b3340e071ba49bf12eda2b903783:
- File
src/hid/OHGameControllerDirectionalPad.m
— part of check-in
[afae3291bf]
at
2024-06-03 19:39:51
on branch trunk
— ObjFWHID: Change prefix to OH
Let's leave 3 letter prefixes to 3rd parties. (user: js, size: 2957) [annotate] [blame] [check-ins using]
/* * Copyright (c) 2008-2024 Jonathan Schleifer <js@nil.im> * * 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 * <https://www.gnu.org/licenses/>. */ #include "config.h" #import "OHGameControllerDirectionalPad.h" #import "OHGameControllerEmulatedAxis.h" #import "OHGameControllerEmulatedButton.h" @implementation OHGameControllerDirectionalPad @synthesize xAxis = _xAxis, yAxis = _yAxis; @synthesize upButton = _upButton, downButton = _downButton; @synthesize leftButton = _leftButton, rightButton = _rightButton; - (instancetype)initWithName: (OFString *)name { OF_INVALID_INIT_METHOD } - (instancetype)initWithName: (OFString *)name xAxis: (OHGameControllerAxis *)xAxis yAxis: (OHGameControllerAxis *)yAxis { self = [super initWithName: name]; @try { _xAxis = [xAxis retain]; _yAxis = [yAxis retain]; _upButton = [[OHGameControllerEmulatedButton alloc] initWithAxis: _yAxis positive: false]; _downButton = [[OHGameControllerEmulatedButton alloc] initWithAxis: _yAxis positive: true]; _leftButton = [[OHGameControllerEmulatedButton alloc] initWithAxis: _xAxis positive: false]; _rightButton = [[OHGameControllerEmulatedButton alloc] initWithAxis: _xAxis positive: true]; } @catch (id e) { [self release]; @throw e; } return self; } - (instancetype)initWithName: (OFString *)name upButton: (OHGameControllerButton *)upButton downButton: (OHGameControllerButton *)downButton leftButton: (OHGameControllerButton *)leftButton rightButton: (OHGameControllerButton *)rightButton { self = [super initWithName: name]; @try { _upButton = [upButton retain]; _downButton = [downButton retain]; _leftButton = [leftButton retain]; _rightButton = [rightButton retain]; _xAxis = [[OHGameControllerEmulatedAxis alloc] initWithNegativeButton: _leftButton positiveButton: _rightButton]; _yAxis = [[OHGameControllerEmulatedAxis alloc] initWithNegativeButton: _upButton positiveButton: _downButton]; } @catch (id e) { [self release]; @throw e; } return self; } - (void)dealloc { [_xAxis release]; [_yAxis release]; [_upButton release]; [_downButton release]; [_leftButton release]; [_rightButton release]; [super dealloc]; } - (OFString *)description { return [OFString stringWithFormat: @"<%@: %@>", self.class, self.name]; } @end