1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/lib/CScriptingModule.h

55 lines
1.1 KiB
C
Raw Normal View History

/*
* CScriptingModule.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
#if SCRIPTING_ENABLED
#include <vcmi/scripting/Service.h>
VCMI_LIB_NAMESPACE_BEGIN
namespace spells
{
namespace effects
{
class Registry;
}
}
namespace scripting
{
class DLL_LINKAGE ContextBase : public Context
{
public:
ContextBase(vstd::CLoggerBase * logger_);
2023-03-13 23:26:44 +02:00
virtual ~ContextBase() = default;
protected:
vstd::CLoggerBase * logger;
};
class DLL_LINKAGE Module
{
public:
2023-03-13 23:26:44 +02:00
Module() = default;
virtual ~Module() = default;
virtual std::string compile(const std::string & name, const std::string & source, vstd::CLoggerBase * logger) const = 0;
virtual std::shared_ptr<ContextBase> createContextFor(const Script * source, const Environment * env) const = 0;
virtual void registerSpellEffect(spells::effects::Registry * registry, const Script * source) const = 0;
};
2014-04-20 11:40:15 +03:00
}
VCMI_LIB_NAMESPACE_END
#endif