hello121311

eeee

Jul 28th, 2025
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Gemifish Chess</title>
  7. <!-- chessboard.js CSS -->
  8. <link rel="stylesheet" href="https://unpkg.com/@chrisoakman/[email protected]/dist/chessboard-1.0.0.min.css">
  9. <link href="https://fonts.googleapis.com/css?family=Inter:400,600&display=swap" rel="stylesheet">
  10. <style>
  11. * { margin: 0; padding: 0; box-sizing: border-box; }
  12. body {
  13. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Arial, sans-serif;
  14. background-color: #2c2c2c; color: #ffffff; height: 100vh; overflow: hidden;
  15. }
  16. .container { display: flex; height: 100vh; }
  17. .left-panel {
  18. width: 600px; background-color: #2c2c2c; display: flex; flex-direction: column;
  19. border-right: 1px solid #404040;
  20. }
  21. .header {
  22. display: flex; justify-content: space-between; align-items: center; padding: 12px 16px;
  23. background-color: #2c2c2c; border-bottom: 1px solid #404040; min-height: 56px;
  24. }
  25. .player-info { display: flex; align-items: center; gap: 12px; }
  26. .avatar {
  27. width: 32px; height: 32px; border-radius: 50%;
  28. background: linear-gradient(135deg, #ff6b35, #f7931e); display: flex;
  29. align-items: center; justify-content: center; flex-shrink: 0;
  30. }
  31. .avatar svg { width: 18px; height: 18px; fill: white; }
  32. .player-name { font-size: 16px; font-weight: 500; }
  33. .rating { color: #888; font-size: 14px; margin-left: 4px; }
  34. .header-actions { position: relative; display: flex; align-items: center; gap: 12px; }
  35. .settings-icon, .close-btn {
  36. width: 32px; height: 32px; color: #888; cursor: pointer; display: flex;
  37. align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0;
  38. transition: color 0.2s, background-color 0.2s;
  39. }
  40. .settings-icon:hover, .close-btn:hover { color: #fff; background-color: #404040; }
  41. .settings-icon.active-ai { color: #4a90e2; }
  42. .settings-icon.active-ai:hover { color: #6aaeff; }
  43. .settings-icon svg, .close-btn svg { width: 18px; height: 18px; }
  44. .chess-board-container {
  45. flex: 1; display: flex; align-items: center; justify-content: center;
  46. background-color: #353535; margin: 16px; border-radius: 8px; border: 1px solid #404040;
  47. }
  48. #game-board { width: 480px; height: 480px; }
  49. .bottom-section {
  50. padding: 16px; border-top: 1px solid #404040; display: flex;
  51. align-items: center; gap: 12px; min-height: 56px;
  52. }
  53. .guest-avatar {
  54. width: 24px; height: 24px; background-color: #666; border-radius: 50%;
  55. display: flex; align-items: center; justify-content: center; color: #ccc; flex-shrink: 0;
  56. }
  57. .guest-avatar svg { width: 14px; height: 14px; fill: currentColor; }
  58. .guest-label { color: #ccc; font-size: 14px; }
  59. .action-icons { margin-left: auto; display: flex; gap: 8px; }
  60. .action-icon {
  61. width: 28px; height: 28px; color: #888; cursor: pointer; display: flex;
  62. align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0;
  63. }
  64. .action-icon:hover { color: #fff; background-color: #404040; }
  65. .action-icon svg { width: 16px; height: 16px; fill: currentColor; }
  66. .right-panel { flex: 1; background-color: #1e1e1e; display: flex; flex-direction: column; }
  67. .right-header {
  68. padding: 12px 16px; border-bottom: 1px solid #404040; display: flex;
  69. align-items: center; justify-content: space-between; min-height: 56px;
  70. }
  71. .play-bots { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500; }
  72. .bot-icon {
  73. width: 24px; height: 24px; background: linear-gradient(135deg, #4a90e2, #357abd);
  74. border-radius: 4px; display: flex; align-items: center; justify-content: center;
  75. color: white; flex-shrink: 0;
  76. }
  77. .bot-icon svg { width: 14px; height: 14px; fill: currentColor; }
  78. .moves-section { flex: 1; padding: 16px; overflow-y: auto; }
  79. .moves-header { color: #888; font-size: 14px; margin-bottom: 16px; min-height: 20px; }
  80. .moves-list { display: flex; flex-direction: column; gap: 8px; }
  81. .move-row { display: flex; align-items: center; gap: 16px; font-size: 14px; }
  82. .move-number { color: #888; width: 20px; flex-shrink: 0; text-align: right; }
  83. .move { min-width: 60px; color: #fff; padding: 2px 4px; }
  84. .move.highlighted-move { background-color: #404040; border-radius: 3px; }
  85.  
  86. .ai-reasoning-section {
  87. padding: 12px 16px; border-top: 1px solid #404040; background-color: #252525;
  88. }
  89. .ai-reasoning-header {
  90. font-size: 12px; font-weight: 600; color: #aaa; letter-spacing: 0.5px;
  91. text-transform: uppercase; margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
  92. }
  93. #ai-reasoning-text { font-size: 14px; color: #ddd; min-height: 40px; font-style: italic; }
  94.  
  95. .controls {
  96. padding: 16px; border-top: 1px solid #404040; display: flex;
  97. justify-content: space-between; align-items: center; gap: 12px;
  98. }
  99. .nav-controls { display: flex; gap: 8px; }
  100. .control-btn {
  101. width: 36px; height: 36px; background-color: #404040; border: none; border-radius: 4px;
  102. color: #ccc; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  103. }
  104. .control-btn:disabled { color: #666; cursor: not-allowed; }
  105. .control-btn:not(:disabled):hover { background-color: #505050; color: #fff; }
  106. .control-btn svg { width: 18px; height: 18px; fill: currentColor; }
  107. .resign-btn {
  108. background-color: #d32f2f; color: white; border: none; padding: 8px 16px; border-radius: 4px;
  109. cursor: pointer; font-size: 14px; display: flex; align-items: center; gap: 6px; flex-shrink: 0;
  110. }
  111. .resign-btn:hover { background-color: #b71c1c; }
  112. .resign-btn:disabled { background-color: #5a2e2e; color: #aaa; cursor: not-allowed; }
  113. .resign-btn svg { width: 16px; height: 16px; fill: currentColor; }
  114.  
  115. .modal-overlay {
  116. position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  117. background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); display: none;
  118. align-items: center; justify-content: center; z-index: 1000;
  119. }
  120. .modal {
  121. width: 480px; background: #2c2c2c; border-radius: 12px; border: 1px solid #404040;
  122. box-shadow: 0 8px 32px rgba(0,0,0,0.5); color: #fff; padding-bottom: 24px; position: relative;
  123. }
  124. .modal-header {
  125. padding: 16px 24px; font-size: 20px; font-weight: 600; border-bottom: 1px solid #404040;
  126. display: flex; justify-content: space-between; align-items: center;
  127. }
  128. .modal-close-btn {
  129. background: none; border: none; cursor: pointer; padding: 0; margin: 0; width: 28px;
  130. height: 28px; display: flex; align-items: center; justify-content: center;
  131. }
  132. .modal-content { padding: 0 24px; }
  133. .tabs { display: flex; border-bottom: 1.5px solid #404040; margin-bottom: 0; margin-top: 8px; }
  134. .tab {
  135. flex: 1; text-align: center; padding: 12px 0 8px 0; font-size: 16px; font-weight: 500;
  136. color: #fff; cursor: pointer; border: none; background: none; outline: none; border-bottom: 2.5px solid #fff;
  137. }
  138. .section-label {
  139. margin-top: 20px; margin-bottom: 8px; font-size: 14px; font-weight: 600;
  140. color: #aaa; letter-spacing: 0.5px;
  141. }
  142. .input-row { display: flex; align-items: center; position: relative; }
  143. .input-box {
  144. background: #404040; border: 1px solid #555; border-radius: 6px; color: #fff;
  145. font-size: 14px; padding: 10px 44px 10px 12px; width: 100%;
  146. font-family: 'Inter', 'Segoe UI', sans-serif; resize: none;
  147. }
  148. .pgn-area { min-height: 140px; max-height: 160px; }
  149. .copy-btn {
  150. position: absolute; right: 4px; top: 6px; background: none; border: none;
  151. cursor: pointer; padding: 4px; display: flex; align-items: center; justify-content: center;
  152. color: #aaa; border-radius: 4px;
  153. }
  154. .copy-btn:hover { background-color: #555; color: #fff; }
  155. .pgn-area + .copy-btn { top: 8px; right: 8px; }
  156. .modal-action-btn {
  157. width: 100%; color: #fff; font-size: 18px; font-weight: 600; border: none;
  158. border-radius: 8px; padding: 12px 0; margin-top: 18px; cursor: pointer;
  159. display: flex; align-items: center; justify-content: center; transition: background 0.2s;
  160. }
  161. .modal-action-btn.download{ background: #4a90e2; }
  162. .modal-action-btn.download:hover { background: #5a9ee6; }
  163. .modal-action-btn.save-ai { background: #3f9142; }
  164. .modal-action-btn.save-ai:hover { background: #4caf50; }
  165. .modal-action-btn svg { margin-right: 10px; }
  166.  
  167. #settings-popover {
  168. display: none; position: absolute; top: 40px; right: 0; width: 220px; background: #2c2c2c;
  169. border: 1px solid #404040; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  170. z-index: 1100; padding: 8px;
  171. }
  172. .settings-section-header {
  173. font-size: 12px; color: #888; text-transform: uppercase; padding: 8px; font-weight: 600;
  174. }
  175. .theme-btn {
  176. width: 100%; background: none; border: none; color: #ddd; padding: 8px; text-align: left;
  177. display: flex; align-items: center; gap: 12px; border-radius: 4px; cursor: pointer;
  178. }
  179. .theme-btn:hover { background-color: #404040; }
  180. .theme-btn.active { color: #fff; background-color: #4a90e2; }
  181. .theme-swatch {
  182. width: 40px; height: 20px; border-radius: 4px; display: flex;
  183. overflow: hidden; border: 1px solid #555;
  184. }
  185. .theme-swatch-light { width: 50%; } .theme-swatch-dark { width: 50%; }
  186.  
  187. .notification {
  188. position: fixed; top: -100px; left: 50%; transform: translateX(-50%);
  189. background-color: #ff6b35; color: white; padding: 12px 24px; border-radius: 8px;
  190. box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 2000; font-size: 15px; font-weight: 500;
  191. transition: top 0.5s ease-in-out; display: flex; align-items: center; gap: 10px;
  192. }
  193. .notification.show { top: 20px; }
  194. </style>
  195. </head>
  196. <body>
  197. <div id="ai-notification" class="notification">
  198. <svg fill="currentColor" width="20" height="20" viewBox="0 0 24 24"><path d="M13,14H11V10H13M13,18H11V16H13M1,21H23L12,2L1,21Z"></path></svg>
  199. <span id="ai-notification-text"></span>
  200. </div>
  201.  
  202. <div class="container">
  203. <div class="left-panel">
  204. <div class="header">
  205. <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>
  206. <div class="header-actions">
  207. <div id="ai-btn" class="settings-icon" title="AI Personality">
  208. <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>
  209. </div>
  210. <div id="settings-btn" class="settings-icon" title="Settings">
  211. <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>
  212. </div>
  213. <div id="settings-popover">
  214. <div class="settings-section-header">Board Theme</div>
  215. <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>
  216. <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>
  217. <div class="settings-section-header">AI Model</div>
  218. <button id="model-flash-btn" class="theme-btn model-btn">Flash (Fast)</button>
  219. <button id="model-pro-btn" class="theme-btn model-btn">Pro (Powerful)</button>
  220. </div>
  221. </div>
  222. </div>
  223. <div class="chess-board-container"><div id="game-board"></div></div>
  224. <div class="bottom-section">
  225. <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>
  226. <div class="guest-label">Guest</div>
  227. <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>
  228. </div>
  229. </div>
  230. <div class="right-panel">
  231. <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>
  232. <div class="moves-section"><div class="moves-header" id="status-display">Loading Gemifish Engine...</div><div class="moves-list" id="moves-list"></div></div>
  233. <div class="ai-reasoning-section">
  234. <div class="ai-reasoning-header">
  235. <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>
  236. AI Reasoning
  237. </div>
  238. <p id="ai-reasoning-text">Set a personality to see the AI's thoughts here.</p>
  239. </div>
  240. <div class="controls">
  241. <div class="nav-controls">
  242. <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>
  243. <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>
  244. <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>
  245. <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>
  246. </div>
  247. <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>
  248. </div>
  249. </div>
  250. </div>
  251.  
  252. <div class="modal-overlay" id="pgn-modal-overlay">
  253. <div class="modal">
  254. <div class="modal-header">
  255. Share Game
  256. <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>
  257. </div>
  258. <div class="modal-content">
  259. <div class="tabs"><button class="tab">PGN</button></div>
  260. <div>
  261. <div class="section-label">FEN</div>
  262. <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>
  263. <div class="section-label">PGN</div>
  264. <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>
  265. <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>
  266. </div>
  267. </div>
  268. </div>
  269. </div>
  270.  
  271. <div class="modal-overlay" id="ai-modal-overlay">
  272. <div class="modal">
  273. <div class="modal-header">
  274. AI Personality
  275. <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>
  276. </div>
  277. <div class="modal-content">
  278. <div class="section-label" style="margin-top: 16px;">System Prompt</div>
  279. <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>
  280. <div class="input-row">
  281. <textarea class="input-box pgn-area" id="ai-personality-input" placeholder="e.g., An aggressive pirate who loves to attack and sacrifice pieces."></textarea>
  282. </div>
  283. <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>
  284. </div>
  285. </div>
  286. </div>
  287.  
  288.  
  289. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  290. <script src="https://unpkg.com/@chrisoakman/[email protected]/dist/chessboard-1.0.0.min.js"></script>
  291. <script src="https://cdnjs.cloudflare.com/ajax/libs/chess.js/0.10.2/chess.min.js"></script>
  292.  
  293. <script>
  294. var board = null, game = new Chess(), $status = $('#status-display');
  295. var playerColor = 'w', engine = null, isGameOver = false, viewingMoveIndex = -1;
  296. var boardThemeStyle = document.createElement('style');
  297. document.head.appendChild(boardThemeStyle);
  298.  
  299. var aiPersonality = '';
  300. var geminiApiKey = 'AIzaSyBGbxrlYgRE8ONSfdJTT-KzxGlBTwAfk4Y'; // <-- IMPORTANT: REPLACE WITH YOUR GEMINI API KEY
  301. var currentModel = 'gemini-2.5-flash-lite';
  302. var isEngineSearching = false;
  303. var topMovesWithEvals = [];
  304. const useLLM = () => aiPersonality && aiPersonality.trim() !== '';
  305.  
  306. const THEMES = {
  307. brown: { light: '#f0d9b5', dark: '#b58863' },
  308. blue: { light: '#D8DEE9', dark: '#819AAE' }
  309. };
  310. const STOCKFISH_WORKER_URL = 'https://cdnjs.cloudflare.com/ajax/libs/stockfish.js/10.0.2/stockfish.js';
  311. 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'};
  312. function pieceTheme(piece) { return pieceImagePaths[piece]; }
  313.  
  314. function setBoardTheme(themeName) {
  315. const theme = THEMES[themeName];
  316. boardThemeStyle.innerHTML = `
  317. .square-55d63.white-1e1d7 { background-color: ${theme.light}; color: ${theme.dark}; }
  318. .square-55d63.black-3c85d { background-color: ${theme.dark}; color: ${theme.light}; }
  319. `;
  320. $('.theme-btn:not(.model-btn)').removeClass('active');
  321. $(`#theme-${themeName}-btn`).addClass('active');
  322. }
  323.  
  324. function setAIModel(modelName) {
  325. currentModel = modelName;
  326. $('.model-btn').removeClass('active');
  327. if (modelName === 'gemini-2.5-flash-lite') {
  328. $('#model-flash-btn').addClass('active');
  329. } else if (modelName === 'gemini-2.5-pro') {
  330. $('#model-pro-btn').addClass('active');
  331. }
  332. showNotification(`AI Model set to ${modelName.includes('pro') ? 'Pro (Powerful)' : 'Flash (Fast)'}.`, 3000);
  333. }
  334.  
  335. function onDragStart(source, piece) {
  336. const canMove = !isGameOver && !isEngineSearching && !game.game_over() && game.turn() === playerColor && viewingMoveIndex === game.history().length - 1;
  337.  
  338. if (!canMove) {
  339. console.log("Move disallowed. Current state:", {
  340. isGameOver,
  341. isEngineSearching,
  342. isGameTerminated: game.game_over(),
  343. isPlayerTurn: game.turn() === playerColor,
  344. isViewingLatestMove: viewingMoveIndex === game.history().length - 1
  345. });
  346. }
  347. return canMove;
  348. }
  349.  
  350. function createEngineWorker() {
  351. return fetch(STOCKFISH_WORKER_URL).then(res => res.text()).then(scriptText => {
  352. const blob = new Blob([scriptText], { type: 'application/javascript' });
  353. return new Worker(URL.createObjectURL(blob));
  354. });
  355. }
  356.  
  357. function initializeEngine() {
  358. createEngineWorker().then(worker => {
  359. engine = worker;
  360. engine.onmessage = handleEngineMessage;
  361. engine.postMessage('uci');
  362. engine.postMessage('setoption name MultiPV value 5');
  363. updateStatus();
  364. }).catch(err => {
  365. console.error("Failed to load engine:", err);
  366. updateStatus("Error: Could not load engine.");
  367. });
  368. }
  369.  
  370. function showNotification(message, duration = 6000) {
  371. const notification = $('#ai-notification');
  372. $('#ai-notification-text').text(message);
  373. notification.addClass('show');
  374. setTimeout(() => { notification.removeClass('show'); }, duration);
  375. }
  376.  
  377. function handleEngineMessage(event) {
  378. const message = event.data;
  379. if (useLLM()) {
  380. if (message.startsWith('info') && message.includes('score cp')) {
  381. const scoreMatch = message.match(/score cp (-?\d+)/);
  382. const moveMatch = message.match(/pv\s+([a-h][1-8][a-h][1-8][qrbn]?)/);
  383. if (scoreMatch && moveMatch) {
  384. const score = parseInt(scoreMatch[1], 10);
  385. const move = moveMatch[1];
  386. if (!topMovesWithEvals.some(item => item.move === move)) {
  387. topMovesWithEvals.push({ move, score });
  388. }
  389. }
  390. }
  391. if (message.startsWith('bestmove')) {
  392. const bestMoveFallback = message.split(' ')[1];
  393. decideMoveWithLLM(bestMoveFallback);
  394. }
  395. } else {
  396. if (message.startsWith('bestmove')) {
  397. isEngineSearching = false;
  398. makeMoveOnBoard(message.split(' ')[1]);
  399. }
  400. }
  401. }
  402.  
  403. // <-- START OF FINAL FIX
  404. async function decideMoveWithLLM(fallbackMove) {
  405. try {
  406. const maxRetries = 5;
  407. let retryCount = 0;
  408.  
  409. while (retryCount < maxRetries) {
  410. if (topMovesWithEvals.length === 0) {
  411. console.warn("No top moves were analyzed. Using fallback move:", fallbackMove);
  412. makeMoveOnBoard(fallbackMove);
  413. return;
  414. }
  415.  
  416. const fen = game.fen();
  417. const turn = game.turn() === 'w' ? 'White' : 'Black';
  418. const movesData = JSON.stringify(topMovesWithEvals);
  419.  
  420. // Separated the system instruction from the user prompt for better compatibility with Pro models.
  421. const systemInstruction = `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.
  422.  
  423. Your designated personality is: "${aiPersonality}"
  424.  
  425. You MUST respond in a VALID JSON FORMAT, with no other text. The JSON object must have three keys:
  426. - "bestMove": The chosen move from the list (e.g., "e2e4"). Required.
  427. - "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.
  428. - "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.`;
  429.  
  430. const userPrompt = `Current State:
  431. - Board (FEN): ${fen}
  432. - It is ${turn}'s turn to move.
  433.  
  434. Your Task:
  435. 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.
  436.  
  437. Input Moves Data:
  438. ${movesData}`;
  439.  
  440. updateStatus('Consulting AI personality...');
  441. $('#ai-reasoning-text').text('Thinking...');
  442.  
  443. // Restructured the request body to use the system_instruction field.
  444. const requestBody = {
  445. "system_instruction": { "parts": [{ "text": systemInstruction }] },
  446. "contents": [{ "parts": [{ "text": userPrompt }] }]
  447. };
  448.  
  449. const response = await fetch(`https://generativelanguage.googleapis.com/v1beta/models/${currentModel}:generateContent?key=${geminiApiKey}`, {
  450. method: 'POST',
  451. headers: { 'Content-Type': 'application/json' },
  452. body: JSON.stringify(requestBody)
  453. });
  454.  
  455. if (response.status === 429) {
  456. const delay = Math.pow(2, retryCount) * 1000 + Math.random() * 1000;
  457. console.warn(`Rate limit hit. Retrying in ${delay.toFixed(2)}ms...`);
  458. await new Promise(resolve => setTimeout(resolve, delay));
  459. retryCount++;
  460. continue;
  461. }
  462.  
  463. if (!response.ok) {
  464. throw new Error(`API request failed with status ${response.status}`);
  465. }
  466.  
  467. const data = await response.json();
  468.  
  469. if (!data.candidates || !data.candidates[0]?.content?.parts[0]?.text) {
  470. const reason = data.candidates?.[0]?.finishReason || 'Unknown reason';
  471. console.error("Invalid response structure from Gemini API. Content may be blocked or missing. Finish Reason:", reason, data);
  472. throw new Error(`Invalid response structure from Gemini API. Finish Reason: ${reason}`);
  473. }
  474.  
  475. let rawText = data.candidates[0].content.parts[0].text;
  476. const jsonMatch = rawText.match(/```json\s*(\{[\s\S]*\})\s*```|(\{[\s\S]*\})/);
  477. if (!jsonMatch) {
  478. throw new Error("LLM did not return a parsable JSON object.");
  479. }
  480.  
  481. const jsonString = jsonMatch[1] || jsonMatch[2];
  482. const result = JSON.parse(jsonString);
  483.  
  484. if (!result.bestMove || typeof result.reasoning === 'undefined') {
  485. throw new Error("Parsed JSON from LLM is missing required keys ('bestMove', 'reasoning').");
  486. }
  487.  
  488. if (result.deviationWarning) {
  489. showNotification(result.deviationWarning);
  490. }
  491. $('#ai-reasoning-text').text(result.reasoning || "I have made my move.");
  492.  
  493. if (topMovesWithEvals.some(item => item.move === result.bestMove)) {
  494. makeMoveOnBoard(result.bestMove);
  495. } else {
  496. console.warn(`LLM chose a move (${result.bestMove}) not in the valid list. Defaulting to best Stockfish move.`);
  497. makeMoveOnBoard(fallbackMove);
  498. }
  499. return;
  500. }
  501.  
  502. throw new Error("API request failed after multiple retries.");
  503.  
  504. } catch (error) {
  505. console.error("An error occurred while getting the AI's move:", error);
  506. $('#ai-reasoning-text').text("An error occurred. I will play the best move as a fallback.");
  507. updateStatus('Error with AI. Using best move.');
  508. makeMoveOnBoard(fallbackMove);
  509. } finally {
  510. isEngineSearching = false;
  511. }
  512. }
  513. // <-- END OF FINAL FIX
  514.  
  515. function makeEngineMove() {
  516. if (isGameOver || game.game_over() || !engine) return;
  517. isEngineSearching = true;
  518. updateStatus('Gemifish is thinking...');
  519.  
  520. topMovesWithEvals = [];
  521. engine.postMessage('position fen ' + game.fen());
  522. engine.postMessage('go depth 15');
  523. }
  524.  
  525. function makeMoveOnBoard(move) {
  526. game.move(move, { sloppy: true });
  527. board.position(game.fen());
  528. viewingMoveIndex = game.history().length - 1;
  529. updateStatus();
  530. updateMoveHistory();
  531. if (game.game_over()) updateStatus();
  532. }
  533.  
  534. function onDrop(source, target) {
  535. var move = game.move({ from: source, to: target, promotion: 'q' });
  536. if (move === null) return 'snapback';
  537.  
  538. viewingMoveIndex = game.history().length - 1;
  539. updateMoveHistory();
  540.  
  541. if (game.game_over()) {
  542. updateStatus();
  543. } else {
  544. window.setTimeout(makeEngineMove, 250);
  545. }
  546. }
  547.  
  548. function onSnapEnd() { board.position(game.fen()); }
  549.  
  550. function updateMoveHistory() {
  551. const history = game.history({ verbose: false });
  552. const moveList = $('#moves-list');
  553. moveList.empty();
  554. let moveRow;
  555. for (let i = 0; i < history.length; i++) {
  556. if (i % 2 === 0) {
  557. moveRow = $('<div class="move-row"></div>').append(`<span class="move-number">${(i / 2) + 1}.</span>`);
  558. moveList.append(moveRow);
  559. }
  560. const san = history[i];
  561. const $moveSpan = $('<span class="move"></span>').text(san);
  562. moveRow.append($moveSpan);
  563. }
  564. $('.moves-section').scrollTop($('.moves-section')[0].scrollHeight);
  565. updateHighlighting();
  566. }
  567.  
  568. function updateHighlighting() {
  569. $('.move').removeClass('highlighted-move');
  570. if (viewingMoveIndex > -1) $('.move').eq(viewingMoveIndex).addClass('highlighted-move');
  571. }
  572.  
  573. function navigateToMove(index) {
  574. const history = game.history();
  575. if (index < -1 || index >= history.length) return;
  576. viewingMoveIndex = index;
  577. const tempGame = new Chess();
  578. for (let i = 0; i <= viewingMoveIndex; i++) tempGame.move(history[i]);
  579. board.position(tempGame.fen());
  580. updateHighlighting();
  581. updateNavButtons();
  582. }
  583.  
  584. function updateStatus(customStatus) {
  585. var status = customStatus || '';
  586. if (!customStatus) {
  587. if (isGameOver) {
  588. status = "You Resigned. Gemifish Wins.";
  589. } else {
  590. var moveColor = game.turn() === 'b' ? 'Black' : 'White';
  591. if (game.in_checkmate()) status = 'Game over: ' + moveColor + ' is in checkmate.';
  592. else if (game.in_draw()) status = 'Game over: Drawn position';
  593. else {
  594. status = (game.turn() === playerColor ? 'Your' : "Gemifish's") + ' turn';
  595. if (game.in_check()) status += ' (in check)';
  596. }
  597. }
  598. }
  599. if (game.game_over() || isGameOver) {
  600. $('#resign-btn').prop('disabled', true);
  601. }
  602. $status.html(status);
  603. updateNavButtons();
  604. }
  605.  
  606. function updateNavButtons() {
  607. const historyLength = game.history().length;
  608. const onLatestMove = viewingMoveIndex === historyLength - 1;
  609. $('#btn-first').prop('disabled', viewingMoveIndex <= -1);
  610. $('#btn-back').prop('disabled', viewingMoveIndex <= -1);
  611. $('#btn-forward').prop('disabled', onLatestMove);
  612. $('#btn-last').prop('disabled', onLatestMove);
  613. }
  614.  
  615. function openShareModal() {
  616. $('#fenInput').val(game.fen());
  617. $('#pgnText').val(game.pgn());
  618. $('#pgn-modal-overlay').css('display', 'flex');
  619. }
  620. function closeShareModal() { $('#pgn-modal-overlay').css('display', 'none'); }
  621. function openAIPersonalityModal() {
  622. $('#ai-personality-input').val(aiPersonality);
  623. $('#ai-modal-overlay').css('display', 'flex');
  624. }
  625. function closeAIPersonalityModal() { $('#ai-modal-overlay').css('display', 'none'); }
  626. function saveAIPersonality() {
  627. aiPersonality = $('#ai-personality-input').val();
  628. if (useLLM()) {
  629. $('#ai-btn').addClass('active-ai');
  630. $('#ai-reasoning-text').text('Personality set. Make your move!');
  631. } else {
  632. $('#ai-btn').removeClass('active-ai');
  633. $('#ai-reasoning-text').text('Set a personality to see the AI\'s thoughts here.');
  634. }
  635. closeAIPersonalityModal();
  636. }
  637.  
  638. function copyToClipboard(elementId, btnElem) {
  639. navigator.clipboard.writeText($(`#${elementId}`).val()).then(() => {
  640. const originalContent = $(btnElem).html();
  641. $(btnElem).html('Copied!');
  642. setTimeout(() => { $(btnElem).html(originalContent); }, 2000);
  643. }).catch(err => {
  644. console.error('Failed to copy text: ', err);
  645. const originalContent = $(btnElem).html();
  646. $(btnElem).html('Error!');
  647. setTimeout(() => { $(btnElem).html(originalContent); }, 2000);
  648. });
  649. }
  650.  
  651. function downloadPGN() {
  652. const text = $('#pgnText').val();
  653. const blob = new Blob([text], { type: 'application/vnd.chess-pgn' });
  654. const url = URL.createObjectURL(blob);
  655. const a = document.createElement('a'); a.href = url;
  656. a.download = `Gemifish-vs-Guest-${new Date().toISOString().slice(0,10)}.pgn`;
  657. document.body.appendChild(a); a.click();
  658. document.body.removeChild(a); URL.revokeObjectURL(url);
  659. }
  660.  
  661. var config = { draggable: true, position: 'start', onDragStart, onDrop, onSnapEnd, pieceTheme };
  662. board = Chessboard('game-board', config);
  663. $(window).on('resize', () => board.resize());
  664.  
  665. // Event Handlers
  666. $('#resign-btn').on('click', () => { if (!isGameOver && !game.game_over()) { isGameOver = true; updateStatus(); }});
  667. $('#btn-back').on('click', () => navigateToMove(viewingMoveIndex - 1));
  668. $('#btn-forward').on('click', () => navigateToMove(viewingMoveIndex + 1));
  669. $('#btn-first').on('click', () => navigateToMove(-1));
  670. $('#btn-last').on('click', () => navigateToMove(game.history().length - 1));
  671.  
  672. $('#share-btn').on('click', openShareModal);
  673. $('#modal-close-btn, #pgn-modal-overlay').on('click', function(e) { if (e.target === this || $(this).is('#modal-close-btn, #modal-close-btn *')) closeShareModal(); });
  674.  
  675. $('#ai-btn').on('click', openAIPersonalityModal);
  676. $('#ai-modal-close-btn, #ai-modal-overlay').on('click', function(e) { if (e.target === this || $(this).is('#ai-modal-close-btn, #ai-modal-close-btn *')) closeAIPersonalityModal(); });
  677. $('#save-ai-personality-btn').on('click', saveAIPersonality);
  678.  
  679. $('.modal').on('click', e => e.stopPropagation());
  680. $('#copy-fen-btn').on('click', function() { copyToClipboard('fenInput', this); });
  681. $('#copy-pgn-btn').on('click', function() { copyToClipboard('pgnText', this); });
  682. $('#download-pgn-btn').on('click', downloadPGN);
  683.  
  684. $('#settings-btn').on('click', (e) => { e.stopPropagation(); $('#settings-popover').toggle(); });
  685. $(document).on('click', () => $('#settings-popover').hide());
  686. $('#settings-popover').on('click', e => e.stopPropagation());
  687.  
  688. $('#theme-brown-btn').on('click', () => setBoardTheme('brown'));
  689. $('#theme-blue-btn').on('click', () => setBoardTheme('blue'));
  690. $('#model-flash-btn').on('click', () => setAIModel('gemini-2.5-flash-lite'));
  691. $('#model-pro-btn').on('click', () => setAIModel('gemini-2.5-pro'));
  692.  
  693. setBoardTheme('blue');
  694. setAIModel('gemini-2.5-flash-lite');
  695. initializeEngine();
  696. </script>
  697. </body>
  698. </html>
Advertisement
Add Comment
Please, Sign In to add comment