Go Back   Flash Flash Revolution > Flash Flash Revolution > FFR General Talk
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
Old 03-19-2013, 05:56 PM   #1
iironiic
D6 FFR Legacy Player
FFR Simfile AuthorD7 Elite KeysmasherFFR Veteran
 
iironiic's Avatar
 
Join Date: Jan 2009
Age: 32
Posts: 4,342
Default Thoughts about a monochromatic option for FFR gameplay?

It was a random thought that came to me one day and I am curious if this is a good or bad idea.

I don't see how having this option gives a player an unfair advantage to scoring well. All it does is make FFR more readable for some charts and perhaps lessen mindblocks for some people on some files, especially very colorful ones. What are your thoughts on this?
iironiic is offline   Reply With Quote
Old 03-19-2013, 06:03 PM   #2
Kibblre
Caelondia Represent
FFR Veteran
 
Kibblre's Avatar
 
Join Date: Jul 2004
Location: A place of hearts and ghosts
Age: 31
Posts: 1,984
Default Re: Thoughts about a monochromatic option for FFR gameplay?

Seems like it could just be implemented as a noteskin similar to flat in DDR. Wouldn't give anybody an advantage like you said.
__________________
Какой идиот придумал Бутерброд с дикобраза? Он хулиган и бездельник.
Kibblre is offline   Reply With Quote
Old 03-19-2013, 07:14 PM   #3
justin_ator
🥓<strong><span style="col
Resident Overseer
FFR Veteran
 
justin_ator's Avatar
 
Join Date: Mar 2007
Location: Kingsport, TN
Posts: 7,648
Default Re: Thoughts about a monochromatic option for FFR gameplay?

It's VERY easy to implement in Velo's engine, I'd assume it's not much harder in the official.

