rubysdl-mswin32-1.8 2.1.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.
Files changed (80) hide show
  1. data/NEWS.en +280 -0
  2. data/NEWS.ja +291 -0
  3. data/README.en +118 -0
  4. data/README.en.win32 +72 -0
  5. data/README.ja +166 -0
  6. data/README.ja.win32 +80 -0
  7. data/dll/SDL.dll +0 -0
  8. data/dll/SDL_image.dll +0 -0
  9. data/dll/SDL_mixer.dll +0 -0
  10. data/dll/SDL_ttf.dll +0 -0
  11. data/dll/SGE.dll +0 -0
  12. data/dll/jpeg.dll +0 -0
  13. data/dll/libcharset-1.dll +0 -0
  14. data/dll/libfreetype-6.dll +0 -0
  15. data/dll/libiconv-2.dll +0 -0
  16. data/dll/libogg-0.dll +0 -0
  17. data/dll/libpng12-0.dll +0 -0
  18. data/dll/libtiff-3.dll +0 -0
  19. data/dll/libvorbis-0.dll +0 -0
  20. data/dll/libvorbisfile-3.dll +0 -0
  21. data/dll/smpeg.dll +0 -0
  22. data/dll/zlib1.dll +0 -0
  23. data/doc/cdrom.rd +305 -0
  24. data/doc/collision.rd +121 -0
  25. data/doc/event.rd +1090 -0
  26. data/doc/font.rd +625 -0
  27. data/doc/general.rd +60 -0
  28. data/doc/init.rd +142 -0
  29. data/doc/joystick.rd +301 -0
  30. data/doc/mixer.rd +584 -0
  31. data/doc/mpeg.rd +420 -0
  32. data/doc/opengl.rd +144 -0
  33. data/doc/rsd.rb +158 -0
  34. data/doc/sdlskk.rd +404 -0
  35. data/doc/time.rd +34 -0
  36. data/doc/video.rd +2269 -0
  37. data/doc/wm.rd +78 -0
  38. data/ext/opengl.so +0 -0
  39. data/ext/sdl.so +0 -0
  40. data/install_rubysdl.rb +30 -0
  41. data/lib/rubysdl_aliases.rb +303 -0
  42. data/lib/rubysdl_compatible_ver1.rb +243 -0
  43. data/lib/sdl.rb +224 -0
  44. data/rubysdl_doc_old.en.rd +2181 -0
  45. data/rubysdl_doc_old.rd +2402 -0
  46. data/rubysdl_ref.html +5888 -0
  47. data/rubysdl_ref.rd +6577 -0
  48. data/sample/aadraw.rb +25 -0
  49. data/sample/alpha.rb +26 -0
  50. data/sample/alphadraw.rb +25 -0
  51. data/sample/bfont.rb +24 -0
  52. data/sample/cdrom.rb +24 -0
  53. data/sample/collision.rb +97 -0
  54. data/sample/cursor.bmp +0 -0
  55. data/sample/cursor.rb +22 -0
  56. data/sample/ellipses.rb +39 -0
  57. data/sample/event2.rb +34 -0
  58. data/sample/font.bmp +0 -0
  59. data/sample/font.rb +26 -0
  60. data/sample/fpstimer.rb +175 -0
  61. data/sample/icon.bmp +0 -0
  62. data/sample/icon.bmp.gz +0 -0
  63. data/sample/icon.png +0 -0
  64. data/sample/joy2.rb +81 -0
  65. data/sample/kanji.rb +36 -0
  66. data/sample/load_from_io.rb +45 -0
  67. data/sample/movesp.rb +94 -0
  68. data/sample/playmod.rb +13 -0
  69. data/sample/plaympeg.rb +44 -0
  70. data/sample/playwave.rb +15 -0
  71. data/sample/randrect.rb +40 -0
  72. data/sample/rubysdl.rb +34 -0
  73. data/sample/sample.ttf +0 -0
  74. data/sample/sdlskk.rb +70 -0
  75. data/sample/sgetest.rb +33 -0
  76. data/sample/stetris.rb +274 -0
  77. data/sample/testgl.rb +165 -0
  78. data/sample/testsprite.rb +69 -0
  79. data/sample/transformblit.rb +42 -0
  80. metadata +135 -0
