PorygonLang/src/Script.hpp

79 lines
2.5 KiB
C++
Raw Normal View History

2019-05-21 10:59:15 +00:00
#ifndef PORYGONLANG_SCRIPT_HPP
#define PORYGONLANG_SCRIPT_HPP
#include <utility>
2019-05-21 10:59:15 +00:00
#include <string>
#include <map>
2019-06-06 17:01:54 +00:00
#include "Diagnostics/DiagnosticsHolder.hpp"
#include "Binder/BoundStatements/BoundStatement.hpp"
2019-05-23 16:50:09 +00:00
#include "Evaluator/Evaluator.hpp"
#include "Evaluator/EvalValues/EvalValue.hpp"
2019-05-28 15:49:03 +00:00
#include "Utilities/HashedString.hpp"
#include "ScriptOptions.hpp"
2019-05-21 10:59:15 +00:00
using namespace std;
using namespace Porygon::Evaluation;
2019-05-21 10:59:15 +00:00
namespace Porygon{
class Script {
Evaluator* _evaluator;
map<Utilities::HashedString, EvalValuePointer>* _scriptVariables;
unordered_map<Utilities::HashedString, shared_ptr<const ScriptType>>* _scriptTypes;
shared_ptr<Binder::BoundScriptStatement> _boundScript;
2019-08-10 14:45:15 +00:00
shared_ptr<const ScriptType> _returnType = nullptr;
ScriptOptions* _scriptOptions;
public:
shared_ptr<Diagnostics::DiagnosticsHolder> Diagnostics;
private:
std::string _treeString;
2019-05-23 16:50:09 +00:00
2019-08-24 13:12:09 +00:00
explicit Script(const u16string&, ScriptOptions*);
Script(shared_ptr<BoundScriptStatement> boundScript, shared_ptr<Diagnostics::DiagnosticsHolder> diagnostics);
void Parse(const u16string& script);
public:
2019-08-24 13:12:09 +00:00
static Script* Create(const u16string& script, ScriptOptions* = nullptr);
static Script* Create(const string& script, ScriptOptions* = nullptr);
static Script* Clone(const Script* script);
2019-05-23 16:50:09 +00:00
~Script();
2019-05-21 12:15:39 +00:00
2019-07-25 15:23:54 +00:00
inline shared_ptr<const ScriptType> GetReturnType(){
return _returnType;
}
2019-05-23 16:50:09 +00:00
2019-07-25 15:23:54 +00:00
inline void SetReturnType(const shared_ptr<const ScriptType>& t){
_returnType = t;
}
2019-06-07 13:23:13 +00:00
[[nodiscard]] inline const ScriptOptions* GetScriptOptions() const{
if (_scriptOptions == nullptr){
return ScriptOptions::GetDefaultScriptOptions();
}
return _scriptOptions;
}
EvalValuePointer Evaluate();
2019-05-23 16:50:09 +00:00
2019-07-25 15:23:54 +00:00
const EvalValue* GetVariable(const u16string& key);
bool HasVariable(const u16string& key);
shared_ptr<const ScriptType> GetVariableType(const Utilities::HashedString& key){
return _scriptTypes->at(key);
}
2019-05-28 15:49:03 +00:00
const EvalValue* CallFunction(const u16string& key, const vector<EvalValue*>& variables);
bool HasFunction(const u16string& key);
2019-08-10 14:45:15 +00:00
const map<Utilities::HashedString, EvalValuePointer>* GetScriptVariables(){
return _scriptVariables;
}
std::string GetTreeString();
};
}
2019-05-21 10:59:15 +00:00
#endif //PORYGONLANG_SCRIPT_HPP