tamc 2002/03/27 01:03:58 PST
Modified files:
server GameServer.cpp GameServer.h
ListenServer.cpp ListenServer.h main.cpp
Added files:
server BrothaServer.h Client.cpp Client.h
ClientServer.cpp ClientServer.h
WriteServer.cpp WriteServer.h
Log:
Should represent basic server program structure.
Everything move to the server namespace.
BrothaServer is the interface between the UI and the actual server, please see it for implementing a possible nonWindows UI
All the threads simply steal CPU time, so dont' expect this to do anything
Revision Changes Path
1.1 +86 -0 brotha/server/BrothaServer.h (new)
1.1 +15 -0 brotha/server/Client.cpp (new)
1.1 +22 -0 brotha/server/Client.h (new)
1.1 +18 -0 brotha/server/ClientServer.cpp (new)
1.1 +22 -0 brotha/server/ClientServer.h (new)
1.2 +11 -8 brotha/server/GameServer.cpp
1.2 +13 -7 brotha/server/GameServer.h
1.2 +11 -12 brotha/server/ListenServer.cpp
1.2 +15 -9 brotha/server/ListenServer.h
1.1 +19 -0 brotha/server/WriteServer.cpp (new)
1.1 +25 -0 brotha/server/WriteServer.h (new)
1.3 +6 -9 brotha/server/main.cpp
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/BrothaServer.h?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/Client.cpp?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/Client.h?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/ClientServer.cpp?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/ClientServer.h?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/GameServer.cpp.diff?r1=1.1&r2=1.2&diff_format=h
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/GameServer.h.diff?r1=1.1&r2=1.2&diff_format=h
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/ListenServer.cpp.diff?r1=1.1&r2=1.2&diff_format=h
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/ListenServer.h.diff?r1=1.1&r2=1.2&diff_format=h
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/WriteServer.cpp?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/WriteServer.h?rev=1.1&content-type=text/plain
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/isugamedev/brotha/server/main.cpp.diff?r1=1.2&r2=1.3&diff_format=h
|