Major Timer API improvements: - Add `stopped` flag to Timer C++ class for proper state management - Add `start()` method to restart stopped timers (preserves callback) - Add `stop()` method that removes from engine but preserves callback - Make `active` property read-write (True=start/resume, False=pause) - Add `start=True` init parameter to create timers in stopped state - Add `mcrfpy.timers` module-level collection (tuple of active timers) - One-shot timers now set stopped=true instead of clearing callback - Remove deprecated `setTimer()` and `delTimer()` module functions Timer callbacks now receive (timer, runtime) instead of just (runtime). Updated all tests to use new Timer API and callback signature. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
50 lines
1.4 KiB
Python
50 lines
1.4 KiB
Python
#!/usr/bin/env python3
|
|
"""Test that timers work correctly with --exec"""
|
|
import mcrfpy
|
|
from mcrfpy import automation
|
|
|
|
print("Setting up timer test...")
|
|
|
|
# Create a scene
|
|
timer_works = mcrfpy.Scene("timer_works")
|
|
timer_works.activate()
|
|
ui = timer_works.children
|
|
|
|
# Add visible content
|
|
frame = mcrfpy.Frame(pos=(100, 100), size=(300, 200),
|
|
fill_color=mcrfpy.Color(255, 0, 0),
|
|
outline_color=mcrfpy.Color(255, 255, 255),
|
|
outline=3.0)
|
|
ui.append(frame)
|
|
|
|
caption = mcrfpy.Caption(pos=(150, 150),
|
|
text="TIMER TEST SUCCESS",
|
|
fill_color=mcrfpy.Color(255, 255, 255))
|
|
caption.font_size = 24
|
|
ui.append(caption)
|
|
|
|
# Timer callback with new signature (timer, runtime)
|
|
def timer_callback(timer, runtime):
|
|
print(f"\n✓ Timer fired successfully at runtime: {runtime}")
|
|
|
|
# Take screenshot
|
|
filename = f"timer_success_{int(runtime)}.png"
|
|
result = automation.screenshot(filename)
|
|
print(f"Screenshot saved: {filename} - Result: {result}")
|
|
|
|
# Stop timer and exit
|
|
timer.stop()
|
|
print("Exiting...")
|
|
mcrfpy.exit()
|
|
|
|
# Create timer (new API)
|
|
success_timer = mcrfpy.Timer("success_timer", timer_callback, 1000, once=True)
|
|
print("Timer set for 1 second. Using step() to advance time...")
|
|
|
|
# In headless mode, advance time manually
|
|
for i in range(11): # 1100ms total
|
|
mcrfpy.step(0.1)
|
|
|
|
print("PASS")
|
|
import sys
|
|
sys.exit(0)
|