1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-02-02 15:08:15 -05:00

Reduced screen flicker, and fixed end page

This commit is contained in:
James Booth 2012-03-06 01:04:45 +00:00
parent 51738d4aba
commit 54c43b613c
4 changed files with 102 additions and 15 deletions

View File

@ -63,7 +63,6 @@ void inp_clear(void)
{ {
wclear(inp_win); wclear(inp_win);
wmove(inp_win, 0, 1); wmove(inp_win, 0, 1);
touchwin(inp_win);
wrefresh(inp_win); wrefresh(inp_win);
} }

View File

@ -20,6 +20,8 @@
* *
*/ */
#include <string.h>
#include <ncurses.h> #include <ncurses.h>
#include "windows.h" #include "windows.h"
#include "util.h" #include "util.h"
@ -27,6 +29,9 @@
static WINDOW *status_bar; static WINDOW *status_bar;
static char _active[29] = "[ ][ ][ ][ ][ ][ ][ ][ ][ ]"; static char _active[29] = "[ ][ ][ ][ ][ ][ ][ ][ ][ ]";
static int dirty;
static char curr_time[80];
static void _status_bar_update_time(void); static void _status_bar_update_time(void);
void create_status_bar(void) void create_status_bar(void)
@ -39,15 +44,27 @@ void create_status_bar(void)
wattron(status_bar, COLOR_PAIR(4)); wattron(status_bar, COLOR_PAIR(4));
mvwprintw(status_bar, 0, cols - 29, _active); mvwprintw(status_bar, 0, cols - 29, _active);
wattroff(status_bar, COLOR_PAIR(4)); wattroff(status_bar, COLOR_PAIR(4));
wrefresh(status_bar);
get_time(curr_time);
dirty = TRUE;
} }
void status_bar_refresh(void) void status_bar_refresh(void)
{ {
_status_bar_update_time(); char new_time[80];
touchwin(status_bar); get_time(new_time);
wrefresh(status_bar);
inp_put_back(); if (strcmp(new_time, curr_time) != 0) {
dirty = TRUE;
strcpy(curr_time, new_time);
}
if (dirty) {
_status_bar_update_time();
wrefresh(status_bar);
inp_put_back();
dirty = FALSE;
}
} }
void status_bar_inactive(int win) void status_bar_inactive(int win)
@ -60,6 +77,8 @@ void status_bar_inactive(int win)
mvwaddch(status_bar, 0, cols - 29 + active_pos, ' '); mvwaddch(status_bar, 0, cols - 29 + active_pos, ' ');
if (win == 9) if (win == 9)
mvwaddch(status_bar, 0, cols - 29 + active_pos + 1, ' '); mvwaddch(status_bar, 0, cols - 29 + active_pos + 1, ' ');
dirty = TRUE;
} }
void status_bar_active(int win) void status_bar_active(int win)
@ -73,16 +92,22 @@ void status_bar_active(int win)
mvwprintw(status_bar, 0, cols - 29 + active_pos, "%d", win+1); mvwprintw(status_bar, 0, cols - 29 + active_pos, "%d", win+1);
else else
mvwprintw(status_bar, 0, cols - 29 + active_pos, "10"); mvwprintw(status_bar, 0, cols - 29 + active_pos, "10");
dirty = TRUE;
} }
void status_bar_get_password(void) void status_bar_get_password(void)
{ {
mvwprintw(status_bar, 0, 9, "Enter password:"); mvwprintw(status_bar, 0, 9, "Enter password:");
dirty = TRUE;
} }
void status_bar_print_message(const char *msg) void status_bar_print_message(const char *msg)
{ {
mvwprintw(status_bar, 0, 9, msg); mvwprintw(status_bar, 0, 9, msg);
dirty = TRUE;
} }
void status_bar_clear(void) void status_bar_clear(void)
@ -94,6 +119,8 @@ void status_bar_clear(void)
wattron(status_bar, COLOR_PAIR(4)); wattron(status_bar, COLOR_PAIR(4));
mvwprintw(status_bar, 0, cols - 29, _active); mvwprintw(status_bar, 0, cols - 29, _active);
wattroff(status_bar, COLOR_PAIR(4)); wattroff(status_bar, COLOR_PAIR(4));
dirty = TRUE;
} }
static void _status_bar_update_time(void) static void _status_bar_update_time(void)
@ -111,5 +138,6 @@ static void _status_bar_update_time(void)
mvwaddch(status_bar, 0, 7, ']'); mvwaddch(status_bar, 0, 7, ']');
wattroff(status_bar, COLOR_PAIR(4)); wattroff(status_bar, COLOR_PAIR(4));
dirty = TRUE;
} }

