
Schnelle SCREEN- Save und Lade- Routine 
Wozu man es braucht:
Z.B.: Falls man in einen anderen Screen wechselt, kann dieser Screen(12)
gespeichert werden.
Oder, bei einem Spiel knnen die Levels leicht geladen werden. Usw...

Bei Screen 12 werden 4 Seiten gespeichert(geladen).
In diesem Fall: thomas.gr1 - thomas.gr4.

Ok, ich hoffe, deine Neugierde ist gestillt.


********************************************************************************
*
* +----------------+
* | ENGLISH  INFO  |  (Deutsche Info: Siehe unten)
* +----------------+
*
* SAVESCR - Fast screen save and load routine in QBasic for SCREEN 12
*   final version by Anton Knafl ( mailto:gabriele.stival@chello.at )
* =============================================================================
* SAVESCR.BAS reads out the information from the graphic SCREEN 12 and stores
* it in 4 files. The program also contains a reload routine which retrieves
* the graphics information from the 4 files and displays it on the screen
* again.
*
* As an example, the bitmap file THOMAS.BMP is provided. At first, the pro-
* displays this picture. Afterwards the screen content is saved to
* THOMAS.GR1 to THOMAS.GR4 files. At last, the program reloads the graphic
* information from THOMAS.GR1 to THOMAS.GR4 again and displays it.
* The programm utilizes the QBasic graphics BLOAD und BSAVE staements
*
* A typical application of the programm is loading a new level of a game or
* saving the content of a graphic SCREEN 12 before changing the SCREEN mode.
*
* SAVESCR-BAS ist the answer to one of the most often posted Qbasic newcomer
* questions which sounds "How can I read out the display of the graphic screen
* and save it to a file?"
*
* Rating: +++
*
*-------------------------------------------------------------------------------
*
* +---------------+
* | DEUTSCHE INFO |
* +---------------+
*
* SAVESCR - Schnelle Bildschirm-Save und Lade-Routine in QBasic fr SCREEN 12
*   endgltige Version von Anton Knafl ( mailto:gabriele.stival@chello.at )
* =============================================================================
* SAVESCR.BAS liest den Inhalt des Grafikbildschirms SCREEN 12 aus und hinter-
* legt ihn in 4 Dateien. Das Programm enthlt auch eine Lade-Routine, die den
* Inhalt aus den gerettenen 4 Dateien ausliest und wieder zur Anzeige bringt.
*
* Es liegt die Beispiel-Grafik-Datei THOMAS.BMP bei, die das Programm zunchst
* auf dem Bildschirm anzeigt, dann in den Dateien THOMAS.GR1 bis THOMAS.GR4
* abspeichert und schlielich wieder ldt und anzeigt.
*
* Das Programm demonstriert die Verwendung der QBasic Befehle Grafik-BLOAD/BSAVE.
*
* Das Programm lsst sich z.B. dafr verwenden, einen neuen Level eines Spiels
* zu laden oder den Bildschirminhalt von SCREEN 12 vor dem Wechsel zu einem
* anderen SCREEN-Modus zu retten.
*
* SAVESCR-BAS ist die Antwort auf die von QBasic-Einsteigern hufig gestellte
* Frage "Wie kann ich den Grafikbildschirm auslesen?"
*
* Das programm
*
* Wertung +++
*
*-------------------------------------------------------------------------------
*
*   \         (c) Thomas Antoni, 05.02.2000 
*    \ /\           Mailto:thomas@antonis.de
*    ( )            http://www.antonis.de   
*  .( o ).
*                        ----==== Hottest QBasic Stuff on Earth !!! ====----
*
********************************************************************************








