- Issue #37: Fix Windows scripts subdirectory not checked - Updated executeScript() to use executable_path() from platform.h - Scripts now load correctly when working directory differs from executable - Issue #76: Fix UIEntityCollection returns wrong type - Updated UIEntityCollectionIter::next() to check for stored Python object - Derived Entity classes now preserve their type when retrieved from collections - Issue #9: Recreate RenderTexture when resized (already fixed) - Confirmed RenderTexture recreation already implemented in set_size() and set_float_member() - Uses 1.5x padding and 4096 max size limit - Issue #79: Fix Color r, g, b, a properties return None - Implemented get_member() and set_member() in PyColor.cpp - Color component properties now work correctly with proper validation - Additional fix: Grid.at() method signature - Changed from METH_O to METH_VARARGS to accept two arguments All fixes include comprehensive tests to verify functionality. closes #37, closes #76, closes #9, closes #79 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
53 lines
No EOL
1.6 KiB
Python
53 lines
No EOL
1.6 KiB
Python
#!/usr/bin/env python3
|
|
"""
|
|
Example configuration script that sets up shared state for other scripts
|
|
Usage: ./mcrogueface --exec example_config.py --exec example_automation.py game.py
|
|
"""
|
|
import mcrfpy
|
|
|
|
# Create a shared configuration namespace
|
|
class AutomationConfig:
|
|
# Test settings
|
|
test_enabled = True
|
|
screenshot_interval = 5 # Take screenshot every N tests
|
|
max_test_count = 50
|
|
test_delay_ms = 1000
|
|
|
|
# Monitoring settings
|
|
monitor_enabled = True
|
|
monitor_interval_ms = 500
|
|
report_delay_seconds = 30
|
|
|
|
# Game-specific settings
|
|
start_button_pos = (512, 400)
|
|
inventory_key = "i"
|
|
movement_keys = ["w", "a", "s", "d"]
|
|
|
|
# Shared state
|
|
test_results = []
|
|
performance_data = []
|
|
|
|
@classmethod
|
|
def log_result(cls, test_name, success, details=""):
|
|
"""Log a test result"""
|
|
cls.test_results.append({
|
|
"test": test_name,
|
|
"success": success,
|
|
"details": details,
|
|
"frame": mcrfpy.getFrame()
|
|
})
|
|
|
|
@classmethod
|
|
def get_summary(cls):
|
|
"""Get test summary"""
|
|
total = len(cls.test_results)
|
|
passed = sum(1 for r in cls.test_results if r["success"])
|
|
return f"Tests: {passed}/{total} passed"
|
|
|
|
# Attach config to mcrfpy module so other scripts can access it
|
|
mcrfpy.automation_config = AutomationConfig
|
|
|
|
print("Config: Automation configuration loaded")
|
|
print(f"Config: Test delay = {AutomationConfig.test_delay_ms}ms")
|
|
print(f"Config: Max tests = {AutomationConfig.max_test_count}")
|
|
print("Config: Other scripts can access config via mcrfpy.automation_config") |