1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-11-22 20:06:43 +00:00

[Scripting] Add <VERSION>, <WAIT>, <COLOR> + cleanup + version bump

This commit is contained in:
Such Meme, Many Skill 2020-02-10 14:16:17 +01:00
parent 4309194a11
commit a3b876ea3e
4 changed files with 76 additions and 34 deletions

View file

@ -11,7 +11,7 @@ include $(DEVKITARM)/base_rules
IPL_LOAD_ADDR := 0x40003000 IPL_LOAD_ADDR := 0x40003000
LPVERSION_MAJOR := 2 LPVERSION_MAJOR := 2
LPVERSION_MINOR := 3 LPVERSION_MINOR := 3
LPVERSION_BUGFX := 0 LPVERSION_BUGFX := 1
################################################################################ ################################################################################

View file

@ -27,7 +27,7 @@ void clearscreen(){
gfx_clear_grey(0x1B); gfx_clear_grey(0x1B);
gfx_box(0, 0, 719, 15, COLOR_WHITE); gfx_box(0, 0, 719, 15, COLOR_WHITE);
gfx_con_setpos(0, 0); gfx_con_setpos(0, 0);
gfx_printf("%k%KTegraexplorer v1.3.0%k%K\n", COLOR_DEFAULT, COLOR_WHITE, COLOR_WHITE, COLOR_DEFAULT); gfx_printf("%k%KTegraexplorer v1.3.1%k%K\n", COLOR_DEFAULT, COLOR_WHITE, COLOR_WHITE, COLOR_DEFAULT);
} }
int message(u32 color, const char* message, ...){ int message(u32 color, const char* message, ...){

View file

@ -13,79 +13,115 @@
#include "../storage/emummc.h" #include "../storage/emummc.h"
#include "script.h" #include "script.h"
#include <stdlib.h>
char func[11] = "", args[2][128] = {"", ""}; char func[11] = "", args[2][128] = {"", ""};
int res, errcode; int res, errcode;
const int scriptver = 131;
bool forceExit = false;
u32 currentcolor;
int Part_Move(){ void Part_SetColor(){
if (strcmpcheck(args[0], "RED"))
currentcolor = COLOR_RED;
else if (strcmpcheck(args[0], "ORANGE"))
currentcolor = COLOR_ORANGE;
else if (strcmpcheck(args[0], "YELLOW"))
currentcolor = COLOR_YELLOW;
else if (strcmpcheck(args[0], "GREEN"))
currentcolor = COLOR_GREEN;
else if (strcmpcheck(args[0], "BLUE"))
currentcolor = COLOR_BLUE;
else if (strcmpcheck(args[0], "VIOLET"))
currentcolor = COLOR_VIOLET;
else if (strcmpcheck(args[0], "WHITE"))
currentcolor = COLOR_WHITE;
}
void Part_Wait(){
int waitamount, begintime;
SWAPCOLOR(currentcolor);
waitamount = atoi(args[0]);
begintime = get_tmr_s();
while (begintime + waitamount > get_tmr_s()){
gfx_printf("\r<Wait %d seconds> ", (begintime + waitamount) - get_tmr_s());
}
gfx_printf("\r \r");
}
void Part_VersionCheck(){
int givenversion = atoi(args[0]);
if (givenversion > scriptver){
gfx_printf("Script required version is too high\nUpdate TegraExplorer!");
btn_wait();
forceExit = true;
}
}
void Part_Move(){
errcode = f_rename(args[0], args[1]); errcode = f_rename(args[0], args[1]);
f_rename(args[0], args[1]); if (errcode)
return errcode; f_rename(args[0], args[1]);
} }
int Part_Delete(){ void Part_Delete(){
errcode = f_unlink(args[0]); errcode = f_unlink(args[0]);
f_unlink(args[0]); if (errcode)
return errcode; f_unlink(args[0]);
} }
int Part_DeleteRecursive(){ void Part_DeleteRecursive(){
errcode = del_recursive(args[0]); errcode = del_recursive(args[0]);
return errcode;
} }
int Part_Copy(){ void Part_Copy(){
errcode = copy(args[0], args[1], true, false); errcode = copy(args[0], args[1], true, false);
return errcode;
} }
int Part_RecursiveCopy(){ void Part_RecursiveCopy(){
errcode = copy_recursive(args[0], args[1]); errcode = copy_recursive(args[0], args[1]);
return errcode;
} }
int Part_MakeFolder(){ void Part_MakeFolder(){
errcode = f_mkdir(args[0]); errcode = f_mkdir(args[0]);
f_mkdir(args[0]); if (errcode)
return errcode; f_mkdir(args[0]);
} }
int Part_ConnectMMC(){ void Part_ConnectMMC(){
if (strcmpcheck(args[0], "SYSMMC")) if (strcmpcheck(args[0], "SYSMMC"))
connect_mmc(SYSMMC); connect_mmc(SYSMMC);
if (strcmpcheck(args[0], "EMUMMC")) if (strcmpcheck(args[0], "EMUMMC"))
connect_mmc(EMUMMC); connect_mmc(EMUMMC);
return 0;
} }
int Part_MountMMC(){ void Part_MountMMC(){
errcode = mount_mmc(args[0], 2); errcode = mount_mmc(args[0], 2);
return errcode;
} }
int Part_Print(){ void Part_Print(){
RESETCOLOR; RESETCOLOR;
gfx_printf(args[0]); SWAPCOLOR(currentcolor);
gfx_printf("\n"); gfx_printf("%s\n", args[0]);
return 0;
} }
int Part_ErrorPrint(){ void Part_ErrorPrint(){
RESETCOLOR; RESETCOLOR;
SWAPCOLOR(COLOR_RED);
gfx_printf("Errorcode: %d\n", errcode); gfx_printf("Errorcode: %d\n", errcode);
return 0;
} }
bool forceExit = false; void Part_Exit(){
int Part_Exit(){
forceExit = true; forceExit = true;
return 0;
} }
u8 buttons_pressed = 0; u8 buttons_pressed = 0;
int Part_WaitOnUser(){ void Part_WaitOnUser(){
buttons_pressed = btn_wait(); buttons_pressed = btn_wait();
return (buttons_pressed & BTN_POWER);
} }
script_parts parts[] = { script_parts parts[] = {
@ -101,6 +137,9 @@ script_parts parts[] = {
{"DEL", Part_Delete, 1}, {"DEL", Part_Delete, 1},
{"DEL-R", Part_DeleteRecursive, 1}, {"DEL-R", Part_DeleteRecursive, 1},
{"MOVE", Part_Move, 2}, {"MOVE", Part_Move, 2},
{"VERSION", Part_VersionCheck, 1},
{"WAIT", Part_Wait, 1},
{"COLOR", Part_SetColor, 1},
{"NULL", NULL, -1} {"NULL", NULL, -1}
}; };
@ -110,6 +149,8 @@ int ParsePart(){
if (strcmpcheck(func, parts[i].name)) if (strcmpcheck(func, parts[i].name))
return i; return i;
} }
gfx_printf("Parsing error...\nPress any key to continue");
btn_wait();
forceExit = true; forceExit = true;
return -1; return -1;
} }
@ -132,6 +173,7 @@ void ParseScript(char* path){
int strlength; int strlength;
bool inifstatement = false; bool inifstatement = false;
forceExit = false; forceExit = false;
currentcolor = COLOR_WHITE;
clearscreen(); clearscreen();

View file

@ -1,7 +1,7 @@
#pragma once #pragma once
#define strcmpcheck(x, y) (!strcmp(x, y)) #define strcmpcheck(x, y) (!strcmp(x, y))
typedef int (*part_handler)(); typedef void (*part_handler)();
typedef struct _script_parts { typedef struct _script_parts {
char name[11]; char name[11];
part_handler handler; part_handler handler;