ACSUtils Wiki

An ACS library for ZDoom-based ports

User Tools

Site Tools


functions:error

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
functions:error [2016/05/07 15:25] korshunfunctions:error [2017/06/12 15:42] (current) – removed korshun
Line 1: Line 1:
-====== Error notification ====== 
- 
-Various functions can be used incorrectly. When this happens, you can put a print statement into the function. But will that print statement log to the server console in multiplayer? Will you not forget to use PrintBold instead of Print if the error happens with a non-player activator? What if you want to be able to turn error messages off? And finally, how should ACSUtils notify you about errors? 
- 
-To solve all these problems, ACSUtils provides a standardized error handling mechanism. Errors are triggered through a set of functions that pass them to your project's custom error handler (see [[..namedscripts|Named scripts]]). 
- 
-<code> 
-#define ACSUTILS_ERROR_HANDLER myproject_errorhandler 
-#include "acsutils.acs" 
- 
-script myproject_errorhandler (int type, int message) 
-{ 
- Log(s:"error: ", s:message); 
- printbold(s:"error: ", s:message); 
-} 
-</code> 
- 
  
functions/error.1462634739.txt.gz · Last modified: by korshun