texplay 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. data/CHANGELOG +222 -222
  2. data/README.markdown +48 -43
  3. data/Rakefile +16 -3
  4. data/examples/common.rb +18 -18
  5. data/examples/example_alpha_blend.rb +29 -29
  6. data/examples/example_bezier.rb +41 -41
  7. data/examples/example_blank.rb +37 -37
  8. data/examples/example_cache.rb +21 -21
  9. data/examples/example_color_control.rb +69 -69
  10. data/examples/example_color_transform.rb +62 -62
  11. data/examples/example_color_transform_circle.rb +34 -34
  12. data/examples/example_darken.rb +24 -24
  13. data/examples/example_dup.rb +73 -73
  14. data/examples/example_each.rb +39 -39
  15. data/examples/example_effect.rb +34 -34
  16. data/examples/example_fill.rb +43 -43
  17. data/examples/example_fill_old.rb +48 -48
  18. data/examples/example_fluent.rb +29 -29
  19. data/examples/example_font.rb +31 -31
  20. data/examples/example_hash_arguments.rb +46 -46
  21. data/examples/example_ippa.rb +23 -23
  22. data/examples/example_light.rb +75 -75
  23. data/examples/example_light_multiply.rb +18 -18
  24. data/examples/example_lsystem.rb +61 -61
  25. data/examples/example_melt.rb +25 -25
  26. data/examples/example_meyet.rb +62 -62
  27. data/examples/example_polyline.rb +42 -42
  28. data/examples/example_scale.rb +27 -27
  29. data/examples/example_select.rb +36 -36
  30. data/examples/example_select2.rb +25 -25
  31. data/examples/example_simple.rb +46 -46
  32. data/examples/example_splice.rb +26 -26
  33. data/examples/example_sync.rb +59 -59
  34. data/examples/example_tiles.rb +41 -41
  35. data/examples/example_trace.rb +22 -22
  36. data/examples/example_transparent.rb +28 -28
  37. data/examples/example_transparent2.rb +24 -24
  38. data/examples/example_transparent3.rb +20 -20
  39. data/examples/example_turtle.rb +39 -39
  40. data/examples/example_weird.rb +22 -22
  41. data/examples/example_window_render_to_image.rb +41 -41
  42. data/examples/example_window_to_blob.rb +35 -35
  43. data/examples/media/maria.png +0 -0
  44. data/examples/media/rose.bmp +0 -0
  45. data/ext/texplay/actions.c +1006 -1006
  46. data/ext/texplay/actions.h +60 -60
  47. data/ext/texplay/bindings.c +1125 -1125
  48. data/ext/texplay/bindings.h +46 -46
  49. data/ext/texplay/cache.c +118 -118
  50. data/ext/texplay/cache.h +24 -24
  51. data/ext/texplay/compat.h +27 -27
  52. data/ext/texplay/extconf.rb +38 -28
  53. data/ext/texplay/graphics_utils.c +1313 -1313
  54. data/ext/texplay/graphics_utils.h +22 -22
  55. data/ext/texplay/texplay.c +201 -201
  56. data/ext/texplay/texplay.h +153 -153
  57. data/ext/texplay/utils.c +891 -891
  58. data/ext/texplay/utils.h +153 -153
  59. data/ext/texplay/vendor/freeglut/include/GL/freeglut.h +22 -0
  60. data/ext/texplay/vendor/freeglut/include/GL/freeglut_ext.h +236 -0
  61. data/ext/texplay/vendor/freeglut/include/GL/freeglut_std.h +628 -0
  62. data/ext/texplay/vendor/freeglut/include/GL/glut.h +21 -0
  63. data/lib/texplay-contrib.rb +147 -147
  64. data/lib/texplay.rb +347 -341
  65. data/lib/texplay/1.8/texplay.so +0 -0
  66. data/lib/texplay/1.9/texplay.so +0 -0
  67. data/lib/texplay/alone.rb +20 -20
  68. data/lib/texplay/c_function_docs.rb +178 -178
  69. data/lib/texplay/live.rb +84 -84
  70. data/lib/texplay/version.rb +3 -3
  71. data/live/live.rb +85 -85
  72. data/test/image_spec.rb +45 -45
  73. data/test/texplay_spec.rb +144 -144
  74. metadata +63 -49
