This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
using_acsutils [2017/06/24 18:58] – korshun | using_acsutils [2017/07/14 17:50] (current) – korshun | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Using ACSUtils ====== | ||
===== Upgrading the compiler ===== | ===== Upgrading the compiler ===== | ||
- | You **must** upgrade your ACS compiler to use ACSUtils | + | You **must** upgrade your ACS compiler to use ACSUtils |
- | | + | Upgrade to one of the following compilers: |
+ | |||
+ | | ||
* **[[BCC]]** | * **[[BCC]]** | ||
* **[[GDCC]]** | * **[[GDCC]]** | ||
- | ===== Using ACSUtils ===== | + | ===== Adding |
- | - Download [[https:// | + | - Download [[https:// |
- Add '' | - Add '' | ||
- | - Use the code below to include ACSUtils into your project: | + | - Include '' |
< | < | ||
- | #library " | ||
- | |||
- | // ACSUtils settings: | ||
- | #define ACSUTILS_HUDLIB_SAVEDSTATES 16 | ||
- | #define TIDALLOCSTART 15000 | ||
- | |||
- | // Includes: | ||
#include " | #include " | ||
#include " | #include " | ||
+ | </ | ||
- | // Your project' | + | ===== Things to note ===== |
- | function void ACSUtilsErrorHandler(int type, int message) | + | |
- | { | + | |
- | Log(s:" | + | |
- | printbold(s:" | + | |
- | } | + | |
- | // Your project' | + | If your project has functions (or variables, if you are using [[ACC]]) with the same names as ACSUtils functions, it won't compile. Rename the functions in your project to fix it. ACSUtils functions are named to avoid some of the most annoying conflicts, but it still needs several renames in some big projects. |
- | </ | + | |
+ | ===== Optional enhancements ===== | ||
+ | |||
+ | - Copy '' | ||
+ | - Copy '' | ||
+ | |||
+ | ===== BCC enhancements ===== | ||
+ | |||
+ | If you are using [[BCC]], try [[BCSUtils]] -- a BCC-enhanced version of ACSUtils with the same functions! | ||
- | If you are making a mod for Zandronum, don't forget that you can [[.namedscripts|name your scripts too]]. | ||