Nappi

[Released] häx_processer

Recommended Posts

Itch.io page:

https://ktomi.itch.io/hax-processer

 

 

 

As a häx processer, your task is to process häxes using our state-of-the-art, in-house Häx Processor. It is a tough job, but it needs to be done. Your mother was one of the best in the business. Make her proud. Welcome to the family.

 

Concept

 

Move, rotate and zoom one or more geometric shapes to reveal häxes. The häxes can be hexagons, hexagrams, and various symbols of the hex, such as pentagrams. You need to overlap the shapes with the target pattern to proceed to the next häx. You manipulate the shapes using text commands.

 

In the early stages, you solve the puzzles using basic operations on individual objects, but things get more complicated later on. For example, you may have to rotate the shapes in 3D or deal with interconnected and  mirrored shapes that respond to the same commands.

 

Style

 

My original inspiration for the game was the Enhance scene from Blade Runner.

 

 

My goal is to make eyeballing the correct command and seeing the shapes align feel as satisfying as possible. I don't want to copy the visual style of the Blade Runner scene, because I know I cannot nail it within this time frame, but I will definitely try to produce some version the cool step-wise chak-chak-chak transition from the start position to the final one.

 

Here is how I imagine the user interface at this stage:

 

5b1a1a256780a_TitleScreen.thumb.png.ea0ec2611441f8b79ab242d90ca4331e.png

 

5b1a1a3a8bc1f_Levelstep1.thumb.png.ccc1e27a2c0c6a147fc965f56989ddd0.png

 

5b1a1a4997fec_Levelstep2.thumb.png.21945c169acd53641dd132d1b60d108f.png

 

Challenges

 

I chose a relatively simple concept for the game as I'm not sure how much time I can dedicate to coding this time. I don't expect major problems with the basic functionality, except maybe in the proper recognition of correct solutions, but I know to expect the unexpected. I think the major obstacle time-wise will be making interesting levels because purely procedurally generated ones will get boring very soon.

 

Thoughts

 

This will be my third Wizard Jam game and third game overall, and I'm super excited to start working on it as well as seeing what everyone else comes up with. :tup:

Share this post


Link to post
Share on other sites

Oooh, another elegant-looking (and fun, I'm sure) game by Nappi. Looking forward to playing this! :tup:

Share this post


Link to post
Share on other sites

This looks excellent, Nappi! I love how smooth and sleek the UI mockups are, and the premise sounds like it'll make a really interesting puzzle game!

Share this post


Link to post
Share on other sites

Looking forward to this as well, I like your aesthetics very much! :tup:

Share this post


Link to post
Share on other sites

I really love the aesthetic.  Super crisp.

 

As far as gameplay, there's only a couple images to go on, so maybe I'm not 100% grokking it, but I feel like playing that game will be an exercise in frustration for me.    This seems like the kind of games people with good art skill and visual acuity play and are like "oh, this obviously goes here and here" and I'm like "How the heck can you tell???".   Basically, like the Witness's color levels.  Which, all things considered is a pretty good thing to be compared to.

 

Which is not to say I don't think it'll be cool.  Just that I may watch someone else play it, because I don't think I'll be very good.

Share this post


Link to post
Share on other sites

Thank you all! I will try to live up to the mockup. :)

 

Koholos: I definitely get that the gameplay might not be for everyone. Just to clarify, my plan is not to limit the number of moves or the time to complete each puzzle, i.e. you can align and realign the shapes as long as you want*. My goal is to come up with puzzles where the solutions are not very obvious so that once you finally get it right, you feel satisfied. However, puzzle design is hard, so we will see.

 

* Though I admit that because I deliberately chose a very obnoxious user interface as the key component for the game, people might not want to experiment for very long. This is why I plan to keep the number of moving parts at a manageable level.

Share this post


Link to post
Share on other sites

Didn't have time to work on this as much as I would have wanted over the weekend weekend, but I managed to get the polygon drawing and the command interface done.5b1d77426081d_hx_processer_test_001.gif.2b6675b8743382b38524c3374958cf95.gif 

I spent quite a lot of time on really important stuff like as-you-type syntax highlighting. :)

 

After I have implemented the text log, I can focus on the actual gameplay.

Share this post


Link to post
Share on other sites

In addition to everything else, I think this could make for a good program to teach coding. You could go that way if the user had the option of queueing all the moves then executing them all at once.

Share this post


Link to post
Share on other sites
5 hours ago, Nappi said:

After I have implemented the text log, I can focus on the actual gameplay.

 

