; 初期状態の壁を定義するファイル ; ; 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 ... 青 (砂粒と同じ色) ; ; 砂置き場の右側に小さな穴をあける. line 310 50 320 50 0 ; 最初の分岐点 ellipse 72 78 97 98 1 line 72 88 50 100 1 line 84 96 180 130 1 line 184 130 320 94 1 ; 左上の坂 penWidth 2 line 1 110 60 150 1 line 64 150 110 120 1 ; 左の楕円形の固まり fillEllipse 30 150 92 280 1 fillEllipse 20 250 100 310 1 ; 左にある楕円形のものに穴をあける penWidth 5 line 62 150 62 280 0 fillEllipse 54 272 70 288 0 penWidth 2 line 62 280 92 310 0 line 62 280 32 310 0 penWidth 1 line 62 280 62 312 0 ; 左下のコップ box 20 330 120 361 1 line 21 330 120 330 0 line 110 360 111 360 0 line 108 362 113 362 1 ; 右上のコップ box 100 140 290 171 1 line 101 140 290 140 0 line 280 170 282 170 0 ; 右側にある滝 fillEllipse 270 190 320 220 1 fillEllipse 234 210 300 240 1 fillEllipse 210 230 280 260 1 ; 右下のそこが丸いコップ fillBox 180 290 328 330 1 fillEllipse 184 254 324 326 0 line 253 324 253 332 0 line 251 330 257 330 1 ; 右下の坂 line 230 340 310 380 1 ; 右側のコップと左側のコップをつなぐ坂 line 120 330 180 290 1