|
Quarry
|
 |
« on: May 06, 2012, 06:14:15 AM » |
|
|
|
|
|
« Last Edit: May 12, 2012, 10:13:19 AM by Quarry »
|
Logged
|
|
|
|
|
JasonPickering
|
 |
« Reply #1 on: May 06, 2012, 07:28:52 AM » |
|
I love this. I am so glad you went with the grey scale Color Palette too. I hope this is a smaller Roguelike though. I can never play the ones that have like 100 Floors. I never have the time to finish them. when can we see shots of a dungeon? I would love to see how the tileset works out.
|
|
|
|
|
Logged
|
|
|
|
|
Quarry
|
 |
« Reply #2 on: May 06, 2012, 07:58:05 AM » |
|
I'm not sure how it'll look like but I have an old (yesterday) mockup  also I'm aiming for around 20 floors, you try to escape the dungeon you were prisoned in (total dungeon-roguelike twist going on here)
|
|
|
|
|
Logged
|
|
|
|
|
JasonPickering
|
 |
« Reply #3 on: May 06, 2012, 08:17:32 AM » |
|
looks cool, but not sure how I feel about the grid lines though. I would maybe set their alpha to like .25 so its there, but not as drastic.
|
|
|
|
|
Logged
|
|
|
|
|
Squid Party
|
 |
« Reply #4 on: May 06, 2012, 08:26:05 AM » |
|
awww man this looks really awesome 
|
|
|
|
|
Logged
|
[img]http://i1170.photobucket.com/albums/r527/Daniel_Sharman/areyouonyourperiod.gif[img/]
|
|
|
|
Eigen
|
 |
« Reply #5 on: May 06, 2012, 09:17:41 AM » |
|
Sweet! I like it, but as JasonPickering said, the tile outlines are too strong which makes it quite difficult to look at. Other than that you're good to go. So, I expect to play it this time next month. Get cracking! 
|
|
|
|
|
Logged
|
|
|
|
|
Interrupt
|
 |
« Reply #6 on: May 06, 2012, 09:24:19 AM » |
|
I'd try getting rid of the gridlines altogether for non solid blocks, a bit busy with them.
|
|
|
|
|
Logged
|
|
|
|
|
Quarry
|
 |
« Reply #7 on: May 06, 2012, 09:28:47 AM » |
|
I'm in mad arithmatic mode now! ART CAN WAIT sprites.getSubImage(24 + (i == 0 ? 1 : 0), 64, 8 - (i == 0 || i == 12 ? 1 : 0) - (hero.experience <= i * 8 ? hero.experience >= (i - 1) * 8 ? 8 - (i == 0 || i == 12 ? 1 : 0) - hero.experience % 8 : 8 - (i == 0 || i == 12 ? 1 : 0) : 0), 8), 13 + i * 8 + (i == 0 ? 1 : 0), 70);
|
|
|
|
|
Logged
|
|
|
|
|
Quarry
|
 |
« Reply #8 on: May 06, 2012, 10:04:56 AM » |
|
Arithmetics won, I'm doing it the lazy way 
|
|
|
|
« Last Edit: May 06, 2012, 10:12:43 AM by Quarry »
|
Logged
|
|
|
|
|
Quarry
|
 |
« Reply #9 on: May 06, 2012, 10:48:43 AM » |
|
 Tiles!
|
|
|
|
|
Logged
|
|
|
|
|
KomradeJack
|
 |
« Reply #10 on: May 06, 2012, 11:17:01 AM » |
|
Love it. But I am apparently a hooker for tiny Roguelikes.
|
|
|
|
|
Logged
|
|
|
|
|
JasonPickering
|
 |
« Reply #11 on: May 06, 2012, 11:17:37 AM » |
|
so what was that math trying to do? the Experience bar along the bottom?
|
|
|
|
|
Logged
|
|
|
|
|
Quarry
|
 |
« Reply #12 on: May 06, 2012, 11:42:39 AM » |
|
The filler (sprite inside the bar) was 8x8 and I had to write something to get it to draw it tile by tile while cropping it It was impossible Love it. But I am apparently a hooker for tiny Roguelikes.
Yays! 
|
|
|
|
|
Logged
|
|
|
|
|
JasonPickering
|
 |
« Reply #13 on: May 06, 2012, 11:47:51 AM » |
|
one thing I do in my game for the bar is scale its Yvalue.
EX. Yscale = 45 * Current Experience/Experience needed for next level.
45 is the scale needed to fill the entire bar. could you do something like that. it would require a solid color bar though.
EDIT: why dont you fill the entire bar with that grey and white Tile then stretch a blank white over it from the right side. as the experience goes up you can shrink the white bar. it will look like the bar is filling, but actually the empty area will be shrinking.
|
|
|
|
|
Logged
|
|
|
|
|
Quarry
|
 |
« Reply #14 on: May 06, 2012, 11:57:05 AM » |
|
What I have now is a wide single sprite that's cut off with the formula you posted (which is the only formula to do this)
|
|
|
|
|
Logged
|
|
|
|
|