SCREEN: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
m (Removed protection from "SCREEN")
No edit summary
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
{| align="Right"
The [[SCREEN]] statement sets the video display mode and size of the program window's workspace.
  | __TOC__
  |}
The [[SCREEN]] statement sets the video display mode and size of the program window's workspace.  




{{PageSyntax}}
{{PageSyntax}}
: [[SCREEN]] {''mode%''|''imagehandle&''} [, , active_page, visual_page]


: [[SCREEN]] {''mode%''|''imagehandle&''} [, , active_page, visual_page]


 
{{PageParameters}}
{{Parameters}}  
* The SCREEN ''mode'' [[INTEGER]] values available today are 0 to 2 and 7 to 13 listed below.
* The SCREEN ''mode'' [[INTEGER]] values available today are 0 to 2 and 7 to 13 listed below.  
* '''QB64''' can use a [[LONG]] [[_NEWIMAGE]] page or [[_LOADIMAGE]] file ''image handle'' value instead.
* '''QB64''' can use a [[LONG]] [[_NEWIMAGE]] page or [[_LOADIMAGE]] file ''image handle'' value instead.
* The empty comma disables color when any value is used. '''DO NOT USE!''' Include the comma ONLY when using page flipping.
* The empty comma disables color when any value is used. '''DO NOT USE!''' Include the comma ONLY when using page flipping.
Line 17: Line 13:




''Usage:''  
''Usage:''
* No SCREEN statement in a program defaults to [[SCREEN]] 0 text ONLY mode.
* No SCREEN statement in a program defaults to [[SCREEN]] 0 text ONLY mode.
* A SCREEN statement that changes screen modes also clears the screen like [[CLS]]. Nothing on the screen is retained.
* A SCREEN statement that changes screen modes also clears the screen like [[CLS]]. Nothing on the screen is retained.
* Some screen mode text sizes are adjustable with [[WIDTH]] and all '''QB64''' screens support [[PCOPY]] and page flipping.
* Some screen mode text sizes are adjustable with [[WIDTH]] and all '''QB64''' screens support [[PCOPY]] and page flipping.


{{WhiteStart}}                      '''LEGACY SCREEN MODES AT A GLANCE'''
{{FixedStart}}                      '''LEGACY SCREEN MODES AT A GLANCE'''


  '''Screen      Text          Graphics          Colors      Video    Text      Default'''  
  '''Screen      Text          Graphics          Colors      Video    Text      Default'''
   '''Mode  Rows  Columns  Width  Height  Attrib.  BPP  Pages    Block    QB64 Font'''
   '''Mode  Rows  Columns  Width  Height  Attrib.  BPP  Pages    Block    QB64 Font'''


   0  25/43/50  80/40    No graphics    16/16 DAC  4    0-7    -----    _FONT 16
   0  25/43/50  80/40    No graphics    16/16 DAC  4    0-7    -----    _FONT 16
   1      25      40      320    200    16/4 BG    4    none    8 X 8    _FONT 8  
   1      25      40      320    200    16/4 BG    4    none    8 X 8    _FONT 8
   2      25      80      640    200      2/mono    1    none    8 X 8    _FONT 8  
   2      25      80      640    200      2/mono    1    none    8 X 8    _FONT 8
   .................................................................................  
   .................................................................................
   7      25      40      320    200    16/16 DAC  4    0-7    8 X 8    _FONT 8  
   7      25      40      320    200    16/16 DAC  4    0-7    8 X 8    _FONT 8
   8      25      80      640    200    16/16      4    0-3    8 X 8    _FONT 8  
   8      25      80      640    200    16/16      4    0-3    8 X 8    _FONT 8
   9      25      80      640    350    16/64 DAC  4    0-1    8 X 14  _FONT 14
   9      25      80      640    350    16/64 DAC  4    0-1    8 X 14  _FONT 14
   10      25      80      640    350    4/2 GScale 2    none    8 X 14  _FONT 14
   10      25      80      640    350    4/2 GScale 2    none    8 X 14  _FONT 14
   11    30/60    80      640    480      2/mono    1    none    8 X 16  _FONT 16
   11    30/60    80      640    480      2/mono    1    none    8 X 16  _FONT 16
   12    30/60    80      640    480    16/262K    4    none    8 X 16  _FONT 16
   12    30/60    80      640    480    16/262K    4    none    8 X 16  _FONT 16
   13      25      40      320    200    256/65K    8    none    8 X 8    _FONT 8  
   13      25      40      320    200    256/65K    8    none    8 X 8    _FONT 8


               '''QB64 allows video paging and [[PCOPY]] in ALL screen modes!''' '' ''
               '''QB64 allows video paging and [[PCOPY]] in ALL screen modes!'''
{{WhiteEnd}}
{{FixedEnd}}


