forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
creature_in_field_test.cpp
37 lines (34 loc) · 1.38 KB
/
creature_in_field_test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "cata_catch.h"
#include "map.h"
#include "map_helpers.h"
#include "monster.h"
#include "point.h"
#include "type_id.h"
#include "units.h"
static const vproto_id vehicle_prototype_handjack( "handjack" );
TEST_CASE( "creature_in_field", "[monster],[field]" )
{
static const tripoint target_location{ 5, 5, 0 };
clear_map();
map &here = get_map();
GIVEN( "An acid field" ) {
here.add_field( target_location, field_type_id( "fd_acid" ) );
WHEN( "a monster stands on it" ) {
monster &test_monster = spawn_test_monster( "mon_zombie", target_location );
REQUIRE( test_monster.get_hp() == test_monster.get_hp_max() );
THEN( "the monster takes damage" ) {
here.creature_in_field( test_monster );
CHECK( test_monster.get_hp() < test_monster.get_hp_max() );
}
}
WHEN( "A monster in a vehicle stands in it" ) {
here.add_vehicle( vehicle_prototype_handjack, target_location, 0_degrees );
monster &test_monster = spawn_test_monster( "mon_zombie", target_location );
REQUIRE( test_monster.get_hp() == test_monster.get_hp_max() );
THEN( "the monster doesn't take damage" ) {
here.creature_in_field( test_monster );
CHECK( test_monster.get_hp() == test_monster.get_hp_max() );
}
}
}
}