mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-26 22:57:00 +02:00
Support for sanctuary.
Minor fix.
This commit is contained in:
parent
1e30045541
commit
44ee8e47b7
@ -482,12 +482,24 @@ void CGObjectInstance::onHeroVisit( const CGHeroInstance * h ) const
|
|||||||
{
|
{
|
||||||
switch(ID)
|
switch(ID)
|
||||||
{
|
{
|
||||||
case 95:
|
case 80: //Sanctuary
|
||||||
OpenWindow ow;
|
{
|
||||||
ow.window = OpenWindow::TAVERN_WINDOW;
|
InfoWindow iw;
|
||||||
ow.id1 = h->id;
|
iw.player = h->tempOwner;
|
||||||
ow.id2 = id;
|
iw.soundID = soundBase::GETPROTECTION;
|
||||||
cb->sendAndApply(&ow);
|
iw.text.addTxt(MetaString::ADVOB_TXT, 114); //You enter the sanctuary and immediately feel as if a great weight has been lifted off your shoulders. You feel safe here.
|
||||||
|
cb->sendAndApply(&iw);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 95: //Tavern
|
||||||
|
{
|
||||||
|
OpenWindow ow;
|
||||||
|
ow.window = OpenWindow::TAVERN_WINDOW;
|
||||||
|
ow.id1 = h->id;
|
||||||
|
ow.id2 = id;
|
||||||
|
cb->sendAndApply(&ow);
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -982,10 +994,10 @@ void CGHeroInstance::initObj()
|
|||||||
bonus.type = Bonus::PRIMARY_SKILL; //TODO: limit to specific creature type
|
bonus.type = Bonus::PRIMARY_SKILL; //TODO: limit to specific creature type
|
||||||
bonus.valType = Bonus::ADDITIVE_VALUE;
|
bonus.valType = Bonus::ADDITIVE_VALUE;
|
||||||
bonus.subtype = 1; //attack
|
bonus.subtype = 1; //attack
|
||||||
bonus.val = level * (*creatures)[it->additionalinfo]->attack / (*creatures)[it->additionalinfo]->level /20;
|
bonus.val = level * (*creatures)[it->additionalinfo]->attack / creLevel /20;
|
||||||
speciality.bonuses.push_back (bonus);
|
speciality.bonuses.push_back (bonus);
|
||||||
bonus.subtype = 2; //defense
|
bonus.subtype = 2; //defense
|
||||||
bonus.val = level * (*creatures)[it->additionalinfo]->defence / (*creatures)[it->additionalinfo]->level /20;
|
bonus.val = level * (*creatures)[it->additionalinfo]->defence / creLevel /20;
|
||||||
speciality.bonuses.push_back (bonus);
|
speciality.bonuses.push_back (bonus);
|
||||||
bonus.type = Bonus::STACKS_SPEED;
|
bonus.type = Bonus::STACKS_SPEED;
|
||||||
bonus.val = 1; //+1 speed
|
bonus.val = 1; //+1 speed
|
||||||
|
@ -2172,21 +2172,27 @@ void CGameState::calculatePaths(const CGHeroInstance *hero, CPathsInfo &out, int
|
|||||||
}
|
}
|
||||||
else if(tinfo->visitable)
|
else if(tinfo->visitable)
|
||||||
{
|
{
|
||||||
for(size_t ii = 0; ii < tinfo->visitableObjects.size(); ii++)
|
//hero is protected in Sanctuary
|
||||||
|
if(tinfo->visitableObjects.front()->ID == 80 && tinfo->visitableObjects.back()->ID == HEROI_TYPE && tinfo->visitableObjects.back()->tempOwner != hero->tempOwner)
|
||||||
|
node.accessible = CGPathNode::BLOCKED;
|
||||||
|
else
|
||||||
{
|
{
|
||||||
const CGObjectInstance * const obj = tinfo->visitableObjects[ii];
|
for(size_t ii = 0; ii < tinfo->visitableObjects.size(); ii++)
|
||||||
if(obj->getPassableness() & 1<<hero->tempOwner) //special object instance specific passableness flag - overwrites other accessibility flags
|
|
||||||
{
|
{
|
||||||
node.accessible = CGPathNode::ACCESSIBLE;
|
const CGObjectInstance * const obj = tinfo->visitableObjects[ii];
|
||||||
}
|
if(obj->getPassableness() & 1<<hero->tempOwner) //special object instance specific passableness flag - overwrites other accessibility flags
|
||||||
else if(obj->blockVisit)
|
{
|
||||||
{
|
node.accessible = CGPathNode::ACCESSIBLE;
|
||||||
node.accessible = CGPathNode::BLOCKVIS;
|
}
|
||||||
break;
|
else if(obj->blockVisit)
|
||||||
}
|
{
|
||||||
else if(obj->ID != EVENTI_TYPE) //pathfinder should ignore placed events
|
node.accessible = CGPathNode::BLOCKVIS;
|
||||||
{
|
break;
|
||||||
node.accessible = CGPathNode::VISITABLE;
|
}
|
||||||
|
else if(obj->ID != EVENTI_TYPE) //pathfinder should ignore placed events
|
||||||
|
{
|
||||||
|
node.accessible = CGPathNode::VISITABLE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user