[UI] Added modify profile UI

- Changed default icons size from 75x75 to 64x64 to match console icons size
- Added png_utils
- Removed all dialogs from xam_ui.cc into separate entities under xam/ui
- Added option to return INT32 and WSTRING type settings to host
- Added multiple enums related to user settings
- Added code to handle changing user pfp
- Fixed bug with system app being added to GPD played list
- Changed logic in: XamUserGetUserFlagsFromXUID
- Implemented: XamUserIsOnlineEnabled
- Implemented: XamUserGetMembershipTier
- Implemented: XamUserGetMembershipTierFromXUID
- Implemented: XamUserGetUserTenure
- Partially Implemented: XamUserGetSubscriptionType
This commit is contained in:
Gliniak
2025-05-10 12:52:05 +02:00
committed by Radosław Gliński
parent 270e88a7a7
commit e601b5ab87
30 changed files with 2904 additions and 1404 deletions

View File

@@ -0,0 +1,68 @@
/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2025 Xenia Canary. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#include "xenia/base/png_utils.h"
#include "xenia/base/filesystem.h"
#include "third_party/stb/stb_image.h"
namespace xe {
bool IsFilePngImage(const std::filesystem::path& file_path) {
FILE* file = xe::filesystem::OpenFile(file_path, "rb");
if (!file) {
return false;
}
constexpr uint8_t magic_size = 4;
char magic[magic_size];
if (fread(&magic, 1, magic_size, file) != magic_size) {
return false;
}
fclose(file);
if (magic[1] != 'P' || magic[2] != 'N' || magic[3] != 'G') {
return false;
}
return true;
}
std::pair<uint16_t, uint16_t> GetImageResolution(
const std::filesystem::path& file_path) {
FILE* file = xe::filesystem::OpenFile(file_path, "rb");
if (!file) {
return {};
}
int width, height, channels;
if (!stbi_info_from_file(file, &width, &height, &channels)) {
return {};
}
fclose(file);
return {width, height};
}
std::vector<uint8_t> ReadPngFromFile(const std::filesystem::path& file_path) {
FILE* file = xe::filesystem::OpenFile(file_path, "rb");
if (!file) {
return {};
}
const auto file_size = std::filesystem::file_size(file_path);
std::vector<uint8_t> data(file_size);
fread(data.data(), 1, file_size, file);
fclose(file);
return data;
}
} // namespace xe

View File

@@ -0,0 +1,27 @@
/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2025 Xenia Canary. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#ifndef XENIA_BASE_PNG_UTILS_H_
#define XENIA_BASE_PNG_UTILS_H_
#include <filesystem>
#include <utility>
#include <vector>
namespace xe {
bool IsFilePngImage(const std::filesystem::path& file_path);
std::pair<uint16_t, uint16_t> GetImageResolution(
const std::filesystem::path& file_path);
std::vector<uint8_t> ReadPngFromFile(const std::filesystem::path& file_path);
} // namespace xe
#endif // XENIA_BASE_PNG_UTILS_H_