Jump to content
The forums have been upgraded and will be undergoing changes within the next 48 hours.

Featured Replies

  • 2 weeks later...

Hi,

 

  In an official DLC I found this specific way to manage handshape phrase with partial chords inside :

  <chordTemplates count="4">
    <chordTemplate chordName="D" displayName="D" finger0="-1" finger1="-1" finger2="-1" finger3="1" finger4="3" finger5="2" fret0="-1" fret1="-1" fret2="-1" fret3="2" fret4="3" fret5="2" />
    <chordTemplate chordName="" displayName="-nop" finger0="-1" finger1="-1" finger2="-1" finger3="1" finger4="3" finger5="2" fret0="-1" fret1="-1" fret2="-1" fret3="2" fret4="3" fret5="2" />
    <chordTemplate chordName="" displayName="-nop" finger0="-1" finger1="-1" finger2="-1" finger3="1" finger4="2" finger5="-1" fret0="-1" fret1="-1" fret2="-1" fret3="2" fret4="3" fret5="-1" />
    <chordTemplate chordName="" displayName="-nop" finger0="-1" finger1="-1" finger2="-1" finger3="-1" finger4="3" finger5="2" fret0="-1" fret1="-1" fret2="-1" fret3="-1" fret4="3" fret5="2" />
  </chordTemplates>
  ...
        <chords count="3">
        <chord time="4.295" linkNext="0" accent="0" chordId="1" fretHandMute="0" highDensity="0" ignore="0" palmMute="0" hopo="0" strum="down">
          <chordNote time="4.295" linkNext="0" accent="0" bend="0" fret="2" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="1" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="3" sustain="0.000" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
          <chordNote time="4.295" linkNext="0" accent="0" bend="0" fret="3" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="3" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="4" sustain="0.000" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
          <chordNote time="4.295" linkNext="0" accent="0" bend="0" fret="2" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="2" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="5" sustain="0.000" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
        </chord>
        <chord time="6.295" linkNext="0" accent="0" chordId="2" fretHandMute="0" highDensity="0" ignore="0" palmMute="0" hopo="0" strum="down">
          <chordNote time="6.295" linkNext="0" accent="0" bend="0" fret="2" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="1" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="3" sustain="0.000" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
          <chordNote time="6.295" linkNext="0" accent="0" bend="0" fret="3" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="2" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="4" sustain="0.000" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
        </chord>
        <chord time="8.295" linkNext="0" accent="0" chordId="3" fretHandMute="0" highDensity="0" ignore="0" palmMute="0" hopo="0" strum="down">
          <chordNote time="8.295" linkNext="0" accent="0" bend="0" fret="3" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="3" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="4" sustain="0.000" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
          <chordNote time="8.295" linkNext="0" accent="0" bend="0" fret="2" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="2" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="5" sustain="0.000" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
        </chord>
      </chords>
   ...
      <handShapes count="4">
        <handShape chordId="0" endTime="9.326" startTime="4.027" />
        <handShape chordId="1" endTime="6.280" startTime="4.295" />
        <handShape chordId="2" endTime="8.280" startTime="6.295" />
        <handShape chordId="3" endTime="8.326" startTime="8.295" />
      </handShapes>

The first chordTemplate "D" define the main chord and its finger positions.

 

The first handShape references this chordTemplate and is not associated to a specific chord. It encapsulates the three following handshapes by its duration (startTime = "4.027" to endTime = "9.326")

 

The three other handShapes :

- are included inside the global handShape (startTime and endTime are embedded inside the time positions of the first handShape)

- are linked to a specific chordTemplate with no name but a specific tag "-nop" inside the displayName

- are associated with their chords (same time position and same chordId)

 

I tried to reproduce this specific case in RS2014 :

- The global handShape works fine as an handShape phrase (continuous lines + finger positions)

- The three embedded handShapes are displayed with their handShape box without a name and inherits the finger positions of the global handShape

 

The only thing that doesn't work is the chordNotes which are not displayed inside their handShape boxes (for all chords) !

 

Maybe someone has an idea why the chordNotes are not displayed ?

Is it a limitation of the RSToolkit about the "-nop" flag (I don't use DD for this test case) ?

 

Thank you

  • 5 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Recently Browsing 0

  • No registered users viewing this page.


Important Information

By using this site, you agree to our Guidelines. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. - Privacy Policy

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.