I'm talking about ROOT's CINT.
I've been developing a game in c++ wich uses Python for programming the AI. As much as I love Python, and how easy it makes programming the AI (generators and FP are really sexy), it makes non trivial algorythms run so slow.
Then I remembered I read somewhere about CINT, and how it can be embedable. Now I need your help to decide if implement CINT as an alternate scripting system. With python I use Boost::Python, wich makes it almost unpainfull to expose classes and objects once you get used to it. Is there such ease with CINT?
Thank you.