aboutsummaryrefslogtreecommitdiff
path: root/guile/pdp_guile.scm
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-12-16 00:37:47 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-12-16 00:37:47 +0000
commit6fd40fd5265b6941d5114f6b4f82e1c6b6cdbc0d (patch)
treedc317bccff92e459c51102a655ec708d8ce0ac67 /guile/pdp_guile.scm
parente1da63276dc159532c0e5258f69a5365568f598f (diff)
removed bad attempt... arg
svn path=/trunk/externals/pdp/; revision=4229
Diffstat (limited to 'guile/pdp_guile.scm')
-rw-r--r--guile/pdp_guile.scm37
1 files changed, 0 insertions, 37 deletions
diff --git a/guile/pdp_guile.scm b/guile/pdp_guile.scm
deleted file mode 100644
index 8ca17f2..0000000
--- a/guile/pdp_guile.scm
+++ /dev/null
@@ -1,37 +0,0 @@
-; pdp_guile.scm - a simple event dispatcher to be used with pdp_guile
-
-; some global variables
-(define input-hash (make-hash-table 31))
-(define input-loop-flag #t)
-(define input-loop-interval-ms 10)
-
-; add an input handler
-(define (add-input! tag handler)
- (hashq-create-handle! input-hash tag handler))
-
-; the main input dispatcher loop
-(define (input-loop)
- (while input-loop-flag
- (usleep (* input-loop-interval-ms 1000))
- (let nextmsg ((msg (in)))
- (if msg
- (begin
- (let ((fn (hashq-ref input-hash (car msg))))
- (if fn (fn (cadr msg))))
- (nextmsg (in)))))))
-
-(define (start)
- (set! input-loop-flag #t)
- (out 'start 'bang)
- (input-loop))
-
-
-; the control message handler
-(add-input! 'control
- (lambda (thing)
- (case thing
- ('stop (set! input-loop-flag #f)) ; stop the input loop and return to interpreter
- ('gc (gc))))) ; call the garbage collector
-
-
-