Class: CyberarmEngine::BoundingBoxRenderer
- Inherits:
-
Object
- Object
- CyberarmEngine::BoundingBoxRenderer
- Defined in:
- lib/cyberarm_engine/opengl/renderer/bounding_box_renderer.rb
Instance Attribute Summary collapse
-
#bounding_boxes ⇒ Object
readonly
Returns the value of attribute bounding_boxes.
-
#vertex_count ⇒ Object
readonly
Returns the value of attribute vertex_count.
Instance Method Summary collapse
- #create_bounding_box(entity, color = nil) ⇒ Object
- #draw_bounding_box(bounding_box) ⇒ Object
- #draw_bounding_boxes ⇒ Object
-
#initialize ⇒ BoundingBoxRenderer
constructor
A new instance of BoundingBoxRenderer.
- #mesh_colors(color) ⇒ Object
- #mesh_normals ⇒ Object
- #mesh_vertices(box) ⇒ Object
- #render(entities) ⇒ Object
Constructor Details
#initialize ⇒ BoundingBoxRenderer
Returns a new instance of BoundingBoxRenderer.
5 6 7 8 |
# File 'lib/cyberarm_engine/opengl/renderer/bounding_box_renderer.rb', line 5 def initialize @bounding_boxes = {} @vertex_count = 0 end |
Instance Attribute Details
#bounding_boxes ⇒ Object (readonly)
Returns the value of attribute bounding_boxes.
3 4 5 |
# File 'lib/cyberarm_engine/opengl/renderer/bounding_box_renderer.rb', line 3 def bounding_boxes @bounding_boxes end |
#vertex_count ⇒ Object (readonly)
Returns the value of attribute vertex_count.
3 4 5 |
# File 'lib/cyberarm_engine/opengl/renderer/bounding_box_renderer.rb', line 3 def vertex_count @vertex_count end |
Instance Method Details
#create_bounding_box(entity, color = nil) ⇒ Object
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 |
# File 'lib/cyberarm_engine/opengl/renderer/bounding_box_renderer.rb', line 21 def create_bounding_box(entity, color = nil) color ||= entity.debug_color entity_id = entity.object_id if @bounding_boxes[entity_id] if @bounding_boxes[entity_id][:color] != color @bounding_boxes[entity_id][:colors] = mesh_colors(color).pack("f*") @bounding_boxes[entity_id][:color] = color return else return end end @bounding_boxes[entity_id] = { entity: entity, color: color, objects: [] } box = entity.normalize_bounding_box normals = mesh_normals colors = mesh_colors(color) vertices = mesh_vertices(box) @vertex_count += vertices.size @bounding_boxes[entity_id][:vertices_size] = vertices.size @bounding_boxes[entity_id][:vertices] = vertices.pack("f*") @bounding_boxes[entity_id][:normals] = normals.pack("f*") @bounding_boxes[entity_id][:colors] = colors.pack("f*") entity.model.objects.each do |mesh| data = {} box = mesh.bounding_box.normalize(entity) normals = mesh_normals colors = mesh_colors(mesh.debug_color) vertices = mesh_vertices(box) @vertex_count += vertices.size data[:vertices_size] = vertices.size data[:vertices] = vertices.pack("f*") data[:normals] = normals.pack("f*") data[:colors] = colors.pack("f*") @bounding_boxes[entity_id][:objects] << data end end |
#draw_bounding_box(bounding_box) ⇒ Object
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
# File 'lib/cyberarm_engine/opengl/renderer/bounding_box_renderer.rb', line 229 def draw_bounding_box(bounding_box) glEnableClientState(GL_VERTEX_ARRAY) glEnableClientState(GL_COLOR_ARRAY) glEnableClientState(GL_NORMAL_ARRAY) glVertexPointer(3, GL_FLOAT, 0, bounding_box[:vertices]) glColorPointer(3, GL_FLOAT, 0, bounding_box[:colors]) glNormalPointer(GL_FLOAT, 0, bounding_box[:normals]) glPolygonMode(GL_FRONT_AND_BACK, GL_LINE) glDisable(GL_LIGHTING) glDrawArrays(GL_TRIANGLES, 0, bounding_box[:vertices_size] / 3) glEnable(GL_LIGHTING) glPolygonMode(GL_FRONT_AND_BACK, GL_FILL) glDisableClientState(GL_VERTEX_ARRAY) glDisableClientState(GL_COLOR_ARRAY) glDisableClientState(GL_NORMAL_ARRAY) end |
#draw_bounding_boxes ⇒ Object
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
# File 'lib/cyberarm_engine/opengl/renderer/bounding_box_renderer.rb', line 213 def draw_bounding_boxes @bounding_boxes.each do |key, bounding_box| glPushMatrix glTranslatef( bounding_box[:entity].position.x, bounding_box[:entity].position.y, bounding_box[:entity].position.z ) draw_bounding_box(bounding_box) @bounding_boxes[key][:objects].each { |o| draw_bounding_box(o) } glPopMatrix end end |
#mesh_colors(color) ⇒ Object
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/cyberarm_engine/opengl/renderer/bounding_box_renderer.rb', line 120 def mesh_colors(color) [ color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue, color.red, color.green, color.blue ] end |
#mesh_normals ⇒ Object
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/cyberarm_engine/opengl/renderer/bounding_box_renderer.rb', line 73 def mesh_normals [ 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0, -1, 0, 0 ] end |
#mesh_vertices(box) ⇒ Object
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
# File 'lib/cyberarm_engine/opengl/renderer/bounding_box_renderer.rb', line 161 def mesh_vertices(box) [ box.min.x, box.max.y, box.max.z, box.min.x, box.max.y, box.min.z, box.max.x, box.max.y, box.min.z, box.min.x, box.max.y, box.max.z, box.max.x, box.max.y, box.max.z, box.max.x, box.max.y, box.min.z, box.max.x, box.min.y, box.min.z, box.max.x, box.min.y, box.max.z, box.min.x, box.min.y, box.max.z, box.max.x, box.min.y, box.min.z, box.min.x, box.min.y, box.min.z, box.min.x, box.min.y, box.max.z, box.min.x, box.max.y, box.max.z, box.min.x, box.max.y, box.min.z, box.min.x, box.min.y, box.min.z, box.min.x, box.min.y, box.max.z, box.min.x, box.min.y, box.min.z, box.min.x, box.max.y, box.max.z, box.max.x, box.max.y, box.max.z, box.max.x, box.max.y, box.min.z, box.max.x, box.min.y, box.min.z, box.max.x, box.min.y, box.max.z, box.max.x, box.min.y, box.min.z, box.max.x, box.max.y, box.max.z, box.min.x, box.max.y, box.max.z, box.max.x, box.max.y, box.max.z, box.max.x, box.min.y, box.max.z, box.min.x, box.max.y, box.max.z, box.max.x, box.min.y, box.max.z, box.min.x, box.min.y, box.max.z, box.max.x, box.min.y, box.min.z, box.min.x, box.min.y, box.min.z, box.min.x, box.max.y, box.min.z, box.max.x, box.min.y, box.min.z, box.min.x, box.max.y, box.min.z, box.max.x, box.max.y, box.min.z ] end |
#render(entities) ⇒ Object
10 11 12 13 14 15 16 17 18 19 |
# File 'lib/cyberarm_engine/opengl/renderer/bounding_box_renderer.rb', line 10 def render(entities) entities.each do |entity| create_bounding_box(entity, color = nil) draw_bounding_boxes end (@bounding_boxes.keys - entities.map { |e| e.object_id }).each do |key| @bounding_boxes.delete(key) end end |