Difference between revisions of "Yampa"

From HaskellWiki
Jump to navigation Jump to search
(Removed obsolete links, added a link to the SpaceInvaders package)
Line 1: Line 1:
 
Yampa is a domain-specific embedded language for the programming of hybrid systems using the concepts of [[Functional Reactive Programming]] (FRP). Yampa is structured using [[Arrow]]s, which greatly reduce the chance of introducing space- and time-leaks into reactive, time-varying systems.
 
Yampa is a domain-specific embedded language for the programming of hybrid systems using the concepts of [[Functional Reactive Programming]] (FRP). Yampa is structured using [[Arrow]]s, which greatly reduce the chance of introducing space- and time-leaks into reactive, time-varying systems.
   
Yampa was originally developed by the [http://haskell.cs.yale.edu/yale Yale Haskell Group].
+
Yampa was originally developed by the [http://haskell.cs.yale.edu/ Yale Haskell Group].
   
 
== Downloads ==
 
== Downloads ==
 
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Yampa The Yampa package]
 
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/Yampa The Yampa package]
   
 
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/YampaSynth YampaSynth] - is a software synthesizer implemented in Haskell using Yampa. It contains a framework of sound generating and sound shaping modules (e.g. oscillator, amplifier, mixer, envelope generator, filter, etc.) and example applications.
=== Yale Haskell Group ===
 
   
  +
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/SpaceInvaders Space Invaders]; a video game, demonstrating the usage of Yampa
* [http://haskell.org/yampa/Yampa-0.9.1.tgz Robotics Simulator Bundle v0.9.1] (dated 2002-10-17)
 
* AFRP Release 0.4 (will not compile with recent GHC):
 
** [http://haskell.org/yampa/RELNOTES.txt Release Notes for 0.4]
 
** [http://haskell.org/yampa/afrp-0.4-src.tgz x86 / Linux Source Code]
 
** [http://haskell.org/yampa/afrp-0.4-win32-src.tgz Windows Source Code]
 
 
=== Others ===
 
 
==== George Giorgidze ====
 
 
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/YampaSynth YampaSynth] - is a software synthesizer implemented in Haskell using Yampa. It contains a framework of sound generating and sound shaping modules (e.g. oscillator, amplifier, mixer, envelope generator, filter, etc.) and example applications.
 
   
 
== External Links ==
 
== External Links ==
   
* [http://haskell.org/yampa/ Yampa Home Page]
 
 
* [http://mailman.cs.yale.edu/mailman/listinfo/yampa-users Yampa-Users mailing list] - Yampa-related comments, questions, discussions, and announcements. You can also send bug reports to [mailto:yampa-bugs@cs.yale.edu yampa-bugs@cs.yale.edu].
 
* [http://mailman.cs.yale.edu/mailman/listinfo/yampa-users Yampa-Users mailing list] - Yampa-related comments, questions, discussions, and announcements. You can also send bug reports to [mailto:yampa-bugs@cs.yale.edu yampa-bugs@cs.yale.edu].
* [http://www.cs.nott.ac.uk/~ggg/ George Giorgidze] is working on a modular music synthesizer written in Haskell and using Yampa.
+
* [http://www.cs.nott.ac.uk/~ggg/ George Giorgidze] is working on YampaSynth, a modular music synthesizer written in Haskell and using Yampa.
 
* [http://lambdor.net Blog about Yampa] - introduction tutorials and diagrams
 
* [http://lambdor.net Blog about Yampa] - introduction tutorials and diagrams

Revision as of 20:24, 28 March 2011

Yampa is a domain-specific embedded language for the programming of hybrid systems using the concepts of Functional Reactive Programming (FRP). Yampa is structured using Arrows, which greatly reduce the chance of introducing space- and time-leaks into reactive, time-varying systems.

Yampa was originally developed by the Yale Haskell Group.

Downloads

  • YampaSynth - is a software synthesizer implemented in Haskell using Yampa. It contains a framework of sound generating and sound shaping modules (e.g. oscillator, amplifier, mixer, envelope generator, filter, etc.) and example applications.

External Links