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 '((start . 0) (paused . 0) (state . stopped)))
23 (define (start-timer timer)
24 (assoc-set! timer 'start (SDL_GetTicks))
25 (assoc-set! timer state 'running))
27 (define (stop-timer timer)
28 (assoc-set! timer 'state 'stopped))
30 (define (get-time timer)
31 (cond ((eq? (assoc 'state timer) 'stopped) 0)
32 ((eq? (assoc 'state timer) 'paused) (assoc 'paused timer))
33 (else (- (SDL_GetTicks) (assoc 'start timer)))))
35 (define (pause-timer timer)
36 (cond ((eq? (assoc 'state timer) 'running)
37 (assoc-set! timer 'paused (- (SDL_GetTicks) (assoc 'start timer)))
38 (assoc-set! timer 'state 'paused))))
40 (define (resume-timer timer)
41 (cond ((eq? (assoc 'state timer) 'paused)
42 (assoc-set! timer 'start (- (SDL_GetTicks) (assoc 'paused timer)))
43 (assoc-set! timer 'state 'running))))