Hi !
I've initially tried to prototype C# hotreloadable scripting support, and currently it looks like working, but C# / .net framework produced major constraint on application design.
(Once .dll is loaded it cannot be unloaded).
I intend to go into C++ script directions, but my idea is to recombine C++ project generation with Visual studio extension to get C++ script support.
Initial ideas on design ideas can be found from here:
C++ as scripting language
Initial prototype for C# hotreloadable script support in here:
Boost Development Productivity: C# hot module / hotreloading scripting support
(My first youtube video, please don't be too picky :-) ).
Concerning C++ scripting - I have already sketched C++ "script" project generator, which at the moment
is much like C# syncProj script, but I'll start to convert it to C++ script next.
At the moment resides in C# script (based on Visual studio extension):
I'll move it into VS Extension later on.
I have also started to sketch C++ project generation API, everything related to C++ resides in here:
Initial API (project generation and parsing)
Initial test application:
Could we recombine our effort in common direction and which ?