🚀 主要機能: • Everything is Box哲学による革新的アーキテクチャ • WebAssemblyブラウザー対応プレイグラウンド • アーティスト協同制作デモ - 複数Boxインスタンス実証 • 視覚的デバッグシステム - DebugBox完全統合 • static box Mainパターン - メモリ安全設計 ⚡ 言語機能: • NOT/AND/OR/除算演算子完全実装 • ジェネリクス/テンプレートシステム • 非同期処理(nowait/await) • try/catchエラーハンドリング • Canvas統合グラフィックス 🎨 ブラウザー体験: • 9種類のインタラクティブデモ • リアルタイムコード実行 • WebCanvas/WebConsole/WebDisplay • モバイル対応完了 🤖 Built with Claude Code collaboration Ready for public release!
28 lines
705 B
Plaintext
28 lines
705 B
Plaintext
// Debug player creation
|
|
include "text_adventure/player.nyash"
|
|
|
|
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()!")
|
|
}
|
|
|
|
print("\n✅ Debug test completed!") |