]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/timer.cpp
get-timer get-time
[guile-irrlicht.git] / src / timer.cpp
diff --git a/src/timer.cpp b/src/timer.cpp
new file mode 100644 (file)
index 0000000..0022f10
--- /dev/null
@@ -0,0 +1,48 @@
+/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
+
+   Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
+
+   This file is part of guile-irrlicht.
+
+   guile-irrlicht 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 3 of the
+   License, or (at your option) any later version.
+
+   guile-irrlicht 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 Lesser General Public
+   License along with guile-irrlicht. If not, see
+   <http://www.gnu.org/licenses/>.
+*/
+
+#include <irrlicht/irrlicht.h>
+#include <libguile.h>
+
+#include "gsubr.h"
+#include "timer.h"
+#include "wrapped.h"
+
+extern "C" {
+
+  void
+  init_timer (void)
+  {
+    init_timer_type ();
+    DEFINE_GSUBR ("get-time", 1, 0, 0, irr_getTime);
+  }
+
+  DEFINE_WRAPPED_TYPE (irr::ITimer*, "timer",
+                       init_timer_type, timer_p,
+                       wrap_timer, unwrap_timer);
+
+  SCM
+  irr_getTime (SCM wrapped_timer)
+  {
+    return scm_from_uint32 (unwrap_timer (wrapped_timer)->getTime());
+  }
+
+}