Difference between revisions of "SDK"
Line 148: | Line 148: | ||
===General settings=== | ===General settings=== | ||
− | + | ====Project tab==== | |
In this tab you can choose one of two modes of operation: | In this tab you can choose one of two modes of operation: | ||
Line 169: | Line 169: | ||
* view additional data for a running project | * view additional data for a running project | ||
− | + | ====View tab==== | |
The Sound adjusts the overall volume. | The Sound adjusts the overall volume. | ||
Line 195: | Line 195: | ||
[[File:WOWCube_Emulator_view_tab_scene.png]] | [[File:WOWCube_Emulator_view_tab_scene.png]] | ||
− | + | ====Settings Tab==== | |
This is where the PAWN compiler path and python path are selected. | This is where the PAWN compiler path and python path are selected. |
Revision as of 11:51, 22 June 2021
SDK/Framework
Contents
WOWCube Emulator installation
Windows
Launch the wowcube-sdk.exe installer and follow the steps of the installer.
Installing Dependencies (for Pawn Application Developers) To run scripts written in the Pawn language, you need to install Python 3, Pip, IntelHex, and Pillow.
Installing Python
Go to the site https://www.python.org/downloads/windows/, click on the "Latest Python 3 Release" link, wait for the download to complete.
Run the downloaded Python installer, select the "Add Python to PATH" checkbox (without it, the path to Python will need to be specified in full), and then click "Install Now".
Python 3 will be installed in "%LOCALAPPDATA%\Programs\Python". After installation, it will offer to remove the 260-character limit on the PATH length. Click. We complete the installation. Some Python libraries may not work or work incorrectly due to the standard 260 character limit.
Installing libraries
To install the dependencies, you need to start the terminal. Go to Start menu (or press Windows key + X) and select Windows PowerShell.
Type command "pip install intelhex pillow" and press enter.
This command will download and install the IntelHex and Pillow dependencies. If the installation is successful, a corresponding message will be displayed.
If your company uses a proxy, then you need to add the --proxy option to the command above. The option has the following format:
[user: password @] proxy.server: port
For example:
pip install --proxy = http: //proxy.jf.intel.com: 911 intelhex pillow
macOS
Open the .dmg file, drag the WOWCube Emulator application into the Applications folder.
If the .dmg file was downloaded not in the App Store, then an error will pop up when starting the application.
To fix this error, you need to open the Terminal application. It can be opened in a number of ways: with Siri, or through Launchpad, or through the Finder, or by pressing Command + Space bar and pressing the Enter.
In the terminal, write the command / Applications / WOWCube \ Emulator.app/Contents/MacOS/bin/wowcube and press enter.
If the following error occurs
/ usr / bin / env: bad interpreter: Operation not permitted, or zsh: operation not permitted: / Applications / WOWCube Emulator.app/Contents/MacOS/bin/wowcube
Then run the following command xattr -rd com.apple.quarantine / Applications / WOWCube \ Emulator.app/. It will output errors Permission Denied, but they are expected.
Installing Python
For macOS version below Catalina open a terminal, install and download Homebrew
/ bin / bash -c "$ (curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Homebrew is a package manager that lets you install Open Source applications.
Next, install Python 3 and Pip
brew install python3
brew cask install python3
For macOS by Catalina. First you need to make sure that python is installed and that it is the correct version.
python3 -V
This command should print “Python 3.x.x”. If the command did not display anything, or was not found, try to execute
python -V
If it displays “Python 2.x.x”, then Python 3 is not installed.
Install pip:
curl -fsSL https://bootstrap.pypa.io/get-pip.py | python3
Installing labraries
Install IntelHex and Pillow libraries.
pip3 install pillow intelhex
Starting WOWCube Emulator
Windows
Launch WOWCube Emulator by clicking on shortcut on desktop.
On first launch, a warning from the firewall will appear.
Allow access. WOWCube Emulator uses local ports for communication between the processes it creates, as well as for projector mode.
macOS
Open terminal and enter WOWCube Emulator then and press Enter.
WOWCube Emulator interface
General view
There are 4 main groups of widgets in the WOWCube Emulator interface.
Cube model interactions
Contains links for interacting with the cube module. Buttons from left to right:
- simulates the shaking of a cube
- returns the cube module to its original state (restoring rotations and position)
- open code redactor (does not work in version 2.2.0 and below)
- rotates a random side of the cube
Emulation progress control
Serves to interact with the progress of the script. Buttons from left to right:
- start emulation of the selected pawn script. Аfter startup is replaced by the emulation restart button
- stops pawn script emulation
- loading a script to a physical cube using the bluetooth protocol (does not work in version 2.2.0 and below)
General settings
Project tab
In this tab you can choose one of two modes of operation:
- Pawn;
- Projector.
Projector mode
The projector is used to transfer images from a computer or mobile device to the WOWCube via the Bluetooth protocol.
The projector in the WOWCube Emulator is used for prototyping and faster development of web-projector applications.
Pawn Mode
In this mode, you can:
- select the path to the projects folder
- select a startup project
- view additional data for a running project
View tab
The Sound adjusts the overall volume.
In the Emulation, the transparency of the overlay is adjusted. The overlay displays on each module its current number, screen and adjacent modules.
The Limit FPS slider allows you to limit the frame rate in the application running on the emulator.
If necessary, it is possible to configure the simulation of lost packets during transmission.
In the CubeNet, the transparency and the size of the cube unfolding are configured.
In the Scene, the removal of the camera, the field of view, the backdrop are configured.
ABI calls - displays abi function calls to the console.
Console follows mouse click - if you click on one of the modules of the virtual cube model, it opens the console tab corresponding to the module number.
Settings Tab
This is where the PAWN compiler path and python path are selected.
Console and logs
Contains tabs for displaying script assembly logs and tabs with the console of each module separately.
Controls
LMB on a cube - rotation of the sides.
RMB (or Ctrl + LMB) on a cube - tilt the cube.
RMB (or Ctrl + LMB) past the cube - rotate the camera.
Mouse wheel - zoom out / zoom in the camera.
Quick start
Go to https://github.com/wowcube/WOWCube_apps_examples
Clone or download to the necessary folder.
Launch WOWCube Emulator.
In Project tab switch Pawn mode.
Specify Project path to the folder with examples.
Under Run configuration choose example project.
You can press 'i' button to watch what resources loaded for each script
Press Start button to launch emulation
In order to make changes in examples you need:
- Go to folder where your WOWCube examples located
- Open file 'example1.pwn' with any text redactor
- make what changes you need