Services: Continue separation of services into their own folders
This commit is contained in:
parent
b1cb0a3f2c
commit
7933dbe6a0
75 changed files with 1190 additions and 637 deletions
42
src/core/hle/service/nim/nim.cpp
Normal file
42
src/core/hle/service/nim/nim.cpp
Normal file
|
@ -0,0 +1,42 @@
|
|||
// Copyright 2015 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "common/logging/log.h"
|
||||
|
||||
#include "core/hle/service/service.h"
|
||||
#include "core/hle/service/nim/nim.h"
|
||||
#include "core/hle/service/nim/nim_aoc.h"
|
||||
#include "core/hle/service/nim/nim_s.h"
|
||||
#include "core/hle/service/nim/nim_u.h"
|
||||
|
||||
#include "core/hle/kernel/event.h"
|
||||
#include "core/hle/kernel/shared_memory.h"
|
||||
#include "core/hle/hle.h"
|
||||
|
||||
namespace Service {
|
||||
namespace NIM {
|
||||
|
||||
void CheckSysUpdateAvailable(Service::Interface* self) {
|
||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
||||
|
||||
cmd_buff[1] = RESULT_SUCCESS.raw;
|
||||
cmd_buff[2] = 0; // No update available
|
||||
|
||||
LOG_WARNING(Service_NWM, "(STUBBED) called");
|
||||
}
|
||||
|
||||
void Init() {
|
||||
using namespace Kernel;
|
||||
|
||||
AddService(new NIM_AOC_Interface);
|
||||
AddService(new NIM_S_Interface);
|
||||
AddService(new NIM_U_Interface);
|
||||
}
|
||||
|
||||
void Shutdown() {
|
||||
}
|
||||
|
||||
} // namespace NIM
|
||||
|
||||
} // namespace Service
|
30
src/core/hle/service/nim/nim.h
Normal file
30
src/core/hle/service/nim/nim.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
// Copyright 2015 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "core/hle/kernel/kernel.h"
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
namespace Service {
|
||||
namespace NIM {
|
||||
|
||||
/**
|
||||
* NIM::CheckSysUpdateAvailable service function
|
||||
* Inputs:
|
||||
* 1 : None
|
||||
* Outputs:
|
||||
* 1 : Result of function, 0 on success, otherwise error code
|
||||
* 2 : flag, 0 = no system update available, 1 = system update available.
|
||||
*/
|
||||
void CheckSysUpdateAvailable(Service::Interface* self);
|
||||
|
||||
/// Initialize NIM service(s)
|
||||
void Init();
|
||||
|
||||
/// Shutdown NIM service(s)
|
||||
void Shutdown();
|
||||
|
||||
} // namespace NIM
|
||||
} // namespace Service
|
28
src/core/hle/service/nim/nim_aoc.cpp
Normal file
28
src/core/hle/service/nim/nim_aoc.cpp
Normal file
|
@ -0,0 +1,28 @@
|
|||
// Copyright 2014 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "core/hle/hle.h"
|
||||
#include "core/hle/service/nim/nim.h"
|
||||
#include "core/hle/service/nim/nim_aoc.h"
|
||||
|
||||
namespace Service {
|
||||
namespace NIM {
|
||||
|
||||
const Interface::FunctionInfo FunctionTable[] = {
|
||||
{0x00030042, nullptr, "SetApplicationId"},
|
||||
{0x00040042, nullptr, "SetTin"},
|
||||
{0x000902D0, nullptr, "ListContentSetsEx"},
|
||||
{0x00180000, nullptr, "GetBalance"},
|
||||
{0x001D0000, nullptr, "GetCustomerSupportCode"},
|
||||
{0x00210000, nullptr, "Initialize"},
|
||||
{0x00240282, nullptr, "CalculateContentsRequiredSize"},
|
||||
{0x00250000, nullptr, "RefreshServerTime"},
|
||||
};
|
||||
|
||||
NIM_AOC_Interface::NIM_AOC_Interface() {
|
||||
Register(FunctionTable);
|
||||
}
|
||||
|
||||
} // namespace NIM
|
||||
} // namespace Service
|
22
src/core/hle/service/nim/nim_aoc.h
Normal file
22
src/core/hle/service/nim/nim_aoc.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2014 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included..
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
namespace Service {
|
||||
namespace NIM {
|
||||
|
||||
class NIM_AOC_Interface : public Service::Interface {
|
||||
public:
|
||||
NIM_AOC_Interface();
|
||||
|
||||
std::string GetPortName() const override {
|
||||
return "nim:aoc";
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace NIM
|
||||
} // namespace Service
|
22
src/core/hle/service/nim/nim_s.cpp
Normal file
22
src/core/hle/service/nim/nim_s.cpp
Normal file
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2015 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "core/hle/hle.h"
|
||||
#include "core/hle/service/nim/nim.h"
|
||||
#include "core/hle/service/nim/nim_s.h"
|
||||
|
||||
namespace Service {
|
||||
namespace NIM {
|
||||
|
||||
const Interface::FunctionInfo FunctionTable[] = {
|
||||
{0x000A0000, nullptr, "CheckSysupdateAvailableSOAP"},
|
||||
};
|
||||
|
||||
NIM_S_Interface::NIM_S_Interface() {
|
||||
Register(FunctionTable);
|
||||
}
|
||||
|
||||
} // namespace NIM
|
||||
} // namespace Service
|
||||
|
22
src/core/hle/service/nim/nim_s.h
Normal file
22
src/core/hle/service/nim/nim_s.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2015 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included..
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
namespace Service {
|
||||
namespace NIM {
|
||||
|
||||
class NIM_S_Interface : public Service::Interface {
|
||||
public:
|
||||
NIM_S_Interface();
|
||||
|
||||
std::string GetPortName() const override {
|
||||
return "nim:s";
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace NIM
|
||||
} // namespace Service
|
27
src/core/hle/service/nim/nim_u.cpp
Normal file
27
src/core/hle/service/nim/nim_u.cpp
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Copyright 2015 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "core/hle/hle.h"
|
||||
#include "core/hle/service/nim/nim.h"
|
||||
#include "core/hle/service/nim/nim_u.h"
|
||||
|
||||
namespace Service {
|
||||
namespace NIM {
|
||||
|
||||
const Interface::FunctionInfo FunctionTable[] = {
|
||||
{0x00010000, nullptr, "StartSysUpdate"},
|
||||
{0x00020000, nullptr, "GetUpdateDownloadProgress"},
|
||||
{0x00040000, nullptr, "FinishTitlesInstall"},
|
||||
{0x00050000, nullptr, "CheckForSysUpdateEvent"},
|
||||
{0x00090000, CheckSysUpdateAvailable, "CheckSysUpdateAvailable"},
|
||||
{0x000A0000, nullptr, "GetState"},
|
||||
};
|
||||
|
||||
NIM_U_Interface::NIM_U_Interface() {
|
||||
Register(FunctionTable);
|
||||
}
|
||||
|
||||
} // namespace NIM
|
||||
} // namespace Service
|
||||
|
22
src/core/hle/service/nim/nim_u.h
Normal file
22
src/core/hle/service/nim/nim_u.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2015 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included..
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
namespace Service {
|
||||
namespace NIM {
|
||||
|
||||
class NIM_U_Interface : public Service::Interface {
|
||||
public:
|
||||
NIM_U_Interface();
|
||||
|
||||
std::string GetPortName() const override {
|
||||
return "nim:u";
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace NIM
|
||||
} // namespace Service
|
Loading…
Add table
Add a link
Reference in a new issue