aboutsummaryrefslogtreecommitdiff
path: root/src/ui.c
blob: d0f1642bb2f691f7c05241b4f044df88f1aa1afa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <pthread.h>
#include <string.h>
#include <ncurses.h>
#include <sys/time.h>

#include "ui.h"
#include "ui_ipc.h"
#include "ui_ani.h"
#include "ui_input.h"
#include "ui_statusbar.h"
#include "ui_txtwindow.h"
#include "ui_nask.h"

#include "status.h"


static unsigned int max_x, max_y;
static unsigned int cur_x, cur_y;
static WINDOW *wnd_main = NULL;
static struct nask_ui /* simple linked list to all UI objects */ *nui = NULL,
                      /* current active input */ *active = NULL;
static uicb_update update_callback = NULL;
static uicb_update postupdate_callback = NULL;
static pthread_t thrd;
static pthread_cond_t cnd_update = PTHREAD_COND_INITIALIZER;
static pthread_mutex_t mtx_update = PTHREAD_MUTEX_INITIALIZER;


void
register_ui_elt(struct ui_callbacks *cbs, void *data, WINDOW *wnd)
{
  struct nask_ui *tmp, *new;

  new = calloc(1, sizeof(struct nask_ui));
  new->cbs = *cbs;
  new->wnd = wnd;
  new->data = data;
  new->next = NULL;
  if (nui == NULL) {
    nui = new;
    nui->next = NULL;
  } else {
    tmp = nui;
    while (tmp->next != NULL) {
      tmp = tmp->next;
    }
    tmp->next = new;
  }
}

void
unregister_ui_elt(void *data)
{
  struct nask_ui *cur, *next, *before = NULL;

  cur = nui;
  while (cur != NULL) {
    next = cur->next;
    if (cur->data != NULL && cur->data == data) {
      free(cur);
      cur = NULL;
      if (before != NULL) {
        before->next = next;
      } else {
        nui = next;
      }
    }
    if (cur != NULL)
      before = cur;
    cur = next;
  }
}

unsigned int
ui_get_maxx(void)
{
  return max_x;
}

unsigned int
ui_get_maxy(void)
{
  return max_y;
}

void
ui_set_cur(unsigned int x, unsigned int y)
{
  cur_x = x;
  cur_y = y;
}

unsigned int
ui_get_curx(void)
{
  return (cur_x);
}

unsigned int
ui_get_cury(void)
{
  return (cur_y);
}

int
activate_ui_input(void *data)
{
  int ret = DOUI_ERR;
  struct nask_ui *cur = nui;

  if (cur == NULL || data == NULL) return DOUI_NINIT;
  while ( cur->data != NULL ) {
    if ( cur->data == data ) {
      if ( cur->cbs.ui_input != NULL && cur->cbs.ui_input(cur->wnd, data, UIKEY_ACTIVATE) == DOUI_OK ) {
        active = cur;
        ret = DOUI_OK;
        break;
      }
    }
    cur = cur->next;
  }
  return ret;
}

int
deactivate_ui_input(void *data)
{
  int ret = DOUI_ERR;

  if (active != NULL && data == active->data) {
    active = NULL;
    ret = DOUI_OK;
  }
  return ret;
}

bool
process_key(char key)
{
  bool ret = false;

  if ( active != NULL ) {
    ret = ( active->cbs.ui_input(active->wnd, active->data, key) == DOUI_OK ? true : false );
  }
  return ret;
}

static int
do_ui_update(bool timed_out)
{
  int retval = UICB_OK;
  struct nask_ui *cur = nui;

  /* call all draw callback's */
  erase();

  if (update_callback)
    if (update_callback(timed_out) != UICB_OK)
      return UICB_ERR_CB;

  while (cur != NULL) {
    if (cur->cbs.ui_element != NULL) {
      if ( cur->cbs.ui_element(cur->wnd, cur->data, timed_out) != UICB_OK)
        retval = UICB_ERR_CB;
      doupdate();
    } else {
      retval = UICB_ERR_UNDEF;
      break;
    }
    cur = cur->next;
  }

  if (postupdate_callback)
    if (postupdate_callback(timed_out) != UICB_OK)
      return UICB_ERR_CB;

  move(cur_y, cur_x);
  refresh();
  return (retval);
}

