2025-07-13 23:18:57 +01:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
<html>
|
|
|
|
|
|
<head>
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes">
|
|
|
|
|
|
<title>Break Escape Game</title>
|
|
|
|
|
|
|
2025-10-21 10:58:56 +01:00
|
|
|
|
<!-- Google Fonts - Press Start 2P, VT323, Pixelify Sans -->
|
2025-07-13 23:18:57 +01:00
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
|
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
|
2025-10-21 10:58:56 +01:00
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
|
2025-07-13 23:18:57 +01:00
|
|
|
|
|
|
|
|
|
|
<!-- Web Font Loader script to ensure fonts load properly -->
|
|
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
|
|
|
|
|
|
<script>
|
|
|
|
|
|
WebFont.load({
|
|
|
|
|
|
google: {
|
2025-10-21 10:58:56 +01:00
|
|
|
|
families: ['Press Start 2P', 'VT323', 'Pixelify Sans']
|
2025-07-13 23:18:57 +01:00
|
|
|
|
},
|
|
|
|
|
|
active: function() {
|
|
|
|
|
|
console.log('Fonts loaded successfully');
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- CSS Files -->
|
|
|
|
|
|
<link rel="stylesheet" href="css/main.css">
|
|
|
|
|
|
<link rel="stylesheet" href="css/utilities.css">
|
|
|
|
|
|
<link rel="stylesheet" href="css/notifications.css">
|
|
|
|
|
|
<link rel="stylesheet" href="css/panels.css">
|
Add Hostile NPC mode
Fix NPC interaction and event handling issues
- Added a visual problem-solution summary for debugging NPC event handling.
- Resolved cooldown bug in NPCManager by implementing explicit null/undefined checks.
- Modified PersonChatMinigame to prioritize event parameters over state restoration.
- Updated security guard dialogue in Ink scenarios to improve interaction flow.
- Adjusted vault key parameters in npc-patrol-lockpick.json for consistency.
- Changed inventory stylesheet references to hud.css in test HTML files for better organization.
feat(combat): Integrate chair kicking with punch mechanic
Update chair interaction to use the punch system instead of direct kicking:
**Changes to interactions.js:**
- Modified swivel chair interaction to trigger player punch instead of
directly applying kick velocity
- Simplified chair interaction handler to just call playerCombat.punch()
**Changes to player-combat.js:**
- Extended checkForHits() to detect chairs in punch range and direction
- Added kickChair() method that applies the same velocity calculation:
- Calculates direction from player to chair
- Applies 1200 px/s kick force in that direction
- Triggers spin direction calculation for visual rotation
- Adds visual feedback (flash chair, light screen shake)
- Chairs now respond to punch AOE damage like hostile NPCs
Now clicking a chair or pressing 'E' near it triggers a punch, and if the
chair is in punch range and facing direction, it gets kicked with the
original velocity physics. Multiple chairs can be kicked with one punch.
feat(combat): Implement hostile NPC behavior and final integration (Phase 6-7)
Complete hostile NPC combat system with chase behavior and integration:
**Phase 6: Hostile NPC Behavior**
- Modified npc-behavior.js determineState() to check hostile state from npcHostileSystem
- Implemented updateHostileBehavior() with chase and attack logic:
- NPCs chase player when hostile and in aggro range
- NPCs stop and attack when in attack range
- NPCs use directional movement with proper animations
- Integration with npcCombat system for attack attempts
- Added KO state check to prevent KO'd NPCs from acting
**Phase 7: Final Integration**
- Modified player.js to disable movement when player is KO
- Added visual KO effect (50% alpha) to NPC sprites in npc-hostile.js
- Connected all combat systems end-to-end:
- Ink dialogue → hostile tag → hostile state → chase behavior → combat
- Player interaction → punch → NPC damage → KO → visual feedback
- NPC chase → attack → player damage → HP UI → game over
Full combat loop now functional: hostile NPCs chase and attack player,
player can punch hostile NPCs, complete visual/audio feedback, game over on KO.
feat(combat): Add feedback, UI, and combat mechanics (Phase 2-5)
Implement comprehensive combat feedback, UI, and mechanics:
**Phase 2: Enhanced Feedback Systems**
- damage-numbers.js: Floating damage numbers with object pooling
- screen-effects.js: Screen flash and shake for combat feedback
- sprite-effects.js: Sprite tinting, flashing, and visual effects
- attack-telegraph.js: Visual indicators for incoming NPC attacks
**Phase 3: UI Components**
- health-ui.js: Player health display as hearts (5 hearts, shows when damaged)
- npc-health-bars.js: Health bars above hostile NPCs with color coding
- game-over-screen.js: KO screen with restart/main menu options
**Phase 4-5: Combat Mechanics**
- player-combat.js: Player punch system with AOE directional damage
- npc-combat.js: NPC attack system with telegraph and cooldowns
- Modified interactions.js to trigger punch on hostile NPC interaction
- Integrated all systems into game.js create() and update() loops
Combat now functional with complete visual/audio feedback pipeline.
Player can punch hostile NPCs, NPCs can attack player, health tracking works.
feat(combat): Add hostile NPC system foundation (Phase 0-1)
Implement core hostile NPC combat system infrastructure:
- Add #hostile tag handler to chat-helpers.js for Ink integration
- Fix security-guard.ink to use proper hub pattern with -> hub instead of -> END
- Add #hostile:security_guard tags to hostile conversation paths
- Create combat configuration system (combat-config.js)
- Create combat event constants (combat-events.js)
- Implement player health tracking system with HP and KO state
- Implement NPC hostile state management with HP tracking
- Add combat debug utilities for testing
- Add error handling utilities for validation
- Integrate combat systems into game.js create() method
- Create test-hostile.ink for testing hostile tag system
This establishes the foundation for hostile NPC behavior, allowing NPCs to
become hostile through Ink dialogue and tracking health for both player and NPCs.
docs(npc): Apply codebase-verified corrections to hostile NPC plans
Apply critical corrections based on actual codebase verification:
CORRECTIONS.md (Updated):
- ✅ Confirms #exit_conversation tag ALREADY IMPLEMENTED
* Location: person-chat-minigame.js line 537
* No handler needed in chat-helpers.js
- ❌ Hostile tag still needs implementation in chat-helpers.js
- Provides exact code for hostile tag handler
- Clarifies tag format: #hostile:npcId or #hostile (uses current NPC)
- Updated action items to reflect what's already working
INTEGRATION_UPDATES.md (New):
- Comprehensive correction document
- Issue 1 Corrected: Exit conversation already works
- Issue 6 Corrected: Punch mechanics are interaction-based with AOE
- Details interaction-based punch targeting:
* Player clicks hostile NPC OR presses 'E' nearby
* Punch animation plays in facing direction
* Damage applies to ALL NPCs in range + direction (AOE)
* Can hit multiple enemies if grouped (strategic gameplay)
- Provides complete implementation examples
- Removes complexity of target selection systems
- Uses existing interaction patterns
quick_start.md (Updated):
- Removed exit_conversation handler (already exists)
- Updated hostile tag handler code
- Added punch mechanics design section
- Clarified interaction-based targeting
- Added troubleshooting for exit_conversation
Key Findings:
✅ Exit conversation tag works out of the box
✅ Punch targeting uses existing interaction system (simpler!)
✅ AOE punch adds strategic depth without complexity
❌ Only ONE critical task remains: Add hostile tag to chat-helpers.js
Impact:
- Less work required (don't need exit_conversation handler)
- Simpler implementation (use existing interaction patterns)
- Better gameplay (AOE punches, directional attacks)
- Clear path forward with exact code examples
docs(npc): Add critical corrections and codebase integration review
Add comprehensive review of hostile NPC plans against actual codebase:
CORRECTIONS.md:
- Identifies critical Ink pattern error (-> END vs -> hub)
- Documents correct hub-based conversation pattern
- Provides corrected examples for all Ink files
- Explains why -> hub is required after #exit_conversation
FORMAT_REVIEW.md:
- Validates JSON scenario format against existing scenarios
- Reviews NPC object structure and required fields
- Documents correct Ink hub pattern from helper-npc.ink
- Proposes hostile configuration object for NPC customization
- Provides complete format reference and checklists
review2/integration_review.md:
- Comprehensive codebase analysis by Explore agent
- Identifies 2 critical blockers requiring immediate attention:
* Missing tag handlers for #hostile and #exit_conversation
* Incorrect Ink pattern (-> END) in planning documents
- Documents 4 important integration differences:
* Initialization in game.js not main.js
* Event dispatcher already exists (window.eventDispatcher)
* Room transition behavior needs design decision
* Multi-hostile NPC targeting needs design decision
- Confirms 8 systems are fully compatible with plan
- Provides existing code patterns to follow
- Corrects integration sequence
review2/quick_start.md:
- Step-by-step guide for Phase 0-1 implementation
- Includes complete code examples for critical systems
- Browser console test procedures
- Common issues and solutions
- Success criteria checklist
Key Findings:
✅ 90% compatible with existing codebase
❌ Must add tag handlers to chat-helpers.js before implementation
❌ Must fix all Ink examples to use -> hub not -> END
⚠️ Should follow game.js initialization pattern not main.js
⚠️ Should use existing window.eventDispatcher
⚠️ Need design decisions on room transitions and multi-targeting
All critical issues documented with solutions ready.
Implementation can proceed with high confidence after corrections applied.
docs(npc): Add comprehensive planning documents for hostile NPC system
Add detailed implementation plans for hostile NPC feature including:
- Complete implementation plan with phase-by-phase breakdown
- Architecture overview with system diagrams and data flows
- Detailed TODO list with 200+ actionable tasks
- Phase 0 foundation with design decisions and base components
- Enhanced combat feedback implementation guide
- Implementation roadmap with 6-day schedule
Add comprehensive review documents:
- Implementation review with risk assessment and recommendations
- Technical review analyzing code patterns and best practices
- UX review covering player experience and game feel
Key features planned:
- NPC hostile state triggered via Ink tags
- Player health system with heart-based UI
- NPC health bars and combat mechanics
- Punch combat for both player and NPCs
- Strong visual/audio feedback for combat
- Game over system and KO states
- Attack telegraphing for fairness
- Enhanced NPC chase behavior with LOS
- Debug utilities and error handling
- Comprehensive testing strategy
2025-11-14 19:44:17 +00:00
|
|
|
|
<link rel="stylesheet" href="css/hud.css">
|
2025-08-08 15:33:44 +01:00
|
|
|
|
<link rel="stylesheet" href="css/minigames-framework.css">
|
2025-10-10 18:55:41 +01:00
|
|
|
|
<link rel="stylesheet" href="css/dusting.css">
|
|
|
|
|
|
<link rel="stylesheet" href="css/lockpicking.css">
|
2025-07-13 23:18:57 +01:00
|
|
|
|
<link rel="stylesheet" href="css/modals.css">
|
2025-10-10 15:20:04 +01:00
|
|
|
|
<link rel="stylesheet" href="css/notes.css">
|
2025-10-11 02:25:50 +01:00
|
|
|
|
<link rel="stylesheet" href="css/bluetooth-scanner.css">
|
|
|
|
|
|
<link rel="stylesheet" href="css/biometrics-minigame.css">
|
2025-10-13 11:53:07 +01:00
|
|
|
|
<link rel="stylesheet" href="css/container-minigame.css">
|
2025-10-29 13:48:22 +00:00
|
|
|
|
<link rel="stylesheet" href="css/phone-chat-minigame.css">
|
2025-11-04 14:16:48 +00:00
|
|
|
|
<link rel="stylesheet" href="css/person-chat-minigame.css">
|
2025-11-15 23:48:15 +00:00
|
|
|
|
<link rel="stylesheet" href="css/rfid-minigame.css">
|
2025-11-04 14:16:48 +00:00
|
|
|
|
<link rel="stylesheet" href="css/npc-interactions.css">
|
2025-10-13 23:45:53 +01:00
|
|
|
|
<link rel="stylesheet" href="css/pin.css">
|
2025-10-21 10:58:56 +01:00
|
|
|
|
<link rel="stylesheet" href="css/minigames-framework.css">
|
2025-10-14 17:12:59 +01:00
|
|
|
|
<link rel="stylesheet" href="css/password-minigame.css">
|
|
|
|
|
|
<link rel="stylesheet" href="css/text-file-minigame.css">
|
2025-10-29 13:48:22 +00:00
|
|
|
|
<link rel="stylesheet" href="css/npc-barks.css">
|
2026-01-14 10:10:12 +00:00
|
|
|
|
<link rel="stylesheet" href="css/tutorial.css">
|
|
|
|
|
|
|
2025-07-13 23:18:57 +01:00
|
|
|
|
<!-- External JavaScript libraries -->
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/phaser@3.60.0/dist/phaser.min.js"></script>
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/easystarjs@0.4.4/bin/easystar-0.4.4.js"></script>
|
2025-10-29 13:48:22 +00:00
|
|
|
|
<script src="assets/vendor/ink.js"></script>
|
2025-07-13 23:18:57 +01:00
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
|
|
<div id="game-container">
|
|
|
|
|
|
<div id="loading">Loading...</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Notification System -->
|
|
|
|
|
|
<div id="notification-container"></div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Toggle Buttons Container -->
|
|
|
|
|
|
<div id="toggle-buttons-container">
|
2025-10-11 02:25:50 +01:00
|
|
|
|
<!-- Biometrics is now handled as a minigame -->
|
2025-07-13 23:18:57 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Inventory Container -->
|
|
|
|
|
|
<div id="inventory-container"></div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Laptop Popup -->
|
|
|
|
|
|
<div id="laptop-popup">
|
|
|
|
|
|
<div class="laptop-frame">
|
|
|
|
|
|
<div class="laptop-screen">
|
|
|
|
|
|
<div class="title-bar">
|
|
|
|
|
|
<span>Crypto Workstation</span>
|
2025-12-05 15:37:31 +00:00
|
|
|
|
<button class="minigame-open-new-tab-button" onclick="openCryptoWorkstationInNewTab()" title="Open in new tab">↑</button>
|
2025-10-22 00:10:26 +01:00
|
|
|
|
<button class="minigame-close-button" onclick="closeLaptop()">×</button>
|
2025-07-13 23:18:57 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
<div id="cyberchef-container">
|
|
|
|
|
|
<iframe id="cyberchef-frame" src=""></iframe>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Password Modal -->
|
|
|
|
|
|
<div id="password-modal">
|
|
|
|
|
|
<div class="password-modal-content">
|
|
|
|
|
|
<div class="password-modal-title">
|
|
|
|
|
|
Enter Password
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<input id="password-modal-input" type="password" autocomplete="off" autofocus>
|
|
|
|
|
|
<div class="password-modal-checkbox-container">
|
|
|
|
|
|
<input type="checkbox" id="password-modal-show">
|
|
|
|
|
|
<label for="password-modal-show" class="password-modal-checkbox-label">Show password</label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="password-modal-buttons">
|
|
|
|
|
|
<button id="password-modal-ok" class="password-modal-button">OK</button>
|
|
|
|
|
|
<button id="password-modal-cancel" class="password-modal-button">Cancel</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Popup Overlay -->
|
|
|
|
|
|
<div class="popup-overlay"></div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Main Game JavaScript Module -->
|
2025-11-05 20:15:33 +00:00
|
|
|
|
<script type="module" src="js/main.js?v=47"></script>
|
2025-07-13 23:18:57 +01:00
|
|
|
|
|
|
|
|
|
|
<!-- Mobile touch handling -->
|
|
|
|
|
|
<script>
|
|
|
|
|
|
// Allow zooming on mobile devices
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
|
|
|
|
// Prevent Phaser from capturing touch events that should be used for zooming
|
|
|
|
|
|
const gameContainer = document.getElementById('game-container');
|
|
|
|
|
|
|
|
|
|
|
|
// Allow zooming on the document level
|
|
|
|
|
|
document.addEventListener('gesturestart', function(e) {
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
document.addEventListener('gesturechange', function(e) {
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// Prevent default touch behavior only within the game container
|
|
|
|
|
|
gameContainer.addEventListener('touchmove', function(e) {
|
|
|
|
|
|
// Only prevent default if it's not a multi-touch gesture (like pinch-to-zoom)
|
|
|
|
|
|
if (e.touches.length <= 1) {
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
}
|
|
|
|
|
|
}, { passive: false });
|
2025-10-10 17:11:02 +01:00
|
|
|
|
|
2025-07-13 23:18:57 +01:00
|
|
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|