2025-08-09 15:14:44 +09:00
|
|
|
// Debug player creation
|
2025-11-06 15:41:52 +09:00
|
|
|
using "text_adventure/player.hako"
|
2025-08-09 15:14:44 +09:00
|
|
|
|
|
|
|
|
print("🎮 Debug Player Creation...")
|
|
|
|
|
|
|
|
|
|
// Manually create world and player
|
|
|
|
|
print("\n1. Creating world...")
|
|
|
|
|
world = createSimpleWorld()
|
|
|
|
|
print("World created: " + world.name)
|
|
|
|
|
|
|
|
|
|
print("\n2. Creating player...")
|
|
|
|
|
player = new Player("TestHero", world)
|
|
|
|
|
print("Player created!")
|
|
|
|
|
|
|
|
|
|
print("\n3. Checking player fields...")
|
|
|
|
|
print("Player name: " + player.name)
|
|
|
|
|
print("Player health: " + player.health)
|
|
|
|
|
print("Player room name: " + player.currentRoom.name)
|
|
|
|
|
|
|
|
|
|
print("\n4. Trying to call look()...")
|
|
|
|
|
try {
|
|
|
|
|
lookResult = player.look()
|
|
|
|
|
print("Look result: " + lookResult)
|
|
|
|
|
} catch {
|
|
|
|
|
print("ERROR in look()!")
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-25 00:41:56 +09:00
|
|
|
print("\n✅ Debug test completed!")
|