static int
ui_cond_timedwait(pthread_cond_t* cnd, pthread_mutex_t* mtx, int timeInMs)
{
  struct timeval tv;
  struct timespec ts;

  gettimeofday(&tv, NULL);
  ts.tv_sec   = time(NULL) + timeInMs/1000;
  ts.tv_nsec  = tv.tv_usec * 1000 + 1000 * 1000 * (timeInMs % 1000);
  ts.tv_sec  += ts.tv_nsec / (1000 * 1000 * 1000);
  ts.tv_nsec %= (1000 * 1000 * 1000);

  return pthread_cond_timedwait(cnd, mtx, &ts);
}

static void *
ui_thrd(void *arg)
{
  int cnd_ret;

  pthread_mutex_lock(&mtx_update);
  do_ui_update(false);

  while ( ui_ipc_getvalue(SEM_UI) > 0 ) {
    cnd_ret = ui_cond_timedwait(&cnd_update, &mtx_update, UILOOP_TIMEOUT);
    if (cnd_ret == 0) {
      do_ui_update(false);
    } else if (cnd_ret == ETIMEDOUT) {
      do_ui_update(true);
    }
  }
  pthread_mutex_unlock(&mtx_update);
  return (NULL);
}

void
ui_thrd_force_update(bool force_all, bool timedout)
{
  pthread_mutex_lock(&mtx_update);
  if (force_all)
    touchwin(wnd_main);
 if (timedout) 
    pthread_cond_signal(&cnd_update);
  else
    do_ui_update(false);
  pthread_mutex_unlock(&mtx_update);
}

void
ui_thrd_suspend(void)
{
  pthread_mutex_lock(&mtx_update);
}

void
ui_thrd_resume(void)
{
  pthread_mutex_unlock(&mtx_update);
}

int
run_ui_thrd(void) {
  return (pthread_create(&thrd, NULL, &ui_thrd, NULL));
}

int
stop_ui_thrd(void)
{
  return (pthread_join(thrd, NULL));
}

int ui_wgetchtest(int timeout, char testchar)
{
  int retval = DOUI_OK;
  usleep(timeout/2);
  pthread_mutex_lock(&mtx_update);
  if ( ui_ipc_getvalue(SEM_UI) <= 0 ) {
    retval = DOUI_KEY;
  } else if ( wgetch(stdscr) == testchar ) {
    retval = DOUI_KEY;
  }
  pthread_mutex_unlock(&mtx_update);
  usleep(timeout/2);
  return retval;
}

char ui_wgetch(int timeout)
{
  char key;
  usleep(timeout/2);
  pthread_mutex_lock(&mtx_update);
  if ( ui_ipc_getvalue(SEM_UI) <= 0 ) {
    key = ERR;
  } else {
    key = wgetch(stdscr);
  }
  pthread_mutex_unlock(&mtx_update);
  usleep(timeout/2);
  return key;
}

WINDOW *
init_ui(uicb_update on_update_callback, uicb_update on_postupdate_callback)
{
  if (on_update_callback)
    update_callback = on_update_callback;
  if (on_postupdate_callback)
    postupdate_callback = on_postupdate_callback;
  wnd_main = initscr();
  max_x = getmaxx(wnd_main);
  max_y = getmaxy(wnd_main);
  cur_x = getcurx(wnd_main);
  cur_y = getcury(wnd_main);
  start_color();
  raw();
  keypad(stdscr, TRUE);
  noecho();
  nodelay(stdscr, TRUE);
  cbreak();
  set_escdelay(25);
  return wnd_main;
}

void
free_ui(void)
{
  delwin(wnd_main);
  endwin();
  clear();
  printf(" \033[2J\n");
}