-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
72 lines (60 loc) · 1.81 KB
/
README
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
____ _ _ _ _
___ / ___|_ __(_) |__ | |__ | | ___
/ __| | | '__| | '_ \| '_ \| |/ _ \
\__ \ |___| | | | |_) | |_) | | __/
|___/\____|_| |_|_.__/|_.__/|_|\___|
The smart doodler
------------------------------------------------------
by Alejandro Carrillo, Doron Shapiro, and Vincent Zhen
------------------------------------------------------
Members:
Alejandro Carrillo
Doron Shapiro
Vincent Zhen
HOW TO USE:
Install the 'libsdl-devel' package. Depending on your platform, package names will vary, but you will need the "dev" version of the package to compile sCribble.
Then, to build, run:
$ make
To start a doodle, run "./sCribble". To collaborate on an existing doodle, run "./sCribble XXX.XXX.XXX.XXX", where XXX.XXX.XXX.XXX is the IP address of the host.
For example, to run two canvases on the same computer, do the following:
TERMINAL WINDOW A
$ ./sCribble
TERMINAL WINDOW B
$ ./sCribble 127.0.0.1
We used SDL for our project. This includes SDL_image (for image blitting), SDL_ttf (for text) and SDL (for the rest of it).
To clean up the build files:
$ make clean && make cleanS
Files in sCribble repository:
font
blackWolf.ttf
gfx
color_line.bmp
src
server
listener.c
listener.h
server.c
server.h
subserver.c
subserver.h
client.c
client.h
defs.h
file.c
file.h
graphics.c
graphics.h
init.c
init.h
input.c
input.h
main.c
main.h
.gitignore
DESIGN
README
TODO
BUGS
Makefile
NOTES:
The full commit history of this project can be found at http://github.com/acarrillo/Cribble