VitaShell/utils.c

372 lines
9.1 KiB
C
Raw Normal View History

2016-08-06 06:59:41 +00:00
/*
2017-10-13 10:42:36 +00:00
VitaShell
2017-12-30 10:43:37 +00:00
Copyright (C) 2015-2018, TheFloW
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
2016-08-06 06:59:41 +00:00
*/
#include "main.h"
2017-03-18 09:56:46 +00:00
#include "init.h"
2016-08-06 06:59:41 +00:00
#include "file.h"
#include "message_dialog.h"
2016-08-28 14:36:27 +00:00
#include "uncommon_dialog.h"
#include "theme.h"
2016-08-06 06:59:41 +00:00
#include "language.h"
#include "utils.h"
#include "bm.h"
2016-08-06 06:59:41 +00:00
SceCtrlData pad;
uint32_t old_buttons, current_buttons, pressed_buttons, hold_buttons, hold2_buttons, released_buttons;
static int netdbg_sock = -1;
static void *net_memory = NULL;
static int net_init = -1;
static int lock_power = 0;
2017-02-12 17:53:00 +00:00
float easeOut(float x0, float x1, float a, float b) {
2017-10-13 10:42:36 +00:00
float dx = (x1 - x0);
return ((dx * a) > b) ? (dx * a) : dx;
2017-02-12 17:53:00 +00:00
}
2016-09-03 20:14:07 +00:00
void startDrawing(vita2d_texture *bg) {
2017-10-13 10:42:36 +00:00
vita2d_start_drawing();
vita2d_set_clear_color(BACKGROUND_COLOR);
vita2d_clear_screen();
if (wallpaper_image) {
vita2d_draw_texture(wallpaper_image, 0.0f, 0.0f);
} else if (bg) {
vita2d_draw_texture(bg, 0.0f, 0.0f);
}
2016-08-28 14:36:27 +00:00
}
void endDrawing() {
2017-10-13 10:42:36 +00:00
drawUncommonDialog();
vita2d_end_drawing();
vita2d_common_dialog_update();
vita2d_swap_buffers();
sceDisplayWaitVblankStart();
2016-08-28 14:36:27 +00:00
}
2016-09-12 20:34:03 +00:00
void closeWaitDialog() {
2017-10-13 10:42:36 +00:00
sceMsgDialogClose();
2016-09-12 20:34:03 +00:00
2017-10-13 10:42:36 +00:00
while (updateMessageDialog() != MESSAGE_DIALOG_RESULT_NONE) {
sceKernelDelayThread(1000);
}
2016-09-12 20:34:03 +00:00
}
2016-08-06 06:59:41 +00:00
void errorDialog(int error) {
2017-10-13 10:42:36 +00:00
if (error < 0) {
initMessageDialog(SCE_MSG_DIALOG_BUTTON_TYPE_OK, language_container[ERROR], error);
setDialogStep(DIALOG_STEP_ERROR);
}
2016-08-06 06:59:41 +00:00
}
2017-02-12 15:27:43 +00:00
void infoDialog(const char *msg, ...) {
2017-10-13 10:42:36 +00:00
va_list list;
char string[512];
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
va_start(list, msg);
vsnprintf(string, sizeof(string), msg, list);
va_end(list);
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
initMessageDialog(SCE_MSG_DIALOG_BUTTON_TYPE_OK, string);
setDialogStep(DIALOG_STEP_INFO);
2016-08-06 06:59:41 +00:00
}
2017-03-18 09:56:46 +00:00
int checkMemoryCardFreeSpace(const char *path, uint64_t size) {
2017-10-13 10:42:36 +00:00
char device[8];
uint64_t free_size = 0, max_size = 0, extra_space = 0;
char *p = strchr(path, ':');
if (p) {
strncpy(device, path, p-path + 1);
device[p-path + 1] = '\0';
}
if (strcmp(device, "ux0:") == 0) {
extra_space = 40 * 1024 * 1024;
}
if (is_safe_mode) {
sceAppMgrGetDevInfo(device, &max_size, &free_size);
} else {
SceIoDevInfo info;
memset(&info, 0, sizeof(SceIoDevInfo));
sceIoDevctl(device, 0x3001, NULL, 0, &info, sizeof(SceIoDevInfo));
free_size = info.free_size;
max_size = info.max_size;
}
if (size >= (free_size + extra_space)) {
closeWaitDialog();
char size_string[16];
getSizeString(size_string, size - (free_size + extra_space));
infoDialog(language_container[NO_SPACE_ERROR], size_string);
return 1;
}
return 0;
2016-09-12 20:34:03 +00:00
}
2017-02-12 15:27:43 +00:00
static int power_tick_thread(SceSize args, void *argp) {
2017-10-13 10:42:36 +00:00
while (1) {
if (lock_power > 0) {
sceKernelPowerTick(SCE_KERNEL_POWER_TICK_DISABLE_AUTO_SUSPEND);
}
2017-10-13 10:42:36 +00:00
sceKernelDelayThread(10 * 1000 * 1000);
}
2017-10-13 10:42:36 +00:00
return 0;
}
void initPowerTickThread() {
2017-10-13 10:42:36 +00:00
SceUID thid = sceKernelCreateThread("power_tick_thread", power_tick_thread, 0x10000100, 0x40000, 0, 0, NULL);
if (thid >= 0)
sceKernelStartThread(thid, 0, NULL);
}
void powerLock() {
2017-10-13 10:42:36 +00:00
if (!lock_power)
sceShellUtilLock(SCE_SHELL_UTIL_LOCK_TYPE_PS_BTN);
2016-11-03 15:57:08 +00:00
2017-10-13 10:42:36 +00:00
lock_power++;
}
void powerUnlock() {
2017-10-13 10:42:36 +00:00
if (lock_power)
sceShellUtilUnlock(SCE_SHELL_UTIL_LOCK_TYPE_PS_BTN);
2016-11-03 15:57:08 +00:00
2017-10-13 10:42:36 +00:00
lock_power--;
if (lock_power < 0)
lock_power = 0;
2016-08-06 06:59:41 +00:00
}
void readPad() {
2017-10-13 10:42:36 +00:00
static int hold_n = 0, hold2_n = 0;
memset(&pad, 0, sizeof(SceCtrlData));
sceCtrlPeekBufferPositive(0, &pad, 1);
if (pad.ly < ANALOG_CENTER-ANALOG_THRESHOLD) {
pad.buttons |= SCE_CTRL_LEFT_ANALOG_UP;
} else if (pad.ly > ANALOG_CENTER+ANALOG_THRESHOLD) {
pad.buttons |= SCE_CTRL_LEFT_ANALOG_DOWN;
}
if (pad.lx < ANALOG_CENTER-ANALOG_THRESHOLD) {
pad.buttons |= SCE_CTRL_LEFT_ANALOG_LEFT;
} else if (pad.lx > ANALOG_CENTER+ANALOG_THRESHOLD) {
pad.buttons |= SCE_CTRL_LEFT_ANALOG_RIGHT;
}
if (pad.ry < ANALOG_CENTER-ANALOG_THRESHOLD) {
pad.buttons |= SCE_CTRL_RIGHT_ANALOG_UP;
} else if (pad.ry > ANALOG_CENTER+ANALOG_THRESHOLD) {
pad.buttons |= SCE_CTRL_RIGHT_ANALOG_DOWN;
}
if (pad.rx < ANALOG_CENTER-ANALOG_THRESHOLD) {
pad.buttons |= SCE_CTRL_RIGHT_ANALOG_LEFT;
} else if (pad.rx > ANALOG_CENTER+ANALOG_THRESHOLD) {
pad.buttons |= SCE_CTRL_RIGHT_ANALOG_RIGHT;
}
old_buttons = current_buttons;
current_buttons = pad.buttons;
pressed_buttons = current_buttons & ~old_buttons;
released_buttons = ~current_buttons & old_buttons;
hold_buttons = pressed_buttons;
hold2_buttons = pressed_buttons;
if ((old_buttons & current_buttons) == current_buttons) {
if (hold_n >= 10) {
hold_buttons = current_buttons;
hold_n = 6;
}
if (hold2_n >= 10) {
hold2_buttons = current_buttons;
hold2_n = 10;
}
hold_n++;
hold2_n++;
} else {
hold_n = 0;
hold2_n = 0;
}
2016-08-06 06:59:41 +00:00
}
int holdButtons(SceCtrlData *pad, uint32_t buttons, uint64_t time) {
2017-10-13 10:42:36 +00:00
if ((pad->buttons & buttons) == buttons) {
uint64_t time_start = sceKernelGetProcessTimeWide();
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
while ((pad->buttons & buttons) == buttons) {
sceKernelDelayThread(10 * 1000);
sceCtrlPeekBufferPositive(0, pad, 1);
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
if ((sceKernelGetProcessTimeWide() - time_start) >= time) {
return 1;
}
}
}
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
return 0;
2016-08-06 06:59:41 +00:00
}
2017-02-12 15:27:43 +00:00
int hasEndSlash(const char *path) {
2017-10-13 10:42:36 +00:00
return path[strlen(path) - 1] == '/';
2016-09-06 19:57:04 +00:00
}
2016-08-06 06:59:41 +00:00
int removeEndSlash(char *path) {
2017-10-13 10:42:36 +00:00
int len = strlen(path);
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
if (path[len - 1] == '/') {
path[len - 1] = '\0';
return 1;
}
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
return 0;
2016-08-06 06:59:41 +00:00
}
int addEndSlash(char *path) {
2017-10-13 10:42:36 +00:00
int len = strlen(path);
if (len < MAX_PATH_LENGTH - 2) {
if (path[len - 1] != '/') {
strcat(path, "/");
return 1;
}
}
return 0;
2016-08-06 06:59:41 +00:00
}
2017-02-25 09:27:52 +00:00
void getSizeString(char string[16], uint64_t size) {
2017-10-13 10:42:36 +00:00
double double_size = (double)size;
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
int i = 0;
static char *units[] = { "B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" };
while (double_size >= 1024.0) {
double_size /= 1024.0;
i++;
}
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
snprintf(string, 16, "%.*f %s", (i == 0) ? 0 : 2, double_size, units[i]);
2016-08-06 06:59:41 +00:00
}
2016-11-01 08:53:35 +00:00
void convertUtcToLocalTime(SceDateTime *time_local, SceDateTime *time_utc) {
2017-10-13 10:42:36 +00:00
SceRtcTick tick;
sceRtcGetTick(time_utc, &tick);
sceRtcConvertUtcToLocalTime(&tick, &tick);
sceRtcSetTick(time_local, &tick);
2016-11-01 08:53:35 +00:00
}
void convertLocalTimeToUtc(SceDateTime *time_utc, SceDateTime *time_local) {
2017-10-13 10:42:36 +00:00
SceRtcTick tick;
sceRtcGetTick(time_local, &tick);
sceRtcConvertLocalTimeToUtc(&tick, &tick);
sceRtcSetTick(time_utc, &tick);
2016-11-01 08:53:35 +00:00
}
2017-02-25 09:27:52 +00:00
void getDateString(char string[24], int date_format, SceDateTime *time) {
2017-10-13 10:42:36 +00:00
SceDateTime time_local;
convertUtcToLocalTime(&time_local, time);
switch (date_format) {
case SCE_SYSTEM_PARAM_DATE_FORMAT_YYYYMMDD:
snprintf(string, 24, "%04d/%02d/%02d", time_local.year, time_local.month, time_local.day);
break;
case SCE_SYSTEM_PARAM_DATE_FORMAT_DDMMYYYY:
snprintf(string, 24, "%02d/%02d/%04d", time_local.day, time_local.month, time_local.year);
break;
case SCE_SYSTEM_PARAM_DATE_FORMAT_MMDDYYYY:
snprintf(string, 24, "%02d/%02d/%04d", time_local.month, time_local.day, time_local.year);
break;
}
2016-08-06 06:59:41 +00:00
}
2017-02-25 09:27:52 +00:00
void getTimeString(char string[16], int time_format, SceDateTime *time) {
2017-10-13 10:42:36 +00:00
SceDateTime time_local;
convertUtcToLocalTime(&time_local, time);
switch(time_format) {
case SCE_SYSTEM_PARAM_TIME_FORMAT_12HR:
snprintf(string, 16, "%02d:%02d %s", (time_local.hour > 12) ? (time_local.hour-12) : ((time_local.hour == 0) ? 12 : time_local.hour), time_local.minute, time_local.hour >= 12 ? "PM" : "AM");
break;
case SCE_SYSTEM_PARAM_TIME_FORMAT_24HR:
snprintf(string, 16, "%02d:%02d", time_local.hour, time_local.minute);
break;
}
2016-08-06 06:59:41 +00:00
}
2017-02-12 15:27:43 +00:00
int debugPrintf(const char *text, ...) {
2017-10-13 10:42:36 +00:00
va_list list;
char string[512];
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
va_start(list, text);
vsnprintf(string, sizeof(string), text, list);
va_end(list);
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
SceUID fd = sceIoOpen("tm0:vitashell_log.txt", SCE_O_WRONLY | SCE_O_CREAT | SCE_O_APPEND, 0777);
if (fd >= 0) {
sceIoWrite(fd, string, strlen(string));
sceIoClose(fd);
}
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
return 0;
2016-09-04 10:55:15 +00:00
}
2017-02-12 15:27:43 +00:00
int launchAppByUriExit(const char *titleid) {
2017-10-13 10:42:36 +00:00
char uri[32];
snprintf(uri, sizeof(uri), "psgm:play?titleid=%s", titleid);
2016-09-04 10:55:15 +00:00
2017-10-13 10:42:36 +00:00
sceKernelDelayThread(10000);
sceAppMgrLaunchAppByUri(0xFFFFF, uri);
sceKernelDelayThread(10000);
sceAppMgrLaunchAppByUri(0xFFFFF, uri);
2016-09-04 10:55:15 +00:00
2017-10-13 10:42:36 +00:00
sceKernelExitProcess(0);
2016-09-04 10:55:15 +00:00
2017-10-13 10:42:36 +00:00
return 0;
}
char *strcasestr(const char *haystack, const char *needle) {
2017-10-13 10:42:36 +00:00
return boyer_moore(haystack, needle);
2016-10-18 12:35:35 +00:00
}
2017-01-12 16:45:52 +00:00
2017-02-13 10:06:23 +00:00
int vshIoMount(int id, const char *path, int permission, int a4, int a5, int a6) {
2017-10-13 10:42:36 +00:00
uint32_t buf[3];
2017-01-12 16:45:52 +00:00
2017-10-13 10:42:36 +00:00
buf[0] = a4;
buf[1] = a5;
buf[2] = a6;
2017-01-12 16:45:52 +00:00
2017-10-13 10:42:36 +00:00
return _vshIoMount(id, path, permission, buf);
2017-01-12 16:45:52 +00:00
}
2017-02-24 17:42:34 +00:00
void remount(int id) {
2017-10-13 10:42:36 +00:00
vshIoUmount(id, 0, 0, 0);
vshIoUmount(id, 1, 0, 0);
vshIoMount(id, NULL, 0, 0, 0, 0);
2017-01-12 16:45:52 +00:00
}