Example #1
0
	bool show_everything() const { return !dont_show_all_ && !is_blindfolded(); }
Example #2
0
	bool show_everything() const { return !viewpoint_ && !is_blindfolded(); }
Example #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));
	}
Example #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));
	}