VitaShell/utils.c

328 lines
7.9 KiB
C
Raw Normal View History

2016-08-06 06:59:41 +00:00
/*
VitaShell
Copyright (C) 2015-2016, TheFloW
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.
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.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "main.h"
#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;
2016-08-28 14:36:27 +00:00
static uint64_t wallpaper_time_start = 0;
static int wallpaper_random_delay = 0;
static float wallpaper_alpha = 255.0f;
2016-09-03 20:14:07 +00:00
void startDrawing(vita2d_texture *bg) {
2016-08-28 14:36:27 +00:00
vita2d_start_drawing();
vita2d_set_clear_color(BACKGROUND_COLOR);
vita2d_clear_screen();
2016-09-03 20:14:07 +00:00
// Background image
if (bg)
vita2d_draw_texture(bg, 0.0f, 0.0f);
2016-08-28 14:36:27 +00:00
2016-09-03 20:14:07 +00:00
// Wallpaper
if (current_wallpaper_image) {
if (wallpaper_time_start == 0) {
wallpaper_time_start = sceKernelGetProcessTimeWide();
wallpaper_random_delay = randomNumber(15, 30);
2016-08-28 14:36:27 +00:00
}
2016-09-03 20:14:07 +00:00
if ((sceKernelGetProcessTimeWide() - wallpaper_time_start) >= (wallpaper_random_delay * 1000 * 1000)) {
int random_num = randomNumber(0, wallpaper_count - 1);
vita2d_texture *random_wallpaper_image = wallpaper_image[random_num];
if (random_wallpaper_image != current_wallpaper_image) {
previous_wallpaper_image = current_wallpaper_image;
current_wallpaper_image = random_wallpaper_image;
wallpaper_alpha = 0.0f;
}
wallpaper_time_start = 0;
}
2016-08-28 14:36:27 +00:00
if (previous_wallpaper_image) {
vita2d_draw_texture(previous_wallpaper_image, 0.0f, 0.0f);
}
if (wallpaper_alpha < 255.0f) {
vita2d_draw_texture_tint(current_wallpaper_image, 0.0f, 0.0f, RGBA8(255, 255, 255, (int)wallpaper_alpha));
wallpaper_alpha += 1.5f;
} else {
vita2d_draw_texture(current_wallpaper_image, 0.0f, 0.0f);
previous_wallpaper_image = NULL;
}
}
}
void endDrawing() {
drawUncommonDialog();
vita2d_end_drawing();
vita2d_common_dialog_update();
vita2d_swap_buffers();
sceDisplayWaitVblankStart();
}
2016-08-06 06:59:41 +00:00
void errorDialog(int error) {
if (error < 0) {
initMessageDialog(SCE_MSG_DIALOG_BUTTON_TYPE_OK, language_container[ERROR], error);
dialog_step = DIALOG_STEP_ERROR;
}
}
void infoDialog(char *msg, ...) {
va_list list;
char string[512];
va_start(list, msg);
vsprintf(string, msg, list);
va_end(list);
initMessageDialog(SCE_MSG_DIALOG_BUTTON_TYPE_OK, string);
dialog_step = DIALOG_STEP_INFO;
}
int power_tick_thread(SceSize args, void *argp) {
while (1) {
if (lock_power > 0) {
sceKernelPowerTick(SCE_KERNEL_POWER_TICK_DISABLE_AUTO_SUSPEND);
}
sceKernelDelayThread(10 * 1000 * 1000);
}
return 0;
}
void initPowerTickThread() {
SceUID thid = sceKernelCreateThread("power_tick_thread", power_tick_thread, 0x10000100, 0x40000, 0, 0, NULL);
if (thid >= 0)
sceKernelStartThread(thid, 0, NULL);
}
void powerLock() {
lock_power++;
}
void powerUnlock() {
lock_power--;
if (lock_power < 0) lock_power = 0;
2016-08-06 06:59:41 +00:00
}
void readPad() {
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;
}
current_buttons = pad.buttons;
pressed_buttons = current_buttons & ~old_buttons;
hold_buttons = pressed_buttons;
hold2_buttons = pressed_buttons;
released_buttons = ~current_buttons & old_buttons;
if (old_buttons == current_buttons) {
hold_n++;
if (hold_n >= 10) {
hold_buttons = current_buttons;
hold_n = 6;
}
hold2_n++;
if (hold2_n >= 10) {
hold2_buttons = current_buttons;
hold2_n = 10;
}
} else {
hold_n = 0;
hold2_n = 0;
old_buttons = current_buttons;
}
}
int holdButtons(SceCtrlData *pad, uint32_t buttons, uint64_t time) {
if ((pad->buttons & buttons) == buttons) {
uint64_t time_start = sceKernelGetProcessTimeWide();
while ((pad->buttons & buttons) == buttons) {
sceKernelDelayThread(10 * 1000);
sceCtrlPeekBufferPositive(0, pad, 1);
if ((sceKernelGetProcessTimeWide() - time_start) >= time) {
return 1;
}
}
}
return 0;
}
2016-09-06 19:57:04 +00:00
int hasEndSlash(char *path) {
return path[strlen(path) - 1] == '/';
}
2016-08-06 06:59:41 +00:00
int removeEndSlash(char *path) {
int len = strlen(path);
if (path[len - 1] == '/') {
path[len - 1] = '\0';
return 1;
}
return 0;
}
int addEndSlash(char *path) {
int len = strlen(path);
if (len < MAX_PATH_LENGTH - 2) {
if (path[len - 1] != '/') {
strcat(path, "/");
return 1;
}
}
return 0;
}
void getSizeString(char *string, uint64_t size) {
double double_size = (double)size;
int i = 0;
static char *units[] = { "B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" };
while (double_size >= 1024.0f) {
double_size /= 1024.0f;
i++;
}
sprintf(string, "%.*f %s", (i == 0) ? 0 : 2, double_size, units[i]);
}
void getDateString(char *string, int date_format, SceDateTime *time) {
2016-08-06 06:59:41 +00:00
switch (date_format) {
case SCE_SYSTEM_PARAM_DATE_FORMAT_YYYYMMDD:
sprintf(string, "%04d/%02d/%02d", time->year, time->month, time->day);
break;
case SCE_SYSTEM_PARAM_DATE_FORMAT_DDMMYYYY:
sprintf(string, "%02d/%02d/%04d", time->day, time->month, time->year);
break;
case SCE_SYSTEM_PARAM_DATE_FORMAT_MMDDYYYY:
sprintf(string, "%02d/%02d/%04d", time->month, time->day, time->year);
break;
}
}
void getTimeString(char *string, int time_format, SceDateTime *time) {
2016-08-29 19:57:53 +00:00
SceDateTime time_local;
SceRtcTick tick_utc;
SceRtcTick tick_local;
sceRtcGetTick(time, &tick_utc);
sceRtcConvertUtcToLocalTime(&tick_utc, &tick_local);
sceRtcSetTick(&time_local, &tick_local);
2016-08-06 06:59:41 +00:00
switch(time_format) {
case SCE_SYSTEM_PARAM_TIME_FORMAT_12HR:
sprintf(string, "%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");
2016-08-06 06:59:41 +00:00
break;
case SCE_SYSTEM_PARAM_TIME_FORMAT_24HR:
sprintf(string, "%02d:%02d", time_local.hour, time_local.minute);
2016-08-06 06:59:41 +00:00
break;
}
}
2016-08-28 14:36:27 +00:00
int randomNumber(int low, int high) {
return rand() % (high - low + 1) + low;
}
2016-08-06 06:59:41 +00:00
int debugPrintf(char *text, ...) {
#ifndef RELEASE
va_list list;
char string[512];
va_start(list, text);
vsprintf(string, text, list);
va_end(list);
#ifdef ENABLE_FILE_LOGGING
SceUID fd = sceIoOpen("ux0:vitashell_log.txt", SCE_O_WRONLY | SCE_O_CREAT | SCE_O_APPEND, 0777);
if (fd >= 0) {
sceIoWrite(fd, string, strlen(string));
sceIoClose(fd);
}
#endif
#endif
2016-09-04 10:55:15 +00:00
return 0;
}
int launchAppByUriExit(char *titleid) {
char uri[32];
sprintf(uri, "psgm:play?titleid=%s", titleid);
sceKernelDelayThread(10000);
sceAppMgrLaunchAppByUri(0xFFFFF, uri);
sceKernelDelayThread(10000);
sceAppMgrLaunchAppByUri(0xFFFFF, uri);
sceKernelExitProcess(0);
2016-08-06 06:59:41 +00:00
return 0;
}
char *strcasestr(const char *haystack, const char *needle) {
return boyer_moore(haystack, needle);
2016-09-04 08:44:48 +00:00
}