Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkaempf/ruida
Decoder and tooling for the RDWorks .rd file format
https://github.com/kkaempf/ruida
disassembler engineering parser rd rdcam reverse ruida thunderlaser
Last synced: 2 months ago
JSON representation
Decoder and tooling for the RDWorks .rd file format
- Host: GitHub
- URL: https://github.com/kkaempf/ruida
- Owner: kkaempf
- License: other
- Created: 2017-11-25T07:25:39.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-27T18:24:06.000Z (about 1 year ago)
- Last Synced: 2024-10-14T09:38:20.560Z (3 months ago)
- Topics: disassembler, engineering, parser, rd, rdcam, reverse, ruida, thunderlaser
- Language: Ruby
- Size: 175 KB
- Stars: 41
- Watchers: 13
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: LICENSE
Awesome Lists containing this project
README
# ruida
Decoder and tooling for the RDWorks `.rd` file format## About
[Thunderlaser](http://www.thunderlaser.com) laser cutter need a proprietary Windows
software ([RDWorks](http://rdworks.software.informer.com/8.0)) to
operate.RDWorks generates `.rd` files to communicate with the laser cutter.
`.rd` files are (trivially) scrambled with strange encodings for
integer and floating point values.This project provides tooling to display and decode this file format.
## License
Ruby
## Commands
### dump
Provides de-scrambled hexdump of an `.rd` file.
### decode
Provides a full decode of an `.rd` file, with commands and values
output in 'human-readable' form.### lookuptable
Generates a lookup table (either in `--ruby` or in `--markdown`
format) the scrambled values.### document
Generates a [github flavored](https://github.github.com/gfm) [markdown](https://daringfireball.net/projects/markdown/syntax) table,
listing all commands known to `decode`## Other references
[meerk40t](https://github.com/meerk40t/meerk40t/blob/main/meerk40t/ruida/rdjob.py)
has even more commands implemented.