ruby_rpg 0.0.5 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (606) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +43 -21
  3. data/THIRD_PARTY_NOTICES.md +61 -0
  4. data/bin/build.bash +13 -13
  5. data/bin/import +54 -44
  6. data/ext/gl_native/extconf.rb +20 -0
  7. data/ext/gl_native/gl_native.c +563 -0
  8. data/ext/glfw_native/extconf.rb +18 -0
  9. data/ext/glfw_native/glfw_native.c +451 -0
  10. data/lib/engine/assets/Bangers-Regular.ttf +0 -0
  11. data/lib/engine/assets/Caveat-Regular.ttf +0 -0
  12. data/lib/engine/assets/JetBrainsMono-Regular.ttf +0 -0
  13. data/lib/engine/assets/NotoSerif-Regular.ttf +0 -0
  14. data/lib/engine/assets/OpenSans-Regular.ttf +0 -0
  15. data/lib/engine/assets/Oswald-Regular.ttf +0 -0
  16. data/lib/engine/assets/PressStart2P-Regular.ttf +0 -0
  17. data/lib/engine/assets/_imported/Bangers-Regular.json +1 -0
  18. data/lib/engine/assets/_imported/Bangers-Regular.png +0 -0
  19. data/lib/engine/assets/_imported/Caveat-Regular.json +1 -0
  20. data/lib/engine/assets/_imported/Caveat-Regular.png +0 -0
  21. data/lib/engine/assets/_imported/JetBrainsMono-Regular.json +1 -0
  22. data/lib/engine/assets/_imported/JetBrainsMono-Regular.png +0 -0
  23. data/lib/engine/assets/_imported/NotoSerif-Regular.json +1 -0
  24. data/lib/engine/assets/_imported/NotoSerif-Regular.png +0 -0
  25. data/lib/engine/assets/_imported/OpenSans-Regular.json +1 -0
  26. data/lib/engine/assets/_imported/OpenSans-Regular.png +0 -0
  27. data/lib/engine/assets/_imported/Oswald-Regular.json +1 -0
  28. data/lib/engine/assets/_imported/Oswald-Regular.png +0 -0
  29. data/lib/engine/assets/_imported/PressStart2P-Regular.json +1 -0
  30. data/lib/engine/assets/_imported/PressStart2P-Regular.png +0 -0
  31. data/lib/engine/assets/_imported/cube.index_data +36 -0
  32. data/lib/engine/assets/_imported/cube.vertex_data +720 -0
  33. data/lib/engine/assets/_imported/plane.index_data +6 -0
  34. data/lib/engine/assets/_imported/plane.vertex_data +120 -0
  35. data/lib/engine/assets/_imported/sphere.index_data +2880 -0
  36. data/lib/engine/assets/_imported/sphere.vertex_data +57600 -0
  37. data/lib/engine/assets/cube.obj +46 -0
  38. data/lib/engine/assets/plane.obj +16 -0
  39. data/lib/engine/assets/sphere.obj +2488 -0
  40. data/lib/engine/autoloader.rb +11 -11
  41. data/lib/engine/camera.rb +12 -12
  42. data/lib/engine/component.rb +65 -63
  43. data/lib/engine/components/audio_source.rb +43 -41
  44. data/lib/engine/components/direction_light.rb +102 -23
  45. data/lib/engine/components/orthographic_camera.rb +60 -54
  46. data/lib/engine/components/perspective_camera.rb +76 -53
  47. data/lib/engine/components/point_light.rb +80 -24
  48. data/lib/engine/components/renderers/font_renderer.rb +19 -0
  49. data/lib/engine/components/renderers/font_renderer_base.rb +134 -0
  50. data/lib/engine/components/renderers/mesh_renderer.rb +41 -0
  51. data/lib/engine/components/renderers/sprite_renderer.rb +46 -0
  52. data/lib/engine/components/spot_light.rb +90 -0
  53. data/lib/engine/components/sprite_animator.rb +42 -0
  54. data/lib/engine/components/ui/flex/layout.rb +94 -0
  55. data/lib/engine/components/ui/flex/pack_layout.rb +65 -0
  56. data/lib/engine/components/ui/flex/stretch_layout.rb +52 -0
  57. data/lib/engine/components/ui/flex.rb +60 -0
  58. data/lib/engine/components/ui/font_renderer.rb +57 -0
  59. data/lib/engine/components/ui/rect.rb +117 -0
  60. data/lib/engine/components/ui/sprite_clickbox.rb +47 -0
  61. data/lib/engine/components/ui/sprite_renderer.rb +117 -0
  62. data/lib/engine/compute_shader.rb +14 -93
  63. data/lib/engine/compute_texture.rb +13 -0
  64. data/lib/engine/cursor.rb +43 -43
  65. data/lib/engine/debugging.rb +41 -41
  66. data/lib/engine/engine.rb +127 -131
  67. data/lib/engine/font.rb +127 -74
  68. data/lib/engine/game_object.rb +306 -234
  69. data/lib/engine/gl.rb +439 -0
  70. data/lib/engine/glfw.rb +151 -0
  71. data/lib/engine/importers/font_importer.rb +69 -69
  72. data/lib/engine/importers/obj_file.rb +244 -244
  73. data/lib/engine/importers/obj_importer.rb +33 -33
  74. data/lib/engine/input.rb +212 -105
  75. data/lib/engine/material.rb +214 -79
  76. data/lib/engine/matrix_helpers.rb +38 -0
  77. data/lib/engine/mesh.rb +68 -43
  78. data/lib/engine/metal/compute_shader.rb +118 -0
  79. data/lib/engine/metal/compute_texture.rb +176 -0
  80. data/lib/engine/metal/device.rb +98 -0
  81. data/lib/engine/metal/metal_bindings.rb +126 -0
  82. data/lib/engine/opengl/compute_shader.rb +77 -0
  83. data/lib/engine/opengl/compute_texture.rb +31 -0
  84. data/lib/engine/path.rb +92 -92
  85. data/lib/engine/physics/collision.rb +12 -12
  86. data/lib/engine/physics/components/cube_collider.rb +6 -6
  87. data/lib/engine/physics/components/rigidbody.rb +106 -103
  88. data/lib/engine/physics/components/sphere_collider.rb +103 -93
  89. data/lib/engine/physics/physics_resolver.rb +49 -37
  90. data/lib/engine/polygon_mesh.rb +45 -45
  91. data/lib/engine/quaternion.rb +234 -234
  92. data/lib/engine/rendering/cubemap_shadow_map_array.rb +77 -0
  93. data/lib/engine/rendering/gpu_timer.rb +68 -0
  94. data/lib/engine/rendering/instance_renderer.rb +232 -153
  95. data/lib/engine/rendering/post_processing/bloom_effect.rb +87 -0
  96. data/lib/engine/rendering/post_processing/depth_debug_effect.rb +17 -0
  97. data/lib/engine/rendering/post_processing/depth_of_field_effect.rb +52 -0
  98. data/lib/engine/rendering/post_processing/effect.rb +11 -0
  99. data/lib/engine/rendering/post_processing/post_processing_effect.rb +86 -0
  100. data/lib/engine/rendering/post_processing/single_pass_effect.rb +19 -0
  101. data/lib/engine/rendering/post_processing/ssao_effect.rb +182 -0
  102. data/lib/engine/rendering/post_processing/ssr_effect.rb +89 -0
  103. data/lib/engine/rendering/post_processing/tint_effect.rb +18 -0
  104. data/lib/engine/rendering/render_pipeline.rb +267 -35
  105. data/lib/engine/rendering/render_texture.rb +118 -0
  106. data/lib/engine/rendering/screen_quad.rb +64 -0
  107. data/lib/engine/rendering/shadow_map_array.rb +72 -0
  108. data/lib/engine/rendering/skybox_cubemap.rb +119 -0
  109. data/lib/engine/rendering/skybox_renderer.rb +64 -0
  110. data/lib/engine/rendering/ui/stencil_manager.rb +69 -0
  111. data/lib/engine/screenshoter.rb +34 -34
  112. data/lib/engine/serialization/graph_serializer.rb +74 -0
  113. data/lib/engine/serialization/object_serializer.rb +98 -0
  114. data/lib/engine/serialization/serializable.rb +78 -0
  115. data/lib/engine/serialization/yaml_persistence.rb +45 -0
  116. data/lib/engine/shader.rb +215 -119
  117. data/lib/engine/shaders/colour_frag.glsl +16 -8
  118. data/lib/engine/shaders/colour_vertex.glsl +20 -13
  119. data/lib/engine/shaders/fullscreen_frag.glsl +11 -0
  120. data/lib/engine/shaders/fullscreen_vertex.glsl +12 -0
  121. data/lib/engine/shaders/instanced_sprite_frag.glsl +21 -0
  122. data/lib/engine/shaders/{skybox_vert.glsl → instanced_sprite_vertex.glsl} +15 -14
  123. data/lib/engine/shaders/lighting/directional_light.glsl +49 -0
  124. data/lib/engine/shaders/lighting/lighting.glsl +33 -0
  125. data/lib/engine/shaders/lighting/lighting_common.glsl +13 -0
  126. data/lib/engine/shaders/lighting/point_light.glsl +46 -0
  127. data/lib/engine/shaders/lighting/spot_light.glsl +80 -0
  128. data/lib/engine/shaders/mesh_frag.glsl +53 -102
  129. data/lib/engine/shaders/mesh_vertex.glsl +25 -25
  130. data/lib/engine/shaders/point_shadow_frag.glsl +12 -0
  131. data/lib/engine/shaders/point_shadow_vertex.glsl +15 -0
  132. data/lib/engine/shaders/post_process/bloom_blur_frag.glsl +25 -0
  133. data/lib/engine/shaders/post_process/bloom_combine_frag.glsl +19 -0
  134. data/lib/engine/shaders/post_process/bloom_threshold_frag.glsl +19 -0
  135. data/lib/engine/shaders/post_process/debug_normals_frag.glsl +21 -0
  136. data/lib/engine/shaders/post_process/depth_debug_frag.glsl +17 -0
  137. data/lib/engine/shaders/post_process/dof_blur_frag.glsl +52 -0
  138. data/lib/engine/shaders/post_process/skybox_frag.glsl +29 -0
  139. data/lib/engine/shaders/post_process/ssao/blur_frag.glsl +50 -0
  140. data/lib/engine/shaders/post_process/ssao/combine_frag.glsl +15 -0
  141. data/lib/engine/shaders/post_process/ssao/frag.glsl +99 -0
  142. data/lib/engine/shaders/post_process/ssr/combine_frag.glsl +16 -0
  143. data/lib/engine/shaders/post_process/ssr/frag.glsl +118 -0
  144. data/lib/engine/shaders/post_process/tint_frag.glsl +14 -0
  145. data/lib/engine/shaders/shadow_frag.glsl +6 -0
  146. data/lib/engine/shaders/shadow_vertex.glsl +11 -0
  147. data/lib/engine/shaders/skybox_cubemap_frag.glsl +46 -0
  148. data/lib/engine/shaders/sprite_frag.glsl +17 -17
  149. data/lib/engine/shaders/sprite_vertex.glsl +15 -15
  150. data/lib/engine/shaders/text_frag.glsl +15 -15
  151. data/lib/engine/shaders/text_vertex.glsl +31 -31
  152. data/lib/engine/shaders/ui_sprite_frag.glsl +15 -15
  153. data/lib/engine/shaders/ui_sprite_vertex.glsl +15 -15
  154. data/lib/engine/shaders/vertex_lit_frag.glsl +33 -89
  155. data/lib/engine/shaders/vertex_lit_vertex.glsl +28 -28
  156. data/lib/engine/standard_meshes/quad_mesh.rb +26 -0
  157. data/lib/engine/standard_objects/cube.rb +23 -0
  158. data/lib/engine/standard_objects/default_material.rb +20 -0
  159. data/lib/engine/standard_objects/plane.rb +23 -0
  160. data/lib/engine/standard_objects/sphere.rb +23 -0
  161. data/lib/engine/tangent_calculator.rb +42 -42
  162. data/lib/engine/texture.rb +62 -53
  163. data/lib/engine/ui/rect.rb +16 -0
  164. data/lib/engine/video_mode.rb +37 -37
  165. data/lib/engine/window.rb +126 -126
  166. data/lib/ruby_rpg.rb +116 -58
  167. data/vendor/glew-2.2.0-win32/LICENSE.txt +73 -0
  168. data/vendor/glew-2.2.0-win32/bin/Release/x64/glew32.dll +0 -0
  169. data/vendor/glew-2.2.0-win32/include/GL/glew.h +26427 -0
  170. data/vendor/glew-2.2.0-win32/lib/Release/x64/glew32.lib +0 -0
  171. data/{glfw-3.3.9.bin.MACOS → vendor/glfw-3.3.9.bin.MACOS}/lib-arm64/libglfw.3.dylib +0 -0
  172. data/{glfw-3.3.9.bin.MACOS → vendor/glfw-3.4.bin.WIN64}/LICENSE.md +23 -23
  173. metadata +144 -463
  174. data/glfw-3.3.9.bin.MACOS/README.md +0 -5
  175. data/glfw-3.3.9.bin.MACOS/docs/html/bc_s.png +0 -0
  176. data/glfw-3.3.9.bin.MACOS/docs/html/bc_sd.png +0 -0
  177. data/glfw-3.3.9.bin.MACOS/docs/html/build_8dox.html +0 -81
  178. data/glfw-3.3.9.bin.MACOS/docs/html/build_guide.html +0 -199
  179. data/glfw-3.3.9.bin.MACOS/docs/html/closed.png +0 -0
  180. data/glfw-3.3.9.bin.MACOS/docs/html/compat_8dox.html +0 -81
  181. data/glfw-3.3.9.bin.MACOS/docs/html/compat_guide.html +0 -153
  182. data/glfw-3.3.9.bin.MACOS/docs/html/compile_8dox.html +0 -81
  183. data/glfw-3.3.9.bin.MACOS/docs/html/compile_guide.html +0 -223
  184. data/glfw-3.3.9.bin.MACOS/docs/html/context_8dox.html +0 -81
  185. data/glfw-3.3.9.bin.MACOS/docs/html/context_guide.html +0 -259
  186. data/glfw-3.3.9.bin.MACOS/docs/html/deprecated.html +0 -88
  187. data/glfw-3.3.9.bin.MACOS/docs/html/dir_08423ce7729c4554356a7de7171ba263.html +0 -85
  188. data/glfw-3.3.9.bin.MACOS/docs/html/dir_2dcebcdf14b42e92a6ed85c61bda6b9d.html +0 -93
  189. data/glfw-3.3.9.bin.MACOS/docs/html/dir_62ce056722ee97c199075aa1d6eca309.html +0 -95
  190. data/glfw-3.3.9.bin.MACOS/docs/html/dir_dddf4cf62655095a666cf715de3a31a2.html +0 -91
  191. data/glfw-3.3.9.bin.MACOS/docs/html/doc.svg +0 -12
  192. data/glfw-3.3.9.bin.MACOS/docs/html/docd.svg +0 -12
  193. data/glfw-3.3.9.bin.MACOS/docs/html/doxygen.css +0 -1685
  194. data/glfw-3.3.9.bin.MACOS/docs/html/doxygen.svg +0 -28
  195. data/glfw-3.3.9.bin.MACOS/docs/html/dynsections.js +0 -192
  196. data/glfw-3.3.9.bin.MACOS/docs/html/extra.css +0 -1
  197. data/glfw-3.3.9.bin.MACOS/docs/html/files.html +0 -91
  198. data/glfw-3.3.9.bin.MACOS/docs/html/folderclosed.svg +0 -11
  199. data/glfw-3.3.9.bin.MACOS/docs/html/folderclosedd.svg +0 -11
  200. data/glfw-3.3.9.bin.MACOS/docs/html/folderopen.svg +0 -17
  201. data/glfw-3.3.9.bin.MACOS/docs/html/folderopend.svg +0 -12
  202. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3_8h.html +0 -1661
  203. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3_8h_source.html +0 -1175
  204. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3native_8h.html +0 -167
  205. data/glfw-3.3.9.bin.MACOS/docs/html/glfw3native_8h_source.html +0 -303
  206. data/glfw-3.3.9.bin.MACOS/docs/html/group__buttons.html +0 -282
  207. data/glfw-3.3.9.bin.MACOS/docs/html/group__context.html +0 -304
  208. data/glfw-3.3.9.bin.MACOS/docs/html/group__errors.html +0 -304
  209. data/glfw-3.3.9.bin.MACOS/docs/html/group__gamepad__axes.html +0 -202
  210. data/glfw-3.3.9.bin.MACOS/docs/html/group__gamepad__buttons.html +0 -410
  211. data/glfw-3.3.9.bin.MACOS/docs/html/group__hat__state.html +0 -234
  212. data/glfw-3.3.9.bin.MACOS/docs/html/group__init.html +0 -570
  213. data/glfw-3.3.9.bin.MACOS/docs/html/group__input.html +0 -2255
  214. data/glfw-3.3.9.bin.MACOS/docs/html/group__joysticks.html +0 -362
  215. data/glfw-3.3.9.bin.MACOS/docs/html/group__keys.html +0 -2034
  216. data/glfw-3.3.9.bin.MACOS/docs/html/group__mods.html +0 -198
  217. data/glfw-3.3.9.bin.MACOS/docs/html/group__monitor.html +0 -848
  218. data/glfw-3.3.9.bin.MACOS/docs/html/group__native.html +0 -812
  219. data/glfw-3.3.9.bin.MACOS/docs/html/group__shapes.html +0 -198
  220. data/glfw-3.3.9.bin.MACOS/docs/html/group__vulkan.html +0 -359
  221. data/glfw-3.3.9.bin.MACOS/docs/html/group__window.html +0 -3434
  222. data/glfw-3.3.9.bin.MACOS/docs/html/index.html +0 -100
  223. data/glfw-3.3.9.bin.MACOS/docs/html/input_8dox.html +0 -81
  224. data/glfw-3.3.9.bin.MACOS/docs/html/input_guide.html +0 -570
  225. data/glfw-3.3.9.bin.MACOS/docs/html/internal_8dox.html +0 -81
  226. data/glfw-3.3.9.bin.MACOS/docs/html/internals_guide.html +0 -132
  227. data/glfw-3.3.9.bin.MACOS/docs/html/intro_8dox.html +0 -81
  228. data/glfw-3.3.9.bin.MACOS/docs/html/intro_guide.html +0 -351
  229. data/glfw-3.3.9.bin.MACOS/docs/html/jquery.js +0 -34
  230. data/glfw-3.3.9.bin.MACOS/docs/html/main_8dox.html +0 -81
  231. data/glfw-3.3.9.bin.MACOS/docs/html/menu.js +0 -136
  232. data/glfw-3.3.9.bin.MACOS/docs/html/menudata.js +0 -29
  233. data/glfw-3.3.9.bin.MACOS/docs/html/minus.svg +0 -8
  234. data/glfw-3.3.9.bin.MACOS/docs/html/minusd.svg +0 -8
  235. data/glfw-3.3.9.bin.MACOS/docs/html/monitor_8dox.html +0 -81
  236. data/glfw-3.3.9.bin.MACOS/docs/html/monitor_guide.html +0 -229
  237. data/glfw-3.3.9.bin.MACOS/docs/html/moving_8dox.html +0 -81
  238. data/glfw-3.3.9.bin.MACOS/docs/html/moving_guide.html +0 -374
  239. data/glfw-3.3.9.bin.MACOS/docs/html/nav_f.png +0 -0
  240. data/glfw-3.3.9.bin.MACOS/docs/html/nav_fd.png +0 -0
  241. data/glfw-3.3.9.bin.MACOS/docs/html/nav_g.png +0 -0
  242. data/glfw-3.3.9.bin.MACOS/docs/html/nav_h.png +0 -0
  243. data/glfw-3.3.9.bin.MACOS/docs/html/nav_hd.png +0 -0
  244. data/glfw-3.3.9.bin.MACOS/docs/html/news.html +0 -634
  245. data/glfw-3.3.9.bin.MACOS/docs/html/news_8dox.html +0 -81
  246. data/glfw-3.3.9.bin.MACOS/docs/html/open.png +0 -0
  247. data/glfw-3.3.9.bin.MACOS/docs/html/pages.html +0 -99
  248. data/glfw-3.3.9.bin.MACOS/docs/html/plus.svg +0 -9
  249. data/glfw-3.3.9.bin.MACOS/docs/html/plusd.svg +0 -9
  250. data/glfw-3.3.9.bin.MACOS/docs/html/quick_8dox.html +0 -81
  251. data/glfw-3.3.9.bin.MACOS/docs/html/quick_guide.html +0 -397
  252. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_0.js +0 -5
  253. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_1.js +0 -4
  254. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_10.js +0 -65
  255. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_11.js +0 -26
  256. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_12.js +0 -44
  257. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_13.js +0 -34
  258. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_14.js +0 -12
  259. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_15.js +0 -52
  260. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_16.js +0 -69
  261. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_17.js +0 -51
  262. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_18.js +0 -14
  263. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_19.js +0 -36
  264. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_1a.js +0 -98
  265. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_1b.js +0 -12
  266. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_2.js +0 -6
  267. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_3.js +0 -9
  268. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_4.js +0 -57
  269. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_5.js +0 -22
  270. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_6.js +0 -103
  271. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_7.js +0 -23
  272. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_8.js +0 -35
  273. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_9.js +0 -63
  274. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_a.js +0 -505
  275. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_b.js +0 -24
  276. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_c.js +0 -50
  277. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_d.js +0 -17
  278. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_e.js +0 -12
  279. data/glfw-3.3.9.bin.MACOS/docs/html/search/all_f.js +0 -35
  280. data/glfw-3.3.9.bin.MACOS/docs/html/search/classes_0.js +0 -7
  281. data/glfw-3.3.9.bin.MACOS/docs/html/search/close.svg +0 -18
  282. data/glfw-3.3.9.bin.MACOS/docs/html/search/defines_0.js +0 -34
  283. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_0.js +0 -4
  284. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_1.js +0 -6
  285. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_2.js +0 -5
  286. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_3.js +0 -6
  287. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_4.js +0 -6
  288. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_5.js +0 -4
  289. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_6.js +0 -4
  290. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_7.js +0 -4
  291. data/glfw-3.3.9.bin.MACOS/docs/html/search/files_8.js +0 -4
  292. data/glfw-3.3.9.bin.MACOS/docs/html/search/functions_0.js +0 -146
  293. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_0.js +0 -6
  294. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_1.js +0 -4
  295. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_10.js +0 -4
  296. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_2.js +0 -6
  297. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_3.js +0 -5
  298. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_4.js +0 -4
  299. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_5.js +0 -5
  300. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_6.js +0 -4
  301. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_7.js +0 -5
  302. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_8.js +0 -5
  303. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_9.js +0 -6
  304. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_a.js +0 -6
  305. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_b.js +0 -4
  306. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_c.js +0 -4
  307. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_d.js +0 -7
  308. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_e.js +0 -4
  309. data/glfw-3.3.9.bin.MACOS/docs/html/search/groups_f.js +0 -5
  310. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag.svg +0 -24
  311. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag_d.svg +0 -24
  312. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag_sel.svg +0 -31
  313. data/glfw-3.3.9.bin.MACOS/docs/html/search/mag_seld.svg +0 -31
  314. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_0.js +0 -4
  315. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_1.js +0 -4
  316. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_10.js +0 -4
  317. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_2.js +0 -5
  318. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_3.js +0 -4
  319. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_4.js +0 -6
  320. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_5.js +0 -4
  321. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_6.js +0 -4
  322. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_7.js +0 -7
  323. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_8.js +0 -6
  324. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_9.js +0 -4
  325. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_a.js +0 -5
  326. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_b.js +0 -5
  327. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_c.js +0 -4
  328. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_d.js +0 -6
  329. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_e.js +0 -6
  330. data/glfw-3.3.9.bin.MACOS/docs/html/search/pages_f.js +0 -4
  331. data/glfw-3.3.9.bin.MACOS/docs/html/search/search.css +0 -291
  332. data/glfw-3.3.9.bin.MACOS/docs/html/search/search.js +0 -840
  333. data/glfw-3.3.9.bin.MACOS/docs/html/search/searchdata.js +0 -39
  334. data/glfw-3.3.9.bin.MACOS/docs/html/search/typedefs_0.js +0 -32
  335. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_0.js +0 -4
  336. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_1.js +0 -6
  337. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_2.js +0 -5
  338. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_3.js +0 -4
  339. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_4.js +0 -4
  340. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_5.js +0 -6
  341. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_6.js +0 -4
  342. data/glfw-3.3.9.bin.MACOS/docs/html/search/variables_7.js +0 -4
  343. data/glfw-3.3.9.bin.MACOS/docs/html/spaces.svg +0 -877
  344. data/glfw-3.3.9.bin.MACOS/docs/html/splitbar.png +0 -0
  345. data/glfw-3.3.9.bin.MACOS/docs/html/splitbard.png +0 -0
  346. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wgamepadstate.html +0 -134
  347. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wgammaramp.html +0 -170
  348. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wimage.html +0 -151
  349. data/glfw-3.3.9.bin.MACOS/docs/html/struct_g_l_f_wvidmode.html +0 -204
  350. data/glfw-3.3.9.bin.MACOS/docs/html/sync_off.png +0 -0
  351. data/glfw-3.3.9.bin.MACOS/docs/html/sync_on.png +0 -0
  352. data/glfw-3.3.9.bin.MACOS/docs/html/tab_a.png +0 -0
  353. data/glfw-3.3.9.bin.MACOS/docs/html/tab_ad.png +0 -0
  354. data/glfw-3.3.9.bin.MACOS/docs/html/tab_b.png +0 -0
  355. data/glfw-3.3.9.bin.MACOS/docs/html/tab_bd.png +0 -0
  356. data/glfw-3.3.9.bin.MACOS/docs/html/tab_h.png +0 -0
  357. data/glfw-3.3.9.bin.MACOS/docs/html/tab_hd.png +0 -0
  358. data/glfw-3.3.9.bin.MACOS/docs/html/tab_s.png +0 -0
  359. data/glfw-3.3.9.bin.MACOS/docs/html/tab_sd.png +0 -0
  360. data/glfw-3.3.9.bin.MACOS/docs/html/tabs.css +0 -1
  361. data/glfw-3.3.9.bin.MACOS/docs/html/vulkan_8dox.html +0 -81
  362. data/glfw-3.3.9.bin.MACOS/docs/html/vulkan_guide.html +0 -196
  363. data/glfw-3.3.9.bin.MACOS/docs/html/window_8dox.html +0 -81
  364. data/glfw-3.3.9.bin.MACOS/docs/html/window_guide.html +0 -763
  365. data/glfw-3.3.9.bin.MACOS/include/GLFW/glfw3.h +0 -5932
  366. data/glfw-3.3.9.bin.MACOS/include/GLFW/glfw3native.h +0 -634
  367. data/glfw-3.3.9.bin.MACOS/lib-arm64/libglfw3.a +0 -0
  368. data/glfw-3.3.9.bin.MACOS/lib-universal/libglfw.3.dylib +0 -0
  369. data/glfw-3.3.9.bin.MACOS/lib-universal/libglfw3.a +0 -0
  370. data/glfw-3.3.9.bin.MACOS/lib-x86_64/libglfw.3.dylib +0 -0
  371. data/glfw-3.3.9.bin.MACOS/lib-x86_64/libglfw3.a +0 -0
  372. data/glfw-3.4.bin.WIN64/README.md +0 -70
  373. data/glfw-3.4.bin.WIN64/docs/html/bc_s.png +0 -0
  374. data/glfw-3.4.bin.WIN64/docs/html/bc_sd.png +0 -0
  375. data/glfw-3.4.bin.WIN64/docs/html/build_8md.html +0 -81
  376. data/glfw-3.4.bin.WIN64/docs/html/build_guide.html +0 -217
  377. data/glfw-3.4.bin.WIN64/docs/html/closed.png +0 -0
  378. data/glfw-3.4.bin.WIN64/docs/html/compat_8md.html +0 -81
  379. data/glfw-3.4.bin.WIN64/docs/html/compat_guide.html +0 -156
  380. data/glfw-3.4.bin.WIN64/docs/html/compile_8md.html +0 -81
  381. data/glfw-3.4.bin.WIN64/docs/html/compile_guide.html +0 -219
  382. data/glfw-3.4.bin.WIN64/docs/html/context_8md.html +0 -81
  383. data/glfw-3.4.bin.WIN64/docs/html/context_guide.html +0 -258
  384. data/glfw-3.4.bin.WIN64/docs/html/deprecated.html +0 -88
  385. data/glfw-3.4.bin.WIN64/docs/html/dir_13577e2d8b9423099662de029791bd7d.html +0 -93
  386. data/glfw-3.4.bin.WIN64/docs/html/dir_7f92719a7fe62e5b064f87d7a3c220b1.html +0 -95
  387. data/glfw-3.4.bin.WIN64/docs/html/dir_a788ef6c2b1e5b367804e0b6ccfd6f11.html +0 -85
  388. data/glfw-3.4.bin.WIN64/docs/html/dir_b11153cd0f4fd04a7564cc166f482635.html +0 -91
  389. data/glfw-3.4.bin.WIN64/docs/html/doc.svg +0 -12
  390. data/glfw-3.4.bin.WIN64/docs/html/docd.svg +0 -12
  391. data/glfw-3.4.bin.WIN64/docs/html/doxygen.css +0 -1685
  392. data/glfw-3.4.bin.WIN64/docs/html/doxygen.svg +0 -28
  393. data/glfw-3.4.bin.WIN64/docs/html/dynsections.js +0 -192
  394. data/glfw-3.4.bin.WIN64/docs/html/extra.css +0 -2
  395. data/glfw-3.4.bin.WIN64/docs/html/files.html +0 -91
  396. data/glfw-3.4.bin.WIN64/docs/html/folderclosed.svg +0 -11
  397. data/glfw-3.4.bin.WIN64/docs/html/folderclosedd.svg +0 -11
  398. data/glfw-3.4.bin.WIN64/docs/html/folderopen.svg +0 -17
  399. data/glfw-3.4.bin.WIN64/docs/html/folderopend.svg +0 -12
  400. data/glfw-3.4.bin.WIN64/docs/html/glfw3_8h.html +0 -1910
  401. data/glfw-3.4.bin.WIN64/docs/html/glfw3_8h_source.html +0 -1260
  402. data/glfw-3.4.bin.WIN64/docs/html/glfw3native_8h.html +0 -170
  403. data/glfw-3.4.bin.WIN64/docs/html/glfw3native_8h_source.html +0 -306
  404. data/glfw-3.4.bin.WIN64/docs/html/group__buttons.html +0 -282
  405. data/glfw-3.4.bin.WIN64/docs/html/group__context.html +0 -304
  406. data/glfw-3.4.bin.WIN64/docs/html/group__errors.html +0 -384
  407. data/glfw-3.4.bin.WIN64/docs/html/group__gamepad__axes.html +0 -202
  408. data/glfw-3.4.bin.WIN64/docs/html/group__gamepad__buttons.html +0 -410
  409. data/glfw-3.4.bin.WIN64/docs/html/group__hat__state.html +0 -234
  410. data/glfw-3.4.bin.WIN64/docs/html/group__init.html +0 -1015
  411. data/glfw-3.4.bin.WIN64/docs/html/group__input.html +0 -2285
  412. data/glfw-3.4.bin.WIN64/docs/html/group__joysticks.html +0 -362
  413. data/glfw-3.4.bin.WIN64/docs/html/group__keys.html +0 -2034
  414. data/glfw-3.4.bin.WIN64/docs/html/group__mods.html +0 -198
  415. data/glfw-3.4.bin.WIN64/docs/html/group__monitor.html +0 -849
  416. data/glfw-3.4.bin.WIN64/docs/html/group__native.html +0 -837
  417. data/glfw-3.4.bin.WIN64/docs/html/group__shapes.html +0 -337
  418. data/glfw-3.4.bin.WIN64/docs/html/group__vulkan.html +0 -361
  419. data/glfw-3.4.bin.WIN64/docs/html/group__window.html +0 -3608
  420. data/glfw-3.4.bin.WIN64/docs/html/index.html +0 -100
  421. data/glfw-3.4.bin.WIN64/docs/html/input_8md.html +0 -81
  422. data/glfw-3.4.bin.WIN64/docs/html/input_guide.html +0 -576
  423. data/glfw-3.4.bin.WIN64/docs/html/internal_8md.html +0 -81
  424. data/glfw-3.4.bin.WIN64/docs/html/internals_guide.html +0 -135
  425. data/glfw-3.4.bin.WIN64/docs/html/intro_8md.html +0 -81
  426. data/glfw-3.4.bin.WIN64/docs/html/intro_guide.html +0 -429
  427. data/glfw-3.4.bin.WIN64/docs/html/jquery.js +0 -34
  428. data/glfw-3.4.bin.WIN64/docs/html/main_8md.html +0 -81
  429. data/glfw-3.4.bin.WIN64/docs/html/menu.js +0 -136
  430. data/glfw-3.4.bin.WIN64/docs/html/menudata.js +0 -30
  431. data/glfw-3.4.bin.WIN64/docs/html/minus.svg +0 -8
  432. data/glfw-3.4.bin.WIN64/docs/html/minusd.svg +0 -8
  433. data/glfw-3.4.bin.WIN64/docs/html/monitor_8md.html +0 -81
  434. data/glfw-3.4.bin.WIN64/docs/html/monitor_guide.html +0 -228
  435. data/glfw-3.4.bin.WIN64/docs/html/moving_8md.html +0 -81
  436. data/glfw-3.4.bin.WIN64/docs/html/moving_guide.html +0 -360
  437. data/glfw-3.4.bin.WIN64/docs/html/nav_f.png +0 -0
  438. data/glfw-3.4.bin.WIN64/docs/html/nav_fd.png +0 -0
  439. data/glfw-3.4.bin.WIN64/docs/html/nav_g.png +0 -0
  440. data/glfw-3.4.bin.WIN64/docs/html/nav_h.png +0 -0
  441. data/glfw-3.4.bin.WIN64/docs/html/nav_hd.png +0 -0
  442. data/glfw-3.4.bin.WIN64/docs/html/news.html +0 -336
  443. data/glfw-3.4.bin.WIN64/docs/html/news_8md.html +0 -81
  444. data/glfw-3.4.bin.WIN64/docs/html/open.png +0 -0
  445. data/glfw-3.4.bin.WIN64/docs/html/pages.html +0 -99
  446. data/glfw-3.4.bin.WIN64/docs/html/plus.svg +0 -9
  447. data/glfw-3.4.bin.WIN64/docs/html/plusd.svg +0 -9
  448. data/glfw-3.4.bin.WIN64/docs/html/quick_8md.html +0 -81
  449. data/glfw-3.4.bin.WIN64/docs/html/quick_guide.html +0 -406
  450. data/glfw-3.4.bin.WIN64/docs/html/search/all_0.js +0 -4
  451. data/glfw-3.4.bin.WIN64/docs/html/search/all_1.js +0 -4
  452. data/glfw-3.4.bin.WIN64/docs/html/search/all_10.js +0 -13
  453. data/glfw-3.4.bin.WIN64/docs/html/search/all_11.js +0 -11
  454. data/glfw-3.4.bin.WIN64/docs/html/search/all_12.js +0 -26
  455. data/glfw-3.4.bin.WIN64/docs/html/search/all_13.js +0 -51
  456. data/glfw-3.4.bin.WIN64/docs/html/search/all_14.js +0 -22
  457. data/glfw-3.4.bin.WIN64/docs/html/search/all_15.js +0 -35
  458. data/glfw-3.4.bin.WIN64/docs/html/search/all_16.js +0 -29
  459. data/glfw-3.4.bin.WIN64/docs/html/search/all_17.js +0 -8
  460. data/glfw-3.4.bin.WIN64/docs/html/search/all_18.js +0 -44
  461. data/glfw-3.4.bin.WIN64/docs/html/search/all_19.js +0 -60
  462. data/glfw-3.4.bin.WIN64/docs/html/search/all_1a.js +0 -39
  463. data/glfw-3.4.bin.WIN64/docs/html/search/all_1b.js +0 -8
  464. data/glfw-3.4.bin.WIN64/docs/html/search/all_1c.js +0 -32
  465. data/glfw-3.4.bin.WIN64/docs/html/search/all_1d.js +0 -84
  466. data/glfw-3.4.bin.WIN64/docs/html/search/all_1e.js +0 -13
  467. data/glfw-3.4.bin.WIN64/docs/html/search/all_1f.js +0 -4
  468. data/glfw-3.4.bin.WIN64/docs/html/search/all_2.js +0 -5
  469. data/glfw-3.4.bin.WIN64/docs/html/search/all_3.js +0 -4
  470. data/glfw-3.4.bin.WIN64/docs/html/search/all_4.js +0 -4
  471. data/glfw-3.4.bin.WIN64/docs/html/search/all_5.js +0 -4
  472. data/glfw-3.4.bin.WIN64/docs/html/search/all_6.js +0 -4
  473. data/glfw-3.4.bin.WIN64/docs/html/search/all_7.js +0 -58
  474. data/glfw-3.4.bin.WIN64/docs/html/search/all_8.js +0 -21
  475. data/glfw-3.4.bin.WIN64/docs/html/search/all_9.js +0 -82
  476. data/glfw-3.4.bin.WIN64/docs/html/search/all_a.js +0 -20
  477. data/glfw-3.4.bin.WIN64/docs/html/search/all_b.js +0 -26
  478. data/glfw-3.4.bin.WIN64/docs/html/search/all_c.js +0 -35
  479. data/glfw-3.4.bin.WIN64/docs/html/search/all_d.js +0 -555
  480. data/glfw-3.4.bin.WIN64/docs/html/search/all_e.js +0 -23
  481. data/glfw-3.4.bin.WIN64/docs/html/search/all_f.js +0 -40
  482. data/glfw-3.4.bin.WIN64/docs/html/search/classes_0.js +0 -8
  483. data/glfw-3.4.bin.WIN64/docs/html/search/close.svg +0 -18
  484. data/glfw-3.4.bin.WIN64/docs/html/search/defines_0.js +0 -43
  485. data/glfw-3.4.bin.WIN64/docs/html/search/files_0.js +0 -4
  486. data/glfw-3.4.bin.WIN64/docs/html/search/files_1.js +0 -6
  487. data/glfw-3.4.bin.WIN64/docs/html/search/files_2.js +0 -5
  488. data/glfw-3.4.bin.WIN64/docs/html/search/files_3.js +0 -6
  489. data/glfw-3.4.bin.WIN64/docs/html/search/files_4.js +0 -6
  490. data/glfw-3.4.bin.WIN64/docs/html/search/files_5.js +0 -4
  491. data/glfw-3.4.bin.WIN64/docs/html/search/files_6.js +0 -4
  492. data/glfw-3.4.bin.WIN64/docs/html/search/files_7.js +0 -4
  493. data/glfw-3.4.bin.WIN64/docs/html/search/files_8.js +0 -4
  494. data/glfw-3.4.bin.WIN64/docs/html/search/functions_0.js +0 -152
  495. data/glfw-3.4.bin.WIN64/docs/html/search/groups_0.js +0 -6
  496. data/glfw-3.4.bin.WIN64/docs/html/search/groups_1.js +0 -4
  497. data/glfw-3.4.bin.WIN64/docs/html/search/groups_10.js +0 -4
  498. data/glfw-3.4.bin.WIN64/docs/html/search/groups_2.js +0 -6
  499. data/glfw-3.4.bin.WIN64/docs/html/search/groups_3.js +0 -5
  500. data/glfw-3.4.bin.WIN64/docs/html/search/groups_4.js +0 -4
  501. data/glfw-3.4.bin.WIN64/docs/html/search/groups_5.js +0 -5
  502. data/glfw-3.4.bin.WIN64/docs/html/search/groups_6.js +0 -4
  503. data/glfw-3.4.bin.WIN64/docs/html/search/groups_7.js +0 -5
  504. data/glfw-3.4.bin.WIN64/docs/html/search/groups_8.js +0 -5
  505. data/glfw-3.4.bin.WIN64/docs/html/search/groups_9.js +0 -6
  506. data/glfw-3.4.bin.WIN64/docs/html/search/groups_a.js +0 -6
  507. data/glfw-3.4.bin.WIN64/docs/html/search/groups_b.js +0 -4
  508. data/glfw-3.4.bin.WIN64/docs/html/search/groups_c.js +0 -4
  509. data/glfw-3.4.bin.WIN64/docs/html/search/groups_d.js +0 -7
  510. data/glfw-3.4.bin.WIN64/docs/html/search/groups_e.js +0 -4
  511. data/glfw-3.4.bin.WIN64/docs/html/search/groups_f.js +0 -5
  512. data/glfw-3.4.bin.WIN64/docs/html/search/mag.svg +0 -24
  513. data/glfw-3.4.bin.WIN64/docs/html/search/mag_d.svg +0 -24
  514. data/glfw-3.4.bin.WIN64/docs/html/search/mag_sel.svg +0 -31
  515. data/glfw-3.4.bin.WIN64/docs/html/search/mag_seld.svg +0 -31
  516. data/glfw-3.4.bin.WIN64/docs/html/search/pages_0.js +0 -4
  517. data/glfw-3.4.bin.WIN64/docs/html/search/pages_1.js +0 -5
  518. data/glfw-3.4.bin.WIN64/docs/html/search/pages_10.js +0 -5
  519. data/glfw-3.4.bin.WIN64/docs/html/search/pages_11.js +0 -4
  520. data/glfw-3.4.bin.WIN64/docs/html/search/pages_2.js +0 -4
  521. data/glfw-3.4.bin.WIN64/docs/html/search/pages_3.js +0 -5
  522. data/glfw-3.4.bin.WIN64/docs/html/search/pages_4.js +0 -4
  523. data/glfw-3.4.bin.WIN64/docs/html/search/pages_5.js +0 -6
  524. data/glfw-3.4.bin.WIN64/docs/html/search/pages_6.js +0 -4
  525. data/glfw-3.4.bin.WIN64/docs/html/search/pages_7.js +0 -5
  526. data/glfw-3.4.bin.WIN64/docs/html/search/pages_8.js +0 -7
  527. data/glfw-3.4.bin.WIN64/docs/html/search/pages_9.js +0 -7
  528. data/glfw-3.4.bin.WIN64/docs/html/search/pages_a.js +0 -4
  529. data/glfw-3.4.bin.WIN64/docs/html/search/pages_b.js +0 -5
  530. data/glfw-3.4.bin.WIN64/docs/html/search/pages_c.js +0 -4
  531. data/glfw-3.4.bin.WIN64/docs/html/search/pages_d.js +0 -4
  532. data/glfw-3.4.bin.WIN64/docs/html/search/pages_e.js +0 -6
  533. data/glfw-3.4.bin.WIN64/docs/html/search/pages_f.js +0 -6
  534. data/glfw-3.4.bin.WIN64/docs/html/search/search.css +0 -291
  535. data/glfw-3.4.bin.WIN64/docs/html/search/search.js +0 -840
  536. data/glfw-3.4.bin.WIN64/docs/html/search/searchdata.js +0 -39
  537. data/glfw-3.4.bin.WIN64/docs/html/search/typedefs_0.js +0 -36
  538. data/glfw-3.4.bin.WIN64/docs/html/search/variables_0.js +0 -5
  539. data/glfw-3.4.bin.WIN64/docs/html/search/variables_1.js +0 -6
  540. data/glfw-3.4.bin.WIN64/docs/html/search/variables_2.js +0 -4
  541. data/glfw-3.4.bin.WIN64/docs/html/search/variables_3.js +0 -5
  542. data/glfw-3.4.bin.WIN64/docs/html/search/variables_4.js +0 -4
  543. data/glfw-3.4.bin.WIN64/docs/html/search/variables_5.js +0 -4
  544. data/glfw-3.4.bin.WIN64/docs/html/search/variables_6.js +0 -7
  545. data/glfw-3.4.bin.WIN64/docs/html/search/variables_7.js +0 -4
  546. data/glfw-3.4.bin.WIN64/docs/html/search/variables_8.js +0 -4
  547. data/glfw-3.4.bin.WIN64/docs/html/search/variables_9.js +0 -4
  548. data/glfw-3.4.bin.WIN64/docs/html/spaces.svg +0 -877
  549. data/glfw-3.4.bin.WIN64/docs/html/splitbar.png +0 -0
  550. data/glfw-3.4.bin.WIN64/docs/html/splitbard.png +0 -0
  551. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wallocator.html +0 -168
  552. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wgamepadstate.html +0 -134
  553. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wgammaramp.html +0 -170
  554. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wimage.html +0 -151
  555. data/glfw-3.4.bin.WIN64/docs/html/struct_g_l_f_wvidmode.html +0 -204
  556. data/glfw-3.4.bin.WIN64/docs/html/sync_off.png +0 -0
  557. data/glfw-3.4.bin.WIN64/docs/html/sync_on.png +0 -0
  558. data/glfw-3.4.bin.WIN64/docs/html/tab_a.png +0 -0
  559. data/glfw-3.4.bin.WIN64/docs/html/tab_ad.png +0 -0
  560. data/glfw-3.4.bin.WIN64/docs/html/tab_b.png +0 -0
  561. data/glfw-3.4.bin.WIN64/docs/html/tab_bd.png +0 -0
  562. data/glfw-3.4.bin.WIN64/docs/html/tab_h.png +0 -0
  563. data/glfw-3.4.bin.WIN64/docs/html/tab_hd.png +0 -0
  564. data/glfw-3.4.bin.WIN64/docs/html/tab_s.png +0 -0
  565. data/glfw-3.4.bin.WIN64/docs/html/tab_sd.png +0 -0
  566. data/glfw-3.4.bin.WIN64/docs/html/tabs.css +0 -1
  567. data/glfw-3.4.bin.WIN64/docs/html/topics.html +0 -101
  568. data/glfw-3.4.bin.WIN64/docs/html/vulkan_8md.html +0 -81
  569. data/glfw-3.4.bin.WIN64/docs/html/vulkan_guide.html +0 -206
  570. data/glfw-3.4.bin.WIN64/docs/html/window_8md.html +0 -81
  571. data/glfw-3.4.bin.WIN64/docs/html/window_guide.html +0 -806
  572. data/glfw-3.4.bin.WIN64/include/GLFW/glfw3.h +0 -6547
  573. data/glfw-3.4.bin.WIN64/include/GLFW/glfw3native.h +0 -663
  574. data/glfw-3.4.bin.WIN64/lib-mingw-w64/glfw3.dll +0 -0
  575. data/glfw-3.4.bin.WIN64/lib-mingw-w64/libglfw3.a +0 -0
  576. data/glfw-3.4.bin.WIN64/lib-mingw-w64/libglfw3dll.a +0 -0
  577. data/glfw-3.4.bin.WIN64/lib-static-ucrt/glfw3dll.lib +0 -0
  578. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3.dll +0 -0
  579. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3.lib +0 -0
  580. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3_mt.lib +0 -0
  581. data/glfw-3.4.bin.WIN64/lib-vc2013/glfw3dll.lib +0 -0
  582. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3.dll +0 -0
  583. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3.lib +0 -0
  584. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3_mt.lib +0 -0
  585. data/glfw-3.4.bin.WIN64/lib-vc2015/glfw3dll.lib +0 -0
  586. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3.dll +0 -0
  587. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3.lib +0 -0
  588. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3_mt.lib +0 -0
  589. data/glfw-3.4.bin.WIN64/lib-vc2017/glfw3dll.lib +0 -0
  590. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3.dll +0 -0
  591. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3.lib +0 -0
  592. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3_mt.lib +0 -0
  593. data/glfw-3.4.bin.WIN64/lib-vc2019/glfw3dll.lib +0 -0
  594. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3.dll +0 -0
  595. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3.lib +0 -0
  596. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3_mt.lib +0 -0
  597. data/glfw-3.4.bin.WIN64/lib-vc2022/glfw3dll.lib +0 -0
  598. data/lib/engine/components/font_renderer.rb +0 -134
  599. data/lib/engine/components/mesh_renderer.rb +0 -31
  600. data/lib/engine/components/sprite_renderer.rb +0 -141
  601. data/lib/engine/components/ui_font_renderer.rb +0 -140
  602. data/lib/engine/components/ui_sprite_clickbox.rb +0 -62
  603. data/lib/engine/components/ui_sprite_renderer.rb +0 -101
  604. data/lib/engine/shaders/skybox_frag.glsl +0 -12
  605. /data/{glfw-3.4.bin.WIN64 → vendor/glfw-3.3.9.bin.MACOS}/LICENSE.md +0 -0
  606. /data/{glfw-3.4.bin.WIN64 → vendor/glfw-3.4.bin.WIN64}/lib-static-ucrt/glfw3.dll +0 -0
