All Projects → OpenRoberta → openroberta-lab

OpenRoberta / openroberta-lab

Licence: Apache-2.0 license
The programming environment »Open Roberta Lab« by Fraunhofer IAIS enables children and adolescents to program robots. A variety of different programming blocks are provided to program motors and sensors of the robot. Open Roberta Lab uses an approach of graphical programming so that beginners can seamlessly start coding. As a cloud-based applica…

Programming Languages

javascript
184084 projects - #8 most used programming language
java
68154 projects - #9 most used programming language
HTML
75241 projects
typescript
32286 projects
python
139335 projects - #7 most used programming language
C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to openroberta-lab

codemirror-blocks
A library for building language-specific, CodeMirror-friendly editors that are a11y-friendly.
Stars: ✭ 22 (-77.55%)
Mutual labels:  programming, ide
Elementary Ide
An unofficial elementary OS (Vala) oriented IDE.
Stars: ✭ 75 (-23.47%)
Mutual labels:  programming, ide
WordIDE
A tool that helps you write code in your favorite IDE: your word processor!
Stars: ✭ 37 (-62.24%)
Mutual labels:  programming, ide
Robertalab
IMPORTANT: this repository statys for HISTORICAL reasons only. The actively supported repository is "openroberta-lab". In the "develop" branch of this repository please read the files "IMPORTANT_CHANGE.md" and "README.md". Thank you very much.
Stars: ✭ 121 (+23.47%)
Mutual labels:  programming, ide
Ted2Go
Ted2Go IDE is a leading IDE for Monkey2 programming language. Written on Monkey2! Based on original Ted2.
Stars: ✭ 16 (-83.67%)
Mutual labels:  programming, ide
Pylon
Pylon IDE, a Cloud9 v2 descendant with some added extras and support for modern node >= 10.20.1 (including v11.x, v12.x, v13.x, v14.x, v15.x). OSS licensed.
Stars: ✭ 156 (+59.18%)
Mutual labels:  programming, ide
Hacktoberfest 2021
This repository aims to help code beginners with their first successful pull request and open source contribution. Happy coding!
Stars: ✭ 109 (+11.22%)
Mutual labels:  programming
scilab
Open source, cross-platform numerical computational package and a high-level, numerically oriented programming language.
Stars: ✭ 52 (-46.94%)
Mutual labels:  programming
community-projects
Webots projects (PROTO files, controllers, simulation worlds, etc.) contributed by the community.
Stars: ✭ 20 (-79.59%)
Mutual labels:  robots
AppleScript-IDEA
AppleScript support for IntelliJ IDEs
Stars: ✭ 21 (-78.57%)
Mutual labels:  ide
python-tutorial-for-beginners
Python Tutorial for Beginners with 500 Code Examples
Stars: ✭ 167 (+70.41%)
Mutual labels:  programming
medium-code
A place to store my jupyter notebooks for my medium articles
Stars: ✭ 27 (-72.45%)
Mutual labels:  programming
python hacks
Приёмы при написании python-программ
Stars: ✭ 69 (-29.59%)
Mutual labels:  programming
awesome.gl
棒棒哒攻略:Developer's Technical Documents, API References, Code Examples, Quick Starts, Programming minutebooks, and Tutorials. https://awesome.gl
Stars: ✭ 12 (-87.76%)
Mutual labels:  programming
30-seconds-of-git
Short git snippets for all your development needs
Stars: ✭ 235 (+139.8%)
Mutual labels:  programming
arduino
required (and optional) source files for the Arduino development environment, specifically the hardware/arduino sub-directory, to support xmega processors
Stars: ✭ 18 (-81.63%)
Mutual labels:  ide
tutorials as code
so that stuff read/seen don't get muddled up with time
Stars: ✭ 42 (-57.14%)
Mutual labels:  programming
the-c-programming-language-2nd-edition-solutions
Solutions to the exercises in the book "The C Programming Language" (2nd edition) by Brian W. Kernighan and Dennis M. Ritchie. This book is also referred to as K&R.
Stars: ✭ 245 (+150%)
Mutual labels:  programming
react-monacoeditor
Monaco Editor component for React.
Stars: ✭ 191 (+94.9%)
Mutual labels:  ide
FunctionLibrary
A library to learn Algorithms and Data Structures for newbies
Stars: ✭ 13 (-86.73%)
Mutual labels:  programming

Open Roberta Lab

Unit Test Integration Test (Nightly)

Note about the default branch

For a short time, we use develop to the default branch of our repository. If you clone our repository, you'll get develop first. In general this is a stable version. You can deploy a local version as described below. If you want the currently deployed version, please checkout master before building.

The local version needs data for the cross compiler. They are stored in the separate repository ora-cc-rsc. Note:

  • master(version 4.1.3, the currently deployed version) needs the data stored in tag 25
  • develop (version 4.1.4-SNAPSHOT) needs the data stored in tag 26

Introduction

The source of the OpenRoberta Lab is stored in the Github repository 'openroberta-lab'.

