| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Gemifish Chess</title> |
| <link rel="stylesheet" href="https://unpkg.com/@chrisoakman/chessboardjs@1.0.0/dist/chessboard-1.0.0.min.css"> |
| <link href="https://fonts.googleapis.com/css?family=Inter:400,600&display=swap" rel="stylesheet"> |
| <style> |
| * { margin: 0; padding: 0; box-sizing: border-box; } |
| html, body { height: 100%; overflow: hidden; } |
| body { |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Arial, sans-serif; |
| background-color: #2c2c2c; color: #ffffff; display: flex; flex-direction: column; |
| } |
| .container { display: flex; flex: 1; min-height: 0; } |
| .left-panel { |
| flex: 0 0 600px; background-color: #2c2c2c; display: flex; flex-direction: column; |
| border-right: 1px solid #404040; min-height: 0; position: relative; |
| } |
| .header { |
| display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; |
| background-color: #2c2c2c; border-bottom: 1px solid #404040; min-height: 56px; position: relative; z-index: 2; |
| } |
| .player-info { display: flex; align-items: center; gap: 12px; } |
| .avatar { |
| width: 32px; height: 32px; border-radius: 50%; |
| background: linear-gradient(135deg, #ff6b35, #f7931e); display: flex; |
| align-items: center; justify-content: center; flex-shrink: 0; |
| } |
| .avatar svg { width: 18px; height: 18px; fill: white; } |
| .player-name { font-size: 16px; font-weight: 500; } |
| .rating { color: #888; font-size: 14px; margin-left: 4px; } |
| .header-actions { position: relative; display: flex; align-items: center; gap: 12px; } |
| .settings-icon, .close-btn { |
| width: 32px; height: 32px; color: #888; cursor: pointer; display: flex; |
| align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; |
| transition: color 0.2s, background-color 0.2s; |
| } |
| .settings-icon:hover, .close-btn:hover { color: #fff; background-color: #404040; } |
| .settings-icon.active-ai { color: #4a90e2; } |
| .settings-icon.active-ai:hover { color: #6aaeff; } |
| .settings-icon svg, .close-btn svg { width: 18px; height: 18px; } |
| |
| |
| .chess-board-container { |
| flex: 1; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| background-color: #353535; |
| margin: 8px; |
| border-radius: 8px; |
| border: 1px solid #404040; |
| min-height: 0; |
| overflow: hidden; |
| padding: 8px; |
| position: relative; |
| z-index: 0; |
| contain: content; |
| } |
| |
| #game-board { |
| width: 100%; |
| height: 100%; |
| aspect-ratio: 1/1; |
| } |
| |
| .bottom-section { |
| padding: 16px; border-top: 1px solid #404040; display: flex; |
| align-items: center; gap: 12px; min-height: 56px; position: relative; z-index: 2; |
| } |
| .guest-avatar { |
| width: 24px; height: 24px; background-color: #666; border-radius: 50%; |
| display: flex; align-items: center; justify-content: center; color: #ccc; flex-shrink: 0; |
| } |
| .guest-avatar svg { width: 14px; height: 14px; fill: currentColor; } |
| .guest-label { color: #ccc; font-size: 14px; } |
| .action-icons { margin-left: auto; display: flex; gap: 8px; } |
| .action-icon { |
| width: 28px; height: 28px; color: #888; cursor: pointer; display: flex; |
| align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; |
| } |
| .action-icon:hover { color: #fff; background-color: #404040; } |
| .action-icon svg { width: 16px; height: 16px; fill: currentColor; } |
| .right-panel { flex: 1; background-color: #1e1e1e; display: flex; flex-direction: column; min-height: 0; } |
| .right-header { |
| padding: 12px 16px; border-bottom: 1px solid #404040; display: flex; |
| align-items: center; justify-content: space-between; min-height: 56px; flex-shrink: 0; |
| } |
| .play-bots { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500; } |
| .bot-icon { |
| width: 24px; height: 24px; background: linear-gradient(135deg, #4a90e2, #357abd); |
| border-radius: 4px; display: flex; align-items: center; justify-content: center; |
| color: white; flex-shrink: 0; |
| } |
| .bot-icon svg { width: 14px; height: 14px; fill: currentColor; } |
| .moves-section { flex: 1; padding: 16px; overflow-y: auto; min-height: 0; } |
| .moves-header { color: #888; font-size: 14px; margin-bottom: 16px; min-height: 20px; } |
| .moves-list { display: flex; flex-direction: column; gap: 8px; } |
| .move-row { display: flex; align-items: center; gap: 16px; font-size: 14px; } |
| .move-number { color: #888; width: 20px; flex-shrink: 0; text-align: right; } |
| .move { min-width: 60px; color: #fff; padding: 2px 4px; } |
| .move.highlighted-move { background-color: #404040; border-radius: 3px; } |
| |
| .ai-reasoning-section { |
| padding: 12px 16px; border-top: 1px solid #404040; background-color: #252525; flex-shrink: 0; |
| } |
| .ai-reasoning-header { |
| font-size: 12px; font-weight: 600; color: #aaa; letter-spacing: 0.5px; |
| text-transform: uppercase; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; |
| } |
| #ai-reasoning-text { font-size: 14px; color: #ddd; min-height: 40px; font-style: italic; } |
| |
| .controls { |
| padding: 16px; border-top: 1px solid #404040; display: flex; |
| justify-content: space-between; align-items: center; gap: 12px; flex-shrink: 0; |
| } |
| .nav-controls { display: flex; gap: 8px; } |
| .control-btn { |
| width: 36px; height: 36px; background-color: #404040; border: none; border-radius: 4px; |
| color: #ccc; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; |
| } |
| .control-btn:disabled { color: #666; cursor: not-allowed; } |
| .control-btn:not(:disabled):hover { background-color: #505050; color: #fff; } |
| .control-btn svg { width: 18px; height: 18px; fill: currentColor; } |
| .resign-btn { |
| background-color: #d32f2f; color: white; border: none; padding: 8px 16px; border-radius: 4px; |
| cursor: pointer; font-size: 14px; display: flex; align-items: center; gap: 6px; flex-shrink: 0; |
| } |
| .resign-btn:hover { background-color: #b71c1c; } |
| .resign-btn:disabled { background-color: #5a2e2e; color: #aaa; cursor: not-allowed; } |
| .resign-btn svg { width: 16px; height: 16px; fill: currentColor; } |
| |
| .modal-overlay { |
| position: fixed; top: 0; left: 0; width: 100%; height: 100%; |
| background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); display: none; |
| align-items: center; justify-content: center; z-index: 1000; |
| } |
| .modal { |
| width: min(480px, 90vw); background: #2c2c2c; border-radius: 12px; border: 1px solid #404040; |
| box-shadow: 0 8px 32px rgba(0,0,0,0.5); color: #fff; padding-bottom: 24px; position: relative; |
| } |
| .modal-header { |
| padding: 16px 24px; font-size: 20px; font-weight: 600; border-bottom: 1px solid #404040; |
| display: flex; justify-content: space-between; align-items: center; |
| } |
| .modal-close-btn { |
| background: none; border: none; cursor: pointer; padding: 0; margin: 0; width: 28px; |
| height: 28px; display: flex; align-items: center; justify-content: center; |
| } |
| .modal-content { padding: 0 24px; } |
| .tabs { display: flex; border-bottom: 1.5px solid #404040; margin-bottom: 0; margin-top: 8px; } |
| .tab { |
| flex: 1; text-align: center; padding: 12px 0 8px 0; font-size: 16px; font-weight: 500; |
| color: #fff; cursor: pointer; border: none; background: none; outline: none; border-bottom: 2.5px solid #fff; |
| } |
| .section-label { |
| margin-top: 20px; margin-bottom: 8px; font-size: 14px; font-weight: 600; |
| color: #aaa; letter-spacing: 0.5px; |
| } |
| .input-row { display: flex; align-items: center; position: relative; } |
| .input-box { |
| background: #404040; border: 1px solid #555; border-radius: 6px; color: #fff; |
| font-size: 14px; padding: 10px 44px 10px 12px; width: 100%; |
| font-family: 'Inter', 'Segoe UI', sans-serif; resize: none; |
| } |
| .pgn-area { min-height: 140px; max-height: 160px; } |
| .copy-btn { |
| position: absolute; right: 4px; top: 6px; background: none; border: none; |
| cursor: pointer; padding: 4px; display: flex; align-items: center; justify-content: center; |
| color: #aaa; border-radius: 4px; |
| } |
| .copy-btn:hover { background-color: #555; color: #fff; } |
| .pgn-area + .copy-btn { top: 8px; right: 8px; } |
| .modal-action-btn { |
| width: 100%; color: #fff; font-size: 18px; font-weight: 600; border: none; |
| border-radius: 8px; padding: 12px 0; margin-top: 18px; cursor: pointer; |
| display: flex; align-items: center; justify-content: center; transition: background 0.2s; |
| } |
| .modal-action-btn.download{ background: #4a90e2; } |
| .modal-action-btn.download:hover { background: #5a9ee6; } |
| .modal-action-btn.save-ai { background: #3f9142; } |
| .modal-action-btn.save-ai:hover { background: #4caf50; } |
| .modal-action-btn svg { margin-right: 10px; } |
| |
| #settings-popover { |
| display: none; position: absolute; top: 40px; right: 0; width: 220px; background: #2c2c2c; |
| border: 1px solid #404040; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.4); |
| z-index: 1100; padding: 8px; |
| } |
| .settings-section-header { |
| font-size: 12px; color: #888; text-transform: uppercase; padding: 8px; font-weight: 600; |
| } |
| .theme-btn { |
| width: 100%; background: none; border: none; color: #ddd; padding: 8px; text-align: left; |
| display: flex; align-items: center; gap: 12px; border-radius: 4px; cursor: pointer; |
| } |
| .theme-btn:hover { background-color: #404040; } |
| .theme-btn.active { color: #fff; background-color: #4a90e2; } |
| .theme-swatch { |
| width: 40px; height: 20px; border-radius: 4px; display: flex; |
| overflow: hidden; border: 1px solid #555; |
| } |
| .theme-swatch-light { width: 50%; } .theme-swatch-dark { width: 50%; } |
| |
| .notification { |
| position: fixed; top: -100px; left: 50%; transform: translateX(-50%); |
| background-color: #ff6b35; color: white; padding: 12px 24px; border-radius: 8px; |
| box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 2000; font-size: 15px; font-weight: 500; |
| transition: top 0.5s ease-in-out; display: flex; align-items: center; gap: 10px; |
| } |
| .notification.show { top: 20px; } |
| |
| |
| @media (max-width: 768px) { |
| .container { flex-direction: column; } |
| .left-panel { |
| flex: 1; |
| width: 100%; |
| border-right: none; |
| border-bottom: 1px solid #404040; |
| min-height: auto; |
| } |
| .right-panel { flex: 1; } |
| .chess-board-container { |
| margin: 4px; |
| padding: 4px; |
| height: auto; |
| overflow: hidden; |
| } |
| .header, .bottom-section, .right-header, .controls { padding: 8px 12px; min-height: 48px; } |
| .player-info { gap: 8px; } |
| .avatar { width: 28px; height: 28px; } |
| .player-name { font-size: 14px; } |
| .rating { font-size: 12px; } |
| #game-board { |
| width: 100%; |
| height: 100%; |
| max-width: 100%; |
| max-height: none; |
| aspect-ratio: 1/1; |
| } |
| } |
| @media (max-width: 480px) { |
| .nav-controls { gap: 4px; } |
| .control-btn { width: 32px; height: 32px; } |
| .resign-btn { padding: 6px 12px; font-size: 12px; } |
| .chess-board-container { |
| margin: 2px; |
| padding: 2px; |
| } |
| } |
| |
| |
| #api-key-input { width: 100%; padding: 10px; background: #404040; border: 1px solid #555; color: #fff; } |
| .credit { font-size: 12px; color: #888; margin-left: auto; } |
| .credit a { color: #4a90e2; text-decoration: none; } |
| .credit a:hover { text-decoration: underline; } |
| </style> |
| </head> |
| <body> |
| <div id="ai-notification" class="notification"> |
| <svg fill="currentColor" width="20" height="20" viewBox="0 0 24 24"><path d="M13,14H11V10H13M13,18H11V16H13M1,21H23L12,2L1,21Z"></path></svg> |
| <span id="ai-notification-text"></span> |
| </div> |
|
|
| <div class="container"> |
| <div class="left-panel"> |
| <div class="header"> |
| <div class="player-info"><div class="avatar"><svg viewBox="0 0 24 24"><path d="M12,20A8,8 0 0,0 20,12A8,8 0 0,0 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22C6.47,22 2,17.5 2,12A10,10 0 0,1 12,2M15.5,8C16.3,8 17,8.7 17,9.5C17,10.3 16.3,11 15.5,11C14.7,11 14,10.3 14,9.5C14,8.7 14.7,8 15.5,8M10,9.5C10,10.3 9.3,11 8.5,11C7.7,11 7,10.3 7,9.5C7,8.7 7.7,8 8.5,8C9.3,8 10,8.7 10,9.5M12,17.23C10.25,17.23 8.71,16.5 7.81,15.42L9.07,14.34C9.69,15.12 10.8,15.23 12,15.23C13.2,15.23 14.31,15.12 14.93,14.34L16.19,15.42C15.29,16.5 13.75,17.23 12,17.23Z"/></svg></div><div><span class="player-name">Gemifish</span><span class="rating">(2000+)</span></div></div> |
| <div class="header-actions"> |
| <div id="ai-btn" class="settings-icon" title="AI Personality"> |
| <svg fill="currentColor" viewBox="0 0 24 24"><path d="M12,2A2,2 0 0,1 14,4C14,4.74 13.6,5.39 13,5.73V7H14A7,7 0 0,1 21,14H22A1,1 0 0,1 23,15V18A1,1 0 0,1 22,19H21V20A2,2 0 0,1 19,22H5A2,2 0 0,1 3,20V19H2A1,1 0 0,1 1,18V15A1,1 0 0,1 2,14H3A7,7 0 0,1 10,7H11V5.73C10.4,5.39 10,4.74 10,4A2,2 0 0,1 12,2M7.5,13A2.5,2.5 0 0,0 5,15.5A2.5,2.5 0 0,0 7.5,18A2.5,2.5 0 0,0 10,15.5A2.5,2.5 0 0,0 7.5,13M16.5,13A2.5,2.5 0 0,0 14,15.5A2.5,2.5 0 0,0 16.5,18A2.5,2.5 0 0,0 19,15.5A2.5,2.5 0 0,0 16.5,13Z"/></svg> |
| </div> |
| <div id="settings-btn" class="settings-icon" title="Settings"> |
| <svg fill="currentColor" viewBox="0 0 24 24"><path d="M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.22,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.22,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.68 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z"/></svg> |
| </div> |
| <div id="settings-popover"> |
| <div class="settings-section-header">Board Theme</div> |
| <button id="theme-brown-btn" class="theme-btn"><div class="theme-swatch"><div class="theme-swatch-light" style="background-color: #f0d9b5;"></div><div class="theme-swatch-dark" style="background-color: #b58863;"></div></div>Brown</button> |
| <button id="theme-blue-btn" class="theme-btn"><div class="theme-swatch"><div class="theme-swatch-light" style="background-color: #D8DEE9;"></div><div class="theme-swatch-dark" style="background-color: #819AAE;"></div></div>Blue</button> |
| </div> |
| </div> |
| </div> |
| <div class="chess-board-container"><div id="game-board"></div></div> |
| <div class="bottom-section"> |
| <div class="guest-avatar"><svg viewBox="0 0 24 24"><path d="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z"/></svg></div> |
| <div class="guest-label">Guest</div> |
| <div class="action-icons"><div id="share-btn" class="action-icon" title="Share"><svg viewBox="0 0 24 24"><path d="M21,12L14,5V9C7,10 4,15 3,20C5.5,16.5 9,14.9 14,14.9V19L21,12Z"/></svg></div></div> |
| <div class="credit">Dibuat oleh <a href="https://reddit.com/u/DinnerUnlucky4661" target="_blank">/u/DinnerUnlucky4661</a> on Reddit</div> |
| </div> |
| </div> |
| <div class="right-panel"> |
| <div class="right-header"><div class="play-bots"><div class="bot-icon"><svg viewBox="0 0 24 24"><path d="M12,2A2,2 0 0,1 14,4C14,4.74 13.6,5.39 13,5.73V7H14A7,7 0 0,1 21,14H22A1,1 0 0,1 23,15V18A1,1 0 0,1 22,19H21V20A2,2 0 0,1 19,22H5A2,2 0 0,1 3,20V19H2A1,1 0 0,1 1,18V15A1,1 0 0,1 2,14H3A7,7 0 0,1 10,7H11V5.73C10.4,5.39 10,4.74 10,4A2,2 0 0,1 12,2M7.5,13A2.5,2.5 0 0,0 5,15.5A2.5,2.5 0 0,0 7.5,18A2.5,2.5 0 0,0 10,15.5A2.5,2.5 0 0,0 7.5,13M16.5,13A2.5,2.5 0 0,0 14,15.5A2.5,2.5 0 0,0 16.5,18A2.5,2.5 0 0,0 19,15.5A2.5,2.5 0 0,0 16.5,13Z"/></svg></div><span>Play Bots</span></div></div> |
| <div class="moves-section"><div class="moves-header" id="status-display">Loading Gemifish Engine...</div><div class="moves-list" id="moves-list"></div></div> |
| <div class="ai-reasoning-section"> |
| <div class="ai-reasoning-header"> |
| <svg fill="currentColor" width="16" height="16" viewBox="0 0 24 24"><path d="M12,2A2,2 0 0,1 14,4C14,4.74 13.6,5.39 13,5.73V7H14A7,7 0 0,1 21,14H22A1,1 0 0,1 23,15V18A1,1 0 0,1 22,19H21V20A2,2 0 0,1 19,22H5A2,2 0 0,1 3,20V19H2A1,1 0 0,1 1,18V15A1,1 0 0,1 2,14H3A7,7 0 0,1 10,7H11V5.73C10.4,5.39 10,4.74 10,4A2,2 0 0,1 12,2Z"/></svg> |
| AI Reasoning |
| </div> |
| <p id="ai-reasoning-text">Set a personality to see the AI's thoughts here.</p> |
| </div> |
| <div class="controls"> |
| <div class="nav-controls"> |
| <button id="btn-first" class="control-btn"><svg viewBox="0 0 24 24"><path d="M18.41,16.59L13.82,12L18.41,7.41L17,6L11,12L17,18L18.41,16.59M6,6H8V18H6V6Z"/></svg></button> |
| <button id="btn-back" class="control-btn"><svg viewBox="0 0 24 24"><path d="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z"/></svg></button> |
| <button id="btn-forward" class="control-btn"><svg viewBox="0 0 24 24"><path d="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z"/></svg></button> |
| <button id="btn-last" class="control-btn"><svg viewBox="0 0 24 24"><path d="M5.59,7.41L10.18,12L5.59,16.59L7,18L13,12L7,6L5.59,7.41M16,6H18V18H16V6Z"/></svg></button> |
| </div> |
| <button id="resign-btn" class="resign-btn"><svg viewBox="0 0 24 24"><path d="M14.4,6L14,4H5V21H7V14H12.6L13,16H20V6H14.4Z"/></svg><span>Resign</span></button> |
| </div> |
| </div> |
| </div> |
| |
| <div class="modal-overlay" id="pgn-modal-overlay"> |
| <div class="modal"> |
| <div class="modal-header"> |
| Share Game |
| <button id="modal-close-btn" class="modal-close-btn"><svg width="22" height="22" viewBox="0 0 22 22"><line x1="6" y1="6" x2="16" y2="16" stroke="#bdbdbd" stroke-width="2" stroke-linecap="round"/><line x1="16" y1="6" x2="6" y2="16" stroke="#bdbdbd" stroke-width="2" stroke-linecap="round"/></svg></button> |
| </div> |
| <div class="modal-content"> |
| <div class="tabs"><button class="tab">PGN</button></div> |
| <div> |
| <div class="section-label">FEN</div> |
| <div class="input-row"><input class="input-box" id="fenInput" readonly><button class="copy-btn" id="copy-fen-btn" title="Copy FEN"><svg width="22" height="22" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 4v4H4m12-4v4h4M8 20v-4H4m12 4v-4h4m-4-2h-4v4h4zM8 9H4V5h4zm12 0h-4V5h4zm-8 8H8v-4h4z"/></svg></button></div> |
| <div class="section-label">PGN</div> |
| <div class="input-row"><textarea class="input-box pgn-area" id="pgnText" readonly></textarea><button class="copy-btn" id="copy-pgn-btn" title="Copy PGN"><svg width="22" height="22" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 4v4H4m12-4v4h4M8 20v-4H4m12 4v-4h4m-4-2h-4v4h4zM8 9H4V5h4zm12 0h-4V5h4zm-8 8H8v-4h4z"/></svg></button></div> |
| <button class="modal-action-btn download" id="download-pgn-btn"><svg width="24" height="24" viewBox="0 0 24 24"><path d="M12 4v12m0 0l-4-4m4 4l4-4m-4 8h8a2 2 0 002-2v-2" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>Download</button> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="modal-overlay" id="ai-modal-overlay"> |
| <div class="modal"> |
| <div class="modal-header"> |
| AI Personality |
| <button id="ai-modal-close-btn" class="modal-close-btn"><svg width="22" height="22" viewBox="0 0 22 22"><line x1="6" y1="6" x2="16" y2="16" stroke="#bdbdbd" stroke-width="2" stroke-linecap="round"/><line x1="16" y1="6" x2="6" y2="16" stroke="#bdbdbd" stroke-width="2" stroke-linecap="round"/></svg></button> |
| </div> |
| <div class="modal-content"> |
| <div class="section-label" style="margin-top: 16px;">System Prompt</div> |
| <p style="font-size: 13px; color: #aaa; margin-bottom: 12px;">Describe the personality for the AI opponent. If this is empty, the AI will play using the standard Stockfish engine.</p> |
| <div class="input-row"> |
| <textarea class="input-box pgn-area" id="ai-personality-input" placeholder="e.g., An aggressive pirate who loves to attack and sacrifice pieces."></textarea> |
| </div> |
| <button class="modal-action-btn save-ai" id="save-ai-personality-btn"><svg fill="currentColor" width="24" height="24" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>Apply Personality</button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="modal-overlay" id="settings-modal-overlay"> |
| <div class="modal"> |
| <div class="modal-header"> |
| Settings |
| <button id="settings-modal-close-btn" class="modal-close-btn"><svg width="22" height="22" viewBox="0 0 22 22"><line x1="6" y1="6" x2="16" y2="16" stroke="#bdbdbd" stroke-width="2" stroke-linecap="round"/><line x1="16" y1="6" x2="6" y2="16" stroke="#bdbdbd" stroke-width="2" stroke-linecap="round"/></svg></button> |
| </div> |
| <div class="modal-content"> |
| <div class="section-label">Gemini API Key (Optional)</div> |
| <p style="font-size: 13px; color: #aaa; margin-bottom: 12px;">Masukkan API key-mu jika default error/limit. Kosongkan untuk pakai default.</p> |
| <input type="text" id="api-key-input" class="input-box" placeholder="Your Gemini API Key"> |
| <button class="modal-action-btn save-ai" id="save-settings-btn"><svg fill="currentColor" width="24" height="24" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>Save</button> |
| |
| |
| <div class="settings-section-header">Board Theme</div> |
| <button id="theme-brown-btn" class="theme-btn"><div class="theme-swatch"><div class="theme-swatch-light" style="background-color: #f0d9b5;"></div><div class="theme-swatch-dark" style="background-color: #b58863;"></div></div>Brown</button> |
| <button id="theme-blue-btn" class="theme-btn"><div class="theme-swatch"><div class="theme-swatch-light" style="background-color: #D8DEE9;"></div><div class="theme-swatch-dark" style="background-color: #819AAE;"></div></div>Blue</button> |
| </div> |
| </div> |
| </div> |
|
|
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> |
| <script src="https://unpkg.com/@chrisoakman/chessboardjs@1.0.0/dist/chessboard-1.0.0.min.js"></script> |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/chess.js/0.10.2/chess.min.js"></script> |
| |
| <script> |
| var board = null, game = new Chess(), $status = $('#status-display'); |
| var playerColor = 'w', engine = null, isGameOver = false, viewingMoveIndex = -1; |
| var boardThemeStyle = document.createElement('style'); |
| document.head.appendChild(boardThemeStyle); |
| |
| var aiPersonality = ''; |
| var geminiApiKey = ''; |
| var userApiKey = ''; |
| var isEngineSearching = false; |
| var topMovesWithEvals = []; |
| const useLLM = () => aiPersonality && aiPersonality.trim() !== ''; |
| |
| const THEMES = { |
| brown: { light: '#f0d9b5', dark: '#b58863' }, |
| blue: { light: '#D8DEE9', dark: '#819AAE' } |
| }; |
| const STOCKFISH_WORKER_URL = 'https://cdnjs.cloudflare.com/ajax/libs/stockfish.js/10.0.2/stockfish.js'; |
| const pieceImagePaths = {'wP': 'https://upload.wikimedia.org/wikipedia/commons/4/45/Chess_plt45.svg','wR': 'https://upload.wikimedia.org/wikipedia/commons/7/72/Chess_rlt45.svg','wN': 'https://upload.wikimedia.org/wikipedia/commons/7/70/Chess_nlt45.svg','wB': 'https://upload.wikimedia.org/wikipedia/commons/b/b1/Chess_blt45.svg','wQ': 'https://upload.wikimedia.org/wikipedia/commons/1/15/Chess_qlt45.svg','wK': 'https://upload.wikimedia.org/wikipedia/commons/4/42/Chess_klt45.svg','bP': 'https://upload.wikimedia.org/wikipedia/commons/c/c7/Chess_pdt45.svg','bR': 'https://upload.wikimedia.org/wikipedia/commons/f/ff/Chess_rdt45.svg','bN': 'https://upload.wikimedia.org/wikipedia/commons/e/ef/Chess_ndt45.svg','bB': 'https://upload.wikimedia.org/wikipedia/commons/9/98/Chess_bdt45.svg','bQ': 'https://upload.wikimedia.org/wikipedia/commons/4/47/Chess_qdt45.svg','bK': 'https://upload.wikimedia.org/wikipedia/commons/f/f0/Chess_kdt45.svg'}; |
| function pieceTheme(piece) { return pieceImagePaths[piece]; } |
| |
| function setBoardTheme(themeName) { |
| const theme = THEMES[themeName]; |
| boardThemeStyle.innerHTML = ` |
| .square-55d63.white-1e1d7 { background-color: ${theme.light}; color: ${theme.dark}; } |
| .square-55d63.black-3c85d { background-color: ${theme.dark}; color: ${theme.light}; } |
| `; |
| $('.theme-btn').removeClass('active'); |
| $(`#theme-${themeName}-btn`).addClass('active'); |
| } |
| |
| function onDragStart(source, piece) { |
| const canMove = !isGameOver && !isEngineSearching && !game.game_over() && game.turn() === playerColor && viewingMoveIndex === game.history().length - 1; |
| |
| if (!canMove) { |
| console.log("Move disallowed. Current state:", { |
| isGameOver, |
| isEngineSearching, |
| isGameTerminated: game.game_over(), |
| isPlayerTurn: game.turn() === playerColor, |
| isViewingLatestMove: viewingMoveIndex === game.history().length - 1 |
| }); |
| } |
| return canMove; |
| } |
| |
| function createEngineWorker() { |
| return fetch(STOCKFISH_WORKER_URL).then(res => res.text()).then(scriptText => { |
| const blob = new Blob([scriptText], { type: 'application/javascript' }); |
| return new Worker(URL.createObjectURL(blob)); |
| }); |
| } |
| |
| function initializeEngine() { |
| createEngineWorker().then(worker => { |
| engine = worker; |
| engine.onmessage = handleEngineMessage; |
| engine.postMessage('uci'); |
| engine.postMessage('setoption name MultiPV value 5'); |
| updateStatus(); |
| }).catch(err => { |
| console.error("Failed to load engine:", err); |
| updateStatus("Error: Could not load engine."); |
| }); |
| } |
| |
| function showNotification(message, duration = 6000) { |
| const notification = $('#ai-notification'); |
| $('#ai-notification-text').text(message); |
| notification.addClass('show'); |
| setTimeout(() => { notification.removeClass('show'); }, duration); |
| } |
| |
| function handleEngineMessage(event) { |
| const message = event.data; |
| if (useLLM()) { |
| if (message.startsWith('info') && message.includes('score cp')) { |
| const scoreMatch = message.match(/score cp (-?\d+)/); |
| const moveMatch = message.match(/pv\s+([a-h][1-8][a-h][1-8][qrbn]?)/); |
| if (scoreMatch && moveMatch) { |
| const score = parseInt(scoreMatch[1], 10); |
| const move = moveMatch[1]; |
| if (!topMovesWithEvals.some(item => item.move === move)) { |
| topMovesWithEvals.push({ move, score }); |
| } |
| } |
| } |
| if (message.startsWith('bestmove')) { |
| const bestMoveFallback = message.split(' ')[1]; |
| decideMoveWithLLM(bestMoveFallback); |
| } |
| } else { |
| if (message.startsWith('bestmove')) { |
| isEngineSearching = false; |
| makeMoveOnBoard(message.split(' ')[1]); |
| } |
| } |
| } |
| |
| async function decideMoveWithLLM(fallbackMove) { |
| const apiKeyToUse = userApiKey || geminiApiKey; |
| if (!apiKeyToUse) { |
| showNotification('API key kosong. Gunakan Stockfish default.'); |
| makeMoveOnBoard(fallbackMove); |
| return; |
| } |
| const maxRetries = 5; |
| let retryCount = 0; |
| |
| while (retryCount < maxRetries) { |
| try { |
| if (topMovesWithEvals.length === 0) { |
| console.warn("No top moves were analyzed. Using fallback move:", fallbackMove); |
| makeMoveOnBoard(fallbackMove); |
| return; |
| } |
| |
| const fen = game.fen(); |
| const turn = game.turn() === 'w' ? 'White' : 'Black'; |
| const movesData = JSON.stringify(topMovesWithEvals); |
| |
| const prompt = `You are a world-class chess engine and a master role-player. Your goal is to perfectly blend strong chess play with a defined personality. Your priority is 80% playing the best move and 20% fitting your character. You must select a move from the provided list. |
| |
| Current State: |
| - Board (FEN): ${fen} |
| - It is ${turn}'s turn to move. |
| - Your designated personality is: "${aiPersonality}" |
| |
| Your Task: |
| I have provided a JSON array of the top moves calculated by a strong chess engine. First, identify the strongest moves that don't lead to a disadvantage. From that small group of good moves, pick the one that best reflects your character. Then, explain your choice from your character's perspective. |
| |
| Input Moves Data: |
| ${movesData} |
| |
| Output Format: |
| You MUST respond in a VALID JSON FORMAT, with no other text. The JSON object must have three keys: |
| - "bestMove": The chosen move from the list (e.g., "e2e4"). Required. |
| - "reasoning": A brief, in-character explanation for your choice. DO NOT mention scores or technical analysis. This should be your character's internal monologue. Required. |
| - "deviationWarning": If you were forced to deviate from your personality to avoid a blunder, provide a short message explaining why. If you did not deviate, this MUST be null.`; |
| |
| updateStatus('Consulting AI personality...'); |
| $('#ai-reasoning-text').text('Thinking...'); |
| |
| const response = await fetch(`https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash-latest:generateContent?key=${apiKeyToUse}`, { |
| method: 'POST', |
| headers: { 'Content-Type': 'application/json' }, |
| body: JSON.stringify({ "contents": [{ "parts": [{ "text": prompt }] }] }) |
| }); |
| |
| if (response.status === 429) { |
| const delay = Math.pow(2, retryCount) * 1000 + Math.random() * 1000; |
| console.warn(`Rate limit hit. Retrying in ${delay.toFixed(2)}ms...`); |
| await new Promise(resolve => setTimeout(resolve, delay)); |
| retryCount++; |
| continue; |
| } |
| |
| if (!response.ok) { |
| throw new Error(`API request failed with status ${response.status}`); |
| } |
| |
| const data = await response.json(); |
| |
| if (!data.candidates || !data.candidates[0]?.content?.parts[0]?.text) { |
| const reason = data.candidates?.[0]?.finishReason || 'Unknown reason'; |
| console.error("Invalid response structure from Gemini API. Content may be blocked or missing. Finish Reason:", reason, data); |
| throw new Error(`Invalid response structure from Gemini API. Finish Reason: ${reason}`); |
| } |
| |
| let rawText = data.candidates[0].content.parts[0].text; |
| const jsonMatch = rawText.match(/```json\s*(\{[\s\S]*\})\s*```|(\{[\s\S]*\})/); |
| if (!jsonMatch) { |
| throw new Error("LLM did not return a parsable JSON object."); |
| } |
| |
| const jsonString = jsonMatch[1] || jsonMatch[2]; |
| const result = JSON.parse(jsonString); |
| |
| if (!result.bestMove || typeof result.reasoning === 'undefined') { |
| throw new Error("Parsed JSON from LLM is missing required keys ('bestMove', 'reasoning')."); |
| } |
| |
| if (result.deviationWarning) { |
| showNotification(result.deviationWarning); |
| } |
| $('#ai-reasoning-text').text(result.reasoning || "I have made my move."); |
| |
| if (topMovesWithEvals.some(item => item.move === result.bestMove)) { |
| makeMoveOnBoard(result.bestMove); |
| } else { |
| console.warn(`LLM chose a move (${result.bestMove}) not in the valid list. Defaulting to best Stockfish move.`); |
| makeMoveOnBoard(fallbackMove); |
| } |
| return; |
| |
| } catch (error) { |
| console.error("An error occurred while getting the AI's move:", error); |
| |
| if (retryCount >= maxRetries - 1) { |
| $('#ai-reasoning-text').text("An error occurred. I will play the best move as a fallback."); |
| updateStatus('Error with AI. Using best move.'); |
| makeMoveOnBoard(fallbackMove); |
| break; |
| } |
| } |
| } |
| isEngineSearching = false; |
| } |
| |
| function makeEngineMove() { |
| if (isGameOver || game.game_over() || !engine) return; |
| isEngineSearching = true; |
| updateStatus('Gemifish is thinking...'); |
| |
| topMovesWithEvals = []; |
| engine.postMessage('position fen ' + game.fen()); |
| engine.postMessage('go depth 15'); |
| } |
| |
| function makeMoveOnBoard(move) { |
| game.move(move, { sloppy: true }); |
| board.position(game.fen()); |
| board.resize(); |
| viewingMoveIndex = game.history().length - 1; |
| updateStatus(); |
| updateMoveHistory(); |
| if (game.game_over()) updateStatus(); |
| } |
| |
| function onDrop(source, target) { |
| var move = game.move({ from: source, to: target, promotion: 'q' }); |
| if (move === null) return 'snapback'; |
| |
| viewingMoveIndex = game.history().length - 1; |
| updateMoveHistory(); |
| |
| if (game.game_over()) { |
| updateStatus(); |
| } else { |
| window.setTimeout(makeEngineMove, 250); |
| } |
| } |
| |
| function onSnapEnd() { |
| board.position(game.fen()); |
| |
| setTimeout(() => board.resize(), 10); |
| } |
| |
| function updateMoveHistory() { |
| const history = game.history({ verbose: false }); |
| const moveList = $('#moves-list'); |
| moveList.empty(); |
| let moveRow; |
| for (let i = 0; i < history.length; i++) { |
| if (i % 2 === 0) { |
| moveRow = $('<div class="move-row"></div>').append(`<span class="move-number">${(i / 2) + 1}.</span>`); |
| moveList.append(moveRow); |
| } |
| const san = history[i]; |
| const $moveSpan = $('<span class="move"></span>').text(san); |
| moveRow.append($moveSpan); |
| } |
| $('.moves-section').scrollTop($('.moves-section')[0].scrollHeight); |
| updateHighlighting(); |
| } |
| |
| function updateHighlighting() { |
| $('.move').removeClass('highlighted-move'); |
| if (viewingMoveIndex > -1) $('.move').eq(viewingMoveIndex).addClass('highlighted-move'); |
| } |
| |
| function navigateToMove(index) { |
| const history = game.history(); |
| if (index < -1 || index >= history.length) return; |
| viewingMoveIndex = index; |
| const tempGame = new Chess(); |
| for (let i = 0; i <= viewingMoveIndex; i++) tempGame.move(history[i]); |
| board.position(tempGame.fen()); |
| |
| setTimeout(() => board.resize(), 10); |
| updateHighlighting(); |
| updateNavButtons(); |
| } |
| |
| function updateStatus(customStatus) { |
| var status = customStatus || ''; |
| if (!customStatus) { |
| if (isGameOver) { |
| status = "You Resigned. Gemifish Wins."; |
| } else { |
| var moveColor = game.turn() === 'b' ? 'Black' : 'White'; |
| if (game.in_checkmate()) status = 'Game over: ' + moveColor + ' is in checkmate.'; |
| else if (game.in_draw()) status = 'Game over: Drawn position'; |
| else { |
| status = (game.turn() === playerColor ? 'Your' : "Gemifish's") + ' turn'; |
| if (game.in_check()) status += ' (in check)'; |
| } |
| } |
| } |
| if (game.game_over() || isGameOver) { |
| $('#resign-btn').prop('disabled', true); |
| } |
| $status.html(status); |
| updateNavButtons(); |
| } |
| |
| function updateNavButtons() { |
| const historyLength = game.history().length; |
| const onLatestMove = viewingMoveIndex === historyLength - 1; |
| $('#btn-first').prop('disabled', viewingMoveIndex <= -1); |
| $('#btn-back').prop('disabled', viewingMoveIndex <= -1); |
| $('#btn-forward').prop('disabled', onLatestMove); |
| $('#btn-last').prop('disabled', onLatestMove); |
| } |
| |
| function openShareModal() { |
| $('#fenInput').val(game.fen()); |
| $('#pgnText').val(game.pgn()); |
| $('#pgn-modal-overlay').css('display', 'flex'); |
| } |
| function closeShareModal() { $('#pgn-modal-overlay').css('display', 'none'); } |
| function openAIPersonalityModal() { |
| $('#ai-personality-input').val(aiPersonality); |
| $('#ai-modal-overlay').css('display', 'flex'); |
| } |
| function closeAIPersonalityModal() { $('#ai-modal-overlay').css('display', 'none'); } |
| function saveAIPersonality() { |
| aiPersonality = $('#ai-personality-input').val(); |
| if (useLLM()) { |
| $('#ai-btn').addClass('active-ai'); |
| $('#ai-reasoning-text').text('Personality set. Make your move!'); |
| } else { |
| $('#ai-btn').removeClass('active-ai'); |
| $('#ai-reasoning-text').text('Set a personality to see the AI\'s thoughts here.'); |
| } |
| closeAIPersonalityModal(); |
| } |
| |
| function copyToClipboard(elementId, btnElem) { |
| navigator.clipboard.writeText($(`#${elementId}`).val()).then(() => { |
| const originalContent = $(btnElem).html(); |
| $(btnElem).html('Copied!'); |
| setTimeout(() => { $(btnElem).html(originalContent); }, 2000); |
| }).catch(err => { |
| console.error('Failed to copy text: ', err); |
| const originalContent = $(btnElem).html(); |
| $(btnElem).html('Error!'); |
| setTimeout(() => { $(btnElem).html(originalContent); }, 2000); |
| }); |
| } |
| |
| function downloadPGN() { |
| const text = $('#pgnText').val(); |
| const blob = new Blob([text], { type: 'application/vnd.chess-pgn' }); |
| const url = URL.createObjectURL(blob); |
| const a = document.createElement('a'); a.href = url; |
| a.download = `Gemifish-vs-Guest-${new Date().toISOString().slice(0,10)}.pgn`; |
| document.body.appendChild(a); a.click(); |
| document.body.removeChild(a); URL.revokeObjectURL(url); |
| } |
| |
| |
| function openSettingsModal() { |
| $('#api-key-input').val(userApiKey); |
| $('#settings-modal-overlay').css('display', 'flex'); |
| } |
| function closeSettingsModal() { $('#settings-modal-overlay').css('display', 'none'); } |
| |
| var config = { |
| draggable: true, |
| position: 'start', |
| onDragStart, |
| onDrop, |
| onSnapEnd, |
| pieceTheme, |
| showNotation: true |
| }; |
| board = Chessboard('game-board', config); |
| |
| |
| function ensureBoardFits() { |
| const container = $('.chess-board-container'); |
| |
| const containerWidth = container.width() - 16; |
| const containerHeight = container.height() - 16; |
| |
| |
| const maxSize = Math.min(containerWidth, containerHeight); |
| |
| |
| $('#game-board').css({ |
| 'width': maxSize + 'px', |
| 'height': maxSize + 'px' |
| }); |
| |
| |
| board.resize(); |
| } |
| |
| |
| ensureBoardFits(); |
| |
| |
| $(window).on('resize', ensureBoardFits); |
| |
| |
| $('#resign-btn').on('click', () => { if (!isGameOver && !game.game_over()) { isGameOver = true; updateStatus(); }}); |
| $('#btn-back').on('click', () => navigateToMove(viewingMoveIndex - 1)); |
| $('#btn-forward').on('click', () => navigateToMove(viewingMoveIndex + 1)); |
| $('#btn-first').on('click', () => navigateToMove(-1)); |
| $('#btn-last').on('click', () => navigateToMove(game.history().length - 1)); |
| |
| $('#share-btn').on('click', openShareModal); |
| $('#modal-close-btn').on('click', function(e) { e.stopPropagation(); closeShareModal(); }); |
| $('#pgn-modal-overlay').on('click', function(e) { if (e.target === this || $(e.target).is('#modal-close-btn, #modal-close-btn *')) closeShareModal(); }); |
| |
| $('#ai-btn').on('click', openAIPersonalityModal); |
| $('#ai-modal-close-btn').on('click', function(e) { e.stopPropagation(); closeAIPersonalityModal(); }); |
| $('#ai-modal-overlay').on('click', function(e) { if (e.target === this || $(e.target).is('#ai-modal-close-btn, #ai-modal-close-btn *')) closeAIPersonalityModal(); }); |
| $('#save-ai-personality-btn').on('click', saveAIPersonality); |
| |
| $('.modal').on('click', e => e.stopPropagation()); |
| $('#copy-fen-btn').on('click', function() { copyToClipboard('fenInput', this); }); |
| $('#copy-pgn-btn').on('click', function() { copyToClipboard('pgnText', this); }); |
| $('#download-pgn-btn').on('click', downloadPGN); |
| |
| $('#settings-btn').on('click', openSettingsModal); |
| $('#settings-modal-close-btn').on('click', function(e) { e.stopPropagation(); closeSettingsModal(); }); |
| $('#settings-modal-overlay').on('click', function(e) { if (e.target === this || $(e.target).is('#settings-modal-close-btn, #settings-modal-close-btn *')) closeSettingsModal(); }); |
| $('#save-settings-btn').on('click', () => { |
| userApiKey = $('#api-key-input').val().trim(); |
| closeSettingsModal(); |
| showNotification('Settings disimpan!'); |
| }); |
| $('#theme-brown-btn').on('click', () => setBoardTheme('brown')); |
| $('#theme-blue-btn').on('click', () => setBoardTheme('blue')); |
| |
| setBoardTheme('blue'); |
| initializeEngine(); |
| </script> |
| </body> |
| </html> |