1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +00:00
Commit graph

364 commits

Author SHA1 Message Date
Luke Ceddia 8f72d58c57 Manually update internal/source 2020-01-02 19:10:56 +11:00
FellippeHeitor 49f265f1c2 Adds $ASSERTS, $ASSERTS:CONSOLE and _ASSERT condition[, message$] 2020-01-01 18:20:30 -03:00
FellippeHeitor f1e26b2010 Prepares QB64 for bootstrapping with _ASSERT in mind. [ci skip] 2020-01-01 18:19:51 -03:00
Autobuild process 6c513f9fba Autobuild update [ci skip] 2020-01-01 15:33:19 +00:00
Autobuild process 9b3753b40c Autobuild update [ci skip] 2020-01-01 15:03:09 +00:00
Autobuild process d1c3149528 Autobuild update [ci skip] 2019-12-31 05:53:18 +00:00
Autobuild process 7e4d97fa95 Autobuild update [ci skip] 2019-12-30 02:53:19 +00:00
FellippeHeitor 7262febc94 Fixes _CONNECTIONADDRESS. Closes #100 2019-12-23 01:01:52 -03:00
Autobuild process 44436d9ceb Autobuild update [ci skip] 2019-12-17 15:48:29 +00:00
Autobuild process d9fa0e68c2 Autobuild update [ci skip] 2019-12-17 12:23:45 +00:00
Fellippe Heitor 60c587386f
Merge pull request #109 from RhoSigma-QB64/development
extended support for &B prefixed number strings
2019-12-08 11:57:18 -03:00
Fellippe Heitor c848e0d40e
Merge pull request #108 from QB64Cobalt/development
Corrections to Bit Routines to allow for unsigned integer64 values
2019-12-08 11:55:14 -03:00
Roland Heyder d40902a1ed
extended support for &B prefixed number strings
Aditonal to VAL, the &B prefixed numbers are now also recognized by INPUT (keyboard and file input) and also by READ, if those numbers are noted in DATA statements.
2019-12-08 01:13:57 +01:00
SteveMcNeill 752a444544 Update to enable SLEEP with a set TIME for use with Windows Console 2019-12-07 08:46:29 -05:00
QB64Cobalt 539a71ef25
Update qbx.cpp 2019-12-05 07:08:31 -08:00
SteveMcNeill 58b82dff13 Minor change to bit routines, added ability to ignore warnings in IDE 2019-12-04 12:30:02 -05:00
SteveMcNeill 472bf29d99 Change to the Console Font routine.
CFont uses a few function calls which aren't supported by anything older than Windows Vista, while QB64 otherwise works all the way back to Windows XP.  Since there's no desire to make us lose functionality with older systems and obsolute them to oblivion, the code has been commented out and replaced with a stub as default.  Users of older machines can simply use it "as is", as can folks who don't care about console functionality.  Users with versions of Windows from Vista up, can simply uncomment the code (comment out the placeholder stub), and then purge libqb so we automatically rebuild our library to make use of the routine.

It seemed the easiest way to keep it in there, more or less, so that people who wanted to use it can, while not bothering the rest of the user base.  There just needs to be  a short note wrote up in the documention on how to "enable the command", but it's not a hard process (uncomment a few lines, comment a few others, and run a batch file -- if a programmer can't handle that much, then they don't need the command to start with...).
2019-11-29 04:01:22 -05:00
SteveMcNeill c1142e67ce Change to _PUTIMAGE so _SOURCE can be the same as _DEST without erroring out. 2019-11-27 03:22:07 -05:00
Fellippe Heitor 5ff044b027
Merge pull request #104 from QB64Cobalt/development
Added 4 New Bit Functions
2019-11-16 22:08:22 -03:00
QB64Cobalt d0935e041e
Update qbx.cpp 2019-11-16 16:20:22 -08:00
SteveMcNeill 0c1dcaf541 Minor patch to SLEEP and the console, so it only responds with keydown events and not key up events. 2019-10-30 17:57:33 -04:00
SteveMcNeill eba05938bb Pushed changes to enhance the Windows Console Experience
Window's CONSOLE support has been extended so that:

