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:
nyash-codex
2025-11-06 15:41:52 +09:00
parent 2dc370223d
commit 77d4fd72b3
1658 changed files with 6288 additions and 2612 deletions

View File

@ -1,7 +1,7 @@
// Text Adventure Game - Player Module
// プレイヤーシステムの実装
using "text_adventure/simple_rooms.nyash"
using "text_adventure/simple_rooms.hako"
// プレイヤーBox
box Player {

View File

@ -1,7 +1,7 @@
// Text Adventure Game - Rooms Module
// ルームシステムの実装
using "text_adventure/items.nyash"
using "text_adventure/items.hako"
// 基本ルームBox
box Room {

View File

@ -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

View File

@ -1,7 +1,7 @@
// Text Adventure Game - Simple Rooms Module (without MapBox)
// ルームシステムの簡単実装
using "text_adventure/items.nyash"
using "text_adventure/items.hako"
// 基本ルームBoxMapBoxなしのシンプル版
box Room {

View File

@ -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...")

View File

@ -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()

View File

@ -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...")

View File

@ -1,5 +1,5 @@
// Debug player creation
using "text_adventure/player.nyash"
using "text_adventure/player.hako"
print("🎮 Debug Player Creation...")

View File

@ -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...")

View File

@ -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")

View File

@ -1,5 +1,5 @@
// Test room with workaround
using "text_adventure/simple_rooms.nyash"
using "text_adventure/simple_rooms.hako"
print("Testing Room workaround...")

View File

@ -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...")

View File

@ -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...")

View File

@ -1,5 +1,5 @@
// Test world creation
using "text_adventure/simple_rooms.nyash"
using "text_adventure/simple_rooms.hako"
print("Testing createSimpleWorld()...")