-
-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multi-instance mode sending note-off commands only #12
Comments
Thx! Just to be sure, what was your Also, in your situation you expected no events at all, right? You haven't been feeding chords as I understand, so either with |
@riban-bw If you want to have a quick try: just comment lines 192 & 193 in
(I added that because it seemed to fix some rare stuck notes cases, but it's certainly what causes your problem here. But it's not multi-instance specific, probably you'll have the same behaviour in the same conditions in multi-chan mode) EDIT: I applied that in latest |
Although that stops note-off messages being sent I am still not seeing any note-on messages being sent in multi-instance mode. [Edit] Actually - in multi-instance mode the pattern instance behaves as if there is not chord instance connected. I wonder if the IPC is working as expected on this platform:
|
@riban-bw Then that's probably that. That's what's expected to happen if the two instances are isolated and both create their own "singleton" object each one on their side. |
How would mult-instance be instantiated successfully? |
@riban-bw Multi-instance relies on But it's not clear to me yet what in their implementation makes the shared pointer unique... |
Okay so it probably just boils down to the fact that the singletonHolder attached to the class is made So yes I'd guess that, for it to work, the exact same process has to load (at least on Linux) the various plugin instances, so that static |
In Multi-instance mode the pattern seems to be continually sent as MIDI note-off commands and there are not any MIDI note-on commands.
Expect to see nothing but actually see MIDI Note Off messages on MIDI channel 2.
Expect to hear and see MIDI Note On/Off to match sequence but actually continue to see MIDI Note Off messages only.
The text was updated successfully, but these errors were encountered: