diff options
| author | 2021-02-13 12:37:44 +0100 | |
|---|---|---|
| committer | 2021-02-13 12:37:44 +0100 | |
| commit | de55ac4c76ef3f6dbdc6fd2d03e3484bcfccdb0e (patch) | |
| tree | 137ae58be5ed6e351221288924ad530adeb3d8f7 /node | |
| parent | 8a54eb609bd278e87b8a3d6a9be42301778df18d (diff) | |
| download | OneRoll-de55ac4c76ef3f6dbdc6fd2d03e3484bcfccdb0e.tar.gz OneRoll-de55ac4c76ef3f6dbdc6fd2d03e3484bcfccdb0e.zip | |
Add replace value node.
Move definition of CaseInfo struct.
Fix small things from switchcasenode.
Diffstat (limited to 'node')
| -rw-r--r-- | node/replacevaluenode.cpp | 134 | ||||
| -rw-r--r-- | node/replacevaluenode.h | 50 | ||||
| -rw-r--r-- | node/switchcasenode.cpp | 2 | ||||
| -rw-r--r-- | node/switchcasenode.h | 8 |
4 files changed, 187 insertions, 7 deletions
diff --git a/node/replacevaluenode.cpp b/node/replacevaluenode.cpp new file mode 100644 index 0000000..fbad5df --- /dev/null +++ b/node/replacevaluenode.cpp @@ -0,0 +1,134 @@ +/*************************************************************************** + * Copyright (C) 2021 by Renaud Guezennec * + * http://www.rolisteam.org/contact * + * * + * This software 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 "replacevaluenode.h" + +#include "diceresult.h" +#include "parsingtoolbox.h" +#include <QDebug> + +ReplaceValueNode::ReplaceValueNode() : m_diceResult(new DiceResult) +{ + m_result= m_diceResult; +} + +void ReplaceValueNode::setStopAtFirt(bool b) +{ + m_stopAtFirst= b; +} + +void ReplaceValueNode::run(ExecutionNode* previous) +{ + m_previousNode= previous; + if(nullptr == previous) + { + m_errors.insert(Dice::ERROR_CODE::NO_PREVIOUS_ERROR, + QStringLiteral("No previous node before Switch/Case operator")); + return; + } + auto previousResult= previous->getResult(); + m_result->setPrevious(previousResult); + + if(nullptr == previousResult + || (!previousResult->hasResultOfType(Dice::RESULT_TYPE::SCALAR) + && !previousResult->hasResultOfType(Dice::RESULT_TYPE::DICE_LIST))) + { + m_errors.insert(Dice::ERROR_CODE::NO_VALID_RESULT, + QStringLiteral("No scalar or dice result before Switch/Case operator")); + return; + } + + QList<Die*> dieList; + if(previousResult->hasResultOfType(Dice::RESULT_TYPE::DICE_LIST)) + { + auto diceResult= dynamic_cast<DiceResult*>(previousResult); + if(diceResult) + dieList.append(diceResult->getResultList()); + } + + for(auto die : dieList) + { + QStringList resultList; + for(auto const& info : qAsConst(m_branchList)) + { + if(info->validatorList) + { + auto res= info->validatorList->hasValid(die, false); + if(!res) + continue; + } + else if(!resultList.isEmpty()) + break; + + auto replaceValresult= info->node->getResult(); + if(replaceValresult) + die->replaceLastValue(replaceValresult->getResult(Dice::RESULT_TYPE::SCALAR).toInt()); + break; + } + m_diceResult->insertResult(die); + } + + if(nullptr != m_nextNode) + { + m_nextNode->run(this); + } +} + +QString ReplaceValueNode::toString(bool withLabel) const +{ + if(withLabel) + { + return QString("%1 [label=\"ReplaceValueNode\"]").arg(m_id); + } + else + { + return m_id; + } +} + +qint64 ReplaceValueNode::getPriority() const +{ + qint64 priority= 0; + if(nullptr != m_previousNode) + { + priority= m_previousNode->getPriority(); + } + return priority; +} + +ExecutionNode* ReplaceValueNode::getCopy() const +{ + ReplaceValueNode* node= new ReplaceValueNode(); + for(auto const& info : qAsConst(m_branchList)) + { + node->insertCase(info->node, info->validatorList); + } + + if(nullptr != m_nextNode) + { + node->setNextNode(m_nextNode->getCopy()); + } + return node; +} + +void ReplaceValueNode::insertCase(ExecutionNode* node, ValidatorList* validator) +{ + std::unique_ptr<Dice::CaseInfo> info(new Dice::CaseInfo{validator, node}); + m_branchList.push_back(std::move(info)); +} diff --git a/node/replacevaluenode.h b/node/replacevaluenode.h new file mode 100644 index 0000000..36bdec2 --- /dev/null +++ b/node/replacevaluenode.h @@ -0,0 +1,50 @@ +/*************************************************************************** + * Copyright (C) 2021 by Renaud Guezennec * + * http://www.rolisteam.org/contact * + * * + * This software 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. * + ***************************************************************************/ +#ifndef REPLACEVALUENODE_H +#define REPLACEVALUENODE_H + +#include <memory> +#include <vector> + +#include "executionnode.h" +#include "validatorlist.h" + +class DiceResult; +class ReplaceValueNode : public ExecutionNode +{ +public: + ReplaceValueNode(); + void setStopAtFirt(bool b); + + void run(ExecutionNode* previous= nullptr) override; + + QString toString(bool withLabel) const override; + qint64 getPriority() const override; + ExecutionNode* getCopy() const override; + + void insertCase(ExecutionNode* node, ValidatorList* validator); + +private: + std::vector<std::unique_ptr<Dice::CaseInfo>> m_branchList; + DiceResult* m_diceResult= nullptr; + bool m_stopAtFirst= false; +}; + +#endif // REPLACEVALUENODE_H diff --git a/node/switchcasenode.cpp b/node/switchcasenode.cpp index 9b15ec0..0928dd2 100644 --- a/node/switchcasenode.cpp +++ b/node/switchcasenode.cpp @@ -147,6 +147,6 @@ ExecutionNode* SwitchCaseNode::getCopy() const void SwitchCaseNode::insertCase(ExecutionNode* node, ValidatorList* validator) { - std::unique_ptr<CaseInfo> info(new CaseInfo{validator, node}); + std::unique_ptr<Dice::CaseInfo> info(new Dice::CaseInfo{validator, node}); m_branchList.push_back(std::move(info)); } diff --git a/node/switchcasenode.h b/node/switchcasenode.h index 719da90..a0f658d 100644 --- a/node/switchcasenode.h +++ b/node/switchcasenode.h @@ -21,15 +21,11 @@ #define SWITCHCASENODE_H #include <memory> +#include <vector> #include "executionnode.h" #include "validatorlist.h" -struct CaseInfo -{ - ValidatorList* validatorList; - ExecutionNode* node; -}; class StringResult; class SwitchCaseNode : public ExecutionNode { @@ -46,7 +42,7 @@ public: void insertCase(ExecutionNode* node, ValidatorList* validator); private: - std::vector<std::unique_ptr<CaseInfo>> m_branchList; + std::vector<std::unique_ptr<Dice::CaseInfo>> m_branchList; StringResult* m_stringResult; bool m_stopAtFirst= false; }; |