mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-01 16:32:31 +01:00
35 lines
874 B
C++
35 lines
874 B
C++
#include <boost/test/unit_test.hpp>
|
|
#include <glm/gtx/string_cast.hpp>
|
|
#include <objects/InstanceObject.hpp>
|
|
#include <render/ViewCamera.hpp>
|
|
#include "test_Globals.hpp"
|
|
|
|
BOOST_AUTO_TEST_SUITE(LifetimeTests)
|
|
|
|
#if RW_TEST_WITH_DATA
|
|
BOOST_AUTO_TEST_CASE(test_cleanup) {
|
|
GameObject* f =
|
|
Global::get().e->createInstance(1337, glm::vec3(0.f, 0.f, 1000.f));
|
|
auto id = f->getGameObjectID();
|
|
auto& objects = Global::get().e->instancePool.objects;
|
|
|
|
f->setLifetime(GameObject::TrafficLifetime);
|
|
|
|
{
|
|
auto search = objects.find(id);
|
|
BOOST_CHECK(search != objects.end());
|
|
}
|
|
|
|
ViewCamera testCamera;
|
|
testCamera.position = glm::vec3(0.f, 0.f, 0.f);
|
|
Global::get().e->cleanupTraffic(testCamera);
|
|
|
|
{
|
|
auto search = objects.find(id);
|
|
BOOST_CHECK(search != objects.end());
|
|
}
|
|
}
|
|
#endif
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|