off topic - game editor sprite tool

How to find or create sprites, graphics, sounds and music.

off topic - game editor sprite tool

Postby feral » Sat Oct 04, 2008 1:29 am

To makslane, if this is out of place, (as i know it is not game editor material).. please fell free to remove this post.

to others
If you have read my other recent post you will know that, I have had to learn c# ( c Sharp) in a hurry... :shock:

But, I have used my time learning C#, to create a windows application for the Game Editor community, in return for all the help and support you guys have given me in the past

It will be completely free for any game editor user..I am not trying to sell this, or promote anything.. I simply had to learn C# in a hurry , and because this program was already one i was working on ( using game editor as the programming platform...) it just seemed easier and logical, to convert it to c# as a quick way to learn..and, I wanted to return something to the community that would help them with game editor programming.

it is a full blown windows application that does everything my (game editor version) of "sprite maker does", and can be used to rotate sprites, create sprite sheets and scale sprites etc ready for game editor...

I don't want to post it here... as it is not really anything to do with GameEditor, but if it is ok with makslane ?? or if he wants a copy to post with "game editor", as a game_editor tool... then that would be cool, if not then I will find another website to post it.. no worries..

screenshot of current version below ( maybe two more weeks work to go)..just thought i would let you know it is in the works in case you were trying to do this sort of thing now by hand..ugghh

to others, please pm me about this if you want to talk about it... as we really should not start threads about other software here

if anyone wants to beta test it for me ? please pm as well.. it will probably take another week or so till beta testing time..

spritefx.jpg
click to enlarge

PS: if you are now thinking about making games in C#.... don't... :lol: use game editor.. trust me.. c# sucks for games.. very hard... :cry: :cry: ( unless you are a genius or or grew up in Microsoft land..)
User avatar
feral
 
Posts: 308
Joined: Sun Mar 16, 2008 6:27 am
Score: 47 Give a positive score

Re: off topic - game editor sprite tool

Postby pyrometal » Sat Oct 04, 2008 3:11 am

Question for you! Are you still using the rotation code which me and Gogo developped in this program? lol, just wondering... If so did you upgrade it in any way? I think there should be creation of a new forum thread called "Game Editor Tools" or something like that, this would fit in there perfectly and encourage users to create and share useful applications that we may want to use. I'm interested in beta testing, so I shall send you a PM!

--pyro
SPRITE WARRIOR:
Free, open-source & crossplatform pixel art editor (currently under construction).
User avatar
pyrometal
 
Posts: 706
Joined: Wed Nov 28, 2007 4:07 am
Location: Kingston, ON, Canada
Score: 86 Give a positive score

Re: off topic - game editor sprite tool

Postby makslane » Sat Oct 04, 2008 12:12 pm

You can post here, no problem.
Game Editor is an open source game creator software that's wants to pay it's developers to keep evolving.
If you like Game Editor, make a review!
makslane
Site Admin
 
Posts: 3947
Joined: Sat Apr 05, 2003 6:47 pm
Score: 182 Give a positive score

Re: off topic - game editor sprite tool

Postby feral » Fri Dec 05, 2008 10:37 pm

Just an update and first an answer for pyro

Question for you! Are you still using the rotation code which me and Gogo developped in this program? lol, just wondering..


