-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetcommon.cpp
90 lines (80 loc) · 2.62 KB
/
netcommon.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
sueca - An implementation of the Portuguese game "Sueca" in C++ and wxWidgets
Copyright (C) 2003-2024 Rodrigo Araujo
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "netcommon.hpp"
#include <wx/listimpl.cpp>
#include <wx/tokenzr.h>
#include "definitions.hpp"
WX_DEFINE_LIST( SockBaseList );
WX_DEFINE_LIST( CommandList );
char* freestr = "<free>";
void SocketPrint( wxSocketBase* socket, const wxString& str )
{
socket->Write( str.c_str(), str.Len() );
}
void SocketPrintln( wxSocketBase* socket, const wxString& str )
{
socket->Write( ( str + '\n' ).c_str(), str.Len() + 1 );
}
CommandList* GetCommands( wxSocketBase* socket,
const CommandMap& comhash,
wxString& reading )
{
CommandList* comlist = new CommandList();
// Check incoming data from socket
wxUint32 count;
char buf[1024];
// Get several lines
while( ( count = socket->Read( buf, sizeof( buf ) - 1 ).LastCount() ) &&
! socket->Error() ) {
buf[count] = 0;
bool incomplete = buf[count - 1] == '\n' ? false : true;
wxStringTokenizer tkz( buf, "\r\n", wxTOKEN_STRTOK );
int nlines = tkz.CountTokens();
if( incomplete )
nlines--;
for( int i = 0; i < nlines; i++ ) {
reading += tkz.GetNextToken();
wxStringTokenizer argtkz( reading, ":" );
if( argtkz.CountTokens() ) {
wxString comstr = argtkz.GetNextToken();
// Check for valid command
CommandMap::const_iterator it = comhash.find( comstr );
if( it != comhash.end() ) {
wxArrayString arguments;
arguments.Add( comstr );
// Get args
while( argtkz.HasMoreTokens() )
arguments.Add( argtkz.GetNextToken() );
comlist->Append( new Command( it->second, arguments ) );
}
}
reading = "";
}
if( incomplete )
reading += tkz.GetNextToken();
}
return comlist;
}
bool ValidName( wxString& name )
{
name.Trim( true );
name.Trim( false );
name.Truncate( PLAYER_NAME_MAX );
if( ! name.Len() || name.Length() > PLAYER_NAME_MAX ||
name.Find( ':' ) >= 0 )
return false;
return true;
}