forked from microsoft/AirSim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleFlightTest.hpp
87 lines (62 loc) · 2.71 KB
/
SimpleFlightTest.hpp
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#ifndef msr_AirLibUnitTests_SimpleFlightTest_hpp
#define msr_AirLibUnitTests_SimpleFlightTest_hpp
#include "vehicles/multirotor/MultiRotorParamsFactory.hpp"
#include "TestBase.hpp"
#include "physics/PhysicsWorld.hpp"
#include "physics/FastPhysicsEngine.hpp"
#include "vehicles/multirotor/api/MultirotorApiBase.hpp"
#include "common/SteppableClock.hpp"
#include "vehicles/multirotor/MultiRotorPhysicsBody.hpp"
namespace msr { namespace airlib {
class SimpleFlightTest : public TestBase
{
public:
virtual void run() override
{
auto clock = std::make_shared<SteppableClock>(3E-3f);
ClockFactory::get(clock);
SensorFactory sensor_factory;
std::unique_ptr<MultiRotorParams> params = MultiRotorParamsFactory::createConfig(
AirSimSettings::singleton().getVehicleSetting("SimpleFlight"),
std::make_shared<SensorFactory>());
auto api = params->createMultirotorApi();
std::unique_ptr<msr::airlib::Kinematics> kinematics;
std::unique_ptr<msr::airlib::Environment> environment;
Kinematics::State initial_kinematic_state = Kinematics::State::zero();;
initial_kinematic_state.pose = Pose();
kinematics.reset(new Kinematics(initial_kinematic_state));
Environment::State initial_environment;
initial_environment.position = initial_kinematic_state.pose.position;
initial_environment.geo_point = GeoPoint();
environment.reset(new Environment(initial_environment));
MultiRotorPhysicsBody vehicle(params.get(), api.get(), kinematics.get(), environment.get());
std::vector<UpdatableObject*> vehicles = { &vehicle };
std::unique_ptr<PhysicsEngineBase> physics_engine(new FastPhysicsEngine());
PhysicsWorld physics_world(std::move(physics_engine), vehicles,
static_cast<uint64_t>(clock->getStepSize() * 1E9));
testAssert(api != nullptr, "api was null");
std::string message;
testAssert(api->isReady(message), message);
clock->sleep_for(0.04f);
Utils::getSetMinLogLevel(true, 100);
api->enableApiControl(true);
api->armDisarm(true);
api->takeoff(10);
clock->sleep_for(2.0f);
Utils::getSetMinLogLevel(true);
api->moveToPosition(-5, -5, -5, 5, 1E3, DrivetrainType::MaxDegreeOfFreedom, YawMode(true, 0), -1, 0);
clock->sleep_for(2.0f);
while (true) {
clock->sleep_for(0.1f);
api->getStatusMessages(messages_);
for (const auto& status_message : messages_) {
std::cout << status_message << std::endl;
}
messages_.clear();
}
}
private:
std::vector<std::string> messages_;
};
}}
#endif