All I did (did something of the sort toying around with velo's engine before on the community engine site) was to set up a mod (similar to stealth) just instead of the opacity value being changed, just have an overwrite for the color values for each note changed to whatever color is decided on.

Code:
my_color = new Color(_root.main.gameboard["a" + dir]);
        myColorTransform = new Object();
        switch (_global.noteBox[0][2])
        {
            case "blue":
            case "red":
            {
                myColorTransform = {ra: "100", rb: "0", ga: "100", gb: "0", ba: "100", bb: "0", aa: "100", ab: "00"};
                break;
            } 
            case "green":
            {
                myColorTransform = {ra: "100", rb: "255", ga: "100", gb: "0", ba: "100", bb: "-107", aa: "100", ab: "00"};
                break;
            } 
            case "orange":
            {
                myColorTransform = {ra: "100", rb: "0", ga: "100", gb: "100", ba: "100", bb: "-255", aa: "100", ab: "00"};
                break;
            } 
            case "pink":
            {
                myColorTransform = {ra: "100", rb: "255", ga: "100", gb: "-25", ba: "0", bb: "-255", aa: "100", ab: "00"};
                break;
            } 
            case "purple":
            {
                myColorTransform = {ra: "100", rb: "255", ga: "100", gb: "41", ba: "100", bb: "231", aa: "100", ab: "00"};
                break;
            } 
            case "white":
            {
                myColorTransform = {ra: "94", rb: "157", ga: "50", gb: "-84", ba: "100", bb: "50", aa: "100", ab: "00"};
                break;
            } 
            case "yellow":
            {
                myColorTransform = {ra: "100", rb: "255", ga: "100", gb: "255", ba: "100", bb: "255", aa: "100", ab: "00"};
                break;
            } 
            case "cyan":
            {
                myColorTransform = {ra: "100", rb: "204", ga: "100", gb: "185", ba: "100", bb: "-255", aa: "100", ab: "00"};
                break;
            } 
            default:
            {
                myColorTransform = {ra: "100", rb: "0", ga: "100", gb: "100", ba: "100", bb: "255", aa: "100", ab: "00"};
                break;
            }


so for this "mod" you'd just change the color values to all be the same thing, thus making it a "flat" noteskin. I'm assuming this only works with the regular noteskin, and also assuming Velo didn't change the way the engine uses the default noteskin.

edit: I guess my point in posting this is that the reason for not doing it should be a valid "We don't think it's a good idea" not a "we don't feel like implementing it"...

followup edit: I recall Velo showing us an example of a customizable swf for all the noteskin colors, so I do believe that his goal was to have all the noteskins run on the same "color" code for each "note", which would mean that this "mod" I posted about above could apply to all noteskins in his newer engines if he stuck to his original plan.
__________________

Last edited by justin_ator; 03-19-2013 at 08:04 PM..
justin_ator is offline   Reply With Quote
Old 03-20-2013, 10:30 AM   #4
Velocity
Doing the wrong thing the right way since 2010.
Site and Game Administrator
AdministratorRetired StaffDeveloperFFR Simfile AuthorD7 Elite KeysmasherFFR Veteran
 
Velocity's Avatar
 
Join Date: Jul 2007
Posts: 1,812
Default Re: Thoughts about a monochromatic option for FFR gameplay?

Noteskins in Legay/Velo uses a single image which has a color transform applied to it.
R^2 uses 2 layered png's and a color transform to change colors.
R^3 just uses a external swf that has all the notes precolored.
Velocity is offline   Reply With Quote
Old 03-20-2013, 11:16 AM   #5
justin_ator
🥓<strong><span style="col
Resident Overseer
FFR Veteran
 
justin_ator's Avatar
 
Join Date: Mar 2007
Location: Kingsport, TN
Posts: 7,648
Default Re: Thoughts about a monochromatic option for FFR gameplay?

So is this potentially an option (or 'mod' if you will) that you would consider adding?
__________________
justin_ator is offline   Reply With Quote
Old 03-20-2013, 11:41 AM   #6
qqwref
stepmania archaeologist
Retired StaffFFR Simfile AuthorFFR Veteran
 
qqwref's Avatar
 
Join Date: Aug 2005
Age: 34
Posts: 4,090
Default Re: Thoughts about a monochromatic option for FFR gameplay?

Quote:
Originally Posted by justin_ator View Post
It's VERY easy to implement in Velo's engine, I'd assume it's not much harder in the official.

All I did (did something of the sort toying around with velo's engine before on the community engine site) was to set up a mod (similar to stealth) just instead of the opacity value being changed, just have an overwrite for the color values for each note changed to whatever color is decided on.
You don't have to overwrite it at all, just add an if statement It would be something like if (_root.flatmod) { [blue colored note] } else { [normal color code] }.
__________________
Best AAA: Policy In The Sky [Oni] (81)
Best SDG: PANTS (86)
Best FC: Future Invasion (93)
qqwref is offline   Reply With Quote
Old 03-20-2013, 11:44 AM   #7
justin_ator
🥓<strong><span style="col
Resident Overseer
FFR Veteran
 
justin_ator's Avatar
 
Join Date: Mar 2007
Location: Kingsport, TN
Posts: 7,648
Default Re: Thoughts about a monochromatic option for FFR gameplay?

Valid point
__________________
justin_ator is offline   Reply With Quote
Old 03-20-2013, 11:52 AM   #8
TC_Halogen
Rhythm game specialist.
Retired StaffFFR Simfile AuthorFFR Music ProducerD8 Godly KeysmasherFFR Veteran
 
TC_Halogen's Avatar
 
Join Date: Feb 2008
Location: Bel Air, Maryland
Age: 32
Posts: 19,376
Send a message via AIM to TC_Halogen Send a message via Skype™ to TC_Halogen
Default Re: Thoughts about a monochromatic option for FFR gameplay?

+1; flat noteskin would be great for a number of reasons.
TC_Halogen is offline   Reply With Quote
Old 03-20-2013, 02:01 PM   #9
customstuff
♥C.S. + A.M.♥
FFR Veteran
 
customstuff's Avatar
 
Join Date: Nov 2006
Location: Nova Scotia, Canada
Age: 30
Posts: 4,892
Default Re: Thoughts about a monochromatic option for FFR gameplay?

It would be really cool if you had options for each type of note (4th, 8th, 16th, etc.) to enter a hex code or something like that. +1 for this idea from me too.
__________________

Quote:
Originally Posted by MrMagic5239 View Post
Placements are final, custom will not be moved to D6, just because he is good at jacks, and mediocre at just about every other FMO in the game.
Quote:
Originally Posted by customstuff View Post
Quote:
Originally Posted by MrMagic5239 View Post
welcome to D6

start playing
customstuff is offline   Reply With Quote
Old 03-20-2013, 05:36 PM   #10
Raining Nails
Oh no! It's Raining Nails
FFR Veteran
 
Raining Nails's Avatar
 
Join Date: Oct 2009
Location: Arizona
Posts: 83
Default Re: Thoughts about a monochromatic option for FFR gameplay?

This is a great idea.

Would the integrity of the blue-note and/or crazy-background files (like Party4U, Caprice, FoTBB etc.) be lost if you could, say suddenly color the notes red to make them stand out more? I know you can switch noteskins to circles and heart etc. which can help a bit, but I figure a lot of scores would suddenly increase on those Legacy songs.

I might be totally off-base, but I thought I'd mention it.
__________________
Raining Nails is offline   Reply With Quote
Old 03-20-2013, 06:45 PM   #11
Mourningfall
Retired StaffFFR Veteran
 
Mourningfall's Avatar
 
Join Date: Jan 2011
Location: Paradise
Posts: 1,627
Default Re: Thoughts about a monochromatic option for FFR gameplay?

Quote:
Originally Posted by Raining Nails View Post
This is a great idea.

Would the integrity of the blue-note and/or crazy-background files (like Party4U, Caprice, FoTBB etc.) be lost if you could, say suddenly color the notes red to make them stand out more? I know you can switch noteskins to circles and heart etc. which can help a bit, but I figure a lot of scores would suddenly increase on those Legacy songs.

I might be totally off-base, but I thought I'd mention it.
Anything that makes the notes standout more on the legacy songs with backgrounds
or the dynamic squares/circles/whatever has my full support. I normally try to avoid them at all cost.
Mourningfall is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT -5. The time now is 10:04 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright FlashFlashRevolution