このサイトはJavaScriptを使用しています
ホーム
ヘルプ
サインイン
cacalabs
/
libcaca
ミラー元
https://github.com/cacalabs/libcaca.git
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
リリース
7
Wiki
アクティビティ
ソースを参照
* Add Caca::Event#quit? to make tests nicer
tags/v0.99.beta14
Pascal Terjan
pterjan
17年前
親
095a3d1c5f
コミット
0de0992e57
2個のファイルの変更
、
9行の追加
、
2行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+8
-0
ruby/lib/caca.rb
+1
-2
ruby/ruby-caca.dox
+ 8
- 0
ruby/lib/caca.rb
ファイルの表示
@@ -10,6 +10,9 @@ module Caca
i = i.to_i
const_get("TYPE")|i
end
def quit?
false
end
class Key
attr_reader :ch, :utf32, :utf8
def initialize(ch, utf32, utf8)
@@ -28,5 +31,10 @@ module Caca
@w, @h = w, h
end
end
class Quit
def quit?
true
end
end
end
end
+ 1
- 2
ruby/ruby-caca.dox
ファイルの表示
@@ -56,8 +56,7 @@ c.draw_thin_polyline([[0,0], [0,2], [5,2], [0,0]])
d = Caca::Display.new(c)
d.title = "Test !"
d.refresh
while((e = d.get_event(Caca::Event, -1)) &&
! e.kind_of?(Caca::Event::Quit))
while((e = d.get_event(Caca::Event, -1)) && ! e.quit?)
p e
d.refresh
end
書き込み
プレビュー
読み込み中…
キャンセル
保存