Skip to content

A code editor for MY-BASIC, powered by the Unity3D engine. With this you may create your own Code Editor, Debugger and IDE for different scripting languages.

License

Notifications You must be signed in to change notification settings

my-basic/code_editor_unity

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MY-BASIC Code Editor (Unity)

Copyright (C) 2017 Wang Renxin. All rights reserved.

Introduction

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.

Configuration

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");

How to use the editor

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

How to use the library

Import the pkg/my_basic_code_editor_unity.unitypackage to your Unity3D project to use this library.

Have fun :)

About

A code editor for MY-BASIC, powered by the Unity3D engine. With this you may create your own Code Editor, Debugger and IDE for different scripting languages.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages