forked from stepjam/RLBench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclose_jar.py
63 lines (57 loc) · 2.85 KB
/
close_jar.py
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
from typing import List, Tuple
from rlbench.backend.task import Task
from typing import List
from rlbench.backend.task import Task
from rlbench.const import colors
from rlbench.backend.conditions import NothingGrasped, DetectedCondition
from rlbench.backend.spawn_boundary import SpawnBoundary
import numpy as np
from pyrep.objects.shape import Shape
from pyrep.objects.proximity_sensor import ProximitySensor
from pyrep.objects.dummy import Dummy
class CloseJar(Task):
def init_task(self) -> None:
self.lid = Shape('jar_lid0')
self.jars = [Shape('jar%d' % i) for i in range(2)]
self.register_graspable_objects([self.lid])
self.boundary = Shape('spawn_boundary')
self.conditions = [NothingGrasped(self.robot.gripper)]
def init_episode(self, index: int) -> List[str]:
b = SpawnBoundary([self.boundary])
for obj in self.jars:
b.sample(obj, min_distance=0.01)
success = ProximitySensor('success')
success.set_position([0.0, 0.0, 0.05], relative_to=self.jars[index % 2],
reset_dynamics=False)
w3 = Dummy('waypoint3')
w3.set_orientation([-np.pi, 0, -np.pi], reset_dynamics=False)
w3.set_position([0.0, 0.0, 0.125], relative_to=self.jars[index % 2],
reset_dynamics=False)
target_color_name, target_color_rgb = colors[index]
color_choice = np.random.choice(
list(range(index)) + list(
range(index + 1, len(colors))),
size=1, replace=False)[0]
_, distractor_color_rgb = colors[color_choice]
self.jars[index % 2].set_color(target_color_rgb)
other_index = {0: 1, 1: 0}
self.jars[other_index[index % 2]].set_color(distractor_color_rgb)
self.conditions += [DetectedCondition(self.lid, success)]
self.register_success_conditions(self.conditions)
return ['close the %s jar' % target_color_name,
'screw on the %s jar lid' % target_color_name,
'grasping the lid, lift it from the table and use it to seal '
'the %s jar' % target_color_name,
'pick up the lid from the table and put it on the %s jar'
% target_color_name]
def variation_count(self) -> int:
return len(colors)
def cleanup(self) -> None:
self.conditions = [NothingGrasped(self.robot.gripper)]
def base_rotation_bounds(self) -> Tuple[Tuple[float, float, float],
Tuple[float, float, float]]:
# This is here to stop the issue of gripper rotation joint reaching its
# limit and not being able to go through the full range of rotation to
# unscrew, leading to a weird jitery and tilted cap while unscrewing.
# Issue occured rarely so is only minor
return (0.0, 0.0, -0.6*np.pi), (0.0, 0.0, +0.6*np.pi)