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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
/* $Id: fow.h,v 1.7 2002/08/31 17:46:00 riq Exp $ */
/* Tenes Empanadas Graciela
*
* Copyright (C) 2000 Ricardo Quesada
*
* Author: Ricardo Calixto Quesada <rquesada@core-sdi.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; only version 2 of the License
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
/**
* @file fow.h
*/
#ifndef __TEGS_FOW_H
#define __TEGS_FOW_H
#include "server.h"
#include "stats.h"
/* enables or disables FOW */
TEG_STATUS fow_set_mode( BOOLEAN b );
/* returns true if player pJ can see country pP */
BOOLEAN fow_can_player_see_country( PSPLAYER pJ, PCOUNTRY pP );
/* fills in buffer the boundaries countries of 'country' */
TEG_STATUS fow_fill_with_boundaries( int country, char *buffer, int buf_len );
/* send the message to all players who has a country boundary with 'country' */
int fow_netall_printf( int country, char *format, ...);
/* send the message to all players who has a country boundary with country1 and country2 */
int fow_2_netall_printf( int country1, int country2, char *format, ...);
#endif /* __TEGS_FOW_H */
|