473,386 Members | 2,129 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Animation and windows progs

Hello,

I'm new to c# and have created an animation which draws directly
to the window, it uses the code below which all works. I would
like to know if this is the 'correct' way to do it - or would an
experienced c# programmer do it another way?

This part defines the screen and the graphics pad I'm drawing to:
Graphics screen = CreateGraphics();
Graphics drawpadg = Graphics.FromImage(drawpad);

Next, the background and the frames of animation
Bitmap back =
(Bitmap)Bitmap.FromStream(this.GetType().Assembly. GetManifestResourceStream("WindowsApplication1.sky ground.gif"));
Bitmap lemframes =
(Bitmap)Bitmap.FromStream(this.GetType().Assembly. GetManifestResourceStream("WindowsApplication1.lem walk.gif"));

Clear the pad I draw to
drawpadg.Clear(this.BackColor);

Copy the background and then the frame of animation to the draw pad.
drawpadg.DrawImage(back, new Rectangle(0, 0, 400, 120), 0,
0, 400, 120, GraphicsUnit.Pixel);
drawpadg.DrawImage(lemframes, new Rectangle(x+lo[f], y,
lw[f], 46), lx[f], 0, lw[f], 46, GraphicsUnit.Pixel);

Finally copy the draw pad to the screen
screen.DrawImage(drawpad, 0, 0);

Then I dispose of everything afterwards (like a good little c# coder
:o)

I also want to start developing an application which allows you to
scroll around an image, and which lets you resize the window (and have
the scroll bars update). I cannot get the scroll bars to appear by
playing with the properties - how should I be doing this please?

Ta, James

Dec 28 '05 #1
3 2058
James,

It's hard to say if this is "right" or not.

I don't see you disposing of anything anywhere (the graphics instance,
the bitmaps, the streams, anything), so I can't say if that's correct.

On top of that, where is this code? Are you overriding your OnPaint
method, or in the Paint event handler? If it is not in either of these
places, then you aren't going to have a very smooth animation.

Finally, you can probably make this better. Since you are painting
every frame, you probably could pre-load the frames of the animation, so
that you don't have to incur the cost of loading while drawing.

Hope this helps.
"James" <c_********@yahoo.co.uk> wrote in message
news:11**********************@g14g2000cwa.googlegr oups.com...
Hello,

I'm new to c# and have created an animation which draws directly
to the window, it uses the code below which all works. I would
like to know if this is the 'correct' way to do it - or would an
experienced c# programmer do it another way?

This part defines the screen and the graphics pad I'm drawing to:
Graphics screen = CreateGraphics();
Graphics drawpadg = Graphics.FromImage(drawpad);

Next, the background and the frames of animation
Bitmap back =
(Bitmap)Bitmap.FromStream(this.GetType().Assembly. GetManifestResourceStream("WindowsApplication1.sky ground.gif"));
Bitmap lemframes =
(Bitmap)Bitmap.FromStream(this.GetType().Assembly. GetManifestResourceStream("WindowsApplication1.lem walk.gif"));

Clear the pad I draw to
drawpadg.Clear(this.BackColor);

Copy the background and then the frame of animation to the draw pad.
drawpadg.DrawImage(back, new Rectangle(0, 0, 400, 120), 0,
0, 400, 120, GraphicsUnit.Pixel);
drawpadg.DrawImage(lemframes, new Rectangle(x+lo[f], y,
lw[f], 46), lx[f], 0, lw[f], 46, GraphicsUnit.Pixel);

Finally copy the draw pad to the screen
screen.DrawImage(drawpad, 0, 0);

Then I dispose of everything afterwards (like a good little c# coder
:o)

I also want to start developing an application which allows you to
scroll around an image, and which lets you resize the window (and have
the scroll bars update). I cannot get the scroll bars to appear by
playing with the properties - how should I be doing this please?

Ta, James

Dec 28 '05 #2
Hi Nicholas.

I am disposing of everything afterwards:

back.Dispose();
screen.Dispose();
drawpadg.Dispose();
lemframes.Dispose();

The code is in the timer tick, and you're totally right in that I do
load the animation every frame which I know is wasteful and I intend to
correct that soon (ie to load the images in the public Form1(), but one
problem at a time :o)

Thanks

James

Dec 30 '05 #3
James wrote:
Hi Nicholas.

I am disposing of everything afterwards:

back.Dispose();
screen.Dispose();
drawpadg.Dispose();
lemframes.Dispose();

The code is in the timer tick, and you're totally right in that I do
load the animation every frame which I know is wasteful and I intend to
correct that soon (ie to load the images in the public Form1(), but one
problem at a time :o)

Thanks

James


A (IMHO) better approach would be to just Invalidate your control in the
timer tick (and possibly increment a counter value/update the animation
variables) and paint everything in the OnPaint handler. This way, your
control will repaint properly when partially invalidated etc. And you
should not implement your own doublebuffering unless really needed. Look
at the Control.SetStyle() and ControlStyles.DoubleBuffer instead.

HTH

Stefan
Dec 30 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Brian Angliss | last post by:
I'm relatively new to scripting in JavaScript, so I'm not too surprised I'm having difficulty scripting up an animation effect for my personal site. What I'm trying to do is the following: When...
6
by: J. J. Cale | last post by:
Hi all I get different speeds from this animation in IE6 and Mozilla. Mozilla 1.7.3 runs this much faster than IE . I'm trying to get the results that Mozilla returns. IE is too slow!! Anyone...
3
by: Stanislaw Findeisen | last post by:
Does anyone know how to create file shortcuts in Windows? The only way I know is like: --------------------------------------------------------------- import win32com.client ...
3
by: NL | last post by:
Hi, Does anybody know how to turn off the animation Windows does with a window as it's minimized/maximized to the taskbar? I have an app which, when minimized, syncs to any other open...
2
by: Noor | last post by:
Hi All How some application shows animation to show if some progress/processing is going on. like especially in the end of some wizard, the application shows animation on a form, animation...
7
by: matt | last post by:
Hallo, I have to create a simple sprite movement; in VB6 I used the API BitBlt and all was very good. Using the NET graphical methods (not API) , the result is slow. Do you have a NET...
3
by: | last post by:
Can someone point me to some good info on how to do somoe simple animation on a form. Specifically, I want to have some tiles that when they are clicked, they flip over in place and reveal a...
4
by: =?Utf-8?B?dmluZWV0?= | last post by:
In WPF (even with considerable improvement in version 3.5), while running multiple animations in a single window, The performance of one animation suffers a lot. for example, i have two image...
4
by: Sin Jeong-hun | last post by:
Most applications, including Windows Explorer, show some sort of 'wait' dialog with animation when a lengthy operation is going on. For example, When the Windows Explorer is searching for...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.