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-05-01 12:43:50 +00:00
|
|
|
*
|
2021-12-26 18:47:58 +01: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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2014-02-18 02:34:20 +01:00
|
|
|
*
|
2006-05-01 12:43:50 +00:00
|
|
|
* 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-05-01 12:43:50 +00:00
|
|
|
* GNU General Public License for more details.
|
2014-02-18 02:34:20 +01:00
|
|
|
*
|
2006-05-01 12:43:50 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 18:47:58 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2006-05-01 12:43:50 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common/endian.h"
|
|
|
|
|
|
|
|
#include "gob/gob.h"
|
|
|
|
#include "gob/init.h"
|
|
|
|
#include "gob/global.h"
|
|
|
|
#include "gob/draw.h"
|
|
|
|
|
|
|
|
namespace Gob {
|
|
|
|
|
|
|
|
Init_v1::Init_v1(GobEngine *vm) : Init(vm) {
|
|
|
|
}
|
|
|
|
|
2009-07-25 16:08:31 +00:00
|
|
|
Init_v1::~Init_v1() {
|
|
|
|
}
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
void Init_v1::initVideo() {
|
|
|
|
if (_vm->_global->_videoMode)
|
|
|
|
_vm->validateVideoMode(_vm->_global->_videoMode);
|
2006-05-01 12:43:50 +00:00
|
|
|
|
|
|
|
_vm->_global->_mousePresent = 1;
|
|
|
|
|
2009-03-21 18:17:24 +00:00
|
|
|
if ((_vm->_global->_videoMode == 0x13) && !_vm->isEGA())
|
2006-05-01 12:43:50 +00:00
|
|
|
_vm->_global->_colorCount = 256;
|
|
|
|
|
|
|
|
_vm->_global->_pPaletteDesc = &_vm->_global->_paletteStruct;
|
|
|
|
_vm->_global->_pPaletteDesc->vgaPal = _vm->_draw->_vgaPalette;
|
|
|
|
_vm->_global->_pPaletteDesc->unused1 = _vm->_global->_unusedPalette1;
|
|
|
|
_vm->_global->_pPaletteDesc->unused2 = _vm->_global->_unusedPalette2;
|
|
|
|
|
2011-02-02 16:48:04 +00:00
|
|
|
_vm->_video->initSurfDesc(320, 200, PRIMARY_SURFACE);
|
2011-08-26 06:09:56 +02:00
|
|
|
|
|
|
|
_vm->_draw->_cursorWidth = 16;
|
|
|
|
_vm->_draw->_cursorHeight = 16;
|
|
|
|
_vm->_draw->_transparentCursor = 1;
|
2006-05-01 12:43:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace Gob
|