Jan Trukenmüller

Results 16 comments of Jan Trukenmüller

Most (but not all) sound effects will be MIDI controller changes. Not always a function is required. Some controllers don't even support more values than true or false. So here's...

Again a new idea - Pipelining: Lowlevel: ``` 0 bend.wait().line(64,127).wait().length(/2).line(127,64) /4 0 c /1+/1 ``` Compact: `0: bend.wait().line(64,127).wait().length(/2).line(127,64) c:1+1` Meaning: - A **C** is played for two whole notes. -...

Maybe pipelining is the wrong wording. Such a call chain should be renamed to effect flow (or maybe 'chaining'?). This also applies for the class, variables and placeholders.

Not to be forgotten: - call closeFlowIfPossible() from the parser - poly_at / mono_at (special treatment) - pitch bend (special treatment with a parameter for half-tone-steps - connected to pitch...

Yes, adding detailed text descriptions to every possible problematic message is probably way too much work, you're right. But maybe just including the message in Hex more consequently for all...

I have the same problem, using a slightly different method to create the search request: ``` SearchRequest sr = new SearchRequest.Builder() .withJson(new StringReader(json.toString())) .index(index) .build(); ``` Thank you, @cgendreau, for...