Difference between revisions of "cock.bind"

m (Arguments)
m (Arguments)
Line 10: Line 10:
 
{{param|string|device|[[cock.inputdevices|Input device]] to use.}}
 
{{param|string|device|[[cock.inputdevices|Input device]] to use.}}
 
{{param|string|key|[[cock.keys|Reading]] of an input device to bind.}}
 
{{param|string|key|[[cock.keys|Reading]] of an input device to bind.}}
{{param|string|inverse|[[cock.modes|Inversion]] mode.}}
+
{{param|string|inverse|Optional. [[cock.modes|Inversion]] mode. Will use "positive cutoff" if not provided.}}
{{param|string|delta|[[cock.modes|Delta]] mode.}}
+
{{param|string|delta|Optional. [[cock.modes|Delta]] mode. Will use "bypass" if nor provided.}}
{{param|number|value|Raw value of the input reading during capture.}}
+
{{param|number|value|Optional. Raw value of the input reading during capture. Will use 0 if not provided.}}
{{param|string|joystick|[[cock.inputdevices|Internal alias]] of joystick to use.}}
+
{{param|string|joystick|Optional. [[cock.inputdevices|Internal alias]] of joystick to use. Will use 1 if not provided.}}
 
{{param|string|longdata|A string coming from [[cock.events|cock.controlcaptured]] event.}}
 
{{param|string|longdata|A string coming from [[cock.events|cock.controlcaptured]] event.}}
  

Revision as of 11:04, 1 September 2013

Binds controls to the current layout.

Synopsis

Function

cock.bind ( self, map, option, device, key, inverse, delta, value, joystick )
cock.bind ( self, longdata )

Arguments

table self
An object to use.
string map
A controls input map to bind controls.
string option
Optional. An option to which bind the controls. Will revert to cock.defaultOption if not provided.
string device
Input device to use.
string key
Reading of an input device to bind.
string inverse
Optional. Inversion mode. Will use "positive cutoff" if not provided.
string delta
Optional. Delta mode. Will use "bypass" if nor provided.
number value
Optional. Raw value of the input reading during capture. Will use 0 if not provided.
string joystick
Optional. Internal alias of joystick to use. Will use 1 if not provided.
string longdata
A string coming from cock.controlcaptured event.

Alternatively, instead of using literal values for device, key, inverse, delta and joystick arguments, you can pass numerical values. Although, just using magic numbers to set values by hand in your code will only make it messier, and given that internal conversion is an optimized operation and you wouldn't call this function hundreds of times every frame, that would make no performance difference.

See also