summaryrefslogtreecommitdiffstats
path: root/src/server/ControlBindings.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-06-13 04:02:21 +0000
committerDavid Robillard <d@drobilla.net>2012-06-13 04:02:21 +0000
commit13389895cab38a75860988d27705d8f4e7b34309 (patch)
tree66932d74d8d77051d048e5289b82b1db437819c9 /src/server/ControlBindings.cpp
parentbd83a49443a9ad64155794f4c85d6829ab678bf9 (diff)
downloadingen-13389895cab38a75860988d27705d8f4e7b34309.tar.gz
ingen-13389895cab38a75860988d27705d8f4e7b34309.tar.bz2
ingen-13389895cab38a75860988d27705d8f4e7b34309.zip
Fix saving of control bindings.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4500 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/ControlBindings.cpp')
-rw-r--r--src/server/ControlBindings.cpp43
1 files changed, 28 insertions, 15 deletions
diff --git a/src/server/ControlBindings.cpp b/src/server/ControlBindings.cpp
index 82b15408..b224d30a 100644
--- a/src/server/ControlBindings.cpp
+++ b/src/server/ControlBindings.cpp
@@ -65,24 +65,37 @@ ControlBindings::Key
ControlBindings::binding_key(const Raul::Atom& binding) const
{
const Ingen::Shared::URIs& uris = _engine.world()->uris();
- Key key;
- if (binding.type() == _engine.world()->forge().Dict) {
- const Raul::Atom::DictValue& dict = binding.get_dict();
- Raul::Atom::DictValue::const_iterator t = dict.find(uris.rdf_type);
- Raul::Atom::DictValue::const_iterator n;
- if (t == dict.end()) {
- return key;
- } else if (t->second == uris.midi_Bender) {
+ Key key;
+ LV2_Atom* num = NULL;
+ if (binding.type() == uris.atom_Blank) {
+ LV2_Atom_Object* obj = (LV2_Atom_Object*)binding.get_body();
+ if (obj->body.otype == uris.midi_Bender) {
key = Key(MIDI_BENDER);
- } else if (t->second == uris.midi_ChannelPressure) {
+ } else if (obj->body.otype == uris.midi_ChannelPressure) {
key = Key(MIDI_CHANNEL_PRESSURE);
- } else if (t->second == uris.midi_Controller) {
- if ((n = dict.find(uris.midi_controllerNumber)) != dict.end())
- key = Key(MIDI_CC, n->second.get_int32());
- } else if (t->second == uris.midi_NoteOn) {
- if ((n = dict.find(uris.midi_noteNumber)) != dict.end())
- key = Key(MIDI_NOTE, n->second.get_int32());
+ } else if (obj->body.otype == uris.midi_Controller) {
+ lv2_atom_object_get(
+ obj, (LV2_URID)uris.midi_controllerNumber, &num, NULL);
+ if (!num) {
+ Raul::error << "Controller binding missing number" << std::endl;
+ } else if (num->type != uris.atom_Int) {
+ Raul::error << "Controller number not an integer" << std::endl;
+ } else {
+ key = Key(MIDI_CC, ((LV2_Atom_Int*)num)->body);
+ }
+ } else if (obj->body.otype == uris.midi_NoteOn) {
+ lv2_atom_object_get(
+ obj, (LV2_URID)uris.midi_noteNumber, &num, NULL);
+ if (!num) {
+ Raul::error << "Note binding missing number" << std::endl;
+ } else if (num->type != uris.atom_Int) {
+ Raul::error << "Note number not an integer" << std::endl;
+ } else {
+ key = Key(MIDI_NOTE, ((LV2_Atom_Int*)num)->body);
+ }
}
+ } else {
+ Raul::error << "Unknown binding type " << binding.type() << std::endl;
}
return key;
}