summaryrefslogtreecommitdiff
path: root/lib/Queue.ck
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-04-30 22:23:26 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-04-30 22:23:26 +0200
commit76dbc41ed584cdec8571c42b8fbfacf7eada07e4 (patch)
tree9566ddd7629476cae6348d96c3470b9c988de33d /lib/Queue.ck
parent4ce722cbf97591bc84d0c6477823391cc23706c6 (diff)
downloaddigitale-debutanten-76dbc41ed584cdec8571c42b8fbfacf7eada07e4.tar.gz
NanoEvent MIDI abstraction, List instead of Queue class
* had to adapt all MIDI-using shreds * some (slider/knob) scalings are more sane now (there are helpers for scaling a MIDI message value between two values)
Diffstat (limited to 'lib/Queue.ck')
-rw-r--r--lib/Queue.ck44
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/Queue.ck b/lib/Queue.ck
deleted file mode 100644
index 586330c..0000000
--- a/lib/Queue.ck
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Queue data structure
- */
-public class Queue {
- Element head @=> Element @tail;
-
- fun void
- push(Object @data)
- {
- new Element @=> tail.next @=> tail;
- data @=> tail.payload;
- }
-
- fun Object @
- peek()
- {
- if (head.next == null)
- /* empty */
- return null;
- else
- return head.next.payload;
- }
-
- fun Object @
- pop()
- {
- head.next @=> Element @el;
- if (el == null)
- /* empty */
- return null;
-
- el.next @=> head.next;
- if (el == tail)
- /* but now it's empty! */
- head @=> tail;
- return el.payload;
- }
-
- fun void
- flush()
- {
- while (pop() != null);
- }
-}