scummvm/backends/timer/tizen/timer.cpp

118 lines
2.8 KiB
C++
Raw Normal View History

2012-09-04 22:25:28 +02:00
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
2013-06-25 21:08:55 +10:00
#if defined(TIZEN)
2012-09-04 22:25:28 +02:00
2013-06-25 21:08:55 +10:00
#include "backends/timer/tizen/timer.h"
2012-09-04 22:25:28 +02:00
//
2013-06-25 21:08:55 +10:00
// TimerSlot - an event driven thread
2012-09-04 22:25:28 +02:00
//
2013-06-25 21:08:55 +10:00
TimerSlot::TimerSlot(Common::TimerManager::TimerProc callback, uint32 interval, void *refCon) :
2012-09-04 22:25:28 +02:00
_timer(0),
_callback(callback),
_interval(interval),
_refCon(refCon) {
}
TimerSlot::~TimerSlot() {
2013-06-25 21:08:55 +10:00
delete _timer;
2012-09-04 22:25:28 +02:00
}
bool TimerSlot::OnStart() {
2013-06-25 21:08:55 +10:00
_timer = new Tizen::Base::Runtime::Timer();
2012-09-04 22:25:28 +02:00
if (!_timer || IsFailed(_timer->Construct(*this))) {
AppLog("Failed to create timer");
return false;
}
2013-06-25 21:08:55 +10:00
if (IsFailed(_timer->StartAsRepeatable(_interval))) {
2012-09-04 22:25:28 +02:00
AppLog("failed to start timer");
return false;
}
2012-09-04 22:25:28 +02:00
AppLog("started timer %d", _interval);
return true;
}
void TimerSlot::OnStop() {
AppLog("timer stopped");
if (_timer) {
_timer->Cancel();
2012-09-04 22:25:28 +02:00
delete _timer;
_timer = NULL;
}
}
void TimerSlot::OnTimerExpired(Timer &timer) {
_callback(_refCon);
}
//
2013-06-25 21:08:55 +10:00
// TizenTimerManager
2012-09-04 22:25:28 +02:00
//
2013-06-25 21:08:55 +10:00
TizenTimerManager::TizenTimerManager() {
2012-09-04 22:25:28 +02:00
}
2013-06-25 21:08:55 +10:00
TizenTimerManager::~TizenTimerManager() {
for (Common::List<TimerSlot *>::iterator it = _timers.begin(); it != _timers.end(); ) {
TimerSlot *slot = (*it);
slot->Quit();
slot->Join();
delete slot;
it = _timers.erase(it);
2012-09-04 22:25:28 +02:00
}
}
2013-06-25 21:08:55 +10:00
bool TizenTimerManager::installTimerProc(TimerProc proc, int32 interval, void *refCon, const Common::String &id) {
2012-09-04 22:25:28 +02:00
TimerSlot *slot = new TimerSlot(proc, interval / 1000, refCon);
2013-06-25 21:08:55 +10:00
if (IsFailed(slot->Construct())) {
2012-09-04 22:25:28 +02:00
AppLog("Failed to create timer thread");
delete slot;
return false;
}
if (IsFailed(slot->Start())) {
delete slot;
AppLog("Failed to start timer thread");
return false;
}
2013-06-25 21:08:55 +10:00
_timers.push_back(slot);
2012-09-04 22:25:28 +02:00
return true;
}
2013-06-25 21:08:55 +10:00
void TizenTimerManager::removeTimerProc(TimerProc proc) {
for (Common::List<TimerSlot *>::iterator it = _timers.begin(); it != _timers.end(); ++it) {
TimerSlot *slot = (*it);
2012-09-04 22:25:28 +02:00
if (slot->_callback == proc) {
2013-06-25 21:08:55 +10:00
slot->Quit();
slot->Join();
delete slot;
it = _timers.erase(it);
2012-09-04 22:25:28 +02:00
}
}
}
#endif