All Projects → my-basic → code_editor_unity

my-basic / code_editor_unity

Licence: MIT license
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.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to code editor unity

Runt
Tiny extensible IDE written in C.
Stars: ✭ 23 (+76.92%)
Mutual labels:  ide, code-editor
Intellij Community
IntelliJ IDEA Community Edition & IntelliJ Platform
Stars: ✭ 13,072 (+100453.85%)
Mutual labels:  ide, code-editor
x-studio.github.io
This is the issues tracking, roadmap, docs src repo of the x-studio IDE. Copyright © 2014-2022 Simdsoft Limited
Stars: ✭ 92 (+607.69%)
Mutual labels:  ide, code-editor
Pervane
Plain text file based note taking and knowledge base building tool, markdown editor, simple browser IDE.
Stars: ✭ 159 (+1123.08%)
Mutual labels:  ide, code-editor
Hackide
hackIDE is an online code editor, compiler and interpreter based on Django, powered by HackerEarth API! Go, hack it!
Stars: ✭ 242 (+1761.54%)
Mutual labels:  interpreter, code-editor
icecoder
ICEcoder - Web IDE and editor for REDAXO CMS
Stars: ✭ 21 (+61.54%)
Mutual labels:  ide, code-editor
Cpeditor
The IDE for competitive programming 🎉 | Fetch, Code, Compile, Run, Check, Submit 🚀
Stars: ✭ 562 (+4223.08%)
Mutual labels:  ide, code-editor
Brackeys Ide
👨‍💻 Brackeys IDE is a fast and free multi-language code editor for Android.
Stars: ✭ 154 (+1084.62%)
Mutual labels:  ide, code-editor
Fake
嵌入式脚本语言 Lightweight embedded scripting language
Stars: ✭ 172 (+1223.08%)
Mutual labels:  interpreter, ide
dockside
Dockside is a tool for provisioning lightweight access-controlled IDEs, staging environments and sandboxes - aka 'devtainers' - on local machine, on-premises raw metal or VM, or in the cloud
Stars: ✭ 205 (+1476.92%)
Mutual labels:  ide, code-editor
bfloader
🧠 Brainfuck IDE and interpreter in 512 bytes. (boot sector)
Stars: ✭ 41 (+215.38%)
Mutual labels:  interpreter, ide
Line-Clipper
💻Efficient navigation between browser and IDE while working on GitHub.
Stars: ✭ 64 (+392.31%)
Mutual labels:  ide
monkey-rs
An interpreter for the Monkey programming language written in Rust
Stars: ✭ 27 (+107.69%)
Mutual labels:  interpreter
DzNoteEditor
Delphi Property Editor for TStrings supporting formatted languages with syntax highlight
Stars: ✭ 18 (+38.46%)
Mutual labels:  ide
Arduino-FVM
Byte Token Threaded Forth Virtual Machine (FVM) for Arduino
Stars: ✭ 35 (+169.23%)
Mutual labels:  interpreter
goneovim
A GUI frontend for neovim.
Stars: ✭ 1,721 (+13138.46%)
Mutual labels:  ide
Cosmo
Embeddable scripting language loosely based off of Lua
Stars: ✭ 14 (+7.69%)
Mutual labels:  interpreter
scalavista-server
A minimalistic Scala language-server
Stars: ✭ 14 (+7.69%)
Mutual labels:  ide
erlide kernel
Erlang IDE engine supporting source code indexing and manipulation. Currently only an Eclipse client is implemented.
Stars: ✭ 15 (+15.38%)
Mutual labels:  ide
g2d
Craft beautiful geometric art using code.
Stars: ✭ 40 (+207.69%)
Mutual labels:  interpreter

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 :)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].