Whimper Wall? more like WEAK WALL

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • qqwref
    stepmania archaeologist
    FFR Simfile Author
    • Aug 2005
    • 4092

    #61
    Re: Whimper Wall? more like WEAK WALL

    Want some stats? I got some stats.

    NPS: 60.000 (next best: vrofl, 25.654)
    Maximum distance between adjacent notes: 1 frame
    Jumps: 1850 (next best: world tour, 1111)
    Multicolor jumps: 1615 (next best: vrofl, 155)
    1-framers: 1985 (next best: vrofl, 107)
    2-framers: 867 (next best: vrofl, 781)
    Cameljacks: 274 (next best: vrofl, 132)
    Best AAA: Policy In The Sky [Oni] (81)
    Best SDG: PANTS (86)
    Best FC: Future Invasion (93)

    Comment

    • Netjet!
      Sic itur ad astra
      FFR Simfile Author
      • Jan 2008
      • 4701

      #62
      Re: Whimper Wall? more like WEAK WALL

      looooooooooooooooooooooooooooooool
      RIP Steve Van Ness <3

      Comment

      • Reshiram
        The Vast White Note
        FFR Simfile Author
        • May 2011
        • 1224

        #63
        Re: Whimper Wall? more like WEAK WALL

        Originally posted by Reincarnate
        Prepare for a mindblow, if what you say is true:


        The file is AAAble (Well, almost. I suspect it can be but I could never pull it off)

        Unless something massive has changed in the engine since then XD Huge glitch
        Marcus, you're higher than Harlem if you think even YOU can stream that fast.

        Comment

        • ninjaKIWI
          plain old ugly ass dumbas
          FFR Simfile Author
          • Aug 2006
          • 3304

          #64
          Re: Whimper Wall? more like WEAK WALL

          What's a cameljack?
          Originally posted by Jewpinthethird
          "Hey Keywii" Said Foil in a raspy voice.
          "Hey Foil. What's that you got there?" inquired Keywii.
          "Oh, just my cock." Replied Foil.
          "That just will not do." was keywii's response as she lunged for the scissors, pulled the blades apart, and clamped them down on the base of foil's shaft. Blood start gushing out of the wound where his penis used to be.
          "NOOOOOOOOOOOO!" Yelled Foil in horror.
          "Don't worry. I'm a wizard" uttered Keywii. And with that, Foil's penis grew back.

          Comment

          • qqwref
            stepmania archaeologist
            FFR Simfile Author
            • Aug 2005
            • 4092

            #65
            Re: Whimper Wall? more like WEAK WALL

            Originally posted by Velocity
            Unless you account for this,
            Code:
            var colors = ["blue", "red", "green", "orange", "pink", "purple", "white", "yellow", "cyan"];
            var dirs = ["L", "D", "U", "R"];
            var ou = "_root.beatBox = [";
            for(x =  150; x < 2000; x++) {
            	var dir1 = dirs[Math.round(Math.random() * 3)];
            	ou += "[" + x + ", \"" + dir1 + "\", \"" + colors[Math.round(Math.random() * 8)] + "\"], ";
            	
            	var dir2 = dirs[Math.round(Math.random() * 3)];
            	while(dir1 == dir2) {
            		dir2 = dirs[Math.round(Math.random() * 3)];
            	}
            	ou += "[" + x + ", \"" + dir2 + "\", \"" + colors[Math.round(Math.random() * 8)] + "\"], ";
            }
            frames.text = ou;


            Only took 15 secs to code it.
            Heh, cool. That's more or less what I would have done (although the random()*3 looks off, I bet that's why most of the notes are concentrated on the middle two columns). No wonder it has exactly two notes every frame.


            ninjaKIWI: A cameljack is a 3-note minitrill on one hand which contains a 2-framer jack, so for instance LDL on adjacent frames. The other hand doesn't matter.
            Last edited by qqwref; 01-11-2012, 01:39 PM.
            Best AAA: Policy In The Sky [Oni] (81)
            Best SDG: PANTS (86)
            Best FC: Future Invasion (93)

            Comment

            • Velocity
              Doing the wrong thing the right way since 2010.
              FFR Simfile Author
              FFR Administrator
              • Jul 2007
              • 1817

              #66
              Re: Whimper Wall? more like WEAK WALL

              Originally posted by qqwref
              Heh, cool. That's more or less what I would have done (although the random()*3 looks off, I bet that's why most of the notes are concentrated on the middle two columns). No wonder it has exactly two notes every frame.
              The reason it's Math.random()*3 is because flash normally only randoms 0-1 floats, times it by 3 and rounding means it'll be 0-3 which is the array indexes. Only problem is flash randoms somewhat weighted toward the middle numbers then the extreme values. If I had made the direction array bigger to counter this, it should be more balanced.

              Comment

              • qqwref
                stepmania archaeologist
                FFR Simfile Author
                • Aug 2005
                • 4092

                #67
                Re: Whimper Wall? more like WEAK WALL

                Well, I would have done Math.floor(Math.random()*4) (unless flash doesn't have a floor function? It should). When you round the columns go [0-1/6, 1/6-1/2, 1/2-5/6, 5/6-1] so the outer two are half as long as the inner two.
                Best AAA: Policy In The Sky [Oni] (81)
                Best SDG: PANTS (86)
                Best FC: Future Invasion (93)

                Comment

                • Velocity
                  Doing the wrong thing the right way since 2010.
                  FFR Simfile Author
                  FFR Administrator
                  • Jul 2007
                  • 1817

                  #68
                  Re: Whimper Wall? more like WEAK WALL

                  Originally posted by qqwref
                  Well, I would have done Math.floor(Math.random()*4) (unless flash doesn't have a floor function? It should). When you round the columns go [0-1/6, 1/6-1/2, 1/2-5/6, 5/6-1] so the outer two are half as long as the inner two.
                  Math.floor();
                  Math.ceil();

                  If I had spent more time on it, I could have made it better, but honestly that file was never meant to be fair, lol

                  Comment

                  • rushyrulz
                    Digital Dancing!
                    FFR Simfile Author
                    FFR Music Producer
                    • Feb 2006
                    • 12985

                    #69
                    Re: Whimper Wall? more like WEAK WALL



                    Comment

                    • Reshiram
                      The Vast White Note
                      FFR Simfile Author
                      • May 2011
                      • 1224

                      #70
                      Re: Whimper Wall? more like WEAK WALL

                      Originally posted by Velocity
                      Math.floor();
                      Math.ceil();

                      If I had spent more time on it, I could have made it better, but honestly that file was never meant to be fair, lol
                      1 minute wall of 225bpm 64th rolls

                      Presto, fairer file

                      Comment

                      • Reincarnate
                        x'); DROP TABLE FFR;--
                        • Nov 2010
                        • 6332

                        #71
                        Re: Whimper Wall? more like WEAK WALL

                        FC'd it, third place

                        I hereby dub this technique



                        waterquadding

                        aka watered down quadholds

                        Comment

                        • Reincarnate
                          x'); DROP TABLE FFR;--
                          • Nov 2010
                          • 6332

                          #72
                          Re: Whimper Wall? more like WEAK WALL

                          jk first



                          Last edited by Reincarnate; 01-11-2012, 06:03 PM.

                          Comment

                          • Coolboyrulez0
                            VICES
                            FFR Simfile Author
                            FFR Music Producer
                            • Aug 2006
                            • 10042

                            #73
                            Re: Whimper Wall? more like WEAK WALL

                            it has begun
                            https://soundcloud.com/cbrbreakcore
                            https://cbrrecords.bandcamp.com/

                            Comment

                            • Emithith
                              FFR Player
                              • Sep 2008
                              • 1784

                              #74
                              Re: Whimper Wall? more like WEAK WALL

                              and then I shat myself after finding out this is an actual file. O___o

                              Comment

                              • awein999
                                (ಠ⌣ಠ)
                                • Oct 2007
                                • 4647

                                #75
                                Re: Whimper Wall? more like WEAK WALL

                                Originally posted by Reincarnate
                                jk first



                                Not good enuf
                                Originally posted by Staiain
                                i am super purple hippo

                                Comment

                                Working...