Music Bar;Drawn

Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help, read this.
JamiezRascall
Prole
Posts: 5
Joined: Thu Jun 24, 2010 2:08 am

Music Bar;Drawn

Post by JamiezRascall »

Ok this is what I got currently if any one can help please do :)

In function love.load() I've got for the menu;

Code: Select all

 MouseX = love.mouse.getX()
 MouseY = love.mouse.getY()
and in function love.draw() I've got for the menu;

Code: Select all

if(MouseX == 260 and MouseY == 260) 
  then do
    love.graphics.rectangle(line,260,260,50,20)
    love.graphics.setColor(255,255,255)
    end 
Should this work if I put my cursor at 260 X axis and 260 Y axis it should draw the box right?
User avatar
bartbes
Sex machine
Posts: 4946
Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:

Re: Music Bar;Drawn

Post by bartbes »

No, this works only if you put your mouse at 260,260 during startup, you should move the getX/Y statements to love.update.
JamiezRascall
Prole
Posts: 5
Joined: Thu Jun 24, 2010 2:08 am

Re: Music Bar;Drawn

Post by JamiezRascall »

I thought that but then I thought it was only a timer function D:

Heres another question if I wanted like a area of the screen instead of a point how would i do it with the if???
User avatar
bartbes
Sex machine
Posts: 4946
Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:

Re: Music Bar;Drawn

Post by bartbes »

something like:

Code: Select all

if mouseX < upperXbound and mouseX > lowerXbound and mouseY < upperYbound and mouseY > lowerYbound then
JamiezRascall
Prole
Posts: 5
Joined: Thu Jun 24, 2010 2:08 am

Re: Music Bar;Drawn

Post by JamiezRascall »

Oh gawd..

It still will not draw the graphics when I go over the position...

function love.load()

Code: Select all

MouseX = love.mouse.getX()
 MouseY = love.mouse.getY()
function love.update(dt)

Code: Select all

if(MouseX == 300 and MouseY == 320) 
  then do
    love.graphics.rectangle(fill,260,260,100,40)
    love.graphics.setColor(255,255,255)
    end
User avatar
vrld
Party member
Posts: 917
Joined: Sun Apr 04, 2010 9:14 pm
Location: Germany
Contact:

Re: Music Bar;Drawn

Post by vrld »

JamiezRascall wrote:function love.update(dt)
That is the problem. Do drawing stuff in love.draw().
I have come here to chew bubblegum and kick ass... and I'm all out of bubblegum.

hump | HC | SUIT | moonshine
User avatar
bartbes
Sex machine
Posts: 4946
Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:

Re: Music Bar;Drawn

Post by bartbes »

So, basically, what you listed as love.load goes to love.update and what you listed as love.update goes to love.draw.
User avatar
nevon
Commander of the Circuloids
Posts: 938
Joined: Thu Feb 14, 2008 8:25 pm
Location: Stockholm, Sweden
Contact:

Re: Music Bar;Drawn

Post by nevon »

What's wrong with:

Code: Select all

function love.draw()
    if love.mouse.getX() == 300 and love.mouse.getY() == 320 then
        love.graphics.rectangle(fill,260,260,100,40)
        love.graphics.setColor(255,255,255)
    end
end
?
User avatar
bartbes
Sex machine
Posts: 4946
Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:

Re: Music Bar;Drawn

Post by bartbes »

Nothing.
User avatar
Robin
The Omniscient
Posts: 6506
Joined: Fri Feb 20, 2009 4:29 pm
Location: The Netherlands
Contact:

Re: Music Bar;Drawn

Post by Robin »

nevon wrote:What's wrong with:

Code: Select all

function love.draw()
    if love.mouse.getX() == 300 and love.mouse.getY() == 320 then
        love.graphics.rectangle(fill,260,260,100,40)
        love.graphics.setColor(255,255,255)
    end
end
?
One pixel is still an awfully small piece of screen. As bartbes pointed out earlier, using an upper and lower bound is better.

Example

Code: Select all

function love.draw()
    local mouseX = love.mouse.getX()
    local mouseY = love.mouse.getY()
    if mouseX > 300 and mouseX < 310 and mouseY > 320 and mouseY < 330 then
        love.graphics.rectangle(fill,260,260,100,40)
        love.graphics.setColor(255,255,255)
    end
end
Something like that.
Help us help you: attach a .love.
Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot], Google [Bot], TheFoxyHu3 and 3 guests