aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/machina/LearnRequest.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-02-22 04:16:05 +0000
committerDavid Robillard <d@drobilla.net>2007-02-22 04:16:05 +0000
commit8cc603cd24294c0d917b37ea0568d89962b5a74f (patch)
tree9bb04036640c853bb67492efa81322601ad5972f /src/engine/machina/LearnRequest.hpp
parent1429e4b2279566384ec09bfe3bfe7d7e0f0f79eb (diff)
downloadmachina-8cc603cd24294c0d917b37ea0568d89962b5a74f.tar.gz
machina-8cc603cd24294c0d917b37ea0568d89962b5a74f.tar.bz2
machina-8cc603cd24294c0d917b37ea0568d89962b5a74f.zip
Machina quantization, various timing related fixes.
git-svn-id: http://svn.drobilla.net/lad/machina@326 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/machina/LearnRequest.hpp')
-rw-r--r--src/engine/machina/LearnRequest.hpp12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/engine/machina/LearnRequest.hpp b/src/engine/machina/LearnRequest.hpp
index f485560..9284e90 100644
--- a/src/engine/machina/LearnRequest.hpp
+++ b/src/engine/machina/LearnRequest.hpp
@@ -43,16 +43,9 @@ public:
return ret;
}
- // Add the learned actions to the node
- void finish(BeatTime time)
- {
- _node->add_enter_action(_enter_action);
- _node->add_exit_action(_exit_action);
- _node->set_duration(time - _start_time);
- std::cerr << "LEARN DURATION: " << _node->duration() << std::endl;
- }
+ void finish(BeatTime time);
- void start(BeatTime time) { _started = true; _start_time = time; }
+ void start(double q, BeatTime time) { _started = true; _start_time = time; _quantization = q; }
bool started() { return _started; }
const SharedPtr<Node>& node() { return _node; }
@@ -70,6 +63,7 @@ private:
bool _started;
BeatTime _start_time;
+ double _quantization;
SharedPtr<Node> _node;
SharedPtr<MidiAction> _enter_action;
SharedPtr<MidiAction> _exit_action;