I was originally but it turns out Windows (or rather C#) has some of its own rotation codes built in, which will also do anti-aliasing if i want it too.. so I will probably use those, unless the results are not as good , in which case, i hope to use yours.. you guys will get full recognition :)

Secondly , just an update, I have been away for a while as I have had fully paid work, programming :shock: :D , but it looks like it is over for a while ( It was only a short contract) :( so I will be back and attempting to finish this tool over the next few weeks, although now it probably , won't be finished till just after Christmas.. sorry for the delays , i might have a demo/beta version out sooner for testing.. keep watch..

cheers
Feral
User avatar
feral
 
Posts: 308
Joined: Sun Mar 16, 2008 6:27 am
Score: 47 Give a positive score

Re: off topic - game editor sprite tool

Postby Killagram » Sat Dec 06, 2008 2:55 am

can't wait to see it!
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it."
-Brian W. Kernighan
User avatar
Killagram
 
Posts: 31
Joined: Sun Aug 10, 2008 8:49 pm
Score: 5 Give a positive score

Re: off topic - game editor sprite tool

Postby pyrometal » Sat Dec 06, 2008 3:59 am

Good to hear! lol, that answer is 2 months overdue!

If I can advise you, use any prebuilt rotation codes that are given to you, they are usually very optimized and efficient. If C# allows you to use the computer's graphics card for this function, then even better, saves useless strain on the cpu. The code me and Gogo develloped uses the cpu to compute the rotation which makes it impractical for real-time use in games unfortunately.

I also have an important note to bring about auto anti-aliasing... If you are to allow your tool to use this, also allow it to be optional. The reason for this is that it breaks "color conservation" by generating multiple shades... If a person wants to make an 8-bit style game with a limited color palette, then auto AA breaks these restrictions automatically.

I unfortunately probably wont have a need for your great tool... If you haven't read already, here:
http://game-editor.com/forum/viewtopic.php?f=1&t=6324
May I add, to comment this, that develloping a game from scratch is PAINFULLY SLOW as you have to code absolutely all of the engine. It has taken me 3 weeks to accomplish something which took me only 30 minutes to make in GE (not joking).

Anyway ttyl! I may still serve as a beta tester if you need me to!

--pyro
SPRITE WARRIOR:
Free, open-source & crossplatform pixel art editor (currently under construction).
User avatar
pyrometal
 
Posts: 706
Joined: Wed Nov 28, 2007 4:07 am
Location: Kingston, ON, Canada
Score: 86 Give a positive score

Re: off topic - game editor sprite tool

Postby feral » Sat Dec 06, 2008 7:37 pm

I also have an important note to bring about auto anti-aliasing... If you are to allow your tool to use this, also allow it to be optional. The reason for this is that it breaks "color conservation" by generating multiple shades... If a person wants to make an 8-bit style game with a limited color palette, then auto AA breaks these restrictions automatically.


That is a good point pyro. I was planning on having the anti-aliasing optional anyway, but, I admit, I had not thought of the color conservation issues, so thanks heaps for the advice, it will definitely be included.

I was also intending to have an optional "mask" for anti aliasing, so that, if required you could stop it from "bleeding" into the background... ie: only the sprite would be blended, and it would not be blended with the background.

If anyone has other feature requests (within the range of my original concept of scaling/rotation) or advice feel free to post or PM me..

cheers
Feral
User avatar
feral
 
Posts: 308
Joined: Sun Mar 16, 2008 6:27 am
Score: 47 Give a positive score

Re: off topic - game editor sprite tool

Postby j2graves » Mon Dec 08, 2008 2:01 am

just saying, if you want a site to post it on, you are free to post it on our forum http://thebiverse.freeforums.org
we are experiencing a drop in activity in the biverse, and would apreciate it if we got more members and some items that would make more people wanna come. feel free to join our forum and post it. one thing: there is a chance that our website will not allow the file because of the size of the file or something, but it's worth a shot. please come to the biverse :D
No games to my name...
User avatar
j2graves
 
Posts: 1302
Joined: Thu Aug 16, 2007 6:42 pm
Location: on the other side of infinity
Score: 19 Give a positive score

Re: off topic - game editor sprite tool

Postby j2graves » Sat Feb 28, 2009 8:06 pm

will this be completed any time?
No games to my name...
User avatar
j2graves
 
Posts: 1302
Joined: Thu Aug 16, 2007 6:42 pm
Location: on the other side of infinity
Score: 19 Give a positive score

Re: off topic - game editor sprite tool

Postby Lambinator » Mon Apr 27, 2009 3:48 am

I'm keen to see this. I can spend hours doing rotations for stuff :x
I'm just drooling to try this!! :P
Walk softly and carry a big gun.

Power is our common goal, sanity is optional.
User avatar
Lambinator
 
Posts: 23
Joined: Sun Apr 19, 2009 12:55 am
Location: In my secret la....... wait....I mean I'm at home.
Score: 1 Give a positive score

Re: off topic - game editor sprite tool

Postby j2graves » Mon Apr 27, 2009 11:10 pm

will it EVER come?
No games to my name...
User avatar
j2graves
 
Posts: 1302
Joined: Thu Aug 16, 2007 6:42 pm
Location: on the other side of infinity
Score: 19 Give a positive score

Re: off topic - game editor sprite tool

Postby factorman2 » Tue Jun 02, 2009 7:00 pm

j2graves wrote:will it EVER come?

From what i looks like now, no.
I know, you don't remember me.
factorman2
 
Posts: 59
Joined: Thu May 07, 2009 7:13 pm
Score: 2 Give a positive score

Re: off topic - game editor sprite tool

Postby Caaz Games » Wed Jun 03, 2009 12:52 am

be patient, it hasn't even been a year yet... this seems complicated.
You are welcome to join my forum. 4 active members lol but it's a cool place. active... much talking :D it's fun!
http://caaz.freeforums.org/
User avatar
Caaz Games
 
Posts: 729
Joined: Wed Feb 14, 2007 9:09 am
Location: California....knows how to party!
Score: 25 Give a positive score

Re: off topic - game editor sprite tool

Postby superman123 » Wed Sep 16, 2009 12:10 am

can you pm the beta version
look at my flash ball gamehttp://game-editor.com/forum/viewtopic.php?f=6&t=7285
aerogame websitehttp://www.aeroman.webs.com

(new avitar made with GIMP and it is awesome)
User avatar
superman123
 
Posts: 79
Joined: Tue Jul 28, 2009 7:20 pm
Score: 1 Give a positive score

Re: off topic - game editor sprite tool

Postby zygoth » Thu Sep 17, 2009 1:32 am

go here:

viewtopic.php?f=4&t=5869

That is as done as it is going to get, I think. Just make sure you use bmp or else your computer will freeze.
no .png s!

Zygo
Nova: 100% Vertigo/Mazeman: 100%
Visit my website to download them both! http://www.ketonegames.com
User avatar
zygoth
 
Posts: 140
Joined: Mon Jun 11, 2007 6:37 pm
Score: 5 Give a positive score

Next

Return to Game Resources

Who is online

Users browsing this forum: No registered users and 1 guest