jax 1.1.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (473) hide show
  1. data/.gitignore +4 -0
  2. data/.rvmrc +2 -3
  3. data/.travis.yml +8 -22
  4. data/README.md +2 -2
  5. data/Rakefile +128 -96
  6. data/app/assets/javascripts/jax/controller-list.js.coffee +22 -0
  7. data/app/assets/javascripts/jax/dom-helpers.js.coffee +17 -0
  8. data/app/assets/javascripts/jax/jasmine_runner.js +177 -0
  9. data/app/assets/javascripts/jax/runtime.js +6 -0
  10. data/app/assets/javascripts/jax/shader_editor.js.coffee +33 -0
  11. data/app/assets/stylesheets/jax/controller-list.css +5 -0
  12. data/app/assets/stylesheets/jax/jasmine.css +16 -0
  13. data/app/assets/stylesheets/jax/nav.css +41 -0
  14. data/app/assets/stylesheets/jax/runtime.css +47 -0
  15. data/app/assets/stylesheets/jax/shader_editor.css +3 -0
  16. data/app/assets/stylesheets/jax/suite.css +82 -0
  17. data/app/controllers/jax/suite_controller.rb +48 -0
  18. data/app/views/jax/suite/jasmine.html.erb +38 -0
  19. data/app/views/jax/suite/run_webgl.html.erb +49 -0
  20. data/app/views/jax/suite/shader_editor.html.erb +24 -0
  21. data/app/views/layouts/jax.html.erb +40 -0
  22. data/bin/jax +8 -4
  23. data/config/routes.rb +2 -0
  24. data/config.ru +5 -0
  25. data/features/rails/resources.feature +45 -0
  26. data/features/rails/shaders.feature +13 -0
  27. data/features/rails/specs.feature +24 -0
  28. data/features/runtime.feature +15 -0
  29. data/features/step_definitions/environment_steps.rb +15 -0
  30. data/features/step_definitions/response_steps.rb +13 -0
  31. data/features/step_definitions/runtime.rb +11 -0
  32. data/features/step_definitions/web_steps.rb +223 -0
  33. data/features/support/env.rb +75 -0
  34. data/features/support/paths.rb +30 -0
  35. data/features/support/rails_environment.rb +3 -0
  36. data/features/support/selectors.rb +39 -0
  37. data/features/support/setup.rb +17 -0
  38. data/jax.gemspec +22 -16
  39. data/lib/assets/javascripts/jax/anim_frame.js +64 -0
  40. data/lib/assets/javascripts/jax/application.js +16 -0
  41. data/lib/assets/javascripts/jax/builtin/all.js +21 -0
  42. data/lib/assets/javascripts/jax/builtin/meshes/cube.js +83 -0
  43. data/lib/assets/javascripts/jax/builtin/meshes/plane.js +67 -0
  44. data/lib/assets/javascripts/jax/builtin/meshes/quad.js +89 -0
  45. data/lib/assets/javascripts/jax/builtin/meshes/sphere.js +65 -0
  46. data/lib/assets/javascripts/jax/builtin/meshes/teapot.js +48 -0
  47. data/lib/assets/javascripts/jax/builtin/meshes/torus.js +64 -0
  48. data/lib/assets/javascripts/jax/compatibility.js +312 -0
  49. data/lib/assets/javascripts/jax/context.js +741 -0
  50. data/lib/assets/javascripts/jax/core/base.js +69 -0
  51. data/lib/assets/javascripts/jax/core/glMatrix_ext/mat3.js +20 -0
  52. data/lib/assets/javascripts/jax/core/glMatrix_ext/mat4.js +10 -0
  53. data/lib/assets/javascripts/jax/core/glMatrix_ext/quat4.js +148 -0
  54. data/lib/assets/javascripts/jax/core/glMatrix_ext/vec2.js +25 -0
  55. data/lib/assets/javascripts/jax/core/glMatrix_ext/vec3.js +86 -0
  56. data/lib/assets/javascripts/jax/core/glMatrix_ext/vec4.js +28 -0
  57. data/lib/assets/javascripts/jax/core/helper.js +44 -0
  58. data/lib/assets/javascripts/jax/core/math.js +61 -0
  59. data/lib/assets/javascripts/jax/core/matrix_stack.js +310 -0
  60. data/lib/assets/javascripts/jax/core/util.js +271 -0
  61. data/lib/assets/javascripts/jax/core.js +43 -0
  62. data/lib/assets/javascripts/jax/events.js +304 -0
  63. data/lib/assets/javascripts/jax/geometry/line.js +185 -0
  64. data/lib/assets/javascripts/jax/geometry/plane.js +371 -0
  65. data/lib/assets/javascripts/jax/geometry/triangle/inliner.rb +94 -0
  66. data/lib/assets/javascripts/jax/geometry/triangle/slow_tri_tri_intersect.js +20 -0
  67. data/lib/assets/javascripts/jax/geometry/triangle/tri_tri_intersect.js +281 -0
  68. data/lib/assets/javascripts/jax/geometry/triangle/tri_tri_intersect_optimized.js +564 -0
  69. data/lib/assets/javascripts/jax/geometry/triangle.js +311 -0
  70. data/lib/assets/javascripts/jax/geometry.js +14 -0
  71. data/lib/assets/javascripts/jax/mvc/controller.js +188 -0
  72. data/lib/assets/javascripts/jax/mvc/model.js +302 -0
  73. data/lib/assets/javascripts/jax/mvc/route_set.js +148 -0
  74. data/lib/assets/javascripts/jax/mvc/view.js +43 -0
  75. data/lib/assets/javascripts/jax/mvc/view_manager.js +65 -0
  76. data/lib/assets/javascripts/jax/noise.js +251 -0
  77. data/lib/assets/javascripts/jax/prototype/class.js +81 -0
  78. data/lib/assets/javascripts/jax/prototype/core.js +112 -0
  79. data/lib/assets/javascripts/jax/prototype/extensions.js +142 -0
  80. data/lib/assets/javascripts/jax/vendor/ejs.js +1 -0
  81. data/lib/assets/javascripts/jax/vendor/glMatrix.js +7 -0
  82. data/lib/assets/javascripts/jax/webgl/camera.js +697 -0
  83. data/lib/assets/javascripts/jax/webgl/cleanup.js +1 -0
  84. data/lib/assets/javascripts/jax/webgl/core/buffer.js +292 -0
  85. data/lib/assets/javascripts/jax/webgl/core/data_region.js +184 -0
  86. data/lib/assets/javascripts/jax/webgl/core/data_segment.js +255 -0
  87. data/lib/assets/javascripts/jax/webgl/core/events.js +99 -0
  88. data/lib/assets/javascripts/jax/webgl/core/framebuffer.js +316 -0
  89. data/lib/assets/javascripts/jax/webgl/core.js +6 -0
  90. data/lib/assets/javascripts/jax/webgl/material.js +381 -0
  91. data/lib/assets/javascripts/jax/webgl/mesh/normals.js +37 -0
  92. data/lib/assets/javascripts/jax/webgl/mesh/support.js +104 -0
  93. data/lib/assets/javascripts/jax/webgl/mesh/tangent_space.js +111 -0
  94. data/lib/assets/javascripts/jax/webgl/mesh.js +440 -0
  95. data/lib/assets/javascripts/jax/webgl/scene/frustum.js +422 -0
  96. data/lib/assets/javascripts/jax/webgl/scene/light_manager.js +141 -0
  97. data/lib/assets/javascripts/jax/webgl/scene/light_source.js +300 -0
  98. data/lib/assets/javascripts/jax/webgl/scene.js +16 -0
  99. data/lib/assets/javascripts/jax/webgl/shader/delegator/attribute.js +53 -0
  100. data/lib/assets/javascripts/jax/webgl/shader/delegator/uniform.js +71 -0
  101. data/lib/assets/javascripts/jax/webgl/shader/delegator.js +13 -0
  102. data/lib/assets/javascripts/jax/webgl/shader/manifest.js +70 -0
  103. data/lib/assets/javascripts/jax/webgl/shader/program.js +138 -0
  104. data/lib/assets/javascripts/jax/webgl/shader.js +299 -0
  105. data/lib/assets/javascripts/jax/webgl/shader_chain.js +267 -0
  106. data/lib/assets/javascripts/jax/webgl/texture.js +506 -0
  107. data/lib/assets/javascripts/jax/webgl/world.js +279 -0
  108. data/lib/assets/javascripts/jax/webgl.js +109 -0
  109. data/lib/assets/javascripts/jax.js +136 -0
  110. data/{builtin/app/shaders/basic/common.ejs → lib/assets/javascripts/shaders/basic/common.glsl} +0 -0
  111. data/{builtin/app/shaders/basic/fragment.ejs → lib/assets/javascripts/shaders/basic/fragment.glsl} +0 -0
  112. data/{builtin/app/shaders/basic/vertex.ejs → lib/assets/javascripts/shaders/basic/vertex.glsl} +1 -1
  113. data/{builtin/app/shaders/depthmap/common.ejs → lib/assets/javascripts/shaders/depthmap/common.glsl} +0 -0
  114. data/{builtin/app/shaders/depthmap/fragment.ejs → lib/assets/javascripts/shaders/depthmap/fragment.glsl} +1 -1
  115. data/{builtin/app → lib/assets/javascripts}/shaders/depthmap/material.js +0 -0
  116. data/{builtin/app/shaders/depthmap/vertex.ejs → lib/assets/javascripts/shaders/depthmap/vertex.glsl} +0 -0
  117. data/{builtin/app/shaders/fog/common.ejs → lib/assets/javascripts/shaders/fog/common.glsl} +0 -0
  118. data/{builtin/app/shaders/fog/fragment.ejs → lib/assets/javascripts/shaders/fog/fragment.glsl} +0 -0
  119. data/{builtin/app → lib/assets/javascripts}/shaders/fog/manifest.yml +0 -0
  120. data/{builtin/app → lib/assets/javascripts}/shaders/fog/material.js +6 -8
  121. data/{builtin/app/shaders/fog/vertex.ejs → lib/assets/javascripts/shaders/fog/vertex.glsl} +0 -0
  122. data/{builtin/app/shaders/functions/depth_map.ejs → lib/assets/javascripts/shaders/functions/depth_map.glsl} +0 -0
  123. data/{builtin/app/shaders/functions/lights.ejs → lib/assets/javascripts/shaders/functions/lights.glsl} +0 -0
  124. data/{builtin/app/shaders/functions/noise.ejs → lib/assets/javascripts/shaders/functions/noise.glsl} +0 -0
  125. data/lib/assets/javascripts/shaders/lighting/common.glsl +5 -0
  126. data/{builtin/app/shaders/lighting/fragment.ejs → lib/assets/javascripts/shaders/lighting/fragment.glsl} +0 -0
  127. data/{builtin/app → lib/assets/javascripts}/shaders/lighting/manifest.yml +0 -0
  128. data/{builtin/app → lib/assets/javascripts}/shaders/lighting/material.js +2 -4
  129. data/{builtin/app/shaders/lighting/vertex.ejs → lib/assets/javascripts/shaders/lighting/vertex.glsl} +0 -0
  130. data/{builtin/app/shaders/normal_map/common.ejs → lib/assets/javascripts/shaders/normal_map/common.glsl} +1 -1
  131. data/{builtin/app/shaders/normal_map/fragment.ejs → lib/assets/javascripts/shaders/normal_map/fragment.glsl} +0 -0
  132. data/{builtin/app → lib/assets/javascripts}/shaders/normal_map/manifest.yml +0 -0
  133. data/lib/assets/javascripts/shaders/normal_map/material.js +11 -0
  134. data/{builtin/app/shaders/normal_map/vertex.ejs → lib/assets/javascripts/shaders/normal_map/vertex.glsl} +0 -0
  135. data/{builtin/app/shaders/paraboloid/common.ejs → lib/assets/javascripts/shaders/paraboloid/common.glsl} +0 -0
  136. data/{builtin/app/shaders/paraboloid/fragment.ejs → lib/assets/javascripts/shaders/paraboloid/fragment.glsl} +0 -0
  137. data/{builtin/app → lib/assets/javascripts}/shaders/paraboloid/manifest.yml +0 -0
  138. data/{builtin/app → lib/assets/javascripts}/shaders/paraboloid/material.js +2 -4
  139. data/{builtin/app/shaders/paraboloid/vertex.ejs → lib/assets/javascripts/shaders/paraboloid/vertex.glsl} +0 -0
  140. data/{builtin/app/shaders/picking/common.ejs → lib/assets/javascripts/shaders/picking/common.glsl} +0 -0
  141. data/{builtin/app/shaders/picking/fragment.ejs → lib/assets/javascripts/shaders/picking/fragment.glsl} +0 -0
  142. data/{builtin/app → lib/assets/javascripts}/shaders/picking/material.js +2 -4
  143. data/{builtin/app/shaders/picking/vertex.ejs → lib/assets/javascripts/shaders/picking/vertex.glsl} +0 -0
  144. data/{builtin/app/shaders/shadow_map/common.ejs → lib/assets/javascripts/shaders/shadow_map/common.glsl} +2 -1
  145. data/{builtin/app/shaders/shadow_map/fragment.ejs → lib/assets/javascripts/shaders/shadow_map/fragment.glsl} +1 -1
  146. data/{builtin/app → lib/assets/javascripts}/shaders/shadow_map/manifest.yml +0 -0
  147. data/{builtin/app → lib/assets/javascripts}/shaders/shadow_map/material.js +4 -6
  148. data/{builtin/app/shaders/shadow_map/vertex.ejs → lib/assets/javascripts/shaders/shadow_map/vertex.glsl} +0 -0
  149. data/{builtin/app/shaders/texture/common.ejs → lib/assets/javascripts/shaders/texture/common.glsl} +0 -0
  150. data/{builtin/app/shaders/texture/fragment.ejs → lib/assets/javascripts/shaders/texture/fragment.glsl} +0 -0
  151. data/{builtin/app → lib/assets/javascripts}/shaders/texture/manifest.yml +0 -0
  152. data/lib/assets/javascripts/shaders/texture/material.js +17 -0
  153. data/{builtin/app/shaders/texture/vertex.ejs → lib/assets/javascripts/shaders/texture/vertex.glsl} +0 -0
  154. data/lib/generators/jax/all.rb +16 -0
  155. data/lib/generators/jax/application/application_generator.rb +48 -0
  156. data/lib/generators/jax/base/actions.rb +52 -0
  157. data/lib/generators/jax/base/coffee_generator.rb +30 -0
  158. data/lib/generators/jax/base/named_base.rb +17 -0
  159. data/lib/generators/jax/base/plugin_base.rb +108 -0
  160. data/lib/generators/jax/base/plugin_credentials.rb +99 -0
  161. data/lib/generators/jax/base/plugin_manifest.rb +75 -0
  162. data/lib/generators/jax/base/rails_base.rb +30 -0
  163. data/lib/generators/jax/base/source_root.rb +5 -0
  164. data/lib/generators/jax/controller/controller_generator.rb +37 -0
  165. data/lib/generators/jax/helper/helper_generator.rb +30 -0
  166. data/lib/generators/jax/install/install_generator.rb +27 -0
  167. data/lib/generators/jax/jax_generator.rb +13 -0
  168. data/lib/generators/jax/light/light_generator.rb +23 -0
  169. data/lib/{jax/generators → generators/jax}/material/USAGE +4 -8
  170. data/lib/generators/jax/material/material_generator.rb +112 -0
  171. data/lib/generators/jax/model/model_generator.rb +24 -0
  172. data/lib/generators/jax/plugin/plugin_generator.rb +72 -0
  173. data/lib/generators/jax/scaffold/scaffold_generator.rb +35 -0
  174. data/lib/generators/jax/shader/shader_generator.rb +38 -0
  175. data/lib/jax/commands/plugin_manager.rb +240 -0
  176. data/lib/jax/commands.rb +69 -0
  177. data/lib/jax/configuration.rb +64 -0
  178. data/lib/jax/directive_processor.rb +53 -0
  179. data/lib/jax/engine.rb +38 -54
  180. data/lib/jax/helper_methods.rb +3 -0
  181. data/lib/jax/rails/application.rb +34 -0
  182. data/lib/jax/resource_file.rb +29 -0
  183. data/lib/jax/script_loader.rb +68 -0
  184. data/lib/jax/server.rb +87 -0
  185. data/lib/jax/shader.rb +70 -172
  186. data/lib/jax/testing/rails_environment.rb +94 -0
  187. data/lib/jax/util/tar.rb +75 -0
  188. data/lib/jax/util.rb +3 -0
  189. data/lib/jax/version.rb +7 -8
  190. data/lib/jax.rb +23 -41
  191. data/spec/bin/jax_spec.rb +149 -0
  192. data/{lib/jax/generators/app/templates/app/models/.empty_directory → spec/fixtures/public/favicon.ico} +0 -0
  193. data/spec/fixtures/public/textures/brickwall.jpg +0 -0
  194. data/spec/fixtures/public/textures/jacks.jpg +0 -0
  195. data/spec/fixtures/public/textures/normal_map.jpg +0 -0
  196. data/spec/fixtures/public/textures/rock.png +0 -0
  197. data/spec/fixtures/public/textures/rock_normal.png +0 -0
  198. data/spec/fixtures/public/textures/rss.png +0 -0
  199. data/spec/generators/jax/application_generator_spec.rb +18 -0
  200. data/spec/generators/jax/controller_generator_spec.rb +102 -0
  201. data/spec/generators/jax/helper_generator_spec.rb +55 -0
  202. data/spec/generators/jax/install_generator_spec.rb +30 -0
  203. data/spec/generators/jax/jax_generator_spec.rb +21 -0
  204. data/spec/generators/jax/light_generator_spec.rb +27 -0
  205. data/spec/generators/jax/material_generator_spec.rb +62 -0
  206. data/spec/generators/jax/model_generator_spec.rb +72 -0
  207. data/spec/generators/jax/plugin_generator_spec.rb +143 -0
  208. data/spec/generators/jax/scaffold_generator_spec.rb +35 -0
  209. data/spec/generators/jax/shader_generator_spec.rb +37 -0
  210. data/spec/javascripts/helpers/jasmine_webgl_helper.js +13 -0
  211. data/{lib/jax/generators/app/templates/spec/javascripts/support/spec_helpers → spec/javascripts/helpers}/jax_spec_environment_helper.js +7 -2
  212. data/{lib/jax/generators/app/templates/spec/javascripts/support/spec_helpers → spec/javascripts/helpers}/jax_spec_helper.js +0 -0
  213. data/spec/javascripts/jax/builtin/meshes/cube_spec.js +10 -0
  214. data/spec/javascripts/jax/builtin/meshes/plane_spec.js +8 -0
  215. data/spec/javascripts/jax/builtin/meshes/quad_spec.js +8 -0
  216. data/spec/javascripts/jax/builtin/meshes/sphere_spec.js +8 -0
  217. data/spec/javascripts/jax/builtin/meshes/teapot_spec.js +8 -0
  218. data/spec/javascripts/jax/builtin/meshes/torus_spec.js +8 -0
  219. data/spec/javascripts/jax/compatibility_spec.js +46 -0
  220. data/spec/javascripts/jax/context_events_spec.js +212 -0
  221. data/spec/javascripts/jax/context_spec.js +305 -0
  222. data/spec/javascripts/jax/core/data_region_spec.js +118 -0
  223. data/spec/javascripts/jax/core/data_segment_spec.js +96 -0
  224. data/spec/javascripts/jax/core/delegation_spec.js +48 -0
  225. data/spec/javascripts/jax/core/events_spec.js +17 -0
  226. data/spec/javascripts/jax/core/glMatrix_extensions_spec.js +8 -0
  227. data/spec/javascripts/jax/core/helper_spec.js +61 -0
  228. data/spec/javascripts/jax/core/matrix_stack_spec.js +28 -0
  229. data/spec/javascripts/jax/core/utils_spec.js +275 -0
  230. data/spec/javascripts/jax/geometry/line_spec.js +20 -0
  231. data/spec/javascripts/jax/geometry/plane_spec.js +181 -0
  232. data/spec/javascripts/jax/geometry/triangle_spec.js +105 -0
  233. data/spec/javascripts/jax/mvc/controller_spec.js +156 -0
  234. data/spec/javascripts/jax/mvc/model_spec.js +93 -0
  235. data/spec/javascripts/jax/mvc/route_set_spec.js +49 -0
  236. data/spec/javascripts/jax/mvc/view_manager_spec.js +17 -0
  237. data/spec/javascripts/jax/noise_spec.js +50 -0
  238. data/spec/javascripts/jax/optimizations/material_limitations_spec.js +85 -0
  239. data/spec/javascripts/jax/optimizations/shaders/basic_spec.js +65 -0
  240. data/spec/javascripts/jax/prototype/extensions_spec.js +34 -0
  241. data/spec/javascripts/jax/webgl/camera_spec.js +237 -0
  242. data/spec/javascripts/jax/webgl/core/events_spec.js +47 -0
  243. data/spec/javascripts/jax/webgl/framebuffer_spec.js +44 -0
  244. data/spec/javascripts/jax/webgl/lighting_spec.js +108 -0
  245. data/spec/javascripts/jax/webgl/material_spec.js +117 -0
  246. data/spec/javascripts/jax/webgl/mesh_spec.js +228 -0
  247. data/spec/javascripts/jax/webgl/shader/manifest_spec.js +57 -0
  248. data/spec/javascripts/jax/webgl/shader_chain_spec.js +211 -0
  249. data/spec/javascripts/jax/webgl/shader_spec.js +276 -0
  250. data/spec/javascripts/jax/webgl/tangent_space_spec.js +142 -0
  251. data/spec/javascripts/jax/webgl/texture_spec.js +159 -0
  252. data/spec/javascripts/jax/webgl_spec.js +5 -0
  253. data/spec/javascripts/jax/world_spec.js +175 -0
  254. data/spec/javascripts/jax_spec.js +14 -0
  255. data/spec/javascripts/node/mocks/webgl.js +159 -0
  256. data/spec/javascripts/node_helper.js +51 -0
  257. data/spec/javascripts/shaders/core_materials_spec.js +38 -0
  258. data/spec/javascripts/shaders/fog_spec.js +15 -0
  259. data/spec/javascripts/shaders/lighting_spec.js +15 -0
  260. data/spec/javascripts/shaders/normal_map_spec.js +15 -0
  261. data/spec/javascripts/shaders/paraboloid_spec.js +33 -0
  262. data/spec/javascripts/shaders/preprocessor_spec.js +45 -0
  263. data/spec/javascripts/shaders/shadow_map_spec.js +15 -0
  264. data/spec/javascripts/shaders/texture_spec.js +37 -0
  265. data/spec/javascripts/suite/controller_select_spec.js.coffee +24 -0
  266. data/spec/lib/jax/commands/plugin_manager/credentials_spec.rb +56 -0
  267. data/spec/lib/jax/commands/plugin_manager/push_spec.rb +62 -0
  268. data/spec/lib/jax/commands/plugin_manager_spec.rb +204 -0
  269. data/spec/lib/jax/rails/application_spec.rb +23 -0
  270. data/spec/lib/jax/shader_spec.rb +67 -0
  271. data/spec/lib/jax/util/tar_spec.rb +26 -0
  272. data/spec/{test_helper.rb → spec_helper.rb} +37 -28
  273. data/spec/support/test_model_generator.rb +14 -0
  274. data/templates/app/Gemfile.tt +17 -0
  275. data/templates/app/Rakefile +4 -0
  276. data/templates/app/config/application.rb +16 -0
  277. data/{lib/jax/generators/app/templates → templates/app}/config/boot.rb +0 -0
  278. data/templates/app/config/environment.rb +5 -0
  279. data/templates/app/config/environments/production.rb +4 -0
  280. data/templates/app/config.ru +6 -0
  281. data/{lib/jax/generators/app/templates/app/resources → templates/app/public}/.empty_directory +0 -0
  282. data/templates/app/script/jax +8 -0
  283. data/{lib/jax/generators/app/templates/app/views → templates/app/spec}/.empty_directory +0 -0
  284. data/templates/application_controller.js.coffee.erb +3 -0
  285. data/templates/application_controller.js.erb +6 -0
  286. data/templates/application_helper.js.coffee.erb +3 -0
  287. data/templates/application_helper.js.erb +3 -0
  288. data/templates/controller.js.coffee.erb +9 -0
  289. data/templates/controller.js.erb +15 -0
  290. data/templates/controller_spec.js.coffee.erb +9 -0
  291. data/templates/controller_spec.js.erb +12 -0
  292. data/templates/helper.js.coffee.erb +2 -0
  293. data/templates/helper.js.erb +3 -0
  294. data/templates/helper_spec.js.coffee.erb +8 -0
  295. data/templates/helper_spec.js.erb +12 -0
  296. data/{lib/jax/generators/light_source/templates/light.yml.tt → templates/light_source.resource.erb} +3 -3
  297. data/{lib/jax/generators/material/templates/material.yml.tt → templates/material.resource.erb} +0 -9
  298. data/templates/model.js.coffee.erb +3 -0
  299. data/templates/model.js.erb +5 -0
  300. data/templates/model_defaults.resource.erb +5 -0
  301. data/templates/model_spec.js.coffee.erb +16 -0
  302. data/templates/model_spec.js.erb +18 -0
  303. data/{lib/jax/generators/plugin/templates/new_plugin/app → templates/new_plugin/app/assets/jax}/controllers/.empty_directory +0 -0
  304. data/{lib/jax/generators/plugin/templates/new_plugin/app → templates/new_plugin/app/assets/jax}/helpers/.empty_directory +0 -0
  305. data/{lib/jax/generators/plugin/templates/new_plugin/app → templates/new_plugin/app/assets/jax}/models/.empty_directory +0 -0
  306. data/{lib/jax/generators/plugin/templates/new_plugin/app → templates/new_plugin/app/assets/jax}/resources/.empty_directory +0 -0
  307. data/{lib/jax/generators/plugin/templates/new_plugin/app → templates/new_plugin/app/assets/jax}/views/.empty_directory +0 -0
  308. data/{lib/jax/generators/plugin/templates → templates}/new_plugin/init.rb +0 -0
  309. data/{lib/jax/generators/plugin/templates → templates}/new_plugin/install.rb +0 -0
  310. data/{lib/jax/generators/plugin/templates/new_plugin/public → templates/new_plugin/spec}/.empty_directory +0 -0
  311. data/{lib/jax/generators/plugin/templates → templates}/new_plugin/uninstall.rb +0 -0
  312. data/{lib/jax/generators/shader/templates/common.ejs.tt → templates/shader_common.glsl.erb} +0 -0
  313. data/{lib/jax/generators/shader/templates/fragment.ejs.tt → templates/shader_fragment.glsl.erb} +0 -0
  314. data/{lib/jax/generators/shader/templates/manifest.yml.tt → templates/shader_manifest.yml.erb} +0 -0
  315. data/templates/shader_material.js.coffee.erb +22 -0
  316. data/{lib/jax/generators/shader/templates/material.js.tt → templates/shader_material.js.erb} +0 -0
  317. data/templates/shader_spec.js.coffee.erb +16 -0
  318. data/{lib/jax/generators/shader/templates/spec.js.tt → templates/shader_spec.js.erb} +1 -1
  319. data/{lib/jax/generators/shader/templates/vertex.ejs.tt → templates/shader_vertex.glsl.erb} +0 -0
  320. data/templates/view.js.coffee.erb +3 -0
  321. data/{lib/jax/generators/controller/templates/view.js.tt → templates/view.js.erb} +1 -1
  322. data/vendor/assets/javascripts/ejs.js +505 -0
  323. data/vendor/assets/javascripts/glMatrix.js +1772 -0
  324. data/vendor/assets/javascripts/jasmine.js +2476 -0
  325. data/vendor/assets/stylesheets/jasmine.css +166 -0
  326. data/vendor/pdoc_template/html/assets/images/pdoc/alias.png +0 -0
  327. data/vendor/pdoc_template/html/assets/images/pdoc/class.png +0 -0
  328. data/vendor/pdoc_template/html/assets/images/pdoc/class_deprecated.png +0 -0
  329. data/vendor/pdoc_template/html/assets/images/pdoc/class_method.png +0 -0
  330. data/vendor/pdoc_template/html/assets/images/pdoc/class_property.png +0 -0
  331. data/vendor/pdoc_template/html/assets/images/pdoc/constant.png +0 -0
  332. data/vendor/pdoc_template/html/assets/images/pdoc/constructor.png +0 -0
  333. data/vendor/pdoc_template/html/assets/images/pdoc/deprecated.png +0 -0
  334. data/vendor/pdoc_template/html/assets/images/pdoc/description.png +0 -0
  335. data/vendor/pdoc_template/html/assets/images/pdoc/information.png +0 -0
  336. data/vendor/pdoc_template/html/assets/images/pdoc/instance_method.png +0 -0
  337. data/vendor/pdoc_template/html/assets/images/pdoc/instance_property.png +0 -0
  338. data/vendor/pdoc_template/html/assets/images/pdoc/method.png +0 -0
  339. data/vendor/pdoc_template/html/assets/images/pdoc/method_deprecated.png +0 -0
  340. data/vendor/pdoc_template/html/assets/images/pdoc/mixin.png +0 -0
  341. data/vendor/pdoc_template/html/assets/images/pdoc/namespace.png +0 -0
  342. data/vendor/pdoc_template/html/assets/images/pdoc/property.png +0 -0
  343. data/vendor/pdoc_template/html/assets/images/pdoc/related_to.png +0 -0
  344. data/vendor/pdoc_template/html/assets/images/pdoc/search-background.png +0 -0
  345. data/vendor/pdoc_template/html/assets/images/pdoc/section-background.png +0 -0
  346. data/vendor/pdoc_template/html/assets/images/pdoc/section.png +0 -0
  347. data/vendor/pdoc_template/html/assets/images/pdoc/selected-section-background.png +0 -0
  348. data/vendor/pdoc_template/html/assets/images/pdoc/subclass.png +0 -0
  349. data/vendor/pdoc_template/html/assets/images/pdoc/superclass.png +0 -0
  350. data/vendor/pdoc_template/html/assets/images/pdoc/utility.png +0 -0
  351. data/vendor/pdoc_template/html/assets/javascripts/pdoc/application.js +478 -0
  352. data/vendor/pdoc_template/html/assets/javascripts/pdoc/prototype.js +4874 -0
  353. data/vendor/pdoc_template/html/assets/javascripts/pdoc/tabs.js +506 -0
  354. data/vendor/pdoc_template/html/assets/stylesheets/jax.css +30 -0
  355. data/vendor/pdoc_template/html/assets/stylesheets/pdoc/api.css +681 -0
  356. data/vendor/pdoc_template/html/assets/stylesheets/pdoc/pygments.css +62 -0
  357. data/vendor/pdoc_template/html/helpers.rb +35 -0
  358. data/vendor/pdoc_template/html/index.erb +18 -0
  359. data/vendor/pdoc_template/html/item_index.js.erb +6 -0
  360. data/vendor/pdoc_template/html/layout.erb +67 -0
  361. data/vendor/pdoc_template/html/leaf.erb +22 -0
  362. data/vendor/pdoc_template/html/node.erb +30 -0
  363. data/vendor/pdoc_template/html/partials/class_relationships.erb +19 -0
  364. data/vendor/pdoc_template/html/partials/classes.erb +7 -0
  365. data/vendor/pdoc_template/html/partials/constructor.erb +5 -0
  366. data/vendor/pdoc_template/html/partials/description.erb +5 -0
  367. data/vendor/pdoc_template/html/partials/link_list.erb +1 -0
  368. data/vendor/pdoc_template/html/partials/method_signatures.erb +14 -0
  369. data/vendor/pdoc_template/html/partials/methodized_note.erb +9 -0
  370. data/vendor/pdoc_template/html/partials/mixins.erb +7 -0
  371. data/vendor/pdoc_template/html/partials/namespaces.erb +7 -0
  372. data/vendor/pdoc_template/html/partials/related_utilities.erb +5 -0
  373. data/vendor/pdoc_template/html/partials/relationships.erb +11 -0
  374. data/vendor/pdoc_template/html/partials/short_description_list.erb +7 -0
  375. data/vendor/pdoc_template/html/partials/title.erb +24 -0
  376. data/vendor/pdoc_template/html/section.erb +18 -0
  377. metadata +635 -332
  378. data/builtin/app/shaders/lighting/common.ejs +0 -5
  379. data/builtin/app/shaders/normal_map/material.js +0 -16
  380. data/builtin/app/shaders/texture/material.js +0 -18
  381. data/jax.gems +0 -1
  382. data/lib/jax/application/builtin/configurable.rb +0 -5
  383. data/lib/jax/application/builtin/configuration.rb +0 -5
  384. data/lib/jax/application/builtin.rb +0 -12
  385. data/lib/jax/application/configurable.rb +0 -19
  386. data/lib/jax/application/configuration.rb +0 -60
  387. data/lib/jax/application/railties.rb +0 -26
  388. data/lib/jax/application.rb +0 -149
  389. data/lib/jax/core_ext/kernel.rb +0 -7
  390. data/lib/jax/engine/configurable.rb +0 -19
  391. data/lib/jax/engine/configuration.rb +0 -49
  392. data/lib/jax/generators/app/app_generator.rb +0 -96
  393. data/lib/jax/generators/app/templates/Gemfile.tt +0 -3
  394. data/lib/jax/generators/app/templates/Rakefile +0 -6
  395. data/lib/jax/generators/app/templates/app/controllers/application_controller.js.tt +0 -5
  396. data/lib/jax/generators/app/templates/app/helpers/application_helper.js.tt +0 -3
  397. data/lib/jax/generators/app/templates/config/application.rb.tt +0 -6
  398. data/lib/jax/generators/app/templates/config/environment.rb.tt +0 -5
  399. data/lib/jax/generators/app/templates/config/routes.rb.tt +0 -5
  400. data/lib/jax/generators/app/templates/public/index.html.tt +0 -26
  401. data/lib/jax/generators/app/templates/public/javascripts/jax.js +0 -9462
  402. data/lib/jax/generators/app/templates/public/stylesheets/%file_name%.css.tt +0 -11
  403. data/lib/jax/generators/app/templates/public/webgl_not_supported.html +0 -26
  404. data/lib/jax/generators/app/templates/script/jax +0 -7
  405. data/lib/jax/generators/app/templates/spec/javascripts/controllers/application_controller_spec.js +0 -11
  406. data/lib/jax/generators/app/templates/spec/javascripts/helpers/application_helper_spec.js +0 -12
  407. data/lib/jax/generators/app/templates/spec/javascripts/support/jasmine.yml +0 -91
  408. data/lib/jax/generators/app/templates/spec/javascripts/support/jasmine_config.rb +0 -23
  409. data/lib/jax/generators/app/templates/spec/javascripts/support/jasmine_runner.rb +0 -32
  410. data/lib/jax/generators/app/templates/spec/javascripts/support/spec_layout.html.erb +0 -104
  411. data/lib/jax/generators/app.rb +0 -18
  412. data/lib/jax/generators/commands.rb +0 -220
  413. data/lib/jax/generators/controller/USAGE +0 -9
  414. data/lib/jax/generators/controller/controller_generator.rb +0 -66
  415. data/lib/jax/generators/controller/templates/controller_source.js.tt +0 -16
  416. data/lib/jax/generators/controller/templates/controller_test.js.tt +0 -11
  417. data/lib/jax/generators/controller/templates/helper.js.tt +0 -3
  418. data/lib/jax/generators/controller/templates/helper_test.js.tt +0 -12
  419. data/lib/jax/generators/interactions.rb +0 -56
  420. data/lib/jax/generators/light_source/USAGE +0 -14
  421. data/lib/jax/generators/light_source/light_source_generator.rb +0 -46
  422. data/lib/jax/generators/material/material_generator.rb +0 -80
  423. data/lib/jax/generators/material/templates/append.yml.tt +0 -7
  424. data/lib/jax/generators/model/USAGE +0 -5
  425. data/lib/jax/generators/model/model_generator.rb +0 -40
  426. data/lib/jax/generators/model/templates/model.js.tt +0 -11
  427. data/lib/jax/generators/model/templates/test.js.tt +0 -11
  428. data/lib/jax/generators/packager/package_generator.rb +0 -32
  429. data/lib/jax/generators/plugin/USAGE +0 -4
  430. data/lib/jax/generators/plugin/all.rb +0 -113
  431. data/lib/jax/generators/plugin/credentials.rb +0 -108
  432. data/lib/jax/generators/plugin/plugin_generator.rb +0 -72
  433. data/lib/jax/generators/plugin/plugin_manager.rb +0 -254
  434. data/lib/jax/generators/plugin/templates/new_plugin/config/routes.rb +0 -3
  435. data/lib/jax/generators/plugin/templates/new_plugin/spec/.empty_directory +0 -0
  436. data/lib/jax/generators/script_jax_loader.rb +0 -49
  437. data/lib/jax/generators/shader/USAGE +0 -4
  438. data/lib/jax/generators/shader/shader_generator.rb +0 -70
  439. data/lib/jax/monkeypatch/jasmine/config.rb +0 -45
  440. data/lib/jax/monkeypatch/jasmine/server.rb +0 -50
  441. data/lib/jax/monkeypatch/jasmine.rb +0 -3
  442. data/lib/jax/packager/sprockets_template.rb +0 -77
  443. data/lib/jax/packager.rb +0 -59
  444. data/lib/jax/plugin/manifest.rb +0 -71
  445. data/lib/jax/plugin.rb +0 -49
  446. data/lib/jax/resource_compiler.rb +0 -60
  447. data/lib/jax/routes.rb +0 -62
  448. data/lib/jax/tasks/rake.rb +0 -38
  449. data/spec/benchmark.htm +0 -93
  450. data/spec/generators/app_generator_test.rb +0 -42
  451. data/spec/generators/controller_generator_test.rb +0 -47
  452. data/spec/generators/light_generator_test.rb +0 -37
  453. data/spec/generators/material_generator_test.rb +0 -22
  454. data/spec/generators/model_generator_test.rb +0 -26
  455. data/spec/generators/plugin_generator_test.rb +0 -114
  456. data/spec/generators/plugin_manager/push_test.rb +0 -59
  457. data/spec/generators/plugin_manager_test.rb +0 -192
  458. data/spec/generators/shader_generator_test.rb +0 -38
  459. data/spec/javascripts/support/jasmine.yml +0 -85
  460. data/spec/javascripts/support/jasmine_runner.rb +0 -32
  461. data/spec/lib/jax/application_test.rb +0 -18
  462. data/spec/lib/jax/generators/plugin/credentials_test.rb +0 -72
  463. data/spec/lib/jax/packager_test.rb +0 -87
  464. data/spec/lib/jax/plugin_test.rb +0 -27
  465. data/spec/lib/jax/reloading_test.rb +0 -23
  466. data/spec/lib/jax/routes_test.rb +0 -28
  467. data/spec/lib/jax/shader_test.rb +0 -29
  468. data/spec/lib/jax/tasks/jax_rake_test.rb +0 -85
  469. data/spec/support/bases/generator_test_case.rb +0 -108
  470. data/spec/support/bases/isolated_test_case.rb +0 -148
  471. data/spec/support/file_exist_matcher.rb +0 -23
  472. data/spec/support/spec_shell.rb +0 -110
  473. data/spec/test_app.rb +0 -3
