Darwin Neuroevolution Framework
script.h
1 // Copyright The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <core/utils.h>
18 
19 #include <functional>
20 #include <map>
21 using namespace std;
22 
23 namespace sim {
24 
33 class Script {
34  using Action = std::function<void(float)>;
35 
36  static constexpr float kStartTimestamp = -1;
37  static constexpr float kInvalidTimestamp = -2;
38 
39  public:
40  void record(float t, const Action& action) {
41  CHECK(timestamp_ == kInvalidTimestamp);
42  actions_.emplace(t, action);
43  }
44 
45  void start() {
46  current_action_ = actions_.begin();
47  timestamp_ = kStartTimestamp;
48  }
49 
50  void play(float t) {
51  CHECK(timestamp_ != kInvalidTimestamp);
52  CHECK(t > timestamp_);
53  while (current_action_ != actions_.end() && current_action_->first <= t) {
54  current_action_->second(t);
55  ++current_action_;
56  }
57  timestamp_ = t;
58  }
59 
60  void clear() {
61  actions_.clear();
62  current_action_ = actions_.end();
63  timestamp_ = kInvalidTimestamp;
64  }
65 
66  private:
67  multimap<float, Action> actions_;
68  multimap<float, Action>::const_iterator current_action_;
69  float timestamp_ = kInvalidTimestamp;
70 };
71 
72 } // namespace sim
STL namespace.
Basic action scripting.
Definition: script.h:33
Definition: accelerometer.cpp:19