Update test demos for new Python API and entity system

- Update all text input demos to use new Entity constructor signature
- Fix pathfinding showcase to work with new entity position handling
- Remove entity_waypoints tracking in favor of simplified movement
- Delete obsolete exhaustive_api_demo.py (superseded by newer demos)
- Adjust entity creation calls to match Entity((x, y), texture, sprite_index) pattern

All demos now properly demonstrate the updated API while maintaining their
original functionality for showcasing engine features.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
John McCardle 2025-07-14 01:37:57 -04:00
commit c5e7e8e298
6 changed files with 37 additions and 1241 deletions

View file

@ -60,12 +60,12 @@ def create_demo():
scene.append(bg)
# Title
title = mcrfpy.Caption(10, 10, "Text Input Widget Demo - Auto Test", font_size=24)
title = mcrfpy.Caption(10, 10, "Text Input Widget Demo - Auto Test")
title.color = (255, 255, 255, 255)
scene.append(title)
# Instructions
instructions = mcrfpy.Caption(10, 50, "This will automatically test the text input system", font_size=14)
instructions = mcrfpy.Caption(10, 50, "This will automatically test the text input system")
instructions.color = (200, 200, 200, 255)
scene.append(instructions)
@ -109,7 +109,7 @@ def create_demo():
fields.append(comment_input)
# Result display
result_text = mcrfpy.Caption(50, 320, "Values will appear here as you type...", font_size=14)
result_text = mcrfpy.Caption(50, 320, "Values will appear here as you type...")
result_text.color = (150, 255, 150, 255)
scene.append(result_text)