diff options
author | johndoe123 | 2014-03-24 11:21:44 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2018-07-20 06:43:33 +0000 |
commit | 28cb39eb2b48d8c6e80e35ef6e26e02cc209fc0f (patch) | |
tree | 4c41f02644815113d5f15de74b7964c28d29d49b /engines/illusions/bbdou | |
parent | a6a4a3dc1cb346afc1f7b0491158d8b00ac063c5 (diff) | |
download | scummvm-rg350-28cb39eb2b48d8c6e80e35ef6e26e02cc209fc0f.tar.gz scummvm-rg350-28cb39eb2b48d8c6e80e35ef6e26e02cc209fc0f.tar.bz2 scummvm-rg350-28cb39eb2b48d8c6e80e35ef6e26e02cc209fc0f.zip |
ILLUSIONS: Start with BBDOU special code
Diffstat (limited to 'engines/illusions/bbdou')
-rw-r--r-- | engines/illusions/bbdou/bbdou_cursor.cpp | 39 | ||||
-rw-r--r-- | engines/illusions/bbdou/bbdou_cursor.h | 43 | ||||
-rw-r--r-- | engines/illusions/bbdou/bbdou_specialcode.cpp | 45 | ||||
-rw-r--r-- | engines/illusions/bbdou/bbdou_specialcode.h | 45 |
4 files changed, 172 insertions, 0 deletions
diff --git a/engines/illusions/bbdou/bbdou_cursor.cpp b/engines/illusions/bbdou/bbdou_cursor.cpp new file mode 100644 index 0000000000..9c0bcc8170 --- /dev/null +++ b/engines/illusions/bbdou/bbdou_cursor.cpp @@ -0,0 +1,39 @@ +/* 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 "illusions/illusions.h" +#include "illusions/bbdou/bbdou_cursor.h" +#include "illusions/actor.h" + +namespace Illusions { + +BbdouCursor::BbdouCursor(IllusionsEngine *vm) + : _vm(vm) { +} + +BbdouCursor::~BbdouCursor() { +} + +void BbdouCursor::init() { +} + +} // End of namespace Illusions diff --git a/engines/illusions/bbdou/bbdou_cursor.h b/engines/illusions/bbdou/bbdou_cursor.h new file mode 100644 index 0000000000..df3ed82f1a --- /dev/null +++ b/engines/illusions/bbdou/bbdou_cursor.h @@ -0,0 +1,43 @@ +/* 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 ILLUSIONS_BBDOU_BBDOU_CURSOR_H +#define ILLUSIONS_BBDOU_BBDOU_CURSOR_H + +#include "illusions/specialcode.h" + +namespace Illusions { + +class IllusionsEngine; + +class BbdouCursor { +public: + BbdouCursor(IllusionsEngine *vm); + ~BbdouCursor(); + void init(); +protected: + IllusionsEngine *_vm; +}; + +} // End of namespace Illusions + +#endif // ILLUSIONS_BBDOU_BBDOU_CURSOR_H diff --git a/engines/illusions/bbdou/bbdou_specialcode.cpp b/engines/illusions/bbdou/bbdou_specialcode.cpp new file mode 100644 index 0000000000..028fdb54a8 --- /dev/null +++ b/engines/illusions/bbdou/bbdou_specialcode.cpp @@ -0,0 +1,45 @@ +/* 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 "illusions/illusions.h" +#include "illusions/bbdou/bbdou_specialcode.h" +#include "illusions/bbdou/bbdou_cursor.h" +#include "illusions/scriptopcodes.h" + +namespace Illusions { + +// BbdouSpecialCode + +BbdouSpecialCode::BbdouSpecialCode(IllusionsEngine *vm) + : SpecialCode(vm) { +} + +BbdouSpecialCode::~BbdouSpecialCode() { +} + +void BbdouSpecialCode::init() { +} + +void BbdouSpecialCode::run(uint32 specialCodeId, OpCall &opCall) { +} + +} // End of namespace Illusions diff --git a/engines/illusions/bbdou/bbdou_specialcode.h b/engines/illusions/bbdou/bbdou_specialcode.h new file mode 100644 index 0000000000..98aef581be --- /dev/null +++ b/engines/illusions/bbdou/bbdou_specialcode.h @@ -0,0 +1,45 @@ +/* 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 ILLUSIONS_BBDOU_BBDOU_SPECIALCODE_H +#define ILLUSIONS_BBDOU_BBDOU_SPECIALCODE_H + +#include "illusions/specialcode.h" + +namespace Illusions { + +class IllusionsEngine; +class BbdouCursor; + +class BbdouSpecialCode : public SpecialCode { +public: + BbdouSpecialCode(IllusionsEngine *vm); + virtual ~BbdouSpecialCode(); + virtual void init(); + virtual void run(uint32 specialCodeId, OpCall &opCall); +public: + BbdouCursor *_cursor; +}; + +} // End of namespace Illusions + +#endif // ILLUSIONS_BBDOU_BBDOU_SPECIALCODE_H |