mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-07 08:49:08 +00:00
Last new implemented thing for v2.2.0.
This commit is contained in:
@@ -43,16 +43,24 @@ private:
|
|||||||
void DrawStoreList(void) const;
|
void DrawStoreList(void) const;
|
||||||
void DrawStore(void) const;
|
void DrawStore(void) const;
|
||||||
void DrawSearch(void) const;
|
void DrawSearch(void) const;
|
||||||
|
void DrawGitHubScreen(void) const;
|
||||||
|
|
||||||
void SubMenuLogic(u32 hDown, u32 hHeld, touchPosition touch);
|
void SubMenuLogic(u32 hDown, u32 hHeld, touchPosition touch);
|
||||||
void StoreSelectionLogic(u32 hDown, u32 hHeld, touchPosition touch);
|
void StoreSelectionLogic(u32 hDown, u32 hHeld, touchPosition touch);
|
||||||
void StoreLogic(u32 hDown, u32 hHeld, touchPosition touch);
|
void StoreLogic(u32 hDown, u32 hHeld, touchPosition touch);
|
||||||
void SearchLogic(u32 hDown, u32 hHeld, touchPosition touch);
|
void SearchLogic(u32 hDown, u32 hHeld, touchPosition touch);
|
||||||
|
void GitHubLogic(u32 hDown, u32 hHeld, touchPosition touch);
|
||||||
|
|
||||||
|
|
||||||
void execute();
|
void execute();
|
||||||
void descript();
|
void descript();
|
||||||
int mode = 0;
|
int mode = 0;
|
||||||
std::string selectedOptionAppStore;
|
std::string selectedOptionAppStore;
|
||||||
|
|
||||||
|
// Stuff for the GitHub Store Search function.
|
||||||
|
std::string OwnerAndRepo = "";
|
||||||
|
std::string fileName = "";
|
||||||
|
|
||||||
mutable int selection = 0;
|
mutable int selection = 0;
|
||||||
mutable int selection2 = 0;
|
mutable int selection2 = 0;
|
||||||
int screenPos = 0;
|
int screenPos = 0;
|
||||||
@@ -81,6 +89,12 @@ private:
|
|||||||
{170, 100, 140, 35, -1}, // Github.
|
{170, 100, 140, 35, -1}, // Github.
|
||||||
};
|
};
|
||||||
|
|
||||||
|
std::vector<Structs::ButtonPos> GitHubPos = {
|
||||||
|
{30, 50, 260, 30, -1}, // Owner & Repo.
|
||||||
|
{30, 130, 260, 30, -1}, // Filename.
|
||||||
|
{135, 180, 50, 30, -1}, // OK.
|
||||||
|
};
|
||||||
|
|
||||||
std::vector<Structs::ButtonPos> subPos = {
|
std::vector<Structs::ButtonPos> subPos = {
|
||||||
{90, 40, 140, 35, -1}, // StoreList.
|
{90, 40, 140, 35, -1}, // StoreList.
|
||||||
{90, 100, 140, 35, -1}, // storeSearch.
|
{90, 100, 140, 35, -1}, // storeSearch.
|
||||||
|
|||||||
@@ -106,5 +106,9 @@
|
|||||||
"SCRIPTS_SUBMENU": "Scripts Submenu",
|
"SCRIPTS_SUBMENU": "Scripts Submenu",
|
||||||
"STORE_LIST": "Store list",
|
"STORE_LIST": "Store list",
|
||||||
"STORE_SEARCH": "Store search",
|
"STORE_SEARCH": "Store search",
|
||||||
"UNISTORE_SUBMENU": "UniStore SubMenu"
|
"UNISTORE_SUBMENU": "UniStore SubMenu",
|
||||||
|
|
||||||
|
"OWNER_AND_REPO": "Owner & Repo",
|
||||||
|
"FILENAME": "Filename",
|
||||||
|
"OK": "OK"
|
||||||
}
|
}
|
||||||
|
|||||||
+55
-14
@@ -322,6 +322,8 @@ void UniStore::Draw(void) const {
|
|||||||
DrawStore();
|
DrawStore();
|
||||||
} else if (mode == 3) {
|
} else if (mode == 3) {
|
||||||
DrawSearch();
|
DrawSearch();
|
||||||
|
} else if (mode == 4) {
|
||||||
|
DrawGitHubScreen();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -658,6 +660,8 @@ void UniStore::Logic(u32 hDown, u32 hHeld, touchPosition touch) {
|
|||||||
StoreLogic(hDown, hHeld, touch);
|
StoreLogic(hDown, hHeld, touch);
|
||||||
} else if (mode == 3) {
|
} else if (mode == 3) {
|
||||||
SearchLogic(hDown, hHeld, touch);
|
SearchLogic(hDown, hHeld, touch);
|
||||||
|
} else if (mode == 4) {
|
||||||
|
GitHubLogic(hDown, hHeld, touch);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Switch ViewMode.
|
// Switch ViewMode.
|
||||||
@@ -813,13 +817,7 @@ void UniStore::SearchLogic(u32 hDown, u32 hHeld, touchPosition touch) {
|
|||||||
std::string FILE = Input::getString(Lang::get("ENTER_FILENAME"));
|
std::string FILE = Input::getString(Lang::get("ENTER_FILENAME"));
|
||||||
ScriptHelper::downloadFile(fullURL, Config::StorePath + FILE, Lang::get("DOWNLOADING") + FILE);
|
ScriptHelper::downloadFile(fullURL, Config::StorePath + FILE, Lang::get("DOWNLOADING") + FILE);
|
||||||
} else if (searchSelection == 1) {
|
} else if (searchSelection == 1) {
|
||||||
std::string URL = "https://github.com/";
|
mode = 4;
|
||||||
URL += Input::getString(Lang::get("ENTER_OWNER_AND_REPO"));
|
|
||||||
gspWaitForVBlank();
|
|
||||||
std::string FILENAME = Input::getString(Lang::get("ENTER_FILENAME"));
|
|
||||||
URL += "/raw/master/unistore/";
|
|
||||||
URL += FILENAME;
|
|
||||||
ScriptHelper::downloadFile(URL, Config::StorePath + FILENAME, Lang::get("DOWNLOADING") + FILENAME);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -829,12 +827,55 @@ void UniStore::SearchLogic(u32 hDown, u32 hHeld, touchPosition touch) {
|
|||||||
std::string FILE = Input::getString(Lang::get("ENTER_FILENAME"));
|
std::string FILE = Input::getString(Lang::get("ENTER_FILENAME"));
|
||||||
ScriptHelper::downloadFile(fullURL, Config::StorePath + FILE, Lang::get("DOWNLOADING") + FILE);
|
ScriptHelper::downloadFile(fullURL, Config::StorePath + FILE, Lang::get("DOWNLOADING") + FILE);
|
||||||
} else if (hDown & KEY_TOUCH && touching(touch, URLBtn[1])) {
|
} else if (hDown & KEY_TOUCH && touching(touch, URLBtn[1])) {
|
||||||
std::string URL = "https://github.com/";
|
mode = 4;
|
||||||
URL += Input::getString(Lang::get("ENTER_OWNER_AND_REPO"));
|
}
|
||||||
gspWaitForVBlank();
|
}
|
||||||
std::string FILENAME = Input::getString(Lang::get("ENTER_FILENAME"));
|
|
||||||
URL += "/raw/master/unistore/";
|
void UniStore::DrawGitHubScreen(void) const {
|
||||||
URL += FILENAME;
|
Gui::DrawTop();
|
||||||
ScriptHelper::downloadFile(URL, Config::StorePath + FILENAME, Lang::get("DOWNLOADING") + FILENAME);
|
if (Config::UseBars == true) {
|
||||||
|
Gui::DrawStringCentered(0, 0, 0.7f, Config::TxtColor, Lang::get("GITHUB"), 400);
|
||||||
|
} else {
|
||||||
|
Gui::DrawStringCentered(0, 2, 0.7f, Config::TxtColor, Lang::get("GITHUB"), 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
Gui::sprite(sprites_uniStore_HD_idx, 140, 50, 0.2, 0.2);
|
||||||
|
Gui::DrawBottom();
|
||||||
|
Gui::DrawArrow(0, 218, 0, 1);
|
||||||
|
|
||||||
|
Gui::DrawStringCentered(0, 28, 0.7f, Config::TxtColor, Lang::get("OWNER_AND_REPO"), 320);
|
||||||
|
Gui::DrawStringCentered(0, 108, 0.7f, Config::TxtColor, Lang::get("FILENAME"), 320);
|
||||||
|
|
||||||
|
Gui::Draw_Rect(GitHubPos[0].x, GitHubPos[0].y, GitHubPos[0].w, GitHubPos[0].h, Config::Color1);
|
||||||
|
Gui::Draw_Rect(GitHubPos[1].x, GitHubPos[1].y, GitHubPos[1].w, GitHubPos[1].h, Config::Color1);
|
||||||
|
Gui::Draw_Rect(GitHubPos[2].x, GitHubPos[2].y, GitHubPos[2].w, GitHubPos[2].h, Config::Color1);
|
||||||
|
|
||||||
|
Gui::DrawStringCentered(0, 185, 0.7f, Config::TxtColor, Lang::get("OK"), 250);
|
||||||
|
Gui::DrawString(35, 57, 0.50f, Config::TxtColor, OwnerAndRepo, 260);
|
||||||
|
Gui::DrawString(35, 137, 0.50f, Config::TxtColor, fileName, 260);
|
||||||
|
}
|
||||||
|
|
||||||
|
void UniStore::GitHubLogic(u32 hDown, u32 hHeld, touchPosition touch) {
|
||||||
|
if (hDown & KEY_TOUCH && touching(touch, GitHubPos[0])) {
|
||||||
|
OwnerAndRepo = Input::getString(Lang::get("ENTER_OWNER_AND_REPO"));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hDown & KEY_TOUCH && touching(touch, GitHubPos[1])) {
|
||||||
|
fileName = Input::getString(Lang::get("ENTER_FILENAME"));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hDown & KEY_TOUCH && touching(touch, GitHubPos[2])) {
|
||||||
|
std::string URL = "https://github.com/";
|
||||||
|
URL += OwnerAndRepo;
|
||||||
|
URL += "/raw/master/unistore/";
|
||||||
|
URL += fileName;
|
||||||
|
ScriptHelper::downloadFile(URL, Config::StorePath + fileName, Lang::get("DOWNLOADING") + fileName);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((hDown & KEY_B) || (hDown & KEY_TOUCH && touching(touch, arrowPos[2]))) {
|
||||||
|
// Reset everything.
|
||||||
|
OwnerAndRepo = "";
|
||||||
|
fileName = "";
|
||||||
|
mode = 3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user