teien 0.0.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.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +34 -0
- data/Rakefile +1 -0
- data/bin/teien +49 -0
- data/lib/teien/animation_operator.rb +142 -0
- data/lib/teien/camera.rb +25 -0
- data/lib/teien/camera_mover.rb +193 -0
- data/lib/teien/garden.rb +203 -0
- data/lib/teien/garden_object.rb +314 -0
- data/lib/teien/light_object.rb +36 -0
- data/lib/teien/object_factory.rb +302 -0
- data/lib/teien/object_info.rb +171 -0
- data/lib/teien/physics.rb +150 -0
- data/lib/teien/physics_info.rb +23 -0
- data/lib/teien/smooth_mover.rb +108 -0
- data/lib/teien/tools.rb +261 -0
- data/lib/teien/ui_listener.rb +68 -0
- data/lib/teien/user_interface.rb +201 -0
- data/lib/teien/version.rb +3 -0
- data/lib/teien/view.rb +244 -0
- data/lib/teien.rb +40 -0
- data/sample/standalone/hello_garden/hello_garden.rb +155 -0
- data/sample/standalone/hello_garden/plugins.cfg +17 -0
- data/sample/standalone/hello_garden/resources.cfg +21 -0
- data/sample/standalone/hello_garden/run +5 -0
- data/teien.gemspec +22 -0
- metadata +107 -0
@@ -0,0 +1,17 @@
|
|
1
|
+
# Defines plugins to load
|
2
|
+
|
3
|
+
# Define plugin folder
|
4
|
+
PluginFolder=<SystemPluginFolder>
|
5
|
+
|
6
|
+
# Define plugins
|
7
|
+
# Plugin=RenderSystem_Direct3D9
|
8
|
+
# Plugin=RenderSystem_Direct3D10
|
9
|
+
# Plugin=RenderSystem_Direct3D11
|
10
|
+
Plugin=RenderSystem_GL
|
11
|
+
# Plugin=RenderSystem_GLES
|
12
|
+
Plugin=Plugin_ParticleFX
|
13
|
+
Plugin=Plugin_BSPSceneManager
|
14
|
+
Plugin=Plugin_CgProgramManager
|
15
|
+
Plugin=Plugin_PCZSceneManager
|
16
|
+
Plugin=Plugin_OctreeZone
|
17
|
+
Plugin=Plugin_OctreeSceneManager
|
@@ -0,0 +1,21 @@
|
|
1
|
+
ResourceFolder=<SystemResourceFolder>
|
2
|
+
|
3
|
+
# Resources required by the sample browser and most samples.
|
4
|
+
[Essential]
|
5
|
+
Zip=packs/SdkTrays.zip
|
6
|
+
|
7
|
+
# Resource locations to be added to the default path
|
8
|
+
[General]
|
9
|
+
Zip=packs/skybox.zip
|
10
|
+
FileSystem=fonts
|
11
|
+
FileSystem=models/
|
12
|
+
FileSystem=materials/scripts/
|
13
|
+
FileSystem=materials/textures/
|
14
|
+
FileSystem=materials/textures/nvidia/
|
15
|
+
FileSystem=materials/programs/
|
16
|
+
FileSystem=particle
|
17
|
+
FileSystem=DeferredShadingMedia
|
18
|
+
FileSystem=PCZAppMedia
|
19
|
+
FileSystem=RTShaderLib
|
20
|
+
FileSystem=RTShaderLib/materials
|
21
|
+
|
data/teien.gemspec
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require 'teien/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |gem|
|
6
|
+
gem.name = "teien"
|
7
|
+
gem.version = Teien::VERSION
|
8
|
+
gem.authors = ["abexsoft works"]
|
9
|
+
gem.email = ["abexsoft@gmail.com"]
|
10
|
+
gem.description = %q{An easy 3D world maker.}
|
11
|
+
gem.summary = %q{An easy 3D world maker. You can create your 3D world with ruby scripts.}
|
12
|
+
gem.homepage = "https://github.com/abexsoft/teien"
|
13
|
+
|
14
|
+
gem.files = `git ls-files`.split($/)
|
15
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
16
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
17
|
+
gem.require_paths = ["lib"]
|
18
|
+
|
19
|
+
gem.add_dependency 'ruby-ogre'
|
20
|
+
gem.add_dependency 'ruby-bullet'
|
21
|
+
gem.add_dependency 'teienlib'
|
22
|
+
end
|
metadata
ADDED
@@ -0,0 +1,107 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: teien
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- abexsoft works
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-09-26 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: ruby-ogre
|
16
|
+
requirement: &76693850 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *76693850
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: ruby-bullet
|
27
|
+
requirement: &76693600 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *76693600
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: teienlib
|
38
|
+
requirement: &76693320 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :runtime
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *76693320
|
47
|
+
description: An easy 3D world maker.
|
48
|
+
email:
|
49
|
+
- abexsoft@gmail.com
|
50
|
+
executables:
|
51
|
+
- teien
|
52
|
+
extensions: []
|
53
|
+
extra_rdoc_files: []
|
54
|
+
files:
|
55
|
+
- .gitignore
|
56
|
+
- Gemfile
|
57
|
+
- LICENSE.txt
|
58
|
+
- README.md
|
59
|
+
- Rakefile
|
60
|
+
- bin/teien
|
61
|
+
- lib/teien.rb
|
62
|
+
- lib/teien/animation_operator.rb
|
63
|
+
- lib/teien/camera.rb
|
64
|
+
- lib/teien/camera_mover.rb
|
65
|
+
- lib/teien/garden.rb
|
66
|
+
- lib/teien/garden_object.rb
|
67
|
+
- lib/teien/light_object.rb
|
68
|
+
- lib/teien/object_factory.rb
|
69
|
+
- lib/teien/object_info.rb
|
70
|
+
- lib/teien/physics.rb
|
71
|
+
- lib/teien/physics_info.rb
|
72
|
+
- lib/teien/smooth_mover.rb
|
73
|
+
- lib/teien/tools.rb
|
74
|
+
- lib/teien/ui_listener.rb
|
75
|
+
- lib/teien/user_interface.rb
|
76
|
+
- lib/teien/version.rb
|
77
|
+
- lib/teien/view.rb
|
78
|
+
- sample/standalone/hello_garden/hello_garden.rb
|
79
|
+
- sample/standalone/hello_garden/plugins.cfg
|
80
|
+
- sample/standalone/hello_garden/resources.cfg
|
81
|
+
- sample/standalone/hello_garden/run
|
82
|
+
- teien.gemspec
|
83
|
+
homepage: https://github.com/abexsoft/teien
|
84
|
+
licenses: []
|
85
|
+
post_install_message:
|
86
|
+
rdoc_options: []
|
87
|
+
require_paths:
|
88
|
+
- lib
|
89
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
90
|
+
none: false
|
91
|
+
requirements:
|
92
|
+
- - ! '>='
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
|
+
none: false
|
97
|
+
requirements:
|
98
|
+
- - ! '>='
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '0'
|
101
|
+
requirements: []
|
102
|
+
rubyforge_project:
|
103
|
+
rubygems_version: 1.8.11
|
104
|
+
signing_key:
|
105
|
+
specification_version: 3
|
106
|
+
summary: An easy 3D world maker. You can create your 3D world with ruby scripts.
|
107
|
+
test_files: []
|