Add new clearScreen OSystem call. Currently only implemented in SDL backend. This call is currently only used for clearing the launcher screen to remove garbage from the main screen before reentering.

svn-id: r15799
This commit is contained in:
James Brown 2004-11-13 04:33:33 +00:00
parent 628b02a9e8
commit 2ae3166f2d
4 changed files with 23 additions and 0 deletions

View File

@ -514,6 +514,20 @@ void OSystem_SDL::setFullscreenMode(bool enable) {
}
}
void OSystem_SDL::clearScreen() {
// Try to lock the screen surface
if (SDL_LockSurface(_screen) == -1)
error("SDL_LockSurface failed: %s", SDL_GetError());
byte *dst = (byte *)_screen->pixels;
// Clear the screen
memset(dst, 0, _screenWidth * _screenHeight);
// Unlock the screen surface
SDL_UnlockSurface(_screen);
}
void OSystem_SDL::copyRectToScreen(const byte *src, int pitch, int x, int y, int w, int h) {
if (_screen == NULL)
return;

View File

@ -64,6 +64,9 @@ public:
// The screen will not be updated to reflect the new bitmap
void copyRectToScreen(const byte *src, int pitch, int x, int y, int w, int h);
// Clear the screen
void clearScreen();
// Update the dirty areas of the screen
void updateScreen();

View File

@ -195,6 +195,9 @@ static int launcherDialog(GameDetector &detector, OSystem *system) {
// to fix all backends to support it, if they don't already.
system->initSize(320, 200);
// Clear the main screen
system->clearScreen();
// FIXME - mouse cursors are currently always set via 8 bit data.
// Thus for now we need to setup a dummy palette. On the long run, we might
// want to add a setMouseCursor_overlay() method to OSystem, which would serve

View File

@ -254,6 +254,9 @@ public:
* API are probably going to remove it.
*/
virtual void setPalette(const byte *colors, uint start, uint num) = 0;
/** Clear the screen to black */
virtual void clearScreen() {;}
/**
* Blit a bitmap to the virtual screen.