danishkirel-turtle 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 danishkirel
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,7 @@
1
+ = turtle
2
+
3
+ A turtle crouching on the floor.
4
+
5
+ == Copyright
6
+
7
+ Copyright (c) 2009 danishkirel. See LICENSE for details.
data/Rakefile ADDED
@@ -0,0 +1,57 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "turtle"
8
+ gem.summary = %Q{A turtle crouching on the floor}
9
+ gem.email = "danishkirel@gmail.com"
10
+ gem.homepage = "http://github.com/danishkirel/turtle"
11
+ gem.authors = ["danishkirel"]
12
+
13
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
14
+ gem.add_dependency('ruby-opengl', '>= 0.60.1')
15
+ end
16
+ rescue LoadError
17
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
18
+ end
19
+
20
+ require 'rake/testtask'
21
+ Rake::TestTask.new(:test) do |test|
22
+ test.libs << 'lib' << 'test'
23
+ test.pattern = 'test/**/*_test.rb'
24
+ test.verbose = true
25
+ end
26
+
27
+ begin
28
+ require 'rcov/rcovtask'
29
+ Rcov::RcovTask.new do |test|
30
+ test.libs << 'test'
31
+ test.pattern = 'test/**/*_test.rb'
32
+ test.verbose = true
33
+ end
34
+ rescue LoadError
35
+ task :rcov do
36
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
37
+ end
38
+ end
39
+
40
+
41
+ task :default => :test
42
+
43
+ require 'rake/rdoctask'
44
+ Rake::RDocTask.new do |rdoc|
45
+ if File.exist?('VERSION.yml')
46
+ config = YAML.load(File.read('VERSION.yml'))
47
+ version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
48
+ else
49
+ version = ""
50
+ end
51
+
52
+ rdoc.rdoc_dir = 'rdoc'
53
+ rdoc.title = "turtle #{version}"
54
+ rdoc.rdoc_files.include('README*')
55
+ rdoc.rdoc_files.include('lib/**/*.rb')
56
+ end
57
+
data/VERSION.yml ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ :major: 0
3
+ :minor: 0
4
+ :patch: 1
@@ -0,0 +1,14 @@
1
+ require 'turtle'
2
+
3
+ runner
4
+ 20.times do
5
+ wohin rand(640)-320, rand(480)-240
6
+ l,h = rand(100), rand(100)
7
+ 36.times do
8
+ [l,h,l,h].each do |k|
9
+ vor k
10
+ rechts 90
11
+ end
12
+ rechts 10
13
+ end
14
+ end
data/lib/turtle.rb ADDED
@@ -0,0 +1,128 @@
1
+ require 'opengl'
2
+ include Gl,Glu,Glut
3
+ include Math
4
+
5
+ module Turtle
6
+
7
+ @@r, @@g, @@b = 0.0, 0.0, 0.0
8
+ @@angle = 0.0
9
+ @@x, @@y = 0.0, 0.0
10
+ @@paint = false
11
+ @@actions = []
12
+
13
+ def Turtle.run
14
+ @@actions.each { |action| action.call }
15
+ end
16
+
17
+ ### Turtle 'dsl'
18
+
19
+ # sin = y, cos = x
20
+ def vor l
21
+ @@actions << lambda do
22
+ dx = cos PI*@@angle/180
23
+ dy = sin PI*@@angle/180
24
+ if @@paint
25
+ glBegin GL_LINE_STRIP
26
+ glColor3f @@r, @@g, @@b
27
+ glVertex2f @@x,@@y
28
+ @@x += l*dx
29
+ @@y += l*dy
30
+ glVertex2f @@x,@@y
31
+ glEnd
32
+ else
33
+ @@x += l*dx
34
+ @@y += l*dy
35
+ end
36
+ end
37
+ end
38
+
39
+ def rechts w
40
+ @@actions << lambda { @@angle -= w % 360 }
41
+ end
42
+
43
+ def links(w)
44
+ @@actions << lambda { rechts(-w) }
45
+ end
46
+
47
+ def ruff
48
+ @@actions << lambda { @@pait = false }
49
+ end
50
+
51
+ def runner
52
+ @@actions << lambda { @@paint = true }
53
+ end
54
+
55
+ def wohin x,y
56
+ @@actions << lambda { @@x,@@y = x,y }
57
+ end
58
+
59
+ end
60
+
61
+ module GLStuff
62
+
63
+ def self.init
64
+ glClearColor(1.0,1.0,1.0,1.0)
65
+ glMatrixMode(GL_PROJECTION)
66
+ glLoadIdentity()
67
+ gluOrtho2D(-319,320,240,-239)
68
+ glMatrixMode(GL_MODELVIEW)
69
+ glLoadIdentity
70
+ end
71
+
72
+ def self.run
73
+ # Keyboard handler to exit when ESC is typed
74
+ keyboard = lambda do |key, x, y|
75
+ case(key)
76
+ when ?\e
77
+ exit(0)
78
+ end
79
+ glutPostRedisplay
80
+ end
81
+
82
+ reshape = lambda do |w,h|
83
+ glMatrixMode(GL_PROJECTION)
84
+ glViewport(0,0,w,h)
85
+ glLoadIdentity()
86
+ #width = 0.5
87
+ #height = 0.5 * h/w;
88
+ #glFrustum(-width,width,-height,height,1.0,2000.0)
89
+ glMatrixMode(GL_MODELVIEW)
90
+ #glViewport(0,0,w,h)
91
+ end
92
+
93
+ drawGLScene = lambda do # Draw The Scene
94
+ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
95
+ glMatrixMode(GL_MODELVIEW)
96
+ glLoadIdentity
97
+
98
+ Turtle.run ### Turtle is run here
99
+
100
+ glutSwapBuffers()
101
+ end
102
+
103
+ idle = lambda do
104
+ glutPostRedisplay()
105
+ end
106
+
107
+ # Main
108
+ glutInit()
109
+ glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_ALPHA | GLUT_DEPTH)
110
+ glutInitWindowPosition(100,100)
111
+ glutInitWindowSize(640,480)
112
+ glutCreateWindow("TurtleGl")
113
+ glutDisplayFunc(drawGLScene)
114
+ #glutIdleFunc(idle)
115
+ #glutReshapeFunc(reshape)
116
+ glutKeyboardFunc(keyboard)
117
+
118
+ init()
119
+
120
+ glutMainLoop()
121
+ end
122
+
123
+ end
124
+
125
+ # make Turtle commands available
126
+ include Turtle
127
+
128
+ at_exit { GLStuff.run }
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'turtle'
8
+
9
+ class Test::Unit::TestCase
10
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class TurtleTest < Test::Unit::TestCase
4
+ should "probably rename this file and start testing for real" do
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,72 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: danishkirel-turtle
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - danishkirel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-04-06 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: ruby-opengl
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.60.1
24
+ version:
25
+ description:
26
+ email: danishkirel@gmail.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - LICENSE
33
+ - README.rdoc
34
+ files:
35
+ - LICENSE
36
+ - README.rdoc
37
+ - Rakefile
38
+ - VERSION.yml
39
+ - examples/figures.rb
40
+ - lib/turtle.rb
41
+ - test/test_helper.rb
42
+ - test/turtle_test.rb
43
+ has_rdoc: true
44
+ homepage: http://github.com/danishkirel/turtle
45
+ post_install_message:
46
+ rdoc_options:
47
+ - --charset=UTF-8
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: "0"
55
+ version:
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: "0"
61
+ version:
62
+ requirements: []
63
+
64
+ rubyforge_project:
65
+ rubygems_version: 1.2.0
66
+ signing_key:
67
+ specification_version: 2
68
+ summary: A turtle crouching on the floor
69
+ test_files:
70
+ - test/test_helper.rb
71
+ - test/turtle_test.rb
72
+ - examples/figures.rb