mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 07:39:08 +00:00
MORTEVIELLE: Set up default mouse cursor
This commit is contained in:
parent
5ecb0d4eea
commit
3caa20a618
@ -24,6 +24,7 @@
|
||||
#include "common/debug-channels.h"
|
||||
#include "engines/util.h"
|
||||
#include "engines/engine.h"
|
||||
#include "graphics/cursorman.h"
|
||||
#include "graphics/palette.h"
|
||||
#include "graphics/pixelformat.h"
|
||||
#include "mortevielle/mortevielle.h"
|
||||
@ -64,7 +65,17 @@ Common::ErrorCode MortevielleEngine::initialise() {
|
||||
res = 2;
|
||||
|
||||
// Load the mort.dat resource
|
||||
return loadMortDat();
|
||||
Common::ErrorCode result = loadMortDat();
|
||||
if (result != Common::kNoError)
|
||||
return result;
|
||||
|
||||
// Set default EGA palette
|
||||
_paletteManager.setDefaultPalette();
|
||||
|
||||
// Setup the mouse cursor
|
||||
initMouse();
|
||||
|
||||
return Common::kNoError;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -187,6 +198,33 @@ void MortevielleEngine::addKeypress(Common::Event &evt) {
|
||||
}
|
||||
}
|
||||
|
||||
static byte CURSOR_ARROW_DATA[16 * 16] = {
|
||||
0x0f, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x00, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x00, 0x0f, 0x0f, 0x0f, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x0f, 0x0f, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
|
||||
};
|
||||
|
||||
/**
|
||||
* Initialise the mouse
|
||||
*/
|
||||
void MortevielleEngine::initMouse() {
|
||||
CursorMan.replaceCursor(CURSOR_ARROW_DATA, 16, 16, 0, 0, 0xff);
|
||||
CursorMan.showMouse(true);
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------------------------*/
|
||||
|
||||
Common::Error MortevielleEngine::run() {
|
||||
@ -195,9 +233,6 @@ Common::Error MortevielleEngine::run() {
|
||||
if (err != Common::kNoError)
|
||||
return err;
|
||||
|
||||
// Set default palette
|
||||
_paletteManager.setDefaultPalette();
|
||||
|
||||
// Dispatch to the game's main routine
|
||||
mortevielle_main();
|
||||
|
||||
|
@ -57,6 +57,7 @@ private:
|
||||
void loadFont(Common::File &f);
|
||||
bool handleEvents();
|
||||
void addKeypress(Common::Event &evt);
|
||||
void initMouse();
|
||||
public:
|
||||
ScreenSurface _screenSurface;
|
||||
PaletteManager _paletteManager;
|
||||
|
Loading…
Reference in New Issue
Block a user