ogre.rb 0.1-i386-mswin32 → 0.2-i386-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/README +43 -5
- data/Rakefile +62 -163
- data/lib/application.rb +2 -1
- data/lib/application_frame_listener.rb +17 -17
- data/lib/ogre.dll +0 -0
- data/lib/ruby_ois.dll +0 -0
- data/ogre.rb +3 -0
- data/samples/Ogre.log +372 -279
- data/samples/cel_shading.rb +85 -0
- data/samples/grass.rb +1 -1
- data/samples/media/materials/programs/CelShading.cg +63 -0
- data/samples/media/materials/scripts/CelShading.material +68 -0
- data/samples/media/materials/textures/Thumbs.db +0 -0
- data/samples/media/materials/textures/cel_shading_diffuse.png +0 -0
- data/samples/media/materials/textures/cel_shading_edge.png +0 -0
- data/samples/media/materials/textures/cel_shading_specular.png +0 -0
- data/samples/ogre.cfg +1 -1
- data/samples/output +5078 -0
- data/samples/plugins.cfg +1 -1
- data/test/ogre.cfg +10 -0
- data/test/plugins.cfg +8 -0
- data/test/test_helper.rb +67 -0
- data/test/unit/Test.log +138 -0
- data/test/unit/constants_test.rb +66 -0
- data/test/unit/frame_stats_proxy_test.rb +28 -0
- data/test/unit/math_test.rb +20 -0
- data/test/unit/mesh_test.rb +15 -0
- data/test/unit/methods_test.rb +98 -0
- data/test/unit/movable_object_test.rb +19 -0
- data/test/unit/name_value_pair_list_test.rb +12 -0
- data/test/unit/overlay_element_test.rb +20 -0
- data/test/unit/render_target_test.rb +11 -0
- data/test/unit/resource_test.rb +26 -0
- data/test/unit/scene_manager_test.rb +21 -0
- metadata +45 -21
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: ogre.rb
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: "0.
|
7
|
-
date: 2007-
|
6
|
+
version: "0.2"
|
7
|
+
date: 2007-09-21 00:00:00 -04:00
|
8
8
|
summary: Ruby wrapper for Ogre 3D
|
9
9
|
require_paths:
|
10
10
|
- .
|
@@ -39,37 +39,23 @@ files:
|
|
39
39
|
- lib/constants.rb
|
40
40
|
- lib/method_fixes.rb
|
41
41
|
- samples/bsp.rb
|
42
|
+
- samples/cel_shading.rb
|
42
43
|
- samples/cg.dll
|
43
44
|
- samples/grass.rb
|
44
45
|
- samples/js3250.dll
|
45
46
|
- samples/lighting.rb
|
46
47
|
- samples/media
|
47
|
-
- samples/media.cfg
|
48
|
-
- samples/ogre.cfg
|
49
|
-
- samples/Ogre.log
|
50
|
-
- samples/plugins.cfg
|
51
|
-
- samples/quake3settings.cfg
|
52
|
-
- samples/render_to_texture.rb
|
53
|
-
- samples/resources.cfg
|
54
|
-
- samples/sky_box.rb
|
55
|
-
- samples/sky_dome.rb
|
56
|
-
- samples/sky_plane.rb
|
57
|
-
- samples/smoke.rb
|
58
|
-
- samples/work
|
59
48
|
- samples/media/materials
|
60
|
-
- samples/media/models
|
61
|
-
- samples/media/overlays
|
62
|
-
- samples/media/packs
|
63
|
-
- samples/media/particles
|
64
49
|
- samples/media/materials/programs
|
65
|
-
- samples/media/materials/
|
66
|
-
- samples/media/materials/textures
|
50
|
+
- samples/media/materials/programs/CelShading.cg
|
67
51
|
- samples/media/materials/programs/Grass.cg
|
68
52
|
- samples/media/materials/programs/OffsetMapping.cg
|
69
53
|
- samples/media/materials/programs/OffsetMapping.hlsl
|
70
54
|
- samples/media/materials/programs/OffsetMappingFp.glsl
|
71
55
|
- samples/media/materials/programs/OffsetMappingVp.glsl
|
72
56
|
- samples/media/materials/programs/OffsetMapping_specular.asm
|
57
|
+
- samples/media/materials/scripts
|
58
|
+
- samples/media/materials/scripts/CelShading.material
|
73
59
|
- samples/media/materials/scripts/CloudySky.material
|
74
60
|
- samples/media/materials/scripts/CubeMapping.material
|
75
61
|
- samples/media/materials/scripts/dragon.material
|
@@ -87,6 +73,10 @@ files:
|
|
87
73
|
- samples/media/materials/scripts/SpaceSkyBox.material
|
88
74
|
- samples/media/materials/scripts/SpaceSkyPlane.material
|
89
75
|
- samples/media/materials/scripts/TextureEffects.material
|
76
|
+
- samples/media/materials/textures
|
77
|
+
- samples/media/materials/textures/cel_shading_diffuse.png
|
78
|
+
- samples/media/materials/textures/cel_shading_edge.png
|
79
|
+
- samples/media/materials/textures/cel_shading_specular.png
|
90
80
|
- samples/media/materials/textures/clouds.jpg
|
91
81
|
- samples/media/materials/textures/cursor.png
|
92
82
|
- samples/media/materials/textures/dirt01.jpg
|
@@ -111,6 +101,7 @@ files:
|
|
111
101
|
- samples/media/materials/textures/Thumbs.db
|
112
102
|
- samples/media/materials/textures/Water02.jpg
|
113
103
|
- samples/media/materials/textures/WeirdEye.png
|
104
|
+
- samples/media/models
|
114
105
|
- samples/media/models/geosphere4500.mesh
|
115
106
|
- samples/media/models/geosphere8000.mesh
|
116
107
|
- samples/media/models/knot.mesh
|
@@ -118,7 +109,9 @@ files:
|
|
118
109
|
- samples/media/models/razor.mesh
|
119
110
|
- samples/media/models/RZR-002.mesh
|
120
111
|
- samples/media/models/sphere.mesh
|
112
|
+
- samples/media/overlays
|
121
113
|
- samples/media/overlays/CubeMapping.overlay
|
114
|
+
- samples/media/packs
|
122
115
|
- samples/media/packs/chiropteraDM.pk3
|
123
116
|
- samples/media/packs/chiropteraDM.txt
|
124
117
|
- samples/media/packs/cubemap.zip
|
@@ -126,10 +119,41 @@ files:
|
|
126
119
|
- samples/media/packs/dragon.zip
|
127
120
|
- samples/media/packs/OgreCore.zip
|
128
121
|
- samples/media/packs/skybox.zip
|
122
|
+
- samples/media/particles
|
129
123
|
- samples/media/particles/smoke.particle
|
124
|
+
- samples/media.cfg
|
125
|
+
- samples/ogre.cfg
|
126
|
+
- samples/Ogre.log
|
127
|
+
- samples/output
|
128
|
+
- samples/plugins.cfg
|
129
|
+
- samples/quake3settings.cfg
|
130
|
+
- samples/render_to_texture.rb
|
131
|
+
- samples/resources.cfg
|
132
|
+
- samples/sky_box.rb
|
133
|
+
- samples/sky_dome.rb
|
134
|
+
- samples/sky_plane.rb
|
135
|
+
- samples/smoke.rb
|
136
|
+
- samples/work
|
130
137
|
- samples/work/cube_mapping.rb
|
131
138
|
- doc_src/ogre.rb
|
132
139
|
- doc_src/ois.rb
|
140
|
+
- test/media
|
141
|
+
- test/ogre.cfg
|
142
|
+
- test/plugins.cfg
|
143
|
+
- test/test_helper.rb
|
144
|
+
- test/unit
|
145
|
+
- test/unit/constants_test.rb
|
146
|
+
- test/unit/frame_stats_proxy_test.rb
|
147
|
+
- test/unit/math_test.rb
|
148
|
+
- test/unit/mesh_test.rb
|
149
|
+
- test/unit/methods_test.rb
|
150
|
+
- test/unit/movable_object_test.rb
|
151
|
+
- test/unit/name_value_pair_list_test.rb
|
152
|
+
- test/unit/overlay_element_test.rb
|
153
|
+
- test/unit/render_target_test.rb
|
154
|
+
- test/unit/resource_test.rb
|
155
|
+
- test/unit/scene_manager_test.rb
|
156
|
+
- test/unit/Test.log
|
133
157
|
- lib/ogre.dll
|
134
158
|
- lib/ruby_ois.dll
|
135
159
|
test_files: []
|
@@ -143,7 +167,7 @@ executables: []
|
|
143
167
|
extensions: []
|
144
168
|
|
145
169
|
requirements:
|
146
|
-
- Ogre Einhort (1.4)
|
170
|
+
- Ogre Einhort (1.4.4)
|
147
171
|
- Environment variable OGRE_HOME set
|
148
172
|
dependencies: []
|
149
173
|
|