project_files/frontlib/model/mapcfg.h
author Wuzzy <Wuzzy2@mail.ru>
Mon, 13 Nov 2017 22:14:45 +0100
changeset 12836 8610462e3d33
parent 10017 de822cd3df3a
permissions -rw-r--r--
Remove 2 unused number tags in Construction Mode GUI These numbers are shown aside the power tag, but the numbers never change. They don't serve any purpose and are just visual clutter and annoying, since they partially overlap. They are probably a leftover from copying code over from other scripts. With this changeset, only the power and turn time are left visible, as it is supposed to.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
     1
/*
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
     2
 * Hedgewars, a free turn based strategy game
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
     3
 * Copyright (C) 2012 Simeon Maxein <smaxein@googlemail.com>
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
     4
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
     5
 * This program is free software; you can redistribute it and/or
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
     6
 * modify it under the terms of the GNU General Public License
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
     7
 * as published by the Free Software Foundation; either version 2
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
     8
 * of the License, or (at your option) any later version.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
     9
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    13
 * GNU General Public License for more details.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    14
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    15
 * You should have received a copy of the GNU General Public License
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    16
 * along with this program; if not, write to the Free Software
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    18
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    19
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    20
/*!
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    21
 * Data structure and functions for accessing the map.cfg of named maps.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    22
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    23
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    24
#ifndef MAPCFG_H_
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    25
#define MAPCFG_H_
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    26
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    27
typedef struct {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    28
    char theme[256];
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    29
    int hogLimit;
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    30
} flib_mapcfg;
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    31
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    32
/**
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    33
 * Read the map configuration for the map with this name.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    34
 * The dataDirPath must end in a path separator.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    35
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    36
int flib_mapcfg_read(const char *dataDirPath, const char *mapname, flib_mapcfg *out);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    37
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 10015
diff changeset
    38
#endif /* MAPCFG_H_ */