Jump to content

iminashi

Developer
  • Posts

    406
  • Joined

  • Last visited

  • Days Won

    3
  • Country

    Finland
  • Donations

    0.00 USD 

Posts posted by iminashi

  1. @@cozy1

    The sequence of notes might have an effect on things. I haven't really tested that. For the screenshots I used two files that had all of the particular notes one after the other. For the fog screenshots, one 42 and then 24-35. For the beam ones I had one 25 and then 48-59 one after the other.

     

    I was about to let you know that there is bug in AdjustShowlights. If the last note on the showlight list happens to be one of the bad notes, it will result in an "index out of bounds". Changing the foreach loop into an if statement would be one way to fix it:

    if (showlightList[i].Note > 35 && showlightList[i].Note < 48 && showlightList[i].Note != 42)
    {
         showlightList.Remove(showlightList[i]);
         continue;
    }
    
  2. 32 seems to be the maximum number of bendvalues/bend tech notes you can have on a single note. 33 or more and the game will crash after tuning. 

     

    The limit can be bypassed by using linknext. I tried it by making an xml file that had a G string 7th fret note with 32 bendvalues linked to a G string 7th fret note with 32 bendvalues and the game didn't crash.

    • Like 1
  3. For anyone interested, here are screenshots of the showlights:

    https://drive.google.com/open?id=0B_0HDnEbZi4PTWF1bVl2SXdZVlE

     

    There are two screenshots of 35. I have no clue why the first one (the glitched one) was green + purple.

    In the screenshots for the fog colors, beams and laser lights were off. In the screenshots for the beams, the laser lights are on and the fog color was 25.

     

    The exact names of the colors aside, in the note key in the toolkit showlight editor, 33 and 34 should be switched. 33 is a blue color and 34 is a yellow color. 

     

    Also, the exact number and type of lights affected by 42,48-59 depends on the venue. My screenshots were from a small venue, but in some venues they also affect the color of a moving light/lights.

    • Like 1
  4. @@iminashi. I also unable to reproduce stroboscope effect from one of Rise against songs It would be cool to get one!

    I guess it's binary masks but it's ok to operate them in numerical form so not a big deal here.

     

    Which song is it? I'd like to see it myself.  :)

     

     

    Is there a corresponding off note for fog like 42 is for beams?

     

    I don't think so. There are zero hits in the XML files for notes 0-23 and 36-41.

  5. @@cozy1 You released a new version just as I was writing a reply.  :)

    I'll need to test the new version to see if what I was about to write still stands. One thing I noticed with the code is: shouldn't rnd.Next(48, 59) be rnd.Next(48, 60) in order to get a random number between 48-59 (ditto for 24-35)? Or maybe I'm reading the wrong documentation...  :)

     

     

    Anyway, I did some more testing with the showlights and here are my conclusions:
     
    42, 48-59 control the spotlights/beamlights/whateverlights.
    42 is "off" and 48-59 are the colors in the same order as the fog colors.
     
    67 turns on the laser lights and 66 doesn't appear to do anything.
     
    About 67/66:
     
    If there is no note 67 in the showlights file, the laser lights seem to be on all the time. In ODLC both 67 and 66 are used in each song exactly once, with 67 always coming before 66. The one exception in the DLC that I own where neither are used is Megadeth "Peace Sells". Maybe 66 is supposed to be "turn laser lights off" but doesn't work? In ODLC it often comes at the very end.
    • Like 1
  6. @@iminashi

    Have you seen ODLC where two showlights notes appear at the same time as in your example?

     

    <showlights count="2">

    <showlight time="66.646" note="35" />

    <showlight time="66.646" note="59" />

    </showlights>

     

    I ask, because I have not.

     

    That was actually a mistake I made as I copy pasted, but they are out there.  For example "All I Wanna Do" starts with 

      <showlight time="10.000" note="24"/>
      <showlight time="10.000" note="52"/>
    
  7. so @@iminashi is saying that all official DLC starts around the 10 seconds mark? damn i thought it was starting around like 6/7 seconds... I might have to change some stuff i do then.

     

    There is a little over 10 seconds of silence at the start of an ODLC and the beatmap usually starts at exactly 10 seconds. Try importing some of them into EOF and check for yourself. But in the game it doesn't take 10 seconds for the song to start. I've been wondering how that works.

  8. I'll need to do some more testing and fiddling with the showlights, but here is my uneducated guess on why it crashes.

     

    The total number of showlights and how early they need to be set doesn't seem to matter. In official content the first showlight note is almost always at 10.000, which is where the beatmap begins in most official content, but the game doesn't crash if there are no showlight notes at the beginning. And the minimum number of showlight notes you need seems to be 2.

     

    There needs to be at least one note from the fog color set (24-35) and one note from the spotlights/effects set (42, 48-59). The game loads them into tables or lists or whatever and the programmers hadn't prepared for the case where they have zero entries, causing the game to crash.

     

    I have tested the following showlights files and they didn't crash the game for me (the notes are set at a time that is very near to the end of the audio): 

    <showlights count="2">
      <showlight time="63.455" note="32" />
      <showlight time="66.646" note="55" />
    </showlights>
    
    
    <showlights count="2">
      <showlight time="66.646" note="24" />
      <showlight time="66.646" note="42" />
    </showlights>
    
    
    <showlights count="2">
      <showlight time="66.646" note="35" />
      <showlight time="66.646" note="59" />
    </showlights>
    
  9. I did some testing with my two crashing CDLC.

     

    In the first showlights file, there were no notes from the 42-59 range. I tried adding one 42 at the beginning and the crash was gone.

     

    As for the second showlights file, there were two notes from the 42-59 range near the end. 43 and 45. At first I thought they came too late in the song or something, but I tried adding the note 55 (which I happened to choose randomly) between them, and that got rid of the crash.

     

    Then I ran search in the showlights XML files from the on-disc songs, imported RS1 songs and DLC and the RS2014 DLC I own. While there are 1207 hits for the note 42, there are zero hits for the notes 43-47.

     

    Editing the showlights file and just changing the note 45 to 55 fixes the crash.

    • Like 2
  10. I got around to testing this (I was playing "Carry On Wayward Son" which also has these).

     

    It works: http://i.imgur.com/8Ye6XAv.gifv

     

    Here are some files: https://drive.google.com/open?id=0B_0HDnEbZi4PZnhOendwVFdmakE

     

    I combined the rhythm and lead arrangements to make the ChordInsideArpeggio XML. It has two handshapes in it. The chord handshape is inside the arpeggio handshape, but it will not displayed; the arpeggio handshape seems to override it. However, it has to be there, without that handshape all you will get is a high-density chord box.

  11. The two CDLC that I updated today also crash after tuning when I build them with the latest version of the toolkit. I haven't had time to look into it more closely, but the culprit are the showlights (yet again). Using the showlights file from the previous, working version of the CDLC, they don't crash.

     

    Try using an older revision of the toolkit and see if that works.

  12.  

    Something about the included XMLs are crashing RS

     

    https://drive.google.com/file/d/0B2oZs0ta32KyZHpGZHltcy0tVEk/view?usp=sharing

     

    I just don't know what.

     

    I build the custom with bass and vocals and it works.  I include Rhythm or Lead and the custom plays the intro music, but as soon as you press "go" it fails and locks the game up.

     

    Any help would be great :D

     

    Using the DD XML files that you provided, the game will freeze like you said. If I use the non-DD XML files straight from EOF (which is what I did at first), both guitar arrangements can be played without problems, even if you generate DD using the .psarc file.
     
    The showlights are causing the issue. The Toolkit seems to have problems generating them if you use those DD XML files. cst_showlights.xml is generated only(?) when the order of the arrangements is rhythm, lead, bass in the arrangement list.
    • Like 2
  13. On another topic, I updated the toolkit to the latest beta (the one released yesterday) and it wasn't accepting lyrics files (that I was producing with the 4-17-2017 release of EoF) that older versions of the toolkit did when I reverted. Anyone else having a problem with this, and know if it's an incompatibility issue or a problem with the toolkit?

     

    It's a toolkit problem. Currently it will only accept lyrics files that end with "vocals.xml".

  14. Can anyone get a comma to work within lyrics with the latest release?

     

    Looks like commas etc. work only if there are extended ASCII characters in the lyrics. I haven't really missed commas, but I'd like to be able to use double quotes and parentheses without having to edit the lyrics files manually.

  15. @iminashi  If raynebc hard codes these character substitutions, would this prevent users from being able to use custom lyric font DDS files with the toolkit? 

     

    Seems like users may want the option in EOF to not use any character substitutions in case the user wants to create and use a custom lyric font DDS file.

     

    I don't think anybody uses custom fonts since there are no tools out that would ease the process.

     

    Substituting the characters that can't be used is a good idea I think. Having a non-accented character is better than no character at all.

  16. Whats a UTF file, is it something normal EoF users can get?

     
    By using the PART VOCALS_RS2.XML file you are already using a UTF file.  :)
    The vocals XML file is encoded in UTF-8 (Unicode) whereas the _EXT file is encoded in Windows-1252. You don't need to worry about that. Just know that the _EXT file does not work properly with the Toolkit.
     
    ã is not in the default lyrics font so it will not work. Since it's written into the UTF lyrics file, it would seem that EOF's character filtering is not working correctly.
     
    For the _EXT file the filtering does work properly; ã is filtered out.
     
    The + characters for line breaks are not being written into the _EXT file.
    • Like 1
  17. I'd also be interested in knowing if the "noguitar" section should continue to be added automatically to the RS XML files if it isn't manually authored in the chart.

     

    In ODLC the END phrase is accompanied by a noguitar section if that's what you mean. Speaking of which, EOF should probably place the END phrase on the first beat of a bar so that DDC won't move it.

×
×
  • 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