Tagged Questions
The frp tag has no wiki summary.
29
votes
3answers
2k views
What's the status of Scala.React?
I just read Deprecating the Observer Pattern and found it absolutely fascinating.
What's the status of the Scala.React package described in the document? I found one tarball of a snapshot of ...
20
votes
2answers
748 views
Where are the functional gui users?
There has been a lot of research into ways of creating guis in a functional language. There is libraries for push/pull frp, arrow based frp and probably other superior research too. Many people seem ...
16
votes
4answers
852 views
Functional Reactive F# - Storing States in Games
I am a student currently learning about Functional Reactive paradigm using F#. It's radically new viewpoint for me. Yesterday I learned about creating a simple ping-pong game using this paradigm. The ...
14
votes
1answer
125 views
reactive-banana: Firing event that contain the most up to date value of a Behavior
Suppose I have an event trigger which I want to do two things when fired. First, I want it to update the value of some behavior. Second, if other conditions are met, I want it to fire another event ...
14
votes
2answers
166 views
Where to apply Behavior (and other types) in FRP
I'm working on a program using reactive-banana, and I'm wondering how to structure my types with the basic FRP building blocks.
For instance, here's a simplified example from my real program: say my ...
13
votes
1answer
661 views
Am I using reactive-banana right?
Here's an example Haskell FRP program using the reactive-banana library. I'm only just starting to feel my way with Haskell, and especially haven't quite got my head around what FRP means. I'd really ...
13
votes
3answers
950 views
Are there any examples of Functional Relational Programming in the wild?
I've just finished reading a very interesting paper entitied "Out of the Tar Pit" which presents this idea of FRP as a way of reducing complexity in applications by minimizing state and control. Are ...
11
votes
1answer
211 views
How should FRP work at the top level?
I have been experimenting with creating a Functional Reactive Programming framework for Scala. One thing at the moment I am confused about is how current implementations have dealt with representing ...
11
votes
3answers
632 views
How to best synchronize game engine and network server in Haskell?
I am designing a little soccer game where the game engine (that computes player moves etc.) runs on a server, and rendering and keyboard/mouse handling is done by the client. For the server (Haskell) ...
9
votes
1answer
249 views
Why is this Yampa ball-bouncing going into an endless loop?
I'm trying to simulate a bouncing ball with the Yampa-Framework: Given an initial x-position, height and velocity, the ball should bounce according to gravity rules. The signal function takes a ...
8
votes
2answers
278 views
FRP (reactive): How to use filterE?
I expect the next will print "()" 10 times in a second. But it hangs after a second. Why?
adaptE $ fmap print $ filterE (const True) $ atTimes [0.1, 0.2 ..]
I found that it is related to liftM ...
7
votes
1answer
129 views
Haskell: How to test a (reactive) FSM with quickcheck?
I wrote a finite state machine module for a little soccer game I'm currently working at. It provides an interface for setting up an FSM (basically its states and transitions). For each state, you can ...
5
votes
2answers
66 views
Preventing endless loops in Yampa/Animas with SF's depending on each other
I'm trying to understand how this functional reactive programming works, and I have run into a problem. I am trying to create a boid simulation, but I'm starting out slowly, and I have for now defined ...
5
votes
3answers
260 views
Haskell: FRP Reactive Parsec?
Is there (or is it possible to have) reactive parsec (or any other pure functional parser) in Haskell?
simply, I want to feed parser my self char by char. and get result as much as I feed enough to ...
3
votes
1answer
118 views
Should Events be externally mutable?
I am playing around with FRP and was wondering about how the act of an Event 'occurring' should be handled publicly. By this, I mean should a programmer be able to do the following within an FRP ...
3
votes
1answer
116 views
Is the 'Signal' representation of Functional Reactive Programming correct?
I have been researching FRP and found a bunch of different implementations. One model I have seen is one I will refer to as the 'Signal' representation. This essential combines Events and Behaviours ...
3
votes
1answer
128 views
Declarative derived properties for mutable models in Java
Is there a framework for synchronizing properties of POJOs? For example, I want to express (in some high-level, declarative form) that foo.text = bar.text + baz.text or foo.y = (max(bars, y)).y ...
2
votes
0answers
144 views
Functional reactive programming (FRP) in games. Some doubts and thoughts [closed]
This days I'm doing some research on Component based entity systems. I had a first aproximation using a blackboard pattern at Entity level and components sharing this blackboard to do communication.
...
2
votes
2answers
233 views
windows install for Haskell Frp package?
I was trying to install the reactive banana package on Windows, with little success.
It seems to know about the packages, but fail on installation.
Any hints?
>cabal install Reactive
Resolving ...
2
votes
2answers
358 views
simple putStrLn in Haskell/Yampa with arrows syntax
i'm using Haskell with the Yampa FRP library which uses the arrows language extension.
how can i do a simple putStrLn in a SF?
mySF = proc x -> do
y <- identity -< x*x
putStrLn ...
0
votes
1answer
139 views
FRP on a game engine. Is it worth it?
Today, I've read about FRP (functional reactive programming). However, I don't know how much this fits in the engine itself.
After reading Gerold Meisinger's article, my question is, if it's worth ...