1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00
profanity/profanity.c
2012-02-10 00:28:39 +00:00

122 lines
2.5 KiB
C

#include <string.h>
#include <unistd.h>
#include <ncurses.h>
#include "profanity.h"
#include "log.h"
#include "windows.h"
#include "jabber.h"
#include "command.h"
#define AWAIT_COMMAND 1
#define START_MAIN 2
#define QUIT_PROF 3
static int handle_start_command(char *cmd);
static void profanity_main(void);
static void profanity_event_loop(int *ch, char *cmd, int *size);
void profanity_start(void)
{
int cmd_result = AWAIT_COMMAND;
char cmd[50];
while (cmd_result == AWAIT_COMMAND) {
inp_get_command_str(cmd);
cmd_result = handle_start_command(cmd);
}
if (cmd_result == START_MAIN) {
profanity_main();
}
}
static void profanity_main(void)
{
int cmd_result = TRUE;
inp_non_block();
while(cmd_result == TRUE) {
int ch = ERR;
char cmd[100];
int size = 0;
while(ch != '\n')
profanity_event_loop(&ch, cmd, &size);
cmd[size++] = '\0';
cmd_result = handle_command(cmd);
}
jabber_disconnect();
}
static void profanity_event_loop(int *ch, char *cmd, int *size)
{
usleep(1);
inp_bar_update_time();
// handle incoming messages
jabber_process_events();
// determine if they changed windows
if (*ch == KEY_F(1)) {
switch_to(0);
} else if (*ch == KEY_F(2)) {
switch_to(1);
} else if (*ch == KEY_F(3)) {
switch_to(2);
} else if (*ch == KEY_F(4)) {
switch_to(3);
} else if (*ch == KEY_F(5)) {
switch_to(4);
} else if (*ch == KEY_F(6)) {
switch_to(5);
} else if (*ch == KEY_F(7)) {
switch_to(6);
} else if (*ch == KEY_F(8)) {
switch_to(7);
} else if (*ch == KEY_F(9)) {
switch_to(8);
} else if (*ch == KEY_F(10)) {
switch_to(9);
}
// get another character from the command box
inp_poll_char(ch, cmd, size);
}
static int handle_start_command(char *cmd)
{
int result;
if (strcmp(cmd, "/quit") == 0) {
result = QUIT_PROF;
} else if (strncmp(cmd, "/help", 5) == 0) {
cons_help();
inp_clear();
result = AWAIT_COMMAND;
} else if (strncmp(cmd, "/connect ", 9) == 0) {
char *user;
user = strndup(cmd+9, strlen(cmd)-9);
inp_bar_print_message("Enter password:");
char passwd[20];
inp_get_password(passwd);
inp_bar_print_message(user);
jabber_connect(user, passwd);
result = START_MAIN;
} else {
cons_bad_command(cmd);
inp_clear();
result = AWAIT_COMMAND;
}
return result;
}