data/CHANGELOG CHANGED
@@ -1,222 +1,222 @@
1
- *22/2/11 version 0.3.5
2
- * added :source, :dest, :source_with_alpha, :dest_with_alpha options to
3
- :alpha_blend
4
- * added live.rb (repl image editor)
5
- * added alone.rb (run texplay image manip independent from gosu)
6
-
7
- *1/11/10 version 0.3.0
8
- * pushed gems
9
- * tested
10
- *1/10/10
11
- version 0.2.983pre2
12
- * added Window#to_texture(...) seems to be broken! releasing pre2 so
13
- * others can test it :)
14
-
15
- *27/9/10
16
- version 0.2.983pre1
17
- * added Window#to_blob(x,y,width,height), grab a screenshot region
18
-
19
- *24/9/10
20
- version 0.2.982pre1
21
- * added :default drawing mode (equivalent to :mode => nil)
22
- * changed Linux texture size to 512
23
-
24
- 16/8/10
25
- version 0.2.981
26
- * oops, added :caching => false to TexPlay#dup
27
- * oops, put 'self' inside the capture block for TexPlay#clear
28
- * got rid of tolerance member from rgba struct, as tolerance is now stored
29
- separately
30
-
31
-
32
- 16/8/10
33
- version 0.2.980
34
- * added :caching option to TexPlay.set_options, and Gosu::Image.new. For
35
- control over whether images are cached or not. (accepts true and
36
- false values)
37
- * TexPlay.create_image() no longer calls refresh_cache
38
- * added new TexPlay#clear() method, just draws a filled rect over image.
39
-
40
- 14/8/10
41
- version 0.2.975
42
- * fixed :tolerance bug (was in special_cmp_color_with_tolerance, was checking color1.alpha <= tolerance instead of color2.alpha <= tolerance)
43
- * modified TexPlay.create_image() so it only draws a colored, filled rect if a :color parameter is specified
44
-
45
- 14/8/10
46
- version 0.2.970
47
- * fixed :transparent bug (bug was in rb_convert_rb_color_to_rgba(), :transparent was being matched as
48
- not_a_color)
49
- * limited not_a_color() to match just color.red == -1 && color.green == -1, etc rather than color.red < 0
50
- * Now we can use negative values to define other pseudo-colors (in similar vein to :transparent)
51
-
52
- 16/7/10
53
- version 0.2.965
54
- * fixed MAX_TEXTURE_SIZE at 1024 for linux (to avoid segfault)
55
-
56
- 4/7/10
57
- version 0.2.960
58
- * added :transparent pseudo-color
59
- * added :tolerance option (applies to :trace and :source_select etc
60
- family)
61
- * fixed memleak in to_blob
62
-
63
- 10/6/10
64
- version 0.2.950
65
- * fixed bug in apply_drawing_mode, wasn't using blended_pixel as source_pixel
66
- * hex literal colors now accepted, e.g 0xffff0000 (red)
67
-
68
- 9/6/10
69
- version 0.2.940
70
- * hopefully fixed :trace behaviour. Should now return nil for color when
71
- pixel out of bounds.
72
-
73
- 9/6/10
74
- version 0.2.930
75
- * not_a_color now returns true when color channel < 0
76
-
77
- 8/6/10
78
- version 0.2.920
79
- * :trace now supports :color_mode => :gosu
80
-
81
- 7/6/10
82
- version 0.2.910
83
- * 1.8.7 incompatibility fixed
84
-
85
- 7/6/10
86
- version 0.2.900
87
- * added source_select, source_ignore, dest_select, dest_ignore
88
- * :chroma_key now deprecated (by above functionality)
89
- * using Gosu::MAX_TEXTURE_SIZE, hopefully fixes crashes on some linux
90
- distros
91
- * Gosu::Color objects now accepted (and optionally returned by get_pixel)
92
- * Monkey patched Gosu::Image.from_text() for auto-caching
93
- * bitwise drawing modes no longer affect alpha
94
- * rows and columns methods added to Gosu::Image, allowed Gosu::Image to be
95
- reopened by Gosu::Image.new (works with Gosu::Image#to_blob)
96
-
97
-
98
- 23/03/10
99
- version 0.2.800
100
- * added 28 drawing modes (using :mode option)
101
- * added linear interpolation (:lerp)
102
- * added 'trace' option to line for efficient pixel-based collision detection
103
-
104
- 12/03/10
105
- version 0.2.721
106
- * fixed bug in alpha_blend (now blends alpha channels too)
107
-
108
- 6/12/09
109
- version 0.2.710
110
- * fixed bug in line drawing code (wasn't drawing final pixel)
111
- * fixed bug in filled rect code (wasn't drawing final row)
112
- * fixed bug in flood fill (wasn't drawing on first column)
113
- * added glDisable(GL_TEXTURE_2D) calls to cache.c, and removed 'restore previous texture binding' (i doubt there is any previous binding to restore)
114
- * using version.rb to help manage versions
115
-
116
- 23/11/09
117
- * fixed bug in texplay.rb. Replaced TexPlay::TP_MAX_QUAD_SIZE - 2 with
118
- just TexPlay::TP_MAX_QUAD_SIZE (the -2 is now built into the constant)
119
-
120
- 16/10/09
121
- version 0.2.700
122
- * removed memory leak from Gosu::Image#to_blob, now writing directly to RSTRING_PTR
123
-
124
- 12/10/09
125
- version 0.2.666
126
- * added Gosu::Image#to_blob
127
- * to_blob functionality enables Gosu::Images to work with DevIL library
128
-
129
- 6/10/09
130
- version 0.2.5
131
- * fixed quad_draw flicker bug
132
- * added splice_and_scale (to texplay-contrib.rb)
133
- * now using rake-compiler to run build process
134
-
135
- 15/9/09
136
- version 0.2.4
137
- * added lsystem
138
- * made lsystem both 1.9.1 and 1.8.6 compatible
139
-
140
- 11/9/09
141
- version 0.2.3
142
- * added Ruby 1.8.7 compatibility by modifying extconf.rb to define RUBY_19 macro
143
- * and modified compat.h to get rid of feature test (fails on 1.8.7)
144
-
145
- 8/9/09
146
- version 0.2.2
147
- * fixed color_control bug, action_struct->color was being overwritten (now using a temp).
148
- * fixed faulty error msg where max tex size was being displayed as 1024 but is actually 1022
149
- * added :start_angle parameter to ngon action
150
- * fixed example screen height from 769 to 768
151
- * arity of -1 and 0 now supported for color_control procs
152
- * fixed parameter checks for circle and ngon
153
- * updated documentation to reflect changes, and added details on caching
154
-
155
- 2/9/09
156
- version 0.2.1
157
- * releasing a gem for TexPlay
158
- * bumped version number so can add add gosu 0.7.14 dependency to github gem
159
- * hopefully gem works on both github and rubyforge
160
- 31/8/09
161
- version 0.2.0
162
- * added each iterator
163
- * added alternative to proc for :color_control proc (allowing static linear transforms to pixels)
164
- * no longer segfaulting on windows (no idea why not)
165
- * rewrote EmptyImageStub in ruby, using philomory's code. now alot faster.
166
- * implemented 'shadow' in terms of static :color_control pixel transform
167
- * added more example code demonstrating each iterator (example_each.rb) and new color_control behaviour
168
- i.e example_color_transform.rb
169
- * should be relatively stable now!
170
-
171
- 28/8/09
172
- version 0.1.9.1 (still BETA)
173
- * experimental features: Gosu::Image#dup and Gosu::Image#clone
174
- * also TexPlay::create_blank_image(window, width, height)
175
- * I noticed these features SEG FAULT on my setup in windows, so be warned
176
- * This is a BETA release
177
-
178
- 14/8/09
179
- version 0.1.9.0 (BETA)
180
- * major rewrite. TP now supports beziers, polylines, polygons, and more
181
- * also supports alpha_blending (though still tempermental)
182
- * This is a BETA release
183
-
184
- 1/7/09
185
- version 0.1.6.2
186
- * fixed another subtle bug in constrain_local_boundaries(). Function was
187
- unable to deal with drawing actions that were 100% outside the image
188
- boundaries.
189
-
190
- 28/6/09
191
- version 0.1.6
192
- * gen_eval now working as a replacement for instance_eval in the #paint block. Allows for more user-friendly interface.
193
- * #paint can now be called without a block; if invoked this way it executes any commands in the action queue, e.g
194
- @img.circle 20, 20, 40
195
- @img.pixel 30, 30
196
- @img.paint
197
- * above will function as if: @img.paint { circle 20, 20, 40; pixel 30, 30 }
198
- * collected 1.8.6/1.9.1 compatibility into compat.h
199
-
200
- 16/6/09
201
- version 0.1.4.6
202
- * allowed arity of 0 (as well as -1) for ruby 1.9 compatibility
203
-
204
- 13/6/09
205
- version 0.1.4.5
206
- * major bugfix with TexPlay#splice method (segfaut). Also added new color format parameter: color [1, 1, 0, 1] (e.g purple with full alpha).
207
- Also fixed subtle edge-case bug in constrain_local_boundaries().
208
-
209
- 9/6/09
210
- version 0.1.4
211
- * improved error checking. should work better with later gosu releases
212
-
213
- 20/2/09
214
- version 0.1.1
215
- * rerelease of this version fixing the oversized image bug for refresh_cache (i.e images over 500 x 500
216
-
217
- version 0.1.1
218
- * oops, bug in leftshift/rightshift functions, fixed!
219
-
220
- version 0.1.0
221
- * release!
222
-
1
+ *22/2/11 version 0.3.5
2
+ * added :source, :dest, :source_with_alpha, :dest_with_alpha options to
3
+ :alpha_blend
4
+ * added live.rb (repl image editor)
5
+ * added alone.rb (run texplay image manip independent from gosu)
6
+
7
+ *1/11/10 version 0.3.0
8
+ * pushed gems
9
+ * tested
10
+ *1/10/10
11
+ version 0.2.983pre2
12
+ * added Window#to_texture(...) seems to be broken! releasing pre2 so
13
+ * others can test it :)
14
+
15
+ *27/9/10
16
+ version 0.2.983pre1
17
+ * added Window#to_blob(x,y,width,height), grab a screenshot region
18
+
19
+ *24/9/10
20
+ version 0.2.982pre1
21
+ * added :default drawing mode (equivalent to :mode => nil)
22
+ * changed Linux texture size to 512
23
+
24
+ 16/8/10
25
+ version 0.2.981
26
+ * oops, added :caching => false to TexPlay#dup
27
+ * oops, put 'self' inside the capture block for TexPlay#clear
28
+ * got rid of tolerance member from rgba struct, as tolerance is now stored
29
+ separately
30
+
31
+
32
+ 16/8/10
33
+ version 0.2.980
34
+ * added :caching option to TexPlay.set_options, and Gosu::Image.new. For
35
+ control over whether images are cached or not. (accepts true and
36
+ false values)
37
+ * TexPlay.create_image() no longer calls refresh_cache
38
+ * added new TexPlay#clear() method, just draws a filled rect over image.
39
+
40
+ 14/8/10
41
+ version 0.2.975
42
+ * fixed :tolerance bug (was in special_cmp_color_with_tolerance, was checking color1.alpha <= tolerance instead of color2.alpha <= tolerance)
43
+ * modified TexPlay.create_image() so it only draws a colored, filled rect if a :color parameter is specified
44
+
45
+ 14/8/10
46
+ version 0.2.970
47
+ * fixed :transparent bug (bug was in rb_convert_rb_color_to_rgba(), :transparent was being matched as
48
+ not_a_color)
49
+ * limited not_a_color() to match just color.red == -1 && color.green == -1, etc rather than color.red < 0
50
+ * Now we can use negative values to define other pseudo-colors (in similar vein to :transparent)
51
+
52
+ 16/7/10
53
+ version 0.2.965
54
+ * fixed MAX_TEXTURE_SIZE at 1024 for linux (to avoid segfault)
55
+
56
+ 4/7/10
57
+ version 0.2.960
58
+ * added :transparent pseudo-color
59
+ * added :tolerance option (applies to :trace and :source_select etc
60
+ family)
61
+ * fixed memleak in to_blob
62
+
63
+ 10/6/10
64
+ version 0.2.950
65
+ * fixed bug in apply_drawing_mode, wasn't using blended_pixel as source_pixel
66
+ * hex literal colors now accepted, e.g 0xffff0000 (red)
67
+
68
+ 9/6/10
69
+ version 0.2.940
70
+ * hopefully fixed :trace behaviour. Should now return nil for color when
71
+ pixel out of bounds.
72
+
73
+ 9/6/10
74
+ version 0.2.930
75
+ * not_a_color now returns true when color channel < 0
76
+
77
+ 8/6/10
78
+ version 0.2.920
79
+ * :trace now supports :color_mode => :gosu
80
+
81
+ 7/6/10
82
+ version 0.2.910
83
+ * 1.8.7 incompatibility fixed
84
+
85
+ 7/6/10
86
+ version 0.2.900
87
+ * added source_select, source_ignore, dest_select, dest_ignore
88
+ * :chroma_key now deprecated (by above functionality)
89
+ * using Gosu::MAX_TEXTURE_SIZE, hopefully fixes crashes on some linux
90
+ distros
91
+ * Gosu::Color objects now accepted (and optionally returned by get_pixel)
92
+ * Monkey patched Gosu::Image.from_text() for auto-caching
93
+ * bitwise drawing modes no longer affect alpha
94
+ * rows and columns methods added to Gosu::Image, allowed Gosu::Image to be
95
+ reopened by Gosu::Image.new (works with Gosu::Image#to_blob)
96
+
97
+
98
+ 23/03/10
99
+ version 0.2.800
100
+ * added 28 drawing modes (using :mode option)
101
+ * added linear interpolation (:lerp)
102
+ * added 'trace' option to line for efficient pixel-based collision detection
103
+
104
+ 12/03/10
105
+ version 0.2.721
106
+ * fixed bug in alpha_blend (now blends alpha channels too)
107
+
108
+ 6/12/09
109
+ version 0.2.710
110
+ * fixed bug in line drawing code (wasn't drawing final pixel)
111
+ * fixed bug in filled rect code (wasn't drawing final row)
112
+ * fixed bug in flood fill (wasn't drawing on first column)
113
+ * added glDisable(GL_TEXTURE_2D) calls to cache.c, and removed 'restore previous texture binding' (i doubt there is any previous binding to restore)
114
+ * using version.rb to help manage versions
115
+
116
+ 23/11/09
117
+ * fixed bug in texplay.rb. Replaced TexPlay::TP_MAX_QUAD_SIZE - 2 with
118
+ just TexPlay::TP_MAX_QUAD_SIZE (the -2 is now built into the constant)
119
+
120
+ 16/10/09
121
+ version 0.2.700
122
+ * removed memory leak from Gosu::Image#to_blob, now writing directly to RSTRING_PTR
123
+
124
+ 12/10/09
125
+ version 0.2.666
126
+ * added Gosu::Image#to_blob
127
+ * to_blob functionality enables Gosu::Images to work with DevIL library
128
+
129
+ 6/10/09
130
+ version 0.2.5
131
+ * fixed quad_draw flicker bug
132
+ * added splice_and_scale (to texplay-contrib.rb)
133
+ * now using rake-compiler to run build process
134
+
135
+ 15/9/09
136
+ version 0.2.4
137
+ * added lsystem
138
+ * made lsystem both 1.9.1 and 1.8.6 compatible
139
+
140
+ 11/9/09
141
+ version 0.2.3
142
+ * added Ruby 1.8.7 compatibility by modifying extconf.rb to define RUBY_19 macro
143
+ * and modified compat.h to get rid of feature test (fails on 1.8.7)
144
+
145
+ 8/9/09
146
+ version 0.2.2
147
+ * fixed color_control bug, action_struct->color was being overwritten (now using a temp).
148
+ * fixed faulty error msg where max tex size was being displayed as 1024 but is actually 1022
149
+ * added :start_angle parameter to ngon action
150
+ * fixed example screen height from 769 to 768
151
+ * arity of -1 and 0 now supported for color_control procs
152
+ * fixed parameter checks for circle and ngon
153
+ * updated documentation to reflect changes, and added details on caching
154
+
155
+ 2/9/09
156
+ version 0.2.1
157
+ * releasing a gem for TexPlay
158
+ * bumped version number so can add add gosu 0.7.14 dependency to github gem
159
+ * hopefully gem works on both github and rubyforge
160
+ 31/8/09
161
+ version 0.2.0
162
+ * added each iterator
163
+ * added alternative to proc for :color_control proc (allowing static linear transforms to pixels)
164
+ * no longer segfaulting on windows (no idea why not)
165
+ * rewrote EmptyImageStub in ruby, using philomory's code. now alot faster.
166
+ * implemented 'shadow' in terms of static :color_control pixel transform
167
+ * added more example code demonstrating each iterator (example_each.rb) and new color_control behaviour
168
+ i.e example_color_transform.rb
169
+ * should be relatively stable now!
170
+
171
+ 28/8/09
172
+ version 0.1.9.1 (still BETA)
173
+ * experimental features: Gosu::Image#dup and Gosu::Image#clone
174
+ * also TexPlay::create_blank_image(window, width, height)
175
+ * I noticed these features SEG FAULT on my setup in windows, so be warned
176
+ * This is a BETA release
177
+
178
+ 14/8/09
179
+ version 0.1.9.0 (BETA)
180
+ * major rewrite. TP now supports beziers, polylines, polygons, and more
181
+ * also supports alpha_blending (though still tempermental)
182
+ * This is a BETA release
183
+
184
+ 1/7/09
185
+ version 0.1.6.2
186
+ * fixed another subtle bug in constrain_local_boundaries(). Function was
187
+ unable to deal with drawing actions that were 100% outside the image
188
+ boundaries.
189
+
190
+ 28/6/09
191
+ version 0.1.6
192
+ * gen_eval now working as a replacement for instance_eval in the #paint block. Allows for more user-friendly interface.
193
+ * #paint can now be called without a block; if invoked this way it executes any commands in the action queue, e.g
194
+ @img.circle 20, 20, 40
195
+ @img.pixel 30, 30
196
+ @img.paint
197
+ * above will function as if: @img.paint { circle 20, 20, 40; pixel 30, 30 }
198
+ * collected 1.8.6/1.9.1 compatibility into compat.h
199
+
200
+ 16/6/09
201
+ version 0.1.4.6
202
+ * allowed arity of 0 (as well as -1) for ruby 1.9 compatibility
203
+
204
+ 13/6/09
205
+ version 0.1.4.5
206
+ * major bugfix with TexPlay#splice method (segfaut). Also added new color format parameter: color [1, 1, 0, 1] (e.g purple with full alpha).
207
+ Also fixed subtle edge-case bug in constrain_local_boundaries().
208
+
209
+ 9/6/09
210
+ version 0.1.4
211
+ * improved error checking. should work better with later gosu releases
212
+
213
+ 20/2/09
214
+ version 0.1.1
215
+ * rerelease of this version fixing the oversized image bug for refresh_cache (i.e images over 500 x 500
216
+
217
+ version 0.1.1
218
+ * oops, bug in leftshift/rightshift functions, fixed!
219
+
220
+ version 0.1.0
221
+ * release!
222
+
@@ -1,43 +1,48 @@
1
- ![Alt text](https://dl.getdropbox.com/u/239375/texplay.png)
2
-
3
- *an image manipulation tool for ruby and gosu*
4
-
5
- INSTRUCTIONS
6
- ============
7
-
8
- **TexPlay version 0.3.0**
9
-
10
- [Read The Documentation](http://banisterfiend.wordpress.com/2008/08/23/texplay-an-image-manipulation-tool-for-ruby-and-gosu/)
11
-
12
- Gem installation:
13
-
14
- + sudo gem install texplay
15
-
16
- How to build the gems? (maintainers only)
17
-
18
- + Install rake-compiler (http://github.com/luislavena/rake-compiler)
19
- + Install 1.9.1 and 1.8.6 mingw ruby versions (instructions above)
20
- + Type: rake cross native gem RUBY_CC_VERSION=1.8.6:1.9.1
21
- + Upload new gems to rubyforge and gemcutter.
22
-
23
- How to build from source?
24
- + rake compile
25
-
26
- OR
27
-
28
- + rake19 compile (assuming this is the name of your 1.9.1 version of rake)
29
-
30
- **NB:** be sure to run the version of rake that corresponds to the ruby version you wish to use! on my system I use rake19 for ruby 1.9.1!
31
-
32
- If all goes well, run the example programs:
33
-
34
- + cd examples
35
- + ruby example_melt.rb
36
- + ruby example_simple.rb
37
- + ..etc
38
-
39
- + like any gosu application, gosu.so must be in the current directory (or the gosu gem installed) when running the examples.
40
-
41
-
42
- ---
43
- Enjoy!
1
+ ![Alt text](https://dl.getdropbox.com/u/239375/texplay.png)
2
+
3
+ *an image manipulation tool for ruby and gosu*
4
+
5
+ INSTRUCTIONS
6
+ ============
7
+
8
+ **TexPlay version 0.4.2**
9
+
10
+ [Read The Documentation](http://banisterfiend.wordpress.com/2008/08/23/texplay-an-image-manipulation-tool-for-ruby-and-gosu/)
11
+
12
+ Gem installation:
13
+
14
+ + sudo gem install texplay
15
+
16
+ How to build the gems? (maintainers only)
17
+
18
+ + Install rake-compiler (http://github.com/luislavena/rake-compiler)
19
+ + Install 1.9.1 and 1.8.6 mingw ruby versions (instructions above)
20
+ + Type (on Linux/OSX to build fat Win32 binary): `rake cross native gem RUBY_CC_VERSION=1.8.6:1.9.1`
21
+
22
+ + Upload new gems to rubyforge and gemcutter.
23
+
24
+ How to build from source?
25
+ + rake compile
26
+
27
+ OR
28
+
29
+ + rake19 compile (assuming this is the name of your 1.9.1 version of rake)
30
+
31
+ **NB:** be sure to run the version of rake that corresponds to the ruby version you wish to use! on my system I use rake19 for ruby 1.9.1!
32
+
33
+ If all goes well, run the example programs:
34
+
35
+ + cd examples
36
+ + ruby example_melt.rb
37
+ + ruby example_simple.rb
38
+ + ..etc
39
+
40
+ + like any gosu application, gosu.so must be in the current directory (or the gosu gem installed) when running the examples.
41
+
42
+ Third party
43
+ -----------
44
+
45
+ + (Windows only) [Freeglut](http://freeglut.sourceforge.net/) [Freeglut Copyright]
46
+
47
+ ---
48
+ Enjoy!