Copyright (C) 2017 Wang Renxin. All rights reserved.
This is a code editor for MY-BASIC powered by the Unity3D engine. It's implemented with the standard uGUI system from Unity3D 5.x.
It supports code manipulating, interpreter interacting, and future customization. I used a MY-BASIC DLL for Windows, and Bundle for macOS as demonstration. You can build plugin for other platforms as you wish, or use other interpreters. See the link for more information about MY-BASIC.
Note this repository doesn't contain any extended libraries of MY-BASIC or any other playable stuffs. It's just a small reusable code editor/shell.
You may configure keywords, reserved words, symbols, opcodes, etc. as well as in which colors to represent them.
The editor also allows to configure how many lines of code is expected to be represented, assuming taking full height of the screen.
It's also able to add new function words for coloring in code.
MyCodeEditor editor = ...
...
editor.AddFunction("Your function name");
Execute the bin/my_basic_code_editor_unity.exe
to run the editor.
- Click a line to input or edit code
- Select a file slot to save and load
- Select some lines, then make insertion and deletion by clicking the buttons
- Click the
RUN
button to run the code top down - Click the
STEP
button to run the code step by step - Click the
PAUSE
button to pause a top down execution - Click the
STOP
button to terminate an execution
Import the pkg/my_basic_code_editor_unity.unitypackage
to your Unity3D project to use this library.
Have fun :)