mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
#1912 Some logging and fix for allied garrison
This commit is contained in:
parent
0c9e23edfa
commit
b1ef0f6301
@ -705,7 +705,7 @@ void AIGateway::showGarrisonDialog(const CArmedInstance * up, const CGHeroInstan
|
||||
//you can't request action from action-response thread
|
||||
requestActionASAP([=]()
|
||||
{
|
||||
if(removableUnits)
|
||||
if(removableUnits && up->tempOwner == down->tempOwner)
|
||||
pickBestCreatures(down, up);
|
||||
|
||||
answerQuery(queryID, 0);
|
||||
|
@ -181,7 +181,7 @@ void CObjectVisitQuery::onExposure(QueryPtr topQuery)
|
||||
|
||||
void Queries::popQuery(PlayerColor player, QueryPtr query)
|
||||
{
|
||||
//LOG_TRACE_PARAMS(logGlobal, "player='%s', query='%s'", player % query);
|
||||
LOG_TRACE_PARAMS(logGlobal, "player='%s', query='%s'", player % query);
|
||||
if(topQuery(player) != query)
|
||||
{
|
||||
logGlobal->trace("Cannot remove, not a top!");
|
||||
@ -200,7 +200,7 @@ void Queries::popQuery(PlayerColor player, QueryPtr query)
|
||||
|
||||
void Queries::popQuery(const CQuery &query)
|
||||
{
|
||||
//LOG_TRACE_PARAMS(logGlobal, "query='%s'", query);
|
||||
LOG_TRACE_PARAMS(logGlobal, "query='%s'", query);
|
||||
|
||||
assert(query.players.size());
|
||||
for(auto player : query.players)
|
||||
@ -209,7 +209,14 @@ void Queries::popQuery(const CQuery &query)
|
||||
if(top.get() == &query)
|
||||
popQuery(top);
|
||||
else
|
||||
{
|
||||
logGlobal->trace("Cannot remove query %s", query.toString());
|
||||
logGlobal->trace("Queries found:");
|
||||
for(auto q : queries[player])
|
||||
{
|
||||
logGlobal->trace(q->toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -230,7 +237,7 @@ void Queries::addQuery(QueryPtr query)
|
||||
|
||||
void Queries::addQuery(PlayerColor player, QueryPtr query)
|
||||
{
|
||||
//LOG_TRACE_PARAMS(logGlobal, "player='%d', query='%s'", player.getNum() % query);
|
||||
LOG_TRACE_PARAMS(logGlobal, "player='%d', query='%s'", player.getNum() % query);
|
||||
query->onAdding(player);
|
||||
queries[player].push_back(query);
|
||||
}
|
||||
@ -242,7 +249,7 @@ QueryPtr Queries::topQuery(PlayerColor player)
|
||||
|
||||
void Queries::popIfTop(QueryPtr query)
|
||||
{
|
||||
//LOG_TRACE_PARAMS(logGlobal, "query='%d'", query);
|
||||
LOG_TRACE_PARAMS(logGlobal, "query='%d'", query);
|
||||
if(!query)
|
||||
logGlobal->error("The query is nullptr! Ignoring.");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user