3DSBFI 3DS: Difference between revisions

From GameBrew
(Created page with "{{Infobox 3DS homebrew | title = 3DSBFI | image = https://dlhb.gamebrew.org/3dshomebrew/3DSBFI.jpg|250px | type = Other Apps | version = v1.1 | licence = Mixed | author = josa...")
 
No edit summary
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Infobox 3DS homebrew
{{Infobox-3DS-Homebrews
| title = 3DSBFI
| title = 3DSBFI
| image = https://dlhb.gamebrew.org/3dshomebrew/3DSBFI.jpg|250px
| image = https://dlhb.gamebrew.org/3dshomebrew/3DSBFI.jpg|250px
| type = Other Apps
| type = Other Apps
| version = v1.1
| version=v1.1
| lastupdated = 2015/07/10
| licence = Mixed
| licence = Mixed
| author = josamilu
| author = josamilu
| website = https://gbatemp.net/threads/release-3dbfi-a-3ds-brainf-ck-interpreter.392430/
| website = https://gbatemp.net/threads/release-3dbfi-a-3ds-brainf-ck-interpreter.392430/
| download = https://dlhb.gamebrew.org/3dshomebrew/3DSBFI.rar
| download = https://dlhb.gamebrew.org/3dshomebrew/3DSBFI.rar
| source = https://dlhb.gamebrew.org/3dshomebrew/3DSBFI.rar
| source = https://github.com/TheJosamilu/3DSBFI
}}
}}
<youtube>gu2lylvdU8k</youtube>
<youtube>gu2lylvdU8k</youtube>


<div style="text-align: center">
Introduction


'''<span style="text-decoration: underline"><span style="font-size: 22px"><span style="color: #0080ff">3DSBFI - A 3DS Brainf*ck Interpreter
3DSBFI is a simple and minimalistic, WIP but mostly finished Brainf*ck Interpreter for 3DS. Not to be mixed up with FBI xD.
</span></span></span>'''?


