Welcome, Guest. Please login or register.

Login with username, password and session length

 
Advanced search

1411599 Posts in 69387 Topics- by 58445 Members - Latest Member: gravitygat

May 08, 2024, 09:44:35 AM

Need hosting? Check out Digital Ocean
(more details in this thread)
TIGSource ForumsCommunityDevLogsZig Zag - very hard reaction-based game
Pages: 1 2 [3]
Print
Author Topic: Zig Zag - very hard reaction-based game  (Read 13135 times)
cousin_it
Level 0
***


View Profile
« Reply #40 on: August 11, 2016, 01:43:09 PM »

Yet another update to the game over screen, toning it down even more.

« Last Edit: August 11, 2016, 01:59:49 PM by cousin_it » Logged

cousin_it
Level 0
***


View Profile
« Reply #41 on: August 12, 2016, 10:17:42 PM »

Yesterday morning I looked at the palettes again and decided that they all suck. So I wrote another quick tool to help me pick colors manually:



Just updated the game with many resulting palette changes, more still to come. Also I've removed the glow effect completely, because it was making my eyes hurt.
Logged

cousin_it
Level 0
***


View Profile
« Reply #42 on: August 13, 2016, 01:29:46 PM »

I've put up an imgur album of all the current palettes. With that and the recent UI changes, I will probably finish the project soon.
« Last Edit: August 13, 2016, 11:18:12 PM by cousin_it » Logged

cousin_it
Level 0
***


View Profile
« Reply #43 on: August 13, 2016, 11:32:25 PM »

I just reached 01:49 in an unusually good run. As far as I know, that's furthest anyone ever got in the game. Maybe someday someone will prove me wrong!
« Last Edit: August 14, 2016, 03:06:10 AM by cousin_it » Logged

cousin_it
Level 0
***


View Profile
« Reply #44 on: August 15, 2016, 11:42:43 AM »

My first stab at creating a mobile version of Zig Zag: APK for ARM, APK for x86. It's obviously not final, especially the splash screen doesn't fit the mobile UI. But it feels good to have sorted out Cordova and Crosswalk, touch event handling, portrait/landscape changes, etc.
« Last Edit: August 15, 2016, 11:54:56 AM by cousin_it » Logged

Ontaelio
TIGBaby
*


View Profile
« Reply #45 on: August 16, 2016, 04:26:17 AM »

Previuos color themes were way better. New ones seem rather identical, less creative; but more importantly, it is harder to see the path in them.
(that said, the game rocks)
Logged
cousin_it
Level 0
***


View Profile
« Reply #46 on: August 16, 2016, 01:57:44 PM »

Thank you!

Colors are the trickiest thing about this game by far. This morning I discovered that picking colors on my laptop is a bad idea, because the display has a blue tint and also the viewing angle response is crazy. I tried some other desktop machines and mobile devices, the color responses are a bit different, but my laptop is by far the worst. So I manually tweaked all palettes to look good on my desktop PC (whose color response is a bit closer to average), and just uploaded another update that changes all the colors. Maybe tomorrow I'll be unhappy with that as well, and change the colors again. Then, once I'm happy with them, I'll need to make and upload another full set of screenshots/icons/etc. It's an unbelievable amount of hassle.
« Last Edit: August 16, 2016, 03:07:42 PM by cousin_it » Logged

cousin_it
Level 0
***


View Profile
« Reply #47 on: August 17, 2016, 02:54:17 PM »

Colors colors colors...

I just uploaded another color update. And I'm still not too happy with it.
Logged

cousin_it
Level 0
***


View Profile
« Reply #48 on: August 20, 2016, 02:03:02 AM »

I've decided that the colors are officially done, here's an album.

As a programmer, learning to pick colors was very eye-opening. Now I know just how much work goes into games with good colors, like Snakebird (which is the gold standard for me). And I have a rough idea of the workflow for my next game if it ever happens: do everything in grayscale silhouette, then pick rough colors on my laptop, then refine them on many different displays.

