diff options
| -rw-r--r-- | doc/todo.txt | 1 | ||||
| -rw-r--r-- | src/card.c | 26 | ||||
| -rw-r--r-- | src/card.h | 26 | ||||
| -rw-r--r-- | src/card_stack.c | 26 | ||||
| -rw-r--r-- | src/card_stack.h | 26 | ||||
| -rw-r--r-- | src/client_game_states.c | 26 | ||||
| -rw-r--r-- | src/data_store.c | 26 | ||||
| -rw-r--r-- | src/data_store.h | 26 | ||||
| -rw-r--r-- | src/game.c | 26 | ||||
| -rw-r--r-- | src/game.h | 26 | ||||
| -rw-r--r-- | src/game_states.h | 26 | ||||
| -rw-r--r-- | src/hand.c | 26 | ||||
| -rw-r--r-- | src/hand.h | 26 | ||||
| -rw-r--r-- | src/main.c | 26 | ||||
| -rw-r--r-- | src/main_stack.c | 26 | ||||
| -rw-r--r-- | src/main_stack.h | 26 | ||||
| -rw-r--r-- | src/manual.c | 26 | ||||
| -rw-r--r-- | src/manual.h | 26 | ||||
| -rw-r--r-- | src/net/client.c | 26 | ||||
| -rw-r--r-- | src/net/client.h | 26 | ||||
| -rw-r--r-- | src/net/comm.c | 26 | ||||
| -rw-r--r-- | src/net/comm.h | 26 | ||||
| -rw-r--r-- | src/net/server.c | 26 | ||||
| -rw-r--r-- | src/net/server.h | 26 | ||||
| -rw-r--r-- | src/player.c | 26 | ||||
| -rw-r--r-- | src/player.h | 26 | ||||
| -rw-r--r-- | src/server_game_states.c | 26 | ||||
| -rw-r--r-- | src/table_stacks.c | 26 | ||||
| -rw-r--r-- | src/table_stacks.h | 26 | ||||
| -rw-r--r-- | src/ui.c | 26 |
30 files changed, 755 insertions, 0 deletions
diff --git a/doc/todo.txt b/doc/todo.txt index debd329..cba9fbf 100644 --- a/doc/todo.txt +++ b/doc/todo.txt @@ -1,6 +1,7 @@ == Things that are to do == For 0.2: TODO: Fix output glitches that occur when a game is recorded and played with ttyrec (this may also be needed for dgamelaunch compatibility) +TODO: Let a chosen stack blink two or three times before replacing it (draw the stack, then overwrite it with blanks, then draw it again, ...) == Work that is done == @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include "card.h" #include <assert.h> @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_CARD_H #define OXEN_CARD_H diff --git a/src/card_stack.c b/src/card_stack.c index b5cfa8a..3fcfd69 100644 --- a/src/card_stack.c +++ b/src/card_stack.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include "card_stack.h" #include <assert.h> #include <stdlib.h> diff --git a/src/card_stack.h b/src/card_stack.h index 7e1d976..3f24e31 100644 --- a/src/card_stack.h +++ b/src/card_stack.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_CARD_STACK_H #define OXEN_CARD_STACK_H diff --git a/src/client_game_states.c b/src/client_game_states.c index 4786ae9..21b0bb6 100644 --- a/src/client_game_states.c +++ b/src/client_game_states.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include "game_states.h" #include "net/comm.h" #include "ui.h" diff --git a/src/data_store.c b/src/data_store.c index 69baed9..8651970 100644 --- a/src/data_store.c +++ b/src/data_store.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include <stdlib.h> #include <string.h> #include <assert.h> diff --git a/src/data_store.h b/src/data_store.h index 0b4a33a..d67e9ce 100644 --- a/src/data_store.h +++ b/src/data_store.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_DATA_STORE_H #define OXEN_DATA_STORE_H @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include "game.h" #include "card.h" #include "hand.h" @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_GAME_H #define OXEN_GAME_H diff --git a/src/game_states.h b/src/game_states.h index bc99108..845d66b 100644 --- a/src/game_states.h +++ b/src/game_states.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_GAME_STATES_H #define OXEN_GAME_STATES_H @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include "hand.h" #include <stdlib.h> #include <assert.h> @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_HAND_H #define OXEN_HAND_H @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include <stdlib.h> #include <string.h> #include <stdio.h> diff --git a/src/main_stack.c b/src/main_stack.c index 0482371..76bee04 100644 --- a/src/main_stack.c +++ b/src/main_stack.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include "main_stack.h" #include <stdlib.h> diff --git a/src/main_stack.h b/src/main_stack.h index aa2d420..770766a 100644 --- a/src/main_stack.h +++ b/src/main_stack.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_MAIN_STACK_H #define OXEN_MAIN_STACK_H diff --git a/src/manual.c b/src/manual.c index 20b3cb4..6deca9d 100644 --- a/src/manual.c +++ b/src/manual.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include "manual.h" #include <stdio.h> #include <stdlib.h> diff --git a/src/manual.h b/src/manual.h index 3e43a41..c92c86f 100644 --- a/src/manual.h +++ b/src/manual.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_MANUAL_H #define OXEN_MANUAL_H diff --git a/src/net/client.c b/src/net/client.c index eec83a5..4c169e9 100644 --- a/src/net/client.c +++ b/src/net/client.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> diff --git a/src/net/client.h b/src/net/client.h index f0ec810..ad7cabd 100644 --- a/src/net/client.h +++ b/src/net/client.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_CLIENT_H #define OXEN_CLIENT_H diff --git a/src/net/comm.c b/src/net/comm.c index 2bfacfa..fff661d 100644 --- a/src/net/comm.c +++ b/src/net/comm.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include <sys/types.h> #include <sys/socket.h> #include <stdlib.h> diff --git a/src/net/comm.h b/src/net/comm.h index b9fff41..f8715ac 100644 --- a/src/net/comm.h +++ b/src/net/comm.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_NET_H #define OXEN_NET_H diff --git a/src/net/server.c b/src/net/server.c index 27fbd14..ad36852 100644 --- a/src/net/server.c +++ b/src/net/server.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> diff --git a/src/net/server.h b/src/net/server.h index b5c0524..578d31f 100644 --- a/src/net/server.h +++ b/src/net/server.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_SERVER_H #define OXEN_SERVER_H diff --git a/src/player.c b/src/player.c index 4e7d5e9..338942a 100644 --- a/src/player.c +++ b/src/player.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include "player.h" #include <stdlib.h> #include <assert.h> diff --git a/src/player.h b/src/player.h index 920cf4d..abbfeff 100644 --- a/src/player.h +++ b/src/player.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_PLAYER_H #define OXEN_PLAYER_H diff --git a/src/server_game_states.c b/src/server_game_states.c index 4f9268a..1b7a3ba 100644 --- a/src/server_game_states.c +++ b/src/server_game_states.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include "game_states.h" #include <stdlib.h> #include <string.h> diff --git a/src/table_stacks.c b/src/table_stacks.c index 6230a1f..12b7a9d 100644 --- a/src/table_stacks.c +++ b/src/table_stacks.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include <stdlib.h> #include <assert.h> #include "table_stacks.h" diff --git a/src/table_stacks.h b/src/table_stacks.h index 3528012..c177a3c 100644 --- a/src/table_stacks.h +++ b/src/table_stacks.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #ifndef OXEN_TABLE_STACKS_H #define OXEN_TABLE_STACKS_H @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann <reiner@reiner-h.de> * + * Mario Kilies <MarioKilies@GMX.net> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 3 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + * * + *****************************************************************************/ + #include "ui.h" #include <assert.h> #include "card_stack.h" |
