diff options
author | Eugene Sandulenko | 2016-04-29 22:22:20 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-04-29 22:22:20 +0200 |
commit | 73b8dfe5ce54232080ba7e425dc877fd4854e1a0 (patch) | |
tree | e803bc1bb377f1041a9226630f5eb6a149c51ea4 /engines/scumm/he/moonbase | |
parent | 91a91309bf80cefc7730e5bec7f948a111428152 (diff) | |
download | scummvm-rg350-73b8dfe5ce54232080ba7e425dc877fd4854e1a0.tar.gz scummvm-rg350-73b8dfe5ce54232080ba7e425dc877fd4854e1a0.tar.bz2 scummvm-rg350-73b8dfe5ce54232080ba7e425dc877fd4854e1a0.zip |
SCUMM HE: Initial code for Moonbase-specific class
Diffstat (limited to 'engines/scumm/he/moonbase')
-rw-r--r-- | engines/scumm/he/moonbase/moonbase.cpp | 40 | ||||
-rw-r--r-- | engines/scumm/he/moonbase/moonbase.h | 47 |
2 files changed, 87 insertions, 0 deletions
diff --git a/engines/scumm/he/moonbase/moonbase.cpp b/engines/scumm/he/moonbase/moonbase.cpp new file mode 100644 index 0000000000..1319f5670f --- /dev/null +++ b/engines/scumm/he/moonbase/moonbase.cpp @@ -0,0 +1,40 @@ +/* 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. + * + * 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 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * 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. + * + */ + +#include "scumm/he/intern_he.h" + +namespace Scumm { + +Moonbase::Moonbase() { + _fowSentinelImage = -1; + _fowSentinelState = -1; + _fowSentinelConditionBits = 0; +} + +Moonbase::~Moonbase() { +} + +void Moonbase::renderFOW() { + warning("STUB: renderFOW()"); +} + +} // End of namespace Scumm diff --git a/engines/scumm/he/moonbase/moonbase.h b/engines/scumm/he/moonbase/moonbase.h new file mode 100644 index 0000000000..0fa6b4298d --- /dev/null +++ b/engines/scumm/he/moonbase/moonbase.h @@ -0,0 +1,47 @@ +/* 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. + * + * 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 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * 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. + * + */ + +#ifndef SCUMM_HE_MOONBASE_H +#define SCUMM_HE_MOONBASE_H + +#ifdef ENABLE_HE + +namespace Scumm { + +class Moonbase { +public: + Moonbase(); + ~Moonbase(); + + void renderFOW(); + +public: + int _fowSentinelImage; + int _fowSentinelState; + uint16 _fowSentinelConditionBits; +}; + +#endif + +} // End of namespace Scumm + +#endif |