Changeset - r13643:f35947b8cc89
[Not reviewed]
master
0 1 0
peter1138 - 15 years ago 2009-11-18 23:07:29
peter1138@openttd.org
(svn r18177) -Fix (r18001): [SDL] Viewport could jump when mouse moved and right button pressed at the same time.
1 file changed with 19 insertions and 14 deletions:
0 comments (0 inline, 0 general)
src/video/sdl_v.cpp
Show inline comments
 
@@ -365,25 +365,23 @@ static int PollEvent()
 
{
 
	SDL_Event ev;
 

	
 
	if (_cursor.fix_at != _last_fix_at) {
 
		_last_fix_at = _cursor.fix_at;
 
		if (_last_fix_at) {
 
			/* Move to centre of window */
 
			SDL_CALL SDL_WarpMouse(_screen.width / 2, _screen.height / 2);
 

	
 
		} else {
 
			/* Restore position */
 
			SDL_CALL SDL_WarpMouse(_cursor.pos.x, _cursor.pos.y);
 
		}
 
	}
 

	
 
	if (!SDL_CALL SDL_PollEvent(&ev)) return -2;
 

	
 
	switch (ev.type) {
 
		case SDL_MOUSEMOTION:
 
			if (_cursor.fix_at) {
 
				int dx = ev.motion.x - _screen.width / 2;
 
				int dy = ev.motion.y - _screen.height / 2;
 
				int dx;
 
				int dy;
 
				if (_last_fix_at) {
 
					dx = ev.motion.x - _screen.width / 2;
 
					dy = ev.motion.y - _screen.height / 2;
 
				} else {
 
					/* Mouse hasn't been warped yet, so our movement is
 
					 * relative to the old position. */
 
					dx = ev.motion.x - _cursor.pos.x;
 
					dy = ev.motion.y - _cursor.pos.y;
 
					_last_fix_at = true;
 
				}
 
				if (dx != 0 || dy != 0) {
 
					_cursor.delta.x = dx;
 
					_cursor.delta.y = dy;
 
@@ -434,6 +432,13 @@ static int PollEvent()
 
				_right_button_down = false;
 
			}
 
			HandleMouseEvents();
 

	
 
			if (_cursor.fix_at != _last_fix_at) {
 
				/* Mouse fixing changed during a mouse button up event, so it
 
				 * must have been released. */
 
				_last_fix_at = false;
 
				SDL_CALL SDL_WarpMouse(_cursor.pos.x, _cursor.pos.y);
 
			}
 
			break;
 

	
 
		case SDL_ACTIVEEVENT:
0 comments (0 inline, 0 general)