phase: 20.49 COMPLETE; 20.50 Flow+String minimal reps; 20.51 selfhost v0/v1 minimal (Option A/B); hv1-inline binop/unop/copy; docs + run_all + CURRENT_TASK -> 21.0
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
// Text Adventure Game - Player Module
|
||||
// プレイヤーシステムの実装
|
||||
|
||||
using "text_adventure/simple_rooms.nyash"
|
||||
using "text_adventure/simple_rooms.hako"
|
||||
|
||||
// プレイヤーBox
|
||||
box Player {
|
||||
@ -1,7 +1,7 @@
|
||||
// Text Adventure Game - Rooms Module
|
||||
// ルームシステムの実装
|
||||
|
||||
using "text_adventure/items.nyash"
|
||||
using "text_adventure/items.hako"
|
||||
|
||||
// 基本ルームBox
|
||||
box Room {
|
||||
@ -1,7 +1,7 @@
|
||||
// Simple Text Adventure Game
|
||||
// Works around the function return bug by using global variables
|
||||
|
||||
using "text_adventure/items.nyash"
|
||||
using "text_adventure/items.hako"
|
||||
|
||||
// Global game state
|
||||
global GAME_ROOM = false
|
||||
@ -1,7 +1,7 @@
|
||||
// Text Adventure Game - Simple Rooms Module (without MapBox)
|
||||
// ルームシステムの簡単実装
|
||||
|
||||
using "text_adventure/items.nyash"
|
||||
using "text_adventure/items.hako"
|
||||
|
||||
// 基本ルームBox(MapBoxなしのシンプル版)
|
||||
box Room {
|
||||
@ -1,5 +1,5 @@
|
||||
// Simplified test for items.nyash
|
||||
using "text_adventure/items.nyash"
|
||||
// Simplified test for items.hako
|
||||
using "text_adventure/items.hako"
|
||||
|
||||
print("🧪 Simple Items Test...")
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
// Test file for items.nyash - デバッグしやすい単体テスト
|
||||
using "text_adventure/items.nyash"
|
||||
// Test file for items.hako - デバッグしやすい単体テスト
|
||||
using "text_adventure/items.hako"
|
||||
|
||||
DEBUG = new DebugBox()
|
||||
DEBUG.startTracking()
|
||||
@ -1,5 +1,5 @@
|
||||
// Test file for player.nyash
|
||||
using "text_adventure/player.nyash"
|
||||
// Test file for player.hako
|
||||
using "text_adventure/player.hako"
|
||||
|
||||
print("🎮 Testing Player Module...")
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
// Debug player creation
|
||||
using "text_adventure/player.nyash"
|
||||
using "text_adventure/player.hako"
|
||||
|
||||
print("🎮 Debug Player Creation...")
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
// Minimal test for player-room interaction
|
||||
using "text_adventure/simple_rooms.nyash"
|
||||
using "text_adventure/simple_rooms.hako"
|
||||
|
||||
// Create a room
|
||||
print("Creating room...")
|
||||
@ -1,5 +1,5 @@
|
||||
// Test Room class directly
|
||||
using "text_adventure/simple_rooms.nyash"
|
||||
using "text_adventure/simple_rooms.hako"
|
||||
|
||||
print("Creating a room...")
|
||||
room = new Room("Test Room", "A simple test room")
|
||||
@ -1,5 +1,5 @@
|
||||
// Test room with workaround
|
||||
using "text_adventure/simple_rooms.nyash"
|
||||
using "text_adventure/simple_rooms.hako"
|
||||
|
||||
print("Testing Room workaround...")
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
// Test file for rooms.nyash
|
||||
using "text_adventure/rooms.nyash"
|
||||
// Test file for rooms.hako
|
||||
using "text_adventure/rooms.hako"
|
||||
|
||||
print("🏰 Testing Rooms Module...")
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
// Test file for simple_rooms.nyash
|
||||
using "text_adventure/simple_rooms.nyash"
|
||||
// Test file for simple_rooms.hako
|
||||
using "text_adventure/simple_rooms.hako"
|
||||
|
||||
print("🏰 Testing Simple Rooms Module...")
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
// Test world creation
|
||||
using "text_adventure/simple_rooms.nyash"
|
||||
using "text_adventure/simple_rooms.hako"
|
||||
|
||||
print("Testing createSimpleWorld()...")
|
||||
|
||||
Reference in New Issue
Block a user