X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fbots.c;h=6a4ef848f458d086f49bcedc7b6559f74747ff04;hb=e99916c59372e6338a83d7bb866cbab63ccd2106;hp=bd7f4a68e96588b7e38397d5406882f530f6d7c7;hpb=cf2f1f690c661ed1b98afc5842a395b840db6769;p=NeonServV5.git diff --git a/src/bots.c b/src/bots.c index bd7f4a6..6a4ef84 100644 --- a/src/bots.c +++ b/src/bots.c @@ -1,4 +1,4 @@ -/* bots.c - NeonServ v5.1 +/* bots.c - NeonServ v5.2 * Copyright (C) 2011 Philipp Kreil (pk910) * * This program is free software: you can redistribute it and/or modify @@ -26,10 +26,20 @@ #include "bot_NeonServ.h" #include "bot_NeonSpam.h" +#include "bot_DummyServ.h" + +struct cmd_bot_alias { + int botid; + char *alias; + struct cmd_bot_alias *next; +}; + +static struct cmd_bot_alias *bot_aliases = NULL; void init_bots() { init_NeonServ(); init_NeonSpam(); + init_DummyServ(); MYSQL_RES *res; MYSQL_ROW row; @@ -51,11 +61,13 @@ void init_bots() { void loop_bots() { loop_NeonServ(); loop_NeonSpam(); + loop_DummyServ(); } void free_bots() { free_NeonServ(); free_NeonSpam(); + free_DummyServ(); } struct ClientSocket *getChannelBot(struct ChanNode *chan, int botid) { @@ -111,11 +123,11 @@ void general_event_privctcp(struct UserNode *user, struct UserNode *target, char static int general_ctcp(char *buffer, char *command, char *text) { if(!stricmp(command, "VERSION")) { - sprintf(buffer, "VERSION NeonServ v" NEONSERV_VERSION " by pk910 (%s)", (strcmp(revision, "") ? revision : "-")); + sprintf(buffer, "VERSION NeonServ v%s.%d by pk910 (%s)", NEONSERV_VERSION, patchlevel, (strcmp(revision, "") ? revision : "-")); return 1; } if(!stricmp(command, "FINGER")) { - sprintf(buffer, "FINGER NeonServ v" NEONSERV_VERSION " (%s) build %s lines C code using " COMPILER " (see +netinfo)", (strcmp(revision, "") ? revision : "-"), codelines); + sprintf(buffer, "FINGER NeonServ v%s.%d (%s) build %s lines C code using " COMPILER " (see +netinfo)", NEONSERV_VERSION, patchlevel, (strcmp(revision, "") ? revision : "-"), codelines); return 1; } if(!stricmp(command, "PING")) { @@ -134,3 +146,45 @@ static int general_ctcp(char *buffer, char *command, char *text) { } return 0; } + +void set_bot_alias(int botid, char *alias) { + struct cmd_bot_alias *botalias, *existing_alias = NULL; + for(botalias = bot_aliases; botalias; botalias = botalias->next) { + if(!stricmp(botalias->alias, alias)) + return; + if(botalias->botid == botid) + existing_alias = botalias; + } + if(existing_alias) { + free(existing_alias->alias); + existing_alias->alias = strdup(alias); + return; + } + botalias = malloc(sizeof(*botalias)); + if (!botalias) { + perror("malloc() failed"); + return; + } + botalias->botid = botid; + botalias->alias = strdup(alias); + botalias->next = bot_aliases; + bot_aliases = botalias; +} + +const char *resolve_botid(int botid) { + struct cmd_bot_alias *botalias; + for(botalias = bot_aliases; botalias; botalias = botalias->next) { + if(botalias->botid == botid) + return botalias->alias; + } + return NULL; +} + +int resolve_botalias(const char *alias) { + struct cmd_bot_alias *botalias; + for(botalias = bot_aliases; botalias; botalias = botalias->next) { + if(!stricmp(botalias->alias, alias)) + return botalias->botid; + } + return 0; +}