1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-18 15:17:46 +02:00
toxic/src/groupchat.c

765 lines
20 KiB
C
Raw Normal View History

2014-02-25 08:28:24 +01:00
/* groupchat.c
*
*
* Copyright (C) 2014 Toxic All Rights Reserved.
*
* This file is part of Toxic.
*
* Toxic is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Toxic is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Toxic. If not, see <http://www.gnu.org/licenses/>.
*
2013-09-15 22:38:38 +02:00
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE /* needed for strcasestr() and wcswidth() */
#endif
2014-06-22 03:41:38 +02:00
2013-09-15 22:38:38 +02:00
#include <stdlib.h>
#include <string.h>
2014-08-02 00:37:02 +02:00
#include <assert.h>
2013-09-15 22:38:38 +02:00
#include <time.h>
2014-06-22 03:41:38 +02:00
#include <wchar.h>
#include <unistd.h>
2019-03-27 06:38:15 +01:00
#include <inttypes.h>
2013-09-15 22:38:38 +02:00
2014-11-29 15:36:31 +01:00
#ifdef AUDIO
#ifdef __APPLE__
#include <OpenAL/al.h>
#include <OpenAL/alc.h>
#else
#include <AL/al.h>
#include <AL/alc.h>
/* compatibility with older versions of OpenAL */
#ifndef ALC_ALL_DEVICES_SPECIFIER
#include <AL/alext.h>
2018-10-08 19:39:04 +02:00
#endif /* ALC_ALL_DEVICES_SPECIFIER */
#endif /* __APPLE__ */
#endif /* AUDIO */
2014-11-29 15:36:31 +01:00
#include "windows.h"
#include "toxic.h"
2013-11-10 03:43:56 +01:00
#include "execute.h"
#include "misc_tools.h"
#include "groupchat.h"
#include "prompt.h"
2013-12-11 06:10:09 +01:00
#include "toxic_strings.h"
#include "log.h"
2014-03-25 13:21:50 +01:00
#include "line_info.h"
2014-04-07 10:42:10 +02:00
#include "settings.h"
#include "input.h"
#include "help.h"
2014-07-21 01:12:13 +02:00
#include "notify.h"
#include "autocomplete.h"
#include "audio_device.h"
2013-09-15 22:38:38 +02:00
extern char *DATA_FILE;
2014-06-18 18:10:00 +02:00
static GroupChat groupchats[MAX_GROUPCHAT_NUM];
2013-11-30 00:52:21 +01:00
static int max_groupchat_index = 0;
extern struct user_settings *user_settings;
extern struct Winthread Winthread;
2014-04-07 10:42:10 +02:00
2014-11-15 02:13:08 +01:00
/* Array of groupchat command names used for tab completion. */
static const char *group_cmd_list[] = {
"/accept",
"/add",
"/avatar",
"/clear",
"/close",
"/connect",
"/decline",
"/exit",
"/group",
"/help",
"/log",
"/myid",
2018-06-16 05:07:16 +02:00
#ifdef QRCODE
"/myqr",
2018-06-16 05:07:16 +02:00
#endif /* QRCODE */
"/nick",
"/note",
"/nospam",
"/quit",
"/requests",
"/status",
"/title",
#ifdef PYTHON
"/run",
#endif /* PYTHON */
2014-11-15 02:13:08 +01:00
};
2013-12-09 00:14:57 +01:00
static ToxWindow *new_group_chat(uint32_t groupnum);
static void kill_groupchat_window(ToxWindow *self)
{
ChatContext *ctx = self->chatwin;
log_disable(ctx->log);
line_info_cleanup(ctx->hst);
delwin(ctx->linewin);
delwin(ctx->history);
delwin(ctx->sidebar);
free(ctx->log);
free(ctx);
free(self->help);
del_window(self);
}
int init_groupchat_win(Tox *m, uint32_t groupnum, uint8_t type, const char *title,
2019-12-08 05:17:02 +01:00
size_t title_length)
2013-09-15 22:38:38 +02:00
{
2016-12-18 06:01:51 +01:00
if (groupnum > MAX_GROUPCHAT_NUM) {
2014-06-18 18:10:00 +02:00
return -1;
2016-12-18 06:01:51 +01:00
}
2014-06-18 18:10:00 +02:00
ToxWindow *self = new_group_chat(groupnum);
2013-09-15 22:38:38 +02:00
for (int i = 0; i <= max_groupchat_index; ++i) {
2013-09-15 22:38:38 +02:00
if (!groupchats[i].active) {
2014-11-26 21:22:34 +01:00
groupchats[i].chatwin = add_window(m, self);
2013-09-15 22:38:38 +02:00
groupchats[i].active = true;
groupchats[i].num_peers = 0;
2014-11-12 02:49:05 +01:00
groupchats[i].type = type;
groupchats[i].start_time = get_unix_time();
2014-09-24 04:51:56 +02:00
set_active_window_index(groupchats[i].chatwin);
set_window_title(self, title, title_length);
2013-09-15 22:38:38 +02:00
if (i == max_groupchat_index) {
2013-11-17 22:09:14 +01:00
++max_groupchat_index;
}
2013-11-17 22:09:14 +01:00
2013-09-15 22:38:38 +02:00
return 0;
}
}
kill_groupchat_window(self);
2014-02-26 11:23:11 +01:00
return -1;
2014-02-26 11:23:11 +01:00
}
void free_groupchat(ToxWindow *self, uint32_t groupnum)
2014-02-26 11:23:11 +01:00
{
free_ptr_array((void **) groupchats[groupnum].name_list);
free(groupchats[groupnum].peer_list);
memset(&groupchats[groupnum], 0, sizeof(GroupChat));
2013-09-15 22:38:38 +02:00
int i;
2013-11-17 22:09:14 +01:00
for (i = max_groupchat_index; i > 0; --i) {
if (groupchats[i - 1].active) {
2013-09-15 22:38:38 +02:00
break;
}
2013-09-15 22:38:38 +02:00
}
2013-11-17 22:09:14 +01:00
max_groupchat_index = i;
2014-02-26 11:23:11 +01:00
kill_groupchat_window(self);
2013-09-15 22:38:38 +02:00
}
static void delete_groupchat(ToxWindow *self, Tox *m, uint32_t groupnum)
{
tox_conference_delete(m, groupnum, NULL);
free_groupchat(self, groupnum);
}
/* destroys and re-creates groupchat window with or without the peerlist */
void redraw_groupchat_win(ToxWindow *self)
{
ChatContext *ctx = self->chatwin;
endwin();
refresh();
clear();
int x2, y2;
getmaxyx(stdscr, y2, x2);
y2 -= 2;
if (y2 <= 0 || x2 <= 0) {
return;
}
if (ctx->sidebar) {
delwin(ctx->sidebar);
ctx->sidebar = NULL;
}
delwin(ctx->linewin);
delwin(ctx->history);
delwin(self->window);
self->window = newwin(y2, x2, 0, 0);
ctx->linewin = subwin(self->window, CHATBOX_HEIGHT, x2, y2 - CHATBOX_HEIGHT, 0);
if (self->show_peerlist) {
ctx->history = subwin(self->window, y2 - CHATBOX_HEIGHT + 1, x2 - SIDEBAR_WIDTH - 1, 0, 0);
ctx->sidebar = subwin(self->window, y2 - CHATBOX_HEIGHT + 1, SIDEBAR_WIDTH, 0, x2 - SIDEBAR_WIDTH);
} else {
ctx->history = subwin(self->window, y2 - CHATBOX_HEIGHT + 1, x2, 0, 0);
}
scrollok(ctx->history, 0);
}
2016-12-18 06:01:51 +01:00
static void groupchat_onGroupMessage(ToxWindow *self, Tox *m, uint32_t groupnum, uint32_t peernum,
Tox_Message_Type type, const char *msg, size_t len)
2013-09-15 22:38:38 +02:00
{
UNUSED_VAR(len);
if (self->num != groupnum) {
2013-09-15 22:38:38 +02:00
return;
}
2013-09-15 22:38:38 +02:00
ChatContext *ctx = self->chatwin;
2013-09-15 22:38:38 +02:00
char nick[TOX_MAX_NAME_LENGTH];
get_group_nick_truncate(m, nick, peernum, groupnum);
char selfnick[TOX_MAX_NAME_LENGTH];
2015-03-26 03:56:45 +01:00
tox_self_get_name(m, (uint8_t *) selfnick);
size_t sn_len = tox_self_get_name_size(m);
2014-04-01 09:53:12 +02:00
selfnick[sn_len] = '\0';
2014-02-17 05:15:27 +01:00
int nick_clr = strcmp(nick, selfnick) == 0 ? GREEN : CYAN;
2014-10-04 03:08:33 +02:00
/* Only play sound if mentioned by someone else */
if (strcasestr(msg, selfnick) && strcmp(selfnick, nick)) {
sound_notify(self, generic_message, NT_WNDALERT_0 | user_settings->bell_on_message, NULL);
2015-03-26 03:56:45 +01:00
if (self->active_box != -1) {
2014-10-03 23:53:50 +02:00
box_silent_notify2(self, NT_NOFOCUS, self->active_box, "%s %s", nick, msg);
} else {
2014-10-03 23:53:50 +02:00
box_silent_notify(self, NT_NOFOCUS, &self->active_box, self->name, "%s %s", nick, msg);
}
2014-08-02 00:37:02 +02:00
2013-12-08 11:45:23 +01:00
nick_clr = RED;
} else {
sound_notify(self, silent, NT_WNDALERT_1, NULL);
}
char timefrmt[TIME_STR_SIZE];
2014-06-24 00:54:23 +02:00
get_time_str(timefrmt, sizeof(timefrmt));
2014-02-26 09:51:26 +01:00
2016-12-18 06:01:51 +01:00
line_info_add(self, timefrmt, nick, NULL, type == TOX_MESSAGE_TYPE_NORMAL ? IN_MSG : IN_ACTION, 0, nick_clr, "%s", msg);
2014-10-03 23:53:50 +02:00
write_to_log(msg, nick, ctx->log, false);
2013-09-15 22:38:38 +02:00
}
static void groupchat_onGroupTitleChange(ToxWindow *self, Tox *m, uint32_t groupnum, uint32_t peernum,
const char *title,
2016-12-18 06:01:51 +01:00
size_t length)
2014-11-15 04:15:59 +01:00
{
ChatContext *ctx = self->chatwin;
if (self->num != groupnum) {
2014-11-15 04:15:59 +01:00
return;
}
2014-11-15 04:15:59 +01:00
set_window_title(self, title, length);
char timefrmt[TIME_STR_SIZE];
get_time_str(timefrmt, sizeof(timefrmt));
2014-11-16 04:39:24 +01:00
/* don't announce title when we join the room */
if (!timed_out(groupchats[self->num].start_time, GROUP_EVENT_WAIT)) {
2014-11-15 04:15:59 +01:00
return;
}
2014-11-15 04:15:59 +01:00
char nick[TOX_MAX_NAME_LENGTH];
get_group_nick_truncate(m, nick, peernum, groupnum);
line_info_add(self, timefrmt, nick, NULL, NAME_CHANGE, 0, 0, " set the group title to: %s", title);
2014-11-15 04:15:59 +01:00
char tmp_event[MAX_STR_SIZE];
snprintf(tmp_event, sizeof(tmp_event), "set title to %s", title);
2014-11-15 04:15:59 +01:00
write_to_log(tmp_event, nick, ctx->log, true);
}
static void group_update_name_list(uint32_t groupnum)
{
GroupChat *chat = &groupchats[groupnum];
2020-02-29 20:14:56 +01:00
if (!chat->active) {
return;
}
if (!chat->name_list) {
fprintf(stderr, "WARNING: name_list is NULL\n");
return;
}
2016-12-18 06:01:51 +01:00
size_t count = 0;
2016-12-18 06:01:51 +01:00
for (uint32_t i = 0; i < chat->max_idx && count < chat->num_peers; ++i) {
if (chat->peer_list[i].active) {
memcpy(chat->name_list[count], chat->peer_list[i].name, chat->peer_list[i].name_length);
chat->name_list[count][chat->peer_list[i].name_length] = 0;
++count;
2015-03-26 03:56:45 +01:00
}
}
2013-11-28 01:29:58 +01:00
if (count != chat->num_peers) {
fprintf(stderr, "WARNING: count != chat->num_peers\n");
}
qsort(chat->name_list, count, sizeof(char *), qsort_ptr_char_array_helper);
}
/* Reallocates groupnum's peer list. Increase is true if the list needs to grow.
*
* Returns 0 on success.
* Returns -1 on failure.
*/
static int realloc_peer_list(GroupChat *chat, uint32_t num_peers)
{
if (!chat) {
return -1;
}
if (num_peers == 0) {
free(chat->peer_list);
chat->peer_list = NULL;
return 0;
}
struct GroupPeer *tmp_list = realloc(chat->peer_list, num_peers * sizeof(struct GroupPeer));
if (!tmp_list) {
return -1;
}
chat->peer_list = tmp_list;
return 0;
}
static void update_peer_list(Tox *m, uint32_t groupnum, uint32_t num_peers)
{
GroupChat *chat = &groupchats[groupnum];
2020-02-29 20:14:56 +01:00
if (!chat->active) {
2014-06-18 18:10:00 +02:00
return;
2016-12-18 06:01:51 +01:00
}
2013-11-26 00:49:31 +01:00
realloc_peer_list(chat, num_peers);
2014-06-18 18:10:00 +02:00
for (uint32_t i = 0; i < num_peers; ++i) {
GroupPeer *peer = &chat->peer_list[i];
2013-11-26 00:49:31 +01:00
Tox_Err_Conference_Peer_Query err;
size_t length = tox_conference_peer_get_name_size(m, groupnum, i, &err);
2014-02-26 12:35:19 +01:00
if (err != TOX_ERR_CONFERENCE_PEER_QUERY_OK || length >= TOX_MAX_NAME_LENGTH) {
continue;
}
tox_conference_peer_get_name(m, groupnum, i, (uint8_t *) peer->name, &err);
peer->name[length] = 0;
if (err != TOX_ERR_CONFERENCE_PEER_QUERY_OK) {
continue;
}
peer->active = true;
peer->name_length = length;
peer->peernumber = i;
}
group_update_name_list(groupnum);
}
static void groupchat_onGroupNameListChange(ToxWindow *self, Tox *m, uint32_t groupnum)
{
if (self->num != groupnum) {
return;
}
if (groupnum > max_groupchat_index) {
return;
}
GroupChat *chat = &groupchats[groupnum];
2020-02-29 20:14:56 +01:00
if (!chat->active) {
return;
}
if (chat->name_list) {
free_ptr_array((void **) chat->name_list);
chat->name_list = NULL;
chat->num_peers = 0;
}
Tox_Err_Conference_Peer_Query err;
uint32_t num_peers = tox_conference_peer_count(m, groupnum, &err);
if (err != TOX_ERR_CONFERENCE_PEER_QUERY_OK) {
fprintf(stderr, "groupchat_onGroupNameListChange() failed with error: %d\n", err);
return;
2013-11-26 00:49:31 +01:00
}
2013-11-29 01:45:28 +01:00
chat->name_list = (char **) malloc_ptr_array(num_peers, TOX_MAX_NAME_LENGTH + 1);
if (chat->name_list == NULL) {
fprintf(stderr, "groupchat_onGroupNameListChange(): Out of memory.\n");
return;
}
chat->num_peers = num_peers;
chat->max_idx = num_peers;
update_peer_list(m, groupnum, num_peers);
}
static void groupchat_onGroupPeerNameChange(ToxWindow *self, Tox *m, uint32_t groupnum, uint32_t peernum,
const char *name, size_t length)
{
UNUSED_VAR(length);
if (self->num != groupnum) {
return;
}
GroupChat *chat = &groupchats[groupnum];
2020-02-29 20:14:56 +01:00
if (!chat->active) {
return;
}
for (uint32_t i = 0; i < chat->max_idx; ++i) {
GroupPeer *peer = &chat->peer_list[i];
// Test against default tox name to prevent nick change spam on initial join (TODO: this is disgusting)
if (peer->active && peer->peernumber == peernum && peer->name_length > 0) {
ChatContext *ctx = self->chatwin;
char timefrmt[TIME_STR_SIZE];
get_time_str(timefrmt, sizeof(timefrmt));
char tmp_event[TOXIC_MAX_NAME_LENGTH * 2 + 32];
snprintf(tmp_event, sizeof(tmp_event), "is now known as %s", (const char *) name);
write_to_log(tmp_event, peer->name, ctx->log, true);
line_info_add(self, timefrmt, peer->name, (const char *) name, NAME_CHANGE, 0, 0, " is now known as ");
break;
}
}
groupchat_onGroupNameListChange(self, m, groupnum);
}
static void send_group_action(ToxWindow *self, ChatContext *ctx, Tox *m, char *action)
{
2013-12-14 02:57:32 +01:00
if (action == NULL) {
wprintw(ctx->history, "Invalid syntax.\n");
2013-12-14 02:57:32 +01:00
return;
}
Tox_Err_Conference_Send_Message err;
2016-12-18 06:01:51 +01:00
if (!tox_conference_send_message(m, self->num, TOX_MESSAGE_TYPE_ACTION, (uint8_t *) action, strlen(action), &err)) {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, RED, " * Failed to send action (error %d)", err);
2013-12-14 02:57:32 +01:00
}
}
/*
* Return true if input is recognized by handler
*/
static bool groupchat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
2013-09-15 22:38:38 +02:00
{
ChatContext *ctx = self->chatwin;
2013-09-15 22:38:38 +02:00
int x, y, y2, x2;
getyx(self->window, y, x);
getmaxyx(self->window, y2, x2);
2014-06-21 07:26:33 +02:00
UNUSED_VAR(y);
if (x2 <= 0 || y2 <= 0) {
return false;
}
2014-06-21 07:26:33 +02:00
if (self->help->active) {
help_onKey(self, key);
return true;
}
2020-11-08 06:07:28 +01:00
if (ctx->pastemode && key == L'\r') {
key = L'\n';
}
2020-11-08 06:07:28 +01:00
if (ltr || key == L'\n') { /* char is printable */
input_new_char(self, key, x, x2);
return true;
}
2013-12-01 22:59:46 +01:00
if (line_info_onKey(self, key)) {
return true;
}
2014-03-30 22:40:13 +02:00
if (input_handle(self, key, x, x2)) {
return true;
}
2013-12-06 04:55:14 +01:00
bool input_ret = false;
2020-11-08 06:07:28 +01:00
if (key == L'\t') { /* TAB key: auto-completes peer name or command */
input_ret = true;
if (ctx->len > 0) {
int diff;
2013-12-06 04:55:14 +01:00
/* TODO: make this not suck */
if (ctx->line[0] != L'/' || wcscmp(ctx->line, L"/me") == 0) {
diff = complete_line(self, (const char **) groupchats[self->num].name_list, groupchats[self->num].num_peers);
} else if (wcsncmp(ctx->line, L"/avatar ", wcslen(L"/avatar ")) == 0) {
diff = dir_match(self, m, ctx->line, L"/avatar");
}
#ifdef PYTHON
else if (wcsncmp(ctx->line, L"/run ", wcslen(L"/run ")) == 0) {
diff = dir_match(self, m, ctx->line, L"/run");
}
#endif
else {
diff = complete_line(self, group_cmd_list, sizeof(group_cmd_list) / sizeof(char *));
}
2013-12-01 22:59:46 +01:00
if (diff != -1) {
if (x + diff > x2 - 1) {
int wlen = MAX(0, wcswidth(ctx->line, sizeof(ctx->line) / sizeof(wchar_t)));
ctx->start = wlen < x2 ? 0 : wlen - x2 + 1;
}
2014-07-01 05:56:47 +02:00
} else {
2015-03-26 03:56:45 +01:00
sound_notify(self, notif_error, 0, NULL);
2014-07-01 05:56:47 +02:00
}
} else {
2015-03-26 03:56:45 +01:00
sound_notify(self, notif_error, 0, NULL);
2014-07-01 05:56:47 +02:00
}
} else if (key == T_KEY_C_DOWN) { /* Scroll peerlist up and down one position */
input_ret = true;
const int L = y2 - CHATBOX_HEIGHT - SDBAR_OFST;
if (groupchats[self->num].side_pos < (int64_t) groupchats[self->num].num_peers - L) {
++groupchats[self->num].side_pos;
}
} else if (key == T_KEY_C_UP) {
input_ret = true;
if (groupchats[self->num].side_pos > 0) {
--groupchats[self->num].side_pos;
}
2020-11-08 06:07:28 +01:00
} else if (key == L'\r') {
input_ret = true;
rm_trailing_spaces_buf(ctx);
2013-12-03 09:44:02 +01:00
if (!wstring_is_empty(ctx->line)) {
add_line_to_hist(ctx);
2013-12-11 06:10:09 +01:00
wstrsubst(ctx->line, L'', L'\n');
2013-12-19 02:18:02 +01:00
char line[MAX_STR_SIZE];
2014-03-30 22:40:13 +02:00
if (wcs_to_mbs_buf(line, ctx->line, MAX_STR_SIZE) == -1) {
memset(&line, 0, sizeof(line));
}
if (line[0] == '/') {
if (strcmp(line, "/close") == 0) {
delete_groupchat(self, m, self->num);
return true;
} else if (strncmp(line, "/me ", strlen("/me ")) == 0) {
send_group_action(self, ctx, m, line + strlen("/me "));
} else {
execute(ctx->history, self, m, line, GROUPCHAT_COMMAND_MODE);
}
2013-12-16 02:52:10 +01:00
} else {
Tox_Err_Conference_Send_Message err;
2016-12-18 06:01:51 +01:00
if (!tox_conference_send_message(m, self->num, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) line, strlen(line), &err)) {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, RED, " * Failed to send message (error %d)", err);
}
2013-09-15 22:38:38 +02:00
}
2014-03-30 22:40:13 +02:00
}
wclear(ctx->linewin);
wmove(self->window, y2 - CURS_Y_OFFSET, 0);
reset_buf(ctx);
2013-09-15 22:38:38 +02:00
}
return input_ret;
2013-09-15 22:38:38 +02:00
}
static void groupchat_onDraw(ToxWindow *self, Tox *m)
{
UNUSED_VAR(m);
2013-12-03 09:44:02 +01:00
int x2, y2;
getmaxyx(self->window, y2, x2);
if (x2 <= 0 || y2 <= 0) {
return;
}
ChatContext *ctx = self->chatwin;
pthread_mutex_lock(&Winthread.lock);
2014-03-25 13:21:50 +01:00
line_info_print(self);
pthread_mutex_unlock(&Winthread.lock);
wclear(ctx->linewin);
curs_set(1);
if (ctx->len > 0) {
mvwprintw(ctx->linewin, 1, 0, "%ls", &ctx->line[ctx->start]);
}
2013-12-03 09:44:02 +01:00
wclear(ctx->sidebar);
2014-07-01 05:56:47 +02:00
mvwhline(self->window, y2 - CHATBOX_HEIGHT, 0, ACS_HLINE, x2);
if (self->show_peerlist) {
mvwvline(ctx->sidebar, 0, 0, ACS_VLINE, y2 - CHATBOX_HEIGHT);
mvwaddch(ctx->sidebar, y2 - CHATBOX_HEIGHT, 0, ACS_BTEE);
2013-11-29 07:30:10 +01:00
2016-09-23 00:00:14 +02:00
pthread_mutex_lock(&Winthread.lock);
uint32_t num_peers = groupchats[self->num].num_peers;
2016-09-23 00:00:14 +02:00
pthread_mutex_unlock(&Winthread.lock);
2013-11-29 07:30:10 +01:00
wmove(ctx->sidebar, 0, 1);
wattron(ctx->sidebar, A_BOLD);
wprintw(ctx->sidebar, "Peers: %"PRIu32"\n", num_peers);
wattroff(ctx->sidebar, A_BOLD);
2013-11-29 07:30:10 +01:00
mvwaddch(ctx->sidebar, 1, 0, ACS_LTEE);
mvwhline(ctx->sidebar, 1, 1, ACS_HLINE, SIDEBAR_WIDTH - 1);
int maxlines = y2 - SDBAR_OFST - CHATBOX_HEIGHT;
2013-11-27 03:06:06 +01:00
for (uint32_t i = 0; i < num_peers && i < maxlines; ++i) {
wmove(ctx->sidebar, i + 2, 1);
2016-09-23 00:00:14 +02:00
pthread_mutex_lock(&Winthread.lock);
2016-12-18 06:01:51 +01:00
uint32_t peer = i + groupchats[self->num].side_pos;
2016-09-23 00:00:14 +02:00
pthread_mutex_unlock(&Winthread.lock);
/* truncate nick to fit in side panel without modifying list */
char tmpnck[TOX_MAX_NAME_LENGTH];
int maxlen = SIDEBAR_WIDTH - 2;
2016-09-23 00:00:14 +02:00
pthread_mutex_lock(&Winthread.lock);
memcpy(tmpnck, groupchats[self->num].name_list[peer], maxlen);
2016-09-23 00:00:14 +02:00
pthread_mutex_unlock(&Winthread.lock);
tmpnck[maxlen] = '\0';
wprintw(ctx->sidebar, "%s\n", tmpnck);
}
}
2014-07-01 05:56:47 +02:00
int y, x;
getyx(self->window, y, x);
UNUSED_VAR(x);
int new_x = ctx->start ? x2 - 1 : MAX(0, wcswidth(ctx->line, ctx->pos));
2014-07-01 05:56:47 +02:00
wmove(self->window, y + 1, new_x);
2017-10-29 16:50:42 +01:00
wnoutrefresh(self->window);
if (self->help->active) {
help_onDraw(self);
}
2013-09-15 22:38:38 +02:00
}
static void groupchat_onInit(ToxWindow *self, Tox *m)
{
2014-07-01 05:56:47 +02:00
int x2, y2;
getmaxyx(self->window, y2, x2);
if (x2 <= 0 || y2 <= 0) {
exit_toxic_err("failed in groupchat_onInit", FATALERR_CURSES);
}
ChatContext *ctx = self->chatwin;
2014-03-25 13:21:50 +01:00
2014-07-01 05:56:47 +02:00
ctx->history = subwin(self->window, y2 - CHATBOX_HEIGHT + 1, x2 - SIDEBAR_WIDTH - 1, 0, 0);
ctx->linewin = subwin(self->window, CHATBOX_HEIGHT, x2, y2 - CHATBOX_HEIGHT, 0);
ctx->sidebar = subwin(self->window, y2 - CHATBOX_HEIGHT + 1, SIDEBAR_WIDTH, 0, x2 - SIDEBAR_WIDTH);
2014-07-04 19:24:18 +02:00
ctx->hst = calloc(1, sizeof(struct history));
ctx->log = calloc(1, sizeof(struct chatlog));
if (ctx->log == NULL || ctx->hst == NULL) {
exit_toxic_err("failed in groupchat_onInit", FATALERR_MEMORY);
}
2014-03-25 13:21:50 +01:00
line_info_init(ctx->hst);
2014-04-07 10:42:10 +02:00
if (user_settings->autolog == AUTOLOG_ON) {
2015-03-26 03:56:45 +01:00
char myid[TOX_ADDRESS_SIZE];
tox_self_get_address(m, (uint8_t *) myid);
if (log_enable(self->name, myid, NULL, ctx->log, LOG_GROUP) == -1) {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Warning: Log failed to initialize.");
}
}
2014-04-07 10:42:10 +02:00
2014-02-27 01:00:13 +01:00
execute(ctx->history, self, m, "/log", GLOBAL_COMMAND_MODE);
2014-02-26 09:51:26 +01:00
2014-07-01 05:56:47 +02:00
scrollok(ctx->history, 0);
wmove(self->window, y2 - CURS_Y_OFFSET, 0);
2013-09-15 22:38:38 +02:00
}
static ToxWindow *new_group_chat(uint32_t groupnum)
2013-09-15 22:38:38 +02:00
{
ToxWindow *ret = calloc(1, sizeof(ToxWindow));
if (ret == NULL) {
exit_toxic_err("failed in new_group_chat", FATALERR_MEMORY);
}
2013-09-15 22:38:38 +02:00
ret->is_groupchat = true;
ret->onKey = &groupchat_onKey;
ret->onDraw = &groupchat_onDraw;
ret->onInit = &groupchat_onInit;
ret->onGroupMessage = &groupchat_onGroupMessage;
ret->onGroupNameListChange = &groupchat_onGroupNameListChange;
ret->onGroupPeerNameChange = &groupchat_onGroupPeerNameChange;
ret->onGroupTitleChange = &groupchat_onGroupTitleChange;
2013-09-15 22:38:38 +02:00
snprintf(ret->name, sizeof(ret->name), "Group %u", groupnum);
2013-09-15 22:38:38 +02:00
ChatContext *chatwin = calloc(1, sizeof(ChatContext));
Help *help = calloc(1, sizeof(Help));
2013-09-15 22:38:38 +02:00
if (chatwin == NULL || help == NULL) {
exit_toxic_err("failed in new_group_chat", FATALERR_MEMORY);
}
2013-09-15 22:38:38 +02:00
ret->chatwin = chatwin;
ret->help = help;
ret->num = groupnum;
ret->show_peerlist = true;
ret->active_box = -1;
2013-09-15 22:38:38 +02:00
return ret;
}