PorygonLang/src/Evaluator/Evaluator.cpp

71 lines
2.7 KiB
C++
Raw Normal View History

2019-05-23 16:50:09 +00:00
#include "Evaluator.hpp"
#include "EvaluationException.hpp"
#include "../Script.hpp"
void Evaluator::Evaluate(BoundScriptStatement *statement) {
EvaluateBlockStatement(statement);
}
void Evaluator::EvaluateStatement(BoundStatement *statement) {
switch (statement->GetKind()){
case BoundStatementKind ::Script: throw; // Should never happen
case BoundStatementKind ::Block: return this -> EvaluateBlockStatement((BoundBlockStatement*)statement);
case BoundStatementKind ::Expression: return this -> EvaluateExpressionStatement((BoundExpressionStatement*)statement);
}
}
void Evaluator::EvaluateBlockStatement(BoundBlockStatement* statement) {
for (auto s: statement->GetStatements()){
this -> EvaluateStatement(s);
}
}
void Evaluator::EvaluateExpressionStatement(BoundExpressionStatement *statement) {
// Delete previously saved value.
delete this->_scriptData->_lastValue;
// Save new value
2019-05-23 16:50:09 +00:00
this->_scriptData->_lastValue = this -> EvaluateExpression(statement->GetExpression());
}
EvalValue *Evaluator::EvaluateExpression(BoundExpression *expression) {
2019-05-23 16:50:09 +00:00
auto type = expression -> GetType();
switch (type->GetClass()){
case TypeClass ::Number: return this -> EvaluateIntegerExpression(expression);
case TypeClass ::Bool: return this -> EvaluateBoolExpression(expression);
default: throw;
2019-05-23 16:50:09 +00:00
}
}
NumericEvalValue* Evaluator::EvaluateIntegerExpression(BoundExpression *expression) {
2019-05-23 16:50:09 +00:00
switch (expression->GetKind()){
case BoundExpressionKind ::LiteralInteger: return new IntegerEvalValue(((BoundLiteralIntegerExpression*)expression)->GetValue());
case BoundExpressionKind ::LiteralFloat: return new FloatEvalValue(((BoundLiteralFloatExpression*)expression)->GetValue());
2019-05-23 16:50:09 +00:00
case BoundExpressionKind ::Binary: return this -> EvaluateIntegerBinary((BoundBinaryExpression*)expression);
2019-05-24 13:31:11 +00:00
case BoundExpressionKind ::LiteralString:
case BoundExpressionKind ::LiteralBool:
case BoundExpressionKind ::Bad:
throw;
}
2019-05-23 16:50:09 +00:00
}
BooleanEvalValue* Evaluator::EvaluateBoolExpression(BoundExpression *expression) {
switch (expression->GetKind()) {
case BoundExpressionKind::LiteralBool: return new BooleanEvalValue(((BoundLiteralBoolExpression*)expression)->GetValue());
case BoundExpressionKind::Unary:break;
case BoundExpressionKind::Binary: return this -> EvaluateBooleanBinary((BoundBinaryExpression*)expression);
case BoundExpressionKind::Bad:
case BoundExpressionKind::LiteralInteger:
case BoundExpressionKind::LiteralFloat:
case BoundExpressionKind::LiteralString:
throw;
}
2019-05-23 16:50:09 +00:00
}
EvalValue* Evaluator::EvaluateStringExpression(BoundExpression *expression) {
return nullptr;
2019-05-23 16:50:09 +00:00
}