Jump to content

Setting chord ranges in EOF


ShrillBear52

Recommended Posts

I didn't realy cared or knew about this thing before, but in my recent custom I realised it and have no clue to how is this even working.

 

 

Qustion:  How can I set the range of chords or handshapes in EOF??

 

e.g:in the first picture the open D5 chord appers in 4 frets and in the second it appers in 5 or 6 frets

 

 

 

https://drive.google.com/open?id=0B2dAm5utc-VcOGRDUnZwcE9NZlE

 

https://drive.google.com/open?id=0B2dAm5utc-VcNDNieVhhMElqM2M

 

 

 

My Customs


 


The reasons why most of my customs are not updated yet:


1.)I'm lazy to do it because I have no motivation for it


2.)I'm not at my computer


3.)I'm working on a song that I haven't made it yet


4.)I don't have any song to work on it


 


 


G7SOxFY.jpg

Link to comment
Share on other sites

That is determined by the "width" of the active fret hand position. By default, EOF will generate fret hand positions that reflect the player only being able to play a range of 4 frets without moving his/her fretting hand. If eof_5_fret_range or eof_6_fret_range are edited in eof.cfg (to indicate which frets on the guitar neck begin being small enough for the player to reach 5 or 6 frets at a time, respectively), chord windows could become 5 or 6 frets wide. Otherwise this would only happen if fret hand positions are permanently added to an arrangement (generated while not saving, or manually defined) and EOF is forced to make the chord window width large enough to display all chords in the scope of each defined fret hand position.

  • Like 1
Link to comment
Share on other sites

That is determined by the "width" of the active fret hand position. By default, EOF will generate fret hand positions that reflect the player only being able to play a range of 4 frets without moving his/her fretting hand. If eof_5_fret_range or eof_6_fret_range are edited in eof.cfg (to indicate which frets on the guitar neck begin being small enough for the player to reach 5 or 6 frets at a time, respectively), chord windows could become 5 or 6 frets wide. Otherwise this would only happen if fret hand positions are permanently added to an arrangement (generated while not saving, or manually defined) and EOF is forced to make the chord window width large enough to display all chords in the scope of each defined fret hand position.

And can I manually edit it or I can't? Also, what would happen if I modify the "eof_5_fret_range or eof_6_fret_range"  in eof.cfg?

My Customs


 


The reasons why most of my customs are not updated yet:


1.)I'm lazy to do it because I have no motivation for it


2.)I'm not at my computer


3.)I'm working on a song that I haven't made it yet


4.)I don't have any song to work on it


 


 


G7SOxFY.jpg

Link to comment
Share on other sites

If you didn't change those variables in eof.cfg from their default 0 value, that won't be part of the problem. In order to change the chart so that chord windows don't go over 4 frets you will need to either manually correct the fret hand positions you added or have EOF regenerate them. You can also just delete the fret hand positions and let EOF add them automatically when you save the project. The best way to avoid fret hand position problems is to only add them after all notes and chords have been authored. If you change the tablature content after adding the fret hand positions, changes to the positions may become necessary.

Link to comment
Share on other sites

If you didn't change those variables in eof.cfg from their default 0 value, that won't be part of the problem. In order to change the chart so that chord windows don't go over 4 frets you will need to either manually correct the fret hand positions you added or have EOF regenerate them. You can also just delete the fret hand positions and let EOF add them automatically when you save the project. The best way to avoid fret hand position problems is to only add them after all notes and chords have been authored. If you change the tablature content after adding the fret hand positions, changes to the positions may become necessary.

And how can I correct the phps manually? The main reason why I generate fhps is because the open power chords are not displayd on those frets where I want them to display.

  Deleting the fhps and let EOF to handle it is not going to solve the problem, because then I have open chords that will displays on unwanted frets.

My Customs


 


The reasons why most of my customs are not updated yet:


1.)I'm lazy to do it because I have no motivation for it


2.)I'm not at my computer


3.)I'm working on a song that I haven't made it yet


4.)I don't have any song to work on it


 


 


G7SOxFY.jpg

Link to comment
Share on other sites

You can re-generate FHPs and then just manually add more FHPs to get the desired effect for open chords.

