Click here to Skip to main content
Licence CPOL
First Posted 15 Oct 2008
Views 20,789
Downloads 801
Bookmarked 43 times

A Thumb Rotator

By | 2 Dec 2008 | Article
A fast and furious - one step far from - screensaver application.

Introduction

First of all, remember, this is not the best way to make a Thumb Rotator!!! And now, let's see what a Thumb Rotator is. It is a program which tells you where your pictures are, and it will show them by rotating them slowly around an ellipse, pretending they are on a 3D space, simulating a mirror on the floor, using fake lighting algorithms...

In this article, there is no DirectX, OpenGL, or anything like them.

First step

First of all, we will arrange the images around an ellipse. To obtain the - let's say - 10 points, with x0, y0 for the center of the screen, and R1 and R2 as great and little radius (it's an ellipse!):

for (int angle=0; angle<360; angle+=36)
{
   double dAngle=DEGREE_TO_RADIANS(angle);
   int x=x0+R1*cos(dAngle);
   int y=y0-R2*sin(dAngle);
   // do something with the x,y - for example, draw the image (scaled!)
}

Animate!

To animate, simply use a timer. And for every step, add some increment to the angle of every image. Take a look at the code in the zip file!

Add perspective

Two simple tricks: first, draw images from the top Y position to the bottom. In an ellipse-arranged-thumb-rotator, this works fine. Second, draw scaled from the top Y position to the bottom. The images on the top have to be smaller than the images on the bottom.

Add lighting effect

To draw the shadow/fading/upside-down image on the bottom, simply follow these steps:

  1. Create a copy of the image
  2. Make it upside-down
  3. For every pixel in the copied image, change the alpha value according to this rule, scaling linear: 255 to the top (no transparence), 0 to the bottom (maximum transparence)

Make images on the top darker. Simply draw a black, semi-transparent rectangle on them!!!

Interact with the mouse

Monitor your mouse while it is being moved!. If it's moving near the center, there should be no rotation. When the mouse is on the left, make the rotation from left to right. When the mouse is on the right, make the rotation in the reverse direction.

Every time you draw an image, remember its position. So, when the mouse is moving, you can perform the "hit test". The "under mouse pointer" image has full light, no darker effect on it (remember the previous paragraph).

That's all! Have fun. Remember, this is not the best way to do it, but it works! :)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Massimiliano Conte

Software Developer (Senior)
Selex SI
Italy Italy

Member

Hi Smile | :)
I was born in 1970 (Augusta - Italy).
I live in Taranto - Italy.
I work in Taranto - Italy.
I like computer science!!!
That's all!

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThank you Pinmemberfuturejo7:05 27 Jul '09  
Generaltwo problems Pinmemberfrancisngl14:51 15 May '09  
GeneralTitle needs work. Pinmembermuzzdeni15:18 5 Mar '09  
GeneralChange the title Pinmemberkosmonafta21:23 9 Dec '08  
Generalcool PinmembertigerfCPRJ12:13 8 Dec '08  
QuestionDLL to be integrated? PinmemberHegemon7:01 8 Dec '08  
GeneralNice code Pinmemberjohannesnestler5:51 5 Dec '08  
GeneralNice PinmemberDhimant Trivedi0:03 5 Dec '08  
Nice Article. May be you should change the title to match up with the article.
 
Thanks,
Dhimant

GeneralThe article needs a better title PinmemberPIEBALDconsult5:08 3 Dec '08  
GeneralNice... PinmemberPaw Jershauge23:06 2 Dec '08  
Generale = mc^2 PinmemberTefik Becirovic22:58 2 Dec '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120604.1 | Last Updated 3 Dec 2008
Article Copyright 2008 by Massimiliano Conte
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid