2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2006-02-11 12:54:56 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-01-05 12:45:14 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2006-02-11 12:54:56 +00:00
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-07-23 15:32:14 +00:00
|
|
|
#ifndef LURE_SCREEN_H
|
|
|
|
#define LURE_SCREEN_H
|
2006-02-11 12:54:56 +00:00
|
|
|
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2006-09-23 00:42:35 +00:00
|
|
|
#include "engines/engine.h"
|
2006-02-11 12:54:56 +00:00
|
|
|
#include "lure/luredefs.h"
|
|
|
|
#include "lure/palette.h"
|
|
|
|
#include "lure/disk.h"
|
|
|
|
#include "lure/memory.h"
|
|
|
|
#include "lure/surface.h"
|
|
|
|
|
|
|
|
namespace Lure {
|
|
|
|
|
|
|
|
class Screen {
|
|
|
|
private:
|
|
|
|
OSystem &_system;
|
|
|
|
Disk &_disk;
|
|
|
|
Surface *_screen;
|
|
|
|
Palette *_palette;
|
2011-02-13 15:34:30 +00:00
|
|
|
|
|
|
|
void setSystemPalette(Palette *p, uint16 start, uint16 num);
|
2006-02-11 12:54:56 +00:00
|
|
|
public:
|
|
|
|
Screen(OSystem &system);
|
|
|
|
~Screen();
|
|
|
|
static Screen &getReference();
|
|
|
|
|
2007-08-25 06:06:18 +00:00
|
|
|
void setPaletteEmpty(int numEntries = RES_PALETTE_ENTRIES);
|
2006-02-11 12:54:56 +00:00
|
|
|
void setPalette(Palette *p);
|
2007-07-26 10:11:31 +00:00
|
|
|
void setPalette(Palette *p, uint16 start, uint16 num);
|
2006-02-11 12:54:56 +00:00
|
|
|
Palette &getPalette() { return *_palette; }
|
|
|
|
void paletteFadeIn(Palette *p);
|
2007-08-25 06:06:18 +00:00
|
|
|
void paletteFadeOut(int numEntries = RES_PALETTE_ENTRIES);
|
2006-02-11 12:54:56 +00:00
|
|
|
void resetPalette();
|
|
|
|
void empty();
|
|
|
|
void update();
|
|
|
|
void updateArea(uint16 x, uint16 y, uint16 w, uint16 h);
|
|
|
|
|
|
|
|
Surface &screen() { return *_screen; }
|
|
|
|
uint8 *screen_raw() { return _screen->data().data(); }
|
|
|
|
uint8 *pixel_raw(uint16 x, uint16 y) { return screen_raw() + (y * FULL_SCREEN_WIDTH) + x; }
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Lure
|
|
|
|
|
|
|
|
#endif
|