Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

LyricSeraph

10
Posts
6
Followers
13
Following
A member registered Oct 16, 2021 · View creator page →

Creator of

Recent community posts

(1 edit)

把see换成view是不是好一点,考虑到vision(视野)、video(视频)、visible(可见的)都是vi开头的,在词根上都是来源拉丁语。

所以同样要表达看这个意思用view应该更准确些。

Encountered the same error as others on Chrome. But the downloaded files works.

Thank you for your appreciation.

In fact, it was A=B who encouraged me to develop this game. I also received encouragement from Artless after releasing this DEMO. I even wrote something to thank Artless Games in my game (the Steam verison).

The copy problem should be related to browser permissions. The bug behaves differently across environments. However, since I can no longer build an HTML release due to the use of desktop-only functions, I won't be fixing this bug anymore. But the final release of the desktop version will work as expected.

The "[SampleCode]" button is on the top-right corner of the code editor in tutorial levels.

Appending ">>." to block 0 with sample code can achieve code length 16.

Thanks for playing.

"Master length"s are actually not the shortest. 

Hard core players like you may want to chanllenge the shortest length. But they will challenge theirselves even after implementing a better solution than the author.

But non hard core players may suffer from poor experience from strict challenges. So I set those challenges only by adding flexible numbers (from 6 to 10 as I remembered) to my solution except the tutorial levels.

If you mean the "pages" on the right side, That's used for the '!' subprogress instruction. But yes, I do think the current subprocess implementation is not good enough. Maybe I will change to other designs, or even remove it.

------

Section 5 requires the use of nested loopings. People new to Brainfuck always stuck at calculating multiplying. Multiply is simply performing additions many times. But adding in Brainfuck will simply destroy the origin number. So what you should do is to keep a copy of it.

------

Section 7 reqiuires the use of looping as condition statements. It may be a little more difficult than the problems before. But once you get that point, you will have ideas to solve them.

------

Finally, thanks for playing.

There's a zero among the input numbers in "Plus 2" test case 7, which confusing the program as an EOF.

I agree with you if you are writing an command line interpretor for brainfuck. But this is a game.

Maybe I am taking the game "Human Resource Machine" into consideration. That's weird when I produced an output as expected but the game did not finished.

If I flip the order of operations in @Sebungifto's code, the execution will fail.

+[,.]

The execution should stop when there is a read operation but no more input exists.  

There should be no any judgements to the execution position of the source code. And zero should not be inputed as a fallback.