68 lines
1.6 KiB
Markdown
68 lines
1.6 KiB
Markdown
# joomer-efsw-bsz-monitoring
|
|
Watch folder for images and flip them
|
|
|
|
# Demonstrates
|
|
- bsz monitoring
|
|
|
|
# Usage
|
|
|
|
```
|
|
joomer-efsw-bsz-monitoring
|
|
- drag and drop bszs into the current directory (same folder as exe file)
|
|
- rendered image will be saved in the current directory as well
|
|
|
|
joomer-efsw-bsz-monitoring.exe
|
|
optional arguments
|
|
--watchdir:path
|
|
--width: resolution width
|
|
--height: resolution height
|
|
```
|
|
|
|
# TODO
|
|
- make it work for linux version
|
|
|
|
# Build
|
|
```
|
|
learndir/
|
|
└── joomer-efsw-bsz-monitoring/
|
|
└── bella_engine_sdk/
|
|
└──x64
|
|
└──release
|
|
└── efsw
|
|
```
|
|
|
|
# TODO
|
|
- work on linux version
|
|
|
|
## Windows
|
|
- Download Visual Studio Community Edition
|
|
- Run VisualStudioSetup.exe
|
|
- Workload = [x] Desktop development with C++
|
|
- Individual components = [x] Git For Windows
|
|
|
|
Run **x64 Native Tools Command Prompt for VS**
|
|
```
|
|
mkdir learndir && cd learndir
|
|
|
|
curl -LO https://downloads.bellarender.com/bella_engine_sdk-25.3.0-win32.zip
|
|
tar -xf bella_engine_sdk-25.3.0-win32.zip
|
|
|
|
# Build Entropia bsz System Watcher
|
|
git clone https://github.com/SpartanJ/efsw.git
|
|
cd efsw
|
|
cmake -B ./build
|
|
cmake --build ./build --config Release -j%NUMBER_OF_PROCESSORS%
|
|
|
|
# Build joomer-efsw-bsz-monitoring
|
|
cd ..
|
|
git clone https://git.indoodle.com/jason/joomer-efsw-bsz-monitoring.git
|
|
cd joomer-efsw-bsz-monitoring
|
|
curl -LO https://raw.githubusercontent.com/nothings/stb/master/stb_image.h
|
|
curl -LO https://raw.githubusercontent.com/nothings/stb/master/stb_image_write.h
|
|
msbuild joomer-efsw-bsz-monitoring.vcxproj /p:Configuration=release
|
|
|
|
# run
|
|
x64\release\joomer-efsw-bsz-monitoring.exe #--watchdir:path (optionally)
|
|
```
|
|
|