Cool canvas Design (Easy to use)

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

Re: Cool canvas Design (Easy to use)

Postby SuperSonic » Wed May 25, 2011 2:27 am

@Gogo: If you can do it, I will be speechless :D

@Hblade: The only help I need is how to edit DRAWWIN to draw windows with custom size instead of using the canvas's current size :P
Know what I mean? :)
A tree never hits an automobile except in self-defence.

Want to use your joystick or controller with Game Editor? Check out my controller engine =D
User avatar
SuperSonic
 
Posts: 1443
Joined: Fri Sep 24, 2010 9:24 pm
Location: Anywhere
Score: 72 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby Hblade » Wed May 25, 2011 7:40 am

it would take a lot of modding xD and im confused right now o.o confused in coding somehow O.o
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby Game A Gogo » Wed May 25, 2011 9:33 am

Code: Select all
void DRAWWIN(int wwidth, int wheight, int BR, int BG, int BB, int FR, int FG, int FB) {
    int i;
    erase(0, 0, 0, 1);
    setpen(BR, BG, BB, 0, 1);
    moveto(3, 0);
    lineto(wwidth-6, 0);
    putpixel(2, 1);
    putpixel(1, 2);
    moveto(0, 3);
    lineto(0, wheight-5);
    putpixel(1, wheight-4);
    putpixel(2, wheight-3);
    moveto(3, wheight-2);
    lineto(wwidth-5, wheight-2);
    putpixel(wwidth-4, wheight-3);
    putpixel(wwidth-3, wheight-4);
    moveto(wwidth-3, wheight-5);
    lineto(wwidth-3, 3);
    putpixel(wwidth-4, 2);
    putpixel(wwidth-5, 1);
    setpen(BR-155, BG-155, BB-155, 0, 1);
    moveto(4, 1);
    lineto(wwidth-7, 1);
    putpixel(3, 2);
    putpixel(2, 3);
    moveto(1, 4);
    lineto(1, wheight-6);
    putpixel(2, wheight-5);
    putpixel(3, wheight-4);
    moveto(4, wheight-3);
    lineto(wwidth-6, wheight-3);
    putpixel(wwidth-5, wheight-4);
    putpixel(wwidth-4, wheight-5);
    moveto(wwidth-4, wheight-6);
    lineto(wwidth-4, 4);
    putpixel(wwidth-5, 3);
    putpixel(wwidth-6, 2);
    setpen(FR, FG, FB, .70, 1);
    for (i=3;i<wheight-3;i++) {
        moveto(3, i);
        lineto(wwidth-6, i);
                             }
    setpen(BR, BG, BB, 0, 16);
    putpixel(0, 0);
               }


DRAWWIN(320, 240, 255, 255, 255, 0, 0, 0)

Hblade, instead of discouraging yourself, do it while you discourage yourself! You'll be finished when you're completely discouraged!
Programming games is an art,
    Respect it.
User avatar
Game A Gogo
 
Posts: 3466
Joined: Wed Jun 29, 2005 10:49 pm
Location: French Canada *laughs*
Score: 181 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby schnellboot » Wed May 25, 2011 9:37 am

off-topic:gag congrats to your 3000th post :)
schnellboot
 
Posts: 819
Joined: Sat Mar 31, 2007 1:35 pm
Location: Germany
Score: 102 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby Game A Gogo » Wed May 25, 2011 10:01 am

Time to beat Bee-ant's place... he stole my 2nd place of most posters a while back! I remember how much I wanted to be the second one XD I don't know why! I think makslane will be forever unbeatable :)
Programming games is an art,
    Respect it.
User avatar
Game A Gogo
 
Posts: 3466
Joined: Wed Jun 29, 2005 10:49 pm
Location: French Canada *laughs*
Score: 181 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby schnellboot » Wed May 25, 2011 10:40 am

I think you two will be able to beat maks posts because he posted often ealier but now he doesn't ^^
but who cares that hehe
schnellboot
 
Posts: 819
Joined: Sat Mar 31, 2007 1:35 pm
Location: Germany
Score: 102 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby Hblade » Wed May 25, 2011 7:10 pm

Thanks gag :D
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby Bee-Ant » Wed May 25, 2011 8:18 pm

Game A Gogo wrote:Time to beat Bee-ant's place... he stole my 2nd place of most posters a while back! I remember how much I wanted to be the second one XD I don't know why! I think makslane will be forever unbeatable :)

I won't let it...
The second place is belong to me currently...
You can have it later, after the first place is mine :P
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby SuperSonic » Wed May 25, 2011 10:03 pm

Haha, I've never seen anyone fight over who has the most posts^^
A tree never hits an automobile except in self-defence.

Want to use your joystick or controller with Game Editor? Check out my controller engine =D
User avatar
SuperSonic
 
Posts: 1443
Joined: Fri Sep 24, 2010 9:24 pm
Location: Anywhere
Score: 72 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby Hblade » Wed May 25, 2011 11:09 pm

lol amazing
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby Game A Gogo » Thu May 26, 2011 1:03 am

Bee-Ant wrote:
Time paradox :O wrote:Time to beat Bee-ant's place... he stole my 2nd place of most posters a while back! I remember how much I wanted to be the second one XD I don't know why! I think makslane will be forever unbeatable :)

I won't let it...
The second place is belong to me currently...
You can have it later, after the first place is mine :P


Oh it's on!
Programming games is an art,
    Respect it.
User avatar
Game A Gogo
 
Posts: 3466
Joined: Wed Jun 29, 2005 10:49 pm
Location: French Canada *laughs*
Score: 181 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby SuperSonic » Thu May 26, 2011 1:57 am

And the battle begins XD

I wanna see what crazy posts you guys make just to get to the top :P
A tree never hits an automobile except in self-defence.

Want to use your joystick or controller with Game Editor? Check out my controller engine =D
User avatar
SuperSonic
 
Posts: 1443
Joined: Fri Sep 24, 2010 9:24 pm
Location: Anywhere
Score: 72 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby Game A Gogo » Thu May 26, 2011 2:29 am

Well I won't be spamming! :)
Programming games is an art,
    Respect it.
User avatar
Game A Gogo
 
Posts: 3466
Joined: Wed Jun 29, 2005 10:49 pm
Location: French Canada *laughs*
Score: 181 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby Hblade » Thu May 26, 2011 2:47 am

GAG VS BEE -- gonna be epic
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Cool canvas Design (Easy to use)

Postby MrJolteon » Thu May 26, 2011 11:16 am

Who will get their 4000th post first? Will it be Bee? Will it be GAG? Only through time, one may find out.
Join us on Discord!
Game Editor 2
These are the best ways to reach me these days


Your local Community Janitor, always lurking in the shadows...
User avatar
MrJolteon
 
Posts: 2326
Joined: Sat Aug 09, 2008 3:25 pm
Location: Stranded under endless sky
Score: 105 Give a positive score

PreviousNext

Return to Game Resources

Who is online

Users browsing this forum: No registered users and 1 guest

cron