Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mandel59/hxrobot
HxRobot: a Robot Language interpreter written in Haxe
https://github.com/mandel59/hxrobot
Last synced: about 1 month ago
JSON representation
HxRobot: a Robot Language interpreter written in Haxe
- Host: GitHub
- URL: https://github.com/mandel59/hxrobot
- Owner: mandel59
- License: mit
- Created: 2014-10-19T18:15:41.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-23T17:47:52.000Z (almost 10 years ago)
- Last Synced: 2024-05-02T01:15:28.408Z (7 months ago)
- Language: Haxe
- Size: 211 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# HxRobot
![Robot screencast](https://cloud.githubusercontent.com/assets/1079715/4714711/03e1abb2-58f6-11e4-8ae7-f8bb9c5fc9e4.gif)
[Try a web frontend!](https://mandel59.github.io/hxrobot/)
HxRobot is a Robot Language interpreter written in Haxe. Write a frontend and ship the interpreter to various platforms!
A frontend is needed to implement below methods:
```haxe
typedef Screen = {
// clear the screen
function clear() : Void;
// draw a line from (x0,y0) to (x1,y1)
function line(x0 : Int, y0 : Int, x1 : Int, y1 : Int) : Void;
}
```# References
* [Introduction of Robot Language by Takeoka@AXE](http://www.takeoka.org/~take/kvm/rob.html)