summaryrefslogtreecommitdiff
path: root/src/ui.c
Commit message (Collapse)AuthorAge
* Implemented final scores window.Mario Kilies2011-01-27
|
* Switched from wrefresh() to wnoutrefresh() calls for UI display. Introduced ↵Mario Kilies2011-01-27
| | | | ui_update() to update the screen.
* BUGFIX: Wrong size of current state window corrected. Fixes message window ↵Mario Kilies2011-01-27
| | | | glitch.
* Added optional highlighting of messages in the message window.Mario Kilies2011-01-25
|
* Slowed down the 'play cards' state by inserting a delay. The player who is ↵Mario Kilies2011-01-25
| | | | currently placing its card/picking its stack is highlighted.
* Implemented the message window.Mario Kilies2011-01-25
|
* Removed awkward pnoc_t and refactored its contents to the new ↵Mario Kilies2011-01-25
| | | | player_list_entry_t.
* ui_display_wnd_current_state() has now optional highlighting of a player in ↵Mario Kilies2011-01-25
| | | | the table and is able to display '-' if the player has not played an open card (This is used to display the window before the actual gameplay has begun).
* little cleanup; enable interrupts (ctrl-c)Reiner Herrmann2011-01-25
|
* server: send open cards to clientsReiner Herrmann2011-01-24
| | | | client: receive open cards from clients, sort and display them
* Refactored cardstack and tablestacks to card_stack_t and table_stacks_t, ↵Mario Kilies2011-01-16
| | | | that both now are defined as structs rather than arrays. Inserted lots of assert() calls to functions that take pointers as arguments.
* Simplified net_recv(). Refactored 'hand' from array definition to hand_t ↵Mario Kilies2011-01-16
| | | | struct definition.
* pnoc_sort() implemented.Mario Kilies2011-01-14
|
* ui_display_wnd_hand_cards() will now show placeholders in hand cards after ↵Mario Kilies2011-01-14
| | | | all other cards.
* draw_cardstack() clears visible remains of old card stacks before drawing ↵Mario Kilies2011-01-14
| | | | the new one.
* Implemented hand_sort(). ui_choose_card() now pre-selects the card with ↵Mario Kilies2011-01-14
| | | | lowest index, if at index 0 is no card. draw_card() now draws empty placeholder cards, to clear old screen content.
* Implemented ui_choose_card().Mario Kilies2011-01-14
|
* Implemented ui_choose_stack().Mario Kilies2011-01-14
|
* Moved display.[ch] to ui.[ch].Mario Kilies2011-01-13