Can we have blender dump the logic bricks into python code?

Just out of curiosity is is possible for blender to interpreted the logic bricks into the python commands?
The Virtual builders block project allows this with their brick system. It is very nice, you can generate the script from the blocks, and then save the scripts for later adjustments.Nice for learning what is going on under the hood. It is also a real time saver, you can just put together a few blocks for simple things, and pop out a script to save you from some typing.

if this dose not exist for blender could someone please make it?

it would be a pretty useful feature, unfortunatelly its not available at the moment, and implementing it would require to rewrite the whole logic system and break compatibility with the old one

and implementing it would require to rewrite the whole logic system and break compatibility with the old one

Not necessarily. It’s possible to make a program (or python script) that could read the DNA from a blend file and then read the logic brick data. Then you would need to convert the logic brick data into a python script (which is very possible). Unfortunately, that would take great deal of time to make and you need to understand the blend file structure.