From d63e0473ba5b9117d484cf58af78832515334e3a Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 26 Dec 2005 21:45:15 +0000 Subject: Added global_implementation array, bypasses calls which *NO* modules are currently implementing git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2670 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/inspircd_io.h | 4 ++++ include/modules.h | 12 ++++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/inspircd_io.h b/include/inspircd_io.h index 86ab543a5..5319f8c59 100644 --- a/include/inspircd_io.h +++ b/include/inspircd_io.h @@ -255,6 +255,10 @@ class ServerConfig : public classbase */ char implement_lists[255][255]; + /** Global implementation list + */ + char global_implementation[255]; + /** A list of ports claimed by IO Modules */ std::map IOHookModule; diff --git a/include/modules.h b/include/modules.h index 264354db9..460cc6566 100644 --- a/include/modules.h +++ b/include/modules.h @@ -80,10 +80,12 @@ typedef std::deque chanuserlist; // loaded modules in a readable simple way, e.g.: // 'FOREACH_MOD OnConnect(user);' -#define FOREACH_MOD(y,x) for (int _i = 0; _i <= MODCOUNT; _i++) { \ +#define FOREACH_MOD(y,x) if (Config->global_implementation[y] > 0) { \ + for (int _i = 0; _i <= MODCOUNT; _i++) { \ if (Config->implement_lists[_i][y]) \ modules[_i]->x ; \ - } + } \ + } // This define is similar to the one above but returns a result in MOD_RESULT. // The first module to return a nonzero result is the value to be accepted, @@ -91,7 +93,8 @@ typedef std::deque chanuserlist; // ********************************************************************************************* -#define FOREACH_RESULT(y,x) { MOD_RESULT = 0; \ +#define FOREACH_RESULT(y,x) { if (Config->global_implementation[y] > 0) { \ + MOD_RESULT = 0; \ for (int _i = 0; _i <= MODCOUNT; _i++) { \ if (Config->implement_lists[_i][y]) {\ int res = modules[_i]->x ; \ @@ -101,7 +104,8 @@ typedef std::deque chanuserlist; } \ } \ } \ - } + } \ + } // ********************************************************************************************* -- cgit v1.2.3