Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Nice About Effect

Featured Replies

Posted

enjoy!!! :wub:

about.zip

Yep, small code but nice effect.. thx 4 the share.

Nice indeed, might use it in something. ;)

With proper credits of course.

yes I like it too :flowers:

Thanks

Ahh, I have been looking for this exact effect for awhile! Many thanks! Time to go check out the source. Thanks again!

  • Author

Nice About Effect with fade in out text and colors

source code coming soon :kick:

src coming.zip

thank i like it, cool effect

Hi

This efect is from a tool from a rusian coder 6-7 years old

Thanks for share i have this code allready

i had seeing like it in a crackme of lord_Phoenix of Revenge crew

Hi

I have this First see from Generic ExeStealth Unpacker v1.1 from cobans coded 2004
/>http://www.cobans.net/files/download.php?a=exes

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

.. nerds :P

hehe just kidding.

Nice effect, I hope i can change the colors... if it's possible?

  • 1 month later...

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.

  • 2 months later...

Pretty effect Fudowarez, thanks for share :yahoo:

^

What program did you use to create the "music.asm" file?

maybe "Table Extractor" : http://tuts4you.com/download.php?view.1612

  • 4 years later...

hi fudowarez,


 


i didn't understand the algorithm to create metaballs. can you explain the math behind it?


  • 3 weeks later...

Someone able to port this to C# / C++ ?


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 by simple

  • 4 weeks later...

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

the C# version

 

More like "the 99.9% masm (from Fudo) & .1% C#" version ; )

It's just a wrapper for the native DLL.


        
        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) );
        }

  • 2 months later...

 

Can be summed as...


        public static int RGB(byte Red, byte Green, byte Blue)

        {

            return (int)( Red | (Green << 8) | (Blue << 16) );

        }

 

 

:D

Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.