cursor_id > note number

Accueil Forums Scripts cursor_id > note number

  • Ce sujet contient 2 réponses, 1 participant et a été mis à jour pour la dernière fois par TheVille, le il y a 10 années et 9 mois.
3 sujets de 1 à 3 (sur un total de 3)
  • Auteur
    Messages
  • #3038 Répondre
    TheVille
    Invité

    I have scripted a scene with only one trigger, but many cursors running through it on their respective paths. I want the trigger to transmit a MIDI note number (I have to use midi instead of OSC because Reaktor won’t accept osc when run as a plugin) based on cursor running through it. For some reason, the note number is mapped between 0-1 and not 0-127. This is where i’m stuck:

    run("add trigger 1020");
    run("setpos current 0 0 0");
    run("setmessage current 1, midi://midi_out/notef 1 "+ (cursor_id/127));

    You can see i’ve tried to map note number to 0-1 range by dividing it by 127. This doesn’t work though. Strangely I get output with note number 63: midi://from_iannix/notef 1 63 (Eb4) 12 1 (1 s.).

    I’ve also tried plain and simple run("setmessage current 1, midi://midi_out/notef 1 cursor_id"); but it gives me always note number 127 since my cursor id’s go from 1-24.

    I don’t get it. How do I perform calculations with cursor_id?

    #3039 Répondre
    IanniX
    Maître des clés

    Hi!

    Great job for now ; just a little mistake in the setmessage. You can use « + » operator to concatenate, but it will only work when the script is computed (at loading). To perform it in real time, you may use the {} (braces with javascript inside) :
    run("setmessage current 1, midi://midi_out/notef 1 {cursor_id/127}");

    Be aware that you’re using /notef in floating format (‘f’ => needs values between 0. and 1.). You can also use the /note that uses integers (between 0 and 127). So it could look like:
    run("setmessage current 1, midi://midi_out/note 1 cursor_id");

    Hope it is clear!

    #3046 Répondre
    TheVille
    Invité

    Thanks for the prompt reply! That was it. Now it works just like I wanted, thank you!

3 sujets de 1 à 3 (sur un total de 3)
Répondre à : Répondre #3039 dans cursor_id > note number
Vos informations :





© IanniX Association

Qu'est-ce que IanniX ? | Téléchargement | Showcase | Forum | Recherche | À propos