View File

@ -24,6 +24,7 @@
#include "windows.h" #include "windows.h"
static WINDOW *title_bar; static WINDOW *title_bar;
static int dirty;
void create_title_bar(void) void create_title_bar(void)
{ {
@ -34,12 +35,14 @@ void create_title_bar(void)
wbkgd(title_bar, COLOR_PAIR(3)); wbkgd(title_bar, COLOR_PAIR(3));
title_bar_title(); title_bar_title();
title_bar_disconnected(); title_bar_disconnected();
dirty = TRUE;
} }
void title_bar_title() void title_bar_title()
{ {
char *title = "Profanity. Type /help for help information."; char *title = "Profanity. Type /help for help information.";
title_bar_show(title); title_bar_show(title);
dirty = TRUE;
} }
void title_bar_connected(void) void title_bar_connected(void)
@ -56,6 +59,8 @@ void title_bar_connected(void)
wattron(title_bar, COLOR_PAIR(4)); wattron(title_bar, COLOR_PAIR(4));
mvwaddch(title_bar, 0, cols - 2, ']'); mvwaddch(title_bar, 0, cols - 2, ']');
wattroff(title_bar, COLOR_PAIR(4)); wattroff(title_bar, COLOR_PAIR(4));
dirty = TRUE;
} }
void title_bar_disconnected(void) void title_bar_disconnected(void)
@ -72,13 +77,17 @@ void title_bar_disconnected(void)
wattron(title_bar, COLOR_PAIR(4)); wattron(title_bar, COLOR_PAIR(4));
mvwaddch(title_bar, 0, cols - 2, ']'); mvwaddch(title_bar, 0, cols - 2, ']');
wattroff(title_bar, COLOR_PAIR(4)); wattroff(title_bar, COLOR_PAIR(4));
dirty = TRUE;
} }
void title_bar_refresh(void) void title_bar_refresh(void)
{ {
touchwin(title_bar); if (dirty) {
wrefresh(title_bar); wrefresh(title_bar);
inp_put_back(); inp_put_back();
dirty = FALSE;
}
} }
void title_bar_show(char *title) void title_bar_show(char *title)
@ -88,5 +97,7 @@ void title_bar_show(char *title)
for (i = 0; i < 45; i++) for (i = 0; i < 45; i++)
waddch(title_bar, ' '); waddch(title_bar, ' ');
mvwprintw(title_bar, 0, 0, " %s", title); mvwprintw(title_bar, 0, 0, " %s", title);
dirty = TRUE;
} }

View File

