fossvg (client): Clean up GLFW-related code
- add some Vulkan-specific things to deal with GLFW - get rid of useless warnings - allow to set window size from the command line The Window size is fixed for now because that will hopefully make things easier in the strt. I intend to have a resizable window in the future but getting things going is more important.master
parent
4247bd295a
commit
b07d6e2ff6
|
@ -21,7 +21,10 @@
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include <GLFW/glfw3.h>
|
#define GLFW_INCLUDE_VULKAN
|
||||||
|
extern "C" {
|
||||||
|
#include <GLFW/glfw3.h>
|
||||||
|
}
|
||||||
|
|
||||||
#include "./lib/cli.hpp"
|
#include "./lib/cli.hpp"
|
||||||
|
|
||||||
|
@ -29,32 +32,37 @@
|
||||||
#define EXIT_RUNTIME 1
|
#define EXIT_RUNTIME 1
|
||||||
#define EXIT_USAGE 2
|
#define EXIT_USAGE 2
|
||||||
|
|
||||||
|
uint32_t windowWidth = 1366;
|
||||||
|
uint32_t windowHeight = 768;
|
||||||
|
|
||||||
//TODO: check the TODO above glfwInit() in void main()
|
//TODO: check the TODO above glfwInit() in void main()
|
||||||
// #### Callbacks ##############################################################
|
// #### Callbacks ##############################################################
|
||||||
void cursorPositionCallback(GLFWwindow* window, double x, double y) {
|
void cursorPositionCallback([[maybe_unused]] GLFWwindow* window, [[maybe_unused]] double x, [[maybe_unused]] double y) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void keyCallback(GLFWwindow* window, int32_t key, int32_t scancode, int32_t action, int32_t mods) {
|
void keyCallback([[maybe_unused]] GLFWwindow* window, [[maybe_unused]] int32_t key, [[maybe_unused]] int32_t scancode, [[maybe_unused]] int32_t action, [[maybe_unused]] int32_t mods) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void textInputCallback(GLFWwindow* window, uint32_t codepoint) {
|
void textInputCallback([[maybe_unused]] GLFWwindow* window, [[maybe_unused]] uint32_t codepoint) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void cursorEnterLeaveCallback(GLFWwindow* window, int32_t entered) {
|
void cursorEnterLeaveCallback([[maybe_unused]] GLFWwindow* window, [[maybe_unused]] int32_t entered) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void mouseButtonCallback(GLFWwindow* window, int32_t button, int32_t action, int32_t mods) {
|
void mouseButtonCallback([[maybe_unused]] GLFWwindow* window, [[maybe_unused]] int32_t button, [[maybe_unused]] int32_t action, [[maybe_unused]] int32_t mods) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void scrollCallback(GLFWwindow* window, double x, double y) {
|
void scrollCallback([[maybe_unused]] GLFWwindow* window, [[maybe_unused]] double x, [[maybe_unused]] double y) {
|
||||||
}
|
}
|
||||||
// #### End Callbacks ##########################################################
|
// #### End Callbacks ##########################################################
|
||||||
|
|
||||||
int main(int argc, char* argv[]) {
|
int main(int argc, char* argv[]) {
|
||||||
std::vector<CLI::Flag> flags;
|
std::vector<CLI::Flag> flags;
|
||||||
flags.push_back(CLI::Flag('h', "help", "print help and exit"));
|
flags.push_back(CLI::Flag('h', "help", "print help and exit"));
|
||||||
flags.push_back(CLI::Flag('l', "license", "print license information and exit"));
|
flags.push_back(CLI::Flag('l', "license", "print license information and exit"));
|
||||||
std::vector<CLI::Option> options;
|
std::vector<CLI::Option> options;
|
||||||
|
options.push_back(CLI::Option('x', "window-width", "PIXELS", "window width on startup"));
|
||||||
|
options.push_back(CLI::Option('y', "window-height", "PIXELS", "window height on startup"));
|
||||||
std::vector<CLI::Argument> arguments;
|
std::vector<CLI::Argument> arguments;
|
||||||
CLI::ArgumentsParser cliParser = CLI::ArgumentsParser(argc, argv, flags, options, arguments, "FOSS-VG Client");
|
CLI::ArgumentsParser cliParser = CLI::ArgumentsParser(argc, argv, flags, options, arguments, "FOSS-VG Client");
|
||||||
|
|
||||||
|
@ -88,6 +96,14 @@ int main(int argc, char* argv[]) {
|
||||||
return EXIT_USAGE;
|
return EXIT_USAGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (cliParser.getOption("window-width").errorCode != ErrorCodes::NOT_PRESENT) {
|
||||||
|
windowWidth = std::stoi(cliParser.getOption("window-width").value);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cliParser.getOption("window-height").errorCode != ErrorCodes::NOT_PRESENT) {
|
||||||
|
windowHeight = std::stoi(cliParser.getOption("window-height").value);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// TODO: Find a better place for this
|
// TODO: Find a better place for this
|
||||||
// Ideally, the window management and rendering portion of FOSS-VG should
|
// Ideally, the window management and rendering portion of FOSS-VG should
|
||||||
|
@ -99,9 +115,11 @@ int main(int argc, char* argv[]) {
|
||||||
return EXIT_RUNTIME;
|
return EXIT_RUNTIME;
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO: allow to set startup window size using CLI options
|
// do not create OpenGL context
|
||||||
uint32_t windowWidth = 1366;
|
glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
|
||||||
uint32_t windowHeight = 768;
|
|
||||||
|
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE);
|
||||||
|
|
||||||
//TODO: add a version macro
|
//TODO: add a version macro
|
||||||
// (for example Git commit hash passed on the compiler command line)
|
// (for example Git commit hash passed on the compiler command line)
|
||||||
std::string windowTitle = "FOSS-VG";
|
std::string windowTitle = "FOSS-VG";
|
||||||
|
@ -124,6 +142,7 @@ int main(int argc, char* argv[]) {
|
||||||
glfwPollEvents();
|
glfwPollEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
glfwDestroyWindow(window);
|
||||||
glfwTerminate();
|
glfwTerminate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue