-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgame.h
executable file
·37 lines (32 loc) · 1.02 KB
/
game.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//Game Handling Class
#include <fstream>
//Function to Save an Array to a file, saving memory
void saveInt(int val, int pos, std::string filename);
void loadInt(int &val, int pos, std::string filename);
//Save a Value in an array to a file in binary
void saveInt(int val, int pos, std::string filename){
//Open File to Write To:
std::ofstream file;
file.open(filename, std::ios::binary);
//If the file has been succesfully opened:
if(file.is_open()){
//Write Value to file, at next free position
file.seekp(pos*sizeof(int));
file.write((char*) &val, sizeof(int));
}
file.close();
};
//Function to load an Array to a file, saving memory
void loadInt(int &val, int pos, std::string filename){
//Open File to Read From:
std::ifstream file;
file.open(filename, std::ios::binary);
//If the file has been succesfully opened:
if(file.is_open()){
//Iteratively Read Elements from the Array
file.seekg(pos*sizeof(int));
file.read((char*) &val, sizeof(int));
}
file.close();
};
//Game Handling Class