Darwin Neuroevolution Framework
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
camera.h
1 // Copyright The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <third_party/box2d/box2d.h>
18 
19 #include <vector>
20 using namespace std;
21 
22 namespace sim {
23 
25 struct Receptor {
26  b2Color color;
27  float depth = 0;
28 
29  Receptor() = default;
30 
31  explicit Receptor(const b2Color& color, float distance)
32  : color(color), depth(distance) {}
33 };
34 
39 class Camera {
40  public:
41  Camera(b2Body* body, float fov, float near, float far, int resolution);
42 
43  vector<Receptor> render() const;
44 
45  void setPosition(const b2Vec2& position) { position_ = position; }
46  const b2Vec2& position() const { return position_; }
47 
48  void setFilterId(const void* filter_id) { filter_id_ = filter_id; }
49 
50  b2Body* body() const { return body_; }
51 
52  float fov() const { return fov_; }
53  float near() const { return near_; }
54  float far() const { return far_; }
55  int resolution() const { return resolution_; }
56 
57  private:
58  Receptor castRay(const b2Vec2& ray_start,
59  const b2Vec2& ray_end,
60  float min_fraction) const;
61 
62  private:
63  b2Body* body_ = nullptr;
64 
65  // field of view (in degrees)
66  const float fov_ = 0;
67 
68  const float near_ = 0;
69  const float far_ = 0;
70 
71  const int resolution_ = 0;
72 
73  // the shadow attenuation factor
74  // [0=completely blocking light .. 1=no shadows]
75  float shadow_attenuation_ = 1.0f;
76 
77  bool render_specular_ = true;
78 
79  // technically this should be a property of the scene (world),
80  // but modeled here for convenience and extra flexibility
81  b2Color ambient_light_{ 0.2f, 0.2f, 0.2f };
82 
83  // camera position (relative to the parent body)
84  b2Vec2 position_{ 0, 0 };
85 
86  // optionally filter all the fixture with a particular filter ID
87  // (currently stored in fixture's user data - hack alert)
88  const void* filter_id_ = nullptr;
89 };
90 
91 } // namespace sim
STL namespace.
Raytraced rendering of a 2d world.
Definition: camera.h:39
Definition: accelerometer.cpp:19
A single color & depth "pixel".
Definition: camera.h:25