</div>
<span style="font-size: 18px"><span style="color: #a64dff">'''<span style="text-decoration: underline">Introduction</span>'''
</span></span>
<span style="color: #000000"><span style="font-size: 15px">3DSBFI is a simple and minimalistic, WIP but mostly finished Brainf*ck Interpreter for 3DS. Not to be mixed up with FBI xD
It includes a menu with a special Brainf*ck editor, output and Tutorial.
It includes a menu with a special Brainf*ck editor, output and Tutorial.
In future versions it will also include input and loading and saving .bf files.
In future versions it will also include input and loading and saving .bf files.
Here a short introduction to Brainf*ck :
Here a short introduction to Brainf*ck :
Brainf*ck is an esoteric programming language, with extreme minimalism.
Brainf*ck is an esoteric programming language, with extreme minimalism.
There are only 8 Operators :</span></span>
* <span style="color: #000000"><span style="font-size: 15px">&quot;+&quot; Which increases the number of the current cell</span></span>
* <span style="color: #000000"><span style="font-size: 15px">&quot;-&quot;�Which decreases the number of the current cell</span></span>
* <span style="color: #000000"><span style="font-size: 15px">&quot;&gt;&quot; Which sets the pointer to the next cell right</span></span>
* <span style="color: #000000"><span style="font-size: 15px">&quot;&lt;&quot; Which sets the pointer to the next cell left</span></span>
* <span style="color: #000000"><span style="font-size: 15px">&quot;.&quot;�Which outputs a char (f.ex. 65 = A)</span></span>
* <span style="color: #000000"><span style="font-size: 15px">&quot;,&quot;�Which reads a char</span></span>
* <span style="color: #000000"><span style="font-size: 15px">&quot;[&quot;�Which opens a loop</span></span>
* <span style="color: #000000"><span style="font-size: 15px">&quot;]&quot;�Which closes a loop</span></span>
<span style="color: #000000"><span style="font-size: 15px">In the current version of 3DSBFI the operator &quot;,&quot; isn't implemented yet, because I am still working on the imput.
Also I added an extra operator :</span></span>
* <span style="color: #000000"><span style="font-size: 15px">&quot;;&quot; Which outputs the value of the current cell as decimal</span></span>
<span style="color: #000000"><span style="font-size: 15px">If you want to read more about Brainf*ck, how it works, and how you can program it look at the article on Wikipedia : https://en.wikipedia.org/wiki/Brainfuck</span></span>
<span style="font-size: 18px"><span style="color: #a64dff">'''<span style="text-decoration: underline">Media</span>'''</span></span>
<div class="ToggleTriggerAnchor bbCodeSpoilerContainer">
<span>Spoiler: <span class="SpoilerTitle">Screenshots</span></span>
<div class="SpoilerTarget bbCodeSpoilerText">
[[File:proxy.php?image=http%3A%2F%2Fjosamilu.de%2Fpic%2Fbfi1.jpg&hash=c05f559a346980dca879c50206d2817e|class=bbCodeImage LbImage|[?IMG]]]
[[File:proxy.php?image=http%3A%2F%2Fjosamilu.de%2Fpic%2Fbfi2.jpg&hash=86d95f8a5d3ee436df86c14f314682b1|class=bbCodeImage LbImage|[?IMG]]]
</div>
</div>
Video is comming SOON.
<span style="color: #a64dff"><span style="font-size: 18px">'''<span style="text-decoration: underline">How it works</span>'''
</span></span>
<span style="font-size: 15px">3DSFBI is easy to use. You can write your entire Brainf*ck programm on your 3DS.
Here are the Controlls :</span>
* <span style="font-size: 15px">A�������:�&quot;+&quot;</span>
* <span style="font-size: 15px">B�������:�&quot;-&quot;</span>
* <span style="font-size: 15px">X�������:�&quot;&gt;&quot;</span>
* <span style="font-size: 15px">Y�������:�&quot;&lt;&quot;</span>
* <span style="font-size: 15px">D_UP����:�&quot;;&quot;</span>
* <span style="font-size: 15px">D_RIGHT�:�&quot;]&quot;</span>
* <span style="font-size: 15px">D_DOWN :�&quot;.&quot;</span>
* <span style="font-size: 15px">D_LEFT��:�&quot;[&quot;</span>
* <span style="font-size: 15px">L�������:�Delete Last Character</span>
* <span style="font-size: 15px">R�������:�Run Code</span>
* <span style="font-size: 15px">START���:�Exit Programm</span>
<span style="text-decoration: underline">'''<span style="font-size: 18px"><span style="color: #a64dff">Example Scripts</span></span>'''</span>
<span style="font-size: 15px">Here are also some example scripts for you to try out :</span>
* <span style="font-size: 15px">A Script, which outputs &quot;Hello World!&quot;</span>
<span style="font-size: 15px"> </span>
<div class="bbCodeBlock bbCodeCode">


<div class="type">
There are only 8 Operators :


Code:
*"+" Which increases the number of the current cell
*"-" Which decreases the number of the current cell
*">" Which sets the pointer to the next cell right
*"<" Which sets the pointer to the next cell left
*"." Which outputs a char (f.ex. 65 = A)
*"," Which reads a char
*"[" Which opens a loop
*"]" Which closes a loop


</div>
In the current version of 3DSBFI the operator "," isn't implemented yet, because I am still working on the imput.
<pre>++++++++[-&gt;++++++++&lt;]&gt;++++++++.---.+++++++..+++.&gt;&gt;++++[-&lt;++++++++&gt;]&lt;.&lt;++++++++.--------.+++.------.--------.&gt;+.�</pre>
Also I added an extra operator :


</div>
*";" Which outputs the value of the current cell as decimal


If you want to read more about Brainf*ck, how it works, and how you can program it look at the article on Wikipedia : [https://en.wikipedia.org/wiki/Brainfuck Brainfuck]


==How it works==


* <span style="font-size: 15px">A Script, which multiplies 4 with 2 and prints the result</span>
3DSFBI is easy to use. You can write your entire Brainf*ck programm on your 3DS.
Here are the Controlls :


<span style="font-size: 15px"> </span>
*A : "+"
*B : "-"
*X : ">"
*Y : "<"
*D_UP : ";"
*D_RIGHT : "]"
*D_DOWN : "."
*D_LEFT : "["
*L : Delete Last Character
*R : Run Code
*START : Exit Programm


<div class="bbCodeBlock bbCodeCode">
==Example Scripts==


<div class="type">
Here are also some example scripts for you to try out :
* A Script, which outputs "Hello World!"


Code:
<code>
++++++++[->++++++++<]>++++++++.---.+++++++..+++.>>++++[-<++++++++>]<.<++++++++.--------.+++.------.--------.>+.
</code>


</div>
* A Script, which multiplies 4 with 2 and prints the result.
<pre>++++[-&gt;++&lt;]&gt;;�</pre>


</div>
<code>
++++[->++<]>;
</code>


More if you want! :)


I would be really happy, if you would contribute to my GitHub, if you want to add something, or find a bug. Just send me a pull request and I will add it.


* <span style="font-size: 15px">More if you want! [[File:styles/default/xenforo/clear.png|class=mceSmilieSprite mceSmilie48|:)]]</span>
I recommend the .3dsx build. I haven't tested the .cia or .3ds builds, but they should work.


