mirror of
https://github.com/wiiu-env/ScreenshotWUPS.git
synced 2024-11-17 12:49:16 +01:00
156 lines
4.1 KiB
C++
156 lines
4.1 KiB
C++
|
#include <wups.h>
|
||
|
#include <malloc.h>
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
#include <string.h>
|
||
|
#include <dirent.h>
|
||
|
#include <coreinit/cache.h>
|
||
|
#include <coreinit/thread.h>
|
||
|
#include <coreinit/time.h>
|
||
|
#include <coreinit/screen.h>
|
||
|
#include <vpad/input.h>
|
||
|
#include <nsysnet/socket.h>
|
||
|
#include <utils/logger.h>
|
||
|
#include "retain_vars.hpp"
|
||
|
|
||
|
// Mandatory plugin information.
|
||
|
WUPS_PLUGIN_NAME("Screenshot tool");
|
||
|
WUPS_PLUGIN_DESCRIPTION("This plugin allows you to make screenshots that will be saved to the sd card");
|
||
|
WUPS_PLUGIN_VERSION("v0.1");
|
||
|
WUPS_PLUGIN_AUTHOR("Maschell");
|
||
|
WUPS_PLUGIN_LICENSE("GPL");
|
||
|
|
||
|
// FS Access
|
||
|
WUPS_FS_ACCESS()
|
||
|
|
||
|
uint32_t SplashScreen(int32_t time,int32_t combotime);
|
||
|
|
||
|
// Gets called once the loader exists.
|
||
|
INITIALIZE_PLUGIN() {
|
||
|
socket_lib_init();
|
||
|
|
||
|
log_init();
|
||
|
|
||
|
uint32_t res = SplashScreen(10,2);
|
||
|
|
||
|
gButtonCombo = res;
|
||
|
ICInvalidateRange((void*)(&gButtonCombo), 4);
|
||
|
DCFlushRange((void*)(&gButtonCombo), 4);
|
||
|
}
|
||
|
|
||
|
// Called whenever an application was started.
|
||
|
ON_APPLICATION_START(my_args) {
|
||
|
socket_lib_init();
|
||
|
log_init();
|
||
|
|
||
|
gAppStatus = WUPS_APP_STATUS_FOREGROUND;
|
||
|
|
||
|
log_init();
|
||
|
}
|
||
|
|
||
|
ON_APP_STATUS_CHANGED(status) {
|
||
|
gAppStatus = status;
|
||
|
}
|
||
|
|
||
|
|
||
|
#define FPS 60
|
||
|
uint32_t SplashScreen(int32_t time,int32_t combotime) {
|
||
|
uint32_t result = VPAD_BUTTON_R | VPAD_BUTTON_L | VPAD_BUTTON_ZR | VPAD_BUTTON_ZL;
|
||
|
|
||
|
// Init screen
|
||
|
OSScreenInit();
|
||
|
|
||
|
uint32_t screen_buf0_size = OSScreenGetBufferSizeEx(SCREEN_TV);
|
||
|
uint32_t screen_buf1_size = OSScreenGetBufferSizeEx(SCREEN_DRC);
|
||
|
|
||
|
uint32_t * screenbuffer0 = (uint32_t*)memalign(0x100, screen_buf0_size);
|
||
|
uint32_t * screenbuffer1 = (uint32_t*)memalign(0x100, screen_buf1_size);
|
||
|
|
||
|
if(screenbuffer0 == NULL || screenbuffer1 == NULL) {
|
||
|
if(screenbuffer0 != NULL) {
|
||
|
free(screenbuffer0);
|
||
|
}
|
||
|
if(screenbuffer1 != NULL) {
|
||
|
free(screenbuffer1);
|
||
|
}
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
OSScreenSetBufferEx(SCREEN_TV, (void *)screenbuffer0);
|
||
|
OSScreenSetBufferEx(SCREEN_DRC, (void *)screenbuffer1);
|
||
|
|
||
|
OSScreenEnableEx(SCREEN_TV, 1);
|
||
|
OSScreenEnableEx(SCREEN_DRC, 1);
|
||
|
|
||
|
// Clear screens
|
||
|
OSScreenClearBufferEx(SCREEN_TV, 0);
|
||
|
OSScreenClearBufferEx(SCREEN_DRC, 0);
|
||
|
|
||
|
// Flip buffers
|
||
|
OSScreenFlipBuffersEx(SCREEN_TV);
|
||
|
OSScreenFlipBuffersEx(SCREEN_DRC);
|
||
|
|
||
|
OSScreenClearBufferEx(SCREEN_TV, 0);
|
||
|
OSScreenClearBufferEx(SCREEN_DRC, 0);
|
||
|
|
||
|
std::vector<std::string> strings;
|
||
|
strings.push_back("Screenshot tool 0.1 - by Maschell.");
|
||
|
strings.push_back("");
|
||
|
strings.push_back("");
|
||
|
strings.push_back("Press the combo you want to use for making screenshots now");
|
||
|
strings.push_back("for 2 seconds.");
|
||
|
strings.push_back(" ");
|
||
|
strings.push_back("Otherwise the default combo (L+R+ZR+ZL button) will be used");
|
||
|
strings.push_back("in 10 seconds.");
|
||
|
strings.push_back(" ");
|
||
|
strings.push_back("Press the TV buttons to exit with the default combo.");
|
||
|
|
||
|
uint8_t pos = 0;
|
||
|
for (std::vector<std::string>::iterator it = strings.begin() ; it != strings.end(); ++it) {
|
||
|
OSScreenPutFontEx(SCREEN_TV, 0, pos, (*it).c_str());
|
||
|
OSScreenPutFontEx(SCREEN_DRC, 0, pos, (*it).c_str());
|
||
|
pos++;
|
||
|
}
|
||
|
|
||
|
OSScreenFlipBuffersEx(SCREEN_TV);
|
||
|
OSScreenFlipBuffersEx(SCREEN_DRC);
|
||
|
|
||
|
int32_t tickswait = time * FPS * 16;
|
||
|
|
||
|
int32_t sleepingtime = 16;
|
||
|
int32_t times = tickswait/16;
|
||
|
int32_t i=0;
|
||
|
|
||
|
VPADStatus vpad_data;
|
||
|
VPADReadError error;
|
||
|
uint32_t last = 0xFFFFFFFF;
|
||
|
int32_t timer = 0;
|
||
|
while(i<times) {
|
||
|
VPADRead(VPAD_CHAN_0, &vpad_data, 1, &error);
|
||
|
if(vpad_data.trigger == VPAD_BUTTON_TV) {
|
||
|
break;
|
||
|
}
|
||
|
if(last == vpad_data.hold && last != 0) {
|
||
|
timer++;
|
||
|
} else {
|
||
|
last = vpad_data.hold;
|
||
|
timer = 0;
|
||
|
}
|
||
|
if(timer >= combotime*FPS) {
|
||
|
result = vpad_data.hold;
|
||
|
break;
|
||
|
}
|
||
|
i++;
|
||
|
OSSleepTicks(OSMicrosecondsToTicks(sleepingtime*1000));
|
||
|
}
|
||
|
|
||
|
if(screenbuffer0 != NULL) {
|
||
|
free(screenbuffer0);
|
||
|
}
|
||
|
if(screenbuffer1 != NULL) {
|
||
|
free(screenbuffer1);
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}
|