Improve the triggers to allow python scripting in the
command section. That involves introducing python
dependencies and will bring the executable size on
windows more closer to a floppy disk size >:o
Also think of a frontend for python to allow
non-advanced users script too.
Logged In: YES
user_id=712025
The python interpreter has been introduced. Now Azuel has to
actually introduce the dependencies in Windows. Oh and, I
didn't notice any big size increase for GNU/Linux, go shared
libraries :/
Currently only the interpreter is started on program launch
and closed on program shutdown. In debug mode it will also
notify the startup and shutdown of the interpreter to stdout
with a python command. Go me and my 5 lines of code to do
it, not to mention the hours to figure out how to do update
the autoconf/automake stuff :P
Logged In: YES
user_id=712025
On 12th July I commited code changes that made sending text
to a MUD from a python script a reality.
This merely required a change of the way I was trying to
handle the python module. Now it's all compiled together
with everything else and all problems disappeared.
To send something to a MUD, use the send() python function.
The one and only argument currently is the string to be
sent. Of course you can use all python string manipulation
features.
Making it easier to non-programmer types is still necessary.
Leaving RFE currently open because slight modifications to
the code are still necessary.