The next task on Zig Zag is polishing the mobile version. I can't seem to come up with a good menu, feeling a little stuck now.
« Last Edit: August 20, 2016, 03:44:48 AM by cousin_it » Logged

cousin_it
Level 0
***


View Profile
« Reply #49 on: August 21, 2016, 02:08:45 PM »

I've added raindrops!



How did I live without them?
Logged

cousin_it
Level 0
***


View Profile
« Reply #50 on: August 22, 2016, 12:48:14 AM »

I just got two minutes for the first time!



It's incredible, it seems like my game actually has more of a teaching effect than Super Hexagon. I remember how my record was 42 seconds and that felt crazy high.
Logged

cousin_it
Level 0
***


View Profile
« Reply #51 on: August 22, 2016, 12:45:09 PM »

Today I experimented with playing a random note whenever the player presses a key. Wth timbre.js or soundfont-player that takes only a couple lines of code. The notes were taken from the G# pentatonic scale, the same key as the song, so it sounded pretty good. When playing at low speeds, it added a nice feeling of timing, like playing a cool solo over the song. But at high speeds it felt so distracting that the game became almost unplayable, at least to someone with ears like mine. I've scrapped the idea for now. That's a shame, it sounded really cool.
« Last Edit: August 22, 2016, 01:20:05 PM by cousin_it » Logged

cousin_it
Level 0
***


View Profile
« Reply #52 on: August 24, 2016, 01:28:24 AM »

Tuning the raindrops to look nicer:



Also showing off the speed at which I usually play :-)
Logged

cousin_it
Level 0
***


View Profile
« Reply #53 on: August 24, 2016, 03:11:47 PM »

Made the raindrops even more subdued, maybe this is the version I'll keep.

Logged

cousin_it
Level 0
***


View Profile
« Reply #54 on: August 25, 2016, 04:13:18 PM »

Tonight I spent several hours on audio:

1) Convert everything to aac wrapped in mp4.

2) Embed the smaller sounds in JS as base64-encoded mp4.

3) Use Web Audio API if it's available, to reduce playback lag, otherwise fall back to <audio>.

4) Check browser compatibility of various mime types for audio.

5) Play with adding various keypress sounds, find out that they upset the balance of attention in the game, scrap the whole idea.

The user-visible effect is zero, but I'm happier with the state of the game, and I've learned a few things.
Logged

cousin_it
Level 0
***


View Profile
« Reply #55 on: August 26, 2016, 01:28:38 AM »

New title screen:



Also I've uploaded a new mobile version: APK for ARM, APK for x86.
« Last Edit: August 26, 2016, 07:54:24 AM by cousin_it » Logged

prismsheep
TIGBaby
*


View Profile
« Reply #56 on: August 31, 2016, 06:26:27 AM »

Hi is there a way to implement a mute button?

Great game btw
Logged
cousin_it
Level 0
***


View Profile
« Reply #57 on: September 01, 2016, 07:57:47 AM »

Hi! Thanks for the kind words. I think adding a mute button would be more trouble than it's worth. Sorry :-/
Logged

cousin_it
Level 0
***


View Profile
« Reply #58 on: September 01, 2016, 08:00:19 AM »

This game is now released on Google Play for free:

https://play.google.com/store/apps/details?id=com.vladimirslepnev.zigzag

The web version will also stay online for the foreseeable future:

https://vladimirslepnev.itch.io/zigzag

I'm bumping the game completion to 100%, finishing this project and moving on to the next one. Many thanks to all those who gave feedback, both here and elsewhere!
« Last Edit: September 01, 2016, 02:07:15 PM by cousin_it » Logged

cousin_it
Level 0
***


View Profile
« Reply #59 on: September 02, 2016, 01:47:33 AM »

The postmortem is here: https://www.reddit.com/r/gamedev/comments/50s9n3/postmortem_for_my_game/
Logged

Pages: 1 2 [3]
Print
Jump to:  

Theme orange-lt created by panic