| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | wait until child (server) terminates at end | Reiner Herrmann | 2011-01-26 |
| | | |||
| * | start server as child, not as parent; fixes terminal fuckup problem on exit | Reiner Herrmann | 2011-01-26 |
| | | |||
| * | some explanation in usage output | Reiner Herrmann | 2011-01-26 |
| | | |||
| * | add parameter for number of players | Reiner Herrmann | 2011-01-26 |
| | | |||
| * | h parameter doesn't need an argument | Reiner Herrmann | 2011-01-26 |
| | | |||
| * | added option parsing | Reiner Herrmann | 2011-01-26 |
| | | |||
| * | Added optional highlighting of messages in the message window. | Mario Kilies | 2011-01-25 |
| | | |||
| * | Slowed down the 'play cards' state by inserting a delay. The player who is ↵ | Mario Kilies | 2011-01-25 |
| | | | | | currently placing its card/picking its stack is highlighted. | ||
| * | fix reception of username | Reiner Herrmann | 2011-01-25 |
| | | |||
| * | RNG is initialized with time() again. | Mario Kilies | 2011-01-25 |
| | | |||
| * | Client game states now handle display of the player's score. | Mario Kilies | 2011-01-25 |
| | | |||
| * | free data store at end | Reiner Herrmann | 2011-01-25 |
| | | |||
| * | Removed huge comment block. | Mario Kilies | 2011-01-25 |
| | | |||
| * | removed some debug output | Reiner Herrmann | 2011-01-25 |
| | | |||
| * | finish game when no cards in mainstack | Reiner Herrmann | 2011-01-25 |
| | | |||
| * | Merge branch 'master' of ssh://icarus-git/~git/oxen | Reiner Herrmann | 2011-01-25 |
| |\ | |||
| | * | BUGFIX: pass pl->players to qsort instead of pl. | Mario Kilies | 2011-01-25 |
| | | | |||
| * | | fix bug where server is sending message to wrong clients | Reiner Herrmann | 2011-01-25 |
| |/ | |||
| * | added some debug output | Reiner Herrmann | 2011-01-25 |
| | | |||
| * | sleep seems to be needed :> | Reiner Herrmann | 2011-01-25 |
| | | |||
| * | sleep doesn't seem to be required | Reiner Herrmann | 2011-01-25 |
| | | |||
| * | update stacks in ui after placing cards / selecting stacks | Reiner Herrmann | 2011-01-25 |
| | | |||
| * | use renamed function card_stack_clear | Reiner Herrmann | 2011-01-25 |
| | | |||
| * | Merge branch 'master' of ssh://icarus-git/~git/oxen | Reiner Herrmann | 2011-01-25 |
| |\ | |||
| | * | Added documentation. | Mario Kilies | 2011-01-25 |
| | | | |||
| | * | Implemented card_stack_push(). Renamed card_stack_clear() to ↵ | Mario Kilies | 2011-01-25 |
| | | | | | | | | | card_stack_replace() and card_stack_upper_card() to card_stack_top(). Added documentation. | ||
| * | | finished implementing play_cards function for client/server; added new ↵ | Reiner Herrmann | 2011-01-25 |
| |/ | | | | message type next_action which indicates whether the game is finished or the server will deal new cards | ||
| * | Added client side score calculation for players. | Mario Kilies | 2011-01-25 |
| | | |||
| * | Added 'Choose stack' message. | Mario Kilies | 2011-01-25 |
| | | |||
| * | forgot to add file in last commit :> | Reiner Herrmann | 2011-01-25 |
| | | |||
| * | Merge branch 'master' of ssh://icarus-git/~git/oxen | Reiner Herrmann | 2011-01-25 |
| |\ | |||
| | * | Message window is now displayed through the client states. | Mario Kilies | 2011-01-25 |
| | | | |||
| * | | implement part of state_client_play_cards(); added new message type: hello ↵ | Reiner Herrmann | 2011-01-25 |
| |/ | | | | reply from server which notifies clients of their player-ids | ||
| * | Implemented the message window. | Mario Kilies | 2011-01-25 |
| | | |||
| * | Code does compile again. | Mario Kilies | 2011-01-25 |
| | | |||
| * | Merge branch 'master' of ssh://git@wg.reiner-h.de:22003/~git/oxen | Mario Kilies | 2011-01-25 |
| |\ | |||
| | * | corrected server_parse_selected_stack() | Reiner Herrmann | 2011-01-25 |
| | | | |||
| * | | Minor changes. Renamed global.[ch] to data_store.[ch], data_store to ↵ | Mario Kilies | 2011-01-25 |
| |/ | | | | data_store_t and datamodel() to data_store(). | ||
| * | Removed awkward pnoc_t and refactored its contents to the new ↵ | Mario Kilies | 2011-01-25 |
| | | | | | player_list_entry_t. | ||
| * | Created a mainstack datatype. Refactored server game states into separate ↵ | Mario Kilies | 2011-01-25 |
| | | | | | functions. | ||
| * | Refactored client game states into separate functions instead of handling ↵ | Mario Kilies | 2011-01-25 |
| | | | | | them in a huge switch() statement. | ||
| * | Being trolled once again by fucking git. | Mario Kilies | 2011-01-25 |
| | | |||
| * | Minor refactoring of game states. | Mario Kilies | 2011-01-25 |
| | | |||
| * | Remove chosen card from hand. | Mario Kilies | 2011-01-25 |
| | | |||
| * | ui_display_wnd_current_state() has now optional highlighting of a player in ↵ | Mario Kilies | 2011-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 Herrmann | 2011-01-25 |
| | | |||
| * | use player count instead of MAX_PLAYERS. | Reiner Herrmann | 2011-01-24 |
| | | | | | | | this is allowed because only the first $count elements will be sorted by qsort/pnoc_sort, so only pnocs of valid players will be sorted. | ||
| * | server: send open cards to clients | Reiner Herrmann | 2011-01-24 |
| | | | | | client: receive open cards from clients, sort and display them | ||
| * | receive and store selected (open) cards from players | Reiner Herrmann | 2011-01-24 |
| | | |||
| * | Merge branch 'master' of ssh://icarus-git/~git/oxen | Reiner Herrmann | 2011-01-24 |
| |\ | |||
