예제 #1
0
파일: display.hpp 프로젝트: gb056/wesnoth
	bool show_everything() const { return !dont_show_all_ && !is_blindfolded(); }
예제 #2
0
	bool show_everything() const { return !viewpoint_ && !is_blindfolded(); }
예제 #3
0
파일: display.hpp 프로젝트: gb056/wesnoth
	/** 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));
	}
예제 #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));
	}