mirror of
https://github.com/glest/glest-source.git
synced 2025-08-23 00:12:49 +02:00
trying to track down network bugs
This commit is contained in:
@@ -332,6 +332,8 @@ void Commander::giveNetworkCommand(NetworkCommand* networkCommand) const {
|
|||||||
|
|
||||||
Command* command= buildCommand(networkCommand);
|
Command* command= buildCommand(networkCommand);
|
||||||
|
|
||||||
|
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);
|
||||||
|
|
||||||
unit->giveCommand(command, networkCommand->getWantQueue());
|
unit->giveCommand(command, networkCommand->getWantQueue());
|
||||||
|
|
||||||
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] found nctGiveCommand networkCommand->getUnitId() = %d\n",__FILE__,__FUNCTION__,__LINE__,networkCommand->getUnitId());
|
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] found nctGiveCommand networkCommand->getUnitId() = %d\n",__FILE__,__FUNCTION__,__LINE__,networkCommand->getUnitId());
|
||||||
@@ -362,6 +364,8 @@ void Commander::giveNetworkCommand(NetworkCommand* networkCommand) const {
|
|||||||
Command* Commander::buildCommand(const NetworkCommand* networkCommand) const{
|
Command* Commander::buildCommand(const NetworkCommand* networkCommand) const{
|
||||||
assert(networkCommand->getNetworkCommandType()==nctGiveCommand);
|
assert(networkCommand->getNetworkCommandType()==nctGiveCommand);
|
||||||
|
|
||||||
|
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);
|
||||||
|
|
||||||
if(world == NULL) {
|
if(world == NULL) {
|
||||||
char szBuf[1024]="";
|
char szBuf[1024]="";
|
||||||
sprintf(szBuf,"In [%s::%s Line: %d] world == NULL for unit with id: %d",__FILE__,__FUNCTION__,__LINE__,networkCommand->getUnitId());
|
sprintf(szBuf,"In [%s::%s Line: %d] world == NULL for unit with id: %d",__FILE__,__FUNCTION__,__LINE__,networkCommand->getUnitId());
|
||||||
@@ -372,6 +376,8 @@ Command* Commander::buildCommand(const NetworkCommand* networkCommand) const{
|
|||||||
const CommandType* ct= NULL;
|
const CommandType* ct= NULL;
|
||||||
const Unit* unit= world->findUnitById(networkCommand->getUnitId());
|
const Unit* unit= world->findUnitById(networkCommand->getUnitId());
|
||||||
|
|
||||||
|
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);
|
||||||
|
|
||||||
//validate unit
|
//validate unit
|
||||||
if(unit == NULL) {
|
if(unit == NULL) {
|
||||||
char szBuf[1024]="";
|
char szBuf[1024]="";
|
||||||
@@ -405,6 +411,8 @@ Command* Commander::buildCommand(const NetworkCommand* networkCommand) const{
|
|||||||
throw runtime_error(sError);
|
throw runtime_error(sError);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);
|
||||||
|
|
||||||
CardinalDir facing;
|
CardinalDir facing;
|
||||||
// get facing/target ... the target might be dead due to lag, cope with it
|
// get facing/target ... the target might be dead due to lag, cope with it
|
||||||
if (ct->getClass() == ccBuild) {
|
if (ct->getClass() == ccBuild) {
|
||||||
@@ -415,6 +423,8 @@ Command* Commander::buildCommand(const NetworkCommand* networkCommand) const{
|
|||||||
target= world->findUnitById(networkCommand->getTargetId());
|
target= world->findUnitById(networkCommand->getTargetId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);
|
||||||
|
|
||||||
//create command
|
//create command
|
||||||
Command *command= NULL;
|
Command *command= NULL;
|
||||||
if(unitType!=NULL){
|
if(unitType!=NULL){
|
||||||
@@ -427,6 +437,8 @@ Command* Commander::buildCommand(const NetworkCommand* networkCommand) const{
|
|||||||
command= new Command(ct, target);
|
command= new Command(ct, target);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);
|
||||||
|
|
||||||
//issue command
|
//issue command
|
||||||
return command;
|
return command;
|
||||||
}
|
}
|
||||||
|
@@ -32,7 +32,7 @@ namespace Glest{ namespace Game{
|
|||||||
// class NetworkInterface
|
// class NetworkInterface
|
||||||
// =====================================================
|
// =====================================================
|
||||||
|
|
||||||
const int NetworkInterface::readyWaitTimeout= 60000; //1 minute
|
const int NetworkInterface::readyWaitTimeout= 120000; // 2 minutes
|
||||||
|
|
||||||
bool NetworkInterface::allowGameDataSynchCheck = false;
|
bool NetworkInterface::allowGameDataSynchCheck = false;
|
||||||
bool NetworkInterface::allowDownloadDataSynch = false;
|
bool NetworkInterface::allowDownloadDataSynch = false;
|
||||||
|
Reference in New Issue
Block a user