A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
File.cc
1#include "File.hh"
2
3#include <fstream>
4
5namespace Abstract::File {
6
7u8 *Load(const char *path, size_t &size) {
8 char filepath[256];
9
10 if (path[0] == '/') {
11 path++;
12 }
13
14 snprintf(filepath, sizeof(filepath), "./%s", path);
15 std::ifstream file(filepath, std::ios::binary);
16 if (!file) {
17 PANIC("File with provided path %s was not loaded correctly!", path);
18 }
19
20 file.seekg(0, std::ios::end);
21 size = file.tellg();
22 file.seekg(0, std::ios::beg);
23
24 u8 *buffer = new u8[size];
25 file.read(reinterpret_cast<char *>(buffer), size);
26
27 return buffer;
28}
29
30void Append(const char *path, const char *data, size_t size) {
31 std::ofstream stream;
32 stream.open(path, std::ios::app | std::ios::binary);
33 stream.write(data, size);
34}
35
36int Remove(const char *path) {
37 return std::remove(path);
38}
39
40} // namespace Abstract::File