1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-20 01:11:46 +02:00
openrw/tests/test_weapon.cpp
Daniel Evans 87a04d9119 Added weapon scan for HITSCAN
WeaponScans contain data required to affect objects in the world with
weapon damage
2014-06-28 03:22:53 +01:00

26 lines
635 B
C++

#include <boost/test/unit_test.hpp>
#include "test_globals.hpp"
#include <objects/CharacterObject.hpp>
#include <data/WeaponData.hpp>
BOOST_AUTO_TEST_SUITE(WeaponTests)
BOOST_AUTO_TEST_CASE(TestWeaponScan)
{
{
// Test RADIUS scan
auto character = Global::get().e->createPedestrian(1, {0.f, 0.f, 0.f});
BOOST_REQUIRE( character != nullptr );
BOOST_REQUIRE( character->model != nullptr);
BOOST_REQUIRE( character->physObject != nullptr);
WeaponScan scan( 10.f, {0.f, 0.f, 10.f}, {0.f,0.f, -10.f} );
Global::get().e->doWeaponScan( scan );
BOOST_CHECK( character->mHealth < 100.f );
}
}
BOOST_AUTO_TEST_SUITE_END()