StapleGL
Header-only C++20 OpenGL wrapper
Loading...
Searching...
No Matches
utility.hpp
Go to the documentation of this file.
1
15#pragma once
16
17#include <cstdint>
18#include <fstream>
19#include <string>
20
21namespace staplegl {
28struct resolution {
29
30 std::int32_t width {};
31 std::int32_t height {};
32};
33
38enum tex_samples : int32_t {
45};
46} // namespace staplegl
47
48namespace staplegl::util {
49
58static auto read_file(std::string_view path) -> std::string
59{
60 std::ifstream in_file(path.data(), std::ios::ate | std::ios::binary);
61
62 if (!in_file.is_open()) {
63 return {};
64 }
65
66 std::ptrdiff_t const file_size = in_file.tellg();
67 std::string result(file_size, '\0');
68
69 in_file.seekg(0);
70 in_file.read(result.data(), file_size);
71
72 return result;
73}
74
81static auto get_file_name(std::string_view path) -> std::string
82{
83 std::string_view basename = path.substr(path.find_last_of("/\\") + 1);
84
85 size_t const last_dot = basename.find_last_of(".");
86 return std::string(basename.substr(0, last_dot));
87}
88}
static auto get_file_name(std::string_view path) -> std::string
Get the filename without the extension.
Definition utility.hpp:81
static auto read_file(std::string_view path) -> std::string
Read a file into a string.
Definition utility.hpp:58
tex_samples
An enum that represents the number of samples for a texture.
Definition utility.hpp:38
A struct that represents an image's dimensions.
Definition utility.hpp:28
std::int32_t height
Definition utility.hpp:31
std::int32_t width
Definition utility.hpp:30