==QB64 Custom Screen Modes==
 
== QB64 Custom Screen Modes ==


: [[SCREEN]] ''imagehandle&'' [, , ''active_page'', ''visual_page'']
: [[SCREEN]] ''imagehandle&'' [, , ''active_page'', ''visual_page'']
Line 51: Line 48:




* Custom screen modes can be created using a [[_NEWIMAGE]] or [[_LOADIMAGE]] function ''imagehandle'' return value.  
* Custom screen modes can be created using a [[_NEWIMAGE]] or [[_LOADIMAGE]] function ''imagehandle'' return value.
* '''QB64''' screen modes 0 to 2 and 7 to 13 can be emulated with the same color depth and text block size and different dimensions.
* '''QB64''' screen modes 0 to 2 and 7 to 13 can be emulated with the same color depth and text block size and different dimensions.
* [[_NEWIMAGE]] screens can be any set size. A screen mode can be emulated or 256 or 32 bit colors can be designated.
* [[_NEWIMAGE]] screens can be any set size. A screen mode can be emulated or 256 or 32 bit colors can be designated.
Line 61: Line 58:
<p style="text-align: center">([[#toc|Return to Table of Contents]])</p>
<p style="text-align: center">([[#toc|Return to Table of Contents]])</p>


==Legacy Screen Modes==


* '''[[SCREEN]] 0''' (default mode) is a '''text only''' screen mode. 64 (VGA) colors with hi-intensity(blinking) colors 16 to 31. ([[DAC]] attrib 6, 8 to 15). 8 Background colors intensities only(0 - 7). No graphics are possible! Normally runs in a window. ALT-Enter switches from a window to fullscreen. To automatically run in '''QBasic''' fullscreen, use another Screen mode before using {{KW|SCREEN (statement)|SCREEN}} 0.  Can use {{KW|PCOPY}} with video pages 0 to 7. Text is 25, 43 or 50 rows by 40 or 80 columns. Default is 25 by 80. See {{KW|WIDTH}}.
== Legacy Screen Modes ==
 
* '''[[SCREEN]] 0''' (default mode) is a '''text only''' screen mode. 64 (VGA) colors with hi-intensity(blinking) colors 16 to 31. ([[DAC]] attrib 6, 8 to 15). 8 Background colors intensities only(0 - 7). No graphics are possible! Normally runs in a window. ALT-Enter switches from a window to fullscreen. To automatically run in '''QBasic''' fullscreen, use another Screen mode before using [[SCREEN]] 0.  Can use [[PCOPY]] with video pages 0 to 7. Text is 25, 43 or 50 rows by 40 or 80 columns. Default is 25 by 80. See [[WIDTH]].


: '''Note:''' Use [[OUT]] or [[_PALETTECOLOR]] to create higher intensity color backgrounds than [[COLOR]] , 7.
: '''Note:''' Use [[OUT]] or [[_PALETTECOLOR]] to create higher intensity color backgrounds than [[COLOR]] , 7.


:::'''All other available [[SCREEN]] modes can use text and graphics and are fullscreen in QBasic ONLY.'''
:::'''All other available [[SCREEN]] modes can use text and graphics and are fullscreen in QBasic ONLY.'''


* '''[[SCREEN]] 1''' has 4 background color attributes. 0 = black, 1 = blue, 2 = green, 3 = grey. White foreground only. Text is 25 by 40. White graphics is 320 by 200.  
* '''[[SCREEN]] 1''' has 4 background color attributes. 0 = black, 1 = blue, 2 = green, 3 = grey. White foreground only. Text is 25 by 40. White graphics is 320 by 200.


* '''[[SCREEN]] 2''' is '''monochrome''' with black background and white foreground. Text is 25 by 80. White graphics 640 by 200.          NO [[COLOR]] keyword allowed.
* '''[[SCREEN]] 2''' is '''monochrome''' with black background and white foreground. Text is 25 by 80. White graphics 640 by 200.          NO [[COLOR]] keyword allowed.
* '''[[SCREEN]] 3 to 6 are no longer supported''' on most computers! Using them will cause a video [[ERROR Codes|error]]!


* '''[[SCREEN]] 7''' has 16 color attributes ([[DAC]] attrib. 8 to 15) with background colors. Text 25 rows by 40 columns. Graphics 320 columns by 200 rows. Video  pages 0 to 7 for flipping or {{KW|PCOPY}}.
* '''[[SCREEN]] 3 to 6 are no longer supported''' on most computers! Using them will cause a video [[ERROR Codes|error]]!
 
* '''[[SCREEN]] 7''' has 16 color attributes ([[DAC]] attrib. 8 to 15) with background colors. Text 25 rows by 40 columns. Graphics 320 columns by 200 rows. Video  pages 0 to 7 for flipping or [[PCOPY]].


* '''[[SCREEN]] 8''' has 16 color attributes with background. Text is 25 by 80. Graphics is 640 by 200. Video pages 0 to 3.
* '''[[SCREEN]] 8''' has 16 color attributes with background. Text is 25 by 80. Graphics is 640 by 200. Video pages 0 to 3.


* '''[[SCREEN]] 9''' has 64 DAC color hues for ([[DAC]] attrib. 6, 8 to 15) with background colors. Text is 25 by 80. Graphics is 640 by 350. Video pages 0 and 1 for flipping or {{KW|PCOPY}}.  
* '''[[SCREEN]] 9''' has 64 DAC color hues for ([[DAC]] attrib. 6, 8 to 15) with background colors. Text is 25 by 80. Graphics is 640 by 350. Video pages 0 and 1 for flipping or [[PCOPY]].


* '''[[SCREEN]] 10''' has 4 gray scale color attributes with black background. 1 = normal white, 2 = blinking white and 3 = bright white. Text is 25 by 80. Graphics is 640 by 350.
* '''[[SCREEN]] 10''' has 4 gray scale color attributes with black background. 1 = normal white, 2 = blinking white and 3 = bright white. Text is 25 by 80. Graphics is 640 by 350.


* '''[[SCREEN]] 11''' is '''monochrome''' with black background and white foreground. Text is 30 or 60 by 80 columns(see {{KW|WIDTH}}). White graphics is 640 by 480. NO [[COLOR]] keyword allowed.
* '''[[SCREEN]] 11''' is '''monochrome''' with black background and white foreground. Text is 30 or 60 by 80 columns(see [[WIDTH]]). White graphics is 640 by 480. NO [[COLOR]] keyword allowed.


* '''[[SCREEN]] 12''' has 16 color attributes, black background. 256K possible color hues. Text is 30 or 60 by 80 columns(see {{KW|WIDTH}}). Graphics 640 by 480.  
* '''[[SCREEN]] 12''' has 16 color attributes, black background. 256K possible color hues. Text is 30 or 60 by 80 columns(see [[WIDTH]]). Graphics 640 by 480.


* '''[[SCREEN]] 13''' has 256 color attributes, black background. 256K possible color hues. Text is 25 by 40. Graphics is 320 by 200.  
* '''[[SCREEN]] 13''' has 256 color attributes, black background. 256K possible color hues. Text is 25 by 40. Graphics is 320 by 200.


* '''[[SCREEN]] [[_NEWIMAGE]]'''(wide&, deep&, mode%) can imitate any size screen mode or use 32 bit or 256 color modes in '''QB64'''.
* '''[[SCREEN]] [[_NEWIMAGE]]'''(wide&, deep&, mode%) can imitate any size screen mode or use 32 bit or 256 color modes in '''QB64'''.


* '''[[SCREEN]] [[_LOADIMAGE]]'''(imagehandle&, colors) can load a program screen of an image file handle in '''QB64''' using 256 or 32 bit.  
* '''[[SCREEN]] [[_LOADIMAGE]]'''(imagehandle&, colors) can load a program screen of an image file handle in '''QB64''' using 256 or 32 bit.


<center>'''QB64 can use page flipping with any number of pages in any screen mode!'''</center>
<center>'''QB64 can use page flipping with any number of pages in any screen mode!'''</center>
Line 97: Line 95:
<p style="text-align: center">([[#toc|Return to Table of Contents]])</p>
<p style="text-align: center">([[#toc|Return to Table of Contents]])</p>


==Text and Graphics==


== Text and Graphics ==


:::::::::'''Text Coordinates:'''  
 
:'''Text Coordinates:'''


* Are a minimum of 1 and the values given above are the maximums. [[LOCATE]] 1, 1 is the top left [[SCREEN]] text position.
* Are a minimum of 1 and the values given above are the maximums. [[LOCATE]] 1, 1 is the top left [[SCREEN]] text position.
* Text characters occupy a certain sized pixel box adjusted by [[WIDTH]] in some screen modes.
* Text characters occupy a certain sized pixel box adjusted by [[WIDTH]] in some screen modes.
* Text [[PRINT]] cursor positions can be read by {{KW|CSRLIN}} and {{KW|POS|POS(0)}} to [[LOCATE]] text [[PRINT]]s.
* Text [[PRINT]] cursor positions can be read by [[CSRLIN]] and [[POS|POS(0)]] to [[LOCATE]] text [[PRINT]]s.
* [[VIEW PRINT]] can be used to designate a text view port area.
* [[VIEW PRINT]] can be used to designate a text view port area.
* In '''QB64''' the [[_WIDTH (function)|_WIDTH]] and [[_HEIGHT]] functions will return the text dimensions in SCREEN 0 only.
* In '''QB64''' the [[_WIDTH (function)|_WIDTH]] and [[_HEIGHT]] functions will return the text dimensions in SCREEN 0 only.




:::::::::'''Graphic Coordinates:'''
:'''Graphic Coordinates:'''


* The minimum on screen graphics pixel coordinates are 0 for columns and rows in the top left corner.
* The minimum on screen graphics pixel coordinates are 0 for columns and rows in the top left corner.
Line 120: Line 119:




:::::::'''QB64 Screen Statements and Functions:'''
:'''QB64 Screen Statements and Functions:'''


* For file image screens that adopt the image dimensions and image color settings use: [[_LOADIMAGE]]
* For file image screens that adopt the image dimensions and image color settings use: [[_LOADIMAGE]]
Line 132: Line 131:
<p style="text-align: center">([[#toc|Return to Table of Contents]])</p>
<p style="text-align: center">([[#toc|Return to Table of Contents]])</p>


==Examples==


{{PageExamples}}
:''Example 1:'' Shows an example of each legacy screen mode available to QBasic and QB64.
:''Example 1:'' Shows an example of each legacy screen mode available to QBasic and QB64.
{{CodeStart}} '' ''
{{CodeStart}}
{{Cl|SCREEN}} 0
{{Cl|SCREEN}} 0
{{Cl|PRINT}} "This is {{Cl|SCREEN}} 0 - only text is allowed!"
{{Cl|PRINT}} "This is {{Cl|SCREEN}} 0 - only text is allowed!"
{{Cl|FOR}} S = 1 {{Cl|TO}} 13
{{Cl|FOR}} S = 1 {{Cl|TO}} 13
   {{Cl|IF}} S < 3 {{Cl|OR}} S > 6 {{Cl|THEN}}  
   {{Cl|IF}} S < 3 {{Cl|OR}} S > 6 {{Cl|THEN}}
     {{Cl|DO}}: {{Cl|SLEEP}}: {{Cl|LOOP}} {{Cl|UNTIL}} {{Cl|INKEY$}} <> ""
     {{Cl|DO}}: {{Cl|SLEEP}}: {{Cl|LOOP}} {{Cl|UNTIL}} {{Cl|INKEY$}} <> ""
     {{Cl|SCREEN}} S
     {{Cl|SCREEN}} S
     {{Cl|PRINT}} "This is {{Cl|SCREEN}}"; S; " - can use text and graphics!"
     {{Cl|PRINT}} "This is {{Cl|SCREEN}}"; S; " - can use text and graphics!"
       {{Cl|IF}} S = 2 {{Cl|OR}} S = 11 {{Cl|THEN}} {{Cl|PRINT}} "Monochrome - no {{Cl|COLOR}} statements!"
       {{Cl|IF}} S = 2 {{Cl|OR}} S = 11 {{Cl|THEN}} {{Cl|PRINT}} "Monochrome - no {{Cl|COLOR}} statements!"
       {{Cl|IF}} S = 10 {{Cl|THEN}}  
       {{Cl|IF}} S = 10 {{Cl|THEN}}
         {{Cl|COLOR}} 2: {{Cl|PRINT}} "This {{Cl|SCREEN}} has only 4 colors. Black and 3 white: 2 blinks.
         {{Cl|COLOR}} 2: {{Cl|PRINT}} "This {{Cl|SCREEN}} has only 4 colors. Black and 3 white: 2 blinks.
         {{Cl|CIRCLE}} (100,100), 50, 2
         {{Cl|CIRCLE}} (100,100), 50, 2
Line 150: Line 149:
       {{Cl|END IF}}
       {{Cl|END IF}}
   {{Cl|END IF}}
   {{Cl|END IF}}
{{Cl|NEXT}}  
{{Cl|NEXT}}
{{Cl|SLEEP}}
{{Cl|SLEEP}}
{{Cl|SYSTEM}} '' ''
{{Cl|SYSTEM}}
{{CodeEnd}}
{{CodeEnd}}
{{OutputStart}}
{{OutputStart}}
This is SCREEN 0 - only text is allowed!
This is SCREEN 0 - only text is allowed!
{{OutputEnd}}
{{OutputEnd}}
:Displays each {{KW|SCREEN (statement)|SCREEN}} mode one at a time with a {{KW|CIRCLE}} (except for {{KW|SCREEN (statement)|SCREEN}} 0)
:Displays each [[SCREEN]] mode one at a time with a [[CIRCLE]] (except for [[SCREEN]] 0)


<p style="text-align: center">([[#toc|Return to Table of Contents]])</p>
<p style="text-align: center">([[#toc|Return to Table of Contents]])</p>


==References==
=== More Examples ===
 
* [[SaveImage SUB]]
''See Examples:''
* [[Program ScreenShots]]
 
* [[ThirtyTwoBit SUB]]
* [[SAVEIMAGE]] {{text|(QB64 Image to Bitmap SUB by Galleon)}}
* [[SelectScreen]]
 
* [[ScreenMode]]
* [[Program ScreenShots]] {{text|(Member program for legacy screen modes)}}
 
* [[ThirtyTwoBit SUB]] {{text|(QB64 Image area to bitmap)}}
 
* [[SelectScreen]] {{text|(Member Screen mode selection function)}}
 
* [[ScreenMode]] {{text|(Member function to find current Screen mode)}}




{{PageSeeAlso}}
{{PageSeeAlso}}
* [[COLOR]], [[CLS]], [[WIDTH]]
* [[COLOR]], [[CLS]], [[WIDTH]]
* [[_NEWIMAGE]], [[_LOADIMAGE]], [[_SCREENIMAGE]]
* [[_NEWIMAGE]], [[_LOADIMAGE]], [[_SAVEIMAGE]]
* [[_SCREENIMAGE]]
* [[_LOADFONT]], [[_FONT]]
* [[_LOADFONT]], [[_FONT]]
* [[_DISPLAY]], [[_COPYIMAGE]], [[_SCREENMOVE]]
* [[_DISPLAY]], [[_COPYIMAGE]], [[_SCREENMOVE]]
* [[_SCREENHIDE]], [[_SCREENSHOW]], [[_SCREENICON]]
* [[_SCREENHIDE]], [[_SCREENSHOW]], [[_SCREENICON]]
* [[PALETTE]], [[OUT]], [[PCOPY]],  
* [[PALETTE]], [[OUT]], [[PCOPY]],
* [[GET (graphics statement)|GET]], [[PUT (graphics statement)|PUT]] {{text|(graphics)}}
* [[GET (graphics statement)|GET]], [[PUT (graphics statement)|PUT]]
* [[VIEW]], [[WINDOW]] {{text|(graphic viewport)}}, [[VIEW PRINT]] {{text|(text view port)}}
* [[VIEW]], [[WINDOW]], [[VIEW PRINT]]
* [[SCREEN (function)]] {{text|(text only)}}, [[POINT]] {{text|(graphic pixel colors)}}
* [[SCREEN (function)]], [[POINT]]
* [[Screen Memory]], [[Screen Saver Programs]]
* [[Screen Memory]], [[Screen Saver Programs]]
* [[_CONSOLE]]
* [[_CONSOLE]]

Latest revision as of 08:27, 10 January 2024

The SCREEN statement sets the video display mode and size of the program window's workspace.


Syntax

SCREEN {mode%|imagehandle&} [, , active_page, visual_page]


Parameters

  • The SCREEN mode INTEGER values available today are 0 to 2 and 7 to 13 listed below.
  • QB64 can use a LONG _NEWIMAGE page or _LOADIMAGE file image handle value instead.
  • The empty comma disables color when any value is used. DO NOT USE! Include the comma ONLY when using page flipping.
  • If the SCREEN mode supports pages, the active page is the page to be worked on while visual page is the one displayed.


Usage:

  • No SCREEN statement in a program defaults to SCREEN 0 text ONLY mode.
  • A SCREEN statement that changes screen modes also clears the screen like CLS. Nothing on the screen is retained.
  • Some screen mode text sizes are adjustable with WIDTH and all QB64 screens support PCOPY and page flipping.
                       LEGACY SCREEN MODES AT A GLANCE

 Screen      Text           Graphics          Colors      Video    Text      Default
  Mode   Rows   Columns   Width   Height  Attrib.   BPP   Pages    Block    QB64 Font

   0   25/43/50  80/40    No graphics     16/16 DAC  4     0-7     -----    _FONT 16
   1      25      40      320     200     16/4 BG    4     none    8 X 8    _FONT 8
   2      25      80      640     200      2/mono    1     none    8 X 8    _FONT 8
   .................................................................................
   7      25      40      320     200     16/16 DAC  4     0-7     8 X 8    _FONT 8
   8      25      80      640     200     16/16      4     0-3     8 X 8    _FONT 8
   9      25      80      640     350     16/64 DAC  4     0-1     8 X 14   _FONT 14
  10      25      80      640     350     4/2 GScale 2     none    8 X 14   _FONT 14
  11     30/60    80      640     480      2/mono    1     none    8 X 16   _FONT 16
  12     30/60    80      640     480     16/262K    4     none    8 X 16   _FONT 16
  13      25      40      320     200     256/65K    8     none    8 X 8    _FONT 8

              QB64 allows video paging and PCOPY in ALL screen modes!


QB64 Custom Screen Modes

SCREEN imagehandle& [, , active_page, visual_page]
SCREEN _NEWIMAGE(wide&, high&[, {mode|256|32}]) [, , active_page, visual_page]
SCREEN _LOADIMAGE(file$[, {mode|256|32}]) [, , active_page, visual_page]


  • Custom screen modes can be created using a _NEWIMAGE or _LOADIMAGE function imagehandle return value.
  • QB64 screen modes 0 to 2 and 7 to 13 can be emulated with the same color depth and text block size and different dimensions.
  • _NEWIMAGE screens can be any set size. A screen mode can be emulated or 256 or 32 bit colors can be designated.
  • The _LOADIMAGE screen size will be the size of the image loaded. Can designate a mode or 256 or 32 bit colors.
  • QB64 allows page flipping or a PCOPY in ANY SCREEN mode. _DISPLAY can also be used to reduce flickering in animations.
  • All SCREEN modes are Windows in QB64. Use _FULLSCREEN to set the window area to full screen.
  • _SCREENMOVE can position a window or the _MIDDLE option can center it on the desktop.

(Return to Table of Contents)


Legacy Screen Modes

  • SCREEN 0 (default mode) is a text only screen mode. 64 (VGA) colors with hi-intensity(blinking) colors 16 to 31. (DAC attrib 6, 8 to 15). 8 Background colors intensities only(0 - 7). No graphics are possible! Normally runs in a window. ALT-Enter switches from a window to fullscreen. To automatically run in QBasic fullscreen, use another Screen mode before using SCREEN 0. Can use PCOPY with video pages 0 to 7. Text is 25, 43 or 50 rows by 40 or 80 columns. Default is 25 by 80. See WIDTH.
Note: Use OUT or _PALETTECOLOR to create higher intensity color backgrounds than COLOR , 7.
All other available SCREEN modes can use text and graphics and are fullscreen in QBasic ONLY.
  • SCREEN 1 has 4 background color attributes. 0 = black, 1 = blue, 2 = green, 3 = grey. White foreground only. Text is 25 by 40. White graphics is 320 by 200.
  • SCREEN 2 is monochrome with black background and white foreground. Text is 25 by 80. White graphics 640 by 200.          NO COLOR keyword allowed.
  • SCREEN 3 to 6 are no longer supported on most computers! Using them will cause a video error!
  • SCREEN 7 has 16 color attributes (DAC attrib. 8 to 15) with background colors. Text 25 rows by 40 columns. Graphics 320 columns by 200 rows. Video pages 0 to 7 for flipping or PCOPY.
  • SCREEN 8 has 16 color attributes with background. Text is 25 by 80. Graphics is 640 by 200. Video pages 0 to 3.
  • SCREEN 9 has 64 DAC color hues for (DAC attrib. 6, 8 to 15) with background colors. Text is 25 by 80. Graphics is 640 by 350. Video pages 0 and 1 for flipping or PCOPY.
  • SCREEN 10 has 4 gray scale color attributes with black background. 1 = normal white, 2 = blinking white and 3 = bright white. Text is 25 by 80. Graphics is 640 by 350.
  • SCREEN 11 is monochrome with black background and white foreground. Text is 30 or 60 by 80 columns(see WIDTH). White graphics is 640 by 480. NO COLOR keyword allowed.
  • SCREEN 12 has 16 color attributes, black background. 256K possible color hues. Text is 30 or 60 by 80 columns(see WIDTH). Graphics 640 by 480.
  • SCREEN 13 has 256 color attributes, black background. 256K possible color hues. Text is 25 by 40. Graphics is 320 by 200.
  • SCREEN _NEWIMAGE(wide&, deep&, mode%) can imitate any size screen mode or use 32 bit or 256 color modes in QB64.
  • SCREEN _LOADIMAGE(imagehandle&, colors) can load a program screen of an image file handle in QB64 using 256 or 32 bit.
QB64 can use page flipping with any number of pages in any screen mode!

(Return to Table of Contents)


Text and Graphics

Text Coordinates:
  • Are a minimum of 1 and the values given above are the maximums. LOCATE 1, 1 is the top left SCREEN text position.
  • Text characters occupy a certain sized pixel box adjusted by WIDTH in some screen modes.
  • Text PRINT cursor positions can be read by CSRLIN and POS(0) to LOCATE text PRINTs.
  • VIEW PRINT can be used to designate a text view port area.
  • In QB64 the _WIDTH and _HEIGHT functions will return the text dimensions in SCREEN 0 only.


Graphic Coordinates:
  • The minimum on screen graphics pixel coordinates are 0 for columns and rows in the top left corner.
  • Maximum pixel coordinates are one less than the maximum dimensions above because the pixel count starts at 0.
  • Graphic objects such as PSET, PRESET, LINE, CIRCLE and DRAW can be placed partially off of the screen.
  • GET and PUT screen image operations MUST be located completely on the screen in QBasic!
  • VIEW can be used to designate a graphic view port area of the screen.
  • WINDOW can be used to set the graphics SCREEN coordinates to almost any size needed. Use the SCREEN option for normal row coordinate values. Row coordinates are Cartesian(decrease in value going down the screen) otherwise.
  • In QB64 the _WIDTH and _HEIGHT functions will return the graphic pixel dimensions in SCREENs other than 0.


QB64 Screen Statements and Functions:
  • For file image screens that adopt the image dimensions and image color settings use: _LOADIMAGE
  • To create custom sized screen modes or pages and 256 or 32 bit colors use: _NEWIMAGE
  • _PUTIMAGE can stretch or reduce the size of images to fit the SCREEN size.
  • PUT can use _CLIP to set objects partially off screen. GET can read objects off screen as a color in QB64 ONLY.
  • A _DISPLAY statement can be used to only display an image after changes instead of using page flipping or PCOPY.
  • The current desktop screen resolution can be found using the _SCREENIMAGE handle value with _WIDTH and _HEIGHT.
  • NOTE: Default 32 bit backgrounds are clear black or _RGBA(0, 0, 0, 0)! Use CLS to make the black opaque!

(Return to Table of Contents)


Examples

Example 1: Shows an example of each legacy screen mode available to QBasic and QB64.
SCREEN 0
PRINT "This is SCREEN 0 - only text is allowed!"
FOR S = 1 TO 13
   IF S < 3 OR S > 6 THEN
     DO: SLEEP: LOOP UNTIL INKEY$ <> ""
     SCREEN S
     PRINT "This is SCREEN"; S; " - can use text and graphics!"
       IF S = 2 OR S = 11 THEN PRINT "Monochrome - no COLOR statements!"
       IF S = 10 THEN
         COLOR 2: PRINT "This SCREEN has only 4 colors. Black and 3 white: 2 blinks.
         CIRCLE (100,100), 50, 2
       ELSE : CIRCLE (100,100), 100, S
       END IF
   END IF
NEXT
SLEEP
SYSTEM
This is SCREEN 0 - only text is allowed!
Displays each SCREEN mode one at a time with a CIRCLE (except for SCREEN 0)

(Return to Table of Contents)

More Examples


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage