| 
            Last change
 on this file since b5b114 was             af5384, checked in by Frederik Heber <heber@…>, 12 years ago           | 
        
        
          | 
             
Actions can now clone() and split off prepare() from call(). 
 
- ActionQueue now separates call phase into clone(), prepare(), and call().
 - ActionQueue's dstor releases Actions in deque.
 - CurrentAction is an index as push_back always invalidates iterator.
 - ActionQueue_t is now a simple vector of ptrs.
 - call() is now non-interactive, (maybe) interactive part is placed in
prepare() where dialogs are used to fill parameters.
 - only fully prepared Actions are placed in ActionQueue.
 - ActionQueue obtains action instances from Registry, copies, prepares them,
and places them in the queue.
 - Action::clone() gets QueryOptions as param. This lets us either clone without
params or really copy the instance.
 - If action is called as COMMAND, params have been filled already.
 - Reactions require a ActionQueue::getLastAction() to actually obtain result
of (cloned) Action.
 - FIX: Calculation now has const has...() and getResult().
  
           | 
        
        
          
            
              - 
Property                 mode
 set to                 
100644
               
             
           | 
        
        
          | 
            File size:
            1.4 KB
           | 
        
      
      
| Line |   | 
|---|
| 1 | /*
 | 
|---|
| 2 |  * ManipulateAtomsProcess.hpp
 | 
|---|
| 3 |  *
 | 
|---|
| 4 |  *  Created on: Feb 18, 2010
 | 
|---|
| 5 |  *      Author: crueger
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | #ifndef MANIPULATEATOMSPROCESS_HPP_
 | 
|---|
| 9 | #define MANIPULATEATOMSPROCESS_HPP_
 | 
|---|
| 10 | 
 | 
|---|
| 11 | // include config.h
 | 
|---|
| 12 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 13 | #include <config.h>
 | 
|---|
| 14 | #endif
 | 
|---|
| 15 | 
 | 
|---|
| 16 | 
 | 
|---|
| 17 | #include "Actions/Process.hpp"
 | 
|---|
| 18 | 
 | 
|---|
| 19 | #include<boost/function.hpp>
 | 
|---|
| 20 | 
 | 
|---|
| 21 | #include "Descriptors/AtomDescriptor.hpp"
 | 
|---|
| 22 | 
 | 
|---|
| 23 | class manipulateAtomsTest;
 | 
|---|
| 24 | class World;
 | 
|---|
| 25 | 
 | 
|---|
| 26 | namespace MoleCuilder {
 | 
|---|
| 27 | 
 | 
|---|
| 28 | class ActionRegistry;
 | 
|---|
| 29 | 
 | 
|---|
| 30 | class ManipulateAtomsProcess : public Process
 | 
|---|
| 31 | {
 | 
|---|
| 32 |   friend class ::manipulateAtomsTest;
 | 
|---|
| 33 | public:
 | 
|---|
| 34 |   ManipulateAtomsProcess(boost::function<void(atom*)> _operation, AtomDescriptor descr,const ActionTrait &_trait);
 | 
|---|
| 35 |   virtual ~ManipulateAtomsProcess();
 | 
|---|
| 36 | 
 | 
|---|
| 37 |   virtual bool canUndo();
 | 
|---|
| 38 |   virtual bool shouldUndo();
 | 
|---|
| 39 | 
 | 
|---|
| 40 |   Action* clone(enum QueryOptions flag = Interactive) const;
 | 
|---|
| 41 | 
 | 
|---|
| 42 |   void outputAsCLI(std::ostream &ost) const;
 | 
|---|
| 43 |   void outputAsPython(std::ostream &ost, const std::string &prefix) const;
 | 
|---|
| 44 | 
 | 
|---|
| 45 |   virtual void doManipulate(World *);
 | 
|---|
| 46 | 
 | 
|---|
| 47 | private:
 | 
|---|
| 48 |   /** Wrap function Action::call() to allow manipulateAtomsTest access.
 | 
|---|
| 49 |    *
 | 
|---|
| 50 |    */
 | 
|---|
| 51 |   void call()
 | 
|---|
| 52 |   { Process::call(); }
 | 
|---|
| 53 | 
 | 
|---|
| 54 | protected:
 | 
|---|
| 55 |   virtual Dialog * fillDialog(Dialog*);
 | 
|---|
| 56 | private:
 | 
|---|
| 57 |   virtual ActionState::ptr performCall();
 | 
|---|
| 58 |   virtual ActionState::ptr performUndo(ActionState::ptr);
 | 
|---|
| 59 |   virtual ActionState::ptr performRedo(ActionState::ptr);
 | 
|---|
| 60 | 
 | 
|---|
| 61 |   AtomDescriptor descr;
 | 
|---|
| 62 |   boost::function<void(atom*)> operation;
 | 
|---|
| 63 | };
 | 
|---|
| 64 | 
 | 
|---|
| 65 | }
 | 
|---|
| 66 | 
 | 
|---|
| 67 | #endif /* MANIPULATEATOMSPROCESS_HPP_ */
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.