2012-06-07 04:29:36 +02:00
|
|
|
#include "bind_eressea.h"
|
|
|
|
|
|
|
|
#include <platform.h>
|
2014-03-13 15:33:44 +01:00
|
|
|
|
2014-03-15 06:30:07 +01:00
|
|
|
#include "json.h"
|
2014-03-13 15:33:44 +01:00
|
|
|
|
2014-10-16 07:34:09 +02:00
|
|
|
#include <kernel/faction.h>
|
2014-12-31 00:20:19 +01:00
|
|
|
#include <kernel/item.h>
|
2012-06-07 04:29:36 +02:00
|
|
|
#include <kernel/config.h>
|
|
|
|
#include <kernel/save.h>
|
2013-12-31 10:06:28 +01:00
|
|
|
|
2017-02-11 17:38:39 +01:00
|
|
|
#include <util/language.h>
|
|
|
|
|
2014-03-13 15:33:44 +01:00
|
|
|
#include <stream.h>
|
|
|
|
#include <filestream.h>
|
|
|
|
|
2012-06-07 04:29:36 +02:00
|
|
|
|
|
|
|
void eressea_free_game(void) {
|
2015-01-30 20:37:14 +01:00
|
|
|
free_gamedata();
|
|
|
|
init_resources();
|
2017-02-11 17:38:39 +01:00
|
|
|
init_locales();
|
2012-06-07 04:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int eressea_read_game(const char * filename) {
|
2016-11-14 01:35:45 +01:00
|
|
|
return readgame(filename);
|
2015-01-30 20:37:14 +01:00
|
|
|
}
|
2012-06-07 04:29:36 +02:00
|
|
|
|
|
|
|
int eressea_write_game(const char * filename) {
|
2015-01-30 20:37:14 +01:00
|
|
|
remove_empty_factions();
|
|
|
|
return writegame(filename);
|
2012-06-07 04:29:36 +02:00
|
|
|
}
|
2012-06-07 18:47:02 +02:00
|
|
|
|
|
|
|
int eressea_read_orders(const char * filename) {
|
2015-01-30 20:37:14 +01:00
|
|
|
return readorders(filename);
|
2012-06-07 18:47:02 +02:00
|
|
|
}
|
2014-03-13 15:33:44 +01:00
|
|
|
|
2014-06-21 16:34:36 +02:00
|
|
|
int eressea_export_json(const char * filename, int flags) {
|
2016-02-05 23:10:05 +01:00
|
|
|
FILE *F = fopen(filename, "w");
|
2014-03-13 15:33:44 +01:00
|
|
|
if (F) {
|
|
|
|
stream out = { 0 };
|
|
|
|
int err;
|
|
|
|
fstream_init(&out, F);
|
2014-03-15 06:30:07 +01:00
|
|
|
err = json_export(&out, flags);
|
2014-03-13 15:33:44 +01:00
|
|
|
fstream_done(&out);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
perror(filename);
|
|
|
|
return -1;
|
|
|
|
}
|
2014-03-16 09:51:08 +01:00
|
|
|
|
|
|
|
int eressea_import_json(const char * filename) {
|
2016-02-05 23:10:05 +01:00
|
|
|
FILE *F = fopen(filename, "r");
|
2014-03-16 09:51:08 +01:00
|
|
|
if (F) {
|
|
|
|
stream out = { 0 };
|
|
|
|
int err;
|
|
|
|
fstream_init(&out, F);
|
|
|
|
err = json_import(&out);
|
|
|
|
fstream_done(&out);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
perror(filename);
|
|
|
|
return -1;
|
|
|
|
}
|