From a3bfb25738fa42e17af42dfb671d66cef7995c7c Mon Sep 17 00:00:00 2001 From: Mario Kilies Date: Sat, 29 Jan 2011 19:05:03 +0100 Subject: Expanded todo list. --- doc/todo.txt | 1 + 1 file changed, 1 insertion(+) 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 == -- cgit v1.2.3 From ec83f384e46fd1a571f47da621f07bad1e9cc6a6 Mon Sep 17 00:00:00 2001 From: Mario Kilies Date: Sat, 29 Jan 2011 19:08:38 +0100 Subject: Added license headers. --- src/card.c | 26 ++++++++++++++++++++++++++ src/card.h | 26 ++++++++++++++++++++++++++ src/card_stack.c | 26 ++++++++++++++++++++++++++ src/card_stack.h | 26 ++++++++++++++++++++++++++ src/client_game_states.c | 26 ++++++++++++++++++++++++++ src/data_store.c | 26 ++++++++++++++++++++++++++ src/data_store.h | 26 ++++++++++++++++++++++++++ src/game.c | 26 ++++++++++++++++++++++++++ src/game.h | 26 ++++++++++++++++++++++++++ src/game_states.h | 26 ++++++++++++++++++++++++++ src/hand.c | 26 ++++++++++++++++++++++++++ src/hand.h | 26 ++++++++++++++++++++++++++ src/main.c | 26 ++++++++++++++++++++++++++ src/main_stack.c | 26 ++++++++++++++++++++++++++ src/main_stack.h | 26 ++++++++++++++++++++++++++ src/manual.c | 26 ++++++++++++++++++++++++++ src/manual.h | 26 ++++++++++++++++++++++++++ src/net/client.c | 26 ++++++++++++++++++++++++++ src/net/client.h | 26 ++++++++++++++++++++++++++ src/net/comm.c | 26 ++++++++++++++++++++++++++ src/net/comm.h | 26 ++++++++++++++++++++++++++ src/net/server.c | 26 ++++++++++++++++++++++++++ src/net/server.h | 26 ++++++++++++++++++++++++++ src/player.c | 26 ++++++++++++++++++++++++++ src/player.h | 26 ++++++++++++++++++++++++++ src/server_game_states.c | 26 ++++++++++++++++++++++++++ src/table_stacks.c | 26 ++++++++++++++++++++++++++ src/table_stacks.h | 26 ++++++++++++++++++++++++++ src/ui.c | 26 ++++++++++++++++++++++++++ 29 files changed, 754 insertions(+) diff --git a/src/card.c b/src/card.c index 5132be6..6773f6a 100644 --- a/src/card.c +++ b/src/card.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include "card.h" #include diff --git a/src/card.h b/src/card.h index 82cd5cf..8e4279c 100644 --- a/src/card.h +++ b/src/card.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include "card_stack.h" #include #include 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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include #include #include 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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #ifndef OXEN_DATA_STORE_H #define OXEN_DATA_STORE_H diff --git a/src/game.c b/src/game.c index 203d2fe..8d30e5e 100644 --- a/src/game.c +++ b/src/game.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include "game.h" #include "card.h" #include "hand.h" diff --git a/src/game.h b/src/game.h index 681d3df..721a86f 100644 --- a/src/game.h +++ b/src/game.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #ifndef OXEN_GAME_STATES_H #define OXEN_GAME_STATES_H diff --git a/src/hand.c b/src/hand.c index d6a047d..407fe48 100644 --- a/src/hand.c +++ b/src/hand.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include "hand.h" #include #include diff --git a/src/hand.h b/src/hand.h index f922ccf..8da70f1 100644 --- a/src/hand.h +++ b/src/hand.h @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #ifndef OXEN_HAND_H #define OXEN_HAND_H diff --git a/src/main.c b/src/main.c index ffae6e2..df4671e 100644 --- a/src/main.c +++ b/src/main.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include #include #include 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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include "main_stack.h" #include 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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #ifndef OXEN_MAIN_STACK_H #define OXEN_MAIN_STACK_H diff --git a/src/manual.c b/src/manual.c index 8316617..03114fb 100644 --- a/src/manual.c +++ b/src/manual.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include "manual.h" #include #include 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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include #include #include 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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include #include #include 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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include #include #include 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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include "player.h" #include #include 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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include "game_states.h" #include #include 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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include #include #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 * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #ifndef OXEN_TABLE_STACKS_H #define OXEN_TABLE_STACKS_H diff --git a/src/ui.c b/src/ui.c index f7b9b08..e24e994 100644 --- a/src/ui.c +++ b/src/ui.c @@ -1,3 +1,29 @@ +/***************************************************************************** + * ___ __ __ ___ _ __ * + * / _ \\ \/ // _ \ '_ \ * + * | (_) |> <| __/ | | | * + * \___//_/\_\\___|_| |_| * + * * + * The card game * + * * + * Copyright (C) 2011, Reiner Herrmann * + * Mario Kilies * + * * + * 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 . * + * * + *****************************************************************************/ + #include "ui.h" #include #include "card_stack.h" -- cgit v1.2.3