X-Git-Url: https://git.draconx.ca/gitweb/rrace.git/blobdiff_plain/a1b5bfc01e1a7ff2b6bf64a9367b87058162047c..bbe659b000e2c281340953c5fc96bd7ac3b94eaa:/src/motif_ui.c diff --git a/src/motif_ui.c b/src/motif_ui.c index fefcfed..6abdbc9 100644 --- a/src/motif_ui.c +++ b/src/motif_ui.c @@ -116,21 +116,22 @@ void ui_timer_update(struct app_state *state, int_fast32_t ms) char buf[100]; if (ms < 0) { - xcounter_simple_update(state->timer, "\n"); + xcounter_update(state->timer, "\n"); return; } - xcounter_simple_update(state->timer, timer_text(ms, buf)); + xcounter_update(state->timer, timer_text(ms, buf)); } static void configure_mainwin(struct app_state *state, Widget form) { Widget gamearea = XtNameToWidget(form, &tree_strtab[gameArea]); Widget goalarea = XtNameToWidget(form, &tree_strtab[goalArea]); + Widget timer = XtNameToWidget(form, &tree_strtab[timeDisplay]); XtActionsRec resize_rec; char xc_template[100]; - assert(gamearea && goalarea); + assert(gamearea && goalarea && timer); XtVaSetValues(form, XmNfractionBase, SPLIT_DENOMINATOR, (char *)NULL); state->game = XtNameToWidget(gamearea, &tree_strtab[gameCanvas]); @@ -145,15 +146,13 @@ static void configure_mainwin(struct app_state *state, Widget form) XmNtopWidget, gamearea, (char *)NULL); - state->timer = XtNameToWidget(form, &tree_strtab[timeDisplay]); - XtVaSetValues(state->timer, XmNleftAttachment, XmATTACH_WIDGET, - XmNleftWidget, gamearea, - XmNtopAttachment, XmATTACH_WIDGET, - XmNtopWidget, goalarea, - XmNrightAttachment, XmATTACH_FORM, - (char *)NULL); - - xcounter_simple_setup(state->timer, timer_text(20000, xc_template)); + XtVaSetValues(timer, XmNleftAttachment, XmATTACH_WIDGET, + XmNleftWidget, gamearea, + XmNtopAttachment, XmATTACH_WIDGET, + XmNtopWidget, goalarea, + XmNrightAttachment, XmATTACH_FORM, + (char *)NULL); + state->timer = xcounter_simple_init(timer, timer_text(0, xc_template)); ui_timer_update(state, -1); resize_rec.string = "ResizeGameArea"; @@ -258,104 +257,52 @@ construct_menu(const struct ui_menuitem *root, Widget parent, unsigned i) } /* Figure out which tiles intersect a rectangle. */ -static uint_fast32_t -expose_mask(int rect_x, int rect_y, int rect_w, int rect_h, - int tile_w, int tile_h) -{ - return board_right(rect_x / tile_w) - & board_below(rect_y / tile_h) - & board_above((rect_y + rect_h - 1) / tile_h) - & board_left((rect_x + rect_w - 1) / tile_w); -} - -/* - * Calculate which tiles need to be redrawn after resizing. This is the - * tiles which (at the new size) are fully contained in the previous area. - * - * When shrinking, this is all tiles, but when enlarging, the generated - * expose events will trigger drawing of the new area. - */ -static uint_fast32_t resize_helper(Widget w, Dimension *oldsz, int gridsz) +static uint_fast32_t x11_expose_mask(XExposeEvent *e, int tile_w, int tile_h) { - Dimension new_w, new_h, common_w, common_h; - - if (!XtIsRealized(w)) - return 0; - - XtVaGetValues(w, XmNwidth, &new_w, XmNheight, &new_h, (char *)NULL); - common_w = MIN(new_w, oldsz[0]); - common_h = MIN(new_h, oldsz[1]); - oldsz[0] = new_w; - oldsz[1] = new_h; - new_w /= gridsz; - new_h /= gridsz; - - /* Round down to multiple of tile dimensions */ - common_w = common_w / new_w * new_w; - common_h = common_h / new_h * new_h; - - if (new_w > 0 && new_h > 0) - return expose_mask(0, 0, common_w, common_h, new_w, new_h); - return 0; + return board_rect( e->x/tile_w, + e->y/tile_h, + (e->x+e->width-1)/tile_w, + (e->y+e->height-1)/tile_h ); } -static void game_resize(Widget w, void *data, void *cb_data) +static void resize(Widget w, void *data, void *cb_data) { struct app_state *state = data; - uint_fast32_t mask; - - mask = resize_helper(w, state->game_sz, 5); - if (mask) - x11_redraw_game(data, mask); -} - -static void goal_resize(Widget w, void *data, void *cb_data) -{ - struct app_state *state = data; - uint_fast32_t mask; - mask = resize_helper(w, state->goal_sz, 3); - if (mask) - x11_redraw_goal(data, mask); + x11_queue_render(data, -1, 1 << (w == state->game)); } -static void game_expose(Widget w, void *data, void *cb_data) +static void expose(Widget w, void *data, void *cb_data) { XmDrawingAreaCallbackStruct *cbs = cb_data; XExposeEvent *e = &cbs->event->xexpose; struct app_state *state = data; - uint_least32_t *gp = state->board.game; - Dimension width, height; + Dimension tile_w, tile_h; uint_fast32_t mask; - XtVaGetValues(w, XmNwidth, &width, XmNheight, &height, (char *)NULL); - if (!(width /= 5) || !(height /= 5)) - return; - - /* - * Only draw exposed nonempty tiles; exposed areas are filled with the - * background automatically and thus exposed empty spaces don't need - * to be drawn again. - */ - mask = gp[0] | gp[1] | gp[2]; - mask &= expose_mask(e->x, e->y, e->width, e->height, width, height); - - x11_redraw_game(state, mask); -} - -static void goal_expose(Widget w, void *data, void *cb_data) -{ - XmDrawingAreaCallbackStruct *cbs = cb_data; - XExposeEvent *e = &cbs->event->xexpose; - Dimension width, height; - uint_fast32_t mask; - - XtVaGetValues(w, XmNwidth, &width, XmNheight, &height, (char *)NULL); - if (!(width /= 3) || !(height /= 3)) - return; + XtVaGetValues(w, XmNwidth, &tile_w, XmNheight, &tile_h, (char *)NULL); + if (w == state->game) { + uint_least32_t *gp = state->board.game; + + if (!(tile_w /= 5) || !(tile_h /= 5)) + return; + + /* + * Only draw exposed nonempty tiles; exposed areas are filled + * with the background automatically and thus exposed empty + * spaces don't need to be drawn again. + */ + mask = gp[0] | gp[1] | gp[2]; + } else { + if (!(tile_w /= 3) || !(tile_h /= 3)) + return; + + /* Goal area never has empty tiles. */ + mask = -1; + } - mask = expose_mask(e->x, e->y, e->width, e->height, width, height); - x11_redraw_goal(data, mask); + mask &= x11_expose_mask(e, tile_w, tile_h); + x11_queue_render(state, mask, 1<<(w == state->game)); } void ui_initialize(struct app_state *state, Widget shell) @@ -375,14 +322,14 @@ void ui_initialize(struct app_state *state, Widget shell) XtVaGetValues(state->game, XmNwidth, &state->game_sz[0], XmNheight, &state->game_sz[1], (char *)NULL); - XtAddCallback(state->game, XmNresizeCallback, game_resize, state); - XtAddCallback(state->game, XmNexposeCallback, game_expose, state); + XtAddCallback(state->game, XmNresizeCallback, resize, state); + XtAddCallback(state->game, XmNexposeCallback, expose, state); XtVaGetValues(state->game, XmNwidth, &state->goal_sz[0], XmNheight, &state->goal_sz[1], (char *)NULL); - XtAddCallback(state->goal, XmNresizeCallback, goal_resize, state); - XtAddCallback(state->goal, XmNexposeCallback, goal_expose, state); + XtAddCallback(state->goal, XmNresizeCallback, resize, state); + XtAddCallback(state->goal, XmNexposeCallback, expose, state); } static void dialog_close(Widget w, void *data, void *cb_data)