; 初期状態の壁を定義するファイル ; ; penWidth 線の太さ ; ; line x1 y1 x2 y2 color_index ; box x1 y1 x2 y2 color_index ; fillBox x1 y1 x2 y2 color_index ; ellipse x1 y1 x2 y2 color_index ; fillEllipse x1 y1 x2 y2 color_index ; ; color_index = 0 ... 黒 (壁を消去) ; color_index = 1 ... 緑 (壁を作る) ; color_index = 2 ... 水色 (砂粒と同じ色) ; color_index = 3 ... 青 (砂粒と同じ色) penWidth 1 ; 一番下にあるコップ box 30 150 88 181 1 line 30 150 90 150 0 line 32 180 34 180 0 penWidth 2 ; 坂1 line 0 37 78 82 1 ; 坂2 line 100 86 60 116 1 line 100 66 100 86 1 penWidth 1 ; コップの上にある分岐 ;line 47 140 59 128 1 ;line 59 128 71 140 1 fillEllipse 47 128 71 146 1 fillEllipse 51 132 67 142 3 ; 分岐したのを再び集めるやつ line 35 147 59 164 1 line 61 163 85 147 1