1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 15:35:53 +00:00
QB64-PE/internal/help/STRIG(n).txt
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

48 lines
1.6 KiB
Plaintext

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
{{Cl|PRINT}} &quot;.&quot;;
{{Cl|_LIMIT}} 30
{{Cl|LOOP}} {{Cl|UNTIL}} {{Cl|INKEY$}} &lt;&gt; &quot;&quot;
{{Cl|END}}
10
a$ = &quot;[STRIG 0 EVENT]&quot;
{{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]
{{PageNavigation}}