(svn r21667) -Codechange: Introduce _thd.Reset().

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
alberth 14 years ago
parent cedb07bba3
commit 661e13a86a

@ -74,6 +74,8 @@ struct TileHighlightData {
ViewportPlaceMethod select_method; ///< The method which governs how tiles are selected.
ViewportDragDropSelectionProcess select_proc; ///< The procedure that has to be called when the selection is done.
void Reset();
bool IsDraggingDiagonal();
Window *GetCallbackWnd();
};

@ -2007,6 +2007,17 @@ static HighLightStyle GetAutorailHT(int x, int y)
return HT_RAIL | _autorail_piece[x & TILE_UNIT_MASK][y & TILE_UNIT_MASK];
}
/**
* Reset tile highlighting.
*/
void TileHighlightData::Reset()
{
this->pos.x = 0;
this->pos.y = 0;
this->new_pos.x = 0;
this->new_pos.y = 0;
}
/**
* Is the user dragging a 'diagonal rectangle'?
* @return User is dragging a rotated rectangle.

@ -1366,10 +1366,7 @@ void ResetWindowSystem()
{
UnInitWindowSystem();
InitWindowSystem();
_thd.pos.x = 0;
_thd.pos.y = 0;
_thd.new_pos.x = 0;
_thd.new_pos.y = 0;
_thd.Reset();
}
static void DecreaseWindowCounters()

Loading…
Cancel
Save