1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/apps/openmw/mwscript/compilercontext.hpp

49 lines
1.4 KiB
C++
Raw Normal View History

2010-07-02 17:21:27 +02:00
#ifndef GAME_SCRIPT_COMPILERCONTEXT_H
#define GAME_SCRIPT_COMPILERCONTEXT_H
#include <components/compiler/context.hpp>
namespace MWScript
{
class CompilerContext : public Compiler::Context
{
public:
enum Type
{
2016-12-14 22:11:22 +01:00
Type_Full, // global, local, targeted
Type_Dialogue,
Type_Console
};
private:
Type mType;
public:
CompilerContext (Type type);
/// Is the compiler allowed to declare local variables?
bool canDeclareLocals() const override;
/// 'l: long, 's': short, 'f': float, ' ': does not exist.
char getGlobalType (const std::string& name) const override;
std::pair<char, bool> getMemberType (const std::string& name,
const std::string& id) const override;
///< Return type of member variable \a name in script \a id or in script of reference of
/// \a id
/// \return first: 'l: long, 's': short, 'f': float, ' ': does not exist.
/// second: true: script of reference
bool isId (const std::string& name) const override;
///< Does \a name match an ID, that can be referenced?
bool isJournalId (const std::string& name) const override;
///< Does \a name match a journal ID?
2010-07-02 17:21:27 +02:00
};
}
#endif