File: rubysdl_time.c

package info (click to toggle)
libsdl-ruby 2.1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,132 kB
  • ctags: 2,115
  • sloc: ansic: 4,567; ruby: 2,189; makefile: 27
file content (48 lines) | stat: -rw-r--r-- 1,365 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
  Ruby/SDL   Ruby extension library for SDL

  Copyright (C) 2001-2007 Ohbayashi Ippei
  
  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.

  This library 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
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with this library; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
#include "rubysdl.h"

static VALUE sdl_getTicks(VALUE mod)
{
  return UINT2NUM(SDL_GetTicks());
}

static VALUE delay(void* t)
{
  SDL_Delay(*((Uint32*)t));
  return Qnil;
}

static VALUE sdl_delay(VALUE mod,VALUE ms)
{
  Uint32 t = NUM2UINT(ms);
#ifdef HAVE_RB_THREAD_BLOCKING_REGION
  rb_thread_blocking_region(delay, &t, RUBY_UBF_IO, NULL);
#else
  SDL_Delay(t);
#endif
  return Qnil;
}

void rubysdl_init_time(VALUE mSDL)
{
  rb_define_module_function(mSDL,"getTicks",sdl_getTicks,0);
  rb_define_module_function(mSDL,"delay",sdl_delay,1);
}