Note: these are usually single file scripts meant to be put in the root directory of your scripts.
Name | License | Description |
---|---|---|
fixscript-macros-0.6.zip | ZLIB | adds support for macros by copy & pasting of token snippets (including passing of parameters and having temporary variable names inside macros) |
fixscript-classes-0.8.zip (docs) | ZLIB | adds support for classes and optional type checking, automatically uses float operators for float operations |
fixscript-simple-0.2.zip | ZLIB | adds simplification of the common operators (+,-,*,/) to automatically work based on the types of the arguments, allowing to work seamlessly with integers, floats (including string concatenation), also provides simple objects using the dot operator on hash tables, best suited for more scripting usages where the performance is of a lesser matter |
fixscript-unpack-0.4.zip | ZLIB | allows to unpack arrays into variables |
fixscript-optional-0.3.zip | ZLIB | allows to provide optional functionality without requiring the other libraries if not present |
fixscript-autoinit-0.1.zip | ZLIB | allows to automatically call init function when any other function is called the first time |
Note: most of these libraries are single .c and .h files with no external dependencies accompanied with multiple files written in FixScript (in their own directories).
Name | License | Description |
---|---|---|
fixio-0.8.zip (docs) | ZLIB | provides general byte streams, zlib/gzip compression, TCP sockets, file access and asynchronous I/O |
fiximage-0.7.zip (docs) | ZLIB | a 2D rendering library, supports rendering to 32-bit premultiplied ARGB images, PNG loading/saving, shape rendering, simple shaders, bilinear & bicubic sampling |
fixgui-0.8.zip (docs) | ZLIB | a cross-platform GUI library (preview release) |
fixtask-0.6.zip (docs) | ZLIB | this library allows you to create and communicate between threads (tasks) |
fixnative-0.4.zip (docs) | ZLIB | provides ability to call native functions and to access native memory |
These libraries are written in pure FixScript. Some can provide optional native code to provide a speedup.
Name | License | Description |
---|---|---|
fixutil-0.4.zip (docs) | ZLIB | provides various utility functions and classes |