Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
A jam submission

The PassageView game page

Small puzzle game. Reverse glyphs to create a passage from * to O.
Submitted by sjpau — 7 hours, 32 minutes before the deadline
Add to collection

Play game

The Passage's itch.io page

Results

CriteriaRankScore*Raw Score
Audio#122.0592.625
Theme interpretation#132.8443.625
Innovation#152.4513.125
Graphics#151.9612.500
Gameplay#152.2552.875
Overall#152.3142.950

Ranked from 8 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Source code repository URL
https://github.com/sjpau/passage

Leave a comment

Log in with itch.io to leave a comment.

Comments

Jam HostSubmitted

Great job! I love the design and the minimal graphics design.

By the way, I got stuck with the second level: there is already a path from * to o at the initial state so there is nothing I could do... Am I missing something?


Developer (1 edit)

Hi! Thing is, you can only follow in the direction of an arrow. On the image there is no path since the arrow above * is > so it point right (should point up to become a valid path), and arrow on the right side is < and points left.I should have added more visual indications to show how exactly the path is traversed but here is the hint for this level: any glyph can be reversed.

Jam HostSubmitted

> On the image there is no path since the arrow above * is > so it point right

Hmm... Can't a player move from * to the above `>` and then `^` on the right side?

Developer

Your logic makes sense and I probably should've written the game's logic like this, but the way it is implemented now * only looks for arrows that have their "back" to it when looking for a path. so if layout is like this: *>> it sees an available pass to the right but *^ cannot go up. I hope it makes sense lol :)

Jam HostSubmitted(+1)

OK so an arrow's tail should face with `*` if a player wants to move from `*` via the arrow. Thanks!

Submitted (1 edit)

I can’t run the Linux build of the game:

./passage: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./passage)
./passage: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by ./passage)

My glibc version is 2.31

wine is unable to run Ebitenginge games for whatever reason, so Windows build is out of the question as well.

Can you upload a web version of the game (compile it for wasm)? I think it’s possible to ask admins to give you that permission.

Thanks.

Developer(+1)

Hi! My bad for not uploading wasm build  originally, I might be able to add it later, but in the meantime you could try running the game like this:

 go run github.com/sjpau/passage@v0.0.1-jam
Submitted(+2)

Nice concept! The puzzles were entertaining, and the difficulty felt very reasonable to me. Oh, and thanks for the special thanks!

Being the text nerd in the room, one thing I'd have loved to see explored in this game would have been animations when you press enter. For example, quickly lower the opacity of all glyphs around the start point, then start raising the opacity of the glyphs that are adjacently "traversable" and show the path being traversed, replacing the glyphs in the path with asterisks, or "eating" glyphs and making them disappear or something similar. I think having the result animated and shown explicitly would make beating the levels more rewarding. Or to visualize failures, too.

Ok, sorry for the tangent, couldn't help myself, haha. Nice to see you participating again, keep it up!

Developer(+1)

Thanks for the feedback! Yes indeed, I totally agree on the fact that there is a lack of reward or indication on level completion and I plan to implement something like this once the jam ends.

Submitted(+2)

The game mechanism is really clever. The graphic is minimum but looks very clean. Great job!

Developer

Thanks!