If the commands you're parsing for are variables, you could add "hardcore mode" and use the vernacular in Blade Runner (e.g. "Move In", "Track Right", etc.). Ultra hardcore mode would require the use of the "stop" command to stop an action. And somehow if voice activation could work, that would be incredible :D

 

Related: I forgot how satisfying the bleeps and boops of the Esper analysis computer thing are.

Share this post


Link to post
Share on other sites
5 hours ago, Godzilla Blitz said:

In addition to everything else, I think this could make for a good program to teach coding. You could go that way if the user had the option of queueing all the moves then executing them all at once.

 

You are right. I'll see if I have time to extend this beyond the single line execution within the period of the Jam.

 

5 hours ago, brendonsmall said:

 

If the commands you're parsing for are variables, you could add "hardcore mode" and use the vernacular in Blade Runner (e.g. "Move In", "Track Right", etc.). Ultra hardcore mode would require the use of the "stop" command to stop an action. And somehow if voice activation could work, that would be incredible :D

 

Related: I forgot how satisfying the bleeps and boops of the Esper analysis computer thing are.

 

I was already thinking of including continuous versions of the transforms (e.g. object keeps rotating in 5 degree intervals) where you have to manually stop the movement. This could be used as a quality of live thing, as a challenge (only continuous versions of the commands available on certain levels) or as a requirement to complete the level (e.g. the target shape rotates and you have to match the movement).

 

You bet that I have already looked into voice activation! It seems that Unity has a voice recognition system that works in Windows 10. I hope I will have time to play around with it. The basic implementation seems relatively straightforward, but I bet that getting it to work somewhat reliably will take a lot more effort.

 

Regarding the Esper soundscape: Audio feedback is so important. Entering commands and watching them being executed feels pretty boring without sounds. I added some placeholder clanks for the movement, and it feels better, but I still need to do a lot of work in terms of audio and visual feedback.

Share this post


Link to post
Share on other sites
8 hours ago, Nappi said:

The basic implementation seems relatively straightforward, but I bet that getting it to work somewhat reliably will take a lot more effort.

 

Of course the goofy workaround to this that will still be fun: Just detect any noise of a certain threshold and consider that a command a la Famicon controllers. :D

Share this post


Link to post
Share on other sites

Cool gameplay concept! Will you be limiting the commands to fairly large increments - only using integers with the move command, for example?

 

I love the rough movement in that last gif. It already goes a long way in evoking that low-tech aesthetic you're going for. Now just slap a CRT shader over the whole thing and you're good :)

 

18 hours ago, Godzilla Blitz said:

You could go that way if the user had the option of queueing all the moves then executing them all at once.

 

This is an excellent idea, though it's understandable if it's beyond the scope of the project right now.

Share this post


Link to post
Share on other sites
23 hours ago, pdotjpg said:

Cool gameplay concept! Will you be limiting the commands to fairly large increments - only using integers with the move command, for example?

 

My current plan is not to limit the increments but to have a sizable margin in the solution recognition system so that players don't have to endlessly tweak the position. I will see what works the best once I'm a bit further.

 

Did not make much visible progress today, as I focused on clarifying my code. I finished the terminal system, though, and added some placeholder audio. I will need to look for more interesting sound effects eventually.

 

I quite like how 3D rotation looks in minimalistic 2D (the "flip" command). It is pretty disorienting too.

Share this post


Link to post
Share on other sites

Thanks!

 

I have had even less time to work on the game than I anticipated but I managed to make some real progress today:

5b268c13b5209_hx_processer_test_003.gif.549a81e55f29b8a995aa0e0f7b5a198c.gif

 

Yet to be implemented:

- Title screen

- Polygon naming and movement unit indicator

- More levels

- Different moveset for each level

- Movement constraints

- Proper sound effects

- End of level animation

- Up to select text

- Continuous movement/rotation

- And so on...

Share this post


Link to post
Share on other sites

Haha!

 

I'm experiencing pretty serious Jam fatigue and haven't been able to progress the game much after work. Fortunately, most of the basic elements are there already, and I think I will find the motivation again during the long weekend. 

 

Anyway, here is the the basic gameplay loop with title screen and some of the audio (which may not be final):

 

Share this post


Link to post
Share on other sites

häx_processer is now released!

 

https://ktomi.itch.io/hax-processer

 

 

I was not able to make as much progress as I would have liked to, because I was pretty burned out with work stuff. Nevertheless, the game is functional and there are 10+ levels.

Share this post


Link to post
Share on other sites

All haxes processed! Some of these were quite tricky, but I enjoyed the game a lot!

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now