blob: 03114fbb668662c54847de9330c7b0ba29531ad7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/*****************************************************************************
* ___ __ __ ___ _ __ *
* / _ \\ \/ // _ \ '_ \ *
* | (_) |> <| __/ | | | *
* \___//_/\_\\___|_| |_| *
* *
* 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>
static const char* manual_text =
"Oxen is a multiplayer card game for up to 10 players.\n\n"
" HOW TO START (see also 'oxen -h'):\n\n"
" One player has to host the game and needs to specify '-l' to start\n"
" a server on the specified port ('-p port', default is 12345).\n"
" It will wait for the specified number of clients ('-n num') to connect\n"
" before starting the game. After the server is listening, a local client\n"
" will automatically be started and connected to it.\n"
" When it is running, other players can connect to it by specifying its\n"
" hostname or IP address ('-s address') and port number (if different to\n"
" default).\n"
" Players can set their nickname with '-u name' or by setting the USER\n"
" environment variable.\n\n"
" HOW TO PLAY:\n\n"
"\n";
/**
* Print manual on stdout
*/
void print_manual(void)
{
printf("%s", manual_text);
exit(EXIT_SUCCESS);
}
|