From 7977df50a85b94c188d3b190c56fef8cf4882ecf Mon Sep 17 00:00:00 2001 From: David Thompson Date: Thu, 19 Jan 2017 09:19:18 -0500 Subject: Add utils module. --- Makefile.am | 1 + chickadee/utils.scm | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 chickadee/utils.scm diff --git a/Makefile.am b/Makefile.am index b29464b..7838b0b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -40,6 +40,7 @@ godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/ccache SOURCES = \ chickadee/config.scm \ + chickadee/utils.scm \ chickadee/input/controller.scm \ chickadee/math.scm \ chickadee/math/vector.scm \ diff --git a/chickadee/utils.scm b/chickadee/utils.scm new file mode 100644 index 0000000..4f989ac --- /dev/null +++ b/chickadee/utils.scm @@ -0,0 +1,33 @@ +;;; Chickadee Game Toolkit +;;; Copyright (C) 2014 Ludovic Courtès +;;; Copyright © 2016 David Thompson +;;; +;;; Chickadee is free software: you can redistribute it and/or modify +;;; it under the terms of the GNU General Public License as published +;;; by the Free Software Foundation, either version 3 of the License, +;;; or (at your option) any later version. +;;; +;;; Chickadee 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 General Public License +;;; along with this program. If not, see +;;; . + +(define-module (chickadee utils) + #:export (memoize)) + +;; Written by Ludovic Courtès. Taken from GNU Guix. +(define (memoize proc) + "Return a memoizing version of PROC." + (let ((cache (make-hash-table))) + (lambda args + (let ((results (hash-ref cache args))) + (if results + (apply values results) + (let ((results (call-with-values (lambda () (apply proc args)) + list))) + (hash-set! cache args results) + (apply values results))))))) -- cgit v1.2.3