xbot/src/events.c

247 lines
6.3 KiB
C
Raw Normal View History

2015-03-24 10:48:11 -07:00
#include "irc.h"
#include "util.h"
2015-03-26 16:20:59 -07:00
#include "events.h"
#include "module.h"
2015-03-24 10:48:11 -07:00
#include <stdio.h>
2015-03-26 16:20:59 -07:00
#include <stdlib.h>
2015-03-24 10:48:11 -07:00
#include <string.h>
2024-02-13 02:56:23 -08:00
#include <stdarg.h>
2015-03-26 16:20:59 -07:00
2024-02-12 23:22:10 -08:00
#ifdef _WIN32
#include <ctype.h>
#define SPF sprintf_s
#else
#define SPF sprintf
#endif
2024-02-13 02:56:23 -08:00
struct handler *privmsg_self;
struct handler *privmsg_chan;
struct handler *chan_join;
struct handler *irc_connected;
int handlers_count = 0;
struct handler *handlers[512];
2015-04-08 11:56:32 -07:00
2024-02-13 02:56:23 -08:00
void init_event_type(char *type)
2015-03-26 16:20:59 -07:00
{
2024-02-13 02:56:23 -08:00
handlers[handlers_count] = calloc(1, sizeof(struct handler));
handlers[handlers_count]->type = type;
2024-02-13 04:07:59 -08:00
handlers[handlers_count]->count = 0;
2024-02-13 02:56:23 -08:00
handlers[handlers_count]->evhands = calloc(128, sizeof(struct ev_handler));
2015-04-08 11:56:32 -07:00
2024-02-13 02:56:23 -08:00
handlers_count++;
}
2015-03-26 16:20:59 -07:00
2024-02-13 02:56:23 -08:00
void init_events()
{
init_event_type(PRIVMSG_SELF);
init_event_type(PRIVMSG_CHAN);
init_event_type(JOIN);
init_event_type(IRC_CONNECTED);
2015-03-26 16:20:59 -07:00
}
2024-02-12 23:22:10 -08:00
MY_API int add_handler(char *type, void *handler)
2015-03-26 16:20:59 -07:00
{
2024-02-13 04:07:59 -08:00
int i;
2024-02-12 23:22:10 -08:00
printf("Installing handler @ %p [type: %s]\n", handler, type);
2024-02-13 04:07:59 -08:00
for (i = 0; i < handlers_count; i++)
2024-02-12 23:22:10 -08:00
{
2024-02-13 04:07:59 -08:00
printf("comparing %s to %s\n", handlers[i]->type, type);
2024-02-13 02:56:23 -08:00
if (!strcmp(handlers[i]->type, type))
{
if (handlers[i]->count < 128)
{
handlers[i]->evhands[handlers[i]->count].id = handlers[i]->count;
handlers[i]->evhands[handlers[i]->count].handler = handler;
2024-02-12 23:22:10 -08:00
2024-02-13 02:56:23 -08:00
handlers[i]->count++;
2024-02-13 04:07:59 -08:00
printf("type %s count: %d\n", type, handlers[i]->count);
return handlers[i]->count - 1;
2024-02-13 02:56:23 -08:00
}
else
{
printf("Handler array is full, cannot add more handlers.\n");
return -1;
}
}
2024-02-12 23:22:10 -08:00
}
2015-04-08 11:56:32 -07:00
}
2015-03-26 16:20:59 -07:00
MY_API void del_handler(char *type, void *handler)
2015-04-08 11:56:32 -07:00
{
int i, j;
for (i = 0; i < handlers_count; i++)
{
if (!strcmp(handlers[i]->type, type))
{
for (j = 0; j < handlers[i]->count; j++)
{
if (handlers[i]->evhands[j].handler == handler)
{
handlers[i]->evhands[j].handler = NULL;
}
}
}
}
2015-04-08 11:56:32 -07:00
}
2024-02-13 02:56:23 -08:00
void fire_handler(struct irc_conn *bot, char *type, ...)
2015-04-08 11:56:32 -07:00
{
2024-02-13 02:56:23 -08:00
va_list args;
2024-02-13 04:07:59 -08:00
char *usr = calloc(1, 64);
char *chan = calloc(1, 64);
char *text = calloc(1, 512);
int i, j;
void (*handler)();
2024-02-13 16:25:08 -08:00
char *cmd, *arg, *modpath;
modpath = (char *)malloc(sizeof(char)*500);
printf("Firing handler for type: %s\n", type);
if (!strcmp(type, PRIVMSG_SELF))
{
printf("Firing PRIVMSG_SELF handler\n");
va_start(args, type);
usr = va_arg(args, char*);
text = va_arg(args, char*);
cmd = text;
arg = skip(cmd, ' ');
printf("cmd: %s\n", cmd);
printf("arg: %s\n", arg);
if (!strcmp("JOIN", cmd))
{
printf("dbug: cmp (%s : %s)\n", (char*)bot->admin, usr);
if (!strcmp(bot->admin, usr))
{
irc_raw(bot, "JOIN :%s", arg);
}
else
{
irc_notice(bot, usr, "You are unauthorized to use this command.");
}
}
else if (!strcmp("PART", cmd))
{
if (!strcmp(bot->admin, usr))
{
irc_raw(bot, "PART %s :Admin made me leave.", arg);
}
else
{
irc_notice(bot, usr, "You are unauthorized to use this command.");
}
}
/*
else if (!strcmp("PRINT_HANDLERS", cmd))
{
if (!strcmp(bot->admin, usr))
{
for (i = 0; i < privmsg_chan->count; i++)
{
irc_notice(bot, usr, "handler[%i:%s]: %p", i, privmsg_chan->type, privmsg_chan->handlers[i]);
}
for (i = 0; i < privmsg_self->count; i++)
{
irc_notice(bot, usr, "handler[%i:%s]: %p", i, privmsg_self->type, privmsg_self->handlers[i]);
}
2015-04-08 11:56:32 -07:00
2024-02-13 16:25:08 -08:00
for (i = 0; i < irc_connected->count; i++)
{
irc_notice(bot, usr, "handler[%i:%s]: %p", i , irc_connected->type, irc_connected->handlers[i]);
}
}
}
*/
else if (!strcmp("LOADMOD", cmd))
{
if (!strcmp(bot->admin, usr))
{
irc_notice(bot, usr, "Loading module: mods/%s.so", arg);
#ifdef _WIN32
SPF(modpath, "./mods/%s.dll", arg);
#else
SPF(modpath, "./mods/%s.so", arg);
#endif
load_module(bot, usr, PRIVMSG_SELF, modpath);
}
else
{
irc_notice(bot, usr, "You are unauthorized to use this command.");
}
}
}
2024-02-13 04:07:59 -08:00
for (i = 0; i < handlers_count; i++)
2024-02-12 23:22:10 -08:00
{
2024-02-13 02:56:23 -08:00
if (!strcmp(handlers[i]->type, type))
{
2024-02-13 04:07:59 -08:00
for (j = 0; j < handlers[i]->count; j++)
2024-02-13 02:56:23 -08:00
{
2024-02-13 04:07:59 -08:00
handler = handlers[i]->evhands[j].handler;
2024-02-13 02:56:23 -08:00
if (handler == NULL)
continue;
2024-02-13 02:56:23 -08:00
if (!strcmp(type, PRIVMSG_SELF))
{
2024-02-13 04:07:59 -08:00
va_start(args, type);
usr = va_arg(args, char*);
text = va_arg(args, char*);
2024-02-13 02:56:23 -08:00
2024-02-13 04:07:59 -08:00
(*handler)(bot, usr, text);
2024-02-13 02:56:23 -08:00
va_end(args);
}
else if (!strcmp(type, PRIVMSG_CHAN))
{
2024-02-13 04:07:59 -08:00
va_start(args, type);
2024-02-13 02:56:23 -08:00
2024-02-13 04:07:59 -08:00
usr = va_arg(args, char*);
chan = va_arg(args, char*);
text = va_arg(args, char*);
2024-02-13 02:56:23 -08:00
2024-02-13 04:07:59 -08:00
(*handler)(bot, usr, chan, text);
va_end(args);
2024-02-13 02:56:23 -08:00
}
else if (!strcmp(type, JOIN))
{
2024-02-13 04:07:59 -08:00
va_start(args, type);
chan = va_arg(args, char*);
usr = va_arg(args, char*);
2024-02-13 02:56:23 -08:00
2024-02-13 04:07:59 -08:00
(*handler)(bot, chan, usr);
2024-02-13 02:56:23 -08:00
va_end(args);
}
else if (!strcmp(type, IRC_CONNECTED))
{
2024-02-13 04:07:59 -08:00
va_start(args, type);
2024-02-13 02:56:23 -08:00
2024-02-13 04:07:59 -08:00
text = va_arg(args, char*);
2024-02-13 02:56:23 -08:00
2024-02-13 04:07:59 -08:00
(*handler)(bot, text);
va_end(args);
2024-02-13 02:56:23 -08:00
}
}
}
2024-02-12 23:22:10 -08:00
}
2024-02-13 02:56:23 -08:00
2024-02-12 23:22:10 -08:00
free(modpath);
2015-03-26 16:20:59 -07:00
}
void free_events()
{
2024-02-13 02:56:23 -08:00
//free(handlers);
2024-02-12 23:22:10 -08:00
}