Canvas health bar!

You must understand the Game Editor concepts, before post here.

Canvas health bar!

Postby Game A Gogo » Mon Jul 03, 2006 1:29 am

yay, firts post in advance, well anyway, i need to know how to erase something drawn by a canvas.

in the create event i do this:
Code: Select all
setpen(0, 255, 255, 0, 4);

and in draw actor:
Code: Select all
moveto(0, 0);
lineto(width-1+HP1-28, 0);


what do i do when the HP1 decreases so it lower the bar?(erasing the rest of the bar, and if possible, make it fade out!!)

thx in advence to all!
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

Postby DilloDude » Mon Jul 03, 2006 1:46 am

In draw actor, set it check if the health has changed. Create a variable called prevHealth.
Code: Select all
if (HP1 > prevHealth)
{
    moveto(0, 0);
    lineto(width-1+HP1-28, 0);
}
else if (HP1 < prevHealth)
{
    erase(0, 0, 0, 0);
    moveto(0, 0);
    lineto(width-1+HP1-28, 0);
}
prevHealth = HP1

This will only update the health if it has changed, so it will not spend time drawing the same thing over again.
Image
User avatar
DilloDude
 
Posts: 866
Joined: Tue Jan 24, 2006 9:51 am
Location: Nyerellion
Score: 58 Give a positive score

Postby Game A Gogo » Mon Jul 03, 2006 3:26 pm

thx, now i wont have to use activation events!
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

Postby Game A Gogo » Mon Jul 03, 2006 3:30 pm

oh and there supose to be a ";" at the end
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

Postby Game A Gogo » Mon Jul 03, 2006 9:55 pm

when i use that, its just put full black.
so i used:
Code: Select all
moveto(HP1/10,0)
lineto(width-1,0);

on when the actor gets hit
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

Postby DilloDude » Thu Jul 06, 2006 9:33 am

It should have been
Code: Select all
erase(0, 0, 0, 1);
Image
User avatar
DilloDude
 
Posts: 866
Joined: Tue Jan 24, 2006 9:51 am
Location: Nyerellion
Score: 58 Give a positive score

Postby Game A Gogo » Thu Jul 06, 2006 5:47 pm

DilloDude wrote:It should have been
Code: Select all
erase(0, 0, 0, 1);

oh, yay, no more activation events!
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


Return to Advanced Topics

Who is online

Users browsing this forum: No registered users and 1 guest

cron