CSRLIN support added.
POS(0) support added.
LOCATE support added. (Works with optional parameters.)
COLOR support added.
SCREEN support added to get both character and color information of any point on the console.
tab() glitch fixed. (Which could cause an endless loop when printing with comma spaced text/numbers.)
_WIDTH support added.
_HEIGHT support added.
WIDTH support added, with 2 new parameters added so we can set the buffer width and buffer height also.
CLS support semi-added.  (Doesn't accept colored backgrounds; it clears the screen black.  I'm getting tired of working up console stuff which I probably won't ever use myself...)
SLEEP support added.
END support added so we now end with any keypress and not just enter.

_CONSOLEINPUT added, so we can tell the difference in mouse and keyboard input.
_CINP(toggle) support added, which allows us to get single character keystrokes from the console.
_CONSOLEFONT FontName, FontSize support added, which allows us to change the font and font size we use for the console.
_CONSOLECURSOR _SHOW|_HIDE, cursorsize support added, which allows us to show or hide the cursor in the console, and to change its size (from 0 to 100), as desired.

New keyboard commands added:

_CAPSLOCK -- returns 1 if caps lock is on, 0 if it isn't.
_NUMLOCK -- as above, but for num lock
_SCROLLOCK -- as above, but for scroll lock

_TOGGLE_CAPSLOCK -- toggles the caps lock state for us.
_TOGGLE_NUMLOCK -- same, but for num lock
_TOGGLE_SCROLLOCK -- same, but for scroll lock
2019-08-27 19:52:02 -04:00
SteveMcNeill 449bdecacd Adding ZLIB into the QB64 parts system for windows.
Two new keywords added:
FUNCTION _INFLATE$ (text$)
FUNCTION _DEFLATE$ (text$)

Use of these commands can compress and decompress strings using the ZLIB library.
2019-08-27 18:22:07 -04:00
SteveMcNeill f01d13f957 Quick patch to _STRICMP. Enhancement to $COLOR not affecting line numbers. 2019-08-27 17:27:35 -04:00
Autobuild process 9805accab2 Autobuild update [ci skip] 2019-04-28 11:54:47 +00:00
FellippeHeitor cc00228635 Adds extra help files that were being ignored. [ci skip] 2019-04-14 22:20:04 -03:00
FellippeHeitor a3a1047a8a Updates help files [ci skip] 2019-04-14 22:15:33 -03:00
FellippeHeitor 729557fda2 Oh,... and this. The last bit of virtual keyboard vestige. 2019-04-14 22:01:56 -03:00
FellippeHeitor 4023f7811e Manual update of internal/source [ci skip] 2019-04-14 18:52:07 -03:00
FellippeHeitor 31a855d642 Removes dead Android references. 2019-04-14 15:33:19 -03:00
FellippeHeitor 3918db63cc Removes dead Qloud references. 2019-04-14 14:42:49 -03:00
Autobuild process 4c39729ece Autobuild update [ci skip] 2019-04-07 12:47:56 +00:00
FellippeHeitor 18f52b4fa5 Maybe -no-pie will work this time for Linux without breaking autobuilds? 2019-04-04 01:40:14 -03:00
Autobuild process 105a6ff7d4 Autobuild update [ci skip] 2019-04-01 04:19:05 +00:00
FellippeHeitor f8c989a079 Moves glutSetWindowTitle call to proper place on macOS. Fixes #75 for good. 2019-03-31 23:38:36 -03:00
FellippeHeitor 62acc0710c Revert "Fixes #90"
This reverts commit af0c41316a.
2019-03-31 21:01:59 -03:00
FellippeHeitor 982ea40daf Revert "Minor bugs fixed in clear_console functions"
This reverts commit 877089972b.
2019-03-31 21:00:43 -03:00
Autobuild process 71a7150861 Autobuild update [ci skip] 2019-03-31 23:29:05 +00:00
FellippeHeitor ca446b471d Temporarily disables changing _TITLE on macOS. 2019-03-29 11:59:52 -03:00
Dustin Boyd 877089972b Minor bugs fixed in clear_console functions
- Windows: cursor returns to top-left of console screen buffer
- Non-Windows: isatty(stdout) check to prevent CLS from working when
               stdout is redirected
2019-02-15 18:20:04 -06:00
Dustin Boyd af0c41316a Fixes #90 2019-02-15 16:34:31 -06:00
Autobuild process f71ca100ed Autobuild update [ci skip] 2019-01-29 12:43:38 +00:00
Autobuild process dbec9fae0d Autobuild update [ci skip] 2019-01-13 18:43:58 +00:00
Luke Ceddia a2bf4afd7a Merge branch 'Mingw-8.10-Compiler' into development 2019-01-04 21:36:43 +11:00
Luke Ceddia ae7e1d46d8 Add binaries 2019-01-02 01:40:26 +11:00
Luke Ceddia eda0c24f50 Add unpacked mingw32 and mingw64 2019-01-01 22:40:38 +11:00
Autobuild process a2da0624fa Autobuild update [ci skip] 2018-12-31 04:22:26 +00:00
Luke Ceddia c329ef85f6 Repair LINE behaviours 2018-12-28 22:01:34 +11:00
Luke Ceddia fac8188bc5 _lrotl -> rotateLeft 2018-12-28 21:57:00 +11:00
Luke Ceddia ddd83c0238 Update to gcc 8.1 2018-12-28 21:33:06 +11:00