# Copyright (c) 2022-2025, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md). # All rights reserved. # # SPDX-License-Identifier: BSD-3-Clause from __future__ import annotations import math import torch from collections.abc import Sequence import isaaclab.sim as sim_utils from isaaclab.assets import Articulation from isaaclab.envs import DirectMARLEnv from isaaclab.sim.spawners.from_files import GroundPlaneCfg, spawn_ground_plane from isaaclab.utils.math import sample_uniform from .{{ task.filename }}_env_cfg import {{ task.classname }}EnvCfg class {{ task.classname }}Env(DirectMARLEnv): cfg: {{ task.classname }}EnvCfg def __init__(self, cfg: {{ task.classname }}EnvCfg, render_mode: str | None = None, **kwargs): super().__init__(cfg, render_mode, **kwargs) self._cart_dof_idx, _ = self.robot.find_joints(self.cfg.cart_dof_name) self._pole_dof_idx, _ = self.robot.find_joints(self.cfg.pole_dof_name) self._pendulum_dof_idx, _ = self.robot.find_joints(self.cfg.pendulum_dof_name) self.joint_pos = self.robot.data.joint_pos self.joint_vel = self.robot.data.joint_vel def _setup_scene(self): self.robot = Articulation(self.cfg.robot_cfg) # add ground plane spawn_ground_plane(prim_path="/World/ground", cfg=GroundPlaneCfg()) # clone and replicate self.scene.clone_environments(copy_from_source=False) # we need to explicitly filter collisions for CPU simulation if self.device == "cpu": self.scene.filter_collisions(global_prim_paths=[]) # add articulation to scene self.scene.articulations["robot"] = self.robot # add lights light_cfg = sim_utils.DomeLightCfg(intensity=2000.0, color=(0.75, 0.75, 0.75)) light_cfg.func("/World/Light", light_cfg) def _pre_physics_step(self, actions: dict[str, torch.Tensor]) -> None: self.actions = actions def _apply_action(self) -> None: self.robot.set_joint_effort_target( self.actions["cart"] * self.cfg.cart_action_scale, joint_ids=self._cart_dof_idx ) self.robot.set_joint_effort_target( self.actions["pendulum"] * self.cfg.pendulum_action_scale, joint_ids=self._pendulum_dof_idx ) def _get_observations(self) -> dict[str, torch.Tensor]: pole_joint_pos = normalize_angle(self.joint_pos[:, self._pole_dof_idx[0]].unsqueeze(dim=1)) pendulum_joint_pos = normalize_angle(self.joint_pos[:, self._pendulum_dof_idx[0]].unsqueeze(dim=1)) observations = { "cart": torch.cat( ( self.joint_pos[:, self._cart_dof_idx[0]].unsqueeze(dim=1), self.joint_vel[:, self._cart_dof_idx[0]].unsqueeze(dim=1), pole_joint_pos, self.joint_vel[:, self._pole_dof_idx[0]].unsqueeze(dim=1), ), dim=-1, ), "pendulum": torch.cat( ( pole_joint_pos + pendulum_joint_pos, pendulum_joint_pos, self.joint_vel[:, self._pendulum_dof_idx[0]].unsqueeze(dim=1), ), dim=-1, ), } return observations def _get_rewards(self) -> dict[str, torch.Tensor]: total_reward = compute_rewards( self.cfg.rew_scale_alive, self.cfg.rew_scale_terminated, self.cfg.rew_scale_cart_pos, self.cfg.rew_scale_cart_vel, self.cfg.rew_scale_pole_pos, self.cfg.rew_scale_pole_vel, self.cfg.rew_scale_pendulum_pos, self.cfg.rew_scale_pendulum_vel, self.joint_pos[:, self._cart_dof_idx[0]], self.joint_vel[:, self._cart_dof_idx[0]], normalize_angle(self.joint_pos[:, self._pole_dof_idx[0]]), self.joint_vel[:, self._pole_dof_idx[0]], normalize_angle(self.joint_pos[:, self._pendulum_dof_idx[0]]), self.joint_vel[:, self._pendulum_dof_idx[0]], math.prod(self.terminated_dict.values()), ) return total_reward def _get_dones(self) -> tuple[dict[str, torch.Tensor], dict[str, torch.Tensor]]: self.joint_pos = self.robot.data.joint_pos self.joint_vel = self.robot.data.joint_vel time_out = self.episode_length_buf >= self.max_episode_length - 1 out_of_bounds = torch.any(torch.abs(self.joint_pos[:, self._cart_dof_idx]) > self.cfg.max_cart_pos, dim=1) out_of_bounds = out_of_bounds | torch.any(torch.abs(self.joint_pos[:, self._pole_dof_idx]) > math.pi / 2, dim=1) terminated = {agent: out_of_bounds for agent in self.cfg.possible_agents} time_outs = {agent: time_out for agent in self.cfg.possible_agents} return terminated, time_outs def _reset_idx(self, env_ids: Sequence[int] | None): if env_ids is None: env_ids = self.robot._ALL_INDICES super()._reset_idx(env_ids) joint_pos = self.robot.data.default_joint_pos[env_ids] joint_pos[:, self._pole_dof_idx] += sample_uniform( self.cfg.initial_pole_angle_range[0] * math.pi, self.cfg.initial_pole_angle_range[1] * math.pi, joint_pos[:, self._pole_dof_idx].shape, joint_pos.device, ) joint_pos[:, self._pendulum_dof_idx] += sample_uniform( self.cfg.initial_pendulum_angle_range[0] * math.pi, self.cfg.initial_pendulum_angle_range[1] * math.pi, joint_pos[:, self._pendulum_dof_idx].shape, joint_pos.device, ) joint_vel = self.robot.data.default_joint_vel[env_ids] default_root_state = self.robot.data.default_root_state[env_ids] default_root_state[:, :3] += self.scene.env_origins[env_ids] self.joint_pos[env_ids] = joint_pos self.joint_vel[env_ids] = joint_vel self.robot.write_root_pose_to_sim(default_root_state[:, :7], env_ids) self.robot.write_root_velocity_to_sim(default_root_state[:, 7:], env_ids) self.robot.write_joint_state_to_sim(joint_pos, joint_vel, None, env_ids) @torch.jit.script def normalize_angle(angle): return (angle + math.pi) % (2 * math.pi) - math.pi @torch.jit.script def compute_rewards( rew_scale_alive: float, rew_scale_terminated: float, rew_scale_cart_pos: float, rew_scale_cart_vel: float, rew_scale_pole_pos: float, rew_scale_pole_vel: float, rew_scale_pendulum_pos: float, rew_scale_pendulum_vel: float, cart_pos: torch.Tensor, cart_vel: torch.Tensor, pole_pos: torch.Tensor, pole_vel: torch.Tensor, pendulum_pos: torch.Tensor, pendulum_vel: torch.Tensor, reset_terminated: torch.Tensor, ): rew_alive = rew_scale_alive * (1.0 - reset_terminated.float()) rew_termination = rew_scale_terminated * reset_terminated.float() rew_pole_pos = rew_scale_pole_pos * torch.sum(torch.square(pole_pos).unsqueeze(dim=1), dim=-1) rew_pendulum_pos = rew_scale_pendulum_pos * torch.sum( torch.square(pole_pos + pendulum_pos).unsqueeze(dim=1), dim=-1 ) rew_cart_vel = rew_scale_cart_vel * torch.sum(torch.abs(cart_vel).unsqueeze(dim=1), dim=-1) rew_pole_vel = rew_scale_pole_vel * torch.sum(torch.abs(pole_vel).unsqueeze(dim=1), dim=-1) rew_pendulum_vel = rew_scale_pendulum_vel * torch.sum(torch.abs(pendulum_vel).unsqueeze(dim=1), dim=-1) total_reward = { "cart": rew_alive + rew_termination + rew_pole_pos + rew_cart_vel + rew_pole_vel, "pendulum": rew_alive + rew_termination + rew_pendulum_pos + rew_pendulum_vel, } return total_reward