dynamic logic/behaviour connections

Started by
1 comment, last by _swx_ 11 years, 5 months ago
I really dont know how to better frame my threads topic, so i hope this will do (willing to change it if someone has a suggestion).

i saw today's IOTD (http://www.gamedev.n.../_/flowlab-r307), and remembered that UE4 has something similair when i watched one of their feature videos.
It's this thing where you visually connect different components/events one to another so they run in sequence of just send their update result to the next one in chain, which is dynamically reconnectable.
My question is, does that have some name by which i could find more info on it?
and also, how would you implement something like that in c++? i have some idea on how to start, but always fall short on the connection part. sure, i could make a dozen small event classes that take certain parameters, but i've got no idea how to make any component connectable to any other component.

thank you smile.png

devstropo.blogspot.com - Random stuff about my gamedev hobby

Advertisement
Function composition comes to mind.
http://bitsquid.blogspot.se/2011/05/flow-data-oriented-implementation-of.html

This topic is closed to new replies.

Advertisement