~ubuntu-branches/ubuntu/raring/scummvm/raring

« back to all changes in this revision

Viewing changes to backends/timer/sdl/sdl-timer.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Moritz Muehlenhoff
  • Date: 2011-05-25 19:02:23 UTC
  • mto: (21.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: james.westby@ubuntu.com-20110525190223-fiqm0oaec714xk31
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/* ScummVM - Graphic Adventure Engine
 
3
 *
 
4
 * ScummVM is the legal property of its developers, whose names
 
5
 * are too numerous to list here. Please refer to the COPYRIGHT
 
6
 * file distributed with this source distribution.
 
7
 *
 
8
 * This program is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU General Public License
 
10
 * as published by the Free Software Foundation; either version 2
 
11
 * of the License, or (at your option) any later version.
 
12
 
 
13
 * This program is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program; if not, write to the Free Software
 
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
21
 *
 
22
 * $URL$
 
23
 * $Id$
 
24
 *
 
25
 */
 
26
 
 
27
#include "common/scummsys.h"
 
28
 
 
29
#if defined(SDL_BACKEND)
 
30
 
 
31
#include "backends/timer/sdl/sdl-timer.h"
 
32
 
 
33
#include "common/textconsole.h"
 
34
 
 
35
static Uint32 timer_handler(Uint32 interval, void *param) {
 
36
        ((DefaultTimerManager *)param)->handler();
 
37
        return interval;
 
38
}
 
39
 
 
40
SdlTimerManager::SdlTimerManager() {
 
41
        // Initializes the SDL timer subsystem
 
42
        if (SDL_InitSubSystem(SDL_INIT_TIMER) == -1) {
 
43
                error("Could not initialize SDL: %s", SDL_GetError());
 
44
        }
 
45
 
 
46
        // Creates the timer callback
 
47
        _timerID = SDL_AddTimer(10, &timer_handler, this);
 
48
}
 
49
 
 
50
SdlTimerManager::~SdlTimerManager() {
 
51
        // Removes the timer callback
 
52
        SDL_RemoveTimer(_timerID);
 
53
}
 
54
 
 
55
#endif