Authors: | Jan Brodacz, Alexander Feder & Gerald Scheidl |
Date: | 99/12/15 |
Rev: | 0.1.0 |
/*-------------------------------------- hier das picture vom layer aufbau und das verhältnis server/client ---------------------------------------*/
if ( whatever == 0 ) Create3dsiaObject ( pos, name, flags );Brackets have to be set like following example shows:
for ( i = 0; i < 10; i++ ) { if ( whatever == 0 ) { if ( Create3dsiaObject ( pos, name, flags ) ) exit (1) } }
/* network.cc Created by: Deve Loper, 9.9.99 Purpose: Network functions for server/client communication Changes: Deve Loper, 10.9.99, Bugfix, more then 4 user can connect now simultaneously, LoginFunc() Deve Loper, 11.9.99, Added, simple handshake, HandShakeFunc() Cony Tributer, 13.9.99, Bugfix, handshake works now HandShakeFunc() [...] */
/* Create3dsiaObject ( float pos[3], char *name, int flags ); Created by: Deve Loper, 11.10.98 Purpose: Creates a 3DSIA Object and adds it to the current User Matrix. Arguments: float pos[3]: specifies to position in the user matrix char *name: the name of the object int flags: the various binary flags those are [...] Return Value: 0 on success -1 [...] */
/* Changes in network.cc 1. Improved performance in encoding and decoding routine of PackageHandling(). 2. Changed protocol struct. Added a new integer value in [struct ProtocolStruct] Changes in server.cc [...] */