Merge pull request #1000 from duckbill007/master

Gateshark cheats support
This commit is contained in:
TuxSH 2018-03-20 01:00:25 +01:00 committed by GitHub
commit fed62855cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 1350 additions and 1 deletions

3
.gitignore vendored
View File

@ -15,3 +15,6 @@ exceptions/arm11/build
*.cxi *.cxi
.DS_Store .DS_Store
*.dmp *.dmp
.project
.cproject
.settings

View File

@ -37,3 +37,4 @@ void RosalinaMenu_ShowCredits(void);
void RosalinaMenu_ProcessList(void); void RosalinaMenu_ProcessList(void);
void RosalinaMenu_PowerOff(void); void RosalinaMenu_PowerOff(void);
void RosalinaMenu_Reboot(void); void RosalinaMenu_Reboot(void);
void RosalinaMenu_Cheats(void);

View File

@ -0,0 +1,36 @@
/*
* This file is part of Luma3DS
* Copyright (C) 2016-2017 Aurora Wright, TuxSH
*
* 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/>.
*
* Additional Terms 7.b and 7.c of GPLv3 apply to this file:
* * Requiring preservation of specified reasonable legal notices or
* author attributions in that material or in the Appropriate Legal
* Notices displayed by works containing it.
* * Prohibiting misrepresentation of the origin of that material,
* or requiring that modified versions of such material be marked in
* reasonable ways as different from the original version.
*/
/* This file was entirely written by Duckbill */
#pragma once
#include <3ds/types.h>
#define CHEATS_PER_MENU_PAGE 18
void RosalinaMenu_Cheats(void);
void Cheat_ApplyKeyCheats();

View File

@ -33,6 +33,7 @@
#include "menus.h" #include "menus.h"
#include "utils.h" #include "utils.h"
#include "menus/n3ds.h" #include "menus/n3ds.h"
#include "menus/cheats.h"
#include "minisoc.h" #include "minisoc.h"
u32 waitInputWithTimeout(u32 msec) u32 waitInputWithTimeout(u32 msec)
@ -166,6 +167,12 @@ void menuThreadMain(void)
menuLeave(); menuLeave();
} }
} }
else
{
if (HID_PAD & 0xFFF) {
Cheat_ApplyKeyCheats();
}
}
svcSleepThread(50 * 1000 * 1000LL); svcSleepThread(50 * 1000 * 1000LL);
} }
} }

View File

@ -41,8 +41,9 @@
Menu rosalinaMenu = { Menu rosalinaMenu = {
"Rosalina menu", "Rosalina menu",
.nbItems = 9, .nbItems = 10,
{ {
{ "Cheats...", METHOD, .method = &RosalinaMenu_Cheats },
{ "Process list", METHOD, .method = &RosalinaMenu_ProcessList }, { "Process list", METHOD, .method = &RosalinaMenu_ProcessList },
{ "Take screenshot (slow!)", METHOD, .method = &RosalinaMenu_TakeScreenshot }, { "Take screenshot (slow!)", METHOD, .method = &RosalinaMenu_TakeScreenshot },
{ "New 3DS menu...", MENU, .menu = &N3DSMenu }, { "New 3DS menu...", MENU, .menu = &N3DSMenu },

File diff suppressed because it is too large Load Diff