1 ;;; Gacela, a GNU Guile extension for fast games development
2 ;;; Copyright (C) 2009 by Javier Sancho Fernandez <jsf at jsancho dot org>
4 ;;; This program is free software: you can redistribute it and/or modify
5 ;;; it under the terms of the GNU General Public License as published by
6 ;;; the Free Software Foundation, either version 3 of the License, or
7 ;;; (at your option) any later version.
9 ;;; This program is distributed in the hope that it will be useful,
10 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ;;; GNU General Public License for more details.
14 ;;; You should have received a copy of the GNU General Public License
15 ;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
21 (let ((start 0) (paused 0) (state 'stopped))
25 (set! start (SDL_GetTicks))
26 (set! state 'running))
29 (set! state 'stopped))
32 (cond ((eq? state 'stopped) 0)
33 ((eq? state 'paused) paused)
34 (else (- (SDL_GetTicks) start))))
40 (cond ((eq? state 'running)
41 (set! paused (- (SDL_GetTicks) start))
42 (set! state 'paused))))
45 (cond ((eq? state 'paused)
46 (set! start (- (SDL_GetTicks) paused))
47 (set! state 'running))))))))
49 (define (start-timer timer)
52 (define (stop-timer timer)
55 (define (get-time timer)
58 (define (get-state timer)
61 (define (pause-timer timer)
64 (define (resume-timer timer)
65 (timer 'resume-timer))