Click here to Skip to main content
Licence CPOL
First Posted 3 Oct 2007
Views 27,804
Downloads 750
Bookmarked 36 times

(Desktop) Falling Snowflakes

By | 3 Oct 2007 | Article
Using GDI+ and a transparent form
Screenshot - snow.jpg

Introduction

First of all, I have to say that this isn't my idea, it is more a portation of a C++ example to C# using a different way. If you want to get to the original article, click here. (Thanks to Igor Tolmachev for the nice idea.) I changed the way it works (from multiple dialogs to a single form) and added some new features (e.g. Rotation, Scaling, etc.).

Using the Program

Simply run the executable. To close the program, double click on the tray icon representing a snow flake.

Using the Code

The program itself uses a non-bordered form (which is resized to match screen resolution) with a transparent background color for drawing the snow flakes. Instead of using several forms/dialogs (I hate this idea), I just use one form on which I draw using GDI+.

 public MainForm() {
    InitializeComponent();

    //We paint our control ourself 
    //and need a double buffer to prevent flimmering
    SetStyle(
        ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint |
        ControlStyles.DoubleBuffer, true);

    //Resize and relocate form to match Screen settings
    Location = new Point(Screen.PrimaryScreen.Bounds.X, 
                 Screen.PrimaryScreen.Bounds.Y);
    Width = Screen.PrimaryScreen.Bounds.Width;
    Height = Screen.PrimaryScreen.Bounds.Height;
 }

The snowflakes themselves are saved in a List<SnowFlake>. Snowflake is a container class containing the current Data/Positions of the snowflake (X, Y, Rot, Scale) and the Velocities/Changes (XVel, YVel, RotVel)

The main function is the OnTick method, which is divided into several steps:

  1. Increasing the tick count (e.g. Adding snow flakes every tick would be a bit too much)
  2. Spawning new flakes (If appropriate conditions are given)
  3. Moving all flakes (by adding the velocities to the data values)
  4. Deleting flakes which are below the screen/taskbar
  5. Rendering the flakes

The flakes are drawn by defining a userpaint method MainForm_Paint and calling Refresh() to cause the form to invalidate itself. Refresh() is required, as it supports double buffers, which MainForm_Paint(CreateGraphics()) would not. In this case, I used the Matrix capabilities of GDI+ to rotate and scale the snowflakes.

 foreach (SnowFlake s in SnowFlakes) {
    g.ResetTransform();
    g.TranslateTransform(-16, -16, MatrixOrder.Append); //Align our flakes to the center
    g.ScaleTransform(s.Scale, s.Scale, MatrixOrder.Append); //Scale them..
    g.RotateTransform(s.Rotation, MatrixOrder.Append); //Rotate them..
    //Move them to their appropriate location    
    g.TranslateTransform(s.X, s.Y, MatrixOrder.Append); 
    g.DrawImage(Snow, 0, 0); //draw them
 }

The snowflake image is drawn by using the GDI+ functions and then cached at a 32x32 pixel size for performance reasons. (GDI+ is slow when you draw lots of lines.)

Customize!

You could get some pretty nice results by just increasing the snow flake spawn count/the velocities. But note that GDI+ is not as fast at it may look and it increases CPU usage (especially when using matrices).

History

  • 3rd October, 2007: Initial post

License

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

About the Author

]Metty[



Germany Germany

Member



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
GeneralHey, Question... Pinmembertwo1frets4:21 28 Sep '08  
Generalgreat work :) Pinmemberpaskud4:00 23 Jan '08  
Questiondeleting snowflakes Pinmemberjblanchet816:46 10 Oct '07  
AnswerRe: deleting snowflakes Pinmember]Metty[9:55 10 Oct '07  
GeneralThanks for the continue PinmemberIgor Tolmachev5:12 10 Oct '07  
GeneralCPU load [modified] Pinmemberzhaojicheng3:45 4 Oct '07  
GeneralRe: CPU load Pinmember.andy.b.2:29 6 Dec '08  
GeneralNicely done. PinmemberJames Kolpack2:47 3 Oct '07  
GeneralChristmas is coming early this year... PinmemberESTANNY1:45 3 Oct '07  
GeneralRe: Christmas is coming early this year... Pinmember]Metty[2:13 3 Oct '07  
Yeah, decreasing the numbers of snowflakes improves performances drastically - But it doesn't look as good.

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
Web01 | 2.5.120529.1 | Last Updated 3 Oct 2007
Article Copyright 2007 by ]Metty[
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid