Freedom Reborn

Freedom Force Forums => Scripting Forum => Topic started by: apfarmakis on February 23, 2009, 12:59:20 AM

Title: Any workarounds for maxed-out ffx.py?
Post by: apfarmakis on February 23, 2009, 12:59:20 AM
I like experimenting with ffx.py but unfortunately my additions have maxed it out (error message on rumble-room startup). Is there a workaround to this (e.g. creating a new file to put them in) so I can continue adding attributes and othe things?
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: stumpy on February 23, 2009, 04:02:35 AM
The workaround that will likely be used in the next release can be a little tricky. The quickest workaround at the moment if you are just looking to try out your own attributes or whatever is to pick a few existing attributes that you don't use and won't need and delete their code. The space freed up that way can be used for code you are writing.

Obviously, you should back up your ffx.py before doing that.
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: apfarmakis on February 23, 2009, 08:37:12 AM
Thanks for the quick reply Stumpy. How exactly could you work around it other than deleting code from ffx.py?
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: stumpy on February 23, 2009, 10:50:48 AM
M25 has tested this more than I have, so he may have some clarifications. But, the basic idea is that you copy the code for a particular attribute into it's own python file and then import ffx into it and import it into ffx. Of course, that circularity can cause trouble, so you can't just import * from both files.

For instance, say you move the code for an attribute called someattrib to a file called someattrib.py.
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: M25 on February 23, 2009, 04:13:22 PM
Yes, that's it.  Except that you should import and use js. in someattrib.py rather than ff.


Title: Re: Any workarounds for maxed-out ffx.py?
Post by: stumpy on February 23, 2009, 05:42:41 PM
Oops. I thought ff was a superset of js.
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: M25 on February 23, 2009, 07:20:34 PM
It is, but I think it is better to be as specific as we can to avoid any name space issues. 
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: stumpy on February 23, 2009, 09:16:10 PM
Good point. I tested importing ff with the invulnerable attributes and didn't have any trouble, but they are pretty straightforward. It's probably safer to use js, but people may have have keep in mind the need to separately import the common scripting functions that are part of cshelper and so on that are part of the ff name space but not part of js.
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: seraglio on March 22, 2014, 07:47:59 PM
Sorry for the 5 year necropost, but I was unaware there was a size limit to ffx.py. Mine is about 864k right now. Any idea what that limit might be?
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: Epimethee on March 23, 2014, 04:00:17 PM
Actually, thank you for finding a relevant thread to post into. In FFX 3.4, ffx.py was maxed at 1341 ko.

Edit: 3.3, not 3.4, sorry.
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: yell0w_lantern on April 11, 2014, 03:55:23 AM
I had no idea there was a 3.4.
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: spydermann93 on April 11, 2014, 04:56:55 AM
Neither did I. :huh:  The latest version of FFX3 that I ever saw was 3.3.1.0 (of which I modified and called 3.4 :P)
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: Epimethee on April 12, 2014, 04:27:56 AM
Sorry gents, I meant FFX 3.3, not 3.4.
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: stumpy on April 12, 2014, 06:32:30 AM
Hehe. That would start some buzz. ;-)


BTW, someone might be looking to pare down ffx.py a bit. For instance, when testing a new attribute, it is often easiest to put it in ffx.py and debug it and tweak it until it works well in that file. Once it's working, that code can be moved to it's own file and simply imported into ffx.py, preventing ffx.py from bumping into the code limit. To have room to test that code in ffx.py in the first place, some existing FFX attributes might have to be moved to their own files.

I wrote an unsophisticated converter a while back when the FFX team was looking to trim down ffx.py by putting many of the attribute functions in their own files and then importing them.

If anyone finds that they need to trim ffx.py for their own purposes, the process isn't exceptionally complicated and my converter can help speed the process and avoid namespace errors. See this post (http://freedomreborn.net/forums/index.php?topic=56834.msg768681#msg768681) for another mention of it and a link to the converter and brief document file. Also, the discussion earlier in this thread is informative.
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: Epimethee on April 12, 2014, 08:38:31 PM
I'd rather we did FFX 4.0 instead. ;)

The code base could certainly use some refactoring and cleanup. Mind you, at roughly 90,000 lines of (not really documented) code—around the same as Photoshop 1.0—, it'd probably take a few years full-time for a professional developer...

BTW, nice converter tool! I had missed that thread.
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: yell0w_lantern on May 09, 2014, 04:03:33 PM
What about using the ffx2 file?
Title: Re: Any workarounds for maxed-out ffx.py?
Post by: Epimethee on May 09, 2014, 04:57:54 PM
Yes, ffx2.py exists to work around this size limit. Functions inside this file will need to explicitly call the right module, though; the converter will help a lot there.