Commit Graph
237 Commits
Author SHA1 Message Date
Riyyi d1ba13794c Release source under MIT license 2021-04-01 00:43:30 +02:00
Riyyi ec2cb44c06 Set stride to 0 when calculating offsets 2021-03-11 16:55:05 +01:00
Riyyi c8cea7bf45 Give native types initial value 2021-03-11 16:52:47 +01:00
Riyyi f63bd4ab6d Remove move where it didnt make sense 2021-03-11 16:17:04 +01:00
Riyyi 0b57ee3a9f Remove const ref std::shared_ptr
Taking a const std::shared_ptr& doesnt make sense, as it doesnt increase the
reference count and the object inside the pointer is still modifiable.

Return std::shared_ptr by value, returning by reference wont increase the
reference count and RVO (return value optimization) makes the const concern
moot.
2021-03-11 11:37:46 +01:00
Riyyi 50a438e340 Cleanup 2021-03-11 11:07:50 +01:00
Riyyi 0522f6f388 String can be printed directly 2021-03-08 23:12:58 +01:00
Riyyi 571403c9a2 Change "pretending to be for loop" while loop to for loop 2021-03-07 01:04:41 +01:00
Riyyi 25a5e0a8e8 Add .clang-format 2021-03-04 03:25:44 +01:00
Riyyi 49bf1b3933 ifstream destructor closes the file, due to RAII 2021-02-15 00:22:32 +01:00
Riyyi 16cebbb8cb Prevent window duplicate destruction 2021-02-14 13:49:35 +01:00
Riyyi 3e1d0eef53 Forward declare components 2021-02-14 04:01:36 +01:00
Riyyi 8f7665b8a3 Implement singleton class in all singletons 2021-02-14 04:00:44 +01:00
Riyyi deb9e34b8f Second attempt at deriving application from a singleton 2021-02-14 02:36:45 +01:00
Riyyi 4467d0d40a Add std::move to the resource managers 2021-02-14 00:21:33 +01:00
Riyyi 6103854503 Revert application and remove singleton class, it breaks object lifetime? 2021-02-14 00:06:30 +01:00
Riyyi 3583c2994b Remove call to application getWindow before its finished construction 2021-02-13 16:42:15 +01:00
Riyyi c1ae98c659 Implement singleton class into application 2021-02-13 16:14:23 +01:00
Riyyi 0cc22100e9 Add singleton class 2021-02-13 16:09:45 +01:00
Riyyi e834203b07 Move settings save after initialize log 2021-02-11 20:50:04 +01:00
Riyyi b26cb3e073 Move defines below includes 2021-02-11 16:48:52 +01:00
Riyyi 58afdbeae6 Re-add stb dependency in the new location 2021-02-11 16:17:45 +01:00
Riyyi aa34cd56ce Remove stb dependency 2021-02-11 16:13:24 +01:00
Riyyi cdbb456ce8 Move try/catch from settings to file, overwrite invalid settings file 2021-02-11 15:54:06 +01:00
Riyyi adc0848a23 Implement nlohmann::json arbitrary type conversion for settings 2021-02-11 01:31:14 +01:00
Riyyi 7042a42032 Settings: use json util, update window size to uint32_t 2021-02-10 23:20:25 +01:00
Riyyi e044397e88 Omit copy constructors for strings in constructors 2021-02-10 14:36:19 +01:00
Riyyi 858a2bd0d4 Prevent double gltf json parsing 2021-02-09 14:46:00 +01:00
Riyyi 68b2e93969 Add support for .gltf file reading with 1 buffer binary 2021-02-09 01:47:59 +01:00
Riyyi 1c311fca64 Update gltf file assert messages 2021-02-09 00:42:10 +01:00
Riyyi b8bd6aad70 Rename gltf file class 2021-02-08 23:52:01 +01:00
Riyyi aa9403dde0 Convert double to float in gltf model and json util 2021-02-07 16:48:38 +01:00
Riyyi a7953b4bdd Add gltf node parsing 2021-02-07 01:51:46 +01:00
Riyyi cf44172943 Add gltf scene parsing, change assert messages capitalization 2021-02-06 13:59:52 +01:00
Riyyi 5ddfa0515c Add gltf json length check 2021-02-06 01:53:59 +01:00
Riyyi 1134ce6a43 Start working on glTF model class 2021-02-06 01:52:43 +01:00
Riyyi 105912a62a Add json object parsing and helpers 2021-02-06 00:57:33 +01:00
Riyyi ac444184a9 Add json array property parsing, helper functions 2021-02-05 17:47:19 +01:00
Riyyi b554b91ec0 Add json utility class 2021-02-05 01:09:43 +01:00
Riyyi 70e520eaf2 Add gltf file class 2021-02-04 11:50:03 +01:00
Riyyi e106f0ba8d Move std::stou to integer.h, add intToHex util 2021-02-04 10:50:30 +01:00
Riyyi a2aec7f2ff Move file length check to separate function 2021-02-04 01:39:08 +01:00
Riyyi bbd84df19c String already adds a null terminator 2021-02-04 01:38:08 +01:00
Riyyi 989e0f10ac Remove [[noreturn]] from assert as it generated alot of compiler warnings, why? 2021-02-01 19:42:12 +01:00
Riyyi dacebbe6b1 Remove entrypoint.h from generic include collection 2021-02-01 17:21:43 +01:00
Riyyi a0be1dcd67 Remove unused forward declarations 2021-02-01 16:48:01 +01:00
Riyyi a1372b971e Implement signal handling: SIGINT, SIGTERM 2021-02-01 16:40:12 +01:00
Riyyi c209716e50 Remove newline 2021-02-01 04:03:56 +01:00
Riyyi 77c79aba14 Fix string util parameters 2021-02-01 04:02:49 +01:00
Riyyi a962f7bc31 Change Character postiion/size to uint, add Font size 2021-02-01 03:56:52 +01:00