aboutsummaryrefslogtreecommitdiff
path: root/gst/gst.h
blob: 8acb6995e99fdc6dd77e04b3f2d544f30aa4f2a6 (plain)
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
#ifndef GST_H
#define GST_H

#include <info.h>
#include <units.h>
#include <map.h>

#define MAXMAP 10

typedef struct {
    map map_editor;
    army army_bp[8];
    int playernum;
    map map_battle;
    army ar;
    int state;
    float cam[2];
    float starttime;
    float coveredtime;
    int turn;
    float turnspeed;
} gamestate;

void gst_init (gamestate *gst);
void gst_destroy (gamestate *gst);
void gst_get_maparmy(gamestate *gst, map **m, army **ar);
void gst_tobattle (gamestate *gst);
void gst_process (gamestate *gst, infos *info, float t);

#endif