Just a tiny and fun bit of code - Printable Version +- QB64 Phoenix Edition (https://staging.qb64phoenix.com) +-- Forum: QB64 Rising (https://staging.qb64phoenix.com/forumdisplay.php?fid=1) +--- Forum: QBJS, BAM, and Other BASICs (https://staging.qb64phoenix.com/forumdisplay.php?fid=50) +--- Thread: Just a tiny and fun bit of code (/showthread.php?tid=1755) |
Just a tiny and fun bit of code - CharlieJV - 06-15-2023 Give it a spin in BAM : (from page 422, Handbook of BASIC: for the IBM PC, XT, AT, PS/2, and compatibles) Code: (Select All) SCREEN 0 RE: Just a tiny and fun bit of code - TerryRitchie - 06-15-2023 (06-15-2023, 02:30 AM)CharlieJV Wrote: Give it a spin in BAM :Cool, that is almost exactly how I use to create large scrolling text in screen 0 back in the day using QuickBasic 4.x. In fact, I believe I implemented this very style of code in my Super MegaBug game to create the large font used in the game. RE: Just a tiny and fun bit of code - Jack - 06-15-2023 thanks CharlieJV I moded it a bit for QB64, I hope that you won't mind Code: (Select All)
RE: Just a tiny and fun bit of code - CharlieJV - 06-15-2023 (06-15-2023, 10:29 AM)Jack Wrote: thanks CharlieJV Mind? Never. Any BASIC program modded and ported to any and every BASIC implementation under the sun (especially QB64pe for the benefit of everybody here), that just tickles me silly. RE: Just a tiny and fun bit of code - mnrvovrfc - 06-15-2023 If the programmer isn't confident waddling through Galleon's code, this illustration was the only way to work things so the "built-in font" could be displayed at a larger size. A few decades back I've written a program in C that works on 16-bit MS-DOS that looked at the BIOS locations of the 8x8 font, and printed out short words with various characters and colors. I got carried away and started saving them as BSAVE images of 4000 bytes. There wasn't much to do with those files, unfortunately. EDIT: Oh I just noticed the trick in BAM, using POINT() with -- SCREEN 0. Whoa wait until Pete finds out about this! RE: Just a tiny and fun bit of code - Jack - 06-15-2023 I think that Pete is resting in the grave, otherwise we would have heard from him by now RE: Just a tiny and fun bit of code - CharlieJV - 06-15-2023 (06-15-2023, 01:56 PM)Jack Wrote: I think that Pete is resting in the grave, otherwise we would have heard from him by now Yeah, I'm worried about the lad. That's an awfully long stretch without any signs from him. |