VitaShell/main.h

278 lines
6.5 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
*/
#ifndef __MAIN_H__
#define __MAIN_H__
2017-12-30 19:35:25 +00:00
#include <vitasdk.h>
2016-08-06 06:59:41 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <malloc.h>
2017-12-30 19:35:25 +00:00
#include <locale.h>
2016-08-06 06:59:41 +00:00
#include <math.h>
#include <unistd.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
2017-12-30 19:35:25 +00:00
#include <archive.h>
#include <archive_entry.h>
2017-01-04 19:08:04 +00:00
#include <zlib.h>
2016-08-06 06:59:41 +00:00
#include <vita2d.h>
#include <ftpvita.h>
2016-12-11 21:30:07 +00:00
#include <taihen.h>
2017-02-26 21:02:29 +00:00
#include <vitashell_user.h>
2017-02-13 10:06:23 +00:00
2017-02-13 20:07:09 +00:00
#include "file.h"
2016-11-02 18:54:40 +00:00
#include "vitashell_config.h"
2018-08-27 07:54:46 +00:00
#include "vitashell_error.h"
2016-08-06 06:59:41 +00:00
#define INCLUDE_EXTERN_RESOURCE(name) extern unsigned char _binary_resources_##name##_start; extern unsigned char _binary_resources_##name##_size; \
2016-08-06 06:59:41 +00:00
// VitaShell version major.minor
2019-08-27 21:25:13 +00:00
#define VITASHELL_VERSION_MAJOR 0x02
#define VITASHELL_VERSION_MINOR 0x00
2016-09-04 08:44:48 +00:00
#define VITASHELL_VERSION ((VITASHELL_VERSION_MAJOR << 0x18) | (VITASHELL_VERSION_MINOR << 0x10))
2016-08-06 06:59:41 +00:00
2016-09-10 10:58:22 +00:00
#define VITASHELL_LASTDIR "ux0:VitaShell/internal/lastdir.txt"
// needs / at the end
#define VITASHELL_BOOKMARKS_PATH "ux0:VitaShell/bookmarks/"
#define VITASHELL_RECENT_PATH "ux0:VitaShell/recent/"
#define VITASHELL_RECENT_PATH_DELETE_INTERVAL_DAYS 14
2018-01-27 14:28:51 +00:00
#define VITASHELL_TITLEID "VITASHELL"
2017-10-13 10:42:36 +00:00
#define ALIGN(x, align) (((x) + ((align) - 1)) & ~((align) - 1))
2016-08-06 06:59:41 +00:00
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
2016-10-31 18:35:25 +00:00
#define IS_DIGIT(i) (i >= '0' && i <= '9')
2016-08-06 06:59:41 +00:00
#define NOALPHA 0xFF
#define COLOR_ALPHA(color, alpha) (color & 0x00FFFFFF) | ((alpha & 0xFF) << 24)
// Font
#define FONT_SIZE 1.0f
#define FONT_X_SPACE 15.0f
#define FONT_Y_SPACE 23.0f
2017-12-29 23:23:08 +00:00
#define pgf_draw_text(x, y, color, text) \
vita2d_pgf_draw_text(font, x, (y)+20, color, FONT_SIZE, text)
2016-08-06 06:59:41 +00:00
2017-12-29 23:23:08 +00:00
#define pgf_draw_textf(x, y, color, ...) \
vita2d_pgf_draw_textf(font, x, (y)+20, color, FONT_SIZE, __VA_ARGS__)
2016-08-06 06:59:41 +00:00
2017-12-29 23:23:08 +00:00
#define pgf_text_width(text) \
vita2d_pgf_text_width(font, FONT_SIZE, text)
2016-08-06 06:59:41 +00:00
// Screen
#define SCREEN_WIDTH 960
#define SCREEN_HEIGHT 544
2017-02-24 23:31:47 +00:00
#define SCREEN_HALF_WIDTH (SCREEN_WIDTH/2)
#define SCREEN_HALF_HEIGHT (SCREEN_HEIGHT/2)
2016-08-06 06:59:41 +00:00
// Main
#define SHELL_MARGIN_X 20.0f
#define SHELL_MARGIN_Y 18.0f
2017-10-13 10:42:36 +00:00
#define PATH_Y (SHELL_MARGIN_Y + 1.0f * FONT_Y_SPACE)
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
#define START_Y (SHELL_MARGIN_Y + 3.0f * FONT_Y_SPACE)
2016-08-06 06:59:41 +00:00
2017-10-13 10:42:36 +00:00
#define MAX_WIDTH (SCREEN_WIDTH - 2.0f * SHELL_MARGIN_X)
2016-08-06 06:59:41 +00:00
2017-02-12 15:27:43 +00:00
#define STATUS_BAR_SPACE_X 12.0f
2016-08-06 06:59:41 +00:00
// Hex
#define HEX_OFFSET_X 147.0f
#define HEX_CHAR_X (SCREEN_WIDTH - SHELL_MARGIN_X - 0x10 * FONT_X_SPACE)
#define HEX_OFFSET_SPACE 34.0f
2017-01-04 19:08:04 +00:00
// Coredump
#define COREDUMP_INFO_X (SHELL_MARGIN_X + 160.0f)
#define COREDUMP_REGISTER_NAME_SPACE 45.0f
#define COREDUMP_REGISTER_SPACE 165.0f
2016-08-06 06:59:41 +00:00
// Scroll bar
#define SCROLL_BAR_X 0.0f
#define SCROLL_BAR_WIDTH 8.0f
#define SCROLL_BAR_MIN_HEIGHT 4.0f
// Context menu
#define CONTEXT_MENU_MIN_WIDTH 180.0f
#define CONTEXT_MENU_MARGIN 20.0f
#define CONTEXT_MENU_VELOCITY 10.0f
// File browser
2017-02-24 21:50:17 +00:00
#define FILE_X (SHELL_MARGIN_X+26.0f)
2017-10-13 10:42:36 +00:00
#define MARK_WIDTH (SCREEN_WIDTH - 2.0f * SHELL_MARGIN_X)
2016-08-06 06:59:41 +00:00
#define INFORMATION_X 680.0f
#define MAX_NAME_WIDTH 500.0f
2016-08-06 06:59:41 +00:00
// Uncommon dialog
2017-09-19 02:37:43 +00:00
#define UNCOMMON_DIALOG_MAX_WIDTH 800
2016-08-06 06:59:41 +00:00
#define UNCOMMON_DIALOG_PROGRESS_BAR_BOX_WIDTH 420.0f
#define UNCOMMON_DIALOG_PROGRESS_BAR_HEIGHT 8.0f
#define MSG_DIALOG_MODE_QR_SCAN 10
// QR Camera
#define CAM_WIDTH 640
#define CAM_HEIGHT 360
2016-08-06 06:59:41 +00:00
// Max entries
#define MAX_QR_LENGTH 1024
2016-08-06 06:59:41 +00:00
#define MAX_POSITION 16
#define MAX_ENTRIES 17
#define MAX_URL_LENGTH 128
2016-08-06 06:59:41 +00:00
#define BIG_BUFFER_SIZE 16 * 1024 * 1024
2016-10-15 14:49:06 +00:00
enum RefreshModes {
2017-10-13 10:42:36 +00:00
REFRESH_MODE_NONE,
REFRESH_MODE_NORMAL,
REFRESH_MODE_SETFOCUS,
2016-10-15 14:49:06 +00:00
};
2016-08-06 06:59:41 +00:00
enum DialogSteps {
2017-10-13 10:42:36 +00:00
DIALOG_STEP_NONE,
2018-01-28 10:28:02 +00:00
DIALOG_STEP_CANCELED,
2017-10-13 10:42:36 +00:00
DIALOG_STEP_ERROR,
DIALOG_STEP_INFO,
DIALOG_STEP_SYSTEM,
DIALOG_STEP_REFRESH_LIVEAREA_QUESTION,
DIALOG_STEP_REFRESH_LICENSE_DB_QUESTION,
2017-10-13 10:42:36 +00:00
DIALOG_STEP_REFRESHING,
2017-10-13 10:42:36 +00:00
DIALOG_STEP_USB_ATTACH_WAIT,
DIALOG_STEP_FTP_WAIT,
DIALOG_STEP_FTP,
DIALOG_STEP_USB_WAIT,
DIALOG_STEP_USB,
DIALOG_STEP_RENAME,
DIALOG_STEP_NEW_FILE,
2017-10-13 10:42:36 +00:00
DIALOG_STEP_NEW_FOLDER,
DIALOG_STEP_COPYING,
DIALOG_STEP_COPIED,
DIALOG_STEP_MOVED,
DIALOG_STEP_PASTE,
DIALOG_STEP_DELETE_QUESTION,
DIALOG_STEP_DELETE_CONFIRMED,
DIALOG_STEP_DELETING,
DIALOG_STEP_DELETED,
DIALOG_STEP_COMPRESS_NAME,
DIALOG_STEP_COMPRESS_LEVEL,
DIALOG_STEP_COMPRESSING,
DIALOG_STEP_COMPRESSED,
DIALOG_STEP_EXPORT_QUESTION,
DIALOG_STEP_EXPORT_CONFIRMED,
DIALOG_STEP_EXPORTING,
DIALOG_STEP_INSTALL_QUESTION,
DIALOG_STEP_INSTALL_CONFIRMED,
DIALOG_STEP_INSTALL_CONFIRMED_QR,
DIALOG_STEP_INSTALL_WARNING,
DIALOG_STEP_INSTALL_WARNING_AGREED,
DIALOG_STEP_INSTALLING,
DIALOG_STEP_INSTALLED,
DIALOG_STEP_UPDATE_QUESTION,
DIALOG_STEP_DOWNLOADING,
DIALOG_STEP_DOWNLOADED,
DIALOG_STEP_EXTRACTING,
DIALOG_STEP_EXTRACTED,
DIALOG_STEP_HASH_QUESTION,
DIALOG_STEP_HASH_CONFIRMED,
DIALOG_STEP_HASHING,
DIALOG_STEP_SETTINGS_AGREEMENT,
DIALOG_STEP_SETTINGS_STRING,
DIALOG_STEP_QR,
DIALOG_STEP_QR_DONE,
DIALOG_STEP_QR_WAITING,
DIALOG_STEP_QR_CONFIRM,
DIALOG_STEP_QR_DOWNLOADING,
DIALOG_STEP_QR_DOWNLOADED,
DIALOG_STEP_QR_DOWNLOADED_VPK,
DIALOG_STEP_QR_OPEN_WEBSITE,
DIALOG_STEP_QR_SHOW_CONTENTS,
DIALOG_STEP_ENTER_PASSWORD,
2018-01-26 10:36:14 +00:00
DIALOG_STEP_ADHOC_SEND_NETCHECK,
2018-01-27 14:28:51 +00:00
DIALOG_STEP_ADHOC_SEND_WAITING,
DIALOG_STEP_ADHOC_SEND_CLIENT_DECLINED,
DIALOG_STEP_ADHOC_SENDING,
DIALOG_STEP_ADHOC_SENDED,
2018-01-26 10:36:14 +00:00
DIALOG_STEP_ADHOC_RECEIVE_NETCHECK,
DIALOG_STEP_ADHOC_RECEIVE_SEARCHING,
DIALOG_STEP_ADHOC_RECEIVE_QUESTION,
2018-01-27 14:28:51 +00:00
DIALOG_STEP_ADHOC_RECEIVING,
DIALOG_STEP_ADHOC_RECEIVED,
2016-08-06 06:59:41 +00:00
};
extern vita2d_pgf *font;
extern char font_size_cache[256];
extern char vita_ip[16];
extern unsigned short int vita_port;
2016-11-02 18:54:40 +00:00
extern VitaShellConfig vitashell_config;
2016-08-06 06:59:41 +00:00
extern int SCE_CTRL_ENTER, SCE_CTRL_CANCEL;
2016-08-27 10:49:03 +00:00
extern int use_custom_config;
2017-02-24 17:42:34 +00:00
int getDialogStep();
void setDialogStep(int step);
int dialogSteps();
void initFtp();
void initUsb();
2017-02-24 17:42:34 +00:00
2016-08-06 06:59:41 +00:00
void drawScrollBar(int pos, int n);
2017-02-12 15:27:43 +00:00
void drawShellInfo(const char *path);
2016-08-06 06:59:41 +00:00
2016-09-04 14:41:00 +00:00
void ftpvita_PROM(ftpvita_client_info_t *client);
2016-08-08 21:31:41 +00:00
#endif