Functional reactive programming is programming paradigm for reactive programming
3
votes
1answer
43 views
How to make Behaviors contain other Behaviors in reactive-banana
It appears that everyone is doing a computer game with reactive-banana FRP framework, so I had to try that too. However, I'm stuck with the early steps, trying to describe the game data as ...
1
vote
0answers
93 views
Functional Reactive Traveller - Broken Type Mystery
I'm getting the following error:
Libraries/Reactive/GameMechanic.hs:34:80:
No instance for (Apply (Behavior t0) (Event t))
arising from a use of `<@'
Possible fix:
add an instance declaration ...
6
votes
1answer
99 views
Push vs pull in reactive-banana
I am building a mediaplayer-like application using reactive-banana.
Let's say I want a Behavior that represents the currently selected track in
the track list.
I have two options: use fromPoll to ...
28
votes
3answers
664 views
Why recursive `let` make space effcient?
I found this statement while studying Functional Reactive Programming, from "Plugging a Space Leak with an Arrow" by Hai Liu and Paul Hudak ( page 5) :
Suppose we wish to define a function that ...
1
vote
0answers
64 views
Bacon.js lazy evaluation, mouse drag example breaks without log() statement
I'm trying to understand bacon.js and FRP so tried to make a simple drag and drop example, but I'm having trouble with the lazy evaluation of one piece of code. When I add a .log() into the stream it ...
2
votes
2answers
121 views
Optimizing FRP Systems
I have to write a paper on optimizations of Functional Reactive Programming (FRP) systems.
Here are the the references I have found so far.
Dynamic Optimization for Functional Reactive Programming ...
7
votes
1answer
256 views
Functional Banana Traveller - Timer and player independent Events
I'm at the point in my Traveller I'm trying to handle player-independent updates to the game state. For reference, the project is here (the devel branch is the relevant one for this question).
...
8
votes
1answer
130 views
Reactive table with reactive banana and gtk2hs
I have written a small application which tracks my progress in TV Series. The application is written in Haskell with functional reactive programming (FRP) with reactive banana.
The application can:
...
1
vote
0answers
22 views
I need a name for something like 'debounce', but not quite the same
Here's an interesting one. I'm working with FRP, and looking at the 'debounce' methods in various libraries (jQuery, Bacon.js). I started working with this, and found it almost does what I need, but ...
1
vote
1answer
74 views
Why does boost::signals2::signal<T>::connect require copy constructors?
I'm working on an object that represents normal data values that utilize functional reactive programming that change their values when a dependant value is changed. What i mean is, let's say you have ...
2
votes
1answer
104 views
Jumping mechanics in Netwire
I think I need some incentive on how to make this, I'm not really experienced in general platforming game mechanics...
Anyway, my player figure has this up to now:
movePlayer = proc p -> do
...
0
votes
1answer
56 views
lambdas and their captured values
I've just been doing some experimenting recently with functional reactive programming and what it is, and when i was trying to implement something like it in c++, i turned to the lambda for some help. ...
2
votes
1answer
65 views
Is there an issue with an Event and a Behavior having the same initial value?
There's something I find unsatisfying with the below code. As I develop bGameState, I will add more events. Will the fact that playerInputE (and I imagine other Events) share the same initial value ...
1
vote
1answer
42 views
Dynamic event switching in reactive-banana causes severe leak
I'm not sure whether this behavior is expected (i.e. I'm misusing Reactive.Banana.Switch) or a bug.
Let's say I have two like-typed input Behaviors, and I want to switch between them based on an ...
9
votes
1answer
135 views
Dynamic Event Switching in Reactive-Banana
I am currently working on a small game utilizing reactive banana and SDL. Since the goal is mostly to learn more about reactive banana and FRP, I attempted to use dynamic switching to set up a ...
4
votes
0answers
158 views
Simpler alternative libs to Reactive? (Haskell)
I'm learning Haskell, and trying to write some event-driven programs.
The following code is from the tutorial: http://www.haskell.org/haskellwiki/OpenGLTutorial2
main = do
(progname,_) <- ...
6
votes
3answers
291 views
Game entity modeling with netwire
I'm going to be writing a real-time game in Haskell using netwire and OpenGL. The basic idea is that each object will be represented by a wire, which will get some amount of data as input and output ...
3
votes
1answer
105 views
Haskell Cannot deduce (t ~ t1) from the context (Frameworks t)
I am learning how to use the Haskell FRP library called Reactive Banana, and also fairly new to Haskell in general.
Currently I am creating a function that will take a network as a parameter, and in ...
8
votes
2answers
316 views
Event handling in Netwire compared to conventional FRP frameworks
Most Haskell FRP frameworks like AFRP, Yampa and Reactive-banana make a difference between continuous time-varying functions and discrete ones. Usually they call them behaviors and events.
One ...
4
votes
1answer
128 views
How should I output values from a list as they are calculated?
I have a long-running computation that outputs a list. I want to output values from this list as they are computed. What would be a neat way to do this?
Currently I use mapM_ print to print each ...
12
votes
2answers
260 views
What is the connection between Iteratees and FRP?
It seems to me that there is a strong connection between the two ideas. My guess is that FRP could be implemented in terms of Iteratees if there would be a way to express arbitrary graphs with ...
4
votes
2answers
112 views
How do you dynamically create inputs in Elm?
I want to create a button which, when pressed, adds a new input (or textarea) to the form.
6
votes
1answer
145 views
reactive-banana-wx `sink` does not generate an event enabling post-sink processing
I am currently redesigning a piece of legacy wxHaskell using the reactive-banana and reactive-banana-wx packages. However, in order to avoid dynamic network construction (where I ran into a thread ...
11
votes
2answers
522 views
Is FRP a proper way to implement most “event-driven” things?
In my very first impression of Haskell, it's a language can handle "execute-then-result" things amazingly well. But I can't find how to implement "event-driven" things like games, or ...
6
votes
0answers
250 views
Scala.React vs. Qt Signals & Slots [closed]
With the rise of Scala.React I was wondering whether Qt's Signals & Slots mechanism would become obsolete when using Qt as a GUI framework for a Scala program. How would one of the two approaches ...
2
votes
0answers
61 views
wxHaskell and Reactive-Banana staticText not Updating Size When Text Changes
I'm trying to build a simple UI as an exercise in learning wxHaskell and Reactive Banana, but I've run into a wall trying to solve a seemingly simple problem. Specifically, I'd like to resize the ...
0
votes
2answers
185 views
Connecting a Netwire network to OpenGL/GLUT Callbacks
As an experiment, I have set up a simulated set of gears attached to a motor and rendered them with OpenGL/GLUT. At the moment the only input to the Wire network is Time. I want to use the keyboard ...
8
votes
1answer
173 views
Handling mutually recursive GUI widgets with reactive-banana
I am hunting for a library to write a GUI on top of GLFW and OpenGL. I'm doing this because I am dissatisfied with the common UI library bindings which I feel are too imperative, and I would also like ...
3
votes
1answer
101 views
How can I get a netwire network to simulate execution over a discrete set of instants?
I have been looking at using netwire, but cannot see how I can pump instants through a series of wires that do not depend upon actual time. That is, is there some way to take a wire of type Wire e m ...
4
votes
1answer
113 views
Functional Reactive Banana - type confusion
Heinrich Apfelmus generously chimed in on this problem. I had considered using accumB as a solution, but thought there would be a type error. After trying his suggestion anyway, I did recieve a type ...
2
votes
1answer
138 views
Functional Banana Traveller - putting together Behavior t GameState
The problem is that I do not know how to create the Behavior of type Behavior t GameState
I have more code, but am trying to just show what I think is neccessary to talk about the problem. Let me ...
0
votes
1answer
121 views
Functional Banana Traveller - Input Handling
This is a sub-problem from my Traveller project.
I've put together the rudementary code that will handle input. It works, until I introduce a TChan to the mix. Below is the working code, with an ...
2
votes
1answer
144 views
F# observable filter with side effect
I have a number of events that are merged into one observable that executes some commands. If a command succeeded some result takes place. In addition, the command should be logged.
In terms of code, ...
2
votes
1answer
166 views
Implementing a timer in Traveller game
This problem is a continuation of what I started here.
I'm using the asteroid example as a model to work from.
The problem I want to talk about here is the one of a timer. The asteroids example uses ...
7
votes
1answer
171 views
Why are there no functions for building Events out of non-events in reactive-banana?
I'm in the process of teaching myself FRP and Reactive-banana while writing what I hope will be a more useful tutorial for those that follow me. You can check out my progress on the tutorial here.
...
7
votes
2answers
149 views
State-dependent event processing with state updates
I want to use FRP (i.e., reactive banana 0.6.0.0) for my project (a GDB/MI front-end). But I have troubles declaring the event network.
There are commands from the GUI and there are stop events from ...
6
votes
1answer
106 views
Implementing zipE :: Event t a -> Event t b -> Event t (a,b)
I am new to reactive banana and FRP in general, so apologies if I am missing something obvious.
For my project (a GDB/MI front-end) I am using reactive banana (version 0.6.0.0) for both the GUI and ...
3
votes
2answers
327 views
installing reactive banana-wx or wx on redhat based linux with ghc 7.0.4
hi i'm trying to install, (without having to update or install the latest compiler),reactive-banana-wx and one of the requirement's are failing
cabal install reactive-banana-wx
and heres the error
...
7
votes
2answers
199 views
reactive-banana throttling events
I would like to implement a certain type of throttling of events in reactive-banana. It should work such that an event is not let through if arrives at less then delta seconds from the last event that ...
7
votes
1answer
131 views
Reactive-banana: up-to-date values from fromPoll
I'm writing a music player in Haskell with reactive-banana. One problem I have is fetching up-to-date values with fromPoll. I want to enable the user to optionally select a part of the track while ...
6
votes
1answer
89 views
What is the order of event handling for the spill function in Reactive-Banana?
I tested this and it seems that the order of event handling is the same as the order of the list in the source event. I don't think I can rely on this as the documentation only states:
Emit ...
1
vote
2answers
153 views
What is the equivalent of reactive-web's flatMap in Haskell's reactive-banana?
I'm looking for the function in reactive-banana that will choose from which event stream to emit next depending on the incoming value of another event stream or signal (Behaviour ?). In the library ...
17
votes
2answers
784 views
Which FRP package to choose?
I'm just starting to look into the world of Functional Reactive Programming in Haskell, and I would like to experiment with GUI programming (with gtk, because of substantial binding) in a reactional ...
7
votes
2answers
135 views
How do you remove repeating events in reactive-banana
In reactive-banana I've got an event stream that produces a series of numbers, some of which repeat several times in a row (I'm not concerned with all duplicates, just sequential duplicates). How can ...
3
votes
2answers
222 views
Does it make sense to use FRP (reactive-banana in particular) for a turn based ascii game?
I'm thinking of something like gnugo's ascii interface. I'd think of the turns as a pair of co-evolving (monadic to allow for user input) streams. This reminds me vaguely of conduits.
I'm not really ...
5
votes
3answers
276 views
Implementing snapshot in FRP
I'm implementing an FRP framework in Scala and I seem to have run into a problem. Motivated by some thinking, this question I decided to restrict the public interface of my framework so Behaviours ...
19
votes
1answer
469 views
Do we care about the 'past' in FRP?
When toying around with implementing FRP one thing I've found that is confusing is what to
do with the past? Basically, my understanding was that I would be able to do this with a Behaviour at any ...
2
votes
1answer
74 views
Should `occs` be available to the programmer?
While reading about and implementing FRP I am confused by the semantics of the occs function on Event (referred to in Conal Elliott's papers). It is very simple when dealing with static (pure) Events ...
25
votes
5answers
2k views
Recommended reading/tutorials to understand reactive-banana FRP library
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, ...
4
votes
1answer
158 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 ...