00001 /* ScummVM - Graphic Adventure Engine00002 *00003 * ScummVM is the legal property of its developers, whose names00004 * are too numerous to list here. Please refer to the COPYRIGHT00005 * file distributed with this source distribution.00006 *00007 * This program is free software; you can redistribute it and/or00008 * modify it under the terms of the GNU General Public License00009 * as published by the Free Software Foundation; either version 200010 * of the License, or (at your option) any later version.00011 *00012 * This program is distributed in the hope that it will be useful,00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the00015 * GNU General Public License for more details.00016 *00017 * You should have received a copy of the GNU General Public License00018 * along with this program; if not, write to the Free Software00019 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.00020 *00021 */00022
00023 #include "common/scummsys.h"00024
00025 #if defined(PLAYSTATION3)00026
00027 #include "backends/events/ps3sdl/ps3sdl-events.h"00028 #include "backends/platform/sdl/sdl.h"00029 #include "engines/engine.h"00030
00031 #include "common/util.h"00032 #include "common/events.h"00033
00038 voidPS3SdlEventSource::preprocessEvents(SDL_Event *event) {
00039 if (event->type == SDL_APP_DIDENTERBACKGROUND) {
00040 // XMB opened00041 if (g_engine)
00042 g_engine->pauseEngine(true);
00043
00044 for (;;) {
00045 if (!SDL_PollEvent(event)) {
00046 // Locking the screen forces a full redraw00047 Graphics::Surface* screen = g_system->lockScreen();
00048 if (screen) {
00049 g_system->unlockScreen();
00050 g_system->updateScreen();
00051 }
00052 SDL_Delay(10);
00053 continue;
00054 }
00055 if (event->type == SDL_QUIT)
00056 return;
00057 if (event->type == SDL_APP_DIDENTERFOREGROUND) {
00058 // XMB closed00059 if (g_engine)
00060 g_engine->pauseEngine(false);
00061 return;
00062 }
00063 }
00064 }
00065 }
00066
00067 #endif
Generated on Sat Feb 9 2019 05:00:38 for ResidualVM by 1.7.1