data/README.en ADDED
@@ -0,0 +1,118 @@
1
+
2
+ Ruby/SDL 2.1.0
3
+ Ohbayashi Ippei
4
+
5
+ 1 What's Ruby/SDL
6
+
7
+ Ruby/SDL is the ruby extension library to use SDL.
8
+ SDL(Simple DirectMedia Layer) is a cross-platform multimedia library
9
+ designed to provide fast access to the graphics framebuffer and audio
10
+ device. See http://www.libsdl.org/ if you want to know SDL in detail.
11
+
12
+ 2 Platform
13
+ This library supports
14
+ Linux on X,Win32,FreeBSD and BeOS.
15
+
16
+ 3 Library Needed
17
+
18
+ Ruby/SDL needs Ruby and SDL and optionally uses SDL_image,SDL_mixer,
19
+ SDL_ttf, SGE, OpenGL and SMPEG.
20
+
21
+ Indispensable
22
+ Ruby http://www.ruby-lang.org/
23
+ SDL http://www.libsdl.org/
24
+
25
+ Optional
26
+ SDL_mixer http://www.libsdl.org/projects/SDL_mixer/index.html
27
+ SDL_ttf http://www.libsdl.org/projects/SDL_ttf/index.html
28
+ SDL_image http://www.libsdl.org/projects/SDL_image/index.html
29
+ SGE http://www.etek.chalmers.se/~e8cal1/sge/
30
+ SMPEG http://www.icculus.org/smpeg/
31
+ SDLSKK http://www.kmc.gr.jp/~ohai/sdlskk.en.html
32
+
33
+ 4 INSTALL
34
+
35
+ install on FreeBSD
36
+ Use Port.
37
+
38
+ install on Linux
39
+ (1)install Ruby
40
+ See Ruby's document and install.
41
+ (2)install SDL
42
+ Extract SDL's source and run './configure' with '--disable-pthreads'
43
+ option.
44
+ On Linux using pthread with Ruby/SDL makes problem.
45
+ You can avoid this problem by other way (Please see rubysdl_doc.en.rd).
46
+ And run 'make','make install'.
47
+
48
+ (3)install SGE
49
+ Run 'make' and 'make install'.
50
+
51
+ (4)install SDL_mixer, SDL_ttf, SDL_image, SMPEG and SDLSKK
52
+ See documents of these libraries and install them .
53
+
54
+ (5)install this extension library,Ruby/SDL
55
+ Run 'ruby extconf.rb','make' and 'make install'.
56
+
57
+ 5 USE Ruby/SDL
58
+ Write "require 'sdl'" in your Ruby script.
59
+ See following documents and samples if you want to know the detail.
60
+
61
+ sample/*.rb
62
+ Ruby/SDL samples.In some script, you have to prepare data such as
63
+ "sample.wav" and "sample.mpg".
64
+ rubysdl_doc.en.rd
65
+ Simple reference manual
66
+ document of SDL
67
+ This is in SDL archive.
68
+ Please read this when you want to know what does't describe
69
+ these documents.
70
+
71
+ 6 OpenGL
72
+ You can use OpenGL with this library.
73
+
74
+ (1) Setup OpenGL and SDL.
75
+ (2) Get OpenGL Interface (http://raa.ruby-lang.org/project/opengl/)
76
+ (3) Install OpenGL Interface
77
+ (4) Run "ruby extconf.rb" with "--enable-opengl".
78
+ (5) Run "make" and "make install"
79
+ (6) Write "require 'sdl'; require 'opengl'" in your script.
80
+
81
+ The interface of OpenGL is same as "OpenGL Interface".
82
+ Please see SDL's document,OpenGL document and sample/testgl.rb .
83
+
84
+ Each OpenGL implementation are a little different in API, so
85
+ you may fail to compile Ruby's OpenGL Interface. If you can't
86
+ compile, but if you want to complile it, you should modify
87
+ sources.
88
+
89
+ 7 LICENSE
90
+ This library is distributed under GNU LGPL version 2.1 or later,
91
+ which can be found in the file "LICENSE".
92
+ But samples, the Ruby scripts sample/*.rb, are not under LGPL, and
93
+ you can use their files freely.
94
+
95
+ 8 Thanks
96
+ Thanks to ...
97
+ Tamura : some patches and advertising
98
+ Akinori MUSHA : Porting on FreeBSD
99
+ Danny van Bruggen : some ideas are from his library "RUDL"
100
+ akira yamada : patch of SDL::TTF, making packages of Vine and Debian.
101
+ Wayne Conrad : some patches
102
+ Christian Neukirchen, Kent Dahl : send a patch
103
+ Keffin Barnaby : some patches
104
+ Rorien Dunn, Dennis Ranke, Keita Urashima : bug reports and useful information
105
+ Yusuke TABATA : introduce me into SDL world
106
+ SDLdoc Japanese translation project : base of Ruby/SDL's reference manual
107
+ Hara Yutaka: Sample TrueTypeFont
108
+ Members of #sdl-fan-jp @ FriendChat: bug reports and advices
109
+ Cyross: Windows version maintainance
110
+
111
+ 9 OTHER
112
+ Some functions, especially SDL::MPEG methods and pallete handling methods,
113
+ are not tested.
114
+
115
+ Please send comments and bug reports to the author.
116
+ Author's mail address: ohai@kmc.gr.jp
117
+
118
+
data/README.en.win32 ADDED
@@ -0,0 +1,72 @@
1
+ Ruby/SDL 2.1.0 Win32's binary
2
+ Ohbayashi Ippei
3
+ Cyross Makoto
4
+
5
+ 1 What's Ruby/SDL?
6
+
7
+ Ruby/SDL is the ruby extension library to use SDL.
8
+ SDL(Simple DirectMedia Layer) is a cross-platform multimedia library
9
+ designed to provide fast access to the graphics framebuffer and audio
10
+ device. See http://www.libsdl.org/ if you want to know SDL in detail.
11
+
12
+ 2 Platform
13
+
14
+ This library supports
15
+ Linux on X,Win32,FreeBSD and BeOS.
16
+
17
+ And this archive contains compiled Ruby/SDL for win32 mingw's Ruby.
18
+ This binary is tested on WindowsXP, Ruby 1.8.7-p72 mswin32 and SDL 1.2.11.
19
+
20
+ 3 Install
21
+
22
+ First, install mingw32 Ruby.
23
+ You can get that from
24
+ http://www.garbagecollect.jp/ruby/mswin32/en/download/release.html
25
+
26
+ Therefore, you should run command prompt, change directory(cd) here,
27
+ and type
28
+ ruby install_rubysdl.rb
29
+ then all files are copyed and finish installation.
30
+
31
+ 3.1 Another way to install
32
+ Copy ext\sdl.so, ext\opengl.so, lib\sdl.rb, lib\rubysdl_aliases.rb
33
+ and all DLL files in dll\ to appropriate folder.
34
+ If you have installed Ruby at
35
+ C:\ruby ( in other words ruby.exe is under C:\ruby\bin ) ,
36
+ you'll copy sdl.so, and opengl.so to C:\ruby\lib\ruby\site-ruby\1.8\i386-msvcrt,
37
+ copy sdl.rb and rubysdl_aliases.rb to C:\ruby\lib\ruby\site-ruby\1.8\,
38
+ and copy all DLL files to PATH directory.
39
+
40
+ Therefore that's all right.
41
+
42
+ 4 How to use
43
+
44
+ You can find documents and samples in this archive.
45
+
46
+ 5 License
47
+
48
+ sdl.so, sdl.rb are under LGPL version 2.1.
49
+ opengl.so is under Ruby's Licence.
50
+
51
+ Ohbayashi Ippei has sdl.so, rubysdl_aliases and sdl.rb 's copyright, and
52
+ Yoshiyuki Kusano hase opengl.so's copyright.
53
+
54
+ 6 Note
55
+ Perhaps you cannot use hardware surface.
56
+
57
+ 7 Version information
58
+ Ruby 1.8.7-p72
59
+ SDL 1.2.13
60
+ SDL_image 1.2.6
61
+ SDL_ttf 2.0.9
62
+ SDL_mixer 1.2.8
63
+ SGE 030809 + patch for overflow error
64
+ Ruby/opengl 0.32g
65
+ iconv 1.11
66
+ sdlskk 0.4+
67
+
68
+ 8 Other
69
+
70
+ Please send comments and bug reports to the author or rubyforge's BTS.
71
+ RubyForge's project page: http://rubyforge.org/projects/rubysdl/
72
+ Author's mail address: cyross@po.twin.ne.jp
data/README.ja ADDED
@@ -0,0 +1,166 @@
1
+
2
+ Ruby/SDL 2.1.0
3
+ ���Ӱ�ʿ
4
+
5
+ 1 ����
6
+
7
+ ����ϡ�Ruby����SDL�ε�ǽ��Ȥ�����γ�ĥ�饤�֥��Ǥ���
8
+ SDL�Ȥϡ�Win32,Linux,BeOS,MacOS,FreeBSD,Solaris����ư�����������ץ�åȥե�����ʥ����೫ȯ�ѥ饤�֥��Ǥ���
9
+
10
+ 2 ư��Ķ�
11
+ Linux��X�塢Win32
12
+ �ޤ���FreeBSD��ư���ǧ���졢Ports�����줿�����Ǥ���
13
+ BeOS��Ǥ�ư�������Ǥ���
14
+ MacOSX�Ǥ�ư���������Ǥ���������Ruby�˼�������ɬ�פ�����褦�Ǥ���
15
+ ����ʳ��Ǥϳ�ǧ���Ƥ��ޤ���
16
+
17
+ 3 ɬ�פʥ饤�֥��
18
+
19
+ ���Υ饤�֥��ϡ�ruby�ν����Ϥ�¾���ʲ��Υ饤�֥���ɬ�פȤ��ޤ���
20
+ SDL_mixer,SDL_ttf,SDL_image,SGE,smpeg,SDLSKK�Ϥʤ��Ƥ⤫�ޤ��ޤ���
21
+
22
+ SDL(ɬ��) http://www.libsdl.org/
23
+
24
+
25
+ SDL_mixer(���ץ����) http://www.libsdl.org/projects/SDL_mixer/index.html
26
+ SDL_ttf(���ץ����) http://www.libsdl.org/projects/SDL_ttf/index.html
27
+ SDL_image(���ץ����) http://www.libsdl.org/projects/SDL_image/index.html
28
+ SGE(���ץ����) http://www.etek.chalmers.se/~e8cal1/sge/
29
+ SMPEG(���ץ����) http://www.icculus.org/smpeg/
30
+ SDLSKK(���ץ����) http://www.kmc.gr.jp/~ohai/sdlskk.html
31
+
32
+ �ޤ���SDL_kanji�����Ѥ��Ƥ��ޤ���������ϥ��������֤˴ޤ�Ƥ���Τ�
33
+ �̤��Ѱդ���ɬ�פϤ���ޤ���
34
+
35
+ 4 ���󥹥ȡ���
36
+ Linux��ǤΥ��󥹥ȡ�����������ޤ���Unix�Ϥ�OS�ʤ�ɤ�Ǥ�Ʊ���褦
37
+ �ˤǤ���Ȼפ��ޤ���
38
+ Debian��Vine������¾�͡��ʥǥ����ȥ�ӥ塼�����ˤ�Ruby/SDL�Υѥå�����
39
+ ������ΤǤ�������Ѥ��Ƥ�褤�Ǥ��礦��
40
+ Windows��Ǥ��̤��Ѱդ��Ƥ���Х��ʥ����Ѥ����ۤ����ڤǤ��礦��
41
+ FreeBSD�ˤ�Port������ΤǤ�������Ѥ��Ƥ���������
42
+ ��Ԥ�Windows�δĶ��Ǥϡ�extconf.rb����Ѥ���Makefile���ǽ񤤤�
43
+ ����ѥ��뤷�Ƥ����ꤷ�ޤ���
44
+
45
+ (1)ruby�Υ��󥹥ȡ���
46
+ ruby�Υɥ���������˽��äƥ��󥹥ȡ��뤷�Ƥ���������
47
+
48
+ (2)SDL�Υ��󥹥ȡ���
49
+ ��������Ÿ�����ƥ���ѥ��뤹����ϡ��ʲ����̤�ˤ��Ƥ���������
50
+ ./configure --disable-pthreads
51
+ (������--disable-pthreads���ץ�����Ĥ��ʤ��Ȥ��ޤ�ư���ޤ���)
52
+ (���Υ��ץ�����Ĥ��Ƥ⡢SDL������ǽ�Ȥ���褦�Ǥ�)
53
+ (Linux�ʳ��Ǥ�ɬ�פ���ޤ���)
54
+ (rubysdl_doc.rd�κǸ��--disable-pthreads���դ��ʤ��Ȥ��ɤ���ˡ��񤤤Ƥ���ޤ�)
55
+ make
56
+ make install
57
+
58
+ (3)SGE�Υ��󥹥ȡ���
59
+ make; make install�ǥ��󥹥ȡ��뤵��ޤ���
60
+
61
+ (4)SDL_mixer,SDL_ttf,SDL_image,SMPEG,SDLSKK�Υ��󥹥ȡ���
62
+ ��°�Υɥ�����Ȥ˽��äƥ��󥹥ȡ��뤷�Ƥ���������
63
+
64
+ (5)���γ�ĥ�饤�֥��(Ruby/SDL)�Υ��󥹥ȡ���
65
+ ���Υ饤�֥��Υ�������Ÿ�������ǥ��쥯�ȥ����
66
+ ruby extconf.rb
67
+ make
68
+ make install
69
+ �Ȥ��Ƥ���������
70
+
71
+ 5 �Ȥ���
72
+ require 'sdl'�ǻȤ��ޤ���
73
+ �ܤ����ϡ��ʲ��Υե������ɥ�����Ȥ򸫤Ƥ���������
74
+
75
+ sample/*.rb ����ץ�
76
+ �ʲ��Υ���ץ뤬����ޤ���
77
+ testsprite.rb ����ɽ���Υ���ץ�
78
+ playwave.rb PCM�ե�������դΥ���ץ� sample.wav ��ɬ��
79
+ movesp.rb �������ϤΥ���ץ�
80
+ alpha.rb ����ե��֥��ǥ��󥰤Υ���ץ�
81
+ sgetest.rb sge�Υץ�ߥƥ�������Υ���ץ�
82
+ font.rb True Type Font�Υ���ץ�
83
+ playmod.rb mod�ե�������դΥ���ץ� sample.it ��ɬ��
84
+ testgl.rb OpenGL�Υ���ץ�
85
+ cursor.rb �ޥ�������������ѹ����륵��ץ�p
86
+ transformblit.rb ��ž�̾�����Υ���ץ�
87
+ joy2.rb ���祤�ѥå����ϤΥ���ץ�
88
+ plaympeg.rb mpegɽ���Υ���ץ� sample.mpg��ɬ��
89
+ sdlskk.rb SDLSKK�Υ���ץ롣�ե���Ȥ伭����ɬ��
90
+ �ܤ����ϥ���ץ�Υ����Ȥ򸫤Ƥ�������
91
+ bfont.rb �ӥåȥޥåץե����ɽ���Υ���ץ�
92
+ kanji.rb SDL_Kanji��ǽ�Υ���ץ롣8x16.bdf��jiskan16.bdf
93
+ �Ȥ���2�Ĥ�bdf�ե����뤬ɬ��
94
+ collision.rb ���͸��е�ǽ�Υ���ץ�
95
+ ����¾
96
+ rubysdl_ref.rd, rubysdl_ref.html ��ե����
97
+ Ruby/SDL�Υ�ե���󥹥ޥ˥奢��Ǥ���
98
+ rubysdl_doc_old.rd �Ť���ե����
99
+ �Ť���ե���󥹤Ǥ���
100
+ SDL�Υɥ������
101
+ SDL�Υ��󥹥ȡ���ΤȤ���Ÿ�������ե��������ˤ���Ϥ��Ǥ���
102
+ �ޤ��� http://www.tacoworks.jp/software/SDLdoc-jp/index-j.html
103
+ �������ܸ�Υɥ�����Ȥ�������ޤ���
104
+ ��ե���󥹤˽񤫤�Ƥ��ʤ����ȤϤ���򸫤Ƥ���������
105
+ doc/
106
+ Makefile
107
+ rsd.rb
108
+ *.rsd
109
+ ��ե���󥹥ޥ˥奢��θ��ǡ����Ǥ���
110
+
111
+ 6 OpenGL�ˤĤ���
112
+ ���Υ饤�ե��ˤ�ä�OpenGL�ؤΥ�����������ǽ�ˤʤ�ޤ���
113
+
114
+ (1) SDL����OpenGL��Ȥ���褦�����ꤹ�롣
115
+ (2) http://raa.ruby-lang.org/project/opengl/ ����Ruby�Ѥ�
116
+ OpenGL Interface ���äƤ��ƥ��󥹥ȡ��뤹�롣
117
+ (3) ruby extconf.rb �򤹤�Ȥ��ˡ�--enable-opengl ����ꤹ�롣
118
+ (4) make ; make install ���롣
119
+ ���ξ���Ruby�Υ�����ץ����require 'opengl'�򤹤�ɬ�פ�����ޤ���
120
+
121
+ ���󥿡��ե������� OpenGL Interface �Τ�Τ򤽤Τޤ޻ȤäƤ��ޤ���
122
+ ����λȤ������ϡ�SDL�Υɥ�����ȡ�OpenGL�Υɥ�����ȡ�
123
+ ����� sample/testgl.rb �򸫤�Ĵ�٤Ƥ���������
124
+
125
+ ����
126
+ OpenGL�Υ��󥿡��ե������ϼ����ˤ�äƾ������İۤʤ�ޤ������Τ���
127
+ ���Τޤޤ��Ȥȥ���ѥ���Ǥ��ʤ������ޤ�ư���ʤ��ʤɤθ��ݤ�������
128
+ ���Ȥ�����ޤ������ξ�� OpenGL Interface �Υ������˼�������ɬ��
129
+ ������ޤ���
130
+
131
+ 7 �饤����
132
+ GNU LGPL(GNU Lesser General Public License) version 2.1 �ʹߤ˽����ޤ���
133
+ �ܤ�����LICENSE�򸫤Ƥ���������
134
+ ��������sample/ �ʲ��ˤ��륵��ץ�ץ������Ϥ���ˤϽ��鷺��
135
+ ��ͳ�����Ѥ��Ƥ褤�Ǥ���
136
+
137
+ 8 �ռ�
138
+ �ʲ��ο�ã�˴��դ��ޤ���
139
+ * FreeBSD�Ǥ�ư���ǧ�򤷡�Ports���äƤ���������Akinori MUSHA����
140
+ * ���ޤ��ޤʰո������äƤ������ꡢ�����Ĥ�Υѥå������äƤ������ä���
141
+ ��������餵��
142
+ * �����Ƥ⤦�ҤȤĤ�SDL��Ruby��ĥ�饤�֥��"RUDL"�κ�ԤǤ���
143
+ Danny van Bruggen ����(�����Ĥ��Υ����ǥ��򤳤Υ饤�֥�꤫�����ޤ���)��
144
+ * rubysdl_ttf.c�ε�ǽ��ĥ�ѥå���Vine��Debian�Υѥå����������ʤɤ�
145
+ ���Ƥ�����������ޤ������餵��
146
+ * �����Ĥ��Υѥå��򲼤��ä� Wayne Conrad ����Christian Neukirchen����
147
+ Keffin Barnaby����
148
+ * ����ץ���󶡤��Ƥ������ä� Simon Strandgaard ����
149
+ * ͭ�Ѥʾ��󡢥Х���ݡ��Ȥ򤯤����ä� Rorien Dunn����Dennis Ranke����
150
+ Keita Urashima����
151
+ * SDL��¸�ߤ򶵤��Ƥ��졢Ruby/SDL���뤭�ä�����Ϳ���Ƥ��줿��Ȫ����
152
+ * SDLdoc ���ܸ������ץ��������Ȥˤ�����ä��ߤʤ���
153
+ * ����ץ��ѤΥե���Ȥ��󶡤��Ƥ��줿������
154
+ * #sdl-fan-jp@friend chat �Τߤʤ���
155
+ * Windows�Ǥδ����򤷤Ƥ������륵����������
156
+ 9 ����¾
157
+ �ޤ��ƥ��Ȥ���Ƥ��ʤ���ǽ��¿������ޤ�(�ѥ�åȴ�Ϣ
158
+ ��MPEG��Ϣ�Υ᥽�åɤ����Ĥ��ʤ�)��
159
+
160
+ ��˾���Х���𡢻��Ѥ����������ϡ�ohai@kmc.gr.jp�˥᡼���Ф���
161
+ �������������ΤȤ����ޤ��ȿ��������ޤ���Τǡ���ñ�ʴ��ۤǤ����äƤ���
162
+ ��ȴ򤷤��Ǥ���
163
+ �ޤ���ruby-list��ruby-ext�򸫤Ƥ��ޤ��Τǡ��Х����򤽤�����𤷤Ƥ���Ƥ�
164
+ �ɤ��Ǥ���
165
+
166
+ �ʾ�
data/README.ja.win32 ADDED
@@ -0,0 +1,80 @@
1
+ Ruby/SDL 2.1.0 win32 �o�C�i��
2
+ ��шꕽ
3
+ �T�C���X��
4
+
5
+ 1 �T�v
6
+
7
+ ����́ARuby����SDL�̋@�\���g�����߂̊g�����C�u�����ł��B
8
+ SDL�Ƃ́AWin32,Linux,BeOS,MacOS,FreeBSD,Solaris���œ����A�N���X�v���b�g�t�H�[���ȃQ�[���J���p���C�u�����ł��B
9
+
10
+
11
+ 2 ����‹�
12
+ ���̃��C�u������Linux��X��AWin32�AFreeBSD�ABeOS�œ��삪�m�F����Ă��܂��B
13
+ ���̃A�[�J�C�u�ɂ́Amswin32 �� Ruby �p�̃R���p�C���ς݂̃��C�u������
14
+ �܂܂�Ă��܂��B
15
+ ����́ARuby 1.8.7-p72�œ�����m�F���Ă��܂��B
16
+
17
+
18
+ 3 �C���X�g�[��
19
+ Win32�ł̃C���X�g�[����������܂��B
20
+ �܂��A
21
+ http://www.ruby-lang.org/ja/install.cgi?cmd=view;name=mswin32+%28%A5%D0%A5%A4%A5%CA%A5%EA%29
22
+ �̉�����Q�l�ɂ���Ruby���C���X�g�[�����Ă��������B
23
+ Ruby�́A
24
+ http://www.garbagecollect.jp/ruby/mswin32/ja/
25
+ �ɂ���o�C�i�����g���܂��B
26
+
27
+ ���ɃR�}���h�v�����v�g���N�����A���̃A�[�J�C�u��W�J�����t�H���_��
28
+ cd �ňړ����܂��B���̌�
29
+ ruby install_rubysdl.rb
30
+ �Ƃ���ƕK�v�ȃt�@�C�����C���X�g�[������܂��B
31
+ �܂��A
32
+ ruby install_rubysdl.rb --help
33
+ �Ƃ��邱�ƂŃI�v�V�������\������܂��B
34
+ �ȏ�ŃC���X�g�[���͊����ł��B
35
+
36
+ 3.1 �ʕ��@�̂ŃC���X�g�[��
37
+ ���̃A�[�J�C�u�Ɋ܂܂��
38
+ dll/*.dll, lib/*.rb, ext/*.so
39
+ �Ƃ����t�@�C����K���ȃt�H���_�ɃR�s�[������@�ł��C���X�g�[���ł��܂��B
40
+ ruby���C���X�g�[���������t�H���_��
41
+ C:\ruby\
42
+ �Ƃ����(�‚܂� C:\ruby\bin �� ruby.exe ������Ƃ����)
43
+ C:\ruby\lib\ruby\site-ruby\1.8\ �� sdl.rb ��rubysdl_aliases.rb ���A
44
+ C:\ruby\lib\ruby\site-ruby\1.8\i386-msvcrt �� sdl.so��opengl.so ��
45
+ ���ꂼ��R�s�[���Ă��������BDLL�̓p�X�̒ʂ����t�H���_�ɃR�s�[���Ă��������B
46
+
47
+ 4 �g����
48
+ �A�[�J�C�u�Ƀh�L�������g��T���v������������Ă���̂ł�����
49
+ �Q�Ƃ��Ă��������B
50
+
51
+ 5 ���C�Z���X
52
+ GNU LGPL(GNU Lesser General Public License) version 2.1 �ȍ~�ɏ]���܂��B
53
+
54
+ �������Aopengl.so �� Yoshiyuki Kusano ���񂪍�������̂ł���A
55
+ ���쌠�͔ނɂ���A���̃��C�Z���X�� Ruby's License �ɏ]���܂��B
56
+
57
+ ���̑�Ruby��SDL�֘A�ȂǓ����̃t�@�C���͂��ꂼ�꒘�쌠�ҁA���C�Z���X��
58
+ �قȂ�܂��B�S�̂Ƃ��Ă�GPL�������ƍl���Ă��܂��܂���B
59
+
60
+
61
+ 6 ���ӂȂ�
62
+ ActiveRuby�ł����̃o�C�i���͗��p�”\�ł��B
63
+
64
+ 7 �o�[�W�������
65
+ Ruby 1.8.7-p0
66
+ SDL 1.2.13
67
+ SDL_image 1.2.6
68
+ SDL_ttf 2.0.9
69
+ SDL_mixer 1.2.9
70
+ SGE 030809 + patch for overflow error
71
+ Ruby/opengl 0.32g
72
+ iconv 1.11
73
+ sdlskk 0.4+
74
+
75
+ 8 ���̑�
76
+ �v�]�A�o�O�񍐓��́Acyross@po.twin.ne.jp�Ƀ��[�����o���Ă��������B
77
+ http://rubyforge.org/projects/rubysdl/��BTS������܂��̂ł�����ł�
78
+ �񍐂͉”\�ł��B�܂��Aruby-list�Aruby-ext�����Ă��܂��̂ŁA
79
+ �����ɕ񍐂��Ă���Ă����\�ł��B
80
+
data/dll/SDL.dll ADDED
Binary file
data/dll/SDL_image.dll ADDED
Binary file
data/dll/SDL_mixer.dll ADDED
Binary file
data/dll/SDL_ttf.dll ADDED
Binary file