/* 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 3 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, see . * */ #ifndef MTROPOLIS_PLUGIN_HOOLOGIC_H #define MTROPOLIS_PLUGIN_HOOLOGIC_H #include "mtropolis/modifiers.h" #include "mtropolis/modifier_factory.h" #include "mtropolis/runtime.h" #include "mtropolis/plugin/hoologic_data.h" namespace MTropolis { namespace Hoologic { class BitmapVariableModifier : public Modifier { public: BitmapVariableModifier(); ~BitmapVariableModifier(); bool load(const PlugInModifierLoaderContext &context, const Data::Hoologic::BitmapVariableModifier &data); bool respondsToEvent(const Event &evt) const override; VThreadState consumeMessage(Runtime *runtime, const Common::SharedPtr &msg) override; void disable(Runtime *runtime) override; #ifdef MTROPOLIS_DEBUG_ENABLE const char *debugGetTypeName() const override { return "BitmapVariable Modifier"; } void debugInspect(IDebugInspectionReport *report) const override; #endif private: Common::SharedPtr shallowClone() const override; const char *getDefaultName() const override; }; class CaptureBitmapModifier : public Modifier { public: CaptureBitmapModifier(); ~CaptureBitmapModifier(); bool load(const PlugInModifierLoaderContext &context, const Data::Hoologic::CaptureBitmapModifier &data); bool respondsToEvent(const Event &evt) const override; VThreadState consumeMessage(Runtime *runtime, const Common::SharedPtr &msg) override; void disable(Runtime *runtime) override; #ifdef MTROPOLIS_DEBUG_ENABLE const char *debugGetTypeName() const override { return "CaptureBitmap Modifier"; } void debugInspect(IDebugInspectionReport *report) const override; #endif private: Common::SharedPtr shallowClone() const override; const char *getDefaultName() const override; }; class ImportBitmapModifier : public Modifier { public: ImportBitmapModifier(); ~ImportBitmapModifier(); bool load(const PlugInModifierLoaderContext &context, const Data::Hoologic::ImportBitmapModifier &data); bool respondsToEvent(const Event &evt) const override; VThreadState consumeMessage(Runtime *runtime, const Common::SharedPtr &msg) override; void disable(Runtime *runtime) override; #ifdef MTROPOLIS_DEBUG_ENABLE const char *debugGetTypeName() const override { return "ImportBitmap Modifier"; } void debugInspect(IDebugInspectionReport *report) const override; #endif private: Common::SharedPtr shallowClone() const override; const char *getDefaultName() const override; }; class DisplayBitmapModifier : public Modifier { public: DisplayBitmapModifier(); ~DisplayBitmapModifier(); bool load(const PlugInModifierLoaderContext &context, const Data::Hoologic::DisplayBitmapModifier &data); bool respondsToEvent(const Event &evt) const override; VThreadState consumeMessage(Runtime *runtime, const Common::SharedPtr &msg) override; void disable(Runtime *runtime) override; #ifdef MTROPOLIS_DEBUG_ENABLE const char *debugGetTypeName() const override { return "DisplayBitmap Modifier"; } void debugInspect(IDebugInspectionReport *report) const override; #endif private: Common::SharedPtr shallowClone() const override; const char *getDefaultName() const override; }; class ScaleBitmapModifier : public Modifier { public: ScaleBitmapModifier(); ~ScaleBitmapModifier(); bool load(const PlugInModifierLoaderContext &context, const Data::Hoologic::ScaleBitmapModifier &data); bool respondsToEvent(const Event &evt) const override; VThreadState consumeMessage(Runtime *runtime, const Common::SharedPtr &msg) override; void disable(Runtime *runtime) override; #ifdef MTROPOLIS_DEBUG_ENABLE const char *debugGetTypeName() const override { return "ScaleBitmap Modifier"; } void debugInspect(IDebugInspectionReport *report) const override; #endif private: Common::SharedPtr shallowClone() const override; const char *getDefaultName() const override; }; class SaveBitmapModifier : public Modifier { public: SaveBitmapModifier(); ~SaveBitmapModifier(); bool load(const PlugInModifierLoaderContext &context, const Data::Hoologic::SaveBitmapModifier &data); bool respondsToEvent(const Event &evt) const override; VThreadState consumeMessage(Runtime *runtime, const Common::SharedPtr &msg) override; void disable(Runtime *runtime) override; #ifdef MTROPOLIS_DEBUG_ENABLE const char *debugGetTypeName() const override { return "SaveBitmap Modifier"; } void debugInspect(IDebugInspectionReport *report) const override; #endif private: Common::SharedPtr shallowClone() const override; const char *getDefaultName() const override; }; class PrintBitmapModifier : public Modifier { public: PrintBitmapModifier(); ~PrintBitmapModifier(); bool load(const PlugInModifierLoaderContext &context, const Data::Hoologic::PrintBitmapModifier &data); bool respondsToEvent(const Event &evt) const override; VThreadState consumeMessage(Runtime *runtime, const Common::SharedPtr &msg) override; void disable(Runtime *runtime) override; #ifdef MTROPOLIS_DEBUG_ENABLE const char *debugGetTypeName() const override { return "PrintBitmap Modifier"; } void debugInspect(IDebugInspectionReport *report) const override; #endif private: Common::SharedPtr shallowClone() const override; const char *getDefaultName() const override; }; class PainterModifier : public Modifier { public: PainterModifier(); ~PainterModifier(); bool load(const PlugInModifierLoaderContext &context, const Data::Hoologic::PainterModifier &data); bool respondsToEvent(const Event &evt) const override; VThreadState consumeMessage(Runtime *runtime, const Common::SharedPtr &msg) override; void disable(Runtime *runtime) override; #ifdef MTROPOLIS_DEBUG_ENABLE const char *debugGetTypeName() const override { return "Painter Modifier"; } void debugInspect(IDebugInspectionReport *report) const override; #endif private: Common::SharedPtr shallowClone() const override; const char *getDefaultName() const override; }; class KeyStateModifier : public Modifier { public: KeyStateModifier(); ~KeyStateModifier(); bool load(const PlugInModifierLoaderContext &context, const Data::Hoologic::KeyStateModifier &data); bool respondsToEvent(const Event &evt) const override; VThreadState consumeMessage(Runtime *runtime, const Common::SharedPtr &msg) override; void disable(Runtime *runtime) override; #ifdef MTROPOLIS_DEBUG_ENABLE const char *debugGetTypeName() const override { return "KeyState Modifier"; } void debugInspect(IDebugInspectionReport *report) const override; #endif private: Common::SharedPtr shallowClone() const override; const char *getDefaultName() const override; }; class HoologicPlugIn : public MTropolis::PlugIn { public: HoologicPlugIn(); ~HoologicPlugIn(); void registerModifiers(IPlugInModifierRegistrar *registrar) const override; private: PlugInModifierFactory _bitmapVariableModifierFactory; PlugInModifierFactory _captureBitmapModifierFactory; PlugInModifierFactory _importBitmapModifierFactory; PlugInModifierFactory _displayBitmapModifierFactory; PlugInModifierFactory _scaleBitmapModifierFactory; PlugInModifierFactory _saveBitmapModifierFactory; PlugInModifierFactory _printBitmapModifierFactory; PlugInModifierFactory _painterModifierFactory; PlugInModifierFactory _keyStateModifierFactory; }; } // End of namespace FTTS } // End of namespace MTropolis #endif