├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── requirements.txt ├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── tkinter.iml └── vcs.xml ├── CompilerApp ├── ASCII.py ├── __pycache__ │ ├── ASCII.cpython-310.pyc │ ├── brainfuck_compiler.cpython-310.pyc │ ├── brainfuck_compiler.cpython-38.pyc │ ├── config.cpython-310.pyc │ ├── functions.cpython-310.pyc │ ├── functions.cpython-38.pyc │ ├── interface.cpython-310.pyc │ ├── interface.cpython-38.pyc │ └── translator.cpython-310.pyc ├── brainfuck_compiler.py ├── config.py ├── functions.py ├── interface.py ├── main.py ├── premade │ ├── HelloWorld.bf │ ├── Sum.bf │ └── YourName.bf ├── resources │ ├── ASCIITable.png │ ├── data.pkl │ ├── lovethefrogs.ico │ ├── lovethefrogs.png │ ├── separator.png │ └── system.txt └── translator.py ├── LICENSE ├── README.md └── __pycache__ └── brainfuck_compiler.cpython-38.pyc /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/requirements.txt: -------------------------------------------------------------------------------- 1 | pygments 2 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/tkinter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/.idea/tkinter.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CompilerApp/ASCII.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/ASCII.py -------------------------------------------------------------------------------- /CompilerApp/__pycache__/ASCII.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/__pycache__/ASCII.cpython-310.pyc -------------------------------------------------------------------------------- /CompilerApp/__pycache__/brainfuck_compiler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/__pycache__/brainfuck_compiler.cpython-310.pyc -------------------------------------------------------------------------------- /CompilerApp/__pycache__/brainfuck_compiler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/__pycache__/brainfuck_compiler.cpython-38.pyc -------------------------------------------------------------------------------- /CompilerApp/__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /CompilerApp/__pycache__/functions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/__pycache__/functions.cpython-310.pyc -------------------------------------------------------------------------------- /CompilerApp/__pycache__/functions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/__pycache__/functions.cpython-38.pyc -------------------------------------------------------------------------------- /CompilerApp/__pycache__/interface.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/__pycache__/interface.cpython-310.pyc -------------------------------------------------------------------------------- /CompilerApp/__pycache__/interface.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/__pycache__/interface.cpython-38.pyc -------------------------------------------------------------------------------- /CompilerApp/__pycache__/translator.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/__pycache__/translator.cpython-310.pyc -------------------------------------------------------------------------------- /CompilerApp/brainfuck_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/brainfuck_compiler.py -------------------------------------------------------------------------------- /CompilerApp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/config.py -------------------------------------------------------------------------------- /CompilerApp/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/functions.py -------------------------------------------------------------------------------- /CompilerApp/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/interface.py -------------------------------------------------------------------------------- /CompilerApp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/main.py -------------------------------------------------------------------------------- /CompilerApp/premade/HelloWorld.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/premade/HelloWorld.bf -------------------------------------------------------------------------------- /CompilerApp/premade/Sum.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/premade/Sum.bf -------------------------------------------------------------------------------- /CompilerApp/premade/YourName.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/premade/YourName.bf -------------------------------------------------------------------------------- /CompilerApp/resources/ASCIITable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/resources/ASCIITable.png -------------------------------------------------------------------------------- /CompilerApp/resources/data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/resources/data.pkl -------------------------------------------------------------------------------- /CompilerApp/resources/lovethefrogs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/resources/lovethefrogs.ico -------------------------------------------------------------------------------- /CompilerApp/resources/lovethefrogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/resources/lovethefrogs.png -------------------------------------------------------------------------------- /CompilerApp/resources/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/resources/separator.png -------------------------------------------------------------------------------- /CompilerApp/resources/system.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CompilerApp/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/CompilerApp/translator.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/brainfuck_compiler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovetheFrogs/BrainIDE/HEAD/__pycache__/brainfuck_compiler.cpython-38.pyc --------------------------------------------------------------------------------