diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-01-26 20:31:31 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2022-02-05 12:34:49 +0100 |
commit | 47833d52f6e9f8d3d68d0b22ca8fd31dde09e4b1 (patch) | |
tree | 829c77c301e257174e5591a27e0870c05e89edec /src/event.h | |
parent | 235ad6fbbce2e0ae9e06db960a5ba3b099936ace (diff) |
Add positional information to drumkit xml and sample class.
Diffstat (limited to 'src/event.h')
-rw-r--r-- | src/event.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/event.h b/src/event.h index 737fb18..5780cc9 100644 --- a/src/event.h +++ b/src/event.h @@ -39,8 +39,9 @@ enum class EventType //! POD datatype for input event transport. struct event_t { - EventType type; //!< The type of the event. - std::size_t instrument; //!< The instrument number. - std::size_t offset; //!< The offset position in the input buffer - float velocity; //!< The velocity if the type is a note on [0; 1] + EventType type; //!< The type of the event. + std::size_t instrument; //!< The instrument number. + std::size_t offset; //!< The offset position in the input buffer + float velocity; //!< The velocity if the type is a note on [0; 1] + float position; //!< The position of the note. 0 := center, 1 := rim }; |