-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_ja.html
244 lines (230 loc) · 8.86 KB
/
index_ja.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>ichigojam-font.json</title>
<link rel="stylesheet" href="index.css">
<script src="ichigojam.js"></script>
<script src="index.js"></script>
</head>
<body>
<p class="content-lang">
[<a href="index.html">English</a>] | [日本語]
</p>
<h1>ichigojam-font.json</h1>
<p>
「IchigoJam Font」は <a href="https://ichigojam.net">IchigoJam</a> で使われているフォントです。<br>
このフォントは 8*8ドットの白黒のグリフを定義したもので、1文字を8バイトで表現できるため、<br>
任意のプログラミング言語を使ったプログラムに64ビット整数の配列として簡単に組み込むことができます。
</p>
<hr>
<h2 id="examples">Examples</h2>
<h3 id="kawakudari-game">
<a href="https://ichigojam.github.io/print/ja/KAWAKUDARI.html">かわくだりゲーム</a> を様々なプログラミング言語で<br>
</h3>
<p>
<canvas id="kawakudari" width="512" height="384"></canvas>
</p>
<p>
<a href="https://github.com/IchigoJam/c4ij">c4ij</a> の <a href="https://github.com/IchigoJam/c4ij/blob/master/src/std15.h">std15.h</a> を参考に関数 locate, putc, putstr, putnum, scr, cls, scroll, pset も実装してあります。
</p>
<table>
<tr>
<th>言語</th>
<th>framework / library</th>
<th>project</th>
<th>明快さ</th>
<th>コメント</th>
</tr>
<tr>
<td>JavaScript</td>
<td><a href="https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API">HTML Canvas API</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_html_canvas_js">kawakudari_html_canvas_js</a></td>
<td class="clarity">☆☆☆☆☆</td>
<td>超簡単シンプル。</td>
</tr>
<tr>
<td>TypeScript</td>
<td><a href="https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API">HTML Canvas API</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_html_canvas_ts">kawakudari_html_canvas_ts</a></td>
<td class="clarity">☆☆☆☆</td>
<td></td>
</tr>
<tr>
<td>Python</td>
<td><a href="https://processing.org/">Processing</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_processing_python">kawakudari_processing_python</a></td>
<td class="clarity">☆☆☆☆</td>
<td></td>
</tr>
<tr>
<td>Python</td>
<td><a href="https://www.pygame.org">pygame</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_pygame">kawakudari_pygame</a></td>
<td class="clarity">☆☆☆☆</td>
<td></td>
</tr>
<tr>
<td>Python</td>
<td><a href="https://arcade.academy/">Arcade</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_arcade">kawakudari_arcade</a></td>
<td class="clarity">☆☆☆☆</td>
<td>OpenGL 3.3 対応のハードに依存。</td>
</tr>
<tr>
<td>Python</td>
<td><a href="https://pyglet.readthedocs.io/en/latest/">pyglet</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_pyglet">kawakudari_pyglet</a></td>
<td class="clarity">☆☆☆</td>
<td></td>
</tr>
<tr>
<td>Java</td>
<td><a href="https://processing.org/">Processing</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_processing">kawakudari_processing</a></td>
<td class="clarity">☆☆☆☆</td>
<td></td>
</tr>
<tr>
<td>Java</td>
<td><a href="https://docs.oracle.com/javase/8/docs/technotes/guides/awt/">AWT</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_awt">kawakudari_awt</a></td>
<td class="clarity">☆☆☆☆</td>
<td></td>
</tr>
<tr>
<td>C++</td>
<td><a href="https://openframeworks.cc/">openFrameworks</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_of">kawakudari_of</a></td>
<td class="clarity">☆☆☆☆</td>
<td>Windows で MSYS2 に依存。</td>
</tr>
<tr>
<td>C</td>
<td><a href="https://openframeworks.cc/">openFrameworks</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_of_c">kawakudari_of_c</a></td>
<td class="clarity">☆☆☆☆</td>
<td>Windows で MSYS2 に依存。</td>
</tr>
<tr>
<td>C</td>
<td><a href="https://liballeg.org/">Allegro</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_allegro">kawakudari_allegro</a></td>
<td class="clarity">☆☆☆</td>
<td>Windows で MinGW に依存。</td>
</tr>
<tr>
<td>C#</td>
<td><a href="https://docs.microsoft.com/dotnet/api/system.drawing">GDI+</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_gdiplus">kawakudari_gdiplus</a></td>
<td class="clarity">☆☆☆☆</td>
<td>Windows と Linux でのみ動作。</td>
</tr>
<tr>
<td>C#</td>
<td><a href="https://opentk.net/">OpenTK</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_opentk">kawakudari_opentk</a></td>
<td class="clarity">☆☆☆☆</td>
<td></td>
</tr>
<tr>
<td>Visual Basic</td>
<td><a href="https://docs.microsoft.com/dotnet/api/system.drawing">GDI+</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_gdiplus_vb">kawakudari_gdiplus_vb</a></td>
<td class="clarity">☆☆☆☆</td>
<td>Windows と Linux でのみ動作。</td>
</tr>
<tr>
<td>Visual Basic</td>
<td><a href="https://opentk.net/">OpenTK</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_opentk_vb">kawakudari_opentk_vb</a></td>
<td class="clarity">☆☆☆☆</td>
<td></td>
</tr>
<tr>
<td>Go</td>
<td><a href="https://github.com/faiface/pixel">pixel</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_pixel">kawakudari_pixel</a></td>
<td class="clarity">☆☆☆☆</td>
<td>Windows で MSYS2 に依存。</td>
</tr>
<tr>
<td>Go</td>
<td><a href="https://ebiten.org">ebiten</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_ebiten">kawakudari_ebiten</a></td>
<td class="clarity">☆☆☆</td>
<td></td>
</tr>
<tr>
<td>Rust</td>
<td><a href="https://nannou.cc">nannou</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_nannou">kawakudari_nannou</a></td>
<td class="clarity">☆☆☆</td>
<td><a href="https://www.khronos.org/vulkan/">Vulkan</a> 対応のハードに依存。</td>
</tr>
<tr>
<td>Rust</td>
<td><a href="https://ggez.rs">ggez</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_ggez">kawakudari_ggez</a></td>
<td class="clarity">☆☆</td>
<td></td>
</tr>
<tr>
<td>Haskell</td>
<td><a href="https://hackage.haskell.org/package/processing-for-haskell">processing-for-haskell</a></td>
<td><a href="https://github.com/mitsuji/kawakudari-pfh">kawakudari-pfh</a></td>
<td class="clarity">☆☆☆☆</td>
<td></td>
</tr>
<tr>
<td>Lua</td>
<td><a href="https://love2d.org/">LÖVE</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_love">kawakudari_love</a></td>
<td class="clarity">☆☆☆☆</td>
<td></td>
</tr>
<tr>
<td>Ruby</td>
<td><a href="https://www.libgosu.org/">gosu</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_gosu">kawakudari_gosu</a></td>
<td class="clarity">☆☆☆☆</td>
<td></td>
</tr>
<tr>
<td>R</td>
<td><a href="https://processing.org/">Processing</a></td>
<td><a href="https://github.com/mitsuji/kawakudari_processing_r">kawakudari_processing_r</a></td>
<td class="clarity">☆☆☆</td>
<td></td>
</tr>
</table>
<hr>
<h2 id="download">Download</h2>
<p>
バージョンを選択すると下にサンプルが表示されます。
<form>
<div class="sample-select">
<input type="radio" name="font-version" id="ichigojam-font-1.4">
<label for="ichigojam-font-1.4">Font for IchigoJam BASIC 1.4.x</label>
<a href="ichigojam-font-1.4.json">ichigojam-font-1.4.json</a>
(<a href="https://creativecommons.org/licenses/by/4.0/">CC BY</a> <a href="https://ichigojam.net">IchigoJam</a>)
</div>
<div class="sample-select">
<input type="radio" name="font-version" id="ichigojam-font-1.2">
<label for="ichigojam-font-1.2">Font for IchigoJam BASIC 1.2.x, 1.3.x</label>
<a href="ichigojam-font-1.2.json">ichigojam-font-1.2.json</a>
(<a href="https://creativecommons.org/licenses/by/4.0/">CC BY</a> <a href="https://ichigojam.net">IchigoJam</a>)
</div>
</form>
</p>
<p>
<canvas id="sample" width="528" height="528"></canvas>
</p>
<hr>
<h2 id="license">License</h2>
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a>
(<a href="https://creativecommons.org/licenses/by/4.0/">CC BY</a> <a href="https://ichigojam.net">IchigoJam</a> & <a href="https://mitsuji.org">mitsuji.org</a>)<br>
This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
<hr>
</body>
</html>