April 7, 201015 yr Ahh, I have been looking for this exact effect for awhile! Many thanks! Time to go check out the source. Thanks again!
April 8, 201015 yr Author Nice About Effect with fade in out text and colors source code coming soon src coming.zip
April 9, 201015 yr HiThis efect is from a tool from a rusian coder 6-7 years oldThanks for share i have this code allready
April 11, 201015 yr HiI have this First see from Generic ExeStealth Unpacker v1.1 from cobans coded 2004/>http://www.cobans.net/files/download.php?a=exes
April 11, 201015 yr The effect exists from the "olden" days and is called "metaballs". />http://en.wikipedia.org/wiki/Metaballs/>http://www.niksula.cs.hut.fi/~hkankaan/Homepages/metaballs.html
June 1, 201015 yr Hi Fudowarez,Very nice effect. I liked it.What program did you use to create the "music.asm" file? If that program is written in asm, could you pls give us its source?Thanks.
August 10, 201015 yr Pretty effect Fudowarez, thanks for share ^ What program did you use to create the "music.asm" file? maybe "Table Extractor" : http://tuts4you.com/download.php?view.1612
March 18, 201510 yr hi fudowarez, i didn't understand the algorithm to create metaballs. can you explain the math behind it?
April 9, 201510 yr Someone able to port this to C# / C++ ? this is c89 (mostly) copy/pastable between all windows C or C++ compilers . attached mingw & VS2013 project/src/binaries. tried in c# but was too slow.credit to fudo for background effect, his code (fixed some bugs) + original metaballs algo author Metaballs.zip Edited April 9, 201510 yr by simple
May 7, 201510 yr I fixed the C# version for someone few days ago. It was a quick patch so don't blame me for the ugly code standards WindowsFormsApplication3.rar
May 9, 201510 yr public static int RGB(int Red, int Green, int Blue) { // these 3 checks are useless // 300 & -2147483648 = 0 . 300 is invalid value if ((Red & -2147483648) != 0) throw new Exception("Invalid ColorValue : Red"); if ((Green & -2147483648) != 0) throw new Exception("Invalid ColorValue : Green"); if ((Blue & -2147483648) != 0) throw new Exception("Invalid ColorValue : Blue"); // these 3 checks are redundant - this is already checked by winapi inside the .dll if (Red > 255) Red = 255; if (Green > 255) Green = 255; if (Blue > 255) Blue = 255; // slowest possible way return (Blue * 65536 + Green * 256 + Red); } Can be summed as... public static int RGB(byte Red, byte Green, byte Blue) { return (int)( Red | (Green << 8) | (Blue << 16) ); }
July 14, 201510 yr Can be summed as... public static int RGB(byte Red, byte Green, byte Blue) { return (int)( Red | (Green << 8) | (Blue << 16) ); }
Create an account or sign in to comment