2015-09-13 01:48:13 +02:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
2016-10-03 11:24:13 +02:00
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-13 01:48:13 +02:00
|
|
|
|
|
|
|
#ifndef BLADERUNNER_ACTOR_WALK_H
|
|
|
|
#define BLADERUNNER_ACTOR_WALK_H
|
|
|
|
|
|
|
|
#include "bladerunner/vector.h"
|
2017-04-01 08:56:30 +02:00
|
|
|
#include "common/hashmap.h"
|
2015-09-13 01:48:13 +02:00
|
|
|
|
2016-09-10 18:16:17 +02:00
|
|
|
namespace BladeRunner {
|
|
|
|
|
|
|
|
class BladeRunnerEngine;
|
|
|
|
|
2016-10-03 12:38:43 +02:00
|
|
|
class ActorWalk {
|
2016-09-10 18:16:17 +02:00
|
|
|
BladeRunnerEngine *_vm;
|
|
|
|
|
|
|
|
private:
|
|
|
|
int _walking;
|
|
|
|
int _running;
|
|
|
|
Vector3 _destination;
|
2017-04-01 08:56:30 +02:00
|
|
|
Vector3 _originalDestination;
|
2016-09-10 18:16:17 +02:00
|
|
|
Vector3 _current;
|
|
|
|
Vector3 _next;
|
|
|
|
int _facing;
|
2017-04-01 08:56:30 +02:00
|
|
|
Common::HashMap<int, bool> _nearActors;
|
2016-09-10 18:16:17 +02:00
|
|
|
int _status;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ActorWalk(BladeRunnerEngine *vm);
|
|
|
|
~ActorWalk();
|
2016-10-04 02:21:08 +02:00
|
|
|
|
2017-04-01 08:56:30 +02:00
|
|
|
bool setup(int actorId, bool run, const Vector3 &from, const Vector3 &to, bool unk1, bool *arrived);
|
|
|
|
void getCurrentPosition(int actorId, Vector3 *pos, int *facing) const;
|
2016-09-10 18:16:17 +02:00
|
|
|
bool tick(int actorId, float stepDistance, bool flag);
|
|
|
|
|
2017-04-01 08:56:30 +02:00
|
|
|
bool isWalking() const { return _walking; }
|
|
|
|
bool isRunning() const { return _running; }
|
2016-09-10 18:16:17 +02:00
|
|
|
|
2017-04-01 08:56:30 +02:00
|
|
|
bool isXYZEmpty(float x, float y, float z, int actorId) const;
|
|
|
|
bool findNearestEmptyPosition(int actorId, const Vector3 &from, int distance, Vector3 &out) const;
|
|
|
|
|
|
|
|
void stop(int actorId, bool immediately, int combatAnimationMode, int animationMode);
|
|
|
|
|
|
|
|
private:
|
|
|
|
int nextOnPath(int actorId, const Vector3 &from, const Vector3 &to, Vector3 &next) const;
|
2016-09-10 18:16:17 +02:00
|
|
|
|
2017-04-01 08:56:30 +02:00
|
|
|
bool findNearestEmptyPositionToOriginalDestination(int actorId, Vector3 &out) const;
|
2016-10-04 02:21:08 +02:00
|
|
|
|
2017-04-01 08:56:30 +02:00
|
|
|
bool addNearActors(int skipActorId);
|
2016-10-04 02:21:08 +02:00
|
|
|
|
2017-04-01 08:56:30 +02:00
|
|
|
void obstaclesAddNearActors(int actorId) const;
|
|
|
|
void obstaclesRestore() const;
|
2016-09-10 18:16:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace BladeRunner
|
2015-09-13 01:48:13 +02:00
|
|
|
|
|
|
|
#endif
|