mirror of
https://github.com/joel16/VitaShell.git
synced 2024-11-23 11:49:40 +00:00
220 lines
5.2 KiB
C
220 lines
5.2 KiB
C
/*
|
|
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/>.
|
|
*/
|
|
|
|
#ifndef __MAIN_H__
|
|
#define __MAIN_H__
|
|
|
|
#include <psp2/appmgr.h>
|
|
#include <psp2/apputil.h>
|
|
#include <psp2/audioout.h>
|
|
#include <psp2/audiodec.h>
|
|
#include <psp2/ctrl.h>
|
|
#include <psp2/display.h>
|
|
#include <psp2/libssl.h>
|
|
#include <psp2/ime_dialog.h>
|
|
#include <psp2/message_dialog.h>
|
|
#include <psp2/moduleinfo.h>
|
|
#include <psp2/musicexport.h>
|
|
#include <psp2/photoexport.h>
|
|
#include <psp2/pgf.h>
|
|
#include <psp2/power.h>
|
|
#include <psp2/rtc.h>
|
|
#include <psp2/sysmodule.h>
|
|
#include <psp2/system_param.h>
|
|
#include <psp2/touch.h>
|
|
#include <psp2/types.h>
|
|
#include <psp2/kernel/modulemgr.h>
|
|
#include <psp2/kernel/processmgr.h>
|
|
#include <psp2/io/dirent.h>
|
|
#include <psp2/io/fcntl.h>
|
|
#include <psp2/net/http.h>
|
|
#include <psp2/net/net.h>
|
|
#include <psp2/net/netctl.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include <malloc.h>
|
|
|
|
#include <math.h>
|
|
#include <unistd.h>
|
|
#include <ctype.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include <vita2d.h>
|
|
#include <ftpvita.h>
|
|
|
|
#include "functions.h"
|
|
|
|
#define INCLUDE_EXTERN_RESOURCE(name) extern unsigned char _binary_resources_##name##_start; extern unsigned char _binary_resources_##name##_size; \
|
|
|
|
#define ENABLE_FILE_LOGGING 1
|
|
|
|
// VitaShell version major.minor
|
|
#define VITASHELL_VERSION_MAJOR 0x01
|
|
#define VITASHELL_VERSION_MINOR 0x20
|
|
|
|
#define VITASHELL_VERSION ((VITASHELL_VERSION_MAJOR << 0x18) | (VITASHELL_VERSION_MINOR << 0x10))
|
|
|
|
#define VITASHELL_LASTDIR "ux0:VitaShell/internal/lastdir.txt"
|
|
|
|
#define ALIGN(x, align) (((x) + ((align) - 1)) & ~((align) - 1))
|
|
|
|
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
|
|
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
|
|
|
|
#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
|
|
|
|
#define pgf_draw_text(x, y, color, scale, text) \
|
|
vita2d_pgf_draw_text(font, x, (y) + 20, color, scale, text)
|
|
|
|
#define pgf_draw_textf(x, y, color, scale, ...) \
|
|
vita2d_pgf_draw_textf(font, x, (y) + 20, color, scale, __VA_ARGS__)
|
|
|
|
// Screen
|
|
#define SCREEN_WIDTH 960
|
|
#define SCREEN_HEIGHT 544
|
|
#define SCREEN_HALF_WIDTH (SCREEN_WIDTH / 2)
|
|
#define SCREEN_HALF_HEIGHT (SCREEN_HEIGHT / 2)
|
|
|
|
// Main
|
|
#define SHELL_MARGIN_X 20.0f
|
|
#define SHELL_MARGIN_Y 18.0f
|
|
|
|
#define PATH_Y (SHELL_MARGIN_Y + 1.0f * FONT_Y_SPACE)
|
|
|
|
#define START_Y (SHELL_MARGIN_Y + 3.0f * FONT_Y_SPACE)
|
|
|
|
#define MAX_WIDTH (SCREEN_WIDTH - (2.0f * SHELL_MARGIN_X))
|
|
|
|
// 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
|
|
|
|
// 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_MORE_MIN_WIDTH 200.0f
|
|
#define CONTEXT_MENU_MIN_WIDTH 180.0f
|
|
#define CONTEXT_MENU_MARGIN 20.0f
|
|
#define CONTEXT_MENU_VELOCITY 10.0f
|
|
|
|
// File browser
|
|
#define MARK_WIDTH (SCREEN_WIDTH - 2.0f * SHELL_MARGIN_X)
|
|
#define INFORMATION_X 680.0f
|
|
#define MAX_NAME_WIDTH 500.0f
|
|
|
|
// Uncommon dialog
|
|
#define UNCOMMON_DIALOG_PROGRESS_BAR_BOX_WIDTH 420.0f
|
|
#define UNCOMMON_DIALOG_PROGRESS_BAR_HEIGHT 8.0f
|
|
|
|
// Max entries
|
|
#define MAX_POSITION 16
|
|
#define MAX_ENTRIES 17
|
|
|
|
#define BIG_BUFFER_SIZE 16 * 1024 * 1024
|
|
|
|
enum RefreshModes {
|
|
REFRESH_MODE_NONE,
|
|
REFRESH_MODE_NORMAL,
|
|
REFRESH_MODE_SETFOCUS,
|
|
};
|
|
|
|
enum DialogSteps {
|
|
DIALOG_STEP_NONE,
|
|
|
|
DIALOG_STEP_CANCELLED,
|
|
|
|
DIALOG_STEP_ERROR,
|
|
DIALOG_STEP_INFO,
|
|
DIALOG_STEP_SYSTEM,
|
|
|
|
DIALOG_STEP_FTP_WAIT,
|
|
DIALOG_STEP_FTP,
|
|
|
|
DIALOG_STEP_RENAME,
|
|
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,
|
|
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_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,
|
|
};
|
|
|
|
extern vita2d_pgf *font;
|
|
extern char font_size_cache[256];
|
|
|
|
extern int SCE_CTRL_ENTER, SCE_CTRL_CANCEL;
|
|
|
|
extern volatile int dialog_step;
|
|
|
|
extern int use_custom_config;
|
|
|
|
void drawScrollBar(int pos, int n);
|
|
void drawShellInfo(char *path);
|
|
|
|
int isInArchive();
|
|
|
|
void ftpvita_PROM(ftpvita_client_info_t *client);
|
|
void install_unassisted_sync(char *path);
|
|
|
|
#endif
|