The steps below explain how to get started with the sources. If you just want to run the server locally, please have a look into the Wiki - Installation. If you want to contribute, please get in touch with us, see Wiki - Community, before you start.

After a fresh git clone you get the openroberta-lab project folder. It includes almost everything you need to setup and extend your own openrobertalab server. License information is available in the docs folder.

Prerequisites

  • Java JDK >= 1.8 (e.g. openjdk-11-jdk on Ubuntu) and JAVA JDK <= 13.0.2

For Windows, we recommend the Java installation found here.

  • Maven
  • NPM
  • Git
  • Web browser

If you would like your local server to compile code for the different systems, you need to install additional software (crosscompilers, libraries, ...).

It is recommended to download additional software to a user-defined directory, such as /opt/compilers/, as this will save us the trouble of finding the correct path to the binaries later on!

on Ubuntu:

  • Arduino based robots
    • sudo apt-get install libusb-0.1-4
    • sudo apt-get install binutils-avr gdb-avr avrdude
    • download and unpack avr-gcc to a directory of your choice.
  • NXT
    • sudo apt-get install nbc
  • Calliope
    • sudo apt-get install srecord libssl-dev
    • download and unpack the latest gcc-arm-none-eabi to a directory of your choice.
  • micro:bit
    • pip install uflash (to install pip run sudo apt install with python-pip on Ubuntu 18.04 and python3-pip on 20.04)
  • EV3 c4ev3
    • sudo apt-get install g++-arm-linux-gnueabi
  • Edison
    • sudo apt-get install python (Python 2 is needed, it is called python for Ubuntu 18.04 and python2 for 20.04)
  • Bionics4Education
    • sudo apt-get install python-serial (python3-serial for Ubuntu 20.04, in this case you should have python default to python3, test it by running python --version and if it is 2.x you can change it by running sudo apt-get install python-is-python3)
    • download and unpack xtensa-esp32-elf to a directory of your choice.

Next, add the downloaded binaries to the PATH. The <path-to-the-compiler-folder> should be replaced with the download directory (created earlier) + the compiler folder:

