|
|
|
@ -28,6 +28,55 @@ namespace MWMechanics
|
|
|
|
|
static const int GREETING_SHOULD_START = 4; //how many reaction intervals should pass before NPC can greet player
|
|
|
|
|
static const int GREETING_SHOULD_END = 10;
|
|
|
|
|
|
|
|
|
|
/// \brief This class holds the variables AiWander needs which are deleted if the package becomes inactive.
|
|
|
|
|
struct AiWanderStorage : AiTemporaryBase
|
|
|
|
|
{
|
|
|
|
|
// the z rotation angle (degrees) we want to reach
|
|
|
|
|
// used every frame when mRotate is true
|
|
|
|
|
float mTargetAngle;
|
|
|
|
|
bool mRotate;
|
|
|
|
|
float mReaction; // update some actions infrequently
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AiWander::GreetingState mSaidGreeting;
|
|
|
|
|
int mGreetingTimer;
|
|
|
|
|
|
|
|
|
|
// Cached current cell location
|
|
|
|
|
int mCellX;
|
|
|
|
|
int mCellY;
|
|
|
|
|
// Cell location multiplied by ESM::Land::REAL_SIZE
|
|
|
|
|
float mXCell;
|
|
|
|
|
float mYCell;
|
|
|
|
|
|
|
|
|
|
const MWWorld::CellStore* mCell; // for detecting cell change
|
|
|
|
|
|
|
|
|
|
// AiWander states
|
|
|
|
|
bool mChooseAction;
|
|
|
|
|
bool mIdleNow;
|
|
|
|
|
bool mMoveNow;
|
|
|
|
|
bool mWalking;
|
|
|
|
|
|
|
|
|
|
unsigned short mPlayedIdle;
|
|
|
|
|
|
|
|
|
|
AiWanderStorage():
|
|
|
|
|
mTargetAngle(0),
|
|
|
|
|
mRotate(false),
|
|
|
|
|
mReaction(0),
|
|
|
|
|
mSaidGreeting(AiWander::Greet_None),
|
|
|
|
|
mGreetingTimer(0),
|
|
|
|
|
mCellX(std::numeric_limits<int>::max()),
|
|
|
|
|
mCellY(std::numeric_limits<int>::max()),
|
|
|
|
|
mXCell(0),
|
|
|
|
|
mYCell(0),
|
|
|
|
|
mCell(NULL),
|
|
|
|
|
mChooseAction(true),
|
|
|
|
|
mIdleNow(false),
|
|
|
|
|
mMoveNow(false),
|
|
|
|
|
mWalking(false),
|
|
|
|
|
mPlayedIdle(0)
|
|
|
|
|
{};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
AiWander::AiWander(int distance, int duration, int timeOfDay, const std::vector<unsigned char>& idle, bool repeat):
|
|
|
|
|
mDistance(distance), mDuration(duration), mTimeOfDay(timeOfDay), mIdle(idle), mRepeat(repeat)
|
|
|
|
|
{
|
|
|
|
@ -55,13 +104,9 @@ namespace MWMechanics
|
|
|
|
|
mTimeOfDay = 0;
|
|
|
|
|
|
|
|
|
|
mStartTime = MWBase::Environment::get().getWorld()->getTimeStamp();
|
|
|
|
|
mPlayedIdle = 0;
|
|
|
|
|
|
|
|
|
|
mStoredAvailableNodes = false;
|
|
|
|
|
mChooseAction = true;
|
|
|
|
|
mIdleNow = false;
|
|
|
|
|
mMoveNow = false;
|
|
|
|
|
mWalking = false;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AiPackage * MWMechanics::AiWander::clone() const
|
|
|
|
@ -131,9 +176,14 @@ namespace MWMechanics
|
|
|
|
|
int& greetingTimer = storage.mGreetingTimer;
|
|
|
|
|
int& cachedCellX = storage.mCellX;
|
|
|
|
|
int& cachedCellY = storage.mCellY;
|
|
|
|
|
float& cachedCellXf = storage.mXCell;
|
|
|
|
|
float& cachedCellYf = storage.mYCell;
|
|
|
|
|
float& cachedCellXposition = storage.mXCell;
|
|
|
|
|
float& cachedCellYposition = storage.mYCell;
|
|
|
|
|
const MWWorld::CellStore*& currentCell = storage.mCell;
|
|
|
|
|
bool& chooseAction = storage.mChooseAction;
|
|
|
|
|
bool& idleNow = storage.mIdleNow;
|
|
|
|
|
bool& moveNow = storage.mMoveNow;
|
|
|
|
|
bool& walking = storage.mWalking;
|
|
|
|
|
short unsigned& playedIdle = storage.mPlayedIdle;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MWMechanics::CreatureStats& cStats = actor.getClass().getCreatureStats(actor);
|
|
|
|
@ -159,28 +209,28 @@ namespace MWMechanics
|
|
|
|
|
{
|
|
|
|
|
mDoorCheckDuration = 0; // restart timer
|
|
|
|
|
if(mDistance && // actor is not intended to be stationary
|
|
|
|
|
mIdleNow && // but is in idle
|
|
|
|
|
!mWalking && // FIXME: some actors are idle while walking
|
|
|
|
|
idleNow && // but is in idle
|
|
|
|
|
!walking && // FIXME: some actors are idle while walking
|
|
|
|
|
proximityToDoor(actor, MIN_DIST_TO_DOOR_SQUARED*1.6*1.6)) // NOTE: checks interior cells only
|
|
|
|
|
{
|
|
|
|
|
mIdleNow = false;
|
|
|
|
|
mMoveNow = true;
|
|
|
|
|
idleNow = false;
|
|
|
|
|
moveNow = true;
|
|
|
|
|
mTrimCurrentNode = false; // just in case
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Are we there yet?
|
|
|
|
|
if(mWalking &&
|
|
|
|
|
if(walking &&
|
|
|
|
|
mPathFinder.checkPathCompleted(pos.pos[0], pos.pos[1], pos.pos[2]))
|
|
|
|
|
{
|
|
|
|
|
stopWalking(actor);
|
|
|
|
|
mMoveNow = false;
|
|
|
|
|
mWalking = false;
|
|
|
|
|
mChooseAction = true;
|
|
|
|
|
moveNow = false;
|
|
|
|
|
walking = false;
|
|
|
|
|
chooseAction = true;
|
|
|
|
|
mHasReturnPosition = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(mWalking) // have not yet reached the destination
|
|
|
|
|
if(walking) // have not yet reached the destination
|
|
|
|
|
{
|
|
|
|
|
// turn towards the next point in mPath
|
|
|
|
|
zTurn(actor, Ogre::Degree(mPathFinder.getZAngleToNext(pos.pos[0], pos.pos[1])));
|
|
|
|
@ -197,8 +247,8 @@ namespace MWMechanics
|
|
|
|
|
trimAllowedNodes(mAllowedNodes, mPathFinder);
|
|
|
|
|
mObstacleCheck.clear();
|
|
|
|
|
mPathFinder.clearPath();
|
|
|
|
|
mWalking = false;
|
|
|
|
|
mMoveNow = true;
|
|
|
|
|
walking = false;
|
|
|
|
|
moveNow = true;
|
|
|
|
|
}
|
|
|
|
|
else // probably walking into another NPC
|
|
|
|
|
{
|
|
|
|
@ -219,9 +269,9 @@ namespace MWMechanics
|
|
|
|
|
mObstacleCheck.clear();
|
|
|
|
|
|
|
|
|
|
stopWalking(actor);
|
|
|
|
|
mMoveNow = false;
|
|
|
|
|
mWalking = false;
|
|
|
|
|
mChooseAction = true;
|
|
|
|
|
moveNow = false;
|
|
|
|
|
walking = false;
|
|
|
|
|
chooseAction = true;
|
|
|
|
|
}
|
|
|
|
|
//#endif
|
|
|
|
|
}
|
|
|
|
@ -295,12 +345,12 @@ namespace MWMechanics
|
|
|
|
|
// destinations within the allowed set of pathgrid points (nodes).
|
|
|
|
|
if(mDistance)
|
|
|
|
|
{
|
|
|
|
|
cachedCellXf = 0;
|
|
|
|
|
cachedCellYf = 0;
|
|
|
|
|
cachedCellXposition = 0;
|
|
|
|
|
cachedCellYposition = 0;
|
|
|
|
|
if(cell->isExterior())
|
|
|
|
|
{
|
|
|
|
|
cachedCellXf = cachedCellX * ESM::Land::REAL_SIZE;
|
|
|
|
|
cachedCellYf = cachedCellYf * ESM::Land::REAL_SIZE;
|
|
|
|
|
cachedCellXposition = cachedCellX * ESM::Land::REAL_SIZE;
|
|
|
|
|
cachedCellYposition = cachedCellY * ESM::Land::REAL_SIZE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// FIXME: There might be a bug here. The allowed node points are
|
|
|
|
@ -310,8 +360,8 @@ namespace MWMechanics
|
|
|
|
|
//
|
|
|
|
|
// convert npcPos to local (i.e. cell) co-ordinates
|
|
|
|
|
Ogre::Vector3 npcPos(pos.pos);
|
|
|
|
|
npcPos[0] = npcPos[0] - cachedCellXf;
|
|
|
|
|
npcPos[1] = npcPos[1] - cachedCellYf;
|
|
|
|
|
npcPos[0] = npcPos[0] - cachedCellXposition;
|
|
|
|
|
npcPos[1] = npcPos[1] - cachedCellYposition;
|
|
|
|
|
|
|
|
|
|
// mAllowedNodes for this actor with pathgrid point indexes based on mDistance
|
|
|
|
|
// NOTE: mPoints and mAllowedNodes are in local co-ordinates
|
|
|
|
@ -356,8 +406,8 @@ namespace MWMechanics
|
|
|
|
|
mHasReturnPosition = false;
|
|
|
|
|
if (mDistance == 0 && mHasReturnPosition && Ogre::Vector3(pos.pos).squaredDistance(mReturnPosition) > 20*20)
|
|
|
|
|
{
|
|
|
|
|
mChooseAction = false;
|
|
|
|
|
mIdleNow = false;
|
|
|
|
|
chooseAction = false;
|
|
|
|
|
idleNow = false;
|
|
|
|
|
|
|
|
|
|
if (!mPathFinder.isPathConstructed())
|
|
|
|
|
{
|
|
|
|
@ -379,30 +429,30 @@ namespace MWMechanics
|
|
|
|
|
|
|
|
|
|
if(mPathFinder.isPathConstructed())
|
|
|
|
|
{
|
|
|
|
|
mMoveNow = false;
|
|
|
|
|
mWalking = true;
|
|
|
|
|
moveNow = false;
|
|
|
|
|
walking = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(mChooseAction)
|
|
|
|
|
if(chooseAction)
|
|
|
|
|
{
|
|
|
|
|
mPlayedIdle = 0;
|
|
|
|
|
getRandomIdle(); // NOTE: sets mPlayedIdle with a random selection
|
|
|
|
|
playedIdle = 0;
|
|
|
|
|
getRandomIdle(playedIdle); // NOTE: sets mPlayedIdle with a random selection
|
|
|
|
|
|
|
|
|
|
if(!mPlayedIdle && mDistance)
|
|
|
|
|
if(!playedIdle && mDistance)
|
|
|
|
|
{
|
|
|
|
|
mChooseAction = false;
|
|
|
|
|
mMoveNow = true;
|
|
|
|
|
chooseAction = false;
|
|
|
|
|
moveNow = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Play idle animation and recreate vanilla (broken?) behavior of resetting start time of AIWander:
|
|
|
|
|
MWWorld::TimeStamp currentTime = world->getTimeStamp();
|
|
|
|
|
mStartTime = currentTime;
|
|
|
|
|
playIdle(actor, mPlayedIdle);
|
|
|
|
|
mChooseAction = false;
|
|
|
|
|
mIdleNow = true;
|
|
|
|
|
playIdle(actor, playedIdle);
|
|
|
|
|
chooseAction = false;
|
|
|
|
|
idleNow = true;
|
|
|
|
|
|
|
|
|
|
// Play idle voiced dialogue entries randomly
|
|
|
|
|
int hello = cStats.getAiSetting(CreatureStats::AI_Hello).getModified();
|
|
|
|
@ -426,7 +476,7 @@ namespace MWMechanics
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Allow interrupting a walking actor to trigger a greeting
|
|
|
|
|
if(mIdleNow || mWalking)
|
|
|
|
|
if(idleNow || walking)
|
|
|
|
|
{
|
|
|
|
|
// Play a random voice greeting if the player gets too close
|
|
|
|
|
int hello = cStats.getAiSetting(CreatureStats::AI_Hello).getModified();
|
|
|
|
@ -460,23 +510,21 @@ namespace MWMechanics
|
|
|
|
|
{
|
|
|
|
|
greetingTimer++;
|
|
|
|
|
|
|
|
|
|
if(mWalking)
|
|
|
|
|
if(walking)
|
|
|
|
|
{
|
|
|
|
|
stopWalking(actor);
|
|
|
|
|
mMoveNow = false;
|
|
|
|
|
mWalking = false;
|
|
|
|
|
moveNow = false;
|
|
|
|
|
walking = false;
|
|
|
|
|
mObstacleCheck.clear();
|
|
|
|
|
mIdleNow = true;
|
|
|
|
|
getRandomIdle();
|
|
|
|
|
idleNow = true;
|
|
|
|
|
getRandomIdle(playedIdle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!rotate)
|
|
|
|
|
{
|
|
|
|
|
Ogre::Vector3 dir = playerPos - actorPos;
|
|
|
|
|
float length = dir.length();
|
|
|
|
|
|
|
|
|
|
float faceAngle = Ogre::Radian(Ogre::Math::ACos(dir.y / length) *
|
|
|
|
|
((Ogre::Math::ASin(dir.x / length).valueRadians()>0)?1.0:-1.0)).valueDegrees();
|
|
|
|
|
float faceAngle = Ogre::Math::ATan2(dir.x,dir.y).valueDegrees();
|
|
|
|
|
float actorAngle = actor.getRefData().getBaseNode()->getOrientation().getRoll().valueDegrees();
|
|
|
|
|
// an attempt at reducing the turning animation glitch
|
|
|
|
|
if(abs(abs(faceAngle) - abs(actorAngle)) >= 5) // TODO: is there a better way?
|
|
|
|
@ -503,15 +551,15 @@ namespace MWMechanics
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check if idle animation finished
|
|
|
|
|
if(!checkIdle(actor, mPlayedIdle) && (playerDistSqr > helloDistance*helloDistance || greetingState == MWMechanics::AiWander::Greet_Done))
|
|
|
|
|
if(!checkIdle(actor, playedIdle) && (playerDistSqr > helloDistance*helloDistance || greetingState == MWMechanics::AiWander::Greet_Done))
|
|
|
|
|
{
|
|
|
|
|
mPlayedIdle = 0;
|
|
|
|
|
mIdleNow = false;
|
|
|
|
|
mChooseAction = true;
|
|
|
|
|
playedIdle = 0;
|
|
|
|
|
idleNow = false;
|
|
|
|
|
chooseAction = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(mMoveNow && mDistance)
|
|
|
|
|
if(moveNow && mDistance)
|
|
|
|
|
{
|
|
|
|
|
// Construct a new path if there isn't one
|
|
|
|
|
if(!mPathFinder.isPathConstructed())
|
|
|
|
@ -525,8 +573,8 @@ namespace MWMechanics
|
|
|
|
|
|
|
|
|
|
// convert dest to use world co-ordinates
|
|
|
|
|
ESM::Pathgrid::Point dest;
|
|
|
|
|
dest.mX = destNodePos[0] + cachedCellXf;
|
|
|
|
|
dest.mY = destNodePos[1] + cachedCellYf;
|
|
|
|
|
dest.mX = destNodePos[0] + cachedCellXposition;
|
|
|
|
|
dest.mY = destNodePos[1] + cachedCellYposition;
|
|
|
|
|
dest.mZ = destNodePos[2];
|
|
|
|
|
|
|
|
|
|
// actor position is already in world co-ordinates
|
|
|
|
@ -557,8 +605,8 @@ namespace MWMechanics
|
|
|
|
|
mAllowedNodes.push_back(mCurrentNode);
|
|
|
|
|
mCurrentNode = temp;
|
|
|
|
|
|
|
|
|
|
mMoveNow = false;
|
|
|
|
|
mWalking = true;
|
|
|
|
|
moveNow = false;
|
|
|
|
|
walking = true;
|
|
|
|
|
}
|
|
|
|
|
// Choose a different node and delete this one from possible nodes because it is uncreachable:
|
|
|
|
|
else
|
|
|
|
@ -657,7 +705,7 @@ namespace MWMechanics
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AiWander::getRandomIdle()
|
|
|
|
|
void AiWander::getRandomIdle(short unsigned& playedIdle)
|
|
|
|
|
{
|
|
|
|
|
unsigned short idleRoll = 0;
|
|
|
|
|
|
|
|
|
@ -670,7 +718,7 @@ namespace MWMechanics
|
|
|
|
|
unsigned short randSelect = (int)(rand() / ((double)RAND_MAX + 1) * int(100 / fIdleChanceMultiplier));
|
|
|
|
|
if(randSelect < idleChance && randSelect > idleRoll)
|
|
|
|
|
{
|
|
|
|
|
mPlayedIdle = counter+2;
|
|
|
|
|
playedIdle = counter+2;
|
|
|
|
|
idleRoll = randSelect;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|