2012-10-28 01:06:09 +02:00
|
|
|
/* Process textevents.in with make-te < textevents.in > textevents.h 2> textenums.h
|
|
|
|
*
|
2012-10-27 13:30:30 +02:00
|
|
|
* textevents.in notes:
|
2012-10-28 01:06:09 +02:00
|
|
|
*
|
|
|
|
* - The number in the ending lines indicates the total number of arguments
|
|
|
|
* a text event supports. So don't touch them unless you actually modify the
|
|
|
|
* EMIT_SIGNAL commands, too.
|
|
|
|
*
|
|
|
|
* - The "n" prefix means the event text does not have to be translated thus
|
|
|
|
* the N_() gettext encapsulation will be omitted.
|
|
|
|
*
|
|
|
|
* - EMIT_SIGNAL is just a macro for text_emit() which can take a total amount
|
|
|
|
* of 4 event arguments, so events have a hard limit of 4 arguments.
|
|
|
|
*
|
|
|
|
* - $t means the xtext tab, i.e. the vertical separator line for indented nicks.
|
|
|
|
* That means $t forces a new line for that event.
|
|
|
|
*
|
|
|
|
* - Text events are emitted in ctcp.c, dcc.c, hexchat.c, ignore.c, inbound.c,
|
|
|
|
* modes.c, notify.c, outbound.c, proto-irc.c, server.c and text.c.
|
2012-10-27 13:30:30 +02:00
|
|
|
*/
|
|
|
|
|
2011-02-24 04:14:30 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
char name[512];
|
|
|
|
char num[512];
|
|
|
|
char help[512];
|
|
|
|
char def[512];
|
|
|
|
char args[512];
|
|
|
|
char buf[512];
|
|
|
|
char *defines[512];
|
|
|
|
int i = 0, max;
|
|
|
|
|
|
|
|
printf("/* this file is auto generated, edit textevents.in instead! */\n\nconst struct text_event te[] = {\n");
|
|
|
|
while(fgets(name, sizeof(name), stdin))
|
|
|
|
{
|
|
|
|
name[strlen(name)-1] = 0;
|
|
|
|
fgets(num, sizeof(num), stdin);
|
|
|
|
num[strlen(num)-1] = 0;
|
|
|
|
fgets(help, sizeof(help), stdin);
|
|
|
|
help[strlen(help)-1] = 0;
|
|
|
|
fgets(def, sizeof(def), stdin);
|
|
|
|
def[strlen(def)-1] = 0;
|
|
|
|
fgets(args, sizeof(args), stdin);
|
|
|
|
args[strlen(args)-1] = 0;
|
|
|
|
fgets(buf, sizeof(buf), stdin);
|
|
|
|
|
|
|
|
if (args[0] == 'n')
|
|
|
|
printf("\n{\"%s\", %s, %d, \n\"%s\"},\n",
|
|
|
|
name, help, atoi(args+1) | 128, def);
|
|
|
|
else
|
|
|
|
printf("\n{\"%s\", %s, %d, \nN_(\"%s\")},\n",
|
|
|
|
name, help, atoi(args), def);
|
|
|
|
defines[i] = strdup (num);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("};\n");
|
|
|
|
|
|
|
|
fprintf(stderr, "/* this file is auto generated, edit textevents.in instead! */\n\nenum\n{\n");
|
|
|
|
max = i;
|
|
|
|
i = 0;
|
|
|
|
while (i < max)
|
|
|
|
{
|
|
|
|
if (i + 1 < max)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "\t%s,\t\t%s,\n", defines[i], defines[i+1]);
|
|
|
|
i++;
|
|
|
|
} else
|
|
|
|
fprintf(stderr, "\t%s,\n", defines[i]);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\tNUM_XP\n};\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|