mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 21:21:50 +00:00
1a931b0256
and prepare for file menu more and fix that you can't go left right when going up down
89 lines
No EOL
2.7 KiB
C
89 lines
No EOL
2.7 KiB
C
#include "explorer.h"
|
|
#include "../../utils/vector.h"
|
|
#include "../readers/folderReader.h"
|
|
#include "../../gfx/menu.h"
|
|
#include "../fsutils.h"
|
|
#include "../../gfx/gfx.h"
|
|
#include "../../gfx/gfxutils.h"
|
|
#include "../../utils/utils.h"
|
|
#include "filemenu.h"
|
|
#include <string.h>
|
|
#include <mem/heap.h>
|
|
|
|
MenuEntry_t topEntries[] = {
|
|
{.optionUnion = COLORTORGB(COLOR_GREEN) | SKIPBIT},
|
|
{.optionUnion = COLORTORGB(COLOR_ORANGE), .name = "Back"},
|
|
{.optionUnion = COLORTORGB(COLOR_GREY) | SKIPBIT, .name = "Clipboard -> Current folder"},
|
|
{.optionUnion = COLORTORGB(COLOR_GREY) | SKIPBIT, .name = "Current folder options"}
|
|
};
|
|
|
|
MenuEntry_t MakeMenuOutFSEntry(FSEntry_t entry){
|
|
MenuEntry_t out = {.name = entry.name, .sizeUnion = entry.sizeUnion};
|
|
out.optionUnion = (entry.isDir) ? COLORTORGB(COLOR_WHITE) : COLORTORGB(COLOR_VIOLET);
|
|
out.icon = (entry.isDir) ? 127 : 128;
|
|
|
|
return out;
|
|
}
|
|
|
|
void clearFileVector(Vector_t *v){
|
|
vecPDefArray(FSEntry_t*, entries, v);
|
|
for (int i = 0; i < v->count; i++)
|
|
free(entries[i].name);
|
|
|
|
free(v->data);
|
|
}
|
|
|
|
void FileExplorer(char *path){
|
|
char *storedPath = path;
|
|
int res = 0;
|
|
|
|
while (1){
|
|
gfx_clearscreen();
|
|
gfx_printf("Loading...\r");
|
|
//gfx_printf(" ");
|
|
Vector_t fileVec = ReadFolder(storedPath);
|
|
vecDefArray(FSEntry_t*, fsEntries, fileVec);
|
|
|
|
topEntries[0].name = storedPath;
|
|
Vector_t entries = newVec(sizeof(MenuEntry_t), fileVec.count + ARR_LEN(topEntries));
|
|
entries.count = ARR_LEN(topEntries);
|
|
memcpy(entries.data, topEntries, sizeof(MenuEntry_t) * ARR_LEN(topEntries));
|
|
|
|
for (int i = 0; i < fileVec.count; i++){
|
|
MenuEntry_t a = MakeMenuOutFSEntry(fsEntries[i]);
|
|
vecAddElem(&entries, a);
|
|
}
|
|
|
|
gfx_con_setpos(144, 16);
|
|
gfx_boxGrey(0, 16, 160, 31, 0x1B);
|
|
|
|
if (res >= fileVec.count + ARR_LEN(topEntries))
|
|
res = 0;
|
|
|
|
res = newMenu(&entries, res, 60, 42, ENABLEB | ENABLEPAGECOUNT, (int)fileVec.count);
|
|
|
|
if (res < ARR_LEN(topEntries)) {
|
|
if (!strcmp(storedPath, path)){
|
|
clearFileVector(&fileVec);
|
|
return;
|
|
}
|
|
|
|
char *copy = CpyStr(storedPath);
|
|
storedPath = EscapeFolder(copy);
|
|
free(copy);
|
|
res = 0;
|
|
}
|
|
else if (fsEntries[res - ARR_LEN(topEntries)].isDir) {
|
|
char *copy = CpyStr(storedPath);
|
|
storedPath = CombinePaths(copy, fsEntries[res - ARR_LEN(topEntries)].name);
|
|
free(copy);
|
|
res = 0;
|
|
}
|
|
else {
|
|
FileMenu(fsEntries[res - ARR_LEN(topEntries)]);
|
|
}
|
|
|
|
|
|
clearFileVector(&fileVec);
|
|
}
|
|
} |