project_files/frontlib/model/room.h
author koda
Tue, 21 Jan 2014 22:38:13 +0100
changeset 10015 4feced261c68
parent 8330 aaefa587e277
child 10017 de822cd3df3a
permissions -rw-r--r--
partial merge of the webgl branch This commit contains the new pas2c conversion tool, the pascal to c build structure and the opengl2 rendering backend. Patch reviewed by unC0Rr.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
     1
/*
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
     2
 * Hedgewars, a free turn based strategy game
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
     3
 * Copyright (C) 2012 Simeon Maxein <smaxein@googlemail.com>
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
     4
 *
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
     5
 * This program is free software; you can redistribute it and/or
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
     6
 * modify it under the terms of the GNU General Public License
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
     7
 * as published by the Free Software Foundation; either version 2
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
     8
 * of the License, or (at your option) any later version.
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
     9
 *
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    13
 * GNU General Public License for more details.
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    14
 *
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    15
 * You should have received a copy of the GNU General Public License
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    16
 * along with this program; if not, write to the Free Software
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    18
 */
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    19
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    20
/**
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    21
 * Models the room information for the lobby roomlist.
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    22
 */
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    23
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    24
#ifndef ROOM_H_
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    25
#define ROOM_H_
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    26
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    27
#include <stdbool.h>
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    28
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    29
typedef struct {
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    30
    bool inProgress;	//!< true if the game is running
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    31
    char *name;
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    32
    int playerCount;
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    33
    int teamCount;
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    34
    char *owner;
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    35
    char *map;			//!< This is either a map name, or one of +rnd+, +maze+ or +drawn+.
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    36
    char *scheme;
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    37
    char *weapons;
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    38
} flib_room;
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    39
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    40
void flib_room_destroy();
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    41
4feced261c68 partial merge of the webgl branch
koda
parents: 8330
diff changeset
    42
#endif