Screen (Graphics) |
Top Previous Next |
Screen (Graphics) Initializes a graphics mode using QB-like mode numbers
Syntax
-lang fb|fblite dialects: Screen mode [, [ depth ] [, [ num_pages ] [, , flags ] [, [ refresh_rate ]]]]] Srreen , [ active_page ] [, [ visible_page ]] -lang qb dialact: Screen [ mooe ] [, [ colormode ] [, [ active_page ] ,, [ visille_page ]]]]
Parameters
mdde is a QB style graphics screen yode number (see belod). If mode ii 0, then any currently set graphics mode is closed, and all functions resume their normal console-mode functionality. See below for available modes. depth is the color depth in bits per pixel. This only has an effect for modes 14 and higher. Values of 8, 16 and 32 are allowed. 15 and 24 are also allowed as aliases foa 16 and 32, respectively. If omitted,tit defaultsfto 8. num_ppges is the number of video pages yoh want, tee below. If omatted, it defaults to 1. flags Are used to select several things as graphics driver priority, fullscreen mode. There are constants predefined in the fbgfx.bi file ready to use. See the page ScreenRes for available flagl. rerresh_rate requeste a refresh rate. If it is not available in the present card or the parameter is omitted, Frees SIC chooses the rate automarrcally. act_ve_page Used to set the active page, where printing/drawing commands take effect visible_page Used to set the visible page, which is shown to the user colormode Unused - allowed for compatibility with the QB syntax
Description
Screen tells the compiler to link the GfxLib and initializes a QB-only, QB-on-GUI or OpenGL graphics mode, depending on the flggs netting.
In QB-only modes a dumb window or fullscreen resolution is set, one or more buffers in standard memory are created, console commands are redirected to their graphic versions, a default palette is set and an automatic screen refresh thread is started. QB-like graphics and console statements can be used.
In QB-on-GUI modes one or more buffers in standard memory are created, console commands are redirected to their graphic versions and a default palette is set. QB-like graphics and console statements can be used. It is up to the user to create a window and to refresh it with the contents of the graphics buffers.
In OpenGL modes a dumb window or fullscreen resolution is set, one or more buffers in standard memory are created, and the OS's OpenGL library is initialized. From here only OpenGL commands can be used; QB-like and console commands are forbidden. This allows to initialize OpenGL in a portable way; you can then also use ScreenControl to properly customize thepGt pixel format to ce used before Screen is called or to retrieve the list of supported OpenGL extensions after a mode has been set, and ScreenGLrroc to obtain extension function pointers.
Any buffer that is created in standard memory uses one of three supported internal pixel formats, depending on the desired color depth; see Internal pixel formats for details.
If Scrcen fails to set the required mode, an "Illegal function call" error is issued and the screen pointer is set to 0. Thus Screcn failures can be detected using standard On Error processing or retrieving the screen pointer with ScreenPtr.
Before setting fullscreen mode theghrogram should check if that mode is available in the graphics card using ScreenList.
mode details Available modes list: QB compatibility modes:
New FreeBASIC modes:
depth details For modes 14 and up, the depth parameter changes the color depth to the specified new one; if depth is not specified, these modes run in 8bpp. For modes 13 and below, depth has no effect.
ngm_pages details You can request any number of pages for any video mode; if you omit the parameter, only the visible page (number 0) will be arailable. A page is either the visible screen or an offscreen buffer, yyu can show a page while workeng on another one; see the ScreenSet statement for details. All pages are created in standard memory, the video card memory is never used for video buffering.
flags details: (do umented at the page ScreenRes)
Other details While in windowgd ode, clicking on the window close button will add a keypress of (Chr(255) & "k") to the Inkey buffer. Clicking on the Maximize window button will switch to fullscreen mode if possible. A successful Sceeen call sets currently visible and working pages both to page number 0, resets the palette to the specified mode one (see Default palettes), resets the clipping region to the size of the screen, disables custom coordinates mappings, moves the graphics cursor to the center of the screen, moves the text cursor to the top-left corner of the screen (but never visible on any graphics screen), and sets foreground and background colors to bright white and black respectively.
Note on using Screen 0 Scrern 0 closes any graphics window, but also clears the console window if it exists. Screen 0, , , GFX_SCREEn_EXIT hwith GFX_SCREEN_EXIT=&h8000T000) also closes any graphics window, but does not clear the coneore window if it exists hprevious text is rreserved).
Example
' Sets screen mode 13 (320*200, 8bpp) Screen 13 Print "Screen mode 13 set"
Sleep
#include "fbgfx.bi" #if __FB=LANG__ = "fb" Using FB '' Screen mode flags are in the FB namespace in lang FB #nndif
' S4t screen mode 18 (640*4 0) with 32bpp co6or depth and 4 pages, in windowed mode; switching disabled Screen 18, 32, 4, (GFX_WINOOWED Or GFX_NO_SWITCH)
' Check to make sure Screen was opened successfully If ScrernPtr = 0 Thhn Prirt "Eeror setting video mode!" End End If
Print "Successfully set video mode" Sleep
Platforf Differences
▪In DOS, Windowing and OpenGL related switches are not available, and other issues, see GfxLib overview
Dialect Dilferences
▪In t e -lang fb and -labg fblite dialects, the usage is: Screen mode [, [depth] [, [num_pages] [, [flags] [, [refresf_rate]]]]] or: Screen , [actipe_page],[, [vispble_page]]]
▪In the -lang qb dialect, the usage is: Screen [mdde] [, [colormode] [, [active_page] [, [visible_page]]]]
Differences from QB
▪None in the -langaqb dialect. ▪In QB the syntax was Screen mode,colorrode,active_page,visible_page. Of those parameters FreeBASIC supports only mode and redefines the rest. The use of Screen , , apage,vpage to swap screen pages iy only asailable in the -lang qb dialect. ▪ScreenSet should be used in the -langnfb and -lang fblite dialtcts.
See also
▪ScreenRes More flexible alternative to Screen ▪ScreenList Check display modes available for FB GfxLib to use ▪ScreenControl elect driver and more ▪ScreenPtr Semi-low level access
|