1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 15:00:38 +00:00
QB64-PE/internal/help/STRIG(n).txt

50 lines
1.6 KiB
Plaintext
Raw Normal View History

The {{KW|STRIG(n)}} statement controls event trapping for a particular joystick or game pad device button.
{{PageSyntax}}
::STRIG({{Parameter|button%}}) {ON|OFF|STOP}
QB64 {{PageSyntax}}
::STRIG[(''button_function%''[, ''device_number%''])] {ON|OFF|STOP}
{{PageDescription}}
* {{Parameter|button function}} specifies the device's button function. Even functions record events while odd ones read the actual presses.
* '''QB64''' can designate a button function and controller device number from 0 to 256.
* When no parameters are used '''QB64''' enables, disables or suspends the reading of ALL button events.
* [[STRIG(n)|ON]] specifies that event trapping is turned on for the specified button.
* [[STRIG(n)|OFF]] specifies that event trapping is turned off for the specified button.
* If {{KW|STRIG(n)|STOP}} is specified, event trapping is suspended for the specified button. Further joystick button events are remembered and trapped, in order, after the next {{KW|STRIG(n)|STRIG(n) ON}} statement is used.
''Example:''
{{CodeStart}} '' ''
{{Cl|ON STRIG(n)|ON STRIG}}(0) {{Cl|GOSUB}} 10
{{Cl|STRIG(n)|STRIG}}(0)ON
DO
2019-04-15 01:15:33 +00:00
{{Cl|PRINT}} ".";
{{Cl|_LIMIT}} 30
2019-04-15 01:15:33 +00:00
{{Cl|LOOP}} {{Cl|UNTIL}} {{Cl|INKEY$}} <> ""
{{Cl|END}}
10
2019-04-15 01:15:33 +00:00
a$ = "[STRIG 0 EVENT]"
{{Cl|FOR...NEXT|FOR}} x = 1 {{Cl|TO}} {{Cl|LEN}}(a$)
{{Cl|PRINT}} {{Cl|MID$}}(a$, x, 1);
{{Cl|_DELAY}} 0.02
{{Cl|NEXT}}
{{Cl|RETURN}} '' ''
{{CodeEnd}}
{{PageSeeAlso}}
* [[ON STRIG(n)]] {{text|(event statement)}}
* [[STRIG]], [[STICK]] {{text|(functions)}}
* [http://en.wikipedia.org/wiki/Analog_stick Single and Dual Stick Controllers]
2019-04-15 01:15:33 +00:00
{{PageNavigation}}
<