aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/libparser/booleancondition.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libparser/booleancondition.cpp')
-rw-r--r--src/libparser/booleancondition.cpp231
1 files changed, 231 insertions, 0 deletions
diff --git a/src/libparser/booleancondition.cpp b/src/libparser/booleancondition.cpp
new file mode 100644
index 0000000..91be35c
--- /dev/null
+++ b/src/libparser/booleancondition.cpp
@@ -0,0 +1,231 @@
+/***************************************************************************
+ * Copyright (C) 2014 by Renaud Guezennec *
+ * https://rolisteam.org/contact *
+ * *
+ * This file is part of DiceParser *
+ * *
+ * DiceParser 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 2 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, write to the *
+ * Free Software Foundation, Inc., *
+ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
+ ***************************************************************************/
+#include "booleancondition.h"
+
+Dice::CONDITION_STATE testEqual(bool insideRange, const std::pair<qint64, qint64>& range)
+{
+ if(!insideRange)
+ return Dice::CONDITION_STATE::UNREACHABLE;
+ else if(insideRange && (range.first == range.second))
+ return Dice::CONDITION_STATE::ALWAYSTRUE;
+ else
+ return Dice::CONDITION_STATE::REACHABLE;
+}
+
+Dice::CONDITION_STATE testGreatherThan(qint64 value, const std::pair<qint64, qint64>& range)
+{
+ if(value >= std::max(range.first, range.second))
+ return Dice::CONDITION_STATE::UNREACHABLE;
+ else if(value < std::min(range.first, range.second))
+ return Dice::CONDITION_STATE::ALWAYSTRUE;
+ else
+ return Dice::CONDITION_STATE::REACHABLE;
+}
+
+Dice::CONDITION_STATE testLesserThan(qint64 value, const std::pair<qint64, qint64>& range)
+{
+ if(value <= std::min(range.first, range.second))
+ return Dice::CONDITION_STATE::UNREACHABLE;
+ else if(value > std::max(range.first, range.second))
+ return Dice::CONDITION_STATE::ALWAYSTRUE;
+ else
+ return Dice::CONDITION_STATE::REACHABLE;
+}
+
+Dice::CONDITION_STATE testGreaterOrEqual(qint64 value, const std::pair<qint64, qint64>& range)
+{
+ if(value > std::max(range.first, range.second))
+ return Dice::CONDITION_STATE::UNREACHABLE;
+ else if(value <= std::min(range.first, range.second))
+ return Dice::CONDITION_STATE::ALWAYSTRUE;
+ else
+ return Dice::CONDITION_STATE::REACHABLE;
+}
+
+Dice::CONDITION_STATE testLesserOrEqual(qint64 value, const std::pair<qint64, qint64>& range)
+{
+ if(value < std::min(range.first, range.second))
+ return Dice::CONDITION_STATE::UNREACHABLE;
+ else if(value >= std::max(range.first, range.second))
+ return Dice::CONDITION_STATE::ALWAYSTRUE;
+ else
+ return Dice::CONDITION_STATE::REACHABLE;
+}
+
+Dice::CONDITION_STATE testDifferent(bool inside, const std::pair<qint64, qint64>& range)
+{
+ if(inside && (range.first == range.second))
+ return Dice::CONDITION_STATE::UNREACHABLE;
+ else if(!inside)
+ return Dice::CONDITION_STATE::ALWAYSTRUE;
+ else
+ return Dice::CONDITION_STATE::REACHABLE;
+}
+
+BooleanCondition::BooleanCondition() : m_operator(Dice::CompareOperator::Equal) {}
+
+BooleanCondition::~BooleanCondition()
+{
+ if(m_value != nullptr)
+ {
+ delete m_value;
+ m_value= nullptr;
+ }
+}
+qint64 BooleanCondition::hasValid(Die* b, bool recursive, bool unhighlight) const
+{
+ QList<qint64> listValues;
+ if(m_conditionType == Dice::OnEachValue)
+ {
+ listValues.append(b->getValue());
+ }
+ else if(recursive)
+ {
+ listValues= b->getListValue();
+ }
+ else
+ {
+ listValues.append(b->getLastRolledValue());
+ }
+
+ qint64 sum= 0;
+ auto valueScalar= valueToScalar();
+ for(qint64& value : listValues)
+ {
+ switch(m_operator)
+ {
+ case Dice::CompareOperator::Equal:
+ sum+= (value == valueScalar) ? 1 : 0;
+ break;
+ case Dice::CompareOperator::GreaterThan:
+ sum+= (value > valueScalar) ? 1 : 0;
+ break;
+ case Dice::CompareOperator::LesserThan:
+ sum+= (value < valueScalar) ? 1 : 0;
+ break;
+ case Dice::CompareOperator::GreaterOrEqual:
+ sum+= (value >= valueScalar) ? 1 : 0;
+ break;
+ case Dice::CompareOperator::LesserOrEqual:
+ sum+= (value <= valueScalar) ? 1 : 0;
+ break;
+ case Dice::CompareOperator::Different:
+ sum+= (value != valueScalar) ? 1 : 0;
+ break;
+ }
+ }
+ if((unhighlight) && (sum == 0))
+ {
+ b->setHighlighted(false);
+ }
+ else
+ {
+ b->setHighlighted(true);
+ }
+
+ return sum;
+}
+
+void BooleanCondition::setOperator(Dice::CompareOperator m)
+{
+ m_operator= m;
+}
+
+void BooleanCondition::setValueNode(ExecutionNode* v)
+{
+ m_value= v;
+}
+QString BooleanCondition::toString()
+{
+ QString str("");
+ switch(m_operator)
+ {
+ case Dice::CompareOperator::Equal:
+ str.append(QStringLiteral("="));
+ break;
+ case Dice::CompareOperator::GreaterThan:
+ str.append(QStringLiteral(">"));
+ break;
+ case Dice::CompareOperator::LesserThan:
+ str.append(QStringLiteral("<"));
+ break;
+ case Dice::CompareOperator::GreaterOrEqual:
+ str.append(QStringLiteral(">="));
+ break;
+ case Dice::CompareOperator::LesserOrEqual:
+ str.append(QStringLiteral("<="));
+ break;
+ case Dice::CompareOperator::Different:
+ str.append(QStringLiteral("!="));
+ break;
+ }
+ return QStringLiteral("[%1%2]").arg(str).arg(valueToScalar());
+}
+
+Dice::CONDITION_STATE BooleanCondition::isValidRangeSize(const std::pair<qint64, qint64>& range) const
+{
+ Dice::CONDITION_STATE state;
+ auto valueScalar= valueToScalar();
+ qint64 boundValue= qBound(range.first, valueScalar, range.second);
+ bool isInsideRange= (boundValue == valueScalar);
+ switch(m_operator)
+ {
+ case Dice::CompareOperator::Equal:
+ state= testEqual(isInsideRange, range); //(isInsideRange && (range.first != range.second)) ? ;
+ break;
+ case Dice::CompareOperator::GreaterThan:
+ state= testGreatherThan(valueScalar, range);
+ break;
+ case Dice::CompareOperator::LesserThan:
+ state= testLesserThan(valueScalar, range);
+ break;
+ case Dice::CompareOperator::GreaterOrEqual:
+ state= testGreaterOrEqual(valueScalar, range);
+ break;
+ case Dice::CompareOperator::LesserOrEqual:
+ state= testLesserOrEqual(valueScalar, range);
+ break;
+ case Dice::CompareOperator::Different:
+ state= testDifferent(isInsideRange, range);
+ break;
+ }
+ return state;
+}
+Validator* BooleanCondition::getCopy() const
+{
+ BooleanCondition* val= new BooleanCondition();
+ val->setOperator(m_operator);
+ val->setValueNode(m_value->getCopy());
+ return val;
+}
+qint64 BooleanCondition::valueToScalar() const
+{
+ if(m_value == nullptr)
+ return 0;
+
+ m_value->run(nullptr);
+ auto result= m_value->getResult();
+ if(result)
+ return result->getResult(Dice::RESULT_TYPE::SCALAR).toInt();
+ else
+ return 0;
+}