project_files/frontlib/model/gamesetup.h
author koda
Tue, 25 Dec 2012 04:45:22 +0100
branchwebgl
changeset 8330 aaefa587e277
parent 8262 f01702bfb764
child 10015 4feced261c68
permissions -rw-r--r--
update branch with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8330
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
     1
/*
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
     2
 * Hedgewars, a free turn based strategy game
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
     3
 * Copyright (C) 2012 Simeon Maxein <smaxein@googlemail.com>
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
     4
 *
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
     5
 * This program is free software; you can redistribute it and/or
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
     6
 * modify it under the terms of the GNU General Public License
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
     7
 * as published by the Free Software Foundation; either version 2
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
     8
 * of the License, or (at your option) any later version.
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
     9
 *
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    13
 * GNU General Public License for more details.
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    14
 *
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    15
 * You should have received a copy of the GNU General Public License
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    16
 * along with this program; if not, write to the Free Software
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    18
 */
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    19
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    20
/**
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    21
 * A complete game configuration that contains all settings the engine needs to start a
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    22
 * local or networked game.
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    23
 */
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    24
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    25
#ifndef MODEL_GAMESETUP_H_
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    26
#define MODEL_GAMESETUP_H_
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    27
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    28
#include "scheme.h"
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    29
#include "weapon.h"
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    30
#include "map.h"
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    31
#include "teamlist.h"
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    32
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    33
typedef struct {
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    34
    char *style;                //!< e.g. "Capture the Flag"
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    35
    flib_scheme *gamescheme;
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    36
    flib_map *map;
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    37
    flib_teamlist *teamlist;
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    38
} flib_gamesetup;
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    39
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    40
void flib_gamesetup_destroy(flib_gamesetup *gamesetup);
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    41
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    42
/**
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    43
 * Deep-copy of the flib_gamesetup.
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    44
 */
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    45
flib_gamesetup *flib_gamesetup_copy(const flib_gamesetup *gamesetup);
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    46
aaefa587e277 update branch with default
koda
parents: 8262
diff changeset
    47
#endif