Page 2 of 3

Re: Compose (Yet another LÖVE project...Will I ever finish o

Posted: Mon Oct 22, 2012 7:05 pm
by Nixola
I'll be working on that, but firs I want to reintroduce support for people without canvases
P.S: How could I sell more an open source project?

Re: Compose (Yet another LÖVE project...Will I ever finish o

Posted: Mon Oct 22, 2012 7:57 pm
by felix24
this is cool :cool: good fun for messing around with. i found a bug where if you double click in one of the grid cells it stops drawing the bottom line of that cell.

really nice work so far sir ^^

Re: Compose (Yet another LÖVE project...Will I ever finish o

Posted: Mon Oct 22, 2012 8:34 pm
by Nixola
felix24 wrote:this is cool :cool: good fun for messing around with. i found a bug where if you double click in one of the grid cells it stops drawing the bottom line of that cell.
That's a weird problem. I don't encounter it and a friend of mine does, but if I fix it then the upper line stops drawing on my pc :?

felix24 wrote:really nice work so far sir ^^
Thanks ^^
By the way, I just finished to add support for people without canvases. They won't have the aid lines, though

Re: Compose (Yet another LÖVE project...Will I ever finish o

Posted: Tue Oct 23, 2012 5:13 pm
by qaisjp
Nixola wrote:
felix24 wrote:this is cool :cool: good fun for messing around with. i found a bug where if you double click in one of the grid cells it stops drawing the bottom line of that cell.
That's a weird problem. I don't encounter it and a friend of mine does, but if I fix it then the upper line stops drawing on my pc :?

felix24 wrote:really nice work so far sir ^^
Thanks ^^
By the way, I just finished to add support for people without canvases. They won't have the aid lines, though
why dont you just use spritebatches.. i hear that people who don't like spritebatches are just people who don't understand them..
(pity on you! :P)

Re: Compose (Yet another LÖVE project...Will I ever finish o

Posted: Tue Oct 23, 2012 5:37 pm
by Nixola
I understand them (I'm using them in another (paused) project), I just don't like them so much

Anyway, it seems that I have to use them, otherwise I can't code scrolling for non-canavs people

Re: Compose (Yet another LÖVE project...Will I ever finish o

Posted: Tue Oct 23, 2012 5:41 pm
by qaisjp
Nixola wrote:I understand them (I'm using them in another (paused) project), I just don't like them so much

Anyway, it seems that I have to use them, otherwise I can't code scrolling for non-canavs people
... scrolling can be done in many ways other than canvas' and spritebatches.

Re: Compose (Yet another LÖVE project...Will I ever finish o

Posted: Tue Oct 23, 2012 5:44 pm
by Nixola
Not if I have to draw at least 88*128 (more than 11'000) squares every frame

Re: Compose (Yet another LÖVE project...Will I ever finish o

Posted: Wed Oct 24, 2012 6:26 am
by timmeh42
Would people please stop moaning about canvases? They are extremely useful and easy to use, and although sometimes games/programs can be made with a version that doesn't need them, if that can't be done then don't demand for them to be removed.
Great program, but for some reason it takes a buttload of time to start up, during which my computer thinks its crashed...

However, you're using a very strange way to draw a grid, which is actually just a whole lot of horizontal lines and vertical lines crossing each other.
ie, drawing 129 + 89 = 218 lines is a buttload faster than drawing 128 * 88 = 11264 squares - or to get even faster, you could draw 64 + 44 = 108 squares, since drawing operations always take the same time.

Re: Compose (Yet another LÖVE project...Will I ever finish o

Posted: Wed Oct 24, 2012 6:32 am
by Nixola
Yes, I could draw the grid like that (or even with an image and a biiig quad), but the player can (and should, actually) play some notes, if he uses too many of them it'll be slowed down... Anyway, since I don't have to keep the tile IDs (because I can calculate it), I think I'll move to spritebatches
@Timmeh42: Since I used to moan (and I moaned very much) about canvases, I try to support people without them now

Re: Compose (Yet another LÖVE project...Will I ever finish o

Posted: Wed Oct 24, 2012 6:44 am
by timmeh42
hang on, how does note-playing impact how you draw the grid? (juuurrrssst asking here, not intending to sound agro)