1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-20 14:03:25 +01:00
Atmosphere/stratosphere/dmnt/source/dmnt_main.cpp

114 lines
2.9 KiB
C++
Raw Normal View History

2018-12-06 05:08:04 +00:00
/*
2019-04-08 03:00:49 +01:00
* Copyright (c) 2018-2019 Atmosphère-NX
2018-12-06 05:08:04 +00:00
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope 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/>.
*/
2018-12-06 05:08:04 +00:00
#include <cstdlib>
#include <cstdint>
#include <cstring>
#include <malloc.h>
#include <switch.h>
#include <atmosphere.h>
#include <stratosphere.hpp>
#include "dmnt_service.hpp"
2019-09-16 09:22:08 +01:00
#include "cheat/dmnt_cheat_service.hpp"
2018-12-06 05:08:04 +00:00
extern "C" {
extern u32 __start__;
u32 __nx_applet_type = AppletType_None;
2019-09-16 10:14:23 +01:00
#define INNER_HEAP_SIZE 0xC0000
2018-12-06 05:08:04 +00:00
size_t nx_inner_heap_size = INNER_HEAP_SIZE;
char nx_inner_heap[INNER_HEAP_SIZE];
2018-12-06 05:08:04 +00:00
void __libnx_initheap(void);
void __appInit(void);
void __appExit(void);
}
2019-07-03 04:54:16 +01:00
/* Exception handling. */
sts::ncm::TitleId __stratosphere_title_id = sts::ncm::TitleId::Dmnt;
2018-12-06 05:08:04 +00:00
void __libnx_initheap(void) {
void* addr = nx_inner_heap;
size_t size = nx_inner_heap_size;
/* Newlib */
extern char* fake_heap_start;
extern char* fake_heap_end;
fake_heap_start = (char*)addr;
fake_heap_end = (char*)addr + size;
}
void __appInit(void) {
SetFirmwareVersionForLibnx();
DoWithSmSession([&]() {
2019-06-20 10:00:59 +01:00
R_ASSERT(pmdmntInitialize());
2019-09-16 10:14:23 +01:00
R_ASSERT(pminfoInitialize());
2019-06-20 10:00:59 +01:00
R_ASSERT(ldrDmntInitialize());
2019-04-24 13:19:37 +01:00
/* TODO: We provide this on every sysver via ro. Do we need a shim? */
if (GetRuntimeFirmwareVersion() >= FirmwareVersion_300) {
2019-06-20 10:00:59 +01:00
R_ASSERT(roDmntInitialize());
}
2019-06-20 10:00:59 +01:00
R_ASSERT(nsdevInitialize());
R_ASSERT(lrInitialize());
R_ASSERT(setInitialize());
R_ASSERT(setsysInitialize());
2019-06-20 12:04:11 +01:00
R_ASSERT(hidInitialize());
2019-06-20 10:00:59 +01:00
R_ASSERT(fsInitialize());
});
2019-06-20 10:00:59 +01:00
R_ASSERT(fsdevMountSdmc());
2018-12-06 05:08:04 +00:00
CheckAtmosphereVersion(CURRENT_ATMOSPHERE_VERSION);
}
void __appExit(void) {
/* Cleanup services. */
fsdevUnmountAll();
fsExit();
2019-03-05 15:50:50 +00:00
hidExit();
setsysExit();
2018-12-06 05:08:04 +00:00
setExit();
lrExit();
nsdevExit();
2019-04-22 17:50:45 +01:00
roDmntExit();
2018-12-06 05:08:04 +00:00
ldrDmntExit();
2019-09-16 10:14:23 +01:00
pminfoExit();
2018-12-06 05:08:04 +00:00
pmdmntExit();
}
int main(int argc, char **argv)
{
2019-02-27 10:50:53 +00:00
/* Nintendo uses four threads. Add a fifth for our cheat service. */
static auto s_server_manager = WaitableManager(5);
/* Create services. */
/* TODO: Implement rest of dmnt:- in ams.tma development branch. */
/* server_manager->AddWaitable(new ServiceServer<DebugMonitorService>("dmnt:-", 4)); */
2019-09-16 09:22:08 +01:00
s_server_manager.AddWaitable(new ServiceServer<sts::dmnt::cheat::CheatService>("dmnt:cht", 1));
/* Loop forever, servicing our services. */
s_server_manager.Process();
2018-12-06 05:08:04 +00:00
return 0;
}