51 lines
835 B
C
Executable file
51 lines
835 B
C
Executable file
#include "level.h"
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "vec.h"
|
|
#include "gameobject.h"
|
|
|
|
void save_level(char name[MAXNAME])
|
|
{
|
|
FILE *lfile = res_open(name, "w+");
|
|
|
|
if (!lfile) return;
|
|
|
|
|
|
int objs = gameobjects->len;
|
|
fwrite(&objs, sizeof(objs), 1, lfile);
|
|
|
|
for (int i = 0; i < objs; i++) {
|
|
gameobject_save(vec_get(gameobjects, i), lfile);
|
|
}
|
|
|
|
fclose(lfile);
|
|
}
|
|
|
|
void load_level(char name[MAXNAME])
|
|
{
|
|
FILE *lfile = fopen(name, "r");
|
|
|
|
if (!lfile) return;
|
|
|
|
|
|
int objs;
|
|
fread(&objs, sizeof(objs), 1, lfile);
|
|
|
|
vec_clear(gameobjects);
|
|
|
|
|
|
for (int i = 0; i < objs; i++) {
|
|
struct mGameObject *go = vec_add(gameobjects, NULL);
|
|
fread(go, sizeof(struct mGameObject), 1, lfile);
|
|
gameobject_init(go, lfile);
|
|
}
|
|
|
|
fclose(lfile);
|
|
|
|
}
|
|
|
|
void new_level()
|
|
{
|
|
vec_clear(gameobjects);
|
|
}
|