I'm interested in FRP (Functional Reactive Programming) reactive-banana haskell library. What would you recommend reading for a newbie to understand theory behind reactive-banana? As I understand, there have been some progress in this field and different FRP libraries use different approaches, so I don't think that any FRP paper would do.
|
|
Unfortunately, I haven't written any comprehensive documentation or tutorials yet, mainly because the reactive-banana library is still somewhat in flux. This means that, at the moment, you'll have to figure things out yourself from various sources, backed by a reasonably strong Haskell knowledge. What I can do here is to list the various sources and inspirations.
|
|||||||||||||
|
|
There are basically two sources:
The design and semantics of reactive-banana draw heavily from Conal's paper and his "reactive" library (since reactive-banana-0.2). Discussion on a lot of the reasoning behind this, as well as differences between the libraries, is in the comments on Apfelmus's blog. Unfortunately "reactive" has some bad behavior associated with its "switcher" function, so that was left out of reactive-banana. There's been a lot of research into the nature of this problem and how to solve it, and it looks like reactive-banana-0.5 may introduce some version of "switcher". |
|||||||
|
|
It's not reactive-banana but I found this series helpful for understanding FRP, building up a small pong game from scratch. https://github.com/leonidas/codeblog/blob/master/2012/2012-01-08-streams-coroutines.md https://github.com/leonidas/codeblog/blob/master/2012/2012-01-17-declarative-game-logic-afrp.md |
|||
|
|
|
I've blogged about FRP and reactive-banana. Take a look here and see if it can be useful: http://alfredodinapoli.wordpress.com/2011/12/24/functional-reactive-programming-kick-starter-guide/ HTH, A. |
|||
|
|
|
Recently I ported my 'streamed' package to 'reactive-banana'. The package is intended for real-time processing of MIDI messages, e.g. for generating accompaniments, musical games and some fun effects. http://code.haskell.org/~thielema/reactive-balsa/ How did I start learning reactive-banana? I just asked the author of the package and he kindly helped me to do the first steps. After taking the first steps, I found the Haddock documentation of the package very helpful. Now you can choose between the package author and me to give you first hints on how to start with reactive-banana. :-) |
|||
|
|