2023-05-27 17:45:41 +02:00
|
|
|
#include "window.hpp"
|
2021-04-20 21:46:48 +02:00
|
|
|
#include "init/splash_window.hpp"
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2022-02-01 18:09:40 +01:00
|
|
|
#include <hex/api/imhex_api.hpp>
|
2023-05-14 21:50:58 +02:00
|
|
|
#include <hex/api/task.hpp>
|
|
|
|
|
2021-04-17 15:46:26 +02:00
|
|
|
#include <hex/helpers/utils.hpp>
|
2023-02-08 14:11:42 +01:00
|
|
|
#include <hex/helpers/utils_macos.hpp>
|
2021-08-29 22:15:18 +02:00
|
|
|
#include <hex/helpers/fmt.hpp>
|
|
|
|
#include <hex/helpers/logger.hpp>
|
2021-12-22 15:06:16 +01:00
|
|
|
|
|
|
|
#include <romfs/romfs.hpp>
|
2021-04-17 15:46:26 +02:00
|
|
|
|
|
|
|
#include <imgui.h>
|
|
|
|
#include <imgui_internal.h>
|
2021-12-31 01:10:06 +01:00
|
|
|
#include <hex/ui/imgui_imhex_extensions.h>
|
2021-04-17 15:46:26 +02:00
|
|
|
#include <imgui_impl_glfw.h>
|
|
|
|
#include <imgui_impl_opengl3.h>
|
2022-07-26 14:59:08 +02:00
|
|
|
#include <fonts/fontawesome_font.h>
|
2021-04-17 15:46:26 +02:00
|
|
|
#include <GLFW/glfw3.h>
|
|
|
|
|
2023-03-12 18:27:29 +01:00
|
|
|
#include <wolv/utils/guards.hpp>
|
|
|
|
|
2021-04-17 15:46:26 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <chrono>
|
2021-08-29 14:18:45 +02:00
|
|
|
#include <future>
|
|
|
|
#include <numeric>
|
2023-07-22 18:21:47 +02:00
|
|
|
#include <random>
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2023-10-04 12:00:32 +02:00
|
|
|
#if defined(OS_WEB)
|
|
|
|
#define GLFW_INCLUDE_ES3
|
|
|
|
#include <GLES3/gl3.h>
|
|
|
|
#include <emscripten/html5.h>
|
|
|
|
#else
|
|
|
|
#include <imgui_impl_opengl3_loader.h>
|
|
|
|
#endif
|
|
|
|
|
2021-04-17 15:46:26 +02:00
|
|
|
using namespace std::literals::chrono_literals;
|
|
|
|
|
2021-04-20 21:46:48 +02:00
|
|
|
namespace hex::init {
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2023-05-27 17:45:41 +02:00
|
|
|
struct GlfwError {
|
|
|
|
int errorCode = 0;
|
|
|
|
std::string desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
GlfwError lastGlfwError;
|
|
|
|
|
2021-12-30 23:21:32 +01:00
|
|
|
WindowSplash::WindowSplash() : m_window(nullptr) {
|
2021-04-17 15:46:26 +02:00
|
|
|
this->initGLFW();
|
|
|
|
this->initImGui();
|
2023-09-07 20:33:49 +02:00
|
|
|
this->initMyself();
|
2022-02-15 22:36:36 +01:00
|
|
|
|
2022-07-02 17:53:13 +02:00
|
|
|
ImHexApi::System::impl::setGPUVendor(reinterpret_cast<const char *>(glGetString(GL_VENDOR)));
|
2021-04-17 15:46:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
WindowSplash::~WindowSplash() {
|
2022-01-18 00:10:10 +01:00
|
|
|
this->exitImGui();
|
|
|
|
this->exitGLFW();
|
2021-04-17 15:46:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::future<bool> WindowSplash::processTasksAsync() {
|
|
|
|
return std::async(std::launch::async, [this] {
|
|
|
|
bool status = true;
|
2022-09-19 21:56:43 +02:00
|
|
|
std::atomic<u32> tasksCompleted = 0;
|
2023-09-27 14:14:27 +02:00
|
|
|
|
|
|
|
// Loop over all registered init tasks
|
2022-09-19 16:54:19 +02:00
|
|
|
for (const auto &[name, task, async] : this->m_tasks) {
|
2023-09-27 14:14:27 +02:00
|
|
|
|
|
|
|
// Construct a new task callback
|
2022-09-19 21:56:43 +02:00
|
|
|
auto runTask = [&, task = task, name = name] {
|
2023-07-15 14:29:14 +02:00
|
|
|
try {
|
2023-09-27 14:14:27 +02:00
|
|
|
// Save an iterator to the current task name
|
2023-07-15 14:29:14 +02:00
|
|
|
decltype(this->m_currTaskNames)::iterator taskNameIter;
|
|
|
|
{
|
|
|
|
std::lock_guard guard(this->m_progressMutex);
|
|
|
|
this->m_currTaskNames.push_back(name + "...");
|
|
|
|
taskNameIter = std::prev(this->m_currTaskNames.end());
|
|
|
|
}
|
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// When the task finished, increment the progress bar
|
2023-07-15 14:29:14 +02:00
|
|
|
ON_SCOPE_EXIT {
|
|
|
|
tasksCompleted++;
|
|
|
|
this->m_progress = float(tasksCompleted) / this->m_tasks.size();
|
|
|
|
};
|
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Execute the actual task and track the amount of time it took to run
|
2023-07-15 14:29:14 +02:00
|
|
|
auto startTime = std::chrono::high_resolution_clock::now();
|
2023-09-09 12:49:15 +02:00
|
|
|
bool taskStatus = task();
|
2023-07-15 14:29:14 +02:00
|
|
|
auto endTime = std::chrono::high_resolution_clock::now();
|
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
log::info("Task '{}' finished {} in {} ms",
|
|
|
|
name,
|
|
|
|
taskStatus ? "successfully" : "unsuccessfully",
|
|
|
|
std::chrono::duration_cast<std::chrono::milliseconds>(endTime - startTime).count()
|
|
|
|
);
|
|
|
|
|
|
|
|
// Track the overall status of the tasks
|
2023-09-09 12:49:15 +02:00
|
|
|
status = status && taskStatus;
|
2023-07-15 14:29:14 +02:00
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Erase the task name from the list of running tasks
|
2023-07-15 14:29:14 +02:00
|
|
|
{
|
|
|
|
std::lock_guard guard(this->m_progressMutex);
|
|
|
|
this->m_currTaskNames.erase(taskNameIter);
|
|
|
|
}
|
2023-09-27 14:14:27 +02:00
|
|
|
} catch (const std::exception &e) {
|
2023-07-15 14:29:14 +02:00
|
|
|
log::error("Init task '{}' threw an exception: {}", name, e.what());
|
2022-02-01 23:33:42 +01:00
|
|
|
status = false;
|
2023-07-19 21:40:24 +02:00
|
|
|
} catch (...) {
|
2023-09-27 14:14:27 +02:00
|
|
|
log::error("Init task '{}' threw an unidentifiable exception", name);
|
2023-07-19 21:40:24 +02:00
|
|
|
status = false;
|
2023-07-15 14:29:14 +02:00
|
|
|
}
|
2022-09-19 16:54:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// If the task can be run asynchronously, run it in a separate thread
|
|
|
|
// otherwise run it in this thread and wait for it to finish
|
2023-07-15 14:29:14 +02:00
|
|
|
if (async) {
|
2023-07-19 21:40:24 +02:00
|
|
|
std::thread([runTask]{ runTask(); }).detach();
|
2023-07-15 14:29:14 +02:00
|
|
|
} else {
|
|
|
|
runTask();
|
2021-05-21 23:46:36 +02:00
|
|
|
}
|
2021-04-17 15:46:26 +02:00
|
|
|
}
|
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Check every 100ms if all tasks have run
|
2022-09-19 21:56:43 +02:00
|
|
|
while (tasksCompleted < this->m_tasks.size()) {
|
2022-09-19 16:54:19 +02:00
|
|
|
std::this_thread::sleep_for(100ms);
|
2022-09-19 21:56:43 +02:00
|
|
|
}
|
2022-09-19 16:54:19 +02:00
|
|
|
|
2021-04-17 15:46:26 +02:00
|
|
|
// Small extra delay so the last progress step is visible
|
2022-09-19 21:56:43 +02:00
|
|
|
std::this_thread::sleep_for(100ms);
|
2021-04-17 15:46:26 +02:00
|
|
|
|
|
|
|
return status;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
FrameResult WindowSplash::fullFrame() {
|
|
|
|
glfwPollEvents();
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
// Start a new ImGui frame
|
|
|
|
ImGui_ImplOpenGL3_NewFrame();
|
|
|
|
ImGui_ImplGlfw_NewFrame();
|
|
|
|
ImGui::NewFrame();
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2022-02-01 18:09:40 +01:00
|
|
|
auto scale = ImHexApi::System::getGlobalScale();
|
2021-08-31 15:22:00 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
// Draw the splash screen background
|
|
|
|
auto drawList = ImGui::GetBackgroundDrawList();
|
|
|
|
{
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Draw the splash screen background
|
2023-09-07 20:33:49 +02:00
|
|
|
drawList->AddImage(this->splashBackgroundTexture, ImVec2(0, 0), this->splashBackgroundTexture.getSize() * scale);
|
2021-04-17 15:46:26 +02:00
|
|
|
|
|
|
|
{
|
2023-09-27 14:14:27 +02:00
|
|
|
|
|
|
|
// Function to highlight a given number of bytes at a position in the splash screen
|
2023-09-07 20:33:49 +02:00
|
|
|
const auto highlightBytes = [&](ImVec2 start, size_t count, ImColor color, float opacity) {
|
2023-09-27 14:14:27 +02:00
|
|
|
// Dimensions and number of bytes that are drawn. Taken from the splash screen image
|
2023-09-07 20:33:49 +02:00
|
|
|
const auto hexSize = ImVec2(29, 18) * scale;
|
|
|
|
const auto hexSpacing = ImVec2(17.4, 15) * scale;
|
|
|
|
const auto hexStart = ImVec2(27, 127) * scale;
|
2021-04-18 20:24:42 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
const auto hexCount = ImVec2(13, 7);
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
bool isStart = true;
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
color.Value.w *= opacity;
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Loop over all the bytes on the splash screen
|
2023-09-07 20:33:49 +02:00
|
|
|
for (u32 y = u32(start.y); y < u32(hexCount.y); y += 1) {
|
|
|
|
for (u32 x = u32(start.x); x < u32(hexCount.x); x += 1) {
|
|
|
|
if (count-- == 0)
|
|
|
|
return;
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Find the start position of the byte to draw
|
2023-09-07 20:33:49 +02:00
|
|
|
auto pos = hexStart + ImVec2(float(x), float(y)) * (hexSize + hexSpacing);
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Fill the rectangle in the byte with the given color
|
2023-09-07 20:33:49 +02:00
|
|
|
drawList->AddRectFilled(pos + ImVec2(0, -hexSpacing.y / 2), pos + hexSize + ImVec2(0, hexSpacing.y / 2), color);
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Add some extra color on the right if the current byte isn't the last byte, and we didn't reach the right side of the image
|
2023-09-07 20:33:49 +02:00
|
|
|
if (count > 0 && x != u32(hexCount.x) - 1)
|
|
|
|
drawList->AddRectFilled(pos + ImVec2(hexSize.x, -hexSpacing.y / 2), pos + hexSize + ImVec2(hexSpacing.x, hexSpacing.y / 2), color);
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Add some extra color on the left if this is the first byte we're highlighting
|
2023-09-07 20:33:49 +02:00
|
|
|
if (isStart) {
|
|
|
|
isStart = false;
|
|
|
|
drawList->AddRectFilled(pos - hexSpacing / 2, pos + ImVec2(0, hexSize.y + hexSpacing.y / 2), color);
|
|
|
|
}
|
2023-09-27 14:14:27 +02:00
|
|
|
|
|
|
|
// Add some extra color on the right if this is the last byte
|
2023-09-07 20:33:49 +02:00
|
|
|
if (count == 0) {
|
|
|
|
drawList->AddRectFilled(pos + ImVec2(hexSize.x, -hexSpacing.y / 2), pos + hexSize + hexSpacing / 2, color);
|
2023-07-22 18:21:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
start.x = 0;
|
|
|
|
}
|
|
|
|
};
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Draw all highlights, slowly fading them in as the init tasks progress
|
2023-09-07 20:33:49 +02:00
|
|
|
for (const auto &highlight : this->highlights)
|
|
|
|
highlightBytes(highlight.start, highlight.count, highlight.color, this->progressLerp);
|
|
|
|
}
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
this->progressLerp += (this->m_progress - this->progressLerp) * 0.1F;
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Draw the splash screen foreground
|
2023-09-07 20:33:49 +02:00
|
|
|
drawList->AddImage(this->splashTextTexture, ImVec2(0, 0), this->splashTextTexture.getSize() * scale);
|
2021-04-21 19:27:05 +02:00
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Draw the "copyright" notice
|
2023-09-07 20:33:49 +02:00
|
|
|
drawList->AddText(ImVec2(35, 85) * scale, ImColor(0xFF, 0xFF, 0xFF, 0xFF), hex::format("WerWolv\n2020 - {0}", &__DATE__[7]).c_str());
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Draw version information
|
|
|
|
// In debug builds, also display the current commit hash and branch
|
2023-09-07 20:33:49 +02:00
|
|
|
#if defined(DEBUG)
|
|
|
|
const static auto VersionInfo = hex::format("{0} : {1} {2}@{3}", ImHexApi::System::getImHexVersion(), ICON_FA_CODE_BRANCH, ImHexApi::System::getCommitBranch(), ImHexApi::System::getCommitHash());
|
|
|
|
#else
|
|
|
|
const static auto VersionInfo = hex::format("{0}", ImHexApi::System::getImHexVersion());
|
|
|
|
#endif
|
2021-08-04 18:57:53 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
drawList->AddText(ImVec2((this->splashBackgroundTexture.getSize().x * scale - ImGui::CalcTextSize(VersionInfo.c_str()).x) / 2, 105 * scale), ImColor(0xFF, 0xFF, 0xFF, 0xFF), VersionInfo.c_str());
|
|
|
|
}
|
2023-07-15 14:29:14 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
// Draw the task progress bar
|
|
|
|
{
|
|
|
|
std::lock_guard guard(this->m_progressMutex);
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
const auto progressBackgroundStart = ImVec2(99, 357) * scale;
|
|
|
|
const auto progressBackgroundSize = ImVec2(442, 30) * scale;
|
2023-07-22 18:21:47 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
const auto progressStart = progressBackgroundStart + ImVec2(0, 20) * scale;
|
|
|
|
const auto progressSize = ImVec2(progressBackgroundSize.x * this->m_progress, 10 * scale);
|
2023-09-27 14:14:27 +02:00
|
|
|
|
|
|
|
// Draw progress bar
|
2023-09-07 20:33:49 +02:00
|
|
|
drawList->AddRectFilled(progressStart, progressStart + progressSize, 0xD0FFFFFF);
|
|
|
|
|
2023-09-27 14:14:27 +02:00
|
|
|
// Draw task names separated by | characters
|
2023-09-07 20:33:49 +02:00
|
|
|
if (!this->m_currTaskNames.empty()) {
|
|
|
|
drawList->PushClipRect(progressBackgroundStart, progressBackgroundStart + progressBackgroundSize, true);
|
|
|
|
drawList->AddText(progressStart + ImVec2(5, -20) * scale, ImColor(0xFF, 0xFF, 0xFF, 0xFF), hex::format("{}", fmt::join(this->m_currTaskNames, " | ")).c_str());
|
|
|
|
drawList->PopClipRect();
|
2021-04-17 15:46:26 +02:00
|
|
|
}
|
2023-09-07 20:33:49 +02:00
|
|
|
}
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
// Render the frame
|
|
|
|
ImGui::Render();
|
|
|
|
int displayWidth, displayHeight;
|
|
|
|
glfwGetFramebufferSize(this->m_window, &displayWidth, &displayHeight);
|
|
|
|
glViewport(0, 0, displayWidth, displayHeight);
|
|
|
|
glClearColor(0.00F, 0.00F, 0.00F, 0.00F);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
glfwSwapBuffers(this->m_window);
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
// Check if all background tasks have finished so the splash screen can be closed
|
|
|
|
if (this->tasksSucceeded.wait_for(0s) == std::future_status::ready) {
|
2023-09-09 12:49:15 +02:00
|
|
|
if (this->tasksSucceeded.get()) {
|
|
|
|
log::debug("All tasks finished with success !");
|
|
|
|
return FrameResult::success;
|
|
|
|
} else {
|
|
|
|
log::warn("All tasks finished, but some failed");
|
|
|
|
return FrameResult::failure;
|
|
|
|
}
|
2021-04-17 15:46:26 +02:00
|
|
|
}
|
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
return FrameResult::wait;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WindowSplash::loop() {
|
|
|
|
// Splash window rendering loop
|
|
|
|
while (true) {
|
|
|
|
auto res = this->fullFrame();
|
|
|
|
if (res == FrameResult::success) return true;
|
|
|
|
else if (res == FrameResult::failure) return false;
|
|
|
|
}
|
2021-04-17 15:46:26 +02:00
|
|
|
}
|
|
|
|
|
2021-04-20 21:46:48 +02:00
|
|
|
static void centerWindow(GLFWwindow *window) {
|
2023-02-17 12:03:53 +01:00
|
|
|
// Get the primary monitor
|
2021-04-20 21:46:48 +02:00
|
|
|
GLFWmonitor *monitor = glfwGetPrimaryMonitor();
|
|
|
|
if (!monitor)
|
|
|
|
return;
|
|
|
|
|
2023-02-17 12:03:53 +01:00
|
|
|
// Get information about the monitor
|
2021-04-20 21:46:48 +02:00
|
|
|
const GLFWvidmode *mode = glfwGetVideoMode(monitor);
|
|
|
|
if (!mode)
|
|
|
|
return;
|
|
|
|
|
2023-02-17 12:03:53 +01:00
|
|
|
// Get the position of the monitor's viewport on the virtual screen
|
2021-04-20 21:46:48 +02:00
|
|
|
int monitorX, monitorY;
|
|
|
|
glfwGetMonitorPos(monitor, &monitorX, &monitorY);
|
|
|
|
|
2023-02-17 12:03:53 +01:00
|
|
|
// Get the window size
|
2021-04-20 21:46:48 +02:00
|
|
|
int windowWidth, windowHeight;
|
|
|
|
glfwGetWindowSize(window, &windowWidth, &windowHeight);
|
|
|
|
|
2023-02-17 12:03:53 +01:00
|
|
|
// Center the splash screen on the monitor
|
2021-04-20 21:46:48 +02:00
|
|
|
glfwSetWindowPos(window, monitorX + (mode->width - windowWidth) / 2, monitorY + (mode->height - windowHeight) / 2);
|
|
|
|
}
|
|
|
|
|
2021-04-17 15:46:26 +02:00
|
|
|
void WindowSplash::initGLFW() {
|
2023-05-27 17:45:41 +02:00
|
|
|
glfwSetErrorCallback([](int errorCode, const char *desc) {
|
|
|
|
lastGlfwError.errorCode = errorCode;
|
|
|
|
lastGlfwError.desc = std::string(desc);
|
|
|
|
log::error("GLFW Error [{}] : {}", errorCode, desc);
|
2021-04-17 15:46:26 +02:00
|
|
|
});
|
|
|
|
|
2021-04-20 21:46:48 +02:00
|
|
|
if (!glfwInit()) {
|
|
|
|
log::fatal("Failed to initialize GLFW!");
|
2023-07-23 23:38:13 +02:00
|
|
|
std::exit(EXIT_FAILURE);
|
2021-04-20 21:46:48 +02:00
|
|
|
}
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2023-02-17 12:03:53 +01:00
|
|
|
// Configure used OpenGL version
|
2022-08-02 08:24:46 +02:00
|
|
|
#if defined(OS_MACOS)
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2);
|
|
|
|
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
|
2023-02-17 12:03:53 +01:00
|
|
|
glfwWindowHint(GLFW_COCOA_RETINA_FRAMEBUFFER, GLFW_FALSE);
|
impr: Don't force using discrete graphics card on macOS (#1341)
<!--
Please provide as much information as possible about what your PR aims
to do.
PRs with no description will most likely be closed until more
information is provided.
If you're planing on changing fundamental behaviour or add big new
features, please open a GitHub Issue first before starting to work on
it.
If it's not something big and you still want to contact us about it,
feel free to do so !
-->
### Problem description
<!-- Describe the bug that you fixed/feature request that you
implemented, or link to an existing issue describing it -->
When starting ImHex on a MacBook model with both integrated and discrete
graphics, it will force the computer to use the discrete graphics card.
This causes increased power usage, meaning the fans will spin up, the
battery will drain faster, etc. This program is not very graphics
intensive, so using the discrete graphics card shouldn't be needed.
### Implementation description
<!-- Explain what you did to correct the problem -->
I changed the
[`GLFW_COCOA_GRAPHICS_SWITCHING`](https://www.glfw.org/docs/latest/window_guide.html#window_hints_osx)
setting in GLFW to not enforce using the discrete graphics.
### Screenshots
<!-- If your change is visual, take a screenshot showing it. Ideally,
make before/after sceenshots -->
### Additional things
<!-- Anything else you would like to say -->
My editor is configured to automatically remove trailing whitespace, so
I hope that those whitespace changes are ok
2023-10-05 08:39:53 +02:00
|
|
|
glfwWindowHint(GLFW_COCOA_GRAPHICS_SWITCHING, GLFW_TRUE);
|
2022-08-02 08:24:46 +02:00
|
|
|
#else
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0);
|
|
|
|
#endif
|
2021-04-21 20:06:48 +02:00
|
|
|
|
2023-02-17 12:03:53 +01:00
|
|
|
// Make splash screen non-resizable, undecorated and transparent
|
2021-04-18 20:24:42 +02:00
|
|
|
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE);
|
2022-08-02 08:24:46 +02:00
|
|
|
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GLFW_TRUE);
|
2021-04-17 15:46:26 +02:00
|
|
|
glfwWindowHint(GLFW_TRANSPARENT_FRAMEBUFFER, GLFW_TRUE);
|
|
|
|
glfwWindowHint(GLFW_DECORATED, GLFW_FALSE);
|
2022-01-22 22:08:25 +01:00
|
|
|
glfwWindowHint(GLFW_FLOATING, GLFW_FALSE);
|
2023-10-04 12:00:32 +02:00
|
|
|
glfwWindowHint(GLFW_CLIENT_API, GLFW_OPENGL_API);
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2023-02-17 12:03:53 +01:00
|
|
|
// Create the splash screen window
|
2022-07-29 17:37:30 +02:00
|
|
|
this->m_window = glfwCreateWindow(1, 400, "Starting ImHex...", nullptr, nullptr);
|
|
|
|
if (this->m_window == nullptr) {
|
2023-05-27 17:45:41 +02:00
|
|
|
hex::nativeErrorMessage(hex::format(
|
|
|
|
"Failed to create GLFW window: [{}] {}.\n"
|
|
|
|
"You may not have a renderer available.\n"
|
|
|
|
"The most common cause of this is using a virtual machine\n"
|
|
|
|
"You may want to try a release artifact ending with 'NoGPU'"
|
|
|
|
, lastGlfwError.errorCode, lastGlfwError.desc));
|
2023-07-23 23:38:13 +02:00
|
|
|
std::exit(EXIT_FAILURE);
|
2022-07-29 17:37:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate native scale factor for hidpi displays
|
|
|
|
{
|
2021-09-23 22:56:49 +02:00
|
|
|
float xScale = 0, yScale = 0;
|
2022-07-29 17:37:30 +02:00
|
|
|
glfwGetWindowContentScale(this->m_window, &xScale, &yScale);
|
2021-09-23 22:56:49 +02:00
|
|
|
|
2022-02-01 18:09:40 +01:00
|
|
|
auto meanScale = std::midpoint(xScale, yScale);
|
2022-11-08 18:09:48 +01:00
|
|
|
if (meanScale <= 0.0F)
|
|
|
|
meanScale = 1.0F;
|
|
|
|
|
|
|
|
#if defined(OS_MACOS)
|
2023-02-08 14:11:42 +01:00
|
|
|
meanScale /= getBackingScaleFactor();
|
2023-10-06 12:57:29 +02:00
|
|
|
#elif defined(OS_WEB)
|
|
|
|
meanScale = 1.0F;
|
2022-11-08 18:09:48 +01:00
|
|
|
#endif
|
2022-02-01 18:09:40 +01:00
|
|
|
|
|
|
|
ImHexApi::System::impl::setGlobalScale(meanScale);
|
2022-07-29 17:37:30 +02:00
|
|
|
ImHexApi::System::impl::setNativeScale(meanScale);
|
2021-08-04 18:57:53 +02:00
|
|
|
|
2022-07-30 21:25:18 +02:00
|
|
|
log::info("Native scaling set to: {:.1f}", meanScale);
|
2021-04-20 21:46:48 +02:00
|
|
|
}
|
2021-04-17 15:46:26 +02:00
|
|
|
|
2022-07-29 17:37:30 +02:00
|
|
|
glfwSetWindowSize(this->m_window, 640_scaled, 400_scaled);
|
2021-04-17 15:46:26 +02:00
|
|
|
centerWindow(this->m_window);
|
|
|
|
|
|
|
|
glfwMakeContextCurrent(this->m_window);
|
|
|
|
glfwSwapInterval(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WindowSplash::initImGui() {
|
2023-02-17 12:03:53 +01:00
|
|
|
// Initialize ImGui
|
2021-04-17 15:46:26 +02:00
|
|
|
IMGUI_CHECKVERSION();
|
|
|
|
GImGui = ImGui::CreateContext();
|
|
|
|
ImGui::StyleColorsDark();
|
|
|
|
|
|
|
|
ImGui_ImplGlfw_InitForOpenGL(this->m_window, true);
|
2022-08-02 13:12:12 +02:00
|
|
|
|
|
|
|
#if defined(OS_MACOS)
|
|
|
|
ImGui_ImplOpenGL3_Init("#version 150");
|
2023-10-04 12:00:32 +02:00
|
|
|
#elif defined(OS_WEB)
|
|
|
|
ImGui_ImplOpenGL3_Init();
|
2022-08-02 13:12:12 +02:00
|
|
|
#else
|
|
|
|
ImGui_ImplOpenGL3_Init("#version 130");
|
|
|
|
#endif
|
2021-04-21 19:27:05 +02:00
|
|
|
|
|
|
|
auto &io = ImGui::GetIO();
|
|
|
|
|
2022-02-01 18:09:40 +01:00
|
|
|
ImGui::GetStyle().ScaleAllSizes(ImHexApi::System::getGlobalScale());
|
2021-08-04 18:57:53 +02:00
|
|
|
|
2023-02-17 12:03:53 +01:00
|
|
|
// Load fonts necessary for the splash screen
|
|
|
|
{
|
|
|
|
io.Fonts->Clear();
|
|
|
|
|
|
|
|
ImFontConfig cfg;
|
|
|
|
cfg.OversampleH = cfg.OversampleV = 1, cfg.PixelSnapH = true;
|
|
|
|
cfg.SizePixels = 13.0_scaled;
|
|
|
|
io.Fonts->AddFontDefault(&cfg);
|
|
|
|
|
|
|
|
cfg.MergeMode = true;
|
|
|
|
|
|
|
|
ImWchar fontAwesomeRange[] = {
|
|
|
|
ICON_MIN_FA, ICON_MAX_FA, 0
|
|
|
|
};
|
|
|
|
std::uint8_t *px;
|
|
|
|
int w, h;
|
|
|
|
io.Fonts->AddFontFromMemoryCompressedTTF(font_awesome_compressed_data, font_awesome_compressed_size, 11.0_scaled, &cfg, fontAwesomeRange);
|
2023-03-14 12:30:28 +01:00
|
|
|
io.Fonts->GetTexDataAsAlpha8(&px, &w, &h);
|
2023-02-17 12:03:53 +01:00
|
|
|
|
|
|
|
// Create new font atlas
|
|
|
|
GLuint tex;
|
|
|
|
glGenTextures(1, &tex);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, tex);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
2023-03-14 12:30:28 +01:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_R8, w, h, 0, GL_ALPHA, GL_UNSIGNED_BYTE, px);
|
2023-02-17 12:03:53 +01:00
|
|
|
io.Fonts->SetTexID(reinterpret_cast<ImTextureID>(tex));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't save window settings for the splash screen
|
2022-03-13 17:36:50 +01:00
|
|
|
io.IniFilename = nullptr;
|
2021-04-17 15:46:26 +02:00
|
|
|
}
|
|
|
|
|
2023-09-07 20:33:49 +02:00
|
|
|
/**
|
|
|
|
* @brief Initialize resources for the splash window
|
|
|
|
*/
|
|
|
|
void WindowSplash::initMyself() {
|
|
|
|
|
|
|
|
// Load splash screen image from romfs
|
|
|
|
this->splashBackgroundTexture = ImGui::Texture(romfs::get("splash_background.png").span());
|
|
|
|
this->splashTextTexture = ImGui::Texture(romfs::get("splash_text.png").span());
|
|
|
|
|
|
|
|
// If the image couldn't be loaded correctly, something went wrong during the build process
|
|
|
|
// Close the application since this would lead to errors later on anyway.
|
|
|
|
if (!this->splashBackgroundTexture.isValid() || !this->splashTextTexture.isValid()) {
|
|
|
|
log::fatal("Could not load splash screen image!");
|
|
|
|
std::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::mt19937 rng(std::random_device{}());
|
|
|
|
|
|
|
|
u32 lastPos = 0;
|
|
|
|
u32 lastCount = 0;
|
|
|
|
for (auto &highlight : this->highlights) {
|
|
|
|
auto newPos = lastPos + lastCount + (rng() % 40);
|
|
|
|
auto newCount = (rng() % 7) + 3;
|
|
|
|
highlight.start.x = newPos % 13;
|
|
|
|
highlight.start.y = newPos / 13;
|
|
|
|
highlight.count = newCount;
|
|
|
|
|
|
|
|
{
|
|
|
|
float r, g, b;
|
|
|
|
ImGui::ColorConvertHSVtoRGB(
|
|
|
|
(rng() % 360) / 100.0F,
|
|
|
|
(25 + rng() % 70) / 100.0F,
|
|
|
|
(85 + rng() % 10) / 100.0F,
|
|
|
|
r, g, b);
|
|
|
|
highlight.color = ImColor(r, g, b, 0x50 / 255.0F);
|
|
|
|
}
|
|
|
|
|
|
|
|
lastPos = newPos;
|
|
|
|
lastCount = newCount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WindowSplash::startStartupTasks() {
|
2023-09-27 14:14:27 +02:00
|
|
|
// Launch init tasks in the background
|
2023-09-07 20:33:49 +02:00
|
|
|
this->tasksSucceeded = processTasksAsync();
|
|
|
|
}
|
|
|
|
|
2022-01-18 00:10:10 +01:00
|
|
|
void WindowSplash::exitGLFW() {
|
2021-04-17 15:46:26 +02:00
|
|
|
glfwDestroyWindow(this->m_window);
|
|
|
|
glfwTerminate();
|
|
|
|
}
|
|
|
|
|
2022-01-18 00:10:10 +01:00
|
|
|
void WindowSplash::exitImGui() {
|
2021-04-17 15:46:26 +02:00
|
|
|
ImGui_ImplOpenGL3_Shutdown();
|
|
|
|
ImGui_ImplGlfw_Shutdown();
|
|
|
|
ImGui::DestroyContext();
|
|
|
|
}
|
|
|
|
|
2021-12-22 13:16:51 +01:00
|
|
|
}
|