You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers. No questions about C++ programming or topics which are answered in the tutorials!
Please read about compilers and ask in a compiler/C++ newsgroup.
My latest "creation" is M3Script, a scripting language that uses irrlicht to make 3-D games and simulations. maybe if i release the source you could learn something from it
search google for "implementing a scripting engine", i remember there was an article on there..
scripting engines are sooooo slowwwww..... i would prefer ini configs instead of scripting engine. bit more work implementing everything but at least runs fast. imagine, you spend 3-4 weeks or more while making scripting engine. it surely slows down your game. so why not to use ini config parser and load lets say scene when everything is defined in the config? less work to do, more free time, better performance.
compiling scripts before run takes time. its slow. if you want faster result - you have to prepare precompilded bytecode. scripts compilation is not on the fly so whats point to have scripting engine anyway if scripts have to be compiled before running a game. also learning some new stupid scripting language is basicly same as learning c++, just c++ has more capabilities and it is more useful. if i rly would like to have something like that i would choose maybe xml instead. functions written in c++, game data defined in xml or ini configs, or even txt files. that is my opinion
Should I ever find a need for runtime-adjustable behaviour, I'll just use an expicitely loaded and unloaded DLL compiled in C++, the way the Baby Jesus would have done it.
Actually, I've making a simple Python binding of some core Irrlicht functionality using Boost::Python. Now that the binding is in place, all I have to do is hit ctrl-s in the text editor and then run the program. Sure, it has to "compile" the Python to byte code, but that usually takes a tiny fraction of a second since it only has to recompile the one file, as opposed to 30 seconds to re-link even a smallish C++ program every time you make one small change. Coders: how much of your life have you spent waiting for large C++ programs to compile and link, not being productive? Maybe at your day job this gives you a chance to goof off or zone out, but if you are trying to get something done it is refreshing to see results almost instantly.
Don't get me wrong, I'm a huge C++ fan, its my favorite programming language, but don't get down on Python or other scripting languages until you've given them a fair chance. The speed of Python is fine. You have to realize that the speed of your game is almost entirely dependent on your memory bandwidth and the speed of your GPU. With Irrlicht doing all the heavy lifting in the background, I can do the game logic in Python, and it still runs at 60 frames per second (with Vsync) on my laptop, while only using a fraction of the processor time.
if we already are talking about python... i think its ugly choice. syntax is very... umm... strange. that lines aligment stuff can blow out my head since i havent found good python editor (actualy i dint search for it, i thought notepad++ will do well but it doesn)