mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-21 18:02:43 +01:00
Unify Object Atomic/Clump handling
This commit is contained in:
parent
714e4b2041
commit
ff10f3769e
@ -118,6 +118,7 @@ ClumpPtr Clump::clone() const {
|
||||
auto newroot = rootframe_->cloneHierarchy();
|
||||
auto clump = std::make_shared<Clump>();
|
||||
clump->setFrame(newroot);
|
||||
clump->boundingRadius = boundingRadius;
|
||||
|
||||
// This isn't the most optimal implementation, but this code is likely
|
||||
// to be replaced soon.
|
||||
|
@ -227,7 +227,7 @@ CutsceneObject* GameWorld::createCutsceneObject(const uint16_t id,
|
||||
if (id == 0) {
|
||||
auto playerobj = pedestrianPool.find(state->playerObject);
|
||||
if (playerobj) {
|
||||
model = playerobj->getModel();
|
||||
model = playerobj->getClump();
|
||||
}
|
||||
}
|
||||
|
||||
@ -1050,7 +1050,7 @@ GameWorld::findOverlappingObjects(const glm::vec3 ¢er,
|
||||
auto checkObjects = [&](const auto& objects) {
|
||||
for (auto& p : objects) {
|
||||
const auto& object = p.second.get();
|
||||
auto objectBounds = object->getModel()->getBoundingRadius();
|
||||
auto objectBounds = object->getClump()->getBoundingRadius();
|
||||
if (glm::distance(center, object->getPosition()) <
|
||||
radius + objectBounds) {
|
||||
overlapping.push_back(object);
|
||||
|
@ -38,7 +38,7 @@ Garage::Garage(GameWorld* engine_, size_t id_, const glm::vec3& coord0,
|
||||
for (const auto& p : engine->instancePool.objects) {
|
||||
const auto inst = static_cast<InstanceObject*>(p.second.get());
|
||||
|
||||
if (!inst->getModel()) {
|
||||
if (!inst->getClump()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -16,7 +16,7 @@ Payphone::Payphone(GameWorld* engine_, size_t id_, const glm::vec2& coord)
|
||||
// Find payphone object, original game does this differently
|
||||
for (const auto& p : engine->instancePool.objects) {
|
||||
auto o = p.second.get();
|
||||
if (!o->getModel()) {
|
||||
if (!o->getClump()) {
|
||||
continue;
|
||||
}
|
||||
if (o->getModelInfo<BaseModelInfo>()->name != "phonebooth1") {
|
||||
|
@ -43,9 +43,8 @@ CharacterObject::CharacterObject(GameWorld* engine, const glm::vec3& pos,
|
||||
ai::CharacterController* controller)
|
||||
: GameObject(engine, pos, rot, modelinfo), controller(controller) {
|
||||
auto info = getModelInfo<PedModelInfo>();
|
||||
setClump(info->getModel()->clone());
|
||||
if (info->getModel()) {
|
||||
setModel(info->getModel());
|
||||
setModel(info->getModel()->clone());
|
||||
animator = std::make_unique<Animator>(getClump());
|
||||
|
||||
createActor();
|
||||
@ -70,7 +69,7 @@ void CharacterObject::createActor(const glm::vec2& size) {
|
||||
}
|
||||
|
||||
// Don't create anything without a valid model.
|
||||
if (getModel()) {
|
||||
if (getClump()) {
|
||||
btTransform tf;
|
||||
tf.setIdentity();
|
||||
tf.setOrigin(btVector3(position.x, position.y, position.z));
|
||||
|
@ -53,7 +53,7 @@ class GameWorld;
|
||||
* @brief The CharacterObject struct
|
||||
* Implements Character object behaviours.
|
||||
*/
|
||||
class CharacterObject final : public GameObject, public ClumpObject {
|
||||
class CharacterObject final : public GameObject {
|
||||
private:
|
||||
CharacterState currentState{};
|
||||
|
||||
|
@ -10,12 +10,11 @@ CutsceneObject::CutsceneObject(GameWorld *engine, const glm::vec3 &pos,
|
||||
BaseModelInfo *modelinfo)
|
||||
: GameObject(engine, pos, rot, modelinfo) {
|
||||
if (model) {
|
||||
setModel(model);
|
||||
setModel(model->clone());
|
||||
}
|
||||
else {
|
||||
setModel(getModelInfo<ClumpModelInfo>()->getModel());
|
||||
setModel(getModelInfo<ClumpModelInfo>()->getModel()->clone());
|
||||
}
|
||||
setClump(getModel()->clone());
|
||||
animator = std::make_unique<Animator>(getClump());
|
||||
}
|
||||
|
||||
|
@ -12,7 +12,7 @@ class ModelFrame;
|
||||
/**
|
||||
* @brief Object type used for cutscene animations.
|
||||
*/
|
||||
class CutsceneObject final : public GameObject, public ClumpObject {
|
||||
class CutsceneObject final : public GameObject {
|
||||
GameObject* _parent = nullptr;
|
||||
ModelFrame* _bone = nullptr;
|
||||
|
||||
|
@ -6,6 +6,9 @@
|
||||
|
||||
#include "engine/Animator.hpp"
|
||||
|
||||
const AtomicPtr GameObject::NullAtomic;
|
||||
const ClumpPtr GameObject::NullClump;
|
||||
|
||||
GameObject::~GameObject() {
|
||||
if (modelinfo_) {
|
||||
modelinfo_->removeReference();
|
||||
|
@ -2,6 +2,7 @@
|
||||
#define _RWENGINE_GAMEOBJECT_HPP_
|
||||
|
||||
#include <limits>
|
||||
#include <variant>
|
||||
|
||||
#include <glm/gtc/quaternion.hpp>
|
||||
#include <glm/vec3.hpp>
|
||||
@ -28,10 +29,11 @@ class GameObject {
|
||||
|
||||
BaseModelInfo* modelinfo_;
|
||||
|
||||
/**
|
||||
* Model used for rendering
|
||||
*/
|
||||
ClumpPtr model_ = nullptr;
|
||||
using Model = std::variant<AtomicPtr, ClumpPtr>;
|
||||
Model model_;
|
||||
|
||||
static const AtomicPtr NullAtomic;
|
||||
static const ClumpPtr NullClump;
|
||||
|
||||
protected:
|
||||
void changeModelInfo(BaseModelInfo* next) {
|
||||
@ -92,16 +94,30 @@ public:
|
||||
return static_cast<T*>(modelinfo_);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return The model used in rendering
|
||||
*/
|
||||
ClumpPtr getModel() const {
|
||||
const Model& getModel() const {
|
||||
return model_;
|
||||
}
|
||||
|
||||
/**
|
||||
* Changes the current model, used for re-dressing chars
|
||||
*/
|
||||
const AtomicPtr& getAtomic() const {
|
||||
if (auto atomic = std::get_if<AtomicPtr>(&model_))
|
||||
{
|
||||
return *atomic;
|
||||
}
|
||||
return NullAtomic;
|
||||
}
|
||||
|
||||
const ClumpPtr& getClump() const {
|
||||
if (auto clump = std::get_if<ClumpPtr>(&model_))
|
||||
{
|
||||
return *clump;
|
||||
}
|
||||
return NullClump;
|
||||
}
|
||||
|
||||
void setModel(const AtomicPtr& model) {
|
||||
model_ = model;
|
||||
}
|
||||
|
||||
void setModel(const ClumpPtr& model) {
|
||||
model_ = model;
|
||||
}
|
||||
@ -265,18 +281,4 @@ private:
|
||||
ObjectLifetime lifetime = GameObject::UnknownLifetime;
|
||||
};
|
||||
|
||||
class ClumpObject {
|
||||
ClumpPtr clump_;
|
||||
|
||||
protected:
|
||||
void setClump(const ClumpPtr& ptr) {
|
||||
clump_ = ptr;
|
||||
}
|
||||
|
||||
public:
|
||||
const ClumpPtr& getClump() const {
|
||||
return clump_;
|
||||
}
|
||||
};
|
||||
|
||||
#endif // __GAMEOBJECTS_HPP__
|
||||
|
@ -173,8 +173,7 @@ VehicleObject::VehicleObject(GameWorld* engine, const glm::vec3& pos,
|
||||
wheelsRotation.push_back(0.f);
|
||||
}
|
||||
|
||||
setModel(getVehicle()->getModel());
|
||||
setClump(getModelInfo<VehicleModelInfo>()->getModel()->clone());
|
||||
setModel(getVehicle()->getModel()->clone());
|
||||
setupModel();
|
||||
}
|
||||
|
||||
|
@ -39,7 +39,7 @@ struct btVehicleRaycaster;
|
||||
* @class VehicleObject
|
||||
* Implements Vehicle behaviours.
|
||||
*/
|
||||
class VehicleObject final : public GameObject, public ClumpObject {
|
||||
class VehicleObject final : public GameObject {
|
||||
private:
|
||||
float steerAngle{0.f};
|
||||
float throttle{0.f};
|
||||
|
@ -219,9 +219,9 @@ ScriptModel getModel(const ScriptArguments& args, ScriptModel model);
|
||||
|
||||
inline void clearSpaceForObject(const ScriptArguments& args,
|
||||
GameObject* object) {
|
||||
RW_ASSERT(object->getModel());
|
||||
RW_ASSERT(object->getClump());
|
||||
|
||||
auto radius = object->getModel()->getBoundingRadius();
|
||||
auto radius = object->getClump()->getBoundingRadius();
|
||||
|
||||
const auto& overlapping = args.getWorld()->findOverlappingObjects(
|
||||
object->getPosition(), radius);
|
||||
|
@ -10900,7 +10900,7 @@ void opcode_03b6(const ScriptArguments& args, ScriptVec3 coord, const ScriptFloa
|
||||
|
||||
for(auto& p : args.getWorld()->instancePool.objects) {
|
||||
auto o = p.second.get();
|
||||
if( !o->getModel() ) continue;
|
||||
if( !o->getClump() ) continue;
|
||||
if( o->getModelInfo<BaseModelInfo>()->name != oldmodel ) continue;
|
||||
float d = glm::distance(coord, o->getPosition());
|
||||
if( d < radius ) {
|
||||
|
@ -448,7 +448,7 @@ const ViewCamera& IngameState::getCamera(float alpha) {
|
||||
|
||||
if (target->type() == GameObject::Vehicle) {
|
||||
auto vehicle = static_cast<VehicleObject*>(target);
|
||||
auto model = vehicle->getModel();
|
||||
auto model = vehicle->getClump();
|
||||
auto maxDist = model->getBoundingRadius() * 2.f;
|
||||
viewDistance = viewDistance + maxDist;
|
||||
lookTargetPosition.z += (vehicle->info->handling.dimensions.z * 0.5f);
|
||||
|
@ -230,8 +230,8 @@ void ViewerWidget::showObject(quint16 item) {
|
||||
|
||||
RW_CHECK(_object != nullptr, "Dummy Object is null");
|
||||
|
||||
if (_object->getModel()) {
|
||||
auto objectRadius = _object->getModel()->getBoundingRadius();
|
||||
if (_object->getClump()) {
|
||||
auto objectRadius = _object->getClump()->getBoundingRadius();
|
||||
viewDistance = objectRadius * 2;
|
||||
viewAngles.x = glm::radians(-45.f);
|
||||
viewAngles.y = glm::radians(22.5f);
|
||||
|
@ -61,7 +61,7 @@ BOOST_AUTO_TEST_CASE(test_activities) {
|
||||
VehicleObject* vehicle = Global::get().e->createVehicle(
|
||||
90u, glm::vec3(10.f, 0.f, 0.f), glm::quat{1.0f,0.0f,0.0f,0.0f});
|
||||
BOOST_REQUIRE(vehicle != nullptr);
|
||||
BOOST_REQUIRE(vehicle->getModel() != nullptr);
|
||||
BOOST_REQUIRE(vehicle->getClump() != nullptr);
|
||||
|
||||
auto character = Global::get().e->createPedestrian(1, {0.f, 0.f, 0.f});
|
||||
BOOST_REQUIRE(character != nullptr);
|
||||
|
@ -30,7 +30,7 @@ BOOST_AUTO_TEST_CASE(vehicle_parts) {
|
||||
Global::get().e->createVehicle(90u, glm::vec3(), glm::quat{1.0f,0.0f,0.0f,0.0f});
|
||||
|
||||
BOOST_REQUIRE(vehicle);
|
||||
BOOST_REQUIRE(vehicle->getModel());
|
||||
BOOST_REQUIRE(vehicle->getClump());
|
||||
|
||||
VehicleObject::Part* part = vehicle->getPart("bonnet_dummy");
|
||||
|
||||
@ -53,7 +53,7 @@ BOOST_AUTO_TEST_CASE(vehicle_part_vis) {
|
||||
Global::get().e->createVehicle(90u, glm::vec3(), glm::quat{1.0f,0.0f,0.0f,0.0f});
|
||||
|
||||
BOOST_REQUIRE(vehicle);
|
||||
BOOST_REQUIRE(vehicle->getModel());
|
||||
BOOST_REQUIRE(vehicle->getClump());
|
||||
|
||||
VehicleObject::Part* bonnetpart = vehicle->getPart("bonnet_dummy");
|
||||
|
||||
|
@ -39,7 +39,7 @@ BOOST_AUTO_TEST_CASE(TestDoWeaponScan, DATA_TEST_PREDICATE) {
|
||||
// Test RADIUS scan
|
||||
auto character = Global::get().e->createPedestrian(1, {0.f, 0.f, 0.f});
|
||||
BOOST_REQUIRE(character != nullptr);
|
||||
BOOST_REQUIRE(character->getModel() != nullptr);
|
||||
BOOST_REQUIRE(character->getClump() != nullptr);
|
||||
BOOST_REQUIRE(character->physObject != nullptr);
|
||||
|
||||
WeaponScan scan(10.f, {0.f, 0.f, 10.f}, {0.f, 0.f, -10.f});
|
||||
|
Loading…
Reference in New Issue
Block a user