/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-09-16 * Changed: 2021-05-02 * * */ #include "TestDataFactory.hpp" ls_std::StateMachine ls_std_test::TestDataFactory::createStateMachine() { ls_std::StateMachine stateMachine{"test_machine"}; std::shared_ptr stateA = std::make_shared("A"); std::shared_ptr stateB = std::make_shared("B"); std::shared_ptr stateC = std::make_shared("C"); std::shared_ptr stateD = std::make_shared("D"); std::shared_ptr stateE = std::make_shared("E"); // add states stateMachine.addState(stateA); stateMachine.addState(stateB); stateMachine.addState(stateC); stateMachine.addState(stateD); stateMachine.addState(stateE); // add connections / see state_machine_test.png stateA->addStateConnection("AB", stateB); stateB->addStateConnection("BC", stateC); stateB->addStateConnection("BD", stateD); stateC->addStateConnection("CB", stateB); stateC->addStateConnection("CE", stateE); stateD->addStateConnection("DE", stateE); return stateMachine; } std::shared_ptr ls_std_test::TestDataFactory::createXmlContent() { std::shared_ptr root = std::make_shared("dialog"); std::shared_ptr attribute{}; std::shared_ptr child{}; std::shared_ptr text{}; attribute = std::make_shared("name"); attribute->setValue("dungeon_001"); root->addAttributeToEnd(attribute); child = std::make_shared("dialogUnit"); attribute = std::make_shared("id"); attribute->setValue("001"); child->addAttributeToEnd(attribute); text = std::make_shared("text"); text->setValue("Hello!"); child->addChildToEnd(text); root->addChildToEnd(child); child = std::make_shared("dialogUnit"); attribute = std::make_shared("id"); attribute->setValue("002"); child->addAttributeToEnd(attribute); text = std::make_shared("text"); text->setValue("Hello again!"); child->addChildToEnd(text); root->addChildToEnd(child); return root; }