RetroArch/input/inc/GameController/GCControllerAxisInput.h
2015-04-05 15:41:41 +02:00

33 lines
1.1 KiB
Objective-C

//
// GCControllerAxisInput.h
// GameController
//
// Copyright (c) 2012 Apple Inc. All rights reserved.
//
#import "GameController.h"
GAMECONTROLLER_EXPORT
@interface GCControllerAxisInput : GCControllerElement
/**
Set this block if you want to be notified when the value on this axis changes.
@param axis the element that has been modified.
@param value the value the axis was set to at the time the valueChangedHandler fired.
*/
typedef void (^GCControllerAxisValueChangedHandler)(GCControllerAxisInput *axis, float value);
@property (copy) GCControllerAxisValueChangedHandler valueChangedHandler;
/**
A normalized value for the input, between -1 and 1 for axis inputs. The values are deadzoned and saturated before they are returned
so there is no value ouside the range. Deadzoning does not remove values from the range, the full 0 to 1 magnitude of values
are possible from the input.
As an axis is often used in a digital sense, you can rely on a value of 0 meaning the axis is inside the deadzone.
Any value greater than or less than zero is not in the deadzone.
*/
@property (readonly) float value;
@end