View Single Post
  #10  
Old October 11th, 2004, 06:37 PM
Aiken's Avatar

Aiken Aiken is offline
Major
 
Join Date: Jan 2004
Location: Taganrog, Russia
Posts: 1,087
Thanks: 0
Thanked 0 Times in 0 Posts
Aiken is on a distinguished road
Default Re: Antares Mod preview

Quote:
Well, I don't actually do any coding at this job - I just brought my laptop along to have something to do when things got slow
Then they cannot claim their rights to any piece of code you wrote.

Quote:
Go ahead and rewrite it in Python if you want, but I'd advise you not to; it just seems like a waste of effort - not just your effort in rewriting old code, but both of ours in that any features one of us adds, the other will have to add as well in the other language.
It's very easy to embedd python code in C. The most trivial example is to write:
#include <Python.h>
and now you can use Python api functions inside you C code.

Ruby and Python are great OO Languages, if you are looking for one and don't want to use Java (bleh ).

But almost surely python script will be slower than C bytecode, so I don't expect significant impovement here. But it's worth a try, I think. It's very easy to delete entire project folder afterall. Positive side is that this app could be much smaller, crossplatform and very easy to extend or embed.
Reply With Quote