@@ -0,0 +1,181 @@
1
+ describe("Jax.Geometry.Plane", function() {
2
+ describe("constructor", function() {
3
+ it("should build the same plane from point and normal as from 3 points", function() {
4
+ var p1 = new Jax.Geometry.Plane([0,1,0], [-1,0,0], [1,0,0]);
5
+ var p2 = new Jax.Geometry.Plane([0,0,0], [0,0,1]);
6
+
7
+ expect(p1.normal).toEqualVector(p2.normal);
8
+ expect(p1.d).toEqual(p2.d);
9
+ })
10
+ });
11
+
12
+ it('should be able to reconstruct itself using point and normal getters', function() {
13
+ var p = new Jax.Geometry.Plane([0,1,0], [-1,0,0], [1,0,0]);
14
+ var p2 = new Jax.Geometry.Plane(p.point, p.normal);
15
+ expect(p.normal).toEqualVector(p2.normal);
16
+ expect(p.d).toEqual(p2.d);
17
+ });
18
+
19
+ describe("intersections", function() {
20
+ var p;
21
+
22
+ beforeEach(function() {
23
+ p = new Jax.Geometry.Plane([0,1,0], [-1,0,0], [1,0,0]);
24
+ });
25
+
26
+ describe("triangle", function() {
27
+ it("parallel", function() {
28
+ expect(p.intersectTriangle(new Jax.Geometry.Triangle([0,1,1], [-1,0,1], [1,0,1]))).toBeFalsy();
29
+ });
30
+
31
+ it("outside", function() {
32
+ expect(p.intersectTriangle(new Jax.Geometry.Triangle([0,0,2], [-1,0,1], [1,0,1]))).toBeFalsy();
33
+ });
34
+
35
+ it("intersect", function() {
36
+ expect(p.intersectTriangle(new Jax.Geometry.Triangle([0,0,-1], [-1,0,1], [1,0,1]))).toBeTruthy();
37
+ });
38
+
39
+ it("intersect with receiver", function() {
40
+ var r = new Jax.Geometry.Line();
41
+ p.intersectTriangle(new Jax.Geometry.Triangle([0,0,-1], [-1,0,1], [1,0,1]), r);
42
+ expect(r.length).toBeGreaterThan(Math.EPSILON);
43
+ });
44
+ });
45
+
46
+ describe("plane", function() {
47
+ it("disjoint (no intersect)", function() {
48
+ var p2 = new Jax.Geometry.Plane([0,1,1], [-1,0,1], [1,0,1]);
49
+ expect(p.intersectPlane(p2)).toBeFalsy();
50
+ });
51
+
52
+ it("coincide", function() {
53
+ var p2 = new Jax.Geometry.Plane([0,1,0], [-1,0,0], [1,0,0]);
54
+ expect(p.intersectPlane(p2)).toEqual(Jax.Geometry.COINCIDE);
55
+ });
56
+
57
+ it("intersect", function() {
58
+ var p2 = new Jax.Geometry.Plane([0,0,1], [-1,0,0], [1,0,0]);
59
+ expect(p.intersectPlane(p2)).toEqual(Jax.Geometry.INTERSECT);
60
+ });
61
+
62
+ it("intersect line", function() {
63
+ var p2 = new Jax.Geometry.Plane([0,0,1], [-1,0,0], [1,0,0]);
64
+ var line = new Jax.Geometry.Line();
65
+ p.intersectPlane(p2, line);
66
+ expect(line[0]).toEqualVector([ 0,0,0]);
67
+ expect(line[1]).toEqualVector([ 1,0,0]);
68
+ });
69
+ });
70
+
71
+ describe("ray", function() {
72
+ it("parallel should not intersect", function() {
73
+ expect(p.intersectRay([0,0,1], [1,0,0])).toBeFalsy();
74
+ });
75
+
76
+ it("from the front", function() {
77
+ expect(p.intersectRay([0,0,1], [0,0,-1])).toEqual(1);
78
+ });
79
+
80
+ it("from behind", function() {
81
+ expect(p.intersectRay([0,0,-1],[0,0, 1])).toEqual(1);
82
+ });
83
+
84
+ it("pointing away", function() {
85
+ expect(p.intersectRay([0,0,-1],[0,0,-1])).toEqual(-1);
86
+ });
87
+ });
88
+
89
+ describe("line segment", function() {
90
+ it("store intersection point", function() {
91
+ var i = vec3.create();
92
+ p.intersectLineSegment(new Jax.Geometry.Line([0,0,1], [0,0,-1]), i);
93
+ expect(i).toEqualVector([0,0,0]);
94
+ });
95
+
96
+ it("parallel", function() {
97
+ expect(p.intersectLineSegment(new Jax.Geometry.Line([0,0,1], [1,0,1]))).toBeFalsy();
98
+ });
99
+
100
+ it("coincident", function() {
101
+ expect(p.intersectLineSegment(new Jax.Geometry.Line([0,0,0], [0.5,0,0]))).toEqual(Jax.Geometry.COINCIDE);
102
+ });
103
+
104
+ it("from the front", function() {
105
+ expect(p.intersectLineSegment(new Jax.Geometry.Line([0,0,1], [0,0,-1]))).toEqual(Jax.Geometry.INTERSECT);
106
+ });
107
+
108
+ it("from behind", function() {
109
+ expect(p.intersectLineSegment(new Jax.Geometry.Line([0,0,-1],[0,0, 1]))).toEqual(Jax.Geometry.INTERSECT);
110
+ });
111
+
112
+ it("pointing away", function() {
113
+ expect(p.intersectLineSegment(new Jax.Geometry.Line([0,0,-1],[0,0,-2]))).toEqual(Jax.Geometry.DISJOINT);
114
+ });
115
+ });
116
+ });
117
+
118
+ it("distance", function() {
119
+ var p = new Jax.Geometry.Plane([0,1,0], [-1,0,0], [1,0,0]);
120
+ expect(p.distance([0,0, 2])).toEqual(2);
121
+ expect(p.distance([0,0,-2])).toEqual(-2);
122
+ expect(p.distance([0,0, 0])).toEqual(0);
123
+
124
+ var region = new Jax.DataRegion();
125
+ var data = region.map(Float32Array, [0,0,2, 0,0,-2, 0,0,0]);
126
+ var vertices = data.group(3);
127
+ expect(p.distance(vertices[0])).toEqual(2);
128
+ expect(p.distance(vertices[1])).toEqual(-2);
129
+ expect(p.distance(vertices[2])).toEqual(0);
130
+ });
131
+
132
+ it("whereis", function() {
133
+ var p = new Jax.Geometry.Plane([0,1,0], [-1,0,0], [1,0,0]);
134
+ expect(p.whereis([0,0, 2])).toEqual(Jax.Geometry.Plane.FRONT);
135
+ expect(p.whereis([0,0,-2])).toEqual(Jax.Geometry.Plane.BACK);
136
+ expect(p.whereis([0,0, 0])).toEqual(Jax.Geometry.Plane.INTERSECT);
137
+
138
+ var region = new Jax.DataRegion();
139
+ var data = region.map(Float32Array, [0,0,2, 0,0,-2, 0,0,0]);
140
+ var vertices = data.group(3);
141
+ expect(p.whereis(vertices[0])).toEqual(Jax.Geometry.Plane.FRONT);
142
+ expect(p.whereis(vertices[1])).toEqual(Jax.Geometry.Plane.BACK);
143
+ expect(p.whereis(vertices[2])).toEqual(Jax.Geometry.Plane.INTERSECT);
144
+ });
145
+
146
+ describe("construction", function() {
147
+ it("with no vertices", function() {
148
+ var p = new Jax.Geometry.Plane();
149
+ expect(p.normal).toEqualVector([0,1,0]);
150
+ expect(p.d).toEqual(0);
151
+ });
152
+
153
+ it('with a vertex array', function() {
154
+ var p = new Jax.Geometry.Plane([[0,1,0], [-1,0,0], [1,0,0]]);
155
+ expect(p.normal).toEqualVector([0,0,1]);
156
+ expect(p.d).toEqual(0);
157
+ });
158
+
159
+ it('with a 3x3 data segment', function() {
160
+ var region = new Jax.DataRegion();
161
+ var data = region.map(Float32Array, [0,1,0, -1,0,0, 1,0,0]);
162
+ var vertices = data.group(3);
163
+ var p = new Jax.Geometry.Plane(vertices);
164
+ expect(p.normal).toEqualVector([0,0,1]);
165
+ expect(p.d).toEqual(0);
166
+ });
167
+
168
+ it("with vertices", function() {
169
+ var p = new Jax.Geometry.Plane([0,1,0], [-1,0,0], [1,0,0]);
170
+ expect(p.normal).toEqualVector([0,0,1]);
171
+ expect(p.d).toEqual(0);
172
+ });
173
+ });
174
+
175
+ it("set coefficients", function() {
176
+ var p = new Jax.Geometry.Plane();
177
+ p.setCoefficients(0, 2, 0, 1);
178
+ expect(p.normal).toEqualVector([0,1,0]);
179
+ expect(p.d).toEqual(0.5);
180
+ });
181
+ });
@@ -0,0 +1,105 @@
1
+ describe("Jax.Geometry.Triangle", function() {
2
+ describe("intersections", function() {
3
+ describe("triangle", function() {
4
+ var tri;
5
+
6
+ beforeEach(function() {
7
+ tri = new Jax.Geometry.Triangle([0,0,0], [-1,0,0], [0,1,0]);
8
+ });
9
+
10
+ describe("with triangle", function() {
11
+ // more complete tritri tests found in tritri_spec.js
12
+ it("no intersect", function() {
13
+ var tri2 = new Jax.Geometry.Triangle([0,0.5,2],[-1,0.5,2],[0,1.5,2]);
14
+ expect(tri.intersectTriangle(tri2)).toBeFalsy();
15
+ });
16
+
17
+ it("intersect", function() {
18
+ var tri2 = new Jax.Geometry.Triangle([0,0.95,-1],[-1,0.95,2],[1,0.95,2]);
19
+ expect(tri.intersectTriangle(tri2)).toBeTruthy();
20
+ });
21
+
22
+ it("identical, positioned above", function() {
23
+ tri = new Jax.Geometry.Triangle([0,0.95,-1],[-1,0.95,2],[1,0.95,2]);
24
+ var tri2 = new Jax.Geometry.Triangle([0,3.95,-1],[-1,3.95,2],[1,3.95,2]);
25
+
26
+ expect(tri.intersectTriangle(tri2)).toBeFalsy();
27
+ });
28
+ });
29
+
30
+ describe("with triangle and capture point", function() {
31
+ var line;
32
+ beforeEach(function() { line = new Jax.Geometry.Line(); });
33
+
34
+ // more complete tritri tests found in tritri_spec.js
35
+ it("no intersect", function() {
36
+ var tri2 = new Jax.Geometry.Triangle([0,0.5,2],[-1,0.5,2],[0,1.5,2]);
37
+ expect(tri.intersectTriangle(tri2, line)).toBeFalsy();
38
+ });
39
+
40
+ it("intersect", function() {
41
+ var tri2 = new Jax.Geometry.Triangle([0,0.95,-1],[-1,0.95,2],[1,0.95,2]);
42
+ expect(tri.intersectTriangle(tri2, line)).toBeTruthy();
43
+ expect(Math.abs(line.a[0]) + Math.abs(line.a[1]) + Math.abs(line.a[2])).toBeGreaterThan(Math.EPSILON);
44
+ });
45
+
46
+ it("identical, positioned above", function() {
47
+ tri = new Jax.Geometry.Triangle([0,0.95,-1],[-1,0.95,2],[1,0.95,2]);
48
+ var tri2 = new Jax.Geometry.Triangle([0,3.95,-1],[-1,3.95,2],[1,3.95,2]);
49
+
50
+ expect(tri.intersectTriangle(tri2, line)).toBeFalsy();
51
+ });
52
+ });
53
+
54
+ describe("with ray", function() {
55
+ it("intersect", function() {
56
+ var O = [0,0,1];
57
+ var D = [0,0,-1];
58
+ var cp = [];
59
+ var segmax = 2;
60
+
61
+ expect(tri.intersectRay(O, D, cp, segmax)).toBeTruthy();
62
+ // it intersects at [0,0,0], where distance from [0,0,-1] is 1
63
+ expect(cp).toEqualVector([0,0,0,1]);
64
+ });
65
+
66
+ it("no intersect", function() {
67
+ var O = [1,0,0];
68
+ var D = [0,0,-1];
69
+ var cp = [];
70
+ var segmax = 2;
71
+
72
+ expect(tri.intersectRay(O, D, cp, segmax)).toBeFalsy();
73
+ });
74
+ });
75
+
76
+ describe("with sphere", function() {
77
+ it("interior intersect", function() {
78
+ var O = [-2,0,0];
79
+ var radius = 1;
80
+ var cp = [];
81
+
82
+ expect(tri.intersectSphere(O, radius, cp)).toBeTruthy();
83
+ expect(cp).toEqualVector([-1,0,0]);
84
+ });
85
+
86
+ it("edge intersect", function() {
87
+ var O = [1,0.5,0];
88
+ var radius = 1;
89
+ var cp = [];
90
+
91
+ expect(tri.intersectSphere(O, radius, cp)).toBeTruthy();
92
+ expect(cp).toEqualVector([0,0.5,0]);
93
+ });
94
+
95
+ it("no intersect", function() {
96
+ var O = [2, 0.5, 0];
97
+ var radius = 1;
98
+ var cp = [];
99
+
100
+ expect(tri.intersectSphere(O, radius, cp)).toBeFalsy();
101
+ });
102
+ });
103
+ });
104
+ });
105
+ });
@@ -0,0 +1,156 @@
1
+ describe("Jax.Controller", function() {
2
+ var klass;
3
+ var instance;
4
+
5
+ it("should map a default view", function() {
6
+ Jax.views.remove("welcome/index");
7
+ Jax.Controller.create("welcome", {});
8
+ expect(Jax.views.find("welcome/index")).not.toBeUndefined();
9
+ });
10
+
11
+ describe("with an update method", function() {
12
+ var context;
13
+
14
+ beforeEach(function() {
15
+ klass = Jax.Controller.create("welcome", { index: function() { }, update: function(tc) { } });
16
+ Jax.views.push("welcome/index", function() { });
17
+ Jax.routes.map("welcome", klass);
18
+ context = new Jax.Context(SPEC_CONTEXT.canvas);
19
+ instance = context.redirectTo("welcome");
20
+ spyOn(instance, 'update');
21
+ });
22
+
23
+ afterEach(function() { context.dispose(); });
24
+
25
+ it("should be called when the context is updated", function() {
26
+ /*
27
+ we can't really register a callback to setTimeout and check that it was called automatically,
28
+ so we'll have to simulate it by calling Context#update() directly.
29
+ */
30
+ context.update();
31
+ expect(instance.update).toHaveBeenCalled();
32
+ });
33
+ });
34
+
35
+ describe("which does not render or redirect", function() {
36
+ beforeEach(function() {
37
+ klass = Jax.Controller.create("welcome", { index: function() { } });
38
+ instance = new klass();
39
+ });
40
+
41
+ it("should produce the view named after the controller and action names", function() {
42
+ instance.fireAction("index");
43
+ expect(instance.view_key).toEqual("welcome/index");
44
+ });
45
+
46
+ it("should map the route automatically", function() {
47
+ expect(function() { Jax.routes.recognizeRoute("welcome/index") }).not.toThrow();
48
+ });
49
+ });
50
+
51
+ describe("with event actions", function() {
52
+ beforeEach(function() {
53
+ klass = Jax.Controller.create("welcome", { index: function() { } });
54
+ instance = new klass();
55
+ });
56
+
57
+ var evt;
58
+
59
+ function doMouseEvent(type) {
60
+ /* MouseEvents - click, mousedown, mousemove, mouseout, mouseover, mouseup */
61
+ /* initMouseEvent - type, bubbles, cancelable, windowObject, detail, screenX, screenY, clientX, clientY, ctrlKey,
62
+ * altKey, shiftKey, metaKey, button, relatedTarget */
63
+ evt = document.createEvent('MouseEvents');
64
+ evt.initMouseEvent(type, true, true, Jax.getGlobal(), 1, 0, 0, 0, 0, false, false, false, false, 0, null);
65
+ SPEC_CONTEXT.canvas.dispatchEvent(evt);
66
+ }
67
+
68
+ function doKeyEvent(type) {
69
+ /* UIEvents - DOMActivate, DOMFocusIn, DOMFocusOut */
70
+ /* KeyEvents / UIEvents - keydown, keypress, keyup */
71
+ /* initUIEvent - type, bubbles, cancelable windowObject, detail */
72
+ if (Jax.getGlobal().KeyEvent && !KeyEvent.fake) {
73
+ evt = document.createEvent('KeyEvents');
74
+ // type, bubbles, cancelable, windowObject, ctrlKey, altKey, shiftKey, metaKey, keyCode, charCode
75
+ evt.initKeyEvent(type, true, true, Jax.getGlobal(), false, false, false, false, 13, 0);
76
+ } else {
77
+ evt = document.createEvent('UIEvents');
78
+ evt.initUIEvent(type, true, true, Jax.getGlobal(), 1);
79
+ evt.keyCode = 13;
80
+ }
81
+ SPEC_CONTEXT.canvas.dispatchEvent(evt);
82
+ }
83
+
84
+ beforeEach(function() {
85
+ var methods = {
86
+ mouse_clicked: function(evt) { },
87
+ mouse_moved: function(evt) { },
88
+ mouse_dragged: function(evt) { },
89
+ mouse_pressed: function(evt) { },
90
+ mouse_exited: function(evt) { },
91
+ mouse_entered: function(evt) { },
92
+ mouse_released: function(evt) { },
93
+ key_typed: function(evt) { },
94
+ key_pressed: function(evt) { },
95
+ key_released: function(evt) { }
96
+ };
97
+ klass.addMethods(methods);
98
+ expect(instance).toHaveMethod("mouse_clicked"); // verify methods were added
99
+ for (var method_name in methods) spyOn(instance, method_name);
100
+ Jax.routes.clear();
101
+ SPEC_CONTEXT.current_controller = instance;
102
+ SPEC_CONTEXT.registerMouseListeners(instance);
103
+ SPEC_CONTEXT.registerKeyListeners(instance);
104
+ });
105
+
106
+ it("should dispatch key pressed events", function() {
107
+ doKeyEvent('keypress');
108
+ expect(instance.key_typed).toHaveBeenCalled();
109
+ });
110
+
111
+ it("should dispatch key released events", function() {
112
+ doKeyEvent('keyup');
113
+ expect(instance.key_released).toHaveBeenCalled();
114
+ });
115
+
116
+ it("should dispatch key down events", function() {
117
+ doKeyEvent('keydown');
118
+ expect(instance.key_pressed).toHaveBeenCalled();
119
+ });
120
+
121
+ it("should dispatch mouse released events", function() {
122
+ doMouseEvent('mouseup');
123
+ expect(instance.mouse_released).toHaveBeenCalled();
124
+ });
125
+ it("should dispatch mouse entered events", function() {
126
+ doMouseEvent('mouseout');
127
+ expect(instance.mouse_exited).toHaveBeenCalled();
128
+ });
129
+ it("should dispatch mouse exited events", function() {
130
+ doMouseEvent('mouseover');
131
+ expect(instance.mouse_entered).toHaveBeenCalled();
132
+ });
133
+
134
+ it("should dispatch mouse pressed events", function() {
135
+ doMouseEvent('mousedown');
136
+ expect(instance.mouse_pressed).toHaveBeenCalled();
137
+ });
138
+
139
+ it("should dispatch mouse dragged events", function() {
140
+ doMouseEvent('mousedown');
141
+ doMouseEvent('mousemove');
142
+ doMouseEvent('mouseup');
143
+ expect(instance.mouse_dragged).toHaveBeenCalled();
144
+ });
145
+
146
+ it("should dispatch mouse moved events", function() {
147
+ doMouseEvent('mousemove');
148
+ expect(instance.mouse_moved).toHaveBeenCalled();
149
+ });
150
+
151
+ it("should dispatch mouse clicked events", function() {
152
+ doMouseEvent('click');
153
+ expect(instance.mouse_clicked).toHaveBeenCalled();
154
+ });
155
+ });
156
+ });
@@ -0,0 +1,93 @@
1
+ describe("Jax.Model", function() {
2
+ var model;
3
+
4
+ describe("as a resource", function() {
5
+ // do these things only once, because we're going to see how one model instance interacts with another
6
+ var klass, res_data = { "name": {one: { value : 1 } } };
7
+ klass = Jax.Model.create({});
8
+ klass.addResources(res_data);
9
+
10
+ beforeEach(function() {
11
+ model = klass.find("name");
12
+ });
13
+
14
+ it("should find new resource instances instead of existing ones", function() {
15
+ model.two = 2;
16
+ model = klass.find("name");
17
+ expect(model.two).toBeUndefined();
18
+ });
19
+
20
+ it("should not alter the original resource data", function() {
21
+ model.one.value = 2;
22
+ model = klass.find("name");
23
+ expect(model.one.value).not.toEqual(2);
24
+ });
25
+ });
26
+
27
+ describe("added to world without a mesh", function() {
28
+ beforeEach(function() { model = new (Jax.Model.create({after_initialize:function(){}}))({position:[0,0,0]}); SPEC_CONTEXT.world.addObject(model); });
29
+
30
+ it("should not cause errors when rendering", function() {
31
+ expect(function() { SPEC_CONTEXT.world.render(); }).not.toThrow();
32
+ });
33
+ });
34
+
35
+ describe("without any custom methods", function() {
36
+ beforeEach(function() {
37
+ model = Jax.Model.create({
38
+ initialize: function($super, data) { $super(Jax.Util.normalizeOptions(data, {mesh:new Jax.Mesh.Quad()})); }
39
+ });
40
+ });
41
+
42
+ describe("instantiated", function() {
43
+ beforeEach(function() { model = new model(); });
44
+
45
+ describe("that is not a shadowcaster", function() {
46
+ beforeEach(function() { model.shadow_caster = false; });
47
+ it("should still be lit", function() { expect(model).toBeIlluminated(); });
48
+ });
49
+
50
+ describe("that is not lit", function() {
51
+ beforeEach(function() { model.lit = false; });
52
+ it("should not be rendered in illumination pass", function() {
53
+ expect(model).not.toBeIlluminated();
54
+ });
55
+ });
56
+
57
+ it("should render properly", function() {
58
+ model.render(SPEC_CONTEXT);
59
+ });
60
+ });
61
+
62
+ it("should fire after_initialize", function() {
63
+ model.addResources({ "name": { fired: false } });
64
+ model.addMethods({ after_initialize: function() { this.fired = true; } });
65
+ expect(model.find("name").fired).toBeTrue();
66
+ });
67
+
68
+ it("should raise an error when searching for a missing ID", function() {
69
+ model.addResources({"one": { } });
70
+ expect(function() { model.find("two") }).toThrow(new Error("Resource 'two' not found!"));
71
+ });
72
+
73
+ it("should assign default attribute values", function() {
74
+ model.addResources({'default':{one:'one'},'name':{two:'two'}});
75
+ expect(model.find('name').one).toEqual("one");
76
+ expect(model.find('name').two).toEqual("two");
77
+ });
78
+
79
+ it("should assign attribute values", function() {
80
+ model.addResources({ "name": { one: "one" } });
81
+ expect(model.find("name").one).toEqual("one");
82
+ });
83
+
84
+ it("should instantiate a model that is missing default attributes", function() {
85
+ expect(function() { new model(); }).not.toThrow();
86
+ });
87
+ });
88
+
89
+ describe("with a custom method", function() {
90
+ beforeEach(function() { model = Jax.Model.create({method: function() { return "called"; } }); });
91
+ it("should work", function() { expect(new model().method()).toEqual("called"); });
92
+ });
93
+ });
@@ -0,0 +1,49 @@
1
+ describe("Jax.RouteSet", function() {
2
+ var map;
3
+ var controller_class = Jax.Controller.create({index: function() { }});
4
+ Jax.views.push("generic/index", function() { });
5
+
6
+ beforeEach(function() { map = Jax.routes; map.clear(); });
7
+
8
+ describe("when a controller name is given during controller definition", function() {
9
+ beforeEach(function() {
10
+ controller_class = Jax.Controller.create("welcome", {index: function() { }});
11
+ });
12
+
13
+ it("should map routes automatically", function() {
14
+ var route = map.recognizeRoute("welcome");
15
+ expect(route.controller).toEqual(controller_class);
16
+ expect(route.action).toEqual("index");
17
+ });
18
+
19
+ it("should automatically map actions added after controller is defined", function() {
20
+ controller_class.prototype.other = function() { };
21
+ var route = map.recognizeRoute("welcome/other");
22
+ expect(route.controller).toEqual(controller_class);
23
+ expect(route.action).toEqual("other");
24
+ });
25
+
26
+ it("should return the controller name in an array", function() {
27
+ var arr = map.getControllerNames();
28
+ expect(arr.length).toEqual(1);
29
+ expect(arr[0]).toEqual("welcome");
30
+ });
31
+ });
32
+
33
+ describe("with a map", function() {
34
+ beforeEach(function() { map.map("generic/index", controller_class, "index"); });
35
+
36
+ it("should recognize the route without /index", function() {
37
+ var route = map.recognizeRoute("generic");
38
+
39
+ expect(route.controller).toEqual(controller_class);
40
+ expect(route.action).toEqual("index");
41
+ });
42
+
43
+ it("should return the controller name in an array", function() {
44
+ var arr = map.getControllerNames();
45
+ expect(arr.length).toEqual(1);
46
+ expect(arr[0]).toEqual("generic");
47
+ });
48
+ });
49
+ });
@@ -0,0 +1,17 @@
1
+ describe("Jax.ViewManager", function() {
2
+ var views;
3
+
4
+ beforeEach(function() { views = new Jax.ViewManager(); });
5
+
6
+ describe("with one registered view", function() {
7
+ beforeEach(function() { views.push("controller/action", function() { }); });
8
+
9
+ it("should return the registered view", function() {
10
+ expect(views.get("controller/action")).toBeKindOf(Jax.View);
11
+ });
12
+
13
+ it("should throw an error when requesting a missing view", function() {
14
+ expect(function() { return views.get("missing/action"); }).toThrow(new Error("Could not find view at 'missing/action'!"));
15
+ });
16
+ });
17
+ });
@@ -0,0 +1,50 @@
1
+ describe("Jax.Noise", function() {
2
+ var noise, uniforms;
3
+
4
+ beforeEach(function() {
5
+ uniforms = { texture:function(name, tex, context) { }, set: function(name, value) { } };
6
+ spyOn(uniforms, 'set');
7
+ spyOn(uniforms, 'texture');
8
+ });
9
+
10
+ describe("initialized without a context", function() {
11
+ beforeEach(function() { noise = new Jax.Noise(); });
12
+
13
+ it("should not be prepared for use", function() {
14
+ //because we never gave it a context to prepare against
15
+ expect(noise.isPrepared(SPEC_CONTEXT)).toBeFalsy();
16
+ });
17
+
18
+ it("should bind to a uniform delegator and be prepared", function() {
19
+ // is this too brittle?
20
+ noise.bind(SPEC_CONTEXT, uniforms);
21
+ expect(uniforms.texture).toHaveBeenCalledWith('permTexture', noise.perm, SPEC_CONTEXT);
22
+ expect(uniforms.texture).toHaveBeenCalledWith('gradTexture', noise.grad, SPEC_CONTEXT);
23
+ expect(uniforms.texture).toHaveBeenCalledWith('simplexTexture', noise.simplex, SPEC_CONTEXT);
24
+ expect(noise.isPrepared(SPEC_CONTEXT)).toBeTruthy();
25
+ });
26
+ });
27
+
28
+ describe("initialized old-style, with a context", function() {
29
+ beforeEach(function() {
30
+ noise = new Jax.Noise(SPEC_CONTEXT);
31
+ });
32
+
33
+ it("should be prepared for use", function() {
34
+ expect(noise.isPrepared(SPEC_CONTEXT)).toBeTruthy();
35
+
36
+ // make the same assertion with a dummy context, to make sure noise isn't lying about its preparedness
37
+ var dummy_context = {id:-10};
38
+ expect(noise.isPrepared(dummy_context)).toBeFalsy();
39
+ });
40
+
41
+ it("should bind to a uniform delegator and be prepared", function() {
42
+ // is this too brittle?
43
+ noise.bind(SPEC_CONTEXT, uniforms);
44
+ expect(uniforms.texture).toHaveBeenCalledWith('permTexture', noise.perm, SPEC_CONTEXT);
45
+ expect(uniforms.texture).toHaveBeenCalledWith('gradTexture', noise.grad, SPEC_CONTEXT);
46
+ expect(uniforms.texture).toHaveBeenCalledWith('simplexTexture', noise.simplex, SPEC_CONTEXT);
47
+ expect(noise.isPrepared(SPEC_CONTEXT)).toBeTruthy();
48
+ });
49
+ });
50
+ });