CONSOLEINPUT: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
* To clear all previous input data, read [[_CONSOLEINPUT]] in a loop until it returns 0. | * To clear all previous input data, read [[_CONSOLEINPUT]] in a loop until it returns 0. | ||
* '''[[Keywords currently not supported by QB64#Keywords_not_supported_in_Linux_or_macOS_versions|Keyword not supported in Linux or macOS versions]]''' | * '''[[Keywords currently not supported by QB64#Keywords_not_supported_in_Linux_or_macOS_versions|Keyword not supported in Linux or macOS versions]]''' | ||
{{PageAvailability}} | |||
<!-- QB64 = a version or none, QBPE = a version or all, Platforms = yes or no --> | |||
<gallery widths="48px" heights="48px" mode="nolines"> | |||
File:Qb64.png|'''v1.4''' | |||
File:Qbpe.png|'''all''' | |||
File:Apix.png | |||
File:Win.png|'''yes''' | |||
File:Lnx.png|'''no''' | |||
File:Osx.png|'''no''' | |||
</gallery> | |||
<!-- additional availability notes go below here --> | |||
Revision as of 17:36, 6 October 2024
The _CONSOLEINPUT function is used to monitor any new mouse or keyboard input coming from a $CONSOLE window. It must be called in order for _CINP to return valid values. Windows-only.
Syntax
- infoExists%% = _CONSOLEINPUT
Description
- Returns 1 if new keyboard information is available, 2 if mouse information is available, otherwise it returns 0.
- Must be called before reading any of the other mouse functions and before reading _CINP.
- To clear all previous input data, read _CONSOLEINPUT in a loop until it returns 0.
- Keyword not supported in Linux or macOS versions
Availability
Examples
Example 1: Reading individual key strokes from a console window (Windows).
$CONSOLE:ONLY _DEST _CONSOLE: _SOURCE _CONSOLE PRINT "Press any key, and I'll give you the scan code for it. <ESC> quits the demo." PRINT PRINT DO x = _CONSOLEINPUT IF x = 1 THEN 'read only keyboard input ( = 1) c = _CINP PRINT c; END IF LOOP UNTIL c = 1 END |
See also