Last change
on this file since 15efb4e was b8601ee, checked in by dportnoy <dmp1488@…>, 12 years ago |
The server keeps track of each team's score and sends SCORE meesages to the clients upon login and when the score changes
|
-
Property mode
set to
100644
|
File size:
727 bytes
|
Rev | Line | |
---|
[8e540f4] | 1 | #ifndef _MESSAGE_H
|
---|
[2488852] | 2 | #define _MESSAGE_H
|
---|
[7d7df47] | 3 |
|
---|
[5f868c0] | 4 | #define MSG_TYPE_REGISTER 1
|
---|
| 5 | #define MSG_TYPE_LOGIN 2
|
---|
| 6 | #define MSG_TYPE_LOGOUT 3
|
---|
| 7 | #define MSG_TYPE_CHAT 4
|
---|
| 8 | #define MSG_TYPE_PLAYER 5 // server sends this to update player positions
|
---|
| 9 | #define MSG_TYPE_PLAYER_MOVE 6 // client sends this when a player wants to move
|
---|
| 10 | #define MSG_TYPE_OBJECT 7
|
---|
| 11 | #define MSG_TYPE_REMOVE_OBJECT 8
|
---|
[5299436] | 12 | #define MSG_TYPE_PICKUP_FLAG 9
|
---|
| 13 | #define MSG_TYPE_DROP_FLAG 10
|
---|
[b8601ee] | 14 | #define MSG_TYPE_SCORE 11
|
---|
[7d7df47] | 15 |
|
---|
| 16 | typedef struct
|
---|
| 17 | {
|
---|
[0dde5da] | 18 | short type;
|
---|
| 19 | char buffer[256];
|
---|
[7d7df47] | 20 | } NETWORK_MSG;
|
---|
| 21 |
|
---|
[a845faf] | 22 | int sendMessage(NETWORK_MSG *msg, int sock, struct sockaddr_in *dest);
|
---|
| 23 |
|
---|
| 24 | int receiveMessage(NETWORK_MSG *msg, int sock, struct sockaddr_in *dest);
|
---|
| 25 |
|
---|
[e084950] | 26 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.