source: Daodan/MSVC/Flatline_Server.c@ 585

Last change on this file since 585 was 583, checked in by gumby, 14 years ago

last update before big rewrite

File size: 5.7 KB
RevLine 
[567]1#include "Flatline.h"
2#include "Flatline_Server.h"
[582]3#include <Windows.h>
[567]4
[578]5//I hereby apologize for the uglyness of the below code.
6//It was never intended to be "final" code, much less shared with anyone
7
[567]8int total_players = 0;
9uint16_t max_connections = MAX_CONNECTIONS;
10
[573]11player_info* FLrServer_AddPlayer(int ip, char* name, bool is_server, bool is_bot) {
[567]12 flatline_packet new_char = {0};
13 CharacterObject* Char;
14 uint32_t player_slot = 0;
15 int playerlist_slot = 0;
[578]16
17 if(is_server || total_players < max_connections) {
18
[567]19 int i = 0;
20 int k = 0;
21
[578]22 //Skip for the host
23 if(!is_server)
24 {
25 char* zero = strchr(name, 0);
26 playerlist_slot = FLr_FindEmptyListSlot();
[567]27
[578]28 total_players++;
[567]29
[578]30 //checks to see if a name exists or not
31 //then appends [#] on the end of it if it does
32 //May be buggy, come back to this.
33 if(zero - name > 28) zero = name + 28;
34 for(i = 0; i < max_connections; i++) {
35 if(PlayerList[i] != 0 && !strcmp(name, PlayerList[i]->name)) {
36 k++;
37 sprintf(zero, "[%i]", k);
38 i = 0;
39 }
[567]40 }
41 }
[578]42
43 new_char.new_player.Playernumber = playerlist_slot;
[567]44
[578]45 //Set up a new Character structure to be spawned as the new player.
46 //Can this code be surrounded with if(!is_server){}?
[567]47 Char = &new_char.new_player.Character;
48 memset(Char, 0, sizeof(CharacterObject));
49 Char->Header.Type = 'CHAR';
50 sprintf(Char->OSD.Name,"%s",name);
51 sprintf(Char->OSD.Class, "%s", "konoko_generic");
[573]52 if(is_bot) {
53 Char->OSD.MeleeID = 22;
54 Char->OSD.JobID = 1;
55 Char->OSD.MinimalAlertLevel = 4;
56 Char->OSD.InvestigatingAlertLevel = 4;
57 Char->OSD.InitialAlertLevel = 4;
58 Char->OSD.StartJobAlertLevel = 4;
59 }
60 else if( !is_server )
61 {
62 Char->Header.Position.X = PlayerList[0]->Chr->Position.X;
63 Char->Header.Position.Y = PlayerList[0]->Chr->Position.Y;
64 Char->Header.Position.Z = PlayerList[0]->Chr->Position.Z;
65 }
[567]66
67 //TMrInstance_GetDataPtr('ONCC', "striker_easy_1", PlayerList[playerlist_slot]->Chr->ONCC);
68
69 new_char.id = NEW_PLAYER;
70 if(!is_server) {
71 ONrGameState_NewCharacter(Char, NULL, NULL, &(player_slot));
[568]72 //move this to a set up characters function...
[573]73 if(!is_bot) ONgGameState->CharacterStorage[player_slot].charType = 0;
[568]74
[567]75 PlayerList[playerlist_slot] = Players+player_slot;
[568]76 PlayerList[playerlist_slot]->spawnnumber = player_slot;
[578]77 PlayerList[playerlist_slot]->Chr = &(ONgGameState->CharacterStorage)[player_slot];
78 //PlayerList[playerlist_slot]->Chr->Flags = chr_dontaim | chr_unkillable; //&= 0xFFBFFFFF; //WTF
79 if(!is_bot) PlayerList[playerlist_slot]->Chr->Flags &= 0xFFBFFFFF; //WTF, magic number.
[583]80 sprintf_s(PlayerList[playerlist_slot]->Chr->Name, 32, "%s", name);
81 sprintf_s(PlayerList[playerlist_slot]->name, 32, "%s", name);
[567]82 UDPServer_SendToAll( (char*)&new_char, sizeof(new_player) + FLATLINE_HEADER );
83
84 }
85 else {
86 PlayerList[0] = Players;
87 PlayerList[0]->Chr = (Character *)(((GameState * )(ONgGameState))->CharacterStorage);
88 }
89
90 //add player to list
91
92 PlayerList[playerlist_slot]->ip = ip;
93 PlayerList[playerlist_slot]->list_slot = playerlist_slot;
[583]94 sprintf_s(PlayerList[playerlist_slot]->name, 32, "%s", name);
[567]95
[582]96 MultiplayerStatus.PleaseUpdateAllPlayers = 1;
97
[567]98 return &Players[player_slot];
99 }
100 return (player_info*)(-1);
101}
102
103void FLrServer_Initialize(){
[573]104 FLrServer_AddPlayer(inet_addr("127.0.0.1"), "host", 1, 0);
[568]105}
[567]106
[568]107//UDPServer_SendToAll
108//Sends a packet to all the clients currently connected.
109//Returns the number of players sent to.
110int UDPServer_SendToAll(void* packet, int size) {
111 int j;
112 int players = 0;
113 sockaddr_in address;
114 memset(&address, 0, sizeof(sockaddr_in));
115 address.sin_family = AF_INET;
116 address.sin_addr.s_addr = htonl(INADDR_ANY);
117 address.sin_port = htons(27777);
118 for(j = 0; j < max_connections; j++) {
119 if (PlayerList[j] != 0 && PlayerList[j]->ip && (PlayerList[j]->ip != inet_addr("127.0.0.1"))) {
120 int sent_bytes;
121 address.sin_addr.s_addr = htonl(PlayerList[j]->ip);//*((struct in_addr*)(int*)&(Players[j].ip));
122 sent_bytes = NetUDPServer_Send((sockaddr *) &address, (char*)packet, size);
123 if(sent_bytes == SOCKET_ERROR) NetCatchError();
124 else players++;
125 }
126 }
127 return players;
[573]128}
129
[579]130//FLsPublic_Event
[578]131//Sends an event (door opening, player disconnecting, etc) to all players
[580]132//Always make sure you send a pointer to this, even if it is just one arg. ;).
[579]133//If it is void the double door in State crashes. Probably stack corruption,
134//I'm not sure exactly why.
[580]135//So we return 0 to stop that.
[579]136int FLsPublic_Event( const unsigned int eventIndex, const int * args )
[573]137{
138 int numArgs = FLrEvent_GetNumArgs( eventIndex );
[579]139 int ret;
[573]140 flatline_packet eventPacket = {0};
141 eventPacket.id = FLATLINE_EVENT;
142 eventPacket.flatline_event.event_index = eventIndex;
[579]143 ret = memcpy( eventPacket.flatline_event.intArray, args, sizeof(int) * numArgs );
144 ret = UDPServer_SendToAll( &eventPacket, sizeof(int) * (numArgs + 1) + FLATLINE_HEADER );
145 return 0;
[573]146}
147
[580]148void FLsPingAll()
149{
150 flatline_packet ping;
151 ping.id = PK_PING;
[582]152 lastPingTime = ping.ping = GetTickCount();
[580]153 UDPServer_SendToAll(&ping, FLATLINE_HEADER + 4);
[583]154}
155
156void FLsUpdateName( int index, char* name )
157{
158 flatline_packet message;
159 int message_size;
160
161 char message_buffer[1024];
162 sprintf(message_buffer,"%s changed their name to %s", PlayerList[index]->name, name);
163 COrMessage_Print(message_buffer, "name_change", 0);
164
165 sprintf_s(PlayerList[index]->name, 32, "%s", name);
166 sprintf_s(PlayerList[index]->Chr->Name, 32, "%s", name);
167
168 message.id = CHANGE_NAME;
169 message.data[0] = index;
170 message_size = sprintf(message.data + 1, "%s", name);
171
172 UDPServer_SendToAll(&message, message_size + 2 + FLATLINE_HEADER);
[580]173}
Note: See TracBrowser for help on using the repository browser.