-
Notifications
You must be signed in to change notification settings - Fork 2
/
koshukai.rb
64 lines (54 loc) · 1.16 KB
/
koshukai.rb
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
# -*- coding: utf-8 -*-
require 'CHaserConnect.rb' #呼び出すおまじない
# 書き換えない
target = CHaserConnect.new("prac") # ()の中好きな名前
values = Array.new(10)
direction = 0
#--------ここから--------
loop do # ここからループ
#---------ここから---------
values = target.getReady
if values[0] == 0
break
end
#-----ここまで書き換えない-----
#ここに処理を書く
loop do
if direction == 0
if values[2] != 2
values = target.walkUp()
break
else
direction = 3
end
elsif direction == 3
if values[6] != 2
values = target.walkRight()
break
else
direction = 6
end
elsif direction == 6
if values[8] != 2
values = target.walkDown()
break
else
direction = 9
end
elsif direction == 9
if values[4] != 2
values = target.walkLeft()
break
else
direction = 0
end
end
end
#前に壁があったら右に曲がろう
#---------ここから---------
if values[0] == 0
break
end
end # ループここまで
target.close
#-----ここまで書き換えない-----