Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Villavu/Simba
Simba is a program used to repeat certain (complicated) tasks. Typically these tasks involve using the mouse and keyboard. Simba is programmable, which means you can design your own logic and steps that Simba will follow, based upon certain input such as colors on the screen.
https://github.com/Villavu/Simba
automation computer-vision fpc lape lazarus macro pascal simba villavu
Last synced: about 2 months ago
JSON representation
Simba is a program used to repeat certain (complicated) tasks. Typically these tasks involve using the mouse and keyboard. Simba is programmable, which means you can design your own logic and steps that Simba will follow, based upon certain input such as colors on the screen.
- Host: GitHub
- URL: https://github.com/Villavu/Simba
- Owner: Villavu
- License: gpl-3.0
- Created: 2010-12-12T19:33:01.000Z (about 14 years ago)
- Default Branch: simba2000
- Last Pushed: 2024-05-21T19:31:34.000Z (7 months ago)
- Last Synced: 2024-05-21T22:32:21.685Z (7 months ago)
- Topics: automation, computer-vision, fpc, lape, lazarus, macro, pascal, simba, villavu
- Language: Pascal
- Homepage: http://villavu.github.io/Simba/
- Size: 67.9 MB
- Stars: 210
- Watchers: 30
- Forks: 75
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
Simba
=====Simba is a program used to repeat certain (complicated) tasks. Typically these tasks involve using the mouse and keyboard. Simba is programmable, which means you can design your own logic and steps that Simba will follow, based upon certain input such as colors on the screen.
The scripting language used is [Lape](https://github.com/nielsAD/lape) which uses a Pascal-like syntax.
Documentation for Simba is available [here](https://villavu.github.io/Simba/index.html).
------
Simba is available for:
- Windows (32 & 64 bit)
- Linux (64 bit & AArch64) - *Requires usage of X11*
- MacOS (64 bit & M1/M2) - *Untested, but runs*![Simba on Windows 11](Images/readme/simba_ide.png)
Some dependencies are required for both building and running on Linux/MacOS.
Linux:
- `Xtst` `sudo apt-get install libxtst-dev`
- `gtk2` `sudo apt-get install gtk2.0 libgtk2.0-dev`
- `libffi` `sudo apt-get install libffi-dev`
- `openssl` `sudo apt-get install openssl` (for https requests)
MacOS:
- `libffi` `brew install libffi`------
## Building SimbaSimba is written in Pascal with [Lazarus](https://www.lazarus-ide.org/). Lazarus is available here: https://sourceforge.net/projects/lazarus/files/ the latest version should work.
Steps:
1) Clone the Simba repository & install submodules `git clone --recurse-submodules https://github.com/Villavu/Simba`.
2) Open `Source/Simba.lpi` in Lazarus.
3) Select the build mode required.![Build Mode](Images/readme/buildmode.png)
4) Build Simba (Run > Build) and when completed the Simba executable will be located in the root directory of the repository.
-----
## Why Pascal?- Simba dates back to ~2004. Originally SCAR, then SCAR Divi, then open source clone named Simba.
- Simba has always been a hobby project and keeping its roots in pascal is enjoyable to some!
- Pascal is readable, type-safe, cross-platform and fast.