@ -39,6 +39,9 @@ static int _curr_prof_win = 0;
// shortcut pointer to console window // shortcut pointer to console window
static WINDOW * _cons_win = NULL; static WINDOW * _cons_win = NULL;
// current window state
static int dirty;
static void _create_windows(void); static void _create_windows(void);
static int _find_prof_win_index(char *contact); static int _find_prof_win_index(char *contact);
static int _new_prof_win(char *contact); static int _new_prof_win(char *contact);
@ -74,13 +77,20 @@ void gui_init(void)
create_status_bar(); create_status_bar();
create_input_window(); create_input_window();
_create_windows(); _create_windows();
dirty = TRUE;
} }
void gui_refresh(void) void gui_refresh(void)
{ {
title_bar_refresh(); title_bar_refresh();
status_bar_refresh(); status_bar_refresh();
_current_window_refresh();
if (dirty) {
_current_window_refresh();
dirty = FALSE;
}
inp_put_back(); inp_put_back();
} }
@ -103,6 +113,8 @@ int win_close_win(void)
_curr_prof_win = 0; _curr_prof_win = 0;
title_bar_title(); title_bar_title();
dirty = TRUE;
// success // success
return 1; return 1;
} else { } else {
@ -141,6 +153,9 @@ void win_show_incomming_msg(char *from, char *message)
_win_show_message(win, message); _win_show_message(win, message);
status_bar_active(win_index); status_bar_active(win_index);
if (win_index == _curr_prof_win)
dirty = TRUE;
} }
void win_show_outgoing_msg(char *from, char *to, char *message) void win_show_outgoing_msg(char *from, char *to, char *message)
@ -155,6 +170,9 @@ void win_show_outgoing_msg(char *from, char *to, char *message)
_win_show_message(win, message); _win_show_message(win, message);
status_bar_active(win_index); status_bar_active(win_index);
if (win_index == _curr_prof_win)
dirty = TRUE;
} }
void win_contact_online(char *from, char *show, char *status) void win_contact_online(char *from, char *show, char *status)
@ -166,6 +184,9 @@ void win_contact_online(char *from, char *show, char *status)
WINDOW *win = _wins[win_index].win; WINDOW *win = _wins[win_index].win;
_show_status_string(win, from, show, status, "++", "online"); _show_status_string(win, from, show, status, "++", "online");
} }
if (win_index == _curr_prof_win)
dirty = TRUE;
} }
void win_contact_offline(char *from, char *show, char *status) void win_contact_offline(char *from, char *show, char *status)
@ -177,6 +198,9 @@ void win_contact_offline(char *from, char *show, char *status)
WINDOW *win = _wins[win_index].win; WINDOW *win = _wins[win_index].win;
_show_status_string(win, from, show, status, "--", "offline"); _show_status_string(win, from, show, status, "--", "offline");
} }
if (win_index == _curr_prof_win)
dirty = TRUE;
} }
void cons_help(void) void cons_help(void)
@ -197,6 +221,9 @@ void cons_help(void)
cons_show(" UP, DOWN : Navigate input history."); cons_show(" UP, DOWN : Navigate input history.");
cons_show(" LEFT, RIGHT : Edit current input."); cons_show(" LEFT, RIGHT : Edit current input.");
cons_show(" PAGE UP, PAGE DOWN : Page the chat window."); cons_show(" PAGE UP, PAGE DOWN : Page the chat window.");
if (_curr_prof_win == 0)
dirty = TRUE;
} }
void cons_bad_show(char *msg) void cons_bad_show(char *msg)
@ -205,18 +232,27 @@ void cons_bad_show(char *msg)
wattron(_cons_win, COLOR_PAIR(6)); wattron(_cons_win, COLOR_PAIR(6));
wprintw(_cons_win, "%s\n", msg); wprintw(_cons_win, "%s\n", msg);
wattroff(_cons_win, COLOR_PAIR(6)); wattroff(_cons_win, COLOR_PAIR(6));
if (_curr_prof_win == 0)
dirty = TRUE;
} }
void cons_show(char *msg) void cons_show(char *msg)
{ {
_win_show_time(_cons_win); _win_show_time(_cons_win);
wprintw(_cons_win, "%s\n", msg); wprintw(_cons_win, "%s\n", msg);
if (_curr_prof_win == 0)
dirty = TRUE;
} }
void cons_bad_command(char *cmd) void cons_bad_command(char *cmd)
{ {
_win_show_time(_cons_win); _win_show_time(_cons_win);
wprintw(_cons_win, "Unknown command: %s\n", cmd); wprintw(_cons_win, "Unknown command: %s\n", cmd);
if (_curr_prof_win == 0)
dirty = TRUE;
} }
void cons_bad_connect(void) void cons_bad_connect(void)
@ -278,6 +314,8 @@ void win_page_off(void)
_wins[_curr_prof_win].y_pos = y - (size - 1); _wins[_curr_prof_win].y_pos = y - (size - 1);
if (_wins[_curr_prof_win].y_pos < 0) if (_wins[_curr_prof_win].y_pos < 0)
_wins[_curr_prof_win].y_pos = 0; _wins[_curr_prof_win].y_pos = 0;
dirty = TRUE;
} }
void win_handle_page(int *ch) void win_handle_page(int *ch)
@ -291,17 +329,26 @@ void win_handle_page(int *ch)
_wins[_curr_prof_win].y_pos = 0; _wins[_curr_prof_win].y_pos = 0;
_wins[_curr_prof_win].paged = 1; _wins[_curr_prof_win].paged = 1;
dirty = TRUE;
} else if (*ch == KEY_NPAGE) { } else if (*ch == KEY_NPAGE) {
int rows, cols, y, x; int rows, cols, y, x;
getmaxyx(stdscr, rows, cols); getmaxyx(stdscr, rows, cols);
getyx(_wins[_curr_prof_win].win, y, x); getyx(_wins[_curr_prof_win].win, y, x);
_wins[_curr_prof_win].y_pos = _wins[_curr_prof_win].y_pos + (rows - 4); _wins[_curr_prof_win].y_pos = _wins[_curr_prof_win].y_pos + (rows - 4);
if (_wins[_curr_prof_win].y_pos >= y)
_wins[_curr_prof_win].y_pos = y - 1; // only got half a screen, show full screen
if ((y - _wins[_curr_prof_win].y_pos) < (rows - 4))
_wins[_curr_prof_win].y_pos = y - (rows - 4);
// went past end, show full screen
else if (_wins[_curr_prof_win].y_pos >= y)
_wins[_curr_prof_win].y_pos = y - (rows - 4);
_wins[_curr_prof_win].paged = 1; _wins[_curr_prof_win].paged = 1;
dirty = TRUE;
} }
} }
static void _create_windows(void) static void _create_windows(void)
@ -323,9 +370,10 @@ static void _create_windows(void)
wattrset(_cons_win, A_BOLD); wattrset(_cons_win, A_BOLD);
_win_show_time(_cons_win); _win_show_time(_cons_win);
wprintw(_cons_win, "Welcome to Profanity.\n"); wprintw(_cons_win, "Welcome to Profanity.\n");
touchwin(_cons_win);
prefresh(_cons_win, 0, 0, 1, 0, rows-3, cols-1); prefresh(_cons_win, 0, 0, 1, 0, rows-3, cols-1);
dirty = TRUE;
// create the chat windows // create the chat windows
int i; int i;
for (i = 1; i < NUM_WINS; i++) { for (i = 1; i < NUM_WINS; i++) {
@ -377,6 +425,8 @@ static void _win_switch_if_active(int i)
else else
title_bar_show(_wins[i].from); title_bar_show(_wins[i].from);
} }
dirty = TRUE;
} }
static void _win_show_time(WINDOW *win) static void _win_show_time(WINDOW *win)
@ -408,7 +458,6 @@ static void _current_window_refresh()
getmaxyx(stdscr, rows, cols); getmaxyx(stdscr, rows, cols);
WINDOW *current = _wins[_curr_prof_win].win; WINDOW *current = _wins[_curr_prof_win].win;
touchwin(current);
prefresh(current, _wins[_curr_prof_win].y_pos, 0, 1, 0, rows-3, cols-1); prefresh(current, _wins[_curr_prof_win].y_pos, 0, 1, 0, rows-3, cols-1);
} }