summaryrefslogblamecommitdiffstats
path: root/src/core/hle/applets/mii_selector.h
blob: 24e8e721da05590910caf568b76e20ed6d558d16 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                            







                            
                               


































                                                                                                                                                        

                                         
                                                                           





                                                                                          

                                                                                                        



                                                                                        

                     



              
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "common/common_types.h"
#include "common/common_funcs.h"

#include "core/hle/applets/applet.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/shared_memory.h"
#include "core/hle/result.h"
#include "core/hle/service/apt/apt.h"

namespace HLE {
namespace Applets {

struct MiiConfig {
    u8  unk_000;
    u8  unk_001;
    u8  unk_002;
    u8  unk_003;
    u8  unk_004;
    INSERT_PADDING_BYTES(3);
    u16 unk_008;
    INSERT_PADDING_BYTES(0x82);
    u8  unk_08C;
    INSERT_PADDING_BYTES(3);
    u16 unk_090;
    INSERT_PADDING_BYTES(2);
    u32 unk_094;
    u16 unk_098;
    u8  unk_09A[0x64];
    u8  unk_0FE;
    u8  unk_0FF;
    u32 unk_100;
};

static_assert(sizeof(MiiConfig) == 0x104, "MiiConfig structure has incorrect size");
#define ASSERT_REG_POSITION(field_name, position) static_assert(offsetof(MiiConfig, field_name) == position, "Field "#field_name" has invalid position")
ASSERT_REG_POSITION(unk_008, 0x08);
ASSERT_REG_POSITION(unk_08C, 0x8C);
ASSERT_REG_POSITION(unk_090, 0x90);
ASSERT_REG_POSITION(unk_094, 0x94);
ASSERT_REG_POSITION(unk_0FE, 0xFE);
#undef ASSERT_REG_POSITION

struct MiiResult {
    u32 result_code;
    u8 unk_04;
    INSERT_PADDING_BYTES(7);
    u8 unk_0C[0x60];
    u8 unk_6C[0x16];
    INSERT_PADDING_BYTES(2);
};
static_assert(sizeof(MiiResult) == 0x84, "MiiResult structure has incorrect size");
#define ASSERT_REG_POSITION(field_name, position) static_assert(offsetof(MiiResult, field_name) == position, "Field "#field_name" has invalid position")
ASSERT_REG_POSITION(unk_0C, 0x0C);
ASSERT_REG_POSITION(unk_6C, 0x6C);
#undef ASSERT_REG_POSITION

class MiiSelector final : public Applet {
public:
    MiiSelector(Service::APT::AppletId id) : Applet(id), started(false) { }

    ResultCode ReceiveParameter(const Service::APT::MessageParameter& parameter) override;
    ResultCode StartImpl(const Service::APT::AppletStartupParameter& parameter) override;
    void Update() override;
    bool IsRunning() const override { return started; }

    /// This SharedMemory will be created when we receive the LibAppJustStarted message.
    /// It holds the framebuffer info retrieved by the application with GSPGPU::ImportDisplayCaptureInfo
    Kernel::SharedPtr<Kernel::SharedMemory> framebuffer_memory;

    /// Whether this applet is currently running instead of the host application or not.
    bool started;

    MiiConfig config;
};

}
} // namespace