amxconst: Add some more structure

This commit is contained in:
Valentin Grünbacher 2014-08-05 18:59:08 +02:00
parent d9b20d7896
commit 2659e63483

View File

@ -50,6 +50,10 @@ public stock const MaxClients; /* Maximum number of players the server supports
*/ */
#define M_PI 3.1415926535 #define M_PI 3.1415926535
/**
* @section Admin privilege and authentication constants
*/
/** /**
* Admin level constants * Admin level constants
*/ */
@ -79,6 +83,9 @@ public stock const MaxClients; /* Maximum number of players the server supports
#define ADMIN_ADMIN (1<<24) /* flag "y" */ #define ADMIN_ADMIN (1<<24) /* flag "y" */
#define ADMIN_USER (1<<25) /* flag "z" */ #define ADMIN_USER (1<<25) /* flag "z" */
/**
* Admin authentication behavior flags
*/
#define FLAG_KICK (1<<0) /* flag "a" */ #define FLAG_KICK (1<<0) /* flag "a" */
#define FLAG_TAG (1<<1) /* flag "b" */ #define FLAG_TAG (1<<1) /* flag "b" */
#define FLAG_AUTHID (1<<2) /* flag "c" */ #define FLAG_AUTHID (1<<2) /* flag "c" */
@ -86,6 +93,10 @@ public stock const MaxClients; /* Maximum number of players the server supports
#define FLAG_NOPASS (1<<4) /* flag "e" */ #define FLAG_NOPASS (1<<4) /* flag "e" */
#define FLAG_CASE_SENSITIVE (1<<10) /* flag "k" */ #define FLAG_CASE_SENSITIVE (1<<10) /* flag "k" */
/**
* @endsection
*/
/** /**
* Return codes * Return codes
*/ */
@ -94,7 +105,7 @@ public stock const MaxClients; /* Maximum number of players the server supports
#define PLUGIN_HANDLED_MAIN 2 /* to use in client_command(), continue all plugins but stop the command */ #define PLUGIN_HANDLED_MAIN 2 /* to use in client_command(), continue all plugins but stop the command */
/** /**
* CVAR constants for register_cvar() * CVAR flags for register_cvar()
*/ */
#define FCVAR_ARCHIVE 1 /* set to cause it to be saved to vars.rc */ #define FCVAR_ARCHIVE 1 /* set to cause it to be saved to vars.rc */
#define FCVAR_USERINFO 2 /* changes the client's info string */ #define FCVAR_USERINFO 2 /* changes the client's info string */
@ -177,7 +188,7 @@ public stock const MaxClients; /* Maximum number of players the server supports
#define HIT_RIGHTLEG 7 #define HIT_RIGHTLEG 7
/** /**
* @section Constants for emit_sound() * @section emit_sound() constants
*/ */
/** /**
@ -245,6 +256,10 @@ public stock const MaxClients; /* Maximum number of players the server supports
#define LANG_SERVER 0 #define LANG_SERVER 0
#define LANG_PLAYER -1 #define LANG_PLAYER -1
/**
* @section Client print native constants
*/
/** /**
* Destination types for client_print() * Destination types for client_print()
*/ */
@ -279,7 +294,15 @@ enum
}; };
/** /**
* Render for set_user_rendering() * @endsection
*/
/**
* @section Entity rendering constants
*/
/**
* Rendering modes (i.e. for set_user_rendering())
*/ */
enum enum
{ {
@ -292,7 +315,7 @@ enum
}; };
/** /**
* Fx for set_user_rendering() * Rendering fx (i.e. for set_user_rendering())
*/ */
enum enum
{ {
@ -319,6 +342,10 @@ enum
kRenderFxClampMinScale, /* Keep this sprite from getting very small (SPRITES only!) */ kRenderFxClampMinScale, /* Keep this sprite from getting very small (SPRITES only!) */
}; };
/**
* @endsection
*/
/** /**
* Type for force_unmodified() * Type for force_unmodified()
*/ */
@ -392,6 +419,10 @@ enum
*/ */
#define INVALID_HANDLE -1 #define INVALID_HANDLE -1
/**
* @section Plugin forward related constants
*/
/** /**
* Stop types for plugin forwards * Stop types for plugin forwards
*/ */
@ -408,6 +439,10 @@ enum
#define FP_STRING 2 #define FP_STRING 2
#define FP_ARRAY 4 #define FP_ARRAY 4
/**
* @endsection
*/
/** /**
* LibType constants * LibType constants
*/ */