dg_tools
memory_replay.hpp
1 
9 #pragma once
10 
11 /* --------------------------------------------------------------------- */
12 /* --- INCLUDE --------------------------------------------------------- */
13 /* --------------------------------------------------------------------- */
14 
15 /* Matrix */
16 #include <dynamic-graph/linear-algebra.h>
17 namespace dg = dynamicgraph;
18 
19 /* SOT */
20 #include <dynamic-graph/signal-time-dependent.h>
21 #include <dynamic-graph/signal-ptr.h>
22 #include <dynamic-graph/entity.h>
23 
24 
25 /* --------------------------------------------------------------------- */
26 /* --- API ------------------------------------------------------------- */
27 /* --------------------------------------------------------------------- */
28 
29 #if defined (WIN32)
30 # if defined (MemoryReplay_EXPORTS)
31 # define MemoryReplay_EXPORTS __declspec(dllexport)
32 # else
33 # define MemoryReplay_EXPORTS __declspec(dllimport)
34 # endif
35 #else
36 # define MemoryReplay_EXPORTS
37 #endif
38 
39 namespace dg_tools {
40 
41  /* --------------------------------------------------------------------- */
42  /* --- CLASS ----------------------------------------------------------- */
43  /* --------------------------------------------------------------------- */
44 
52  class MemoryReplay_EXPORTS MemoryReplay: public dg::Entity
53  {
54  public:
55 
56  MemoryReplay( const std::string & name );
57 
58  void init(const dg::Matrix& data);
59  void rewind();
60 
61  static const std::string CLASS_NAME;
62  virtual const std::string& getClassName( void ) const {return CLASS_NAME;}
63 
64  dg::SignalTimeDependent<dg::Vector,int> internal_signal_refresher_;
65  dg::SignalTimeDependent<dg::Vector,int> sout;
66 
67  dg::Vector& getValue(dg::Vector& sout, int time);
68 
69  private:
70  bool is_started_;
71  int start_time_;
72  dg::Matrix data_;
73  };
74 } // namespace dg_tools
Definition: history_recorder.hpp:39
Provided with a matrix, the entity returns the row indexed by the current time index at every timeste...
Definition: memory_replay.hpp:52
Definition: ComImpedanceController.hpp:31