fuguelike
|
|
« on: November 05, 2013, 08:08:50 AM » |
|
|
|
« Last Edit: June 14, 2014, 01:57:29 PM by fuguelike »
|
Logged
|
|
|
|
Superb Joe
|
|
« Reply #1 on: November 05, 2013, 12:31:41 PM » |
|
in holland, the common idiom for heavy rain is "it's raining steel pipes". that would be some seriously hard rain. this, however, is a video game that is actually nothing to do with holland or rain. 3 out of 10
|
|
|
Logged
|
|
|
|
DanDecarlo
|
|
« Reply #2 on: November 05, 2013, 01:25:38 PM » |
|
The graphics and effects look nice, can't say nothing more just from screenshots though.
|
|
|
Logged
|
|
|
|
fuguelike
|
|
« Reply #3 on: November 21, 2013, 06:41:27 PM » |
|
Working on a playable alpha and video... here's a quick gif showing a bit of the gameplay in the meantime.
|
|
|
Logged
|
|
|
|
fuguelike
|
|
« Reply #4 on: December 04, 2013, 07:18:01 PM » |
|
Just released an alpha version for Mac and Windows. You can grab it here: http://hardraingame.com.
|
|
|
Logged
|
|
|
|
ANtY
|
|
« Reply #5 on: December 04, 2013, 07:22:01 PM » |
|
in holland, the common idiom for heavy rain is "it's raining steel pipes". that would be some seriously hard rain. this, however, is a video game that is actually nothing to do with holland or rain. 3 out of 10
too many "<something> rain" games recently
|
|
|
Logged
|
|
|
|
fuguelike
|
|
« Reply #6 on: December 04, 2013, 07:35:45 PM » |
|
What else is there? I only know of Heavy Rain, which annoyingly comes up on google when you search for 'Hard Rain game'
|
|
|
Logged
|
|
|
|
ANtY
|
|
« Reply #7 on: December 05, 2013, 04:38:27 AM » |
|
Thank God For The Rain, Project Rain World, Risk of Rain
anyways, the point stands that rain has nothing to do with your game, despite sounding cool
|
|
|
Logged
|
|
|
|
Chuckek
Level 0
|
|
« Reply #8 on: December 05, 2013, 05:08:03 AM » |
|
Played alpha a little, didn't really know what's the diffrence between field types so I just spammed some propellers and destroyers in gathering spots. It looks really good, and the sound balls make when popping is sooooo satysfying :D Game crashed every time I tried to replay level or when I chose that world/stage 0 in the menu, though you're probably aware of all that (windows 8 ). Still, good luck with that, it's really nice now and I will probably play it some more when I will got time.
|
|
|
Logged
|
|
|
|
fuguelike
|
|
« Reply #9 on: December 05, 2013, 10:25:10 AM » |
|
Thank God For The Rain, Project Rain World, Risk of Rain
anyways, the point stands that rain has nothing to do with your game, despite sounding cool
The idea for the name came from the balls or 'drops' falling from the sky, which reminded me of rain. Or really more like hail (hard rain). It's true though the name is mostly cuz I like the way it sounds. Played alpha a little, didn't really know what's the diffrence between field types so I just spammed some propellers and destroyers in gathering spots. It looks really good, and the sound balls make when popping is sooooo satysfying :D Game crashed every time I tried to replay level or when I chose that world/stage 0 in the menu, though you're probably aware of all that (windows 8 ). Still, good luck with that, it's really nice now and I will probably play it some more when I will got time.
Thanks for the feedback. Glad you like the popping sounds - I spent a really long time tweaking them to get them like that so it's good to hear. Sorry about the crashes - I actually didn't know about them but I haven't tested enough on windows yet - I'm tracking them down and will have a new build up as soon as I can. Yeah the zone 0 is kind of a tutorial that introduces a lot of the things you can build so it's pretty important to have that working.
|
|
|
Logged
|
|
|
|
|
fuguelike
|
|
« Reply #11 on: February 02, 2014, 09:11:44 PM » |
|
So I've been MIA for a while but development is still progressing. Closing in on a second alpha release. A lot of what I've been working on is further revisions to the way the game is introduced to the player. Less of a strict tutorial and more of a gradual introduction of elements through gameplay. So I'd be curious to get some feedback on it once I get it posted. Just finished adding a bit of screen shake when a nuclear type drop explodes:
|
|
|
Logged
|
|
|
|
|
fuguelike
|
|
« Reply #13 on: February 19, 2014, 10:11:28 AM » |
|
There's a new alpha version up for both PC and Mac here: http://hardraingame.comMostly what is new is the levels, which are shorter and more limited but also more varied in the beginning, introducing the concepts of the game one by one.
|
|
|
Logged
|
|
|
|
fuguelike
|
|
« Reply #14 on: March 13, 2014, 06:39:34 AM » |
|
Realized I needed to include something suggestive of the kind of game in the logo so I started to go back and look at some of my initial designs: - - -
|
|
|
Logged
|
|
|
|
fuguelike
|
|
« Reply #15 on: March 14, 2014, 11:52:12 AM » |
|
Settling on something like this for the box art: Not sure how I feel about the drop shadow.
|
|
|
Logged
|
|
|
|
fuguelike
|
|
« Reply #16 on: June 19, 2014, 07:14:03 AM » |
|
Went through some revisions and settled on this cover: Oh yeah and Hard Rain is also Kickstarting: http://kck.st/1l1Mcf1
|
|
|
Logged
|
|
|
|
fuguelike
|
|
« Reply #17 on: June 22, 2014, 02:11:50 PM » |
|
Made some adjustments to the way drops reflect the effects of the field components in their color. Before I used this formula: GLubyte redVal = (GLubyte)( 90+(1.0f-hpPercent)*165 ); GLubyte grnVal = (GLubyte)( 20+damageMult*80 ); GLubyte bluVal = (GLubyte)( 90+(hpPercent)*165 );
Each color channel is on a scale of 0-255. So this means as the drop is damaged (hpPercent goes from 1 to 0) the red value increases from 90 to full and the blue channel drops to 90. The green channel is simply linked to the damage multiplier effect of the compromiser component. I arrived at this after a lot of tweaking, and it was pretty good at reflecting the state of of drop, but I was still getting a lot of washed out pastel colors, which was not ideal. So I made the following adjustment: GLubyte redVal = (GLubyte)( 70+(1.0f-hpPercent)*185 ); GLubyte grnVal = (GLubyte)( -50+damageMult*100 ); GLubyte bluVal = (GLubyte)( 106+(hpPercent-damageMult/5)*165 );
The values are tweaked a bit here, but the main difference is that the blue channel is also linked to the multiplier effect, so it decreases by just a bit ( /5) as the multiplier increases. This seems sort of trivial but it has a huge impact on the appearance of the game since all 3 channels never all have high values simultaneously, leading to washed out colors. Instead I'm getting a lot of of neon greens, yellows, and oranges that weren't there before.
|
|
|
Logged
|
|
|
|
Matt Rohr
|
|
« Reply #18 on: June 22, 2014, 04:03:06 PM » |
|
I am worried that this may be too visually "noisy."
I'll check out the version you posted to double check but from a glance it is just messy.
|
|
|
Logged
|
|
|
|
fuguelike
|
|
« Reply #19 on: June 23, 2014, 07:08:34 AM » |
|
I think it improves the readability of the game state somewhat.
But yeah if you have any feedback from trying it out let me know.
|
|
|
Logged
|
|
|
|
|