|
| 1 | +""" |
| 2 | +A case study of robot behavior using state machine |
| 3 | +
|
| 4 | +author: Wang Zheng (@Aglargil) |
| 5 | +""" |
| 6 | + |
| 7 | +from state_machine import StateMachine |
| 8 | + |
| 9 | + |
| 10 | +class Robot: |
| 11 | + def __init__(self): |
| 12 | + self.battery = 100 |
| 13 | + self.task_progress = 0 |
| 14 | + |
| 15 | + # Initialize state machine |
| 16 | + self.machine = StateMachine("robot_sm", self) |
| 17 | + |
| 18 | + # Add state transition rules |
| 19 | + self.machine.add_transition( |
| 20 | + src_state="patrolling", |
| 21 | + event="detect_task", |
| 22 | + dst_state="executing_task", |
| 23 | + guard=None, |
| 24 | + action=None, |
| 25 | + ) |
| 26 | + |
| 27 | + self.machine.add_transition( |
| 28 | + src_state="executing_task", |
| 29 | + event="task_complete", |
| 30 | + dst_state="patrolling", |
| 31 | + guard=None, |
| 32 | + action="reset_task", |
| 33 | + ) |
| 34 | + |
| 35 | + self.machine.add_transition( |
| 36 | + src_state="executing_task", |
| 37 | + event="low_battery", |
| 38 | + dst_state="returning_to_base", |
| 39 | + guard="is_battery_low", |
| 40 | + ) |
| 41 | + |
| 42 | + self.machine.add_transition( |
| 43 | + src_state="returning_to_base", |
| 44 | + event="reach_base", |
| 45 | + dst_state="charging", |
| 46 | + guard=None, |
| 47 | + action=None, |
| 48 | + ) |
| 49 | + |
| 50 | + self.machine.add_transition( |
| 51 | + src_state="charging", |
| 52 | + event="charge_complete", |
| 53 | + dst_state="patrolling", |
| 54 | + guard=None, |
| 55 | + action="battery_full", |
| 56 | + ) |
| 57 | + |
| 58 | + # Set initial state |
| 59 | + self.machine.set_current_state("patrolling") |
| 60 | + |
| 61 | + def is_battery_low(self): |
| 62 | + """Battery level check condition""" |
| 63 | + return self.battery < 30 |
| 64 | + |
| 65 | + def reset_task(self): |
| 66 | + """Reset task progress""" |
| 67 | + self.task_progress = 0 |
| 68 | + print("[Action] Task progress has been reset") |
| 69 | + |
| 70 | + # Modify state entry callback naming convention (add state_ prefix) |
| 71 | + def on_enter_executing_task(self): |
| 72 | + print("\n------ Start Executing Task ------") |
| 73 | + print(f"Current battery: {self.battery}%") |
| 74 | + while self.machine.get_current_state().name == "executing_task": |
| 75 | + self.task_progress += 10 |
| 76 | + self.battery -= 25 |
| 77 | + print( |
| 78 | + f"Task progress: {self.task_progress}%, Remaining battery: {self.battery}%" |
| 79 | + ) |
| 80 | + |
| 81 | + if self.task_progress >= 100: |
| 82 | + self.machine.process("task_complete") |
| 83 | + break |
| 84 | + elif self.is_battery_low(): |
| 85 | + self.machine.process("low_battery") |
| 86 | + break |
| 87 | + |
| 88 | + def on_enter_returning_to_base(self): |
| 89 | + print("\nLow battery, returning to charging station...") |
| 90 | + self.machine.process("reach_base") |
| 91 | + |
| 92 | + def on_enter_charging(self): |
| 93 | + print("\n------ Charging ------") |
| 94 | + self.battery = 100 |
| 95 | + print("Charging complete!") |
| 96 | + self.machine.process("charge_complete") |
| 97 | + |
| 98 | + |
| 99 | +# Keep the test section structure the same, only modify the trigger method |
| 100 | +if __name__ == "__main__": |
| 101 | + robot = Robot() |
| 102 | + print(robot.machine.generate_plantuml()) |
| 103 | + |
| 104 | + print(f"Initial state: {robot.machine.get_current_state().name}") |
| 105 | + print("------------") |
| 106 | + |
| 107 | + # Trigger task detection event |
| 108 | + robot.machine.process("detect_task") |
| 109 | + |
| 110 | + print("\n------------") |
| 111 | + print(f"Final state: {robot.machine.get_current_state().name}") |
0 commit comments