forked from margnus1/kid-mud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
89 lines (54 loc) · 2.38 KB
/
README.txt
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
==== COURSE ====
Process Oriented Programming (1DT049) Spring 2012
Department of Information Technology
Uppsala university
==== GROUP ====
14 (change this to your group number).
==== PROJECT NAME ====
KID is dirty
Because he is playing in the MUD
==== PROJECT DESCRIPTION ====
A MUD (Multi User Dungeon) is a text- based online game where players
perform actions by typing them (such as “go north” or “attack goblin”).
The world is partitioned into zones, and each player exists in one zone
at any one time, and can move to neighboring zones. Zones can be occupied
by several players as well as one or more NPC (Non player characters) that
can be interacted with (e.g. attacked).
==== GROUP MEMBERS ====
900406-0092 [email protected]
910123-4194 [email protected]
910409-2672 [email protected]
840526-0194 [email protected]
==== MAY THE SOURCE BE WITH YOU ====
Everything you need to compile and run the system is included in this
directory.
However, you might want to get the most up to date version of this
directory.
To fetch the source code for this project type the following command:
FIRST TIME
$ git clone git://github.com/margnus1/kid-mud.git
IF ALREADY FETCHED
$ git pull
==== ERLANG VERSION ====
This software was developed and tested using Erlang R15B01.
==== MAKE IT HAPPEN ====
Using the make utility you can perform the following actions:
make ==> Compiles the Erlang source files if necessary.
make archive ==> Creates a gziped tar archive of this directory.
make clean ==> Removes all beam files and html files generated by Edoc.
make doc ==> Generates Edoc documentation in the doc/html directory.
make start ==> Starts the system.
make test ==> Runs all Eunit tests.
==== TO COMPILE ====
To compile the project, simply type make and press enter.
==== TO RUN AND TEST THE SYSTEM ====
Add a short description on how to run and test your system. Here you
might give pointers to more details in the doc/final_presentation.pdf
document.
If possible, add targets to the Makefile that can be used to start the
system (make start, make start_server, make start_client or similar as
necessary).
==== MORE INFORMATION (optional) ====
* How to get more information about your project?
* Who is the main contact person?
* Do you have a project home page?