@@ -0,0 +1,451 @@
1
+ #include <ruby.h>
2
+ #include <stdint.h>
3
+
4
+ #ifdef __APPLE__
5
+ #include <dlfcn.h>
6
+ #elif defined(_WIN32)
7
+ #include <windows.h>
8
+ #else
9
+ #include <dlfcn.h>
10
+ #endif
11
+
12
+ /* GLFW type definitions */
13
+ typedef void* GLFWwindow;
14
+ typedef void* GLFWmonitor;
15
+
16
+ typedef struct {
17
+ int width;
18
+ int height;
19
+ int redBits;
20
+ int greenBits;
21
+ int blueBits;
22
+ int refreshRate;
23
+ } GLFWvidmode;
24
+
25
+ /* Callback type definitions */
26
+ typedef void (*GLFWkeyfun)(GLFWwindow*, int, int, int, int);
27
+ typedef void (*GLFWcursorposfun)(GLFWwindow*, double, double);
28
+ typedef void (*GLFWmousebuttonfun)(GLFWwindow*, int, int, int);
29
+
30
+ /* Function pointer types */
31
+ typedef int (*PFN_glfwInit)(void);
32
+ typedef void (*PFN_glfwTerminate)(void);
33
+ typedef GLFWwindow* (*PFN_glfwCreateWindow)(int, int, const char*, GLFWmonitor*, GLFWwindow*);
34
+ typedef void (*PFN_glfwDestroyWindow)(GLFWwindow*);
35
+ typedef void (*PFN_glfwWindowHint)(int, int);
36
+ typedef void (*PFN_glfwSetWindowAttrib)(GLFWwindow*, int, int);
37
+ typedef void (*PFN_glfwSetWindowTitle)(GLFWwindow*, const char*);
38
+ typedef void (*PFN_glfwSetWindowMonitor)(GLFWwindow*, GLFWmonitor*, int, int, int, int, int);
39
+ typedef int (*PFN_glfwWindowShouldClose)(GLFWwindow*);
40
+ typedef void (*PFN_glfwSetWindowShouldClose)(GLFWwindow*, int);
41
+ typedef void (*PFN_glfwFocusWindow)(GLFWwindow*);
42
+ typedef void (*PFN_glfwMakeContextCurrent)(GLFWwindow*);
43
+ typedef void (*PFN_glfwGetFramebufferSize)(GLFWwindow*, int*, int*);
44
+ typedef void (*PFN_glfwPollEvents)(void);
45
+ typedef void (*PFN_glfwSwapBuffers)(GLFWwindow*);
46
+ typedef void (*PFN_glfwSwapInterval)(int);
47
+ typedef GLFWkeyfun (*PFN_glfwSetKeyCallback)(GLFWwindow*, GLFWkeyfun);
48
+ typedef GLFWcursorposfun (*PFN_glfwSetCursorPosCallback)(GLFWwindow*, GLFWcursorposfun);
49
+ typedef GLFWmousebuttonfun (*PFN_glfwSetMouseButtonCallback)(GLFWwindow*, GLFWmousebuttonfun);
50
+ typedef GLFWmonitor* (*PFN_glfwGetPrimaryMonitor)(void);
51
+ typedef const GLFWvidmode* (*PFN_glfwGetVideoMode)(GLFWmonitor*);
52
+ typedef const GLFWvidmode* (*PFN_glfwGetVideoModes)(GLFWmonitor*, int*);
53
+ typedef void (*PFN_glfwSetInputMode)(GLFWwindow*, int, int);
54
+ typedef int (*PFN_glfwGetInputMode)(GLFWwindow*, int);
55
+
56
+ /* Function pointers storage */
57
+ static PFN_glfwInit pfn_glfwInit = NULL;
58
+ static PFN_glfwTerminate pfn_glfwTerminate = NULL;
59
+ static PFN_glfwCreateWindow pfn_glfwCreateWindow = NULL;
60
+ static PFN_glfwDestroyWindow pfn_glfwDestroyWindow = NULL;
61
+ static PFN_glfwWindowHint pfn_glfwWindowHint = NULL;
62
+ static PFN_glfwSetWindowAttrib pfn_glfwSetWindowAttrib = NULL;
63
+ static PFN_glfwSetWindowTitle pfn_glfwSetWindowTitle = NULL;
64
+ static PFN_glfwSetWindowMonitor pfn_glfwSetWindowMonitor = NULL;
65
+ static PFN_glfwWindowShouldClose pfn_glfwWindowShouldClose = NULL;
66
+ static PFN_glfwSetWindowShouldClose pfn_glfwSetWindowShouldClose = NULL;
67
+ static PFN_glfwFocusWindow pfn_glfwFocusWindow = NULL;
68
+ static PFN_glfwMakeContextCurrent pfn_glfwMakeContextCurrent = NULL;
69
+ static PFN_glfwGetFramebufferSize pfn_glfwGetFramebufferSize = NULL;
70
+ static PFN_glfwPollEvents pfn_glfwPollEvents = NULL;
71
+ static PFN_glfwSwapBuffers pfn_glfwSwapBuffers = NULL;
72
+ static PFN_glfwSwapInterval pfn_glfwSwapInterval = NULL;
73
+ static PFN_glfwSetKeyCallback pfn_glfwSetKeyCallback = NULL;
74
+ static PFN_glfwSetCursorPosCallback pfn_glfwSetCursorPosCallback = NULL;
75
+ static PFN_glfwSetMouseButtonCallback pfn_glfwSetMouseButtonCallback = NULL;
76
+ static PFN_glfwGetPrimaryMonitor pfn_glfwGetPrimaryMonitor = NULL;
77
+ static PFN_glfwGetVideoMode pfn_glfwGetVideoMode = NULL;
78
+ static PFN_glfwGetVideoModes pfn_glfwGetVideoModes = NULL;
79
+ static PFN_glfwSetInputMode pfn_glfwSetInputMode = NULL;
80
+ static PFN_glfwGetInputMode pfn_glfwGetInputMode = NULL;
81
+
82
+ /* Library handle */
83
+ static void* glfw_lib = NULL;
84
+
85
+ /* Module reference */
86
+ static VALUE mGLFWNative;
87
+
88
+ /* Callback storage - we store Ruby procs */
89
+ static VALUE rb_key_callback = Qnil;
90
+ static VALUE rb_cursor_pos_callback = Qnil;
91
+ static VALUE rb_mouse_button_callback = Qnil;
92
+
93
+ /* Helper to load a function pointer */
94
+ static void* load_func(const char* name) {
95
+ if (!glfw_lib) {
96
+ rb_raise(rb_eRuntimeError, "GLFW library not loaded. Call load_lib first.");
97
+ }
98
+ #ifdef _WIN32
99
+ return GetProcAddress((HMODULE)glfw_lib, name);
100
+ #else
101
+ return dlsym(glfw_lib, name);
102
+ #endif
103
+ }
104
+
105
+ /* load_lib(path) - Load the GLFW shared library */
106
+ static VALUE rb_glfw_load_lib(VALUE self, VALUE path) {
107
+ const char* lib_path = StringValueCStr(path);
108
+
109
+ #ifdef _WIN32
110
+ glfw_lib = LoadLibrary(lib_path);
111
+ #else
112
+ glfw_lib = dlopen(lib_path, RTLD_LAZY | RTLD_GLOBAL);
113
+ #endif
114
+
115
+ if (!glfw_lib) {
116
+ #ifdef _WIN32
117
+ rb_raise(rb_eRuntimeError, "Failed to load GLFW library: %s", lib_path);
118
+ #else
119
+ rb_raise(rb_eRuntimeError, "Failed to load GLFW library: %s - %s", lib_path, dlerror());
120
+ #endif
121
+ }
122
+
123
+ /* Load all function pointers */
124
+ pfn_glfwInit = (PFN_glfwInit)load_func("glfwInit");
125
+ pfn_glfwTerminate = (PFN_glfwTerminate)load_func("glfwTerminate");
126
+ pfn_glfwCreateWindow = (PFN_glfwCreateWindow)load_func("glfwCreateWindow");
127
+ pfn_glfwDestroyWindow = (PFN_glfwDestroyWindow)load_func("glfwDestroyWindow");
128
+ pfn_glfwWindowHint = (PFN_glfwWindowHint)load_func("glfwWindowHint");
129
+ pfn_glfwSetWindowAttrib = (PFN_glfwSetWindowAttrib)load_func("glfwSetWindowAttrib");
130
+ pfn_glfwSetWindowTitle = (PFN_glfwSetWindowTitle)load_func("glfwSetWindowTitle");
131
+ pfn_glfwSetWindowMonitor = (PFN_glfwSetWindowMonitor)load_func("glfwSetWindowMonitor");
132
+ pfn_glfwWindowShouldClose = (PFN_glfwWindowShouldClose)load_func("glfwWindowShouldClose");
133
+ pfn_glfwSetWindowShouldClose = (PFN_glfwSetWindowShouldClose)load_func("glfwSetWindowShouldClose");
134
+ pfn_glfwFocusWindow = (PFN_glfwFocusWindow)load_func("glfwFocusWindow");
135
+ pfn_glfwMakeContextCurrent = (PFN_glfwMakeContextCurrent)load_func("glfwMakeContextCurrent");
136
+ pfn_glfwGetFramebufferSize = (PFN_glfwGetFramebufferSize)load_func("glfwGetFramebufferSize");
137
+ pfn_glfwPollEvents = (PFN_glfwPollEvents)load_func("glfwPollEvents");
138
+ pfn_glfwSwapBuffers = (PFN_glfwSwapBuffers)load_func("glfwSwapBuffers");
139
+ pfn_glfwSwapInterval = (PFN_glfwSwapInterval)load_func("glfwSwapInterval");
140
+ pfn_glfwSetKeyCallback = (PFN_glfwSetKeyCallback)load_func("glfwSetKeyCallback");
141
+ pfn_glfwSetCursorPosCallback = (PFN_glfwSetCursorPosCallback)load_func("glfwSetCursorPosCallback");
142
+ pfn_glfwSetMouseButtonCallback = (PFN_glfwSetMouseButtonCallback)load_func("glfwSetMouseButtonCallback");
143
+ pfn_glfwGetPrimaryMonitor = (PFN_glfwGetPrimaryMonitor)load_func("glfwGetPrimaryMonitor");
144
+ pfn_glfwGetVideoMode = (PFN_glfwGetVideoMode)load_func("glfwGetVideoMode");
145
+ pfn_glfwGetVideoModes = (PFN_glfwGetVideoModes)load_func("glfwGetVideoModes");
146
+ pfn_glfwSetInputMode = (PFN_glfwSetInputMode)load_func("glfwSetInputMode");
147
+ pfn_glfwGetInputMode = (PFN_glfwGetInputMode)load_func("glfwGetInputMode");
148
+
149
+ return Qtrue;
150
+ }
151
+
152
+ /* Init() */
153
+ static VALUE rb_glfw_init(VALUE self) {
154
+ if (!pfn_glfwInit) rb_raise(rb_eRuntimeError, "GLFW not loaded");
155
+ int result = pfn_glfwInit();
156
+ return INT2NUM(result);
157
+ }
158
+
159
+ /* Terminate() */
160
+ static VALUE rb_glfw_terminate(VALUE self) {
161
+ if (!pfn_glfwTerminate) rb_raise(rb_eRuntimeError, "GLFW not loaded");
162
+ pfn_glfwTerminate();
163
+ return Qnil;
164
+ }
165
+
166
+ /* CreateWindow(width, height, title, monitor, share) */
167
+ static VALUE rb_glfw_create_window(VALUE self, VALUE width, VALUE height, VALUE title, VALUE monitor, VALUE share) {
168
+ if (!pfn_glfwCreateWindow) rb_raise(rb_eRuntimeError, "GLFW not loaded");
169
+ const char* title_str = StringValueCStr(title);
170
+ GLFWmonitor* mon = NIL_P(monitor) ? NULL : (GLFWmonitor*)(uintptr_t)NUM2ULL(monitor);
171
+ GLFWwindow* shr = NIL_P(share) ? NULL : (GLFWwindow*)(uintptr_t)NUM2ULL(share);
172
+ GLFWwindow* window = pfn_glfwCreateWindow(NUM2INT(width), NUM2INT(height), title_str, mon, shr);
173
+ if (!window) return Qnil;
174
+ return ULL2NUM((uintptr_t)window);
175
+ }
176
+
177
+ /* DestroyWindow(window) */
178
+ static VALUE rb_glfw_destroy_window(VALUE self, VALUE window) {
179
+ if (!pfn_glfwDestroyWindow) rb_raise(rb_eRuntimeError, "GLFW not loaded");
180
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
181
+ pfn_glfwDestroyWindow(win);
182
+ return Qnil;
183
+ }
184
+
185
+ /* WindowHint(hint, value) */
186
+ static VALUE rb_glfw_window_hint(VALUE self, VALUE hint, VALUE value) {
187
+ if (!pfn_glfwWindowHint) rb_raise(rb_eRuntimeError, "GLFW not loaded");
188
+ pfn_glfwWindowHint(NUM2INT(hint), NUM2INT(value));
189
+ return Qnil;
190
+ }
191
+
192
+ /* SetWindowAttrib(window, attrib, value) */
193
+ static VALUE rb_glfw_set_window_attrib(VALUE self, VALUE window, VALUE attrib, VALUE value) {
194
+ if (!pfn_glfwSetWindowAttrib) rb_raise(rb_eRuntimeError, "GLFW not loaded");
195
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
196
+ pfn_glfwSetWindowAttrib(win, NUM2INT(attrib), NUM2INT(value));
197
+ return Qnil;
198
+ }
199
+
200
+ /* SetWindowTitle(window, title) */
201
+ static VALUE rb_glfw_set_window_title(VALUE self, VALUE window, VALUE title) {
202
+ if (!pfn_glfwSetWindowTitle) rb_raise(rb_eRuntimeError, "GLFW not loaded");
203
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
204
+ const char* title_str = StringValueCStr(title);
205
+ pfn_glfwSetWindowTitle(win, title_str);
206
+ return Qnil;
207
+ }
208
+
209
+ /* SetWindowMonitor(window, monitor, xpos, ypos, width, height, refreshRate) */
210
+ static VALUE rb_glfw_set_window_monitor(VALUE self, VALUE window, VALUE monitor, VALUE xpos, VALUE ypos, VALUE width, VALUE height, VALUE refresh_rate) {
211
+ if (!pfn_glfwSetWindowMonitor) rb_raise(rb_eRuntimeError, "GLFW not loaded");
212
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
213
+ GLFWmonitor* mon = NIL_P(monitor) ? NULL : (GLFWmonitor*)(uintptr_t)NUM2ULL(monitor);
214
+ pfn_glfwSetWindowMonitor(win, mon, NUM2INT(xpos), NUM2INT(ypos), NUM2INT(width), NUM2INT(height), NUM2INT(refresh_rate));
215
+ return Qnil;
216
+ }
217
+
218
+ /* WindowShouldClose(window) */
219
+ static VALUE rb_glfw_window_should_close(VALUE self, VALUE window) {
220
+ if (!pfn_glfwWindowShouldClose) rb_raise(rb_eRuntimeError, "GLFW not loaded");
221
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
222
+ int result = pfn_glfwWindowShouldClose(win);
223
+ return INT2NUM(result);
224
+ }
225
+
226
+ /* SetWindowShouldClose(window, value) */
227
+ static VALUE rb_glfw_set_window_should_close(VALUE self, VALUE window, VALUE value) {
228
+ if (!pfn_glfwSetWindowShouldClose) rb_raise(rb_eRuntimeError, "GLFW not loaded");
229
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
230
+ pfn_glfwSetWindowShouldClose(win, NUM2INT(value));
231
+ return Qnil;
232
+ }
233
+
234
+ /* FocusWindow(window) */
235
+ static VALUE rb_glfw_focus_window(VALUE self, VALUE window) {
236
+ if (!pfn_glfwFocusWindow) rb_raise(rb_eRuntimeError, "GLFW not loaded");
237
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
238
+ pfn_glfwFocusWindow(win);
239
+ return Qnil;
240
+ }
241
+
242
+ /* MakeContextCurrent(window) */
243
+ static VALUE rb_glfw_make_context_current(VALUE self, VALUE window) {
244
+ if (!pfn_glfwMakeContextCurrent) rb_raise(rb_eRuntimeError, "GLFW not loaded");
245
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
246
+ pfn_glfwMakeContextCurrent(win);
247
+ return Qnil;
248
+ }
249
+
250
+ /* GetFramebufferSize(window, width_buf, height_buf) - writes to buffers */
251
+ static VALUE rb_glfw_get_framebuffer_size(VALUE self, VALUE window, VALUE width_buf, VALUE height_buf) {
252
+ if (!pfn_glfwGetFramebufferSize) rb_raise(rb_eRuntimeError, "GLFW not loaded");
253
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
254
+ Check_Type(width_buf, T_STRING);
255
+ Check_Type(height_buf, T_STRING);
256
+ int* w_ptr = (int*)RSTRING_PTR(width_buf);
257
+ int* h_ptr = (int*)RSTRING_PTR(height_buf);
258
+ pfn_glfwGetFramebufferSize(win, w_ptr, h_ptr);
259
+ return Qnil;
260
+ }
261
+
262
+ /* PollEvents() */
263
+ static VALUE rb_glfw_poll_events(VALUE self) {
264
+ if (!pfn_glfwPollEvents) rb_raise(rb_eRuntimeError, "GLFW not loaded");
265
+ pfn_glfwPollEvents();
266
+ return Qnil;
267
+ }
268
+
269
+ /* SwapBuffers(window) */
270
+ static VALUE rb_glfw_swap_buffers(VALUE self, VALUE window) {
271
+ if (!pfn_glfwSwapBuffers) rb_raise(rb_eRuntimeError, "GLFW not loaded");
272
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
273
+ pfn_glfwSwapBuffers(win);
274
+ return Qnil;
275
+ }
276
+
277
+ /* SwapInterval(interval) */
278
+ static VALUE rb_glfw_swap_interval(VALUE self, VALUE interval) {
279
+ if (!pfn_glfwSwapInterval) rb_raise(rb_eRuntimeError, "GLFW not loaded");
280
+ pfn_glfwSwapInterval(NUM2INT(interval));
281
+ return Qnil;
282
+ }
283
+
284
+ /* GetPrimaryMonitor() */
285
+ static VALUE rb_glfw_get_primary_monitor(VALUE self) {
286
+ if (!pfn_glfwGetPrimaryMonitor) rb_raise(rb_eRuntimeError, "GLFW not loaded");
287
+ GLFWmonitor* monitor = pfn_glfwGetPrimaryMonitor();
288
+ if (!monitor) return Qnil;
289
+ return ULL2NUM((uintptr_t)monitor);
290
+ }
291
+
292
+ /* GetVideoMode(monitor) - returns pointer as integer */
293
+ static VALUE rb_glfw_get_video_mode(VALUE self, VALUE monitor) {
294
+ if (!pfn_glfwGetVideoMode) rb_raise(rb_eRuntimeError, "GLFW not loaded");
295
+ GLFWmonitor* mon = (GLFWmonitor*)(uintptr_t)NUM2ULL(monitor);
296
+ const GLFWvidmode* mode = pfn_glfwGetVideoMode(mon);
297
+ if (!mode) return Qnil;
298
+ return ULL2NUM((uintptr_t)mode);
299
+ }
300
+
301
+ /* GetVideoModes(monitor, count_buf) - returns pointer as integer, writes count to buffer */
302
+ static VALUE rb_glfw_get_video_modes(VALUE self, VALUE monitor, VALUE count_buf) {
303
+ if (!pfn_glfwGetVideoModes) rb_raise(rb_eRuntimeError, "GLFW not loaded");
304
+ GLFWmonitor* mon = (GLFWmonitor*)(uintptr_t)NUM2ULL(monitor);
305
+ Check_Type(count_buf, T_STRING);
306
+ int* count_ptr = (int*)RSTRING_PTR(count_buf);
307
+ const GLFWvidmode* modes = pfn_glfwGetVideoModes(mon, count_ptr);
308
+ if (!modes) return Qnil;
309
+ return ULL2NUM((uintptr_t)modes);
310
+ }
311
+
312
+ /* SetInputMode(window, mode, value) */
313
+ static VALUE rb_glfw_set_input_mode(VALUE self, VALUE window, VALUE mode, VALUE value) {
314
+ if (!pfn_glfwSetInputMode) rb_raise(rb_eRuntimeError, "GLFW not loaded");
315
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
316
+ pfn_glfwSetInputMode(win, NUM2INT(mode), NUM2INT(value));
317
+ return Qnil;
318
+ }
319
+
320
+ /* GetInputMode(window, mode) */
321
+ static VALUE rb_glfw_get_input_mode(VALUE self, VALUE window, VALUE mode) {
322
+ if (!pfn_glfwGetInputMode) rb_raise(rb_eRuntimeError, "GLFW not loaded");
323
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
324
+ int result = pfn_glfwGetInputMode(win, NUM2INT(mode));
325
+ return INT2NUM(result);
326
+ }
327
+
328
+ /* Callback trampolines - these are called by GLFW and invoke Ruby procs */
329
+ static void key_callback_trampoline(GLFWwindow* window, int key, int scancode, int action, int mods) {
330
+ if (rb_key_callback != Qnil) {
331
+ VALUE args[5];
332
+ args[0] = ULL2NUM((uintptr_t)window);
333
+ args[1] = INT2NUM(key);
334
+ args[2] = INT2NUM(scancode);
335
+ args[3] = INT2NUM(action);
336
+ args[4] = INT2NUM(mods);
337
+ rb_funcall2(rb_key_callback, rb_intern("call"), 5, args);
338
+ }
339
+ }
340
+
341
+ static void cursor_pos_callback_trampoline(GLFWwindow* window, double xpos, double ypos) {
342
+ if (rb_cursor_pos_callback != Qnil) {
343
+ VALUE args[3];
344
+ args[0] = ULL2NUM((uintptr_t)window);
345
+ args[1] = DBL2NUM(xpos);
346
+ args[2] = DBL2NUM(ypos);
347
+ rb_funcall2(rb_cursor_pos_callback, rb_intern("call"), 3, args);
348
+ }
349
+ }
350
+
351
+ static void mouse_button_callback_trampoline(GLFWwindow* window, int button, int action, int mods) {
352
+ if (rb_mouse_button_callback != Qnil) {
353
+ VALUE args[4];
354
+ args[0] = ULL2NUM((uintptr_t)window);
355
+ args[1] = INT2NUM(button);
356
+ args[2] = INT2NUM(action);
357
+ args[3] = INT2NUM(mods);
358
+ rb_funcall2(rb_mouse_button_callback, rb_intern("call"), 4, args);
359
+ }
360
+ }
361
+
362
+ /* SetKeyCallback(window, callback) - callback is a Ruby proc/block */
363
+ static VALUE rb_glfw_set_key_callback(VALUE self, VALUE window, VALUE callback) {
364
+ if (!pfn_glfwSetKeyCallback) rb_raise(rb_eRuntimeError, "GLFW not loaded");
365
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
366
+
367
+ rb_key_callback = callback;
368
+ if (NIL_P(callback)) {
369
+ pfn_glfwSetKeyCallback(win, NULL);
370
+ } else {
371
+ pfn_glfwSetKeyCallback(win, key_callback_trampoline);
372
+ }
373
+ return Qnil;
374
+ }
375
+
376
+ /* SetCursorPosCallback(window, callback) */
377
+ static VALUE rb_glfw_set_cursor_pos_callback(VALUE self, VALUE window, VALUE callback) {
378
+ if (!pfn_glfwSetCursorPosCallback) rb_raise(rb_eRuntimeError, "GLFW not loaded");
379
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
380
+
381
+ rb_cursor_pos_callback = callback;
382
+ if (NIL_P(callback)) {
383
+ pfn_glfwSetCursorPosCallback(win, NULL);
384
+ } else {
385
+ pfn_glfwSetCursorPosCallback(win, cursor_pos_callback_trampoline);
386
+ }
387
+ return Qnil;
388
+ }
389
+
390
+ /* SetMouseButtonCallback(window, callback) */
391
+ static VALUE rb_glfw_set_mouse_button_callback(VALUE self, VALUE window, VALUE callback) {
392
+ if (!pfn_glfwSetMouseButtonCallback) rb_raise(rb_eRuntimeError, "GLFW not loaded");
393
+ GLFWwindow* win = (GLFWwindow*)(uintptr_t)NUM2ULL(window);
394
+
395
+ rb_mouse_button_callback = callback;
396
+ if (NIL_P(callback)) {
397
+ pfn_glfwSetMouseButtonCallback(win, NULL);
398
+ } else {
399
+ pfn_glfwSetMouseButtonCallback(win, mouse_button_callback_trampoline);
400
+ }
401
+ return Qnil;
402
+ }
403
+
404
+ /* Extension init */
405
+ void Init_glfw_native(void) {
406
+ mGLFWNative = rb_define_module("GLFWNative");
407
+
408
+ /* Register callbacks for GC marking */
409
+ rb_gc_register_address(&rb_key_callback);
410
+ rb_gc_register_address(&rb_cursor_pos_callback);
411
+ rb_gc_register_address(&rb_mouse_button_callback);
412
+
413
+ /* Library loading */
414
+ rb_define_module_function(mGLFWNative, "load_lib", rb_glfw_load_lib, 1);
415
+
416
+ /* Initialization */
417
+ rb_define_module_function(mGLFWNative, "init", rb_glfw_init, 0);
418
+ rb_define_module_function(mGLFWNative, "terminate", rb_glfw_terminate, 0);
419
+
420
+ /* Window */
421
+ rb_define_module_function(mGLFWNative, "create_window", rb_glfw_create_window, 5);
422
+ rb_define_module_function(mGLFWNative, "destroy_window", rb_glfw_destroy_window, 1);
423
+ rb_define_module_function(mGLFWNative, "window_hint", rb_glfw_window_hint, 2);
424
+ rb_define_module_function(mGLFWNative, "set_window_attrib", rb_glfw_set_window_attrib, 3);
425
+ rb_define_module_function(mGLFWNative, "set_window_title", rb_glfw_set_window_title, 2);
426
+ rb_define_module_function(mGLFWNative, "set_window_monitor", rb_glfw_set_window_monitor, 7);
427
+ rb_define_module_function(mGLFWNative, "window_should_close", rb_glfw_window_should_close, 1);
428
+ rb_define_module_function(mGLFWNative, "set_window_should_close", rb_glfw_set_window_should_close, 2);
429
+ rb_define_module_function(mGLFWNative, "focus_window", rb_glfw_focus_window, 1);
430
+ rb_define_module_function(mGLFWNative, "make_context_current", rb_glfw_make_context_current, 1);
431
+ rb_define_module_function(mGLFWNative, "get_framebuffer_size", rb_glfw_get_framebuffer_size, 3);
432
+
433
+ /* Events */
434
+ rb_define_module_function(mGLFWNative, "poll_events", rb_glfw_poll_events, 0);
435
+ rb_define_module_function(mGLFWNative, "swap_buffers", rb_glfw_swap_buffers, 1);
436
+ rb_define_module_function(mGLFWNative, "swap_interval", rb_glfw_swap_interval, 1);
437
+
438
+ /* Callbacks */
439
+ rb_define_module_function(mGLFWNative, "set_key_callback", rb_glfw_set_key_callback, 2);
440
+ rb_define_module_function(mGLFWNative, "set_cursor_pos_callback", rb_glfw_set_cursor_pos_callback, 2);
441
+ rb_define_module_function(mGLFWNative, "set_mouse_button_callback", rb_glfw_set_mouse_button_callback, 2);
442
+
443
+ /* Monitor */
444
+ rb_define_module_function(mGLFWNative, "get_primary_monitor", rb_glfw_get_primary_monitor, 0);
445
+ rb_define_module_function(mGLFWNative, "get_video_mode", rb_glfw_get_video_mode, 1);
446
+ rb_define_module_function(mGLFWNative, "get_video_modes", rb_glfw_get_video_modes, 2);
447
+
448
+ /* Input */
449
+ rb_define_module_function(mGLFWNative, "set_input_mode", rb_glfw_set_input_mode, 3);
450
+ rb_define_module_function(mGLFWNative, "get_input_mode", rb_glfw_get_input_mode, 2);
451
+ }
@@ -0,0 +1 @@
1
+ {"0":{"width":39.0},"1":{"width":39.0},"2":{"width":39.0},"3":{"width":39.0},"4":{"width":39.0},"5":{"width":39.0},"6":{"width":39.0},"7":{"width":39.0},"8":{"width":0.0},"9":{"width":0.0},"10":{"width":0.0},"11":{"width":0.0},"12":{"width":0.0},"13":{"width":39.0},"14":{"width":39.0},"15":{"width":39.0},"16":{"width":39.0},"17":{"width":39.0},"18":{"width":39.0},"19":{"width":39.0},"20":{"width":39.0},"21":{"width":39.0},"22":{"width":39.0},"23":{"width":39.0},"24":{"width":39.0},"25":{"width":39.0},"26":{"width":39.0},"27":{"width":39.0},"28":{"width":39.0},"29":{"width":39.0},"30":{"width":39.0},"31":{"width":17.25},"32":{"width":23.0},"33":{"width":34.0},"34":{"width":41.0},"35":{"width":31.0},"36":{"width":49.0},"37":{"width":36.0},"38":{"width":21.0},"39":{"width":29.0},"40":{"width":24.0},"41":{"width":28.0},"42":{"width":22.0},"43":{"width":13.0},"44":{"width":24.0},"45":{"width":13.0},"46":{"width":39.0},"47":{"width":31.0},"48":{"width":24.0},"49":{"width":32.0},"50":{"width":31.0},"51":{"width":30.0},"52":{"width":31.0},"53":{"width":32.0},"54":{"width":28.0},"55":{"width":35.0},"56":{"width":33.0},"57":{"width":16.0},"58":{"width":18.0},"59":{"width":23.0},"60":{"width":22.0},"61":{"width":21.0},"62":{"width":31.0},"63":{"width":61.0},"64":{"width":28.0},"65":{"width":31.0},"66":{"width":31.0},"67":{"width":31.0},"68":{"width":27.0},"69":{"width":28.0},"70":{"width":34.0},"71":{"width":33.0},"72":{"width":18.0},"73":{"width":24.0},"74":{"width":36.0},"75":{"width":19.0},"76":{"width":41.0},"77":{"width":33.0},"78":{"width":34.0},"79":{"width":28.0},"80":{"width":34.0},"81":{"width":31.0},"82":{"width":31.0},"83":{"width":29.0},"84":{"width":31.0},"85":{"width":30.0},"86":{"width":43.0},"87":{"width":31.0},"88":{"width":31.0},"89":{"width":32.0},"90":{"width":27.0},"91":{"width":0.0},"92":{"width":24.0},"93":{"width":27.0},"94":{"width":24.0},"95":{"width":21.0},"96":{"width":28.0},"97":{"width":31.0},"98":{"width":31.0},"99":{"width":31.0},"100":{"width":27.0},"101":{"width":28.0},"102":{"width":34.0},"103":{"width":33.0},"104":{"width":17.0},"105":{"width":24.0},"106":{"width":36.0},"107":{"width":19.0},"108":{"width":41.0},"109":{"width":33.0},"110":{"width":34.0},"111":{"width":28.0},"112":{"width":34.0},"113":{"width":31.0},"114":{"width":31.0},"115":{"width":29.0},"116":{"width":31.0},"117":{"width":30.0},"118":{"width":43.0},"119":{"width":31.0},"120":{"width":31.0},"121":{"width":32.0},"122":{"width":22.0},"123":{"width":19.0},"124":{"width":21.0},"125":{"width":29.0},"126":{"width":0.0},"127":{"width":39.0},"128":{"width":39.0},"129":{"width":39.0},"130":{"width":39.0},"131":{"width":39.0},"132":{"width":39.0},"133":{"width":39.0},"134":{"width":39.0},"135":{"width":39.0},"136":{"width":39.0},"137":{"width":39.0},"138":{"width":39.0},"139":{"width":39.0},"140":{"width":39.0},"141":{"width":39.0},"142":{"width":39.0},"143":{"width":39.0},"144":{"width":39.0},"145":{"width":39.0},"146":{"width":39.0},"147":{"width":39.0},"148":{"width":39.0},"149":{"width":39.0},"150":{"width":39.0},"151":{"width":39.0},"152":{"width":39.0},"153":{"width":39.0},"154":{"width":39.0},"155":{"width":39.0},"156":{"width":39.0},"157":{"width":39.0},"158":{"width":39.0},"159":{"width":0.0},"160":{"width":19.0},"161":{"width":32.0},"162":{"width":28.0},"163":{"width":30.0},"164":{"width":33.0},"165":{"width":19.0},"166":{"width":32.0},"167":{"width":31.0},"168":{"width":38.0},"169":{"width":28.0},"170":{"width":32.0},"171":{"width":27.0},"172":{"width":39.0},"173":{"width":36.0},"174":{"width":29.0},"175":{"width":21.0},"176":{"width":23.0},"177":{"width":31.0},"178":{"width":27.0},"179":{"width":21.0},"180":{"width":31.0},"181":{"width":31.0},"182":{"width":16.0},"183":{"width":19.0},"184":{"width":23.0},"185":{"width":34.0},"186":{"width":31.0},"187":{"width":65.0},"188":{"width":71.0},"189":{"width":68.0},"190":{"width":27.0},"191":{"width":28.0},"192":{"width":28.0},"193":{"width":28.0},"194":{"width":33.0},"195":{"width":32.0},"196":{"width":28.0},"197":{"width":36.0},"198":{"width":31.0},"199":{"width":27.0},"200":{"width":27.0},"201":{"width":27.0},"202":{"width":30.0},"203":{"width":18.0},"204":{"width":25.0},"205":{"width":25.0},"206":{"width":28.0},"207":{"width":30.0},"208":{"width":38.0},"209":{"width":34.0},"210":{"width":35.0},"211":{"width":35.0},"212":{"width":40.0},"213":{"width":39.0},"214":{"width":32.0},"215":{"width":37.0},"216":{"width":31.0},"217":{"width":32.0},"218":{"width":32.0},"219":{"width":36.0},"220":{"width":32.0},"221":{"width":27.0},"222":{"width":31.0},"223":{"width":28.0},"224":{"width":28.0},"225":{"width":28.0},"226":{"width":35.0},"227":{"width":32.0},"228":{"width":28.0},"229":{"width":36.0},"230":{"width":31.0},"231":{"width":27.0},"232":{"width":27.0},"233":{"width":28.0},"234":{"width":31.0},"235":{"width":18.0},"236":{"width":21.0},"237":{"width":23.0},"238":{"width":26.0},"239":{"width":30.0},"240":{"width":38.0},"241":{"width":34.0},"242":{"width":34.0},"243":{"width":34.0},"244":{"width":40.0},"245":{"width":36.0},"246":{"width":24.0},"247":{"width":37.0},"248":{"width":31.0},"249":{"width":31.0},"250":{"width":32.0},"251":{"width":35.0},"252":{"width":31.0},"253":{"width":27.0},"254":{"width":32.0}}
@@ -0,0 +1 @@
1
+ {"0":{"width":36.0},"1":{"width":36.0},"2":{"width":36.0},"3":{"width":36.0},"4":{"width":36.0},"5":{"width":36.0},"6":{"width":36.0},"7":{"width":36.0},"8":{"width":0.0},"9":{"width":0.0},"10":{"width":0.0},"11":{"width":0.0},"12":{"width":0.0},"13":{"width":36.0},"14":{"width":36.0},"15":{"width":36.0},"16":{"width":36.0},"17":{"width":36.0},"18":{"width":36.0},"19":{"width":36.0},"20":{"width":36.0},"21":{"width":36.0},"22":{"width":36.0},"23":{"width":36.0},"24":{"width":36.0},"25":{"width":36.0},"26":{"width":36.0},"27":{"width":36.0},"28":{"width":36.0},"29":{"width":36.0},"30":{"width":36.0},"31":{"width":16.25},"32":{"width":24.0},"33":{"width":25.0},"34":{"width":41.0},"35":{"width":34.0},"36":{"width":41.0},"37":{"width":39.0},"38":{"width":18.0},"39":{"width":32.0},"40":{"width":22.0},"41":{"width":31.0},"42":{"width":29.0},"43":{"width":12.0},"44":{"width":22.0},"45":{"width":12.0},"46":{"width":30.0},"47":{"width":30.0},"48":{"width":30.0},"49":{"width":31.0},"50":{"width":30.0},"51":{"width":32.0},"52":{"width":29.0},"53":{"width":28.0},"54":{"width":30.0},"55":{"width":32.0},"56":{"width":31.0},"57":{"width":16.0},"58":{"width":16.0},"59":{"width":28.0},"60":{"width":28.0},"61":{"width":29.0},"62":{"width":32.0},"63":{"width":41.0},"64":{"width":32.0},"65":{"width":34.0},"66":{"width":33.0},"67":{"width":39.0},"68":{"width":38.0},"69":{"width":39.0},"70":{"width":35.0},"71":{"width":43.0},"72":{"width":36.0},"73":{"width":27.0},"74":{"width":41.0},"75":{"width":27.0},"76":{"width":48.0},"77":{"width":44.0},"78":{"width":35.0},"79":{"width":35.0},"80":{"width":35.0},"81":{"width":38.0},"82":{"width":39.0},"83":{"width":38.0},"84":{"width":39.0},"85":{"width":40.0},"86":{"width":52.0},"87":{"width":40.0},"88":{"width":41.0},"89":{"width":39.0},"90":{"width":38.0},"91":{"width":0.0},"92":{"width":28.0},"93":{"width":27.0},"94":{"width":26.0},"95":{"width":22.0},"96":{"width":30.0},"97":{"width":29.0},"98":{"width":24.0},"99":{"width":32.0},"100":{"width":23.0},"101":{"width":29.0},"102":{"width":24.0},"103":{"width":30.0},"104":{"width":17.0},"105":{"width":18.0},"106":{"width":26.0},"107":{"width":20.0},"108":{"width":38.0},"109":{"width":28.0},"110":{"width":24.0},"111":{"width":25.0},"112":{"width":25.0},"113":{"width":27.0},"114":{"width":25.0},"115":{"width":25.0},"116":{"width":25.0},"117":{"width":25.0},"118":{"width":35.0},"119":{"width":25.0},"120":{"width":25.0},"121":{"width":25.0},"122":{"width":32.0},"123":{"width":27.0},"124":{"width":25.0},"125":{"width":29.0},"126":{"width":36.0},"127":{"width":36.0},"128":{"width":36.0},"129":{"width":36.0},"130":{"width":36.0},"131":{"width":36.0},"132":{"width":36.0},"133":{"width":36.0},"134":{"width":36.0},"135":{"width":36.0},"136":{"width":36.0},"137":{"width":36.0},"138":{"width":36.0},"139":{"width":36.0},"140":{"width":36.0},"141":{"width":36.0},"142":{"width":36.0},"143":{"width":36.0},"144":{"width":36.0},"145":{"width":36.0},"146":{"width":36.0},"147":{"width":36.0},"148":{"width":36.0},"149":{"width":36.0},"150":{"width":36.0},"151":{"width":36.0},"152":{"width":36.0},"153":{"width":36.0},"154":{"width":36.0},"155":{"width":36.0},"156":{"width":36.0},"157":{"width":36.0},"158":{"width":36.0},"159":{"width":0.0},"160":{"width":20.0},"161":{"width":33.0},"162":{"width":33.0},"163":{"width":29.0},"164":{"width":39.0},"165":{"width":27.0},"166":{"width":30.0},"167":{"width":27.0},"168":{"width":35.0},"169":{"width":31.0},"170":{"width":38.0},"171":{"width":30.0},"172":{"width":22.0},"173":{"width":35.0},"174":{"width":28.0},"175":{"width":28.0},"176":{"width":29.0},"177":{"width":29.0},"178":{"width":30.0},"179":{"width":28.0},"180":{"width":25.0},"181":{"width":35.0},"182":{"width":14.0},"183":{"width":21.0},"184":{"width":29.0},"185":{"width":26.0},"186":{"width":42.0},"187":{"width":51.0},"188":{"width":48.0},"189":{"width":51.0},"190":{"width":24.0},"191":{"width":34.0},"192":{"width":36.0},"193":{"width":36.0},"194":{"width":40.0},"195":{"width":38.0},"196":{"width":36.0},"197":{"width":54.0},"198":{"width":33.0},"199":{"width":38.0},"200":{"width":38.0},"201":{"width":40.0},"202":{"width":39.0},"203":{"width":36.0},"204":{"width":36.0},"205":{"width":36.0},"206":{"width":36.0},"207":{"width":39.0},"208":{"width":44.0},"209":{"width":35.0},"210":{"width":36.0},"211":{"width":38.0},"212":{"width":40.0},"213":{"width":38.0},"214":{"width":27.0},"215":{"width":39.0},"216":{"width":39.0},"217":{"width":39.0},"218":{"width":39.0},"219":{"width":39.0},"220":{"width":41.0},"221":{"width":33.0},"222":{"width":31.0},"223":{"width":30.0},"224":{"width":31.0},"225":{"width":30.0},"226":{"width":32.0},"227":{"width":30.0},"228":{"width":30.0},"229":{"width":37.0},"230":{"width":24.0},"231":{"width":23.0},"232":{"width":27.0},"233":{"width":26.0},"234":{"width":26.0},"235":{"width":16.0},"236":{"width":22.0},"237":{"width":20.0},"238":{"width":21.0},"239":{"width":28.0},"240":{"width":32.0},"241":{"width":24.0},"242":{"width":28.0},"243":{"width":26.0},"244":{"width":29.0},"245":{"width":27.0},"246":{"width":29.0},"247":{"width":28.0},"248":{"width":25.0},"249":{"width":26.0},"250":{"width":27.0},"251":{"width":28.0},"252":{"width":26.0},"253":{"width":25.0},"254":{"width":25.0}}
@@ -0,0 +1 @@
1
+ {"0":{"width":35.0},"1":{"width":35.0},"2":{"width":35.0},"3":{"width":35.0},"4":{"width":35.0},"5":{"width":35.0},"6":{"width":35.0},"7":{"width":35.0},"8":{"width":0.0},"9":{"width":0.0},"10":{"width":0.0},"11":{"width":0.0},"12":{"width":0.0},"13":{"width":35.0},"14":{"width":35.0},"15":{"width":35.0},"16":{"width":35.0},"17":{"width":35.0},"18":{"width":35.0},"19":{"width":35.0},"20":{"width":35.0},"21":{"width":35.0},"22":{"width":35.0},"23":{"width":35.0},"24":{"width":35.0},"25":{"width":35.0},"26":{"width":35.0},"27":{"width":35.0},"28":{"width":35.0},"29":{"width":35.0},"30":{"width":35.0},"31":{"width":8.75},"32":{"width":35.0},"33":{"width":35.0},"34":{"width":35.0},"35":{"width":35.0},"36":{"width":35.0},"37":{"width":37.0},"38":{"width":35.0},"39":{"width":35.0},"40":{"width":35.0},"41":{"width":35.0},"42":{"width":35.0},"43":{"width":35.0},"44":{"width":35.0},"45":{"width":35.0},"46":{"width":35.0},"47":{"width":35.0},"48":{"width":35.0},"49":{"width":35.0},"50":{"width":35.0},"51":{"width":35.0},"52":{"width":35.0},"53":{"width":35.0},"54":{"width":35.0},"55":{"width":35.0},"56":{"width":35.0},"57":{"width":35.0},"58":{"width":35.0},"59":{"width":35.0},"60":{"width":35.0},"61":{"width":35.0},"62":{"width":35.0},"63":{"width":35.0},"64":{"width":35.0},"65":{"width":35.0},"66":{"width":35.0},"67":{"width":35.0},"68":{"width":35.0},"69":{"width":35.0},"70":{"width":35.0},"71":{"width":35.0},"72":{"width":35.0},"73":{"width":35.0},"74":{"width":35.0},"75":{"width":35.0},"76":{"width":35.0},"77":{"width":35.0},"78":{"width":35.0},"79":{"width":35.0},"80":{"width":35.0},"81":{"width":35.0},"82":{"width":35.0},"83":{"width":35.0},"84":{"width":35.0},"85":{"width":35.0},"86":{"width":35.0},"87":{"width":35.0},"88":{"width":35.0},"89":{"width":35.0},"90":{"width":35.0},"91":{"width":0.0},"92":{"width":35.0},"93":{"width":35.0},"94":{"width":35.0},"95":{"width":35.0},"96":{"width":35.0},"97":{"width":35.0},"98":{"width":35.0},"99":{"width":35.0},"100":{"width":35.0},"101":{"width":35.0},"102":{"width":35.0},"103":{"width":35.0},"104":{"width":35.0},"105":{"width":35.0},"106":{"width":35.0},"107":{"width":35.0},"108":{"width":35.0},"109":{"width":35.0},"110":{"width":35.0},"111":{"width":35.0},"112":{"width":35.0},"113":{"width":35.0},"114":{"width":35.0},"115":{"width":35.0},"116":{"width":35.0},"117":{"width":35.0},"118":{"width":35.0},"119":{"width":35.0},"120":{"width":35.0},"121":{"width":35.0},"122":{"width":35.0},"123":{"width":35.0},"124":{"width":35.0},"125":{"width":35.0},"126":{"width":35.0},"127":{"width":35.0},"128":{"width":35.0},"129":{"width":35.0},"130":{"width":35.0},"131":{"width":35.0},"132":{"width":35.0},"133":{"width":35.0},"134":{"width":35.0},"135":{"width":35.0},"136":{"width":35.0},"137":{"width":35.0},"138":{"width":35.0},"139":{"width":35.0},"140":{"width":35.0},"141":{"width":35.0},"142":{"width":35.0},"143":{"width":35.0},"144":{"width":35.0},"145":{"width":35.0},"146":{"width":35.0},"147":{"width":35.0},"148":{"width":35.0},"149":{"width":35.0},"150":{"width":35.0},"151":{"width":35.0},"152":{"width":35.0},"153":{"width":35.0},"154":{"width":35.0},"155":{"width":35.0},"156":{"width":35.0},"157":{"width":35.0},"158":{"width":35.0},"159":{"width":0.0},"160":{"width":35.0},"161":{"width":35.0},"162":{"width":35.0},"163":{"width":35.0},"164":{"width":35.0},"165":{"width":35.0},"166":{"width":35.0},"167":{"width":35.0},"168":{"width":35.0},"169":{"width":35.0},"170":{"width":35.0},"171":{"width":35.0},"172":{"width":35.0},"173":{"width":35.0},"174":{"width":35.0},"175":{"width":35.0},"176":{"width":35.0},"177":{"width":35.0},"178":{"width":35.0},"179":{"width":35.0},"180":{"width":35.0},"181":{"width":35.0},"182":{"width":35.0},"183":{"width":35.0},"184":{"width":35.0},"185":{"width":35.0},"186":{"width":35.0},"187":{"width":36.0},"188":{"width":36.0},"189":{"width":36.0},"190":{"width":35.0},"191":{"width":35.0},"192":{"width":35.0},"193":{"width":35.0},"194":{"width":35.0},"195":{"width":35.0},"196":{"width":35.0},"197":{"width":35.0},"198":{"width":35.0},"199":{"width":35.0},"200":{"width":35.0},"201":{"width":35.0},"202":{"width":35.0},"203":{"width":35.0},"204":{"width":35.0},"205":{"width":35.0},"206":{"width":35.0},"207":{"width":35.0},"208":{"width":35.0},"209":{"width":35.0},"210":{"width":35.0},"211":{"width":35.0},"212":{"width":35.0},"213":{"width":35.0},"214":{"width":35.0},"215":{"width":35.0},"216":{"width":35.0},"217":{"width":35.0},"218":{"width":35.0},"219":{"width":35.0},"220":{"width":35.0},"221":{"width":35.0},"222":{"width":35.0},"223":{"width":35.0},"224":{"width":35.0},"225":{"width":35.0},"226":{"width":35.0},"227":{"width":35.0},"228":{"width":35.0},"229":{"width":35.0},"230":{"width":35.0},"231":{"width":35.0},"232":{"width":35.0},"233":{"width":35.0},"234":{"width":35.0},"235":{"width":35.0},"236":{"width":35.0},"237":{"width":35.0},"238":{"width":35.0},"239":{"width":35.0},"240":{"width":35.0},"241":{"width":35.0},"242":{"width":35.0},"243":{"width":35.0},"244":{"width":35.0},"245":{"width":35.0},"246":{"width":35.0},"247":{"width":35.0},"248":{"width":35.0},"249":{"width":35.0},"250":{"width":35.0},"251":{"width":35.0},"252":{"width":35.0},"253":{"width":35.0},"254":{"width":35.0}}
@@ -0,0 +1 @@
1
+ {"0":{"width":35.0},"1":{"width":35.0},"2":{"width":35.0},"3":{"width":35.0},"4":{"width":35.0},"5":{"width":35.0},"6":{"width":35.0},"7":{"width":35.0},"8":{"width":0.0},"9":{"width":0.0},"10":{"width":0.0},"11":{"width":0.0},"12":{"width":0.0},"13":{"width":35.0},"14":{"width":35.0},"15":{"width":35.0},"16":{"width":35.0},"17":{"width":35.0},"18":{"width":35.0},"19":{"width":35.0},"20":{"width":35.0},"21":{"width":35.0},"22":{"width":35.0},"23":{"width":35.0},"24":{"width":35.0},"25":{"width":35.0},"26":{"width":35.0},"27":{"width":35.0},"28":{"width":35.0},"29":{"width":35.0},"30":{"width":35.0},"31":{"width":41.75},"32":{"width":20.0},"33":{"width":24.0},"34":{"width":33.0},"35":{"width":33.0},"36":{"width":53.0},"37":{"width":44.0},"38":{"width":13.0},"39":{"width":20.0},"40":{"width":20.0},"41":{"width":30.0},"42":{"width":33.0},"43":{"width":15.0},"44":{"width":18.0},"45":{"width":15.0},"46":{"width":17.0},"47":{"width":33.0},"48":{"width":33.0},"49":{"width":33.0},"50":{"width":33.0},"51":{"width":33.0},"52":{"width":33.0},"53":{"width":33.0},"54":{"width":33.0},"55":{"width":33.0},"56":{"width":33.0},"57":{"width":17.0},"58":{"width":17.0},"59":{"width":33.0},"60":{"width":33.0},"61":{"width":33.0},"62":{"width":28.0},"63":{"width":54.0},"64":{"width":42.0},"65":{"width":39.0},"66":{"width":36.0},"67":{"width":43.0},"68":{"width":37.0},"69":{"width":35.0},"70":{"width":42.0},"71":{"width":47.0},"72":{"width":22.0},"73":{"width":21.0},"74":{"width":43.0},"75":{"width":37.0},"76":{"width":55.0},"77":{"width":45.0},"78":{"width":44.0},"79":{"width":36.0},"80":{"width":44.0},"81":{"width":40.0},"82":{"width":32.0},"83":{"width":36.0},"84":{"width":42.0},"85":{"width":40.0},"86":{"width":62.0},"87":{"width":39.0},"88":{"width":38.0},"89":{"width":35.0},"90":{"width":21.0},"91":{"width":0.0},"92":{"width":21.0},"93":{"width":33.0},"94":{"width":28.0},"95":{"width":16.0},"96":{"width":33.0},"97":{"width":36.0},"98":{"width":29.0},"99":{"width":36.0},"100":{"width":32.0},"101":{"width":26.0},"102":{"width":32.0},"103":{"width":37.0},"104":{"width":19.0},"105":{"width":18.0},"106":{"width":35.0},"107":{"width":18.0},"108":{"width":56.0},"109":{"width":38.0},"110":{"width":34.0},"111":{"width":36.0},"112":{"width":36.0},"113":{"width":28.0},"114":{"width":27.0},"115":{"width":21.0},"116":{"width":37.0},"117":{"width":34.0},"118":{"width":51.0},"119":{"width":34.0},"120":{"width":34.0},"121":{"width":30.0},"122":{"width":25.0},"123":{"width":33.0},"124":{"width":25.0},"125":{"width":33.0},"126":{"width":35.0},"127":{"width":35.0},"128":{"width":35.0},"129":{"width":35.0},"130":{"width":35.0},"131":{"width":35.0},"132":{"width":35.0},"133":{"width":35.0},"134":{"width":35.0},"135":{"width":35.0},"136":{"width":35.0},"137":{"width":35.0},"138":{"width":35.0},"139":{"width":35.0},"140":{"width":35.0},"141":{"width":35.0},"142":{"width":35.0},"143":{"width":35.0},"144":{"width":35.0},"145":{"width":35.0},"146":{"width":35.0},"147":{"width":35.0},"148":{"width":35.0},"149":{"width":35.0},"150":{"width":35.0},"151":{"width":35.0},"152":{"width":35.0},"153":{"width":35.0},"154":{"width":35.0},"155":{"width":35.0},"156":{"width":35.0},"157":{"width":35.0},"158":{"width":35.0},"159":{"width":0.0},"160":{"width":20.0},"161":{"width":33.0},"162":{"width":33.0},"163":{"width":33.0},"164":{"width":33.0},"165":{"width":33.0},"166":{"width":32.0},"167":{"width":34.0},"168":{"width":50.0},"169":{"width":23.0},"170":{"width":30.0},"171":{"width":33.0},"172":{"width":18.0},"173":{"width":50.0},"174":{"width":28.0},"175":{"width":24.0},"176":{"width":33.0},"177":{"width":24.0},"178":{"width":24.0},"179":{"width":16.0},"180":{"width":36.0},"181":{"width":36.0},"182":{"width":15.0},"183":{"width":20.0},"184":{"width":24.0},"185":{"width":23.0},"186":{"width":30.0},"187":{"width":50.0},"188":{"width":50.0},"189":{"width":50.0},"190":{"width":28.0},"191":{"width":42.0},"192":{"width":42.0},"193":{"width":42.0},"194":{"width":42.0},"195":{"width":42.0},"196":{"width":42.0},"197":{"width":56.0},"198":{"width":36.0},"199":{"width":37.0},"200":{"width":37.0},"201":{"width":37.0},"202":{"width":37.0},"203":{"width":22.0},"204":{"width":22.0},"205":{"width":22.0},"206":{"width":22.0},"207":{"width":43.0},"208":{"width":45.0},"209":{"width":44.0},"210":{"width":44.0},"211":{"width":44.0},"212":{"width":44.0},"213":{"width":44.0},"214":{"width":33.0},"215":{"width":44.0},"216":{"width":42.0},"217":{"width":42.0},"218":{"width":42.0},"219":{"width":42.0},"220":{"width":38.0},"221":{"width":36.0},"222":{"width":38.0},"223":{"width":33.0},"224":{"width":33.0},"225":{"width":33.0},"226":{"width":33.0},"227":{"width":33.0},"228":{"width":33.0},"229":{"width":50.0},"230":{"width":29.0},"231":{"width":32.0},"232":{"width":32.0},"233":{"width":32.0},"234":{"width":32.0},"235":{"width":19.0},"236":{"width":19.0},"237":{"width":19.0},"238":{"width":19.0},"239":{"width":34.0},"240":{"width":38.0},"241":{"width":34.0},"242":{"width":34.0},"243":{"width":34.0},"244":{"width":34.0},"245":{"width":34.0},"246":{"width":33.0},"247":{"width":34.0},"248":{"width":37.0},"249":{"width":37.0},"250":{"width":37.0},"251":{"width":37.0},"252":{"width":34.0},"253":{"width":36.0},"254":{"width":34.0}}
@@ -0,0 +1 @@
1
+ {"0":{"width":35.0},"1":{"width":35.0},"2":{"width":35.0},"3":{"width":35.0},"4":{"width":35.0},"5":{"width":35.0},"6":{"width":35.0},"7":{"width":35.0},"8":{"width":0.0},"9":{"width":0.0},"10":{"width":0.0},"11":{"width":0.0},"12":{"width":0.0},"13":{"width":35.0},"14":{"width":35.0},"15":{"width":35.0},"16":{"width":35.0},"17":{"width":35.0},"18":{"width":35.0},"19":{"width":35.0},"20":{"width":35.0},"21":{"width":35.0},"22":{"width":35.0},"23":{"width":35.0},"24":{"width":35.0},"25":{"width":35.0},"26":{"width":35.0},"27":{"width":35.0},"28":{"width":35.0},"29":{"width":35.0},"30":{"width":35.0},"31":{"width":17.75},"32":{"width":16.0},"33":{"width":24.0},"34":{"width":38.0},"35":{"width":34.0},"36":{"width":49.0},"37":{"width":43.0},"38":{"width":13.0},"39":{"width":17.0},"40":{"width":17.0},"41":{"width":33.0},"42":{"width":34.0},"43":{"width":15.0},"44":{"width":19.0},"45":{"width":16.0},"46":{"width":22.0},"47":{"width":34.0},"48":{"width":34.0},"49":{"width":34.0},"50":{"width":34.0},"51":{"width":34.0},"52":{"width":34.0},"53":{"width":34.0},"54":{"width":34.0},"55":{"width":34.0},"56":{"width":34.0},"57":{"width":16.0},"58":{"width":16.0},"59":{"width":34.0},"60":{"width":34.0},"61":{"width":34.0},"62":{"width":25.0},"63":{"width":53.0},"64":{"width":38.0},"65":{"width":38.0},"66":{"width":37.0},"67":{"width":43.0},"68":{"width":33.0},"69":{"width":30.0},"70":{"width":43.0},"71":{"width":44.0},"72":{"width":16.0},"73":{"width":16.0},"74":{"width":37.0},"75":{"width":31.0},"76":{"width":53.0},"77":{"width":44.0},"78":{"width":46.0},"79":{"width":36.0},"80":{"width":46.0},"81":{"width":36.0},"82":{"width":32.0},"83":{"width":33.0},"84":{"width":43.0},"85":{"width":36.0},"86":{"width":54.0},"87":{"width":34.0},"88":{"width":33.0},"89":{"width":34.0},"90":{"width":19.0},"91":{"width":0.0},"92":{"width":19.0},"93":{"width":34.0},"94":{"width":26.0},"95":{"width":16.0},"96":{"width":33.0},"97":{"width":36.0},"98":{"width":28.0},"99":{"width":36.0},"100":{"width":33.0},"101":{"width":23.0},"102":{"width":32.0},"103":{"width":36.0},"104":{"width":15.0},"105":{"width":15.0},"106":{"width":31.0},"107":{"width":15.0},"108":{"width":55.0},"109":{"width":36.0},"110":{"width":36.0},"111":{"width":36.0},"112":{"width":36.0},"113":{"width":24.0},"114":{"width":28.0},"115":{"width":21.0},"116":{"width":36.0},"117":{"width":30.0},"118":{"width":46.0},"119":{"width":31.0},"120":{"width":30.0},"121":{"width":28.0},"122":{"width":22.0},"123":{"width":32.0},"124":{"width":22.0},"125":{"width":34.0},"126":{"width":35.0},"127":{"width":35.0},"128":{"width":35.0},"129":{"width":35.0},"130":{"width":35.0},"131":{"width":35.0},"132":{"width":35.0},"133":{"width":35.0},"134":{"width":35.0},"135":{"width":35.0},"136":{"width":35.0},"137":{"width":35.0},"138":{"width":35.0},"139":{"width":35.0},"140":{"width":35.0},"141":{"width":35.0},"142":{"width":35.0},"143":{"width":35.0},"144":{"width":35.0},"145":{"width":35.0},"146":{"width":35.0},"147":{"width":35.0},"148":{"width":35.0},"149":{"width":35.0},"150":{"width":35.0},"151":{"width":35.0},"152":{"width":35.0},"153":{"width":35.0},"154":{"width":35.0},"155":{"width":35.0},"156":{"width":35.0},"157":{"width":35.0},"158":{"width":35.0},"159":{"width":0.0},"160":{"width":16.0},"161":{"width":34.0},"162":{"width":34.0},"163":{"width":34.0},"164":{"width":34.0},"165":{"width":32.0},"166":{"width":30.0},"167":{"width":34.0},"168":{"width":49.0},"169":{"width":21.0},"170":{"width":29.0},"171":{"width":34.0},"172":{"width":19.0},"173":{"width":49.0},"174":{"width":30.0},"175":{"width":25.0},"176":{"width":34.0},"177":{"width":21.0},"178":{"width":21.0},"179":{"width":16.0},"180":{"width":36.0},"181":{"width":39.0},"182":{"width":16.0},"183":{"width":13.0},"184":{"width":21.0},"185":{"width":22.0},"186":{"width":29.0},"187":{"width":44.0},"188":{"width":45.0},"189":{"width":46.0},"190":{"width":25.0},"191":{"width":38.0},"192":{"width":38.0},"193":{"width":38.0},"194":{"width":38.0},"195":{"width":38.0},"196":{"width":38.0},"197":{"width":51.0},"198":{"width":37.0},"199":{"width":33.0},"200":{"width":33.0},"201":{"width":33.0},"202":{"width":33.0},"203":{"width":16.0},"204":{"width":17.0},"205":{"width":18.0},"206":{"width":17.0},"207":{"width":43.0},"208":{"width":44.0},"209":{"width":46.0},"210":{"width":46.0},"211":{"width":46.0},"212":{"width":46.0},"213":{"width":46.0},"214":{"width":34.0},"215":{"width":46.0},"216":{"width":43.0},"217":{"width":43.0},"218":{"width":43.0},"219":{"width":43.0},"220":{"width":33.0},"221":{"width":36.0},"222":{"width":37.0},"223":{"width":33.0},"224":{"width":33.0},"225":{"width":33.0},"226":{"width":33.0},"227":{"width":33.0},"228":{"width":33.0},"229":{"width":51.0},"230":{"width":28.0},"231":{"width":33.0},"232":{"width":33.0},"233":{"width":33.0},"234":{"width":33.0},"235":{"width":15.0},"236":{"width":16.0},"237":{"width":18.0},"238":{"width":16.0},"239":{"width":35.0},"240":{"width":36.0},"241":{"width":36.0},"242":{"width":36.0},"243":{"width":36.0},"244":{"width":36.0},"245":{"width":36.0},"246":{"width":34.0},"247":{"width":36.0},"248":{"width":36.0},"249":{"width":36.0},"250":{"width":36.0},"251":{"width":36.0},"252":{"width":30.0},"253":{"width":36.0},"254":{"width":30.0}}
@@ -0,0 +1 @@
1
+ {"0":{"width":40.0},"1":{"width":40.0},"2":{"width":40.0},"3":{"width":40.0},"4":{"width":40.0},"5":{"width":40.0},"6":{"width":40.0},"7":{"width":40.0},"8":{"width":0.0},"9":{"width":0.0},"10":{"width":0.0},"11":{"width":0.0},"12":{"width":0.0},"13":{"width":40.0},"14":{"width":40.0},"15":{"width":40.0},"16":{"width":40.0},"17":{"width":40.0},"18":{"width":40.0},"19":{"width":40.0},"20":{"width":40.0},"21":{"width":40.0},"22":{"width":40.0},"23":{"width":40.0},"24":{"width":40.0},"25":{"width":40.0},"26":{"width":40.0},"27":{"width":40.0},"28":{"width":40.0},"29":{"width":40.0},"30":{"width":40.0},"31":{"width":18.5},"32":{"width":12.0},"33":{"width":16.0},"34":{"width":29.0},"35":{"width":29.0},"36":{"width":53.0},"37":{"width":36.0},"38":{"width":8.0},"39":{"width":18.0},"40":{"width":15.0},"41":{"width":23.0},"42":{"width":24.0},"43":{"width":11.0},"44":{"width":18.0},"45":{"width":11.0},"46":{"width":22.0},"47":{"width":31.0},"48":{"width":22.0},"49":{"width":28.0},"50":{"width":28.0},"51":{"width":29.0},"52":{"width":28.0},"53":{"width":30.0},"54":{"width":23.0},"55":{"width":29.0},"56":{"width":30.0},"57":{"width":12.0},"58":{"width":13.0},"59":{"width":22.0},"60":{"width":24.0},"61":{"width":22.0},"62":{"width":29.0},"63":{"width":53.0},"64":{"width":29.0},"65":{"width":31.0},"66":{"width":30.0},"67":{"width":31.0},"68":{"width":24.0},"69":{"width":23.0},"70":{"width":32.0},"71":{"width":33.0},"72":{"width":15.0},"73":{"width":18.0},"74":{"width":30.0},"75":{"width":23.0},"76":{"width":39.0},"77":{"width":31.0},"78":{"width":32.0},"79":{"width":28.0},"80":{"width":32.0},"81":{"width":31.0},"82":{"width":28.0},"83":{"width":24.0},"84":{"width":32.0},"85":{"width":30.0},"86":{"width":43.0},"87":{"width":28.0},"88":{"width":28.0},"89":{"width":25.0},"90":{"width":20.0},"91":{"width":0.0},"92":{"width":18.0},"93":{"width":26.0},"94":{"width":21.0},"95":{"width":16.0},"96":{"width":24.0},"97":{"width":26.0},"98":{"width":24.0},"99":{"width":26.0},"100":{"width":25.0},"101":{"width":17.0},"102":{"width":27.0},"103":{"width":26.0},"104":{"width":14.0},"105":{"width":14.0},"106":{"width":26.0},"107":{"width":14.0},"108":{"width":40.0},"109":{"width":26.0},"110":{"width":25.0},"111":{"width":26.0},"112":{"width":26.0},"113":{"width":19.0},"114":{"width":22.0},"115":{"width":18.0},"116":{"width":26.0},"117":{"width":23.0},"118":{"width":35.0},"119":{"width":23.0},"120":{"width":23.0},"121":{"width":20.0},"122":{"width":18.0},"123":{"width":14.0},"124":{"width":19.0},"125":{"width":26.0},"126":{"width":40.0},"127":{"width":40.0},"128":{"width":40.0},"129":{"width":40.0},"130":{"width":40.0},"131":{"width":40.0},"132":{"width":40.0},"133":{"width":40.0},"134":{"width":40.0},"135":{"width":40.0},"136":{"width":40.0},"137":{"width":40.0},"138":{"width":40.0},"139":{"width":40.0},"140":{"width":40.0},"141":{"width":40.0},"142":{"width":40.0},"143":{"width":40.0},"144":{"width":40.0},"145":{"width":40.0},"146":{"width":40.0},"147":{"width":40.0},"148":{"width":40.0},"149":{"width":40.0},"150":{"width":40.0},"151":{"width":40.0},"152":{"width":40.0},"153":{"width":40.0},"154":{"width":40.0},"155":{"width":40.0},"156":{"width":40.0},"157":{"width":40.0},"158":{"width":40.0},"159":{"width":0.0},"160":{"width":12.0},"161":{"width":23.0},"162":{"width":23.0},"163":{"width":32.0},"164":{"width":28.0},"165":{"width":13.0},"166":{"width":25.0},"167":{"width":24.0},"168":{"width":51.0},"169":{"width":22.0},"170":{"width":27.0},"171":{"width":23.0},"172":{"width":40.0},"173":{"width":52.0},"174":{"width":17.0},"175":{"width":27.0},"176":{"width":24.0},"177":{"width":25.0},"178":{"width":25.0},"179":{"width":16.0},"180":{"width":26.0},"181":{"width":29.0},"182":{"width":10.0},"183":{"width":21.0},"184":{"width":20.0},"185":{"width":25.0},"186":{"width":28.0},"187":{"width":56.0},"188":{"width":56.0},"189":{"width":52.0},"190":{"width":28.0},"191":{"width":29.0},"192":{"width":29.0},"193":{"width":29.0},"194":{"width":29.0},"195":{"width":29.0},"196":{"width":29.0},"197":{"width":37.0},"198":{"width":30.0},"199":{"width":24.0},"200":{"width":24.0},"201":{"width":24.0},"202":{"width":24.0},"203":{"width":15.0},"204":{"width":16.0},"205":{"width":16.0},"206":{"width":16.0},"207":{"width":31.0},"208":{"width":31.0},"209":{"width":32.0},"210":{"width":32.0},"211":{"width":32.0},"212":{"width":32.0},"213":{"width":32.0},"214":{"width":23.0},"215":{"width":32.0},"216":{"width":32.0},"217":{"width":32.0},"218":{"width":32.0},"219":{"width":32.0},"220":{"width":28.0},"221":{"width":30.0},"222":{"width":30.0},"223":{"width":24.0},"224":{"width":24.0},"225":{"width":24.0},"226":{"width":24.0},"227":{"width":24.0},"228":{"width":24.0},"229":{"width":38.0},"230":{"width":24.0},"231":{"width":25.0},"232":{"width":25.0},"233":{"width":25.0},"234":{"width":25.0},"235":{"width":13.0},"236":{"width":15.0},"237":{"width":16.0},"238":{"width":16.0},"239":{"width":28.0},"240":{"width":26.0},"241":{"width":25.0},"242":{"width":25.0},"243":{"width":25.0},"244":{"width":25.0},"245":{"width":25.0},"246":{"width":20.0},"247":{"width":25.0},"248":{"width":26.0},"249":{"width":26.0},"250":{"width":26.0},"251":{"width":26.0},"252":{"width":23.0},"253":{"width":26.0},"254":{"width":23.0}}