ScreenshotWUPS/README.md

40 lines
1.5 KiB
Markdown
Raw Normal View History

2018-07-01 19:13:52 +02:00
# Screenshot tool [![Build Status](https://api.travis-ci.org/Maschell/ScreenshotWUPS.svg?branch=master)](https://travis-ci.org/Maschell/ScreenshotWUPS)
2018-07-01 19:12:35 +02:00
This is just a simple plugin that takes screenshot of the TV and DRC screen. The screenshot will saved on the sd card in the folder "sd:/wiiu/screenshots/"
2018-07-01 19:12:35 +02:00
## Wii U Plugin System
This is a plugin for the [Wii U Plugin System (WUPS)](https://github.com/Maschell/WiiUPluginSystem/). To be able to use this plugin you have to place the resulting `.mod` file into the following folder:
```
sd:/wiiu/plugins
```
When the file is placed on the SDCard you can load it with [plugin loader](https://github.com/Maschell/WiiUPluginSystem/).
## Building
For building you need:
- [wups](https://github.com/Maschell/WiiUPluginSystem)
2018-07-13 19:23:42 +02:00
- [wut](https://github.com/decaf-emu/wut)
- [libutilswut](https://github.com/Maschell/libutils/tree/wut) (WUT version) for common functions.
2018-07-01 19:12:35 +02:00
Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself.
Other external libraries are already located in the `libs` folder.
- libjpeg
- libturbojpeg
### Building using the Dockerfile
It's possible to use a docker image for building. This way you don't need anything installed on your host system.
```
# Build docker image (only needed once
docker build . -t screenshot-builder
# make
docker run -it --rm -v ${PWD}:/project screenshot-builder make
# make clean
docker run -it --rm -v ${PWD}:/project screenshot-builder make clean
```