'''<span style="text-decoration: underline"><span style="font-size: 18px"><span style="color: #a64dff">Download and Source</span></span></span>'''
The are some bugs, and I am fixing them. Also I take no responsibility for any harm to your 3DS, because of Bugs in the Application or your Brainf*ck script.


I also don't take responsibility for acute brain damage. :D


* <span style="font-size: 15px">Download is attached at the end of the post</span>
Currently i am working on some features, like additional operators and the input operator.
* <span style="font-size: 15px">Github : https://github.com/TheJosamilu/3DSBFI</span>


<span style="font-size: 15px">I would be really happy, if you would contribute to my GitHub, if you want to add something, or find a bug. Just send me a pull request and I will add it.</span>
==Changelog==


<span style="font-size: 15px">I recommend the .3dsx build. I haven't tested the .cia or .3ds builds, but they should work.</span>
'''V1.1 :'''
*Added a menu, with 6 options
*Added a fullscreen editing and running mode
*Fixed the programm's name and added an icon
*Bugfixes


<span style="font-size: 15px">The are some bugs, and I am fixing them. Also I take no responsibility for any harm to your 3DS, because of Bugs in the Application or your Brainf*ck script.
'''V1.0 :'''
</span>
*Initial Release
I also don't take responsibility for acute brain damage. [[File:styles/default/xenforo/clear.png|class=mceSmilieSprite mceSmilie55|:D]]


<span style="font-size: 15px">Currently i am working on some features, like additional operators and the input operator.
==Credits==
</span>
'''<span style="text-decoration: underline"><span style="font-size: 18px"><span style="color: #a64dff">Changelog</span></span></span>'''


*3DSBFI written by josamilu
*All the guys , who are working on ctrulib


==Last Words==


<div class="ToggleTriggerAnchor bbCodeSpoilerContainer">
I wrote this programm over the last 2 days, and i can say, It is fun. It is a great feeling to release it to the public and hear the comments. My code isn't good but it may help you if you want to make your own homebrews. 3DS Homebrews have a lot of potential, and I am always happy if i see a new Homebrew released here on the forums.


<span>Spoiler: <span class="SpoilerTitle">Changelog</span></span>
Say me what you think about the programm and the post (I invested a lot of time in it!).
<div class="SpoilerTarget bbCodeSpoilerText">


V1.1 :
Also, if you have written something funny in Brainf*ck, share it with us :D .
 
* Added a menu, with 6 options
* Added a fullscreen editing and running mode
* Fixed the programm's name and added an icon
* Bugfixes
 
V1.0 :
 
* Initial Release
 
 
</div>
 
</div>
<span style="text-decoration: underline">'''<span style="font-size: 18px"><span style="color: #a64dff">
Credits</span></span>'''</span>
 
 
* <span style="font-size: 15px">3DSBFI written by josamilu</span>
* <span style="font-size: 15px">All the guys , who are working on ctrulib</span>
 
