made it so mouse-over an enemy unit would show where that unit can move to
This commit is contained in:
parent
8d5e809f87
commit
256680aba6
1 changed files with 19 additions and 1 deletions
|
@ -235,6 +235,12 @@ void turn_info::mouse_motion(const SDL_MouseMotionEvent& event)
|
||||||
|
|
||||||
gui_.highlight_hex(new_hex);
|
gui_.highlight_hex(new_hex);
|
||||||
|
|
||||||
|
if(enemy_paths_) {
|
||||||
|
enemy_paths_ = false;
|
||||||
|
current_paths_ = paths();
|
||||||
|
gui_.set_paths(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
if(new_hex == selected_hex_) {
|
if(new_hex == selected_hex_) {
|
||||||
current_route_.steps.clear();
|
current_route_.steps.clear();
|
||||||
gui_.set_route(NULL);
|
gui_.set_route(NULL);
|
||||||
|
@ -243,6 +249,7 @@ void turn_info::mouse_motion(const SDL_MouseMotionEvent& event)
|
||||||
map_.on_board(new_hex)) {
|
map_.on_board(new_hex)) {
|
||||||
|
|
||||||
const unit_map::const_iterator un = units_.find(selected_hex_);
|
const unit_map::const_iterator un = units_.find(selected_hex_);
|
||||||
|
|
||||||
if(un != units_.end()) {
|
if(un != units_.end()) {
|
||||||
const shortest_path_calculator calc(un->second,current_team,
|
const shortest_path_calculator calc(un->second,current_team,
|
||||||
units_,map_);
|
units_,map_);
|
||||||
|
@ -259,6 +266,17 @@ void turn_info::mouse_motion(const SDL_MouseMotionEvent& event)
|
||||||
gui_.set_route(¤t_route_);
|
gui_.set_route(¤t_route_);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const unit_map::const_iterator un = units_.find(new_hex);
|
||||||
|
|
||||||
|
if(un != units_.end() && un->second.side() != team_num_) {
|
||||||
|
const bool ignore_zocs = un->second.type().is_skirmisher();
|
||||||
|
const bool teleport = un->second.type().teleports();
|
||||||
|
current_paths_ = paths(map_,gameinfo_,units_,new_hex,teams_,
|
||||||
|
ignore_zocs,teleport,path_turns_);
|
||||||
|
gui_.set_paths(¤t_paths_);
|
||||||
|
enemy_paths_ = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
last_hex_ = new_hex;
|
last_hex_ = new_hex;
|
||||||
|
|
Loading…
Add table
Reference in a new issue