| [a5041ec] | 1 | /*
|
|---|
| [10aee4] | 2 | * ActionSequence.hpp
|
|---|
| [a5041ec] | 3 | *
|
|---|
| 4 | * Created on: Dec 17, 2009
|
|---|
| 5 | * Author: crueger
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | #ifndef ACTIONSEQUENZE_HPP_
|
|---|
| 9 | #define ACTIONSEQUENZE_HPP_
|
|---|
| 10 |
|
|---|
| [56f73b] | 11 | // include config.h
|
|---|
| 12 | #ifdef HAVE_CONFIG_H
|
|---|
| 13 | #include <config.h>
|
|---|
| 14 | #endif
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| [5b0b98] | 17 | #include "Actions/Action.hpp"
|
|---|
| [a5041ec] | 18 |
|
|---|
| [5b0b98] | 19 | #include <deque>
|
|---|
| [a5041ec] | 20 |
|
|---|
| [c1d837] | 21 | class ActionSequenceTest;
|
|---|
| 22 |
|
|---|
| [ce7fdc] | 23 | namespace MoleCuilder {
|
|---|
| 24 |
|
|---|
| [a5041ec] | 25 | /**
|
|---|
| 26 | * Store Actions for later use.
|
|---|
| 27 | */
|
|---|
| 28 | class ActionSequence
|
|---|
| 29 | {
|
|---|
| [2efa90] | 30 | friend class MakroAction;
|
|---|
| [c1d837] | 31 | //!> grant unit test access to private sequence
|
|---|
| 32 | friend class ::ActionSequenceTest;
|
|---|
| [a5041ec] | 33 | public:
|
|---|
| [67e2b3] | 34 | typedef std::deque<Action*> actionSet;
|
|---|
| [b5b01e] | 35 | typedef std::deque<ActionState::ptr> stateSet;
|
|---|
| [67e2b3] | 36 |
|
|---|
| [a5041ec] | 37 | ActionSequence();
|
|---|
| [af5384] | 38 | ActionSequence(const ActionSequence &_other);
|
|---|
| [a5041ec] | 39 | virtual ~ActionSequence();
|
|---|
| 40 |
|
|---|
| 41 | void addAction(Action*);
|
|---|
| 42 | Action* removeLastAction();
|
|---|
| [9c1324] | 43 | unsigned int getLoop() const
|
|---|
| 44 | { return loop; }
|
|---|
| [a5041ec] | 45 |
|
|---|
| [2efa90] | 46 | void callAll();
|
|---|
| [a5041ec] | 47 |
|
|---|
| 48 | bool canUndo();
|
|---|
| [67e2b3] | 49 | bool shouldUndo();
|
|---|
| [a5041ec] | 50 |
|
|---|
| [46b181] | 51 | void outputAsCLI(std::ostream &ost) const;
|
|---|
| [477012] | 52 | void outputAsPython(std::ostream &ost, const std::string &prefix) const;
|
|---|
| [a82f61] | 53 | void setOptionValue(const std::string &_token, const std::string &_value);
|
|---|
| [46b181] | 54 |
|
|---|
| [2efa90] | 55 | protected:
|
|---|
| [237f93] | 56 | /** removes the first occurence of an action name \a name from sequence.
|
|---|
| 57 | *
|
|---|
| 58 | * \param name name of action
|
|---|
| 59 | * \return true - action removed, false - action not found
|
|---|
| 60 | */
|
|---|
| 61 | bool removeAction(const std::string &name);
|
|---|
| 62 |
|
|---|
| [2efa90] | 63 | stateSet callAll(bool); // Dummy parameter to allow overloading
|
|---|
| [047878] | 64 | Dialog* fillAllDialogs(Dialog *dialog);
|
|---|
| [2efa90] | 65 | stateSet undoAll(stateSet);
|
|---|
| 66 | stateSet redoAll(stateSet);
|
|---|
| [9c1324] | 67 | void setLoop(unsigned int _loop)
|
|---|
| 68 | { loop = _loop; }
|
|---|
| [e3ce0e] | 69 |
|
|---|
| 70 | unsigned int getStep() const
|
|---|
| 71 | { return step; }
|
|---|
| 72 |
|
|---|
| [a5041ec] | 73 | private:
|
|---|
| [67e2b3] | 74 | actionSet actions;
|
|---|
| [9c1324] | 75 | //!> how often the sequence is repeated
|
|---|
| 76 | unsigned int loop;
|
|---|
| [e3ce0e] | 77 | //!> current step (used in loops)
|
|---|
| 78 | unsigned int step;
|
|---|
| [a5041ec] | 79 | };
|
|---|
| 80 |
|
|---|
| [ce7fdc] | 81 | }
|
|---|
| 82 |
|
|---|
| [a5041ec] | 83 | #endif /* ACTIONSEQUENZE_HPP_ */
|
|---|