Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/netdefs.h @ 9450

Last change on this file since 9450 was 9450, checked in by patrick, 18 years ago

using the new id scheme

File size: 2.8 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11### File Specific:
12   main-programmer: Christoph Renner rennerc@ee.ethz.ch
13   co-programmer:   Patrick Boenzli  boenzlip@orxonox.ethz.ch
14
15     June 2006: finishing work on the network stream for pps presentation (rennerc@ee.ethz.ch)
16     July 2006: some code rearangement and integration of the proxy server mechanism (boenzlip@ee.ethz.ch)
17*/
18
19/*!
20 * @file network_manager.h
21 *  Main interface for the network module. Manages all the modules
22 */
23
24#ifndef _NETDEFS_H
25#define _NETDEFS_H
26
27#include "nettypes.h"
28#include "netincl.h"
29
30
31
32//!< the amount of slots used before a proxy server is activated
33#define NET_CONNECTION_SATURATION 0.75
34
35//!< network polling frequency
36#define NETWORK_FREQUENCY 66
37
38
39//!< orxonox protocol id
40#define _ORXONOX_ID        0xF91337A0
41//!< orxonox network version identifier
42#define _ORXONOX_VERSION   1
43
44
45
46
47//!< enum indicating the type of the node
48typedef enum {
49  NET_MASTER_SERVER,
50  NET_PROXY_SERVER_ACTIVE,
51  NET_PROXY_SERVER_PASSIVE,
52  NET_CLIENT,
53
54  NET_NR_TYPES
55
56} NodeType;
57
58//!< enum indicating the type of the network connection (2 protocols supported)
59typedef enum ConnectionType {
60  NET_UDP = 0,
61  NET_TCP
62};
63
64//!< the type of the unique id (special number never used elsewhere)
65typedef enum {
66  NET_UID_UNASSIGNED = -1,
67
68  NET_UID_HANDSHAKE  =  0,
69
70
71  NET_UID_NUMBER
72} UidType;
73
74
75//!< the network id list
76typedef enum nodeId {
77  NET_ID_UNASSIGNED       =-1,
78
79  NET_ID_MASTER_SERVER    = 0,
80
81  NET_ID_PROXY_SERVER_01  = 1,
82  NET_ID_PROXY_SERVER_02,
83  NET_ID_PROXY_SERVER_03,
84  NET_ID_PROXY_SERVER_04,
85  NET_ID_PROXY_SERVER_05,
86  NET_ID_PROXY_SERVER_06,
87  NET_ID_PROXY_SERVER_07,
88  NET_ID_PROXY_SERVER_08  = 8,
89
90  NET_ID_PROXY_MAX        = 8,
91
92  NET_ID_CLIENT_01        = 9,
93  NET_ID_CLIENT_02,
94  NET_ID_CLIENT_03,
95  NET_ID_CLIENT_04,
96  NET_ID_CLIENT_05,
97  NET_ID_CLIENT_06,
98  NET_ID_CLIENT_07,
99  NET_ID_CLIENT_08,
100  NET_ID_CLIENT_09,
101  NET_ID_CLIENT_10,
102  NET_ID_CLIENT_11,
103  NET_ID_CLIENT_12,
104  NET_ID_CLIENT_13,
105  NET_ID_CLIENT_14,
106  NET_ID_CLIENT_15,
107  NET_ID_CLIENT_16,
108  NET_ID_CLIENT_17,
109  NET_ID_CLIENT_18,
110  NET_ID_CLIENT_19,
111  NET_ID_CLIENT_20,
112  NET_ID_CLIENT_21,
113  NET_ID_CLIENT_22,
114  NET_ID_CLIENT_23,
115  NET_ID_CLIENT_24,
116  NET_ID_CLIENT_25,
117  NET_ID_CLIENT_26,
118  NET_ID_CLIENT_27,
119  NET_ID_CLIENT_28,
120  NET_ID_CLIENT_29,
121  NET_ID_CLIENT_30,
122  NET_ID_CLIENT_31,
123  NET_ID_CLIENT_32,
124  NET_ID_CLIENT_33,
125  NET_ID_CLIENT_34,
126  NET_ID_CLIENT_35,
127  NET_ID_CLIENT_36,
128  NET_ID_CLIENT_37,
129  NET_ID_CLIENT_38,
130  NET_ID_CLIENT_39,
131  NET_ID_CLIENT_40,
132
133  NET_ID_CLIENT_MAX        = 40
134
135};
136#endif /* _NETDEFS_H */
Note: See TracBrowser for help on using the repository browser.