Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Today at 09:20

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



making a character 2d animated

Discussion on making a character 2d animated within the AutoIt forum part of the Coders Den category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,234
Received Thanks: 1,093
making a character 2d animated

im thinking of making a 2d mmorpg (interesting and stuf..)
but my concern is that i cant think of a way to make a character look in good design / shape..

any clues? ideas?
fear-x is offline  
Old 03/06/2012, 14:35   #2
 
elite*gold: 50
Join Date: Mar 2010
Posts: 1,373
Received Thanks: 521
You could use GDI+, which belongs to the standard AutoIt includes, or you could use a thirdparty libary like SDL, Allegro or SFML, but I don't know if there are any wrappers for AutoIt.
jacky919 is offline  
Old 03/06/2012, 14:52   #3


 
K1ramoX's Avatar
 
elite*gold: 26
Join Date: Jan 2012
Posts: 3,474
Received Thanks: 18,847
Take a look at . Its a 2D and 3D Engine, codet in C++ and works good with AutoIt.
K1ramoX is offline  
Old 03/06/2012, 17:18   #4
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,234
Received Thanks: 1,093
Quote:
Originally Posted by Applecode View Post
Take a look at . Its a 2D and 3D Engine, codet in C++ and works good with AutoIt.
eh i once had this but its a little complicated xD
i was thinking of making 2d simply by my own code... i assume 2d isnt hard to put images on and stuff
bcz i mean for 2d i was thinking just to use images like jpg or gif(animation for character) and gif(trees,grass,buildings etc..)

but the one thing is im not so sure how to use gif with transparent background on it on another image so it woudnt flash or stuff
fear-x is offline  
Old 03/06/2012, 17:59   #5
 
elite*gold: 50
Join Date: Mar 2010
Posts: 1,373
Received Thanks: 521
Quote:
Originally Posted by fear-x View Post
bcz i mean for 2d i was thinking just to use images like jpg or gif(animation for character) and gif(trees,grass,buildings etc..)

but the one thing is im not so sure how to use gif with transparent background on it on another image so it woudnt flash or stuff
Usually animations aren't saved in gif-Files. Often the pictures of the animation phases.
Example: Rendering these two images by turns, an animations is done.
& ->
Often they are even saved in the same image file, so only one part is rendered, next time the other part.
jacky919 is offline  
Thanks
1 User
Old 03/06/2012, 18:15   #6
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,234
Received Thanks: 1,093
ye i get that like css image swapping
but i find it easier to make a gif animated file lol ;]
then show frames when needed or if standing not moving show only first frame
fear-x is offline  
Old 03/06/2012, 18:23   #7
 
elite*gold: 50
Join Date: Mar 2010
Posts: 1,373
Received Thanks: 521
Quote:
Originally Posted by fear-x View Post
ye i get that like css image swapping
but i find it easier to make a gif animated file lol ;]
It depends on wheter the your renderer is supporting multiframed gif images.

Quote:
Originally Posted by fear-x View Post
then show frames when needed or if standing not moving show only first frame
Right, for example you could implement a state variable, which is saving wheter the charcter is running or not.
jacky919 is offline  
Old 03/06/2012, 18:31   #8
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,234
Received Thanks: 1,093
Quote:
Originally Posted by jacky919 View Post
Right, for example you could implement a state variable, which is saving wheter the charcter is running or not.
yea.. if run=on then show that animation when on the go ...
just having problems with getting character to show without any white ***** around it lol when characcter displayed on map(image)
fear-x is offline  
Old 03/06/2012, 18:49   #9
 
elite*gold: 50
Join Date: Mar 2010
Posts: 1,373
Received Thanks: 521
Quote:
Originally Posted by fear-x View Post
yea.. if run=on then show that animation when on the go ...
just having problems with getting character to show without any white ***** around it lol when characcter displayed on map(image)
How are you rendering your images? What are you using for redering?
jacky919 is offline  
Old 03/06/2012, 18:56   #10
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,234
Received Thanks: 1,093
simply made gif/jpg and display in gui
any other posibilities? i think ill need alot of help lmao
fear-x is offline  
Old 03/06/2012, 19:09   #11
 
elite*gold: 50
Join Date: Mar 2010
Posts: 1,373
Received Thanks: 521
Quote:
Originally Posted by fear-x View Post
simply made gif/jpg and display in gui
any other posibilities? i think ill need alot of help lmao
Use GDI+ instead of the AutoIt GUI functions. GDI+ is maybe a little bit difficult first, but it's much faster than the way, you actually do it.
Or, like I said, use a third party libary, the way I suggest.
jacky919 is offline  
Old 03/06/2012, 21:12   #12
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,234
Received Thanks: 1,093
autoit gdi+ ?
and like u mean third party libraries u mean like free mmorpg engines? (i dont rly want to use other engines as i want to create a completely my ideal featured game)
fear-x is offline  
Old 03/06/2012, 21:44   #13
 
elite*gold: 50
Join Date: Mar 2010
Posts: 1,373
Received Thanks: 521
Quote:
autoit gdi+ ?
Code:
#include <GDIPlus.au3>
I don't know any tutorial about it, but a google search max help.

Quote:
and like u mean third party libraries u mean like free mmorpg engines?
There are some free engines/libaries for 2D games, e.g. Sdl, Allegro, SFML..., but I don't know any wrapers for AutoIt.
jacky919 is offline  
Old 03/06/2012, 21:57   #14
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,234
Received Thanks: 1,093
ah ok ty naa its ok about other engines.. dont rly want to use them anyway as i sayd i wana make the game completely with my ideas
fear-x is offline  
Old 03/06/2012, 22:30   #15
 
elite*gold: 50
Join Date: Mar 2010
Posts: 1,373
Received Thanks: 521
Quote:
Originally Posted by fear-x View Post
ah ok ty naa its ok about other engines.. dont rly want to use them anyway as i sayd i wana make the game completely with my ideas
A gameengine won't restrict your ideas, it will simplify the realisation. Anyway I dissuade you of using the GUI functions for your game.
jacky919 is offline  
Reply


Similar Threads Similar Threads
Who need Animated EO Site?
11/12/2011 - EO PServer Hosting - 2 Replies
Who need Animated EO Site? i can help you to make some eo site just email me : [email protected] or contact me in my site Forum - Blaze Gaming Private Server Eudemons - Clan site
My animated gif file
05/09/2011 - Grand Chase - 9 Replies
Just wanna show the animated gif that I made. :D http://i.picasion.com/pic41/fdd21c741f6f2003dd7cf 8b839b1fb2f.gif
Character making bug [nonopower2]
01/18/2011 - Metin2 Private Server - 0 Replies
Hey. I have a problem. I cant make any new character in the game, cause the client writes, i cant make the character. What is the problem? Im using nonopower2. Please help me!
making your current Character FAt with scroll
08/18/2008 - Perfect World - 3 Replies
Anyone can guide me to this, Modifying the ini file doesnt make changes in the present char
Making an EcSro Character.. *help please*
07/07/2008 - SRO Private Server - 4 Replies
I am new to ecsro, and whenever i try to make a character and i try to do a name "unique check" it always says "Invalid name, Invalid Letters" How come? and when i try to only use 1 number or letter it says "Exceeded Letter limit" even though i only used 1 character. Can anyone help me please?



All times are GMT +2. The time now is 09:20.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.