<span style="text-decoration: underline">'''<span style="font-size: 18px"><span style="color: #a64dff">Last Words</span></span>'''</span>
 
<span style="font-size: 15px">I wrote this programm over the last 2 days, and i can say, It is fun.�It is a great feeling to release it to the public and hear the comments. My code isn't good but it may help you if you want to make your own homebrews. 3DS Homebrews have a lot of potential, and I am always happy if i see a new Homebrew released here on the forums.
 
Say me what you think about the programm and the post (I invested a lot of time in it!).</span>
 
<span style="font-size: 15px">Also, if you have written something funny in Brainf*ck, share it with us [[File:styles/default/xenforo/clear.png|class=mceSmilieSprite mceSmilie55|:D]] .


I hope you have fun with it,
I hope you have fun with it,


��- Josamilu
- Josamilu
 
 
(Also don't blame me because of my english, I'm not a native speaker xD)</span>
 
<div class="messageTextEndMarker">
 
 
</div></blockquote>

Revision as of 15:34, 11 September 2021

Template:Infobox-3DS-Homebrews

Introduction

3DSBFI is a simple and minimalistic, WIP but mostly finished Brainf*ck Interpreter for 3DS. Not to be mixed up with FBI xD.

It includes a menu with a special Brainf*ck editor, output and Tutorial. In future versions it will also include input and loading and saving .bf files.

Here a short introduction to Brainf*ck :

Brainf*ck is an esoteric programming language, with extreme minimalism.

There are only 8 Operators :

  • "+" Which increases the number of the current cell
  • "-" Which decreases the number of the current cell
  • ">" Which sets the pointer to the next cell right
  • "<" Which sets the pointer to the next cell left
  • "." Which outputs a char (f.ex. 65 = A)
  • "," Which reads a char
  • "[" Which opens a loop
  • "]" Which closes a loop

In the current version of 3DSBFI the operator "," isn't implemented yet, because I am still working on the imput. Also I added an extra operator :

  • ";" Which outputs the value of the current cell as decimal

If you want to read more about Brainf*ck, how it works, and how you can program it look at the article on Wikipedia : Brainfuck

How it works

3DSFBI is easy to use. You can write your entire Brainf*ck programm on your 3DS. Here are the Controlls :

  • A : "+"
  • B : "-"
  • X : ">"
  • Y : "<"
  • D_UP : ";"
  • D_RIGHT : "]"
  • D_DOWN : "."
  • D_LEFT : "["
  • L : Delete Last Character
  • R : Run Code
  • START : Exit Programm

Example Scripts

Here are also some example scripts for you to try out :

  • A Script, which outputs "Hello World!"

++++++++[->++++++++<]>++++++++.---.+++++++..+++.>>++++[-<++++++++>]<.<++++++++.--------.+++.------.--------.>+.

  • A Script, which multiplies 4 with 2 and prints the result.

++++[->++<]>;

More if you want! :)

I would be really happy, if you would contribute to my GitHub, if you want to add something, or find a bug. Just send me a pull request and I will add it.

I recommend the .3dsx build. I haven't tested the .cia or .3ds builds, but they should work.

The are some bugs, and I am fixing them. Also I take no responsibility for any harm to your 3DS, because of Bugs in the Application or your Brainf*ck script.

I also don't take responsibility for acute brain damage. :D

Currently i am working on some features, like additional operators and the input operator.

Changelog

V1.1 :

  • Added a menu, with 6 options
  • Added a fullscreen editing and running mode
  • Fixed the programm's name and added an icon
  • Bugfixes

V1.0 :

  • Initial Release

Credits

  • 3DSBFI written by josamilu
  • All the guys , who are working on ctrulib

Last Words

I wrote this programm over the last 2 days, and i can say, It is fun. It is a great feeling to release it to the public and hear the comments. My code isn't good but it may help you if you want to make your own homebrews. 3DS Homebrews have a lot of potential, and I am always happy if i see a new Homebrew released here on the forums.

Say me what you think about the programm and the post (I invested a lot of time in it!).

Also, if you have written something funny in Brainf*ck, share it with us :D .

I hope you have fun with it,

- Josamilu

Advertising: