Merge branch 'master' of git://factorcode.org/git/factor
[factor/jcg.git] / extra / game-input / game-input-docs.factor
blob5428ca66d042bf72bf288317b389e3b90cfd09ec
1 USING: help.markup help.syntax kernel ui.gestures quotations
2 sequences strings math ;
3 IN: game-input
5 ARTICLE: "game-input" "Game controller input"
6 "The " { $vocab-link "game-input" } " vocabulary provides cross-platform access to game controller devices such as joysticks and gamepads. It also provides an interface for polling raw keyboard input." $nl
7 "The game input interface must be initialized before being used:"
8 { $subsection open-game-input }
9 { $subsection close-game-input }
10 { $subsection with-game-input }
11 "Once the game input interface is open, connected controller devices can be enumerated:"
12 { $subsection get-controllers }
13 { $subsection find-controller-products }
14 { $subsection find-controller-instance }
15 "These " { $link controller } " objects can be queried of their identity:"
16 { $subsection product-string }
17 { $subsection product-id }
18 { $subsection instance-id }
19 "A hook is provided for invoking the system calibration tool:"
20 { $subsection calibrate-controller }
21 "The current state of a controller or the keyboard can be read:"
22 { $subsection read-controller }
23 { $subsection read-keyboard }
24 { $subsection controller-state }
25 { $subsection keyboard-state } ;
27 HELP: open-game-input
28 { $description "Initializes the game input interface. An exception will be thrown if the initialization fails. If the game input interface is already opened, nothing happens." } ;
30 HELP: close-game-input
31 { $description "Closes the game input interface, releasing any allocated resources. Once this word is called, any remaining " { $link controller } " objects are invalid. If the game input interface is not opened, nothing happens." } ;
33 HELP: game-input-opened?
34 { $values { "?" "a boolean" } }
35 { $description "Returns true if the game input interface is open, false otherwise." } ;
37 HELP: with-game-input
38 { $values { "quot" quotation } }
39 { $description "Initializes the game input interface for the dynamic extent of " { $snippet "quotation" } "." } ;
41 { open-game-input close-game-input with-game-input game-input-opened? } related-words
43 HELP: get-controllers
44 { $values { "sequence" "A " { $link sequence } " of " { $link controller } "s" } }
45 { $description "Returns a " { $link sequence } " of " { $link controller } " objects representing the currently connected game controllers. The order of the controller objects in the sequence is not significant or guaranteed to be stable between calls to " { $snippet "get-controllers" } "." } ;
47 HELP: find-controller-products
48 { $values { "product-id" "A product ID as returned by " { $link product-id } } { "sequence" "A " { $link sequence } " of " { $link controller } "s" } }
49 { $description "Returns a " { $link sequence } " of " { $link controller } " objects representing the currently connected game controllers with the given " { $link product-id } ". The order of the controller objects in the sequence is not significant or guaranteed to be stable between calls to " { $snippet "find-controller-products" } "." } ;
51 HELP: find-controller-instance
52 { $values { "product-id" "A product ID as returned by " { $link product-id } } { "instance-id" "An instance ID as returned by " { $link instance-id } "." } { "controller/f" "A " { $link controller } " object, or " { $link f } } }
53 { $description "Returns the " { $link controller } " instance identified by " { $snippet "product-id" } " and " { $snippet "instance-id" } ". If the identified device is not currently attached, " { $link f } " is returned." } ;
55 HELP: controller
56 { $class-description "Objects of this class represent game controller devices such as joysticks and gamepads. They should be treated as opaque by client code." } ;
58 HELP: product-string
59 { $values { "controller" controller } { "string" string } }
60 { $description "Returns a human-readable string describing the game controller device represented by " { $snippet "controller" } ". This string is not necessarily unique to the product or instance; to uniquely identify the device, see " { $link product-id } " and " { $link instance-id } "." } ;
62 HELP: product-id
63 { $values { "controller" controller } { "id" "A unique identifier" } }
64 { $description "Returns an identifier uniquely representing the kind of game controller device represented by " { $snippet "controller" } ". This identifier will be the same for devices of the same make and manufacturer. The type of the identifier value is platform-specific, but equivalent " { $snippet "product-id" } "s are guaranteed to be testable with the " { $link = } " word. The identifier can be used to find devices of the same kind with the " { $link find-controller-products } " word." } ;
66 HELP: instance-id
67 { $values { "controller" controller } { "id" "A unique identifier" } }
68 { $description "Returns an identifier uniquely representing the game controller device represented by " { $snippet "controller" } ". This identifier paired with the device's " { $link product-id } " provides a unique identifier for a particular device that persists between reboots (but not necessarily between computers). This unique identifier can be used to find the same device again with the " { $snippet "find-controller-instance" } " word. Depending on the platform, the instance-id may change if the device is plugged into a different port. The type of the identifier value is platform-specific, but equivalent " { $snippet "instance-id" } "s are guaranteed to be testable with the " { $link = } " word." } ;
70 { product-string product-id instance-id find-controller-products find-controller-instance } related-words
72 HELP: calibrate-controller
73 { $values { "controller" controller } }
74 { $description "Invokes the operating system's calibration tool for " { $snippet "controller" } ". If the operating system does not have a calibration tool, this word does nothing." } ;
76 HELP: read-controller
77 { $values { "controller" controller } { "controller-state" controller-state } }
78 { $description "Reads the current state of " { $snippet "controller" } ". See the documentation for the " { $link controller-state } " class for details of the returned value's format. If the device is no longer available, " { $link f } " is returned." }
79 { $warning "For efficiency, the implementation may reuse the returned " { $snippet "controller-state" } " object next time " { $snippet "read-controller" } " is called on the same controller. You should " { $link clone } " any values from the returned tuple you need to preserve." } ;
81 { controller-state controller read-controller } related-words
83 HELP: read-keyboard
84 { $values { "keyboard-state" keyboard-state } }
85 { $description "Reads the current raw state of the keyboard. See the documentation for the " { $link keyboard-state } " class for details on the returned value's format." }
86 { $warning "For efficiency, the implementation may reuse the returned " { $snippet "keyboard-state" } " object next time " { $snippet "read-keyboard" } " is called. You should " { $link clone } " any values from the returned tuple you need to preserve."
87 $nl "The keyboard state returned by this word is unprocessed by any keymaps, modifier keys, key repeat settings, or other operating environment postprocessing. Because of this, " { $snippet "read-keyboard" } " should not be used for text entry purposes. The Factor UI's standard gesture mechanism should be used in cases where the logical meaning of keypresses is needed; see " { $link "keyboard-gestures" } "." } ;
89 HELP: controller-state
90 { $class-description "The " { $link read-controller } " word returns objects of this class. " { $snippet "controller-state" } " objects have the following slots:"
91 { $list
92     { { $snippet "x" } " contains the position of the device's X axis." }
93     { { $snippet "y" } " contains the position of the device's Y axis." }
94     { { $snippet "z" } " contains the position of the device's Z axis, if any." }
95     { { $snippet "rx" } " contains the rotational position of the device's X axis, if available." }
96     { { $snippet "ry" } " contains the rotational position of the device's Y axis, if available." }
97     { { $snippet "rz" } " contains the rotational position of the device's Z axis, if available." }
98     { { $snippet "slider" } " contains the position of the device's throttle slider, if any." }
99     { { $snippet "pov" } " contains the state of the device's POV hat, if any." }
100     { { $snippet "buttons" } " contains a sequence of values indicating the state of every button on the device." }
102 "The values are formatted as follows:"
103 { $list
104     { "For the axis slots (" { $snippet "x" } ", " { $snippet "y" } ", " { $snippet "z" } ", " { $snippet "rx" } ", " { $snippet "ry" } ", " { $snippet "rz" } "), a " { $link float } " value between -1.0 and 1.0 is returned." }
105     { "For the " { $snippet "slider" } " slot, a value between 0.0 and 1.0 is returned." }
106     { "For the " { $snippet "pov" } " slot, one of the following symbols is returned:" { $list
107         { { $link pov-neutral } }
108         { { $link pov-up } }
109         { { $link pov-up-right } }
110         { { $link pov-right } }
111         { { $link pov-down-right } }
112         { { $link pov-down } }
113         { { $link pov-down-left } }
114         { { $link pov-left } }
115         { { $link pov-up-left } }
116     } }
117     { "For each element of the " { $snippet "buttons" } " array, " { $link f } " indicates that the corresponding button is released. If the button is pressed, a value between 0.0 and 1.0 is returned indicating the pressure on the button (or simply 1.0 if the device's buttons are on/off only)." }
118     { "A value of " { $link f } " in any slot (besides the elements of " { $snippet "buttons" } ") indicates that the corresponding element is not present on the device." } } } ;
120 HELP: keyboard-state
121 { $class-description "The " { $link read-keyboard } " word returns objects of this class. The " { $snippet "keys" } " slot of a " { $snippet "keyboard-state" } " object contains a " { $link sequence } " of 256 members representing the state of the keys on the keyboard. Each element is a boolean value indicating whether the corresponding key is pressed. The sequence is indexed by scancode as defined under usage page 7 of the USB HID standard. Named scancode constants are provided in the " { $vocab-link "game-input.scancodes" } " vocabulary." }
122 { $warning "The scancodes used to index " { $snippet "keyboard-state" } " objects correspond to physical key positions on the keyboard--they are unaffected by keymaps, modifier keys, or other operating environment postprocessing. The face value of the constants in " { $vocab-link "game-input.scancodes" } " do not necessarily correspond to what the user expects the key to type. Because of this, " { $link read-keyboard } " should not be used for text entry purposes. The Factor UI's standard gesture mechanism should be used in cases where the logical meaning of keypresses is needed; see " { $link "keyboard-gestures" } "." } ;
124 { keyboard-state read-keyboard } related-words
126 ABOUT: "game-input"