Problem is I already tried that,otherwise I wouldn't wrote this topic.And it doesn't matter if I re-generate all the fhps and then add just a few more most of the chords are still have thise issue.

 

Btw,does the chords displays depends on how close I add a fhp to them?? 

e.g:If I add a fhp to the desired chord's very beginning or to the previous chord's end 

My Customs


 


The reasons why most of my customs are not updated yet:


1.)I'm lazy to do it because I have no motivation for it


2.)I'm not at my computer


3.)I'm working on a song that I haven't made it yet


4.)I don't have any song to work on it


 


 


G7SOxFY.jpg

Link to comment
Share on other sites

You're probably better off adding FHPs to the beginning position of notes. The FHPs that are generated automatically for your example looks like this:

http://i15.photobucket.com/albums/a354/raynebc/2%20anchors_zpso37283dm.jpg

And the resulting XML shows that the width on the second FHP was set to 5 to accommodate the Amin7 chord requiring that width:

      <anchors count="2">
        <anchor time="0.500" fret="4" width="4.000"/>
        <anchor time="1.000" fret="3" width="5.000"/>
      </anchors>
One option to get the 4 fret width for the open chord is to place an additional FHP at the wide chord:

http://i15.photobucket.com/albums/a354/raynebc/3%20anchors_zps0ot042fc.jpg

And this allows the open chord to get the normal width of 4 frets:

      <anchors count="3">
        <anchor time="0.500" fret="4" width="4.000"/>
        <anchor time="1.000" fret="3" width="4.000"/>
        <anchor time="1.500" fret="3" width="5.000"/>
      </anchors>
You could also delete the FHP that was placed at the open chord and place it at the wide chord instead:

http://i15.photobucket.com/albums/a354/raynebc/2%20anchors-2_zpsiblqglhq.jpg

This results in the first FHP covering the first chord and the open chord instead of having one for each:

      <anchors count="2">
        <anchor time="0.500" fret="4" width="4.000"/>
        <anchor time="1.500" fret="3" width="5.000"/>
      </anchors>
  • Like 1
Link to comment
Share on other sites

You're probably better off adding FHPs to the beginning position of notes. The FHPs that are generated automatically for your example looks like this:

2%20anchors_zpso37283dm.jpg

And the resulting XML shows that the width on the second FHP was set to 5 to accommodate the Amin7 chord requiring that width:

      <anchors count="2">
        <anchor time="0.500" fret="4" width="4.000"/>
        <anchor time="1.000" fret="3" width="5.000"/>
      </anchors>
One option to get the 4 fret width for the open chord is to place an additional FHP at the wide chord:

3%20anchors_zps0ot042fc.jpg

And this allows the open chord to get the normal width of 4 frets:

      <anchors count="3">
        <anchor time="0.500" fret="4" width="4.000"/>
        <anchor time="1.000" fret="3" width="4.000"/>
        <anchor time="1.500" fret="3" width="5.000"/>
      </anchors>
You could also delete the FHP that was placed at the open chord and place it at the wide chord instead:

2%20anchors-2_zpsiblqglhq.jpg

This results in the first FHP covering the first chord and the open chord instead of having one for each:

      <anchors count="2">
        <anchor time="0.500" fret="4" width="4.000"/>
        <anchor time="1.500" fret="3" width="5.000"/>
      </anchors>

Oh thank you I will definetly try this out! My only question is how can I put fhps to notes/chords to be there precisely?

My Customs


 


The reasons why most of my customs are not updated yet:


1.)I'm lazy to do it because I have no motivation for it


2.)I'm not at my computer


3.)I'm working on a song that I haven't made it yet


4.)I don't have any song to work on it


 


 


G7SOxFY.jpg

Link to comment
Share on other sites

You can use SHIFT+Pg Up and SHIFT+Pg Dn to seek to the previous or next note position. There are lots of similar shortcuts listed in the Song>Seek menu.

Awsome,works like a charm! Thank you very much!

My Customs


 


The reasons why most of my customs are not updated yet:


1.)I'm lazy to do it because I have no motivation for it


2.)I'm not at my computer


3.)I'm working on a song that I haven't made it yet


4.)I don't have any song to work on it


 


 


G7SOxFY.jpg

Link to comment
Share on other sites

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...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...

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