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
|
|
|
*
|
|
|
|
* 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-05-01 12:43:50 +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.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common/endian.h"
|
|
|
|
|
|
|
|
#include "gob/gob.h"
|
|
|
|
#include "gob/init.h"
|
|
|
|
#include "gob/global.h"
|
|
|
|
#include "gob/draw.h"
|
2007-03-20 14:51:57 +00:00
|
|
|
#include "gob/video.h"
|
2006-05-01 12:43:50 +00:00
|
|
|
|
|
|
|
namespace Gob {
|
|
|
|
|
|
|
|
Init_v2::Init_v2(GobEngine *vm) : Init_v1(vm) {
|
|
|
|
}
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
void Init_v2::initVideo() {
|
|
|
|
if (_vm->_global->_videoMode)
|
|
|
|
_vm->validateVideoMode(_vm->_global->_videoMode);
|
2006-05-01 12:43:50 +00:00
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
_vm->_draw->_frontSurface = _vm->_global->_primarySurfDesc;
|
|
|
|
_vm->_video->initSurfDesc(_vm->_global->_videoMode,
|
2009-06-06 20:03:13 +00:00
|
|
|
_vm->_video->_surfWidth, _vm->_video->_surfHeight, PRIMARY_SURFACE);
|
2006-05-01 12:43:50 +00:00
|
|
|
|
|
|
|
_vm->_global->_mousePresent = 1;
|
|
|
|
|
|
|
|
_vm->_global->_inVM = 0;
|
|
|
|
|
2007-03-20 14:51:57 +00:00
|
|
|
_vm->_global->_colorCount = 16;
|
2009-03-21 18:17:24 +00:00
|
|
|
if (!_vm->isEGA() &&
|
|
|
|
((_vm->getPlatform() == Common::kPlatformPC) ||
|
2009-04-21 21:44:37 +00:00
|
|
|
(_vm->getPlatform() == Common::kPlatformMacintosh) ||
|
|
|
|
(_vm->getPlatform() == Common::kPlatformWindows)) &&
|
2007-03-20 14:51:57 +00:00
|
|
|
((_vm->_global->_videoMode == 0x13) ||
|
|
|
|
(_vm->_global->_videoMode == 0x14)))
|
|
|
|
_vm->_global->_colorCount = 256;
|
2006-05-01 12:43:50 +00:00
|
|
|
|
|
|
|
_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;
|
|
|
|
|
|
|
|
if (_vm->_global->_videoMode != 0)
|
2007-02-06 14:42:05 +00:00
|
|
|
_vm->_video->initSurfDesc(_vm->_global->_videoMode, _vm->_video->_surfWidth,
|
|
|
|
_vm->_video->_surfHeight, PRIMARY_SURFACE);
|
2006-05-01 12:43:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace Gob
|