summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-01-18 19:09:16 +0100
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-01-18 19:09:16 +0100
commit0d49fb74eadcf933f696420cd182077927680d26 (patch)
tree9220d260ce878f369138da12dae0300cf9ade5c9 /src/pervasive.h
parent24afb3e60bafd98e6a83dcb41ee6a7f7d41e76bc (diff)
Done with 'core', starting to work on 'knowledge'.
Diffstat (limited to 'src/pervasive.h')
-rw-r--r--src/pervasive.h34
1 files changed, 6 insertions, 28 deletions
diff --git a/src/pervasive.h b/src/pervasive.h
index b830326..c7c53a2 100644
--- a/src/pervasive.h
+++ b/src/pervasive.h
@@ -3,6 +3,12 @@
#include <limits.h>
+#define ZoO_DEBUG_ALL 1
+
+#ifndef ZoO_DEBUG_ALL
+ #define ZoO_DEBUG_ALL 0
+#endif
+
#ifndef ZoO_NETWORK_TIMEOUT
#define ZoO_NETWORK_TIMEOUT 200
#endif
@@ -11,34 +17,6 @@
#define ZoO_MAX_REPLY_WORDS 64
#endif
-#ifndef ZoO_DEFAULT_DATA_FILENAME
- #define ZoO_DEFAULT_DATA_FILENAME "./memory.txt"
-#endif
-
-#ifndef ZoO_DEFAULT_IRC_SERVER_ADDR
- #define ZoO_DEFAULT_IRC_SERVER_ADDR "irc.foonetic.net"
-#endif
-
-#ifndef ZoO_DEFAULT_IRC_SERVER_PORT
- #define ZoO_DEFAULT_IRC_SERVER_PORT "6667"
-#endif
-
-#ifndef ZoO_DEFAULT_IRC_SERVER_CHANNEL
- #define ZoO_DEFAULT_IRC_SERVER_CHANNEL "#theborghivemind"
-#endif
-
-#ifndef ZoO_DEFAULT_IRC_USERNAME
- #define ZoO_DEFAULT_IRC_USERNAME "zeroofone"
-#endif
-
-#ifndef ZoO_DEFAULT_IRC_REALNAME
- #define ZoO_DEFAULT_IRC_REALNAME "Zero of One (bot)"
-#endif
-
-#ifndef ZoO_DEFAULT_REPLY_RATE
- #define ZoO_DEFAULT_REPLY_RATE 8
-#endif
-
#define ZoO__TO_STRING(x) #x
#define ZoO_TO_STRING(x) ZoO__TO_STRING(x)
#define ZoO_ISOLATE(a) do {a} while (0)