echo export PATH="$PATH:<path-to-the-compiler-folder>/bin" >> ~/.profile`

on Windows:

  • Arduino based robots
    • download and unpack avr-gcc to a directory of your choice.

    Arduino Nano 33 BLE and Arduino Uno Wifi Rev 2 do not compile on Windows at the moment :(

  • Calliope
    • download and unpack the latest gcc-arm-none-eabi to a directory of your choice.
    • download and unpack srecord to a directory of your choice.
  • micro:bit
    • install Python 3
    • pip install uflash
  • EV3 c4ev3

    No compiler is made available for Windows :(

  • Edison
    • install Python 2
  • Bionics4Education

Next, add the downloaded and installed binaries to the PATH:

  • most libraries provide an option of adding the binaries to the system PATH during installation.
  • for others, navigate to Edit the system environment variables and add the path manually. The path here is the download directory (created earlier) + the compiler folder.
  • for Python 2, rename the executable file from python.exe to python2.exe.

The cross-compiler needs resources to work properly (header files, libraries, ...). These resources change little over time and are stored in the 'ora-cc-rsc' repository.

Please clone that directory and build it using mvn clean install. When the openroberta-lab server is started, you have to supply the path to these resources ( see below). If the resources are not available, everything works fine (writing programs, import, export, creating accounts, etc.), but running programs on real robots doesn't work, because the cross-compiler will fail.

Please also check our wiki for detailed installation instructions, development procedure, coding conventions and further reading. We also use the Github issue tracking system. Please file issues in the main project openroberta-lab.

Fast installation with maven

Step 1: Clone the repository and compile

git clone https://github.com/OpenRoberta/openroberta-lab.git # get the repository
cd openroberta-lab                                           # cd into repository
mvn clean install                                            # generate the server
npm install && npm run build                                 # build the frontend

Might take some time. The last lines of a successful build looks like:

...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  03:24 min
[INFO] Finished at: 2020-09-08T14:13:10+02:00
[INFO] ------------------------------------------------------------------------

Step 2: Make sure you have a database

The two main shell scripts to work with are ./admin.sh and ./ora.sh. To use them, you need a bash-compatible shell. On linux system they are available, on win* systems you get one for free if you have installed git. Call the scripts without parameter or with -h to get a help message. ./admin.sh is used for data base administration, ./ora.sh for server export and start as well as for docker administration. If you have a fresh clone of the server, make sure that the OpenRobertaServer folder has a subfolder db-embedded with the database inside. If you don't have a database, you can create an empty database with

./admin.sh -git-mode create-empty-db

If you try to create a new database, but one exists, the old one is not changed and the command has no effect. The new database is found in the folder OpenRobertaServer/db-embedded.

Step 3: Starting your own server

./ora.sh [-oraccrsc <optional-path-to-crosscompiler-resources, defaults-to '../ora-cc-rsc'>] start-from-git

If you did not install the crosscompiler resources, everything works fine (programming, simulation, code generation, user management, ...), except of generation of binaries for robot systems.

Step 4: Accessing your openroberta installation

Start your browser at http://localhost:1999 That's it!

Creating an installation outside of the git repo

Often you want to run an openroberta installation of a fixed version for a long time. This is easy. Let's assume, that you want to use the (non-existing) directory /data/my-openroberta.

mvn clean install && npm run build         # generate the server in the git repo
./ora.sh export /data/my-openroberta gzip  # export to the target directory. gzip compresses the static web resources fpr better performance.
cd /data/my-openroberta                    # the export command supplies an administration script admin.sh, which is different from the one in the git workspace
./admin.sh create-empty-db                 # create an empty db at ./db-server - of course you may copy an old database to that location
./admin.sh start-server                    # spawns two processes: a database server and the openroberta jetty server

The following administrative commands are useful:

./admin.sh backup ./admin/dbBackup   # create a backup in the folder given as parameter. Copy the tgz-file to another machine (cron will automate everything)
./admin.sh shutdown                  # shutdown of the database. The openroberta jetty server continues to run, but database access will fail, of course.
                                     # get the pid of the server using **ps** and execute a **kill <pid>** to stop the server
./admin.sh sqlgui                    # access the database concurrently with the server. Be careful not to block the server, e.g. by an update without commit
                                     # the database server must be running, of course.
./admin.sh sqlguiEmbedded            # if the database server is stopped, this allows to access the database. The access is exclusive. Terminate the sql client
                                     # before you start the openroberta installation again.

This kind of installation is useful for small productive systems (e.g. an a RaspberryPi). Large productive systems,

  • if you want to run many servers (maybe of different versions) concurrently,
  • if you want to use continous deployment based on incoming git commits
  • ...

needs more support as available with the scripts ora.sh and admin.sh. We deploy our openroberta installation using docker. It is described in detail in file Docker/README.md. Inside the Docker directory everything is contained which is needed to create images and start them. You can try it. If there are problems, you can contact us.

Remarks about the database

OpenRoberta needs a database to store user accounts, programs, etc. It uses HyperSQL. Other database systems (MySql, Postgres, ..., oracle, db2, ...) would work, too. There are no special requirements on the database, that would exclude one. Only a Hibernate binding and a full transaction support is needed.

As described above either db-embedded or db-server is the name of the directory, in which the database files reside. Sometimes the database must be upgraded, e.g. new tables or new columns for new features. The java class DbUpgrader is responsible for detecting the need for an upgrade and executing the upgrade (once and only once) when the database is openend at server startup. If a database needs more than one upgrade, this is no problem. They are executed one after the other.

There is no need for the developer to care about database upgrades. But note, that is not possible to upgrade databases with versions before 3.1.0. As this is a very old version, this should never be necessary. If this is needed, please contact the OpenRoberta team.

Importing the Project

You can also import the project into IDE's such as Eclipse and IntelliJ!

Development notes

Development happens in the develop branch. Please send PRs against that branch.

git clone https://github.com/OpenRoberta/openroberta-lab.git
cd openroberta-lab
git checkout develop

The project OpenRobertaServer contains the server logic, that accesses

  • a database with Hibernate-based DAO objects
  • plugins for various robots which are supported in OpenRoberta
  • services for browser-based clients
  • services for robots connected to the lab either by Wifi or USB

The server is made of

  • an embedded jetty server exposing REST services
  • the services are based on jersey
  • JSON (sometimes XML or plain text) is used for data exchange between front, robots and server

Furthermore, the project OpenRobertaServer contains in directory staticResources for the browser client

  • HTML and CSS
  • Generated Javascript under /js (this should not be edited!)
    • Javascript libraries based on jquery and bootstrap for the frontend
    • assertions (DBC), ajax-based server calls (COMM), logging (LOG) and
    • javascript resources for blockly
    • controller and models written in Javascript, which implement the GUI

The original Javascript sources can be found in OpenRobertaWeb/
To work with the frontend (e.g. compiling the sources) we defined the following npm scripts:

  • npm run build - build the sources
  • npm run build:sourceMap - build the sources and generated source maps for debugging
  • npm run watch - build the sources on change
  • npm run watch:sourceMap - build the sources on change and generate source maps for debugging
  • npm run format - formats all javascript and typescript source files
  • npm run format:check - check if all javascript and typescript files are formatted

Attention: Only check in those generated files build with npm run build or npm run watch!

Testing

To run backend tests, use mvn test. Running mvn clean install will make a stable, reproducible build with all unit tests executed.

To run the integration tests you have to supply an additional flag: mvn clean install -PrunIT. For these you need an environment variable robot_crosscompiler_resourcebase pointing to your ora-cc-rsc directory.

The integration tests don't run successfully on Windows at the moment, as compilers for some robots (Arduino Nano 33 BLE, Arduino Uno Wifi Rev 2 and C4EV3) are not available.

Some Frameworks used

We use Blockly, it is located in a separate repository. The build of the blockly is only done in the OpenRoberta/Blockly project and then copied to the OpenRobertaServer/staticResources. You can not build Blockly in OpenRobertaServer project directly.

We use BrowserStack for Cross-Browser Testing

Have a look at the notes in LICENCE and NOTICE

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].