Click here to Skip to main content
Click here to Skip to main content

Fishy Fishy Fish

By , 2 Apr 2010
 

Introduction

This article is a bit of a homage to Davidwu's excellent article, A lovely goldfish desktop pet. In that article, David demonstrates using alpha-blending and GDI+ to make a little fish swim across the screen.

I've taken that code and extended it to support multiple fish along with a SysTray icon to control the number of fish in your tank.

screenshot2.png

I also added some different colored fish images for a little variety.

screenshot.jpg

Using the Code

The code is largely the same as the original, though I've moved things around a bit in order to support multiple fish. Unlike the original code, frames are extracted from the source PNG at startup rather than at each timer tick.

class Frameset : List<Bitmap>, IDisposable
{
    public Frameset(Bitmap b, int framecount)
    {
        if (!Bitmap.IsCanonicalPixelFormat(b.PixelFormat) || 
              !Bitmap.IsAlphaPixelFormat(b.PixelFormat))
            throw new ApplicationException("The picture must be 32bit
                  picture with alpha channel.");

        FrameWidth = b.Width / framecount;
        FrameHeight = b.Height;

        for (int i = 0; i < framecount; i++)
        {
            Bitmap bitmap = new Bitmap(FrameWidth, FrameHeight);
            using (Graphics g = Graphics.FromImage(bitmap))
                g.DrawImage(b, new Rectangle(0, 0, FrameWidth, FrameHeight),
                   new Rectangle(FrameWidth * i, 0, FrameWidth, FrameHeight), 
                   GraphicsUnit.Pixel);

            Add(bitmap);
        }
    }

    public int FrameWidth { get; private set; }

    public int FrameHeight { get; private set; }

    public void Dispose()
    {
        foreach (Bitmap f in this)
            f.Dispose();

        Clear();
    }
}

This greatly reduces the CPU usage for the animation which is important with a whole tankful swimming around. There is also a Form derived from the main FishForm to host the NotifyIcon in the system tray. An instance of this form will always be the first one created. The NotifyIcon context menu allows the user to add and remove fish, show and hide all the fish and of course exit the application.

.NET 4

The project files are all in VS.NET 2010 format, but the only .NET 4 type used is the Tuple. Sacha posted a version of a Tuple in the comments below. So if you want to play with this in 2008 and .NET 3.5, you'll need to incorporate that snippet or otherwise replace the Tuple usage, which shouldn't be too hard.

Conclusion

Oh, and I kind of cheated on the fish colorizing. I color shifted the source PNG in Paint.Net and saved each one as a new set of images. That's why the project size is large. Perhaps someday I'll correct that short cut but for now my apologies for the extra large download. :)

That's about all there is to it. It's been a fun little project to play around with (and the family and friends I've given it to have enjoyed it as well). This will probably be my last WinForms article. I've caught the WPF bug and am finally cresting the learning curve.

History

  • 3/31/2010 - 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

Don Kackman
Team Leader Starkey Laboratories
United States United States
The first computer program I ever wrote was in BASIC on a TRS-80 Model I and it looked something like:
10 PRINT "Don is cool"
20 GOTO 10
It only went downhill from there.
 
Hey look, I've got a blog

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionThis smells...memberZac Greve5-Jan-13 3:25 
AnswerRe: This smells...memberDon Kackman16-Jan-13 12:47 
GeneralMy vote of 5memberPeter Hawke20-Dec-11 14:52 
GeneralMy vote of 5memberPravin Patil, Mumbai11-Oct-11 22:32 
GeneralMy vote of 5memberrahulrcn8-Jun-11 23:29 
GeneralMy vote of 5memberARon_23-Mar-11 4:44 
Generalgood onememberPranay Rana20-Dec-10 1:47 
GeneralMy vote of 5memberskumar0194-Dec-10 1:49 
GeneralMy vote of 5memberOrganicHuman17-Jul-10 0:26 
GeneralRe: My vote of 5memberDon Kackman23-Jul-10 4:06 
Questiontuple?memberChrist Kennedy1-Apr-10 1:43 
AnswerRe: tuple?mvpSacha Barber1-Apr-10 2:21 
GeneralRe: tuple?memberDon Kackman1-Apr-10 2:34 
AnswerRe: tuple?mvpSacha Barber1-Apr-10 2:53 
GeneralRe: tuple?memberChrist Kennedy1-Apr-10 4:26 
GeneralRe: tuple?mvpSacha Barber1-Apr-10 4:31 
GeneralThats..memberGary Noble31-Mar-10 22:38 
GeneralRe: Thats..memberDon Kackman1-Apr-10 6:22 
GeneralLike it, and maybe you will like this one toomvpSacha Barber31-Mar-10 21:41 
GeneralRe: Like it, and maybe you will like this one toomemberDon Kackman1-Apr-10 3:04 
GeneralRe: Like it, and maybe you will like this one toomvpSacha Barber1-Apr-10 3:12 
GeneralRe: Like it, and maybe you will like this one toomemberDon Kackman25-Apr-10 13:52 
GeneralRe: Like it, and maybe you will like this one toomvpSacha Barber25-Apr-10 20:09 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130617.1 | Last Updated 2 Apr 2010
Article Copyright 2010 by Don Kackman
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid