Ejemplo n.º 1
0
	bool show_everything() const { return !dont_show_all_ && !is_blindfolded(); }
Ejemplo n.º 2
0
	bool show_everything() const { return !viewpoint_ && !is_blindfolded(); }
Ejemplo n.º 3
0
	/** Returns true if location (x,y) is covered in fog. */
	bool fogged(const map_location& loc) const {
		return is_blindfolded() || (dont_show_all_ && dc_->teams()[currentTeam_].fogged(loc));
	}
Ejemplo n.º 4
0
	/** Returns true if location (x,y) is covered in fog. */
	bool fogged(const map_location& loc) const {
		return is_blindfolded() || (viewpoint_ && viewpoint_->fogged(loc));
	}