Translate incoming range, to same outgoing message?

JuanSOLO

2011-12-30 20:27:25

I am wanting 6 different drum pads to produce the same outgoing message, with 1 translator using rules

The incomming pads are
90 38 7F
91 38 7F
92 38 7F
93 38 7F
90 37 7F
91 37 7F

I want them all to translate too
9F 00 7F

Also these cannot conflict with other incoming pads.

using rules/ conditionals etc. Is that possible??? I dont understand the rules very well without the ability to say IF && IF as well as no available 'ELSE'
I am trying to translate these pads OR consolidate them on the 'incoming,' so I dont have to make a translator for each pad to produce identical translations.

DvlsAdvct

2012-01-07 02:15:52

The easiest way to do this is to have different translator for each value. If you are really against using this method, you can do it as such:

Code: Select all

Translator #1:
Incoming message: pp qq 7F
Rules
if pp>147 then exit rules, skip outgoing action
if qq>56 then exit rules, skip outgoing action
if qq<55 then exit rules, skip outgoing action
Outgoing: 9F 00 7F 
So what this is doing is saying that if the incoming channel of the message is above 93 it won't trigger
Also, if the note selection is other than 37 or 38 it won't trigger, and it'll only trigger if the velocity is 7F. There is a more in depth rules system you can use with labels that goes like this:

Code: Select all

Translator #1:
Incoming Message: pp qq 7F
Rules
If pp=144 then Goto "Channel 1"
If pp=145 then Goto "Channel 2"
If pp=146 then Goto "Channel 3"
If pp=147 then Goto "Channel 4"
Exit rules, skip outgoing action
Label "Channel 1"
if pp>56 then exit rules, skip outgoing action
if pp<55 then exit rules, skip outgoing action
Label "Channel 2"
if pp>56 then exit rules, skip outgoing action
if pp<55 then exit rules, skip outgoing action
Label "Channel 3"
if pp!=56 then exit rules, skip outgoing action
Label "Channel 4"
if pp!=56 then exit rules, skip outgoing action
Outgoing Action: 9F 00 7F
Let me know if either of those works out.

JuanSOLO

2012-01-07 03:20:10

I will look over this and let you know. THANKS SO MUCH for responding, this forum is kind of a ghost town, I didn't think anyone would answer.

DvlsAdvct

2012-01-07 03:52:48

Yeah it sucks man, sorry. I have been trying to keep up, and I know Florian tries too. Let me know if there are any problems and we'll troubleshoot :)