Show HN: Video Game in a Font
coderelay.io
Show HN: Video Game in a Font
1–10 of 79 posts
Re: Show HN: Video Game in a Font
#2I also released the code for the game engine. Available here: https://github.com/mmulet/code-relay/tree/main/markdown/Tuto...
Re: Show HN: Video Game in a Font
#3(And you are making the rounds on gaming sites [0])
[0] https://www.rockpapershotgun.com/fontemon-is-a-pokemon-parod...
Re: Show HN: Video Game in a Font
#4Wow! That's all I can muster to say. I always knew fonts and font rendering was tricky business.... (And you are making the rounds on gaming sites [0]) [0] https://www.rockpapershotgun.com/fontemon-is-a-pokemon-parod...
Re: Show HN: Video Game in a Font
#5Re: Show HN: Video Game in a Font
#6Amazing! I absolutely love projects like this, where you put a game in somewhere it clearly wasn't meant to be. I made a game you play in your file browser[0] before, and I have another idea planned using windows error dialogs. 0: https://wheybags.com/dungeons_and_directories/
I ran into the same problems you did, any variable leads to an exponentially large state. Other than, "scoping" as you put (or branch merging as I put it), the most space-efficient way I found to keep state was to ask the player to remember a passcode. So the player can keep track of the state, but I don't have to (ie. exponential space savings!). Even when entering the password, you can keep the space small (n*2 rather than 2^n) see [0]. Players used to retro PC games will remember entering passwords found in their instruction manual, so it's an added nostalgic appeal.
Let me know when your error dialogs game is done. If you want to collaborate on some games, hit me up, I too love games where they shouldn't be.
0: https://github.com/mmulet/code-relay/blob/main/markdown/how/...
Re: Show HN: Video Game in a Font
#7Amazing! I absolutely love projects like this, where you put a game in somewhere it clearly wasn't meant to be. I made a game you play in your file browser[0] before, and I have another idea planned using windows error dialogs. 0: https://wheybags.com/dungeons_and_directories/
A kindred spirit! Dungeons and directories is great! I've only played the beginning so far[Edit I've beat the game now and joined the secret club!], but I really laughed at the "You walk through the southern door, and straight into the chasm you saw earlier..." Picture : "you walking straight into the chasm with a smile on your face". I ran into the same problems you did, any variable leads to an exponentially large…
Overall, awesome stuff :D Ever since I read [0], I knew you could do some funky stuff with ligatures, but I never imagined you could take it this far :D
0: https://blog.janestreet.com/commas-in-big-numbers-everywhere...
Re: Show HN: Video Game in a Font
#8Earlier quoted context omitted.
A kindred spirit! Dungeons and directories is great! I've only played the beginning so far[Edit I've beat the game now and joined the secret club!], but I really laughed at the "You walk through the southern door, and straight into the chasm you saw earlier..." Picture : "you walking straight into the chasm with a smile on your face". I ran into the same problems you did, any variable leads to an exponentially large…
Thanks! Just played through fontemon now (I think, the final battle is unbeatable right? I think I tried every move combo). Had a bit of trouble getting it to work in system programs, but on your site it worked just fine (in libreoffice it would just repeat the intro if I changed the font size, and gimp would shift things up and down depending on the highest pixel in the frame). Overall, awesome stuff :D Ever since I…
You have to keep going past the ending (GameOver) keep typing. You'll revive and beat the boss.
Re: Show HN: Video Game in a Font
#9Earlier quoted context omitted.
A kindred spirit! Dungeons and directories is great! I've only played the beginning so far[Edit I've beat the game now and joined the secret club!], but I really laughed at the "You walk through the southern door, and straight into the chasm you saw earlier..." Picture : "you walking straight into the chasm with a smile on your face". I ran into the same problems you did, any variable leads to an exponentially large…
Thanks! Just played through fontemon now (I think, the final battle is unbeatable right? I think I tried every move combo). Had a bit of trouble getting it to work in system programs, but on your site it worked just fine (in libreoffice it would just repeat the intro if I changed the font size, and gimp would shift things up and down depending on the highest pixel in the frame). Overall, awesome stuff :D Ever since I…