git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/hilnius@13161 178a84e3-b1eb-0310-8ba1-8eac791a3b58
108 lines
2.9 KiB
C++
108 lines
2.9 KiB
C++
//
|
|
// SuperTuxKart - a fun racing game with go-kart
|
|
// Copyright (C) 2013 SuperTuxKart-Team
|
|
//
|
|
// 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 3
|
|
// 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#include "network/server_network_manager.hpp"
|
|
|
|
#include "network/protocols/get_public_address.hpp"
|
|
#include "network/protocols/hide_public_address.hpp"
|
|
#include "network/protocols/show_public_address.hpp"
|
|
#include "network/protocols/get_peer_address.hpp"
|
|
#include "network/protocols/connect_to_server.hpp"
|
|
#include "network/protocols/stop_server.hpp"
|
|
|
|
#include "main_loop.hpp"
|
|
#include "utils/log.hpp"
|
|
|
|
#include <enet/enet.h>
|
|
#include <pthread.h>
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <stdlib.h>
|
|
|
|
void* waitInput2(void* data)
|
|
{
|
|
std::string str = "";
|
|
bool stop = false;
|
|
int n = 0;
|
|
while(!stop)
|
|
{
|
|
getline(std::cin, str);
|
|
if (str == "quit")
|
|
{
|
|
stop = true;
|
|
}
|
|
else if (str == "kickall")
|
|
{
|
|
ServerNetworkManager::getInstance()->kickAllPlayers();
|
|
}
|
|
}
|
|
|
|
uint32_t id = ProtocolManager::getInstance()->requestStart(new StopServer());
|
|
while(ProtocolManager::getInstance()->getProtocolState(id) != PROTOCOL_STATE_TERMINATED)
|
|
{
|
|
}
|
|
|
|
main_loop->abort();
|
|
exit(0);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
ServerNetworkManager::ServerNetworkManager()
|
|
{
|
|
m_localhost = NULL;
|
|
m_thread_keyboard = NULL;
|
|
}
|
|
|
|
ServerNetworkManager::~ServerNetworkManager()
|
|
{
|
|
if (m_thread_keyboard)
|
|
pthread_cancel(*m_thread_keyboard);//, SIGKILL);
|
|
}
|
|
|
|
void ServerNetworkManager::run()
|
|
{
|
|
if (enet_initialize() != 0)
|
|
{
|
|
Log::error("ServerNetworkManager", "Could not initialize enet.\n");
|
|
return;
|
|
}
|
|
m_localhost = new STKHost();
|
|
m_localhost->setupServer(STKHost::HOST_ANY, 7321, 16, 2, 0, 0);
|
|
m_localhost->startListening();
|
|
|
|
// listen keyboard console input
|
|
m_thread_keyboard = (pthread_t*)(malloc(sizeof(pthread_t)));
|
|
pthread_create(m_thread_keyboard, NULL, waitInput2, NULL);
|
|
|
|
NetworkManager::run();
|
|
}
|
|
|
|
void ServerNetworkManager::kickAllPlayers()
|
|
{
|
|
for (int i = 0; i < m_peers.size(); i++)
|
|
{
|
|
m_peers[i]->disconnect();
|
|
}
|
|
}
|
|
|
|
void ServerNetworkManager::sendPacket(const NetworkString& data)
|
|
{
|
|
m_localhost->broadcastPacket(data);
|
|
}
|