19 #include <core/sim/drone_controller.h> 20 #include <core_ui/sim/box2d_sandbox_window.h> 21 #include <core_ui/sim/camera_widget.h> 22 #include <core_ui/properties_widget.h> 23 #include <domains/drone_follow/domain.h> 24 #include <domains/drone_follow/scene.h> 31 #include <unordered_map> 50 SandboxWindow() { setDebugRendering(
false); }
54 void newScene()
override;
55 void singleStep()
override;
56 void updateUI()
override;
59 void setupVariables();
60 void setupSceneVariables();
61 void updateVariables();
65 unordered_map<string, core_ui::PropertyItem*> scene_variables_map_;
71 shared_ptr<const darwin::Genotype> genotype_;
72 unique_ptr<drone_follow::Scene> scene_;
73 unique_ptr<sim::DroneController> agent_;
74 unique_ptr<SceneUi> scene_ui_;
A basic, manually-updated property item.
Definition: properties_widget.h:70
Definition: domain_ui.cpp:24
Domain: Drone Follow.
Definition: domain.h:75
A reusable sandbox window for domains based on Box2D physics simulations.
Definition: box2d_sandbox_window.h:37