2021-04-08 15:34:03 +02:00
|
|
|
#ifndef TIMELINE_H
|
|
|
|
#define TIMELINE_H
|
|
|
|
|
2021-06-24 20:04:09 +02:00
|
|
|
#include "mathutils.h"
|
2021-04-08 15:34:03 +02:00
|
|
|
#include <memory>
|
2021-06-24 20:04:09 +02:00
|
|
|
#include <vector>
|
2021-04-08 15:34:03 +02:00
|
|
|
|
2021-06-23 21:18:33 +02:00
|
|
|
class Note;
|
|
|
|
|
2021-06-07 20:19:58 +02:00
|
|
|
class Timeline
|
2021-04-08 15:34:03 +02:00
|
|
|
{
|
|
|
|
public:
|
2021-06-23 21:18:33 +02:00
|
|
|
|
|
|
|
using Iterator = std::vector<Note*>::const_iterator;
|
|
|
|
|
2021-06-07 20:19:58 +02:00
|
|
|
virtual ~Timeline() = default;
|
2021-04-08 15:34:03 +02:00
|
|
|
|
2021-06-08 20:32:36 +02:00
|
|
|
virtual void update() = 0;
|
2021-06-23 21:18:33 +02:00
|
|
|
virtual void run(std::vector<Note*>&& notes, const microsec& visibility) = 0;
|
2021-06-07 20:19:58 +02:00
|
|
|
virtual void clear() = 0;
|
2021-06-08 20:32:36 +02:00
|
|
|
|
|
|
|
virtual microsec currentMusicOffset() const = 0;
|
2021-06-23 21:18:33 +02:00
|
|
|
virtual void drawVisibleNotes() const = 0;
|
2021-04-08 15:34:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TIMELINE_H
|