/* * Copyright (c) 2015-2016 Hanspeter Portner (dev@open-music-kontrollers.ch) * * This is free software: you can redistribute it and/or modify * it under the terms of the Artistic License 2.0 as published by * The Perl Foundation. * * This source is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * Artistic License 2.0 for more details. * * You should have received a copy of the Artistic License 2.0 * along the source as a COPYING file. If not, obtain it from * http://www.perlfoundation.org/artistic_license_2_0. */ #ifndef _SHERLOCK_LV2_H #define _SHERLOCK_LV2_H #include #include "lv2/lv2plug.in/ns/ext/atom/atom.h" #include "lv2/lv2plug.in/ns/ext/atom/forge.h" #include "lv2/lv2plug.in/ns/ext/midi/midi.h" #include "lv2/lv2plug.in/ns/ext/time/time.h" #include "lv2/lv2plug.in/ns/ext/urid/urid.h" #include "lv2/lv2plug.in/ns/ext/time/time.h" #include "lv2/lv2plug.in/ns/ext/patch/patch.h" #include "lv2/lv2plug.in/ns/extensions/units/units.h" #include "lv2/lv2plug.in/ns/extensions/ui/ui.h" #include "lv2/lv2plug.in/ns/lv2core/lv2.h" #include #include #define SHERLOCK_URI "http://open-music-kontrollers.ch/lv2/sherlock" #define SHERLOCK_ATOM_INSPECTOR_URI SHERLOCK_URI"#atom_inspector" #define SHERLOCK_ATOM_INSPECTOR_NK_URI SHERLOCK_URI"#atom_inspector_4_nk" #define SHERLOCK_MIDI_INSPECTOR_URI SHERLOCK_URI"#midi_inspector" #define SHERLOCK_MIDI_INSPECTOR_NK_URI SHERLOCK_URI"#midi_inspector_4_nk" #define SHERLOCK_OSC_INSPECTOR_URI SHERLOCK_URI"#osc_inspector" #define SHERLOCK_OSC_INSPECTOR_NK_URI SHERLOCK_URI"#osc_inspector_4_nk" extern const LV2_Descriptor atom_inspector; extern const LV2_Descriptor midi_inspector; extern const LV2_Descriptor osc_inspector; typedef struct _position_t position_t; typedef struct _state_t state_t; struct _position_t { uint64_t offset; uint32_t nsamples; }; struct _state_t { int32_t count; int32_t overwrite; int32_t block; int32_t follow; }; #define MAX_NPROPS 4 static const props_def_t stat_count = { .property = SHERLOCK_URI"#count", .access = LV2_PATCH__writable, .type = LV2_ATOM__Int, .mode = PROP_MODE_STATIC }; static const props_def_t stat_overwrite = { .property = SHERLOCK_URI"#overwrite", .access = LV2_PATCH__writable, .type = LV2_ATOM__Bool, .mode = PROP_MODE_STATIC }; static const props_def_t stat_block = { .property = SHERLOCK_URI"#block", .access = LV2_PATCH__writable, .type = LV2_ATOM__Bool, .mode = PROP_MODE_STATIC }; static const props_def_t stat_follow = { .property = SHERLOCK_URI"#follow", .access = LV2_PATCH__writable, .type = LV2_ATOM__Bool, .mode = PROP_MODE_STATIC }; // there is a bug in LV2 <= 0.10 #if defined(LV2_ATOM_TUPLE_FOREACH) # undef LV2_ATOM_TUPLE_FOREACH # define LV2_ATOM_TUPLE_FOREACH(tuple, iter) \ for (LV2_Atom* (iter) = lv2_atom_tuple_begin(tuple); \ !lv2_atom_tuple_is_end(LV2_ATOM_BODY(tuple), (tuple)->atom.size, (iter)); \ (iter) = lv2_atom_tuple_next(iter)) #endif #endif // _SHERLOCK_LV2_H