replace linux file macros with std::filesystem usage

This commit is contained in:
scawful
2024-05-28 20:56:08 -04:00
parent bdf040aec7
commit b0bfcb6c7b
2 changed files with 9 additions and 21 deletions

View File

@@ -389,11 +389,8 @@ absl::Status Controller::LoadFontFamilies() const {
for (const auto &font_path : font_paths) {
float font_size =
(font_path == DROID_SANS) ? FONT_SIZE_DROID_SANS : FONT_SIZE_DEFAULT;
std::string actual_font_path = font_path;
#ifdef __linux__
std::string const HOME = std::getenv("HOME") ? std::getenv("HOME") : ".";
actual_font_path = absl::StrCat(HOME, "/", font_path);
#endif
std::string actual_font_path =
std::filesystem::absolute(font_path).string();
if (!io.Fonts->AddFontFromFileTTF(actual_font_path.data(), font_size)) {
return absl::InternalError(
@@ -402,19 +399,15 @@ absl::Status Controller::LoadFontFamilies() const {
// Merge icon set
const char *icon_font_path = FONT_ICON_FILE_NAME_MD;
std::string actual_icon_font_path = icon_font_path;
#ifdef __linux__
actual_icon_font_path = absl::StrCat(HOME, "/", icon_font_path);
#endif
std::string actual_icon_font_path =
std::filesystem::absolute(icon_font_path).string();
io.Fonts->AddFontFromFileTTF(actual_icon_font_path.data(), ICON_FONT_SIZE,
&icons_config, icons_ranges);
// Merge Japanese font
const char *japanese_font_path = NOTO_SANS_JP;
std::string actual_japanese_font_path = japanese_font_path;
#ifdef __linux__
actual_japanese_font_path = absl::StrCat(HOME, "/", japanese_font_path);
#endif
std::string actual_japanese_font_path =
std::filesystem::absolute(japanese_font_path).string();
io.Fonts->AddFontFromFileTTF(actual_japanese_font_path.data(), 18.0f,
&japanese_font_config,
io.Fonts->GetGlyphRangesJapanese());

View File

@@ -127,12 +127,7 @@ absl::Status Rom::LoadAllGraphicsData() {
}
absl::Status Rom::LoadFromFile(const std::string& filename, bool z3_load) {
std::string full_filename = filename;
#ifdef __linux__
std::string const HOME = std::getenv("HOME") ? std::getenv("HOME") : ".";
std::cout << "Home directory: " << HOME << std::endl;
full_filename = absl::StrCat(HOME, "/", filename);
#endif
std::string full_filename = std::filesystem::absolute(filename).string();
if (full_filename.empty()) {
return absl::InvalidArgumentError(
"Could not load ROM: parameter `filename` is empty.");
@@ -144,7 +139,7 @@ absl::Status Rom::LoadFromFile(const std::string& filename, bool z3_load) {
std::ifstream file(filename_, std::ios::binary);
if (!file.is_open()) {
return absl::InternalError(
absl::StrCat("Could not open ROM file: ", filename));
absl::StrCat("Could not open ROM file: ", filename_));
}
// Get file size and resize rom_data_
@@ -152,7 +147,7 @@ absl::Status Rom::LoadFromFile(const std::string& filename, bool z3_load) {
size_ = std::filesystem::file_size(filename_);
} catch (const std::filesystem::filesystem_error& e) {
return absl::InternalError(
absl::StrCat("Could not get file size: ", filename, " - ", e.what()));
absl::StrCat("Could not get file size: ", filename_, " - ", e.what()));
}
rom_data_.resize(size_);