@roudanio/maze 0.2.4 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/maze.css +1 -1
- package/dist/maze.iife.js +2 -2
- package/dist/maze.js +1137 -955
- package/dist/maze.umd.js +2 -2
- package/package.json +6 -6
package/dist/maze.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.maze-game-container{position:relative;box-sizing:border-box;display:flex;flex-direction:column;width:100%}.maze-game-container button{padding:8px 16px;background-color:#4caf50;color:#fff;border:none;border-radius:4px;cursor:pointer;font-size:16px;transition:background-color .2s}.maze-game-container button:hover{background-color:#45a049}.maze-game-container button:disabled{background-color:#ccc;cursor:not-allowed}.maze-game-container .link-button{background-color:transparent;color:#4caf50;cursor:pointer;font-size:16px;transition:color .2s}.maze-game-container .link-button:hover{color:#45a049;background-color:transparent}.maze-game-container .maze-canvas-container,.maze-game-container .single-maze-canvas-container{position:relative;-webkit-user-select:none;user-select:none;width:100%}.maze-game-container .maze-game-canvas{width:100%;height:100%;aspect-ratio:1 / 1;background-color:#fff;transition:opacity .1s ease}.maze-game-container .toast-container{position:absolute;pointer-events:none;width:100%;display:flex;justify-content:center;align-items:center;z-index:1000}.maze-game-container .toast-container.position-top{top:10px;left:0;right:0}.maze-game-container .toast-container.position-center{inset:0}.maze-game-container .toast-container.position-bottom{bottom:-36px;left:0;right:0}.maze-game-container .toast-message{font-size:16px;font-weight:700;text-align:center;padding:8px 12px;border-radius:8px;width:fit-content;max-width:90%;transition:opacity .3s ease,transform .3s ease;opacity:0;transform:translate(0,-10px,0);pointer-events:none;will-change:opacity,transform}.maze-game-container .toast-message.toast-visible{opacity:1;transform:translateZ(0)}.maze-game-container .game-panel-container{margin-bottom:15px;font-size:16px;background-color:#fff;border-radius:8px;box-shadow:0 4px 8px #0000001a;padding:12px 15px 15px;transition:all .3s ease;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.maze-game-container .game-controls{display:flex;flex-direction:column;align-items:start;gap:12px}.maze-game-container .selectors-container{display:flex;justify-content:center;align-items:center;gap:10px;border-radius:10px}.maze-game-container .tier-dropdown,.maze-game-container .level-dropdown{padding:8px 12px;border-radius:8px;border:2px solid #3498db;background-color:#f8f9fa;color:#333;font-size:16px;font-weight:700;cursor:pointer;box-shadow:0 2px 4px #0000001a;appearance:none;background-image:url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);background-repeat:no-repeat;background-position:right 12px top 50%;background-size:10px auto;min-width:120px;transition:all .3s ease;outline:none}.maze-game-container .level-dropdown{border-color:#9b59b6;width:150px}.maze-game-container .game-settings{display:flex;align-items:center;justify-content:center}.maze-game-container .game-settings .game-settings-icon{font-size:2rem;cursor:pointer}.maze-game-container .settings-stats{padding-top:20px;padding-bottom:20px;display:flex;flex-direction:column;align-items:start;gap:6px;text-align:left}.maze-game-container .settings-item-box{padding-top:20px;padding-bottom:20px;display:flex;flex-direction:column;align-items:start;gap:20px;text-align:left}.maze-game-container .settings-item-tip{color:#555}.maze-game-container .settings-reset-button,.maze-game-container .settings-clue-button{background-color:#aaa;color:#fff;cursor:pointer;transition:all .2s;border:none;outline:none;box-shadow:0 1px 3px #0003}:is(.maze-game-container .settings-reset-button,.maze-game-container .settings-clue-button):hover{background-color:#d32f2f;box-shadow:0 2px 5px #0000004d}:is(.maze-game-container .settings-reset-button,.maze-game-container .settings-clue-button):active{transform:scale(.95)}:is(.maze-game-container .settings-reset-button,.maze-game-container .settings-clue-button):disabled+.settings-item-tip{color:#999}.maze-game-container .settings-clue-button.clue-on{background-color:#ff9800}.maze-game-container .settings-clue-button:hover{background-color:#ff9800;box-shadow:0 2px 5px #0000004d}.maze-game-container .settings-clue-button:active{transform:scale(.95)}.maze-game-container .settings-clue-button:disabled{background-color:#ccc;cursor:not-allowed;box-shadow:none;transform:none}.maze-game-container .level-complete-dialog .maze-dialog-buttons{justify-content:space-between}.maze-game-container .level-complete-dialog .maze-dialog-confirm{background-color:#ff9800}.maze-game-container .level-complete-dialog .maze-dialog-confirm:hover{background-color:#e67e00}.maze-game-container .level-complete-dialog .maze-continue-btn{background-color:#f1f1f1;color:#333}.maze-game-container .level-complete-dialog .maze-continue-btn:hover{background-color:#e1e1e1}.maze-game-container .maze-summary-message{width:75%;margin:30px auto;text-align:left}.maze-game-container .maze-go-next{margin:30px auto}.maze-game-container .maze-go-next-btn{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;font-size:1.5rem;gap:6px}.maze-game-container .maze-go-next-btn .spacebar-tip{font-size:.85rem}.maze-game-container .all-levels-completed{margin-top:20px;margin-bottom:20px}.maze-game-container .not-all-stars-collected{padding:10px;background-color:#fff8e1;color:#ff9800;border-radius:5px;text-align:center;font-size:14px}.maze-game-container .maze-dialog-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#00000080;display:flex;justify-content:center;align-items:center;z-index:1000;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s}.maze-game-container .maze-dialog-overlay.maze-dialog-visible{opacity:1;visibility:visible}.maze-game-container .maze-dialog-overlay.maze-dialog-visible .maze-dialog{transform:translateY(0)}.maze-game-container .maze-dialog{background-color:#fff;border-radius:8px;box-shadow:0 4px 16px #0003;width:300px;max-width:90%;padding:20px;text-align:center;transform:translateY(-20px);transition:transform .3s}.maze-game-container .maze-dialog-title{font-size:18px;font-weight:700;margin-bottom:10px;color:#333}.maze-game-container .maze-dialog-message{font-size:14px;color:#666;line-height:1.5}.maze-game-container .maze-dialog-buttons{margin-top:20px;display:flex;justify-content:center;gap:10px}.maze-game-container .maze-dialog-cancel{background-color:#f1f1f1;color:#333;font-size:14px}.maze-game-container .maze-dialog-cancel:hover{background-color:#e1e1e1}.maze-game-container .maze-dialog-confirm{background-color:#f44336;color:#fff;font-size:14px}.maze-game-container .maze-dialog-confirm:hover{background-color:#d32f2f}.maze-game-container .single-maze-canvas-container{position:relative;-webkit-user-select:none;user-select:none;width:100%}.maze-game-container .single-maze-loading,.maze-game-container .single-maze-error{display:flex;justify-content:center;align-items:center;height:200px;font-family:Arial,sans-serif;color:#666}.maze-game-container .single-maze-error{color:#d32f2f}.maze-game-container .single-maze-timer{text-align:center}.maze-game-container .maze-timer-text{font-size:18px;font-weight:700;color:#333;font-family:monospace}.maze-game-container .maze-timer-warning{color:#f44;animation:maze-timer-pulse 1s infinite}@keyframes maze-timer-pulse{0%,to{opacity:1}50%{opacity:.6}}
|
|
1
|
+
.maze-game-container{position:relative;box-sizing:border-box;display:flex;flex-direction:column;width:100%}.maze-game-container button{padding:8px 16px;background-color:#4caf50;color:#fff;border:none;border-radius:4px;cursor:pointer;font-size:16px;transition:background-color .2s}.maze-game-container button:hover{background-color:#45a049}.maze-game-container button:disabled{background-color:#ccc;cursor:not-allowed}.maze-game-container .link-button{background-color:transparent;color:#4caf50;cursor:pointer;font-size:16px;transition:color .2s}.maze-game-container .link-button:hover{color:#45a049;background-color:transparent}.maze-game-container .maze-canvas-container,.maze-game-container .single-maze-canvas-container{position:relative;-webkit-user-select:none;user-select:none;width:100%}.maze-game-container .maze-game-canvas{width:100%;height:100%;aspect-ratio:1 / 1;background-color:#fff;transition:opacity .1s ease}.maze-game-container .toast-container{position:absolute;pointer-events:none;width:100%;display:flex;justify-content:center;align-items:center;z-index:1000}.maze-game-container .toast-container.position-top{top:10px;left:0;right:0}.maze-game-container .toast-container.position-center{inset:0}.maze-game-container .toast-container.position-bottom{bottom:-36px;left:0;right:0}.maze-game-container .toast-message{font-size:16px;font-weight:700;text-align:center;padding:8px 12px;border-radius:8px;width:fit-content;max-width:90%;transition:opacity .3s ease,transform .3s ease;opacity:0;transform:translate(0,-10px,0);pointer-events:none;will-change:opacity,transform}.maze-game-container .toast-message.toast-visible{opacity:1;transform:translateZ(0)}.maze-game-container .game-panel-container{margin-bottom:15px;font-size:16px;background-color:#fff;border-radius:8px;box-shadow:0 4px 8px #0000001a;padding:12px 15px 15px;transition:all .3s ease;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.maze-game-container .game-controls{display:flex;flex-direction:column;align-items:start;gap:12px}.maze-game-container .selectors-container{display:flex;justify-content:center;align-items:center;gap:10px;border-radius:10px}.maze-game-container .tier-dropdown,.maze-game-container .level-dropdown{padding:8px 12px;border-radius:8px;border:2px solid #3498db;background-color:#f8f9fa;color:#333;font-size:16px;font-weight:700;cursor:pointer;box-shadow:0 2px 4px #0000001a;appearance:none;background-image:url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);background-repeat:no-repeat;background-position:right 12px top 50%;background-size:10px auto;min-width:120px;transition:all .3s ease;outline:none}.maze-game-container .level-dropdown{border-color:#9b59b6;width:150px}.maze-game-container .game-settings{display:flex;align-items:center;justify-content:center}.maze-game-container .game-settings .game-settings-icon{font-size:2rem;cursor:pointer}.maze-game-container .settings-stats{padding-top:20px;padding-bottom:20px;display:flex;flex-direction:column;align-items:start;gap:6px;text-align:left}.maze-game-container .settings-item-box{padding-top:20px;padding-bottom:20px;display:flex;flex-direction:column;align-items:start;gap:20px;text-align:left}.maze-game-container .settings-item-tip{color:#555}.maze-game-container .settings-reset-button,.maze-game-container .settings-clue-button,.maze-game-container .settings-fog-button{background-color:#aaa;color:#fff;cursor:pointer;transition:all .2s;border:none;outline:none;box-shadow:0 1px 3px #0003}:is(.maze-game-container .settings-reset-button,.maze-game-container .settings-clue-button,.maze-game-container .settings-fog-button):hover{background-color:#d32f2f;box-shadow:0 2px 5px #0000004d}:is(.maze-game-container .settings-reset-button,.maze-game-container .settings-clue-button,.maze-game-container .settings-fog-button):active{transform:scale(.95)}:is(.maze-game-container .settings-reset-button,.maze-game-container .settings-clue-button,.maze-game-container .settings-fog-button):disabled+.settings-item-tip{color:#999}.maze-game-container .settings-clue-button.clue-on{background-color:#ff9800}.maze-game-container .settings-clue-button:hover{background-color:#ff9800;box-shadow:0 2px 5px #0000004d}.maze-game-container .settings-clue-button:active{transform:scale(.95)}.maze-game-container .settings-clue-button:disabled{background-color:#ccc;cursor:not-allowed;box-shadow:none;transform:none}.maze-game-container .settings-fog-button{background-color:#1f2937}.maze-game-container .settings-fog-button.fog-on{background-color:#1e88e5}.maze-game-container .settings-fog-button.fog-off{background-color:#2c3e50}.maze-game-container .settings-fog-button:hover{background-color:#2563eb}.maze-game-container .level-complete-dialog .maze-dialog-buttons{justify-content:space-between}.maze-game-container .level-complete-dialog .maze-dialog-confirm{background-color:#ff9800}.maze-game-container .level-complete-dialog .maze-dialog-confirm:hover{background-color:#e67e00}.maze-game-container .level-complete-dialog .maze-continue-btn{background-color:#f1f1f1;color:#333}.maze-game-container .level-complete-dialog .maze-continue-btn:hover{background-color:#e1e1e1}.maze-game-container .maze-summary-message{width:75%;margin:30px auto;text-align:left}.maze-game-container .maze-go-next{margin:30px auto}.maze-game-container .maze-go-next-btn{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;font-size:1.5rem;gap:6px}.maze-game-container .maze-go-next-btn .spacebar-tip{font-size:.85rem}.maze-game-container .all-levels-completed{margin-top:20px;margin-bottom:20px}.maze-game-container .not-all-stars-collected{padding:10px;background-color:#fff8e1;color:#ff9800;border-radius:5px;text-align:center;font-size:14px}.maze-game-container .maze-dialog-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#00000080;display:flex;justify-content:center;align-items:center;z-index:1000;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s}.maze-game-container .maze-dialog-overlay.maze-dialog-visible{opacity:1;visibility:visible}.maze-game-container .maze-dialog-overlay.maze-dialog-visible .maze-dialog{transform:translateY(0)}.maze-game-container .maze-dialog{background-color:#fff;border-radius:8px;box-shadow:0 4px 16px #0003;width:300px;max-width:90%;padding:20px;text-align:center;transform:translateY(-20px);transition:transform .3s}.maze-game-container .maze-dialog-title{font-size:18px;font-weight:700;margin-bottom:10px;color:#333}.maze-game-container .maze-dialog-message{font-size:14px;color:#666;line-height:1.5}.maze-game-container .maze-dialog-buttons{margin-top:20px;display:flex;justify-content:center;gap:10px}.maze-game-container .maze-dialog-cancel{background-color:#f1f1f1;color:#333;font-size:14px}.maze-game-container .maze-dialog-cancel:hover{background-color:#e1e1e1}.maze-game-container .maze-dialog-confirm{background-color:#f44336;color:#fff;font-size:14px}.maze-game-container .maze-dialog-confirm:hover{background-color:#d32f2f}.maze-game-container .single-maze-canvas-container{position:relative;-webkit-user-select:none;user-select:none;width:100%}.maze-game-container .single-maze-loading,.maze-game-container .single-maze-error{display:flex;justify-content:center;align-items:center;height:200px;font-family:Arial,sans-serif;color:#666}.maze-game-container .single-maze-error{color:#d32f2f}.maze-game-container .single-maze-toolbar{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:12px}.maze-game-container .single-maze-timer{text-align:center}.maze-game-container .maze-timer-text{font-size:18px;font-weight:700;color:#333;font-family:monospace}.maze-game-container .maze-timer-warning{color:#f44;animation:maze-timer-pulse 1s infinite}@keyframes maze-timer-pulse{0%,to{opacity:1}50%{opacity:.6}}
|
package/dist/maze.iife.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var Maze=function(){"use strict";var se,M,xe,V,Re,Fe,De,Oe,ye,be,Te,$e,ee={},Ue=[],Tt=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,le=Array.isArray;function H(e,t){for(var n in t)e[n]=t[n];return e}function ke(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function kt(e,t,n){var o,i,s,l={};for(s in t)s=="key"?o=t[s]:s=="ref"?i=t[s]:l[s]=t[s];if(arguments.length>2&&(l.children=arguments.length>3?se.call(arguments,2):n),typeof e=="function"&&e.defaultProps!=null)for(s in e.defaultProps)l[s]==null&&(l[s]=e.defaultProps[s]);return ae(e,l,o,i,null)}function ae(e,t,n,o,i){var s={type:e,props:t,key:n,ref:o,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:i??++xe,__i:-1,__u:0};return i==null&&M.vnode!=null&&M.vnode(s),s}function ce(e){return e.children}function ue(e,t){this.props=e,this.context=t}function Y(e,t){if(t==null)return e.__?Y(e.__,e.__i+1):null;for(var n;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null)return n.__e;return typeof e.type=="function"?Y(e):null}function Ge(e){var t,n;if((e=e.__)!=null&&e.__c!=null){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null){e.__e=e.__c.base=n.__e;break}return Ge(e)}}function Se(e){(!e.__d&&(e.__d=!0)&&V.push(e)&&!de.__r++||Re!=M.debounceRendering)&&((Re=M.debounceRendering)||Fe)(de)}function de(){for(var e,t,n,o,i,s,l,r=1;V.length;)V.length>r&&V.sort(De),e=V.shift(),r=V.length,e.__d&&(n=void 0,i=(o=(t=e).__v).__e,s=[],l=[],t.__P&&((n=H({},o)).__v=o.__v+1,M.vnode&&M.vnode(n),ze(t.__P,n,o,t.__n,t.__P.namespaceURI,32&o.__u?[i]:null,s,i??Y(o),!!(32&o.__u),l),n.__v=o.__v,n.__.__k[n.__i]=n,Be(s,n,l),n.__e!=i&&Ge(n)));de.__r=0}function We(e,t,n,o,i,s,l,r,a,c,d){var u,h,f,g,_,v,T=o&&o.__k||Ue,b=t.length;for(a=St(n,t,T,a,b),u=0;u<b;u++)(f=n.__k[u])!=null&&(h=f.__i==-1?ee:T[f.__i]||ee,f.__i=u,v=ze(e,f,h,i,s,l,r,a,c,d),g=f.__e,f.ref&&h.ref!=f.ref&&(h.ref&&Ee(h.ref,null,f),d.push(f.ref,f.__c||g,f)),_==null&&g!=null&&(_=g),4&f.__u||h.__k===f.__k?a=je(f,a,e):typeof f.type=="function"&&v!==void 0?a=v:g&&(a=g.nextSibling),f.__u&=-7);return n.__e=_,a}function St(e,t,n,o,i){var s,l,r,a,c,d=n.length,u=d,h=0;for(e.__k=new Array(i),s=0;s<i;s++)(l=t[s])!=null&&typeof l!="boolean"&&typeof l!="function"?(a=s+h,(l=e.__k[s]=typeof l=="string"||typeof l=="number"||typeof l=="bigint"||l.constructor==String?ae(null,l,null,null,null):le(l)?ae(ce,{children:l},null,null,null):l.constructor==null&&l.__b>0?ae(l.type,l.props,l.key,l.ref?l.ref:null,l.__v):l).__=e,l.__b=e.__b+1,r=null,(c=l.__i=zt(l,n,a,u))!=-1&&(u--,(r=n[c])&&(r.__u|=2)),r==null||r.__v==null?(c==-1&&(i>d?h--:i<d&&h++),typeof l.type!="function"&&(l.__u|=4)):c!=a&&(c==a-1?h--:c==a+1?h++:(c>a?h--:h++,l.__u|=4))):e.__k[s]=null;if(u)for(s=0;s<d;s++)(r=n[s])!=null&&(2&r.__u)==0&&(r.__e==o&&(o=Y(r)),Xe(r,r));return o}function je(e,t,n){var o,i;if(typeof e.type=="function"){for(o=e.__k,i=0;o&&i<o.length;i++)o[i]&&(o[i].__=e,t=je(o[i],t,n));return t}e.__e!=t&&(t&&e.type&&!n.contains(t)&&(t=Y(e)),n.insertBefore(e.__e,t||null),t=e.__e);do t=t&&t.nextSibling;while(t!=null&&t.nodeType==8);return t}function zt(e,t,n,o){var i,s,l=e.key,r=e.type,a=t[n];if(a===null&&e.key==null||a&&l==a.key&&r==a.type&&(2&a.__u)==0)return n;if(o>(a!=null&&(2&a.__u)==0?1:0))for(i=n-1,s=n+1;i>=0||s<t.length;){if(i>=0){if((a=t[i])&&(2&a.__u)==0&&l==a.key&&r==a.type)return i;i--}if(s<t.length){if((a=t[s])&&(2&a.__u)==0&&l==a.key&&r==a.type)return s;s++}}return-1}function qe(e,t,n){t[0]=="-"?e.setProperty(t,n??""):e[t]=n==null?"":typeof n!="number"||Tt.test(t)?n:n+"px"}function he(e,t,n,o,i){var s;e:if(t=="style")if(typeof n=="string")e.style.cssText=n;else{if(typeof o=="string"&&(e.style.cssText=o=""),o)for(t in o)n&&t in n||qe(e.style,t,"");if(n)for(t in n)o&&n[t]==o[t]||qe(e.style,t,n[t])}else if(t[0]=="o"&&t[1]=="n")s=t!=(t=t.replace(Oe,"$1")),t=t.toLowerCase()in e||t=="onFocusOut"||t=="onFocusIn"?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+s]=n,n?o?n.u=o.u:(n.u=ye,e.addEventListener(t,s?Te:be,s)):e.removeEventListener(t,s?Te:be,s);else{if(i=="http://www.w3.org/2000/svg")t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(t!="width"&&t!="height"&&t!="href"&&t!="list"&&t!="form"&&t!="tabIndex"&&t!="download"&&t!="rowSpan"&&t!="colSpan"&&t!="role"&&t!="popover"&&t in e)try{e[t]=n??"";break e}catch{}typeof n=="function"||(n==null||n===!1&&t[4]!="-"?e.removeAttribute(t):e.setAttribute(t,t=="popover"&&n==1?"":n))}}function He(e){return function(t){if(this.l){var n=this.l[t.type+e];if(t.t==null)t.t=ye++;else if(t.t<n.u)return;return n(M.event?M.event(t):t)}}}function ze(e,t,n,o,i,s,l,r,a,c){var d,u,h,f,g,_,v,T,b,C,p,S,w,y,z,N,E,k=t.type;if(t.constructor!=null)return null;128&n.__u&&(a=!!(32&n.__u),s=[r=t.__e=n.__e]),(d=M.__b)&&d(t);e:if(typeof k=="function")try{if(T=t.props,b="prototype"in k&&k.prototype.render,C=(d=k.contextType)&&o[d.__c],p=d?C?C.props.value:d.__:o,n.__c?v=(u=t.__c=n.__c).__=u.__E:(b?t.__c=u=new k(T,p):(t.__c=u=new ue(T,p),u.constructor=k,u.render=Lt),C&&C.sub(u),u.props=T,u.state||(u.state={}),u.context=p,u.__n=o,h=u.__d=!0,u.__h=[],u._sb=[]),b&&u.__s==null&&(u.__s=u.state),b&&k.getDerivedStateFromProps!=null&&(u.__s==u.state&&(u.__s=H({},u.__s)),H(u.__s,k.getDerivedStateFromProps(T,u.__s))),f=u.props,g=u.state,u.__v=t,h)b&&k.getDerivedStateFromProps==null&&u.componentWillMount!=null&&u.componentWillMount(),b&&u.componentDidMount!=null&&u.__h.push(u.componentDidMount);else{if(b&&k.getDerivedStateFromProps==null&&T!==f&&u.componentWillReceiveProps!=null&&u.componentWillReceiveProps(T,p),!u.__e&&u.shouldComponentUpdate!=null&&u.shouldComponentUpdate(T,u.__s,p)===!1||t.__v==n.__v){for(t.__v!=n.__v&&(u.props=T,u.state=u.__s,u.__d=!1),t.__e=n.__e,t.__k=n.__k,t.__k.some(function(L){L&&(L.__=t)}),S=0;S<u._sb.length;S++)u.__h.push(u._sb[S]);u._sb=[],u.__h.length&&l.push(u);break e}u.componentWillUpdate!=null&&u.componentWillUpdate(T,u.__s,p),b&&u.componentDidUpdate!=null&&u.__h.push(function(){u.componentDidUpdate(f,g,_)})}if(u.context=p,u.props=T,u.__P=e,u.__e=!1,w=M.__r,y=0,b){for(u.state=u.__s,u.__d=!1,w&&w(t),d=u.render(u.props,u.state,u.context),z=0;z<u._sb.length;z++)u.__h.push(u._sb[z]);u._sb=[]}else do u.__d=!1,w&&w(t),d=u.render(u.props,u.state,u.context),u.state=u.__s;while(u.__d&&++y<25);u.state=u.__s,u.getChildContext!=null&&(o=H(H({},o),u.getChildContext())),b&&!h&&u.getSnapshotBeforeUpdate!=null&&(_=u.getSnapshotBeforeUpdate(f,g)),N=d,d!=null&&d.type===ce&&d.key==null&&(N=Ve(d.props.children)),r=We(e,le(N)?N:[N],t,n,o,i,s,l,r,a,c),u.base=t.__e,t.__u&=-161,u.__h.length&&l.push(u),v&&(u.__E=u.__=null)}catch(L){if(t.__v=null,a||s!=null)if(L.then){for(t.__u|=a?160:128;r&&r.nodeType==8&&r.nextSibling;)r=r.nextSibling;s[s.indexOf(r)]=null,t.__e=r}else for(E=s.length;E--;)ke(s[E]);else t.__e=n.__e,t.__k=n.__k;M.__e(L,t,n)}else s==null&&t.__v==n.__v?(t.__k=n.__k,t.__e=n.__e):r=t.__e=Et(n.__e,t,n,o,i,s,l,a,c);return(d=M.diffed)&&d(t),128&t.__u?void 0:r}function Be(e,t,n){for(var o=0;o<n.length;o++)Ee(n[o],n[++o],n[++o]);M.__c&&M.__c(t,e),e.some(function(i){try{e=i.__h,i.__h=[],e.some(function(s){s.call(i)})}catch(s){M.__e(s,i.__v)}})}function Ve(e){return typeof e!="object"||e==null||e.__b&&e.__b>0?e:le(e)?e.map(Ve):H({},e)}function Et(e,t,n,o,i,s,l,r,a){var c,d,u,h,f,g,_,v=n.props,T=t.props,b=t.type;if(b=="svg"?i="http://www.w3.org/2000/svg":b=="math"?i="http://www.w3.org/1998/Math/MathML":i||(i="http://www.w3.org/1999/xhtml"),s!=null){for(c=0;c<s.length;c++)if((f=s[c])&&"setAttribute"in f==!!b&&(b?f.localName==b:f.nodeType==3)){e=f,s[c]=null;break}}if(e==null){if(b==null)return document.createTextNode(T);e=document.createElementNS(i,b,T.is&&T),r&&(M.__m&&M.__m(t,s),r=!1),s=null}if(b==null)v===T||r&&e.data==T||(e.data=T);else{if(s=s&&se.call(e.childNodes),v=n.props||ee,!r&&s!=null)for(v={},c=0;c<e.attributes.length;c++)v[(f=e.attributes[c]).name]=f.value;for(c in v)if(f=v[c],c!="children"){if(c=="dangerouslySetInnerHTML")u=f;else if(!(c in T)){if(c=="value"&&"defaultValue"in T||c=="checked"&&"defaultChecked"in T)continue;he(e,c,null,f,i)}}for(c in T)f=T[c],c=="children"?h=f:c=="dangerouslySetInnerHTML"?d=f:c=="value"?g=f:c=="checked"?_=f:r&&typeof f!="function"||v[c]===f||he(e,c,f,v[c],i);if(d)r||u&&(d.__html==u.__html||d.__html==e.innerHTML)||(e.innerHTML=d.__html),t.__k=[];else if(u&&(e.innerHTML=""),We(t.type=="template"?e.content:e,le(h)?h:[h],t,n,o,b=="foreignObject"?"http://www.w3.org/1999/xhtml":i,s,l,s?s[0]:n.__k&&Y(n,0),r,a),s!=null)for(c=s.length;c--;)ke(s[c]);r||(c="value",b=="progress"&&g==null?e.removeAttribute("value"):g!=null&&(g!==e[c]||b=="progress"&&!g||b=="option"&&g!=v[c])&&he(e,c,g,v[c],i),c="checked",_!=null&&_!=e[c]&&he(e,c,_,v[c],i))}return e}function Ee(e,t,n){try{if(typeof e=="function"){var o=typeof e.__u=="function";o&&e.__u(),o&&t==null||(e.__u=e(t))}else e.current=t}catch(i){M.__e(i,n)}}function Xe(e,t,n){var o,i;if(M.unmount&&M.unmount(e),(o=e.ref)&&(o.current&&o.current!=e.__e||Ee(o,null,t)),(o=e.__c)!=null){if(o.componentWillUnmount)try{o.componentWillUnmount()}catch(s){M.__e(s,t)}o.base=o.__P=null}if(o=e.__k)for(i=0;i<o.length;i++)o[i]&&Xe(o[i],t,n||typeof e.type!="function");n||ke(e.__e),e.__c=e.__=e.__e=void 0}function Lt(e,t,n){return this.constructor(e,n)}function Ye(e,t,n){var o,i,s,l;t==document&&(t=document.documentElement),M.__&&M.__(e,t),i=(o=!1)?null:t.__k,s=[],l=[],ze(t,e=t.__k=kt(ce,null,[e]),i||ee,ee,t.namespaceURI,i?null:t.firstChild?se.call(t.childNodes):null,s,i?i.__e:t.firstChild,o,l),Be(s,e,l)}function Nt(e){function t(n){var o,i;return this.getChildContext||(o=new Set,(i={})[t.__c]=this,this.getChildContext=function(){return i},this.componentWillUnmount=function(){o=null},this.shouldComponentUpdate=function(s){this.props.value!=s.value&&o.forEach(function(l){l.__e=!0,Se(l)})},this.sub=function(s){o.add(s);var l=s.componentWillUnmount;s.componentWillUnmount=function(){o&&o.delete(s),l&&l.call(s)}}),n.children}return t.__c="__cC"+$e++,t.__=e,t.Provider=t.__l=(t.Consumer=function(n,o){return n.children(o)}).contextType=t,t}se=Ue.slice,M={__e:function(e,t,n,o){for(var i,s,l;t=t.__;)if((i=t.__c)&&!i.__)try{if((s=i.constructor)&&s.getDerivedStateFromError!=null&&(i.setState(s.getDerivedStateFromError(e)),l=i.__d),i.componentDidCatch!=null&&(i.componentDidCatch(e,o||{}),l=i.__d),l)return i.__E=i}catch(r){e=r}throw e}},xe=0,ue.prototype.setState=function(e,t){var n;n=this.__s!=null&&this.__s!=this.state?this.__s:this.__s=H({},this.state),typeof e=="function"&&(e=e(H({},n),this.props)),e&&H(n,e),e!=null&&this.__v&&(t&&this._sb.push(t),Se(this))},ue.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),Se(this))},ue.prototype.render=ce,V=[],Fe=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,De=function(e,t){return e.__v.__b-t.__v.__b},de.__r=0,Oe=/(PointerCapture)$|Capture$/i,ye=0,be=He(!1),Te=He(!0),$e=0;var Mt=0;function m(e,t,n,o,i,s){t||(t={});var l,r,a=t;if("ref"in a)for(r in a={},t)r=="ref"?l=t[r]:a[r]=t[r];var c={type:e,props:a,key:n,ref:l,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--Mt,__i:-1,__u:0,__source:i,__self:s};if(typeof e=="function"&&(l=e.defaultProps))for(r in l)a[r]===void 0&&(a[r]=l[r]);return M.vnode&&M.vnode(c),c}var K,A,Le,Ke,te=0,Je=[],F=M,Ze=F.__b,Qe=F.__r,et=F.diffed,tt=F.__c,nt=F.unmount,ot=F.__;function fe(e,t){F.__h&&F.__h(A,e,te||t),te=0;var n=A.__H||(A.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({}),n.__[e]}function U(e){return te=1,At(lt,e)}function At(e,t,n){var o=fe(K++,2);if(o.t=e,!o.__c&&(o.__=[lt(void 0,t),function(r){var a=o.__N?o.__N[0]:o.__[0],c=o.t(a,r);a!==c&&(o.__N=[c,o.__[1]],o.__c.setState({}))}],o.__c=A,!A.__f)){var i=function(r,a,c){if(!o.__c.__H)return!0;var d=o.__c.__H.__.filter(function(h){return!!h.__c});if(d.every(function(h){return!h.__N}))return!s||s.call(this,r,a,c);var u=o.__c.props!==r;return d.forEach(function(h){if(h.__N){var f=h.__[0];h.__=h.__N,h.__N=void 0,f!==h.__[0]&&(u=!0)}}),s&&s.call(this,r,a,c)||u};A.__f=!0;var s=A.shouldComponentUpdate,l=A.componentWillUpdate;A.componentWillUpdate=function(r,a,c){if(this.__e){var d=s;s=void 0,i(r,a,c),s=d}l&&l.call(this,r,a,c)},A.shouldComponentUpdate=i}return o.__N||o.__}function I(e,t){var n=fe(K++,3);!F.__s&&st(n.__H,t)&&(n.__=e,n.u=t,A.__H.__h.push(n))}function x(e){return te=5,J(function(){return{current:e}},[])}function J(e,t){var n=fe(K++,7);return st(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function rt(e,t){return te=8,J(function(){return e},t)}function Pt(e){var t=A.context[e.__c],n=fe(K++,9);return n.c=e,t?(n.__==null&&(n.__=!0,t.sub(A)),t.props.value):e.__}function It(){for(var e;e=Je.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(me),e.__H.__h.forEach(Ne),e.__H.__h=[]}catch(t){e.__H.__h=[],F.__e(t,e.__v)}}F.__b=function(e){A=null,Ze&&Ze(e)},F.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),ot&&ot(e,t)},F.__r=function(e){Qe&&Qe(e),K=0;var t=(A=e.__c).__H;t&&(Le===A?(t.__h=[],A.__h=[],t.__.forEach(function(n){n.__N&&(n.__=n.__N),n.u=n.__N=void 0})):(t.__h.forEach(me),t.__h.forEach(Ne),t.__h=[],K=0)),Le=A},F.diffed=function(e){et&&et(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(Je.push(t)!==1&&Ke===F.requestAnimationFrame||((Ke=F.requestAnimationFrame)||xt)(It)),t.__H.__.forEach(function(n){n.u&&(n.__H=n.u),n.u=void 0})),Le=A=null},F.__c=function(e,t){t.some(function(n){try{n.__h.forEach(me),n.__h=n.__h.filter(function(o){return!o.__||Ne(o)})}catch(o){t.some(function(i){i.__h&&(i.__h=[])}),t=[],F.__e(o,n.__v)}}),tt&&tt(e,t)},F.unmount=function(e){nt&&nt(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.forEach(function(o){try{me(o)}catch(i){t=i}}),n.__H=void 0,t&&F.__e(t,n.__v))};var it=typeof requestAnimationFrame=="function";function xt(e){var t,n=function(){clearTimeout(o),it&&cancelAnimationFrame(t),setTimeout(e)},o=setTimeout(n,100);it&&(t=requestAnimationFrame(n))}function me(e){var t=A,n=e.__c;typeof n=="function"&&(e.__c=void 0,n()),A=t}function Ne(e){var t=A;e.__c=e.__(),A=t}function st(e,t){return!e||e.length!==t.length||t.some(function(n,o){return n!==e[o]})}function lt(e,t){return typeof t=="function"?t(e):t}const Rt=e=>({saveGameData(t){try{localStorage.setItem(e,JSON.stringify(t))}catch(n){console.error("Failed to save maze game data:",n)}},loadGameData(){try{const t=localStorage.getItem(e);return t?JSON.parse(t):null}catch(t){return console.error("Failed to load maze game data:",t),null}},resetGameData(){try{localStorage.removeItem(e)}catch(t){console.error("Failed to reset maze game data:",t)}}}),at=Nt(void 0),ct={currentLevel:1,highestUnlockedLevel:1,currentTier:1,highestUnlockedTier:1,levelScores:{},totalScore:0},Me={isGameActive:!0,levelTransitioning:!1,maze:null,playerCell:{row:0,col:0},exitCell:{row:0,col:0},foodCells:[],playerAtExit:!1,foodCollected:0,totalFoodCount:0,showClue:!1,playerPath:[],visitCounts:{}},Ft=({children:e,config:t})=>{const n=Rt(t.lcPrefix+"progress"),o=n.loadGameData(),[i,s]=U(()=>o||{...ct});I(()=>{const u=Object.values(i.levelScores).reduce((h,f)=>h+f,0);s(h=>({...h,totalScore:u}))},[i.levelScores]),I(()=>{n.saveGameData(i)},[i.currentLevel,i.highestUnlockedLevel,i.currentTier,i.highestUnlockedTier,i.levelScores,i.totalScore]);const[l,r]=U({...Me}),a=x(l);I(()=>{a.current=l},[l]);const c=J(()=>[l.playerAtExit?1:0,l.foodCollected===l.totalFoodCount?1:0,l.showClue?0:1],[l.playerAtExit,l.foodCollected,l.totalFoodCount,l.showClue]),d=()=>{n.resetGameData(),s({...ct}),r({...Me})};return m(at.Provider,{value:{gameProgress:i,setGameProgress:s,gamePlayState:l,setGamePlayState:r,gamePlayStateRef:a,currentScore:c,config:t,resetGame:d},children:e})},ne=()=>{const e=Pt(at);if(!e)throw new Error("useGameContext must be used within a GameProvider");return e},oe=e=>J(()=>{const t=e.map(r=>r.length),n=t.reduce((r,a)=>r+a,0),o=e.length,i=r=>{if(r<1||r>n)return 0;let a=0;for(let c=0;c<t.length;c++)if(a+=t[c],r<=a)return c+1;return 0},s=r=>r<1||r>o?0:t.slice(0,r-1).reduce((a,c)=>a+c,0)+1,l={getTotalLevels:()=>n,getTotalTiers:()=>o,getTierLevelsRange:r=>{if(r<1||r>o)return[0,0];const a=s(r),c=a+t[r-1]-1;return[a,c]},getTierByLevel:i,getFirstLevelOfTier:s,getLevelConfig:r=>{if(r<1||r>n)return null;const a=i(r),c=s(a),d=r-c;return e[a-1][d]},getTierConfig:r=>r<1||r>o?null:e[r-1],isLevelUnlocked:(r,a)=>r<=a,isTierUnlocked:(r,a)=>r<=a,getNextLevelInfo:r=>{if(r>=n)return null;const a=r+1,c=i(r),d=i(a);return{nextLevel:a,nextTier:d,isTierChange:d>c}},getCurrentTierProgress:(r,a)=>{const[c,d]=l.getTierLevelsRange(a),u=r-c+1,h=d-c+1;return{current:u,total:h}},isLastLevelInTier:r=>{const a=i(r),[,c]=l.getTierLevelsRange(a);return r===c},getPreviousLevelInfo:r=>{if(r<=1)return null;const a=r-1,c=i(r),d=i(a);return{prevLevel:a,prevTier:d,isTierChange:d<c}}};return l},[e]),Dt=({onTierChange:e,disabled:t})=>{const{gameProgress:n,config:o}=ne(),{i18n:i,levelConfig:s}=o,{currentTier:l,highestUnlockedTier:r}=n,c=oe(s).getTotalTiers();return m("div",{className:"tier-selector",children:m("select",{value:l,onChange:d=>{d.target&&d.target.value&&e(Number(d.target.value))},disabled:t,className:"tier-dropdown",children:Array.from({length:c},(d,u)=>u+1).map(d=>m("option",{value:d,disabled:d>r,children:i.tier+" "+d},`tier-${d}`))})})},Ot=({onLevelChange:e,disabled:t})=>{const{gameProgress:n,config:o}=ne(),{i18n:i,levelConfig:s}=o,{currentTier:l,levelScores:r,currentLevel:a,highestUnlockedLevel:c}=n,d=oe(s),u=J(()=>{const[h,f]=d.getTierLevelsRange(l);return Array.from({length:f-h+1},(g,_)=>{const v=h+_,T=r[v]||0;return{level:v,score:T}})},[l,r]);return m("div",{className:"level-selector",children:m("select",{value:a,onChange:h=>{h.target&&h.target.value&&e(Number(h.target.value))},disabled:t,className:"level-dropdown",children:u.map(({level:h,score:f})=>m("option",{value:h,disabled:h>c,children:`${i.level} ${h} ${"★".repeat(f)}`},`level-${h}`))})})},re=({isOpen:e,title:t,className:n="",message:o,children:i,noConfirm:s=!1,noCancel:l=!1,confirmText:r="OK",cancelText:a="Cancel",confirmClass:c="",cancelClass:d="",onConfirm:u,onCancel:h})=>{const f=x(null);return I(()=>{const g=_=>{_.key==="Escape"&&h?.()};return e&&document.addEventListener("keydown",g),()=>{document.removeEventListener("keydown",g)}},[e,h]),m("div",{className:`maze-dialog-overlay ${e?"maze-dialog-visible":""}`,children:m("div",{className:"maze-dialog "+n,ref:f,children:[m("div",{className:"maze-dialog-title",children:t}),m("div",{className:"maze-dialog-content",children:i||m("div",{className:"maze-dialog-message",children:o})}),(!l||!s)&&m("div",{className:"maze-dialog-buttons",children:[!l&&m("button",{type:"button",className:"maze-dialog-cancel "+d,onClick:h,children:a}),!s&&m("button",{type:"button",className:"maze-dialog-confirm "+c,onClick:u,children:r})]})]})})},j={container:null,attachTo(e){return this.container&&this.container.parentNode&&this.container.parentNode.removeChild(this.container),this.container=document.createElement("div"),this.container.className="toast-container position-bottom",e.appendChild(this.container),this.container},currentToast:null,currentTimer:null,show(e,t=2e3){if(!this.container){console.warn("NativeToast: container not initialized, please call attachTo first");return}this.currentToast&&this.container.contains(this.currentToast)&&(this.container.removeChild(this.currentToast),this.currentToast=null),this.currentTimer&&(clearTimeout(this.currentTimer),this.currentTimer=null);const n=document.createElement("div");n.className="toast-message toast-visible",n.textContent=e,this.container.appendChild(n),this.currentToast=n,this.currentTimer=setTimeout(()=>{n.classList.remove("toast-visible"),setTimeout(()=>{this.container&&this.container.contains(n)&&(this.container.removeChild(n),this.currentToast===n&&(this.currentToast=null))},300),this.currentTimer=null},t)},clearAll(){if(this.container)for(;this.container.firstChild;)this.container.removeChild(this.container.firstChild)}},$t=()=>{const{gameProgress:e,setGameProgress:t,gamePlayState:n,setGamePlayState:o,gamePlayStateRef:i,resetGame:s,config:l}=ne(),{i18n:r,levelConfig:a}=l,c=oe(a),{levelTransitioning:d,showClue:u}=n,{highestUnlockedLevel:h,totalScore:f}=e,g=c.getTotalLevels(),[_,v]=U(!1),[T,b]=U(!1),[C,p]=U(!1),S=O=>{const $=c.getFirstLevelOfTier(O);c.isLevelUnlocked($,h)&&(t(G=>({...G,currentTier:O})),w($))},w=O=>{c.isLevelUnlocked(O,h)&&(t($=>({...$,currentLevel:O})),j.show(r.levelGoToast.replace("%LEVEL%",O.toString())))},y=()=>{v(!0)},z=()=>{v(!1)},N=()=>{p(!0)},E=()=>{p(!1)},k=()=>{j.show(u?r.cluePathDisabled:r.cluePathEnabled),o(()=>({...i.current,showClue:!i.current.showClue})),p(!1)},L=()=>{b(!0)},P=()=>{s(),b(!1),j.show(r.resetDoneToast)},R=()=>{b(!1)};return m("div",{class:"game-panel-container",children:[m("div",{className:"game-controls",children:[m("div",{className:"selectors-container",children:[m(Dt,{onTierChange:S,disabled:d}),m(Ot,{onLevelChange:w,disabled:d})]}),m("button",{className:`settings-clue-button ${u?"clue-on":"clue-off"}`,disabled:u,title:"Toggle Clue",onClick:N,children:u?r.clueOn:r.clueOff})]}),m("div",{className:"game-settings",children:m("span",{className:"game-settings-icon",onClick:y,children:"★ "+f})}),m(re,{isOpen:_,title:r.settings,noConfirm:!0,cancelText:r.close,onCancel:z,children:[m("div",{className:"settings-stats",children:[m("div",{children:r.levelComplete+`: ${h}/${g}`}),m("div",{children:r.starsCollected+": "+f}),m("div",{children:r.avgStarPerLevel+": "+(f/h).toFixed(2)})]}),m("div",{className:"settings-item-box",children:[m("button",{className:"settings-reset-button",title:"Reset Game",onClick:L,children:r.reset}),m("div",{className:"settings-item-tip",children:r.resetTip})]})]}),m(re,{isOpen:T,title:r.confirmReset,message:r.confirmResetMessage,confirmText:r.reset,cancelText:r.cancel,onConfirm:P,onCancel:R}),m(re,{isOpen:C,title:r.confirmClue,message:r.confirmClueMessage,confirmText:r.confirm,cancelText:r.cancel,onConfirm:k,onCancel:E})]})};function Ae(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ut(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Pe(e,t,n){return t&&Ut(e.prototype,t),e}function ut(e){return+e.replace(/px/,"")}function Gt(e){var t=window.devicePixelRatio,n=getComputedStyle(e),o=ut(n.getPropertyValue("width")),i=ut(n.getPropertyValue("height"));e.setAttribute("width",(o*t).toString()),e.setAttribute("height",(i*t).toString())}function q(e,t){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,o=Math.random()*(t-e)+e;return Math.floor(o*Math.pow(10,n))/Math.pow(10,n)}function dt(e){return e[q(0,e.length)]}var Wt=.00125,jt=5e-4,qt=9e-4,Ht=1e-5,Bt=6,Vt=80,Xt=.9,Yt=1.7,Kt=.2,Jt=.6,Zt=.03,Qt=.07,en=15,tn=82,nn=100,on=250,rn=40,sn=["#fcf403","#62fc03","#f4fc03","#03e7fc","#03fca5","#a503fc","#fc03ad","#fc03c2"];function ht(e){var t=1920;return Math.log(e)/Math.log(t)}var ft=function(){function e(t){Ae(this,e);var n=t.initialPosition,o=t.direction,i=t.confettiRadius,s=t.confettiColors,l=t.emojis,r=t.emojiSize,a=t.canvasWidth,c=q(Xt,Yt,3),d=c*ht(a);this.confettiSpeed={x:d,y:d},this.finalConfettiSpeedX=q(Kt,Jt,3),this.rotationSpeed=l.length?.01:q(Zt,Qt,3)*ht(a),this.dragForceCoefficient=q(jt,qt,6),this.radius={x:i,y:i},this.initialRadius=i,this.rotationAngle=o==="left"?q(0,.2,3):q(-.2,0,3),this.emojiSize=r,this.emojiRotationAngle=q(0,2*Math.PI),this.radiusYUpdateDirection="down";var u=o==="left"?q(tn,en)*Math.PI/180:q(-15,-82)*Math.PI/180;this.absCos=Math.abs(Math.cos(u)),this.absSin=Math.abs(Math.sin(u));var h=q(-150,0),f={x:n.x+(o==="left"?-h:h)*this.absCos,y:n.y-h*this.absSin};this.currentPosition=Object.assign({},f),this.initialPosition=Object.assign({},f),this.color=l.length?null:dt(s),this.emoji=l.length?dt(l):null,this.createdAt=new Date().getTime(),this.direction=o}return Pe(e,[{key:"draw",value:function(n){var o=this.currentPosition,i=this.radius,s=this.color,l=this.emoji,r=this.rotationAngle,a=this.emojiRotationAngle,c=this.emojiSize,d=window.devicePixelRatio;s?(n.fillStyle=s,n.beginPath(),n.ellipse(o.x*d,o.y*d,i.x*d,i.y*d,r,0,2*Math.PI),n.fill()):l&&(n.font="".concat(c,"px serif"),n.save(),n.translate(d*o.x,d*o.y),n.rotate(a),n.textAlign="center",n.fillText(l,0,0),n.restore())}},{key:"updatePosition",value:function(n,o){var i=this.confettiSpeed,s=this.dragForceCoefficient,l=this.finalConfettiSpeedX,r=this.radiusYUpdateDirection,a=this.rotationSpeed,c=this.createdAt,d=this.direction,u=o-c;if(i.x>l&&(this.confettiSpeed.x-=s*n),this.currentPosition.x+=i.x*(d==="left"?-this.absCos:this.absCos)*n,this.currentPosition.y=this.initialPosition.y-i.y*this.absSin*u+Wt*Math.pow(u,2)/2,this.rotationSpeed-=this.emoji?1e-4:Ht*n,this.rotationSpeed<0&&(this.rotationSpeed=0),this.emoji){this.emojiRotationAngle+=this.rotationSpeed*n%(2*Math.PI);return}r==="down"?(this.radius.y-=n*a,this.radius.y<=0&&(this.radius.y=0,this.radiusYUpdateDirection="up")):(this.radius.y+=n*a,this.radius.y>=this.initialRadius&&(this.radius.y=this.initialRadius,this.radiusYUpdateDirection="down"))}},{key:"getIsVisibleOnCanvas",value:function(n){return this.currentPosition.y<n+nn}}]),e}();function ln(){var e=document.createElement("canvas");return e.style.position="fixed",e.style.width="100%",e.style.height="100%",e.style.top="0",e.style.left="0",e.style.zIndex="1000",e.style.pointerEvents="none",document.body.appendChild(e),e}function an(e){var t=e.confettiRadius,n=t===void 0?Bt:t,o=e.confettiNumber,i=o===void 0?e.confettiesNumber||(e.emojis?rn:on):o,s=e.confettiColors,l=s===void 0?sn:s,r=e.emojis,a=r===void 0?e.emojies||[]:r,c=e.emojiSize,d=c===void 0?Vt:c;return e.emojies&&console.error("emojies argument is deprecated, please use emojis instead"),e.confettiesNumber&&console.error("confettiesNumber argument is deprecated, please use confettiNumber instead"),{confettiRadius:n,confettiNumber:i,confettiColors:l,emojis:a,emojiSize:d}}var cn=function(){function e(t){var n=this;Ae(this,e),this.canvasContext=t,this.shapes=[],this.promise=new Promise(function(o){return n.resolvePromise=o})}return Pe(e,[{key:"getBatchCompletePromise",value:function(){return this.promise}},{key:"addShapes",value:function(){var n;(n=this.shapes).push.apply(n,arguments)}},{key:"complete",value:function(){var n;return this.shapes.length?!1:((n=this.resolvePromise)===null||n===void 0||n.call(this),!0)}},{key:"processShapes",value:function(n,o,i){var s=this,l=n.timeDelta,r=n.currentTime;this.shapes=this.shapes.filter(function(a){return a.updatePosition(l,r),a.draw(s.canvasContext),i?a.getIsVisibleOnCanvas(o):!0})}}]),e}(),un=function(){function e(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};Ae(this,e),this.activeConfettiBatches=[],this.canvas=t.canvas||ln(),this.canvasContext=this.canvas.getContext("2d"),this.requestAnimationFrameRequested=!1,this.lastUpdated=new Date().getTime(),this.iterationIndex=0,this.loop=this.loop.bind(this),requestAnimationFrame(this.loop)}return Pe(e,[{key:"loop",value:function(){this.requestAnimationFrameRequested=!1,Gt(this.canvas);var n=new Date().getTime(),o=n-this.lastUpdated,i=this.canvas.offsetHeight,s=this.iterationIndex%10===0;this.activeConfettiBatches=this.activeConfettiBatches.filter(function(l){return l.processShapes({timeDelta:o,currentTime:n},i,s),s?!l.complete():!0}),this.iterationIndex++,this.queueAnimationFrameIfNeeded(n)}},{key:"queueAnimationFrameIfNeeded",value:function(n){this.requestAnimationFrameRequested||this.activeConfettiBatches.length<1||(this.requestAnimationFrameRequested=!0,this.lastUpdated=n||new Date().getTime(),requestAnimationFrame(this.loop))}},{key:"addConfetti",value:function(){for(var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},o=an(n),i=o.confettiRadius,s=o.confettiNumber,l=o.confettiColors,r=o.emojis,a=o.emojiSize,c=this.canvas.getBoundingClientRect(),d=c.width,u=c.height,h=u*5/7,f={x:0,y:h},g={x:d,y:h},_=new cn(this.canvasContext),v=0;v<s/2;v++){var T=new ft({initialPosition:f,direction:"right",confettiRadius:i,confettiColors:l,confettiNumber:s,emojis:r,emojiSize:a,canvasWidth:d}),b=new ft({initialPosition:g,direction:"left",confettiRadius:i,confettiColors:l,confettiNumber:s,emojis:r,emojiSize:a,canvasWidth:d});_.addShapes(T,b)}return this.activeConfettiBatches.push(_),this.queueAnimationFrameIfNeeded(),_.getBatchCompletePromise()}},{key:"clearCanvas",value:function(){this.activeConfettiBatches=[]}},{key:"destroyCanvas",value:function(){this.canvas.remove()}}]),e}();const dn=new un,Ie=3,hn=({onRetry:e})=>{const{config:t,currentScore:n,gamePlayState:o,setGamePlayState:i,gameProgress:s,setGameProgress:l}=ne(),{i18n:r,levelConfig:a}=t,[c,d,u]=n,{foodCollected:h,totalFoodCount:f,playerAtExit:g,levelTransitioning:_}=o,{currentLevel:v}=s,[T,b]=U(!1);I(()=>{g&&_&&(dn.addConfetti(),j.show(r.levelCompleteToast),b(!0))},[g,_]);const C=oe(a),p=C.getTotalLevels(),S=J(()=>v>=p,[v,p]),w=()=>{b(!1),j.show(r.levelRestartToast),e?.()},y=()=>{b(!1),i(E=>({...E,isGameActive:!0,levelTransitioning:!1}))},z=()=>{b(!1);const E=C.getNextLevelInfo(v);if(!E)return;const{nextLevel:k,nextTier:L,isTierChange:P}=E;P&&j.show(r.tierUnlockedToast.replace("%TIER%",L.toString())),l(R=>({...R,currentLevel:k,currentTier:L,highestUnlockedLevel:Math.max(R.highestUnlockedLevel,k),highestUnlockedTier:Math.max(R.highestUnlockedTier,L),levelScores:{...R.levelScores,[R.currentLevel]:Math.max(Object.values(n).filter(Boolean).length,R.levelScores[R.currentLevel]||0)}}))},N=()=>{b(!1),l(E=>{const k=Math.max(Object.values(n).filter(Boolean).length,E.levelScores[E.currentLevel]||0),L={...E.levelScores,[E.currentLevel]:k};let P=0,R=0;const O=Object.entries(L).sort(($,G)=>Number($[0])-Number(G[0]));for(const[$,G]of O)if(G<Ie){P=Number($),R=C.getTierByLevel(P);break}return(P>0&&P!==v||k<Ie)&&j.show(r.notCompleteLevel),(P===0||k<Ie)&&e?.(),{...E,currentLevel:P||E.currentLevel,currentTier:R||E.currentTier,levelScores:L}})};return I(()=>{const E=document.querySelector(".maze-game-container"),k=L=>{T&&((L.key===" "||L.code==="Space")&&E&&(E.contains(document.activeElement)||document.activeElement===document.body)&&(L.preventDefault(),S?N():z()),(L.key==="r"||L.code==="KeyR")&&w(),(L.key==="c"||L.code==="KeyC")&&y())};return window.addEventListener("keydown",k),()=>window.removeEventListener("keydown",k)},[T,S]),m(re,{className:"level-complete-dialog",isOpen:T,title:r.congratulations,cancelText:r.retry+" (R)",onCancel:w,noConfirm:!!d,confirmText:r.continue+" (C)",onConfirm:y,confirmClass:"maze-continue-btn",children:[m("div",{className:"maze-summary-message",children:[!!c&&m("div",{children:"★ - "+r.findYourExit}),m("div",{children:u?"★ - "+r.withoutClue:"☆ - "+r.withClue}),m("div",{children:(d?"★ - "+r.collectAllStars:"☆ - "+r.notCollectAllStars)+` (${h}/${f})`})]}),S&&m("div",{className:"all-levels-completed",children:r.allLevelsCompleted}),m("div",{className:"maze-go-next",children:S?m("button",{className:"maze-go-next-btn",type:"button",onClick:N,children:[m("span",{children:r.lastOK}),m("span",{className:"spacebar-tip",children:`(${r.spacebarTip})`})]}):m("button",{className:"maze-go-next-btn",type:"button",onClick:z,children:[m("span",{children:r.nextLevel}),m("span",{className:"spacebar-tip",children:`(${r.spacebarTip})`})]})}),!d&&m("div",{className:"not-all-stars-collected",children:r.continueMessage})]})},mt=(e,t)=>{const n=x({canvasWidth:0,canvasHeight:0});return I(()=>{const o=()=>{const s=e.current;if(!s)return;const l=s.parentElement;if(!l)return;const r=l.clientWidth;if(r===0)return;const a=window.devicePixelRatio||1;s.style.width=`${r}px`,s.style.height=`${r}px`;const c=r*a,d=r*a;s.width=c,s.height=d,n.current={canvasWidth:c,canvasHeight:d},t?.()};o();let i=null;return window.ResizeObserver&&e.current&&(i=new ResizeObserver(o),i.observe(e.current.parentElement)),window.addEventListener("resize",o),()=>{window.removeEventListener("resize",o),i?.disconnect()}},[e,t]),n},_t=(e,t,n)=>{const o=x({cellWidth:0,cellHeight:0});return I(()=>{const i=()=>{const l=e.current,r=t.maze;if(!l||!r)return;const{rows:a,cols:c}=r;if(a<=0||c<=0)return;const d=(l.width-n*2)/c,u=(l.height-n*2)/a;o.current={cellWidth:d,cellHeight:u}};i();let s=null;return e.current&&window.ResizeObserver&&(s=new ResizeObserver(i),s.observe(e.current)),()=>{e.current&&s?.disconnect()}},[e,t.maze,n]),o},_e={ArrowUp:[-1,0],ArrowDown:[1,0],ArrowLeft:[0,-1],ArrowRight:[0,1]},vt=({gamePlayStateRef:e,setGamePlayState:t,moveSpeed:n,moveSpeedRef:o,playerRadius:i,onFoodCollected:s,onExitReached:l,onFirstMove:r})=>{const a=()=>o?.current??n??.03,c=x(!1),d=x(new Set),u=x(!1),h=rt((C,p)=>{const S=e.current;if(!S.maze)return{canMove:!1,newCell:null};const w=a(),[y,z]=_e[C];if(gt(p,y,z,i,w,S.maze))return{canMove:!1,newCell:null};const{row:E,col:k}=p,L=E+y*w,P=k+z*w,R=-.5,O=S.maze.rows,$=S.maze.cols;if(L<R||L>=O||P<R||P>=$)return{canMove:!1,newCell:null};const G=E<0?0:Math.floor(E),X=k<0?0:Math.floor(k),B=L<0?0:Math.floor(L),Z=P<0?0:Math.floor(P);return B!==G||Z!==X?S.maze.isValid(B,Z)?{canMove:!0,newCell:{row:B,col:Z}}:{canMove:!1,newCell:null}:{canMove:!0,newCell:null}},[i,a]),f=()=>{const C=e.current,{row:p,col:S}=C.playerCell,w=i*2,y=C.foodCells.findIndex(E=>Math.sqrt(Math.pow(p-E.row,2)+Math.pow(S-E.col,2))<w);y!==-1&&s&&(s(),e.current={...e.current,foodCollected:e.current.foodCollected+1,foodCells:e.current.foodCells.filter((E,k)=>k!==y)});const N=_n(C.playerCell,C.exitCell,C.maze);N&&!e.current.playerAtExit?(e.current={...e.current,playerAtExit:!0,isGameActive:!1,levelTransitioning:!0},l&&l(),requestIdleCallback(()=>{t(()=>({...e.current}))},{timeout:10})):!N&&e.current.playerAtExit&&(e.current={...e.current,playerAtExit:!1,isGameActive:!0,levelTransitioning:!1})},g=C=>{const p=e.current,S=Math.round(C.row),w=Math.round(C.col),y=p.playerPath[p.playerPath.length-1],z=y.row===S&&y.col===w,N=Math.abs(y.row-S),E=Math.abs(y.col-w);if((N===1&&E===0||N===0&&E===1)&&!z){const L=`${y.row},${y.col}-${S},${w}`;e.current={...e.current,playerPath:[...e.current.playerPath,{row:S,col:w}],visitCounts:{...e.current.visitCounts,[L]:(e.current.visitCounts[L]||0)+1}}}},_=()=>{if(c.current||d.current.size===0)return;const C=e.current;!C.playerCell||!Array.from(d.current).some(S=>{const{canMove:w}=h(S,C.playerCell);return w})||(!u.current&&r&&(u.current=!0,r()),c.current=!0)};I(()=>{const C=w=>{if(w.key==="ArrowUp"||w.key==="ArrowDown"||w.key==="ArrowLeft"||w.key==="ArrowRight"||w.key===" "){const y=document.activeElement;if(y&&(y.tagName==="INPUT"||y.tagName==="TEXTAREA"||y.getAttribute("contenteditable")==="true"))return;w.preventDefault()}},p=w=>{const y=w.key;if(!(y in _e))return;const z=document.activeElement;z&&(z.tagName==="INPUT"||z.tagName==="TEXTAREA"||z.getAttribute("contenteditable")==="true")||(w.preventDefault(),e.current.isGameActive&&(d.current.has(y)||(d.current.add(y),c.current||_())))},S=w=>{const y=w.key;if(!(y in _e))return;const z=document.activeElement;z&&(z.tagName==="INPUT"||z.tagName==="TEXTAREA"||z.getAttribute("contenteditable")==="true")||(w.preventDefault(),d.current.delete(y),d.current.size===0&&T())};return window.addEventListener("keydown",C,{capture:!0}),window.addEventListener("keydown",p),window.addEventListener("keyup",S),()=>{window.removeEventListener("keydown",C,{capture:!0}),window.removeEventListener("keydown",p),window.removeEventListener("keyup",S)}},[]);const v=rt(()=>{if(!c.current||d.current.size===0)return e.current.playerCell;const C=a(),p=e.current.playerCell;let S=0,w=0,y=0;for(const D of d.current){const{canMove:W}=h(D,p);if(W){const[Q,we]=_e[D];S+=Q,w+=we,y++}}if(y===0)return e.current.playerCell;const z=Math.sqrt(S*S+w*w),N=z>0?S/z:0,E=z>0?w/z:0,k=Number((p.row+N*C).toFixed(2)),L=Number((p.col+E*C).toFixed(2)),P=k-p.row,R=L-p.col,O=Math.sqrt(P*P+R*R);if(O>0){const D=P/O,W=R/O;if(gt(p,D,W,i,O,e.current.maze))return e.current.playerCell}e.current.playerCell={row:k,col:L},f();const $=p.row<0?0:Math.round(p.row),G=p.col<0?0:Math.round(p.col),X=k<0?0:Math.round(k),B=L<0?0:Math.round(L);return(X!==$||B!==G)&&g({row:X,col:B}),e.current.playerCell},[a,h]),T=()=>{c.current=!1,d.current.clear()};return{updatePlayerPos:v,resetMovingState:T,resetFirstMoveState:()=>{u.current=!1}}};function gt(e,t,n,o,i,s){const l=e.row+t*i,r=e.col+n*i,a={row:l,col:r},c=[],d=e.row<0?0:Math.floor(e.row),u=e.col<0?0:Math.floor(e.col);c.push({row:d,col:u});const h=[[-1,0],[1,0],[0,-1],[0,1],[-1,-1],[-1,1],[1,-1],[1,1]];for(const[f,g]of h){const _=d+f,v=u+g;s.isValid(_,v)&&c.push({row:_,col:v})}for(const f of c){const g=fn(f.row,f.col,s);for(const _ of g)if(mn(a,_)<o)return!0}return!1}function fn(e,t,n){const o=[],i=n.grid[e][t];return i.walls.top&&o.push({start:{row:e-.5,col:t-.5},end:{row:e-.5,col:t+.5}}),i.walls.right&&o.push({start:{row:e-.5,col:t+.5},end:{row:e+.5,col:t+.5}}),i.walls.bottom&&o.push({start:{row:e+.5,col:t-.5},end:{row:e+.5,col:t+.5}}),i.walls.left&&o.push({start:{row:e-.5,col:t-.5},end:{row:e+.5,col:t-.5}}),o}function mn(e,t){const{start:n,end:o}=t,i=o.col-n.col,s=o.row-n.row,l=e.col-n.col,r=e.row-n.row,a=i*i+s*s;if(a===0)return Math.sqrt(l*l+r*r);const c=Math.max(0,Math.min(1,(l*i+r*s)/a)),d=n.col+c*i,u=n.row+c*s,h=e.col-d,f=e.row-u;return Math.sqrt(h*h+f*f)}function _n(e,t,n){if(!n.isValid(t.row,t.col))return!1;const o=e.col>=t.col-.5&&e.col<=t.col+.5,i=e.row>=t.row+.5,s=e.row>=t.row-.5;return o&&i&&s}function pt(e,t,n,o,i){if(!e||!t.maze)return;const{canvasWidth:s,canvasHeight:l}=n,{cellWidth:r,cellHeight:a}=o,{maze:c,playerCell:d,exitCell:u,foodCells:h,showClue:f,playerPath:g,visitCounts:_}=t,{padding:v,wallWidth:T,wallColor:b,playerColor:C,playerRadius:p,foodColor:S,backgroundColor:w,clueColor:y,exitColor:z,exitWallWidth:N,exitDashArray:E}=i;e.clearRect(0,0,s,l),e.save(),e.fillStyle=w,e.fillRect(0,0,s,l),e.restore(),f&&yn({ctx:e,playerPath:g,visitCounts:_,cellWidth:r,cellHeight:a,padding:v,clueColor:y}),vn({ctx:e,maze:c,cellWidth:r,cellHeight:a,padding:v,wallColor:b,wallWidth:T}),pn({ctx:e,maze:c,exitCell:u,cellWidth:r,cellHeight:a,padding:v,exitColor:z,exitWallWidth:N,exitDashArray:E}),wn({ctx:e,foodCells:h,cellWidth:r,cellHeight:a,padding:v,foodColor:S}),gn({ctx:e,playerCell:d,playerRadius:p,cellWidth:r,cellHeight:a,padding:v,playerColor:C})}function vn({ctx:e,maze:t,cellWidth:n,cellHeight:o,padding:i,wallColor:s,wallWidth:l}){e.save(),e.strokeStyle=s,e.lineWidth=l,e.lineCap="round",e.beginPath(),bn(t,n,o,i).forEach(a=>{e.moveTo(a.x1,a.y1),e.lineTo(a.x2,a.y2)}),e.stroke(),e.restore()}function gn({ctx:e,playerCell:t,playerRadius:n,cellWidth:o,cellHeight:i,padding:s,playerColor:l}){const{x:r,y:a}=ve(t.row,t.col,o,i,s),c=Math.min(o,i)*Math.min(n,.5);e.save(),e.fillStyle=l,e.beginPath(),e.arc(r,a,c,0,Math.PI*2),e.fill(),e.restore()}function pn({ctx:e,maze:t,exitCell:n,cellWidth:o,cellHeight:i,padding:s,exitColor:l,exitWallWidth:r,exitDashArray:a=[8,12]}){const{row:c,col:d}=n;if(!t.isValid(c,d))return;const u=s+d*o,h=s+c*i;e.save(),e.globalCompositeOperation="destination-out",e.lineWidth=r,e.lineCap="round",e.beginPath(),e.moveTo(u,h+i),e.lineTo(u+o,h+i),e.stroke(),e.globalCompositeOperation="source-over",e.strokeStyle=l,e.lineWidth=r,e.setLineDash(a),e.beginPath(),e.moveTo(u,h+i),e.lineTo(u+o,h+i),e.stroke(),e.restore()}function wn({ctx:e,foodCells:t,cellWidth:n,cellHeight:o,padding:i,foodColor:s}){e.fillStyle=s;const l=Math.min(n,o)*.25;t.forEach(r=>{const{x:a,y:c}=ve(r.row,r.col,n,o,i);Cn(e,a,c,l*1.2,5,l*.6)})}function Cn(e,t,n,o,i,s){e.save(),e.beginPath();for(let l=0;l<i*2;l++){const r=l%2===0?o:s,a=Math.PI*l/i;e.lineTo(t+r*Math.sin(a),n+r*Math.cos(a))}e.closePath(),e.fill(),e.restore()}function yn({ctx:e,playerPath:t,visitCounts:n,cellWidth:o,cellHeight:i,padding:s,clueColor:l}){if(!(!t||t.length<2||!n)){e.save();for(let r=1;r<t.length;r++){const a=t[r-1],c=t[r],d=`${a.row},${a.col}-${c.row},${c.col}`,u=`${c.row},${c.col}-${a.row},${a.col}`,h=(n[d]||0)+(n[u]||0),f=Math.min(.2+h*.1,.9),g=Math.max(3,o*.1)+h*.5;try{e.strokeStyle=l.replace(")",`, ${f})`).replace("rgb(","rgba(")}catch{e.strokeStyle=`rgba(255, 0, 0, ${f})`}e.lineWidth=g,e.lineCap="round",e.lineJoin="round";const{x:_,y:v}=ve(a.row,a.col,o,i,s),{x:T,y:b}=ve(c.row,c.col,o,i,s);e.beginPath(),e.moveTo(_,v),e.lineTo(T,b),e.stroke()}e.restore()}}function bn(e,t,n,o){const i=[];for(let s=0;s<e.rows;s++)for(let l=0;l<e.cols;l++){const r=e.grid[s][l],a=o+l*t,c=o+s*n;r.walls.top&&i.push({x1:a,y1:c,x2:a+t,y2:c}),r.walls.right&&i.push({x1:a+t,y1:c,x2:a+t,y2:c+n}),r.walls.bottom&&i.push({x1:a,y1:c+n,x2:a+t,y2:c+n}),r.walls.left&&i.push({x1:a,y1:c,x2:a,y2:c+n})}return i}function ve(e,t,n,o,i){return{x:i+t*n+n/2,y:i+e*o+o/2}}function Tn(e){return function(){let t=e+=1831565813;return t=Math.imul(t^t>>>15,t|1),t^=t+Math.imul(t^t>>>7,t|61),((t^t>>>14)>>>0)/4294967296}}class kn{constructor(t,n){this.row=t,this.col=n}visited=!1;walls={top:!0,right:!0,bottom:!0,left:!0}}class wt{rows;cols;grid;seed;random;constructor(t,n,o,i,s={row:0,col:0},l={row:t-1,col:n-1}){this.rows=t,this.cols=n,this.seed=i??Math.floor(Math.random()*1e6),this.random=Tn(this.seed),this.grid=this.initializeGrid(),this.generate(o,s,l)}initializeGrid(){const t=[];for(let n=0;n<this.rows;n++){t[n]=[];for(let o=0;o<this.cols;o++)t[n][o]=new kn(n,o)}return t}isValid(t,n){return t>=0&&t<this.rows&&n>=0&&n<this.cols}getNeighbors(t,n){const o=[],i=[{r:-1,c:0},{r:0,c:1},{r:1,c:0},{r:0,c:-1}];for(const s of i){const l=t+s.r,r=n+s.c;this.isValid(l,r)&&o.push({row:l,col:r})}return o}getUnvisitedNeighbors(t,n){return this.getNeighbors(t,n).filter(o=>!this.grid[o.row][o.col].visited)}getVisitedNeighbors(t,n){return this.getNeighbors(t,n).filter(o=>this.grid[o.row][o.col].visited)}removeWall(t,n,o,i){const s=this.grid[t][n],l=this.grid[o][i];t===o+1?(s.walls.top=!1,l.walls.bottom=!1):t===o-1?(s.walls.bottom=!1,l.walls.top=!1):n===i+1?(s.walls.left=!1,l.walls.right=!1):n===i-1&&(s.walls.right=!1,l.walls.left=!1)}generate(t,n={row:0,col:0},o={row:this.rows-1,col:this.cols-1}){switch(t){case"backtracking":this.generateWithBacktracking();break;case"prims":this.generateWithPrims();break;default:throw new Error(`Unknown maze generation method: ${t}`)}this.addOpenings(n,o)}generateWithBacktracking(){const t=[],n=this.randomNumber(this.rows),o=this.randomNumber(this.cols);let i={row:n,col:o};for(this.grid[n][o].visited=!0,t.push(i);t.length>0;){i=t[t.length-1];const{row:s,col:l}=i,r=this.getUnvisitedNeighbors(s,l);if(r.length>0){const a=this.randomPick(r),{row:c,col:d}=a;this.removeWall(s,l,c,d),this.grid[c][d].visited=!0,t.push(a)}else t.pop()}}generateWithPrims(){const t=[],n=(s,l)=>{const r=this.getNeighbors(s,l);for(const a of r)!this.grid[a.row][a.col].visited&&!t.some(c=>c.row===a.row&&c.col===a.col)&&t.push(a)},o=this.randomNumber(this.rows),i=this.randomNumber(this.cols);for(this.grid[o][i].visited=!0,n(o,i);t.length>0;){const s=this.randomNumber(t.length),l=t[s],{row:r,col:a}=l,c=this.getVisitedNeighbors(r,a);if(c.length>0){const d=this.randomPick(c);this.removeWall(r,a,d.row,d.col),this.grid[r][a].visited=!0,n(r,a)}t.splice(s,1)}}addOpenings(t,n){this.grid[t.row][t.col].walls.top=!1,this.isValid(n.row,n.col)&&(this.grid[n.row][n.col].walls.bottom=!1)}randomNumber(t){return Math.floor(this.random()*t)}randomPick(t){return t[Math.floor(this.random()*t.length)]}}const Ct=(e,t,n)=>{if(!e.isValid(t,n))return!1;const o=e.grid[t][n];return!o.walls.top||!o.walls.right||!o.walls.bottom||!o.walls.left},Sn=e=>e===1?2:e>=2&&e<=5?3:e>=6&&e<=11?4:e>=12&&e<=15?5:6,zn=(e,t)=>{if(!t)return console.error(`Cannot find Level ${e}'s config.`),null;const{size:n,seed:o,method:i,entry:s,exit:l}=t,r=n,a=n,c=s||{row:0,col:0},d=l||{row:r-1,col:a-1},u=new wt(r,a,i,o,c,d),h=Sn(e),f=[];for(let g=0;g<h;g++){let _;do _={row:Math.floor(u.random()*r),col:Math.floor(u.random()*a)};while(_.row===c.row&&_.col===c.col||_.row===d.row&&_.col===d.col||!Ct(u,_.row,_.col)||f.some(v=>v.row===_.row&&v.col===_.col));f.push(_)}return{isGameActive:!0,levelTransitioning:!1,maze:u,playerCell:c,exitCell:d,foodCells:f,playerAtExit:!1,foodCollected:0,totalFoodCount:h,showClue:!1,playerPath:[c],visitCounts:{[`${c.row},${c.col}`]:1}}},En=({size:e,seed:t,method:n,foodCount:o,foodRace:i,clue:s})=>{const l=e,r=e,a={row:0,col:0},c={row:l-1,col:r-1},d=new wt(l,r,n,t,a,c),u=[];if(i)for(let h=0;h<o;h++){let f,g=0;do f={row:Math.floor(d.random()*l),col:Math.floor(d.random()*r)},g++;while(g<50&&(f.row===a.row&&f.col===a.col||f.row===c.row&&f.col===c.col||!Ct(d,f.row,f.col)||u.some(_=>_.row===f.row&&_.col===f.col)));g<50&&u.push(f)}return{isGameActive:!0,levelTransitioning:!1,maze:d,playerCell:a,exitCell:c,foodCells:u,playerAtExit:!1,foodCollected:0,totalFoodCount:i?o:0,showClue:s,playerPath:[a],visitCounts:{[`${a.row},${a.col}`]:1}}};function Ln(){const{setGamePlayState:e,gamePlayState:t,gamePlayStateRef:n,gameProgress:o,config:i}=ne(),s=x(null),l=x(null),{i18n:r,levelConfig:a,renderConfig:c}=i,d=oe(a),u=x(d.getLevelConfig(o.currentLevel));I(()=>{s.current&&j.attachTo(s.current)},[]);const h=x(),f=mt(l,()=>{h.current?.()}),g=_t(l,t,c.padding);I(()=>{u.current=d.getLevelConfig(o.currentLevel)},[o.currentLevel]);const _=()=>{const C=zn(o.currentLevel,u.current);C&&e(p=>({...p,...C}))};I(()=>{_()},[o.currentLevel]);const v=()=>{_()},{updatePlayerPos:T,resetMovingState:b}=vt({gamePlayStateRef:n,setGamePlayState:e,playerRadius:c.playerRadius,moveSpeed:c.gridMoveSpeed,onFoodCollected:()=>{const C=n.current.totalFoodCount-n.current.foodCollected-1;C>0?j.show(r.foodCollectedToast.replace("%NUM%",C.toString()),3e3):j.show(r.allFoodCollectedToast)}});return I(()=>{b()},[o.currentLevel,b]),I(()=>{let C,p=!document.hidden;const S=()=>{const z=l.current?.getContext("2d"),N=n.current;if(!(p&&N?.isGameActive&&z&&N?.maze)){C=requestAnimationFrame(S);return}T(),w(),C=requestAnimationFrame(S)},w=()=>{const z=l.current?.getContext("2d"),N=n.current;if(z&&N?.maze){const E=u.current?.wallWidth||c?.wallWidth,k=u.current?.exitColor||c?.exitColor,L=u.current?.exitWallWidth||c?.exitWallWidth,P=u.current?.exitDashArray||c?.exitDashArray;pt(z,N,f.current,g.current,{...c,wallWidth:E,exitColor:k,exitWallWidth:L,exitDashArray:P})}};h.current=w;const y=z=>{const N=p;p=!document.hidden&&document.visibilityState==="visible"&&(!z||z.type!=="blur"),!N&&p?n.current?.levelTransitioning===!1&&e({...n.current,isGameActive:!0}):N&&!p&&e({...n.current,isGameActive:!1})};return document.addEventListener("visibilitychange",y),window.addEventListener("blur",y),window.addEventListener("focus",y),C=requestAnimationFrame(S),()=>{cancelAnimationFrame(C),document.removeEventListener("visibilitychange",y),window.removeEventListener("blur",y),window.removeEventListener("focus",y)}},[]),I(()=>{j.show(r.useArrowKeyTips,3e3)},[]),m("div",{className:"maze-game-container",children:[m($t,{}),m(hn,{onRetry:v}),m("div",{className:"maze-canvas-container",ref:s,children:m("canvas",{ref:l,className:"maze-game-canvas"})})]})}const Nn=e=>{const t=Math.floor(e/60),n=e%60;return`${t.toString().padStart(2,"0")}:${n.toString().padStart(2,"0")}`},Mn=({timer:e})=>{const[t,n]=U(e),o=x(),i=x(!1),s=x(0);return I(()=>{const l=()=>{!i.current&&!o.current&&(i.current=!0,o.current=setInterval(()=>{n(a=>(s.current=e-a+1,a<=1?(clearInterval(o.current),window.dispatchEvent(new CustomEvent("maze:timeUp")),0):a-1))},1e3))},r=()=>{clearInterval(o.current),o.current=void 0,window.dispatchEvent(new CustomEvent("maze:timeUsed",{detail:{timeUsed:s.current}}))};return window.addEventListener("maze:firstMove",l),window.addEventListener("maze:gameSuccess",r),()=>{window.removeEventListener("maze:firstMove",l),window.removeEventListener("maze:gameSuccess",r),clearInterval(o.current)}},[e]),I(()=>{o.current&&(clearInterval(o.current),o.current=void 0),n(e),i.current=!1,s.current=0},[e]),m("div",{className:"single-maze-timer",children:m("span",{className:`maze-timer-text ${t<=10&&i.current?"maze-timer-warning":""}`,children:["⏱️ ",Nn(t)]})})};function An({config:e}){const{size:t,seed:n,method:o,foodCount:i,foodRace:s,clue:l,renderConfig:r,successCallback:a,failCallback:c,timer:d,i18n:u}=e,[h,f]=U({...Me}),[g,_]=U(!1),[v,T]=U(!0),[b,C]=U(!1),[p,S]=U(""),w=x(0),y=x(!1),z=x(!1),N=x(null),E=x(null),k=x(h),L=x(),P=mt(N,()=>{L.current?.()}),R=_t(N,h,r.padding);I(()=>{k.current=h},[h]);const{updatePlayerPos:O,resetMovingState:$,resetFirstMoveState:G}=vt({gamePlayStateRef:k,setGamePlayState:f,playerRadius:r.playerRadius,moveSpeed:r.gridMoveSpeed,onFoodCollected:()=>{console.log("Food collected in single maze")},onExitReached:()=>{if(!y.current){if(s&&k.current.foodCollected<k.current.totalFoodCount){S(`⭐️ ${u.foodMsg}`),C(!0),requestAnimationFrame(()=>{f(D=>({...D,playerAtExit:!1,isGameActive:!0,levelTransitioning:!1}))});return}B()}},onFirstMove:()=>{window.dispatchEvent(new CustomEvent("maze:firstMove"))}}),X=()=>{y.current=!0,S(`⏰ ${u.failMsg}`),C(!0),f({...k.current,isGameActive:!1})},B=()=>{y.current=!0,z.current=!0,S(`🎉 ${u.successMsg}`),C(!0),window.dispatchEvent(new CustomEvent("maze:gameSuccess"))},Z=()=>{C(!1),y.current&&(T(!1),f(D=>({...D,showClue:!0})),z.current?a?.(w.current):c?.())};return I(()=>{(async()=>{_(!0);try{const W=En({size:t,seed:n,method:o,foodCount:i,foodRace:s,clue:l});k.current=W,f(W)}catch(W){console.error("Error generating single maze:",W)}finally{_(!1)}})()},[e]),I(()=>{let D;const W=!document.hidden,Q=()=>{const Ce=N.current?.getContext("2d"),ie=k.current;if(!(W&&ie?.isGameActive&&Ce&&ie?.maze)){D=requestAnimationFrame(Q);return}O(),we(),D=requestAnimationFrame(Q)},we=()=>{const Ce=N.current?.getContext("2d"),ie=k.current;Ce&&ie?.maze&&pt(Ce,ie,P.current,R.current,r)};return L.current=we,D=requestAnimationFrame(Q),()=>{cancelAnimationFrame(D)}},[]),I(()=>{$(),G()},[e,$,G]),I(()=>{const D=W=>{w.current=W.detail.timeUsed};return window.addEventListener("maze:timeUsed",D),window.addEventListener("maze:timeUp",X),()=>{window.removeEventListener("maze:timeUsed",D),window.removeEventListener("maze:timeUp",X)}},[]),g?m("div",{className:"single-maze-loading",children:m("div",{children:"Generating maze..."})}):h?m("div",{className:"maze-game-container",children:[v&&m(Mn,{timer:d}),m("div",{className:"single-maze-canvas-container",ref:E,children:m("canvas",{ref:N,className:"maze-game-canvas"})}),m(re,{isOpen:b,title:p,noConfirm:!0,cancelText:"OK",onCancel:Z})]}):m("div",{className:"single-maze-error",children:m("div",{children:"Failed to generate maze"})})}const yt=[[{size:8,seed:12345,method:"backtracking",wallWidth:4,exitWallWidth:6,exitDashArray:[8,12]},{size:8,seed:23456,method:"backtracking",exitColor:"#33f",exitWallWidth:4,exitDashArray:[8,16]},{size:8,seed:34567,method:"prims"},{size:8,seed:45678,method:"backtracking"},{size:9,seed:56789,method:"prims"},{size:9,seed:67890,method:"backtracking"},{size:9,seed:78901,method:"prims"},{size:9,seed:89012,method:"backtracking"},{size:10,seed:90123,method:"prims"},{size:11,seed:11111,method:"backtracking"},{size:12,seed:22222,method:"prims"},{size:13,seed:33333,method:"backtracking"}],[{size:12,seed:44444,method:"prims"},{size:12,seed:55555,method:"backtracking"},{size:12,seed:66666,method:"prims"},{size:12,seed:77777,method:"backtracking"},{size:13,seed:88888,method:"prims"},{size:13,seed:99999,method:"backtracking"},{size:13,seed:12121,method:"prims"},{size:14,seed:23232,method:"backtracking"},{size:15,seed:34343,method:"prims"},{size:16,seed:45454,method:"backtracking"},{size:17,seed:56565,method:"prims"},{size:18,seed:67676,method:"backtracking"}],[{size:19,seed:78787,method:"prims"},{size:20,seed:89898,method:"backtracking"},{size:21,seed:90909,method:"prims"},{size:22,seed:10101,method:"backtracking"},{size:23,seed:20202,method:"prims"},{size:25,seed:30303,method:"backtracking"},{size:27,seed:40404,method:"prims"},{size:29,seed:50505,method:"backtracking"},{size:31,seed:60606,method:"prims"},{size:33,seed:70707,method:"backtracking"},{size:37,seed:80808,method:"prims"},{size:40,seed:90909,method:"backtracking"}],[{size:41,seed:10111,method:"prims"},{size:42,seed:11121,method:"backtracking"},{size:43,seed:12131,method:"prims"},{size:44,seed:13141,method:"backtracking"},{size:45,seed:14151,method:"prims"},{size:46,seed:15161,method:"backtracking"},{size:47,seed:16171,method:"prims"},{size:48,seed:17181,method:"backtracking"},{size:49,seed:18191,method:"prims"},{size:50,seed:19201,method:"backtracking"},{size:51,seed:20211,method:"prims"},{size:52,seed:21221,method:"backtracking"}],[{size:53,seed:22231,method:"prims"},{size:54,seed:23241,method:"backtracking"},{size:55,seed:24251,method:"prims"},{size:56,seed:25261,method:"backtracking"},{size:57,seed:26271,method:"prims"},{size:58,seed:27281,method:"backtracking"},{size:59,seed:28291,method:"prims"},{size:60,seed:29301,method:"backtracking"},{size:62,seed:30311,method:"prims"},{size:64,seed:31321,method:"backtracking"},{size:66,seed:32331,method:"prims"},{size:68,seed:33341,method:"backtracking"}]],bt={gridMoveSpeed:.07,padding:10,wallWidth:2,wallColor:"#000000",foodColor:"#4CAF50",clueColor:"rgb(255,0,0)",backgroundColor:"#ffffff",playerColor:"#4CAF50",playerRadius:.2,exitColor:"#F44336",exitWallWidth:4,exitDashArray:[8,12]},ge={lcPrefix:"maze-",i18n:{reset:"Reset",resetTip:"Reset all game data and highest score.",confirmReset:"Confirm Reset",confirmResetMessage:"Are you sure you want to reset the game? All progress will be lost.",cancel:"Cancel",close:"Close",confirm:"Confirm",resetDoneToast:"Game reset! Starting from Level 1...",confirmClue:"Confirm to turn on clue?",confirmClueMessage:"Are you sure you want to turn on clue? Your will lose 1 ★.",level:"Level",tier:"Tier",settings:"Settings",clueOn:"Clue: ON",clueOff:"Clue: OFF",foodCollectedToast:"Food collected! %NUM% remaining.",allFoodCollectedToast:"All food collected! Head to the exit.",congratulations:"Congratulations!",findYourExit:"Find your exit!",withoutClue:"Without clue!",withClue:"You used the clue!",collectAllStars:"Collect all stars!",notCollectAllStars:"Not collect all stars.",nextLevel:"Next Level ➤",spacebarTip:"Spacebar",retry:"Retry",levelComplete:"Level Complete",starsCollected:"Stars Collected",avgStarPerLevel:"Avg. Stars per Level",levelCompleteToast:"Level completed! 🎉",tierUnlockedToast:"Tier %TIER% unlocked! 🎉",levelGoToast:"Level %LEVEL% - Go!",levelRestartToast:"Level restarted",allLevelsCompleted:"You completed all levels!",lastOK:"OK",notCompleteLevel:"You still have levels not collected all stars! Try again to collect them all!",continueMessage:"You still have levels where you haven't collected all stars. Try again to collect them all!",continue:"Continue",cluePathEnabled:"Clue Path Enabled",cluePathDisabled:"Clue Path Disabled",useArrowKeyTips:"Use arrow keys to navigate the maze. Press'C' to toggle path clue."},renderConfig:bt,levelConfig:yt},pe={i18n:{successMsg:"Congratulations! You completed the maze!",failMsg:"Time is up!",foodMsg:"Please collect all stars before leaving!"},size:8,seed:12345,method:"backtracking",clue:!1,foodCount:0,foodRace:!1,renderConfig:bt,timer:10*60,successCallback:()=>{console.log("🎉 Single maze completed successfully!")},failCallback:()=>{console.log("⏰ Time is up! Game failed.")}};function Pn({config:e={}}){const t={...ge.i18n,...e.i18n||{}},n={...ge.renderConfig,...e.renderConfig||{}},o=e.levelConfig||yt,i={...ge,...e,i18n:t,levelConfig:o,renderConfig:n};return m(Ft,{config:i,children:m(Ln,{})})}function In({config:e={}}){const t={...pe.i18n,...e.i18n||{}},n={...pe.renderConfig,...e.renderConfig||{}},o={...pe,...e,i18n:t,renderConfig:n};return m(An,{config:o})}const xn={root:"https://unpkg.com/@roudanio/maze@0.2.4/dist/",...ge};`${JSON.stringify(xn,null,2)}`;const Rn={root:"https://unpkg.com/@roudanio/maze@0.2.4/dist/",...pe};return`${JSON.stringify(Rn,(e,t)=>typeof t=="function"?t.toString():t,2)}`,{showNotice(){console.warn("Cannot find the root element");const e=document.createElement("div");e.style.textAlign="center",e.style.padding="20px",e.innerHTML="Cannot find the root element",document.body.append(e)},addLoadingIndicator(e){const t=document.createElement("div"),n=document.createElement("div");t.style.cssText=`
|
|
1
|
+
var Maze=(function(){"use strict";var le,N,Fe,X,Re,Oe,De,$e,ye,be,Te,Ue,te={},Ge=[],Lt=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,ce=Array.isArray;function H(e,t){for(var n in t)e[n]=t[n];return e}function Se(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function Nt(e,t,n){var o,i,s,a={};for(s in t)s=="key"?o=t[s]:s=="ref"?i=t[s]:a[s]=t[s];if(arguments.length>2&&(a.children=arguments.length>3?le.call(arguments,2):n),typeof e=="function"&&e.defaultProps!=null)for(s in e.defaultProps)a[s]===void 0&&(a[s]=e.defaultProps[s]);return ue(e,a,o,i,null)}function ue(e,t,n,o,i){var s={type:e,props:t,key:n,ref:o,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:i??++Fe,__i:-1,__u:0};return i==null&&N.vnode!=null&&N.vnode(s),s}function de(e){return e.children}function fe(e,t){this.props=e,this.context=t}function K(e,t){if(t==null)return e.__?K(e.__,e.__i+1):null;for(var n;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null)return n.__e;return typeof e.type=="function"?K(e):null}function je(e){var t,n;if((e=e.__)!=null&&e.__c!=null){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null){e.__e=e.__c.base=n.__e;break}return je(e)}}function ke(e){(!e.__d&&(e.__d=!0)&&X.push(e)&&!he.__r++||Re!=N.debounceRendering)&&((Re=N.debounceRendering)||Oe)(he)}function he(){for(var e,t,n,o,i,s,a,r=1;X.length;)X.length>r&&X.sort(De),e=X.shift(),r=X.length,e.__d&&(n=void 0,o=void 0,i=(o=(t=e).__v).__e,s=[],a=[],t.__P&&((n=H({},o)).__v=o.__v+1,N.vnode&&N.vnode(n),Ee(t.__P,n,o,t.__n,t.__P.namespaceURI,32&o.__u?[i]:null,s,i??K(o),!!(32&o.__u),a),n.__v=o.__v,n.__.__k[n.__i]=n,He(s,n,a),o.__e=o.__=null,n.__e!=i&&je(n)));he.__r=0}function We(e,t,n,o,i,s,a,r,c,l,d){var u,f,h,m,v,g,p,T=o&&o.__k||Ge,C=t.length;for(c=At(n,t,T,c,C),u=0;u<C;u++)(h=n.__k[u])!=null&&(f=h.__i==-1?te:T[h.__i]||te,h.__i=u,g=Ee(e,h,f,i,s,a,r,c,l,d),m=h.__e,h.ref&&f.ref!=h.ref&&(f.ref&&Me(f.ref,null,h),d.push(h.ref,h.__c||m,h)),v==null&&m!=null&&(v=m),(p=!!(4&h.__u))||f.__k===h.__k?c=qe(h,c,e,p):typeof h.type=="function"&&g!==void 0?c=g:m&&(c=m.nextSibling),h.__u&=-7);return n.__e=v,c}function At(e,t,n,o,i){var s,a,r,c,l,d=n.length,u=d,f=0;for(e.__k=new Array(i),s=0;s<i;s++)(a=t[s])!=null&&typeof a!="boolean"&&typeof a!="function"?(c=s+f,(a=e.__k[s]=typeof a=="string"||typeof a=="number"||typeof a=="bigint"||a.constructor==String?ue(null,a,null,null,null):ce(a)?ue(de,{children:a},null,null,null):a.constructor==null&&a.__b>0?ue(a.type,a.props,a.key,a.ref?a.ref:null,a.__v):a).__=e,a.__b=e.__b+1,r=null,(l=a.__i=Pt(a,n,c,u))!=-1&&(u--,(r=n[l])&&(r.__u|=2)),r==null||r.__v==null?(l==-1&&(i>d?f--:i<d&&f++),typeof a.type!="function"&&(a.__u|=4)):l!=c&&(l==c-1?f--:l==c+1?f++:(l>c?f--:f++,a.__u|=4))):e.__k[s]=null;if(u)for(s=0;s<d;s++)(r=n[s])!=null&&(2&r.__u)==0&&(r.__e==o&&(o=K(r)),Ye(r,r));return o}function qe(e,t,n,o){var i,s;if(typeof e.type=="function"){for(i=e.__k,s=0;i&&s<i.length;s++)i[s]&&(i[s].__=e,t=qe(i[s],t,n,o));return t}e.__e!=t&&(o&&(t&&e.type&&!t.parentNode&&(t=K(e)),n.insertBefore(e.__e,t||null)),t=e.__e);do t=t&&t.nextSibling;while(t!=null&&t.nodeType==8);return t}function Pt(e,t,n,o){var i,s,a,r=e.key,c=e.type,l=t[n],d=l!=null&&(2&l.__u)==0;if(l===null&&e.key==null||d&&r==l.key&&c==l.type)return n;if(o>(d?1:0)){for(i=n-1,s=n+1;i>=0||s<t.length;)if((l=t[a=i>=0?i--:s++])!=null&&(2&l.__u)==0&&r==l.key&&c==l.type)return a}return-1}function Be(e,t,n){t[0]=="-"?e.setProperty(t,n??""):e[t]=n==null?"":typeof n!="number"||Lt.test(t)?n:n+"px"}function me(e,t,n,o,i){var s,a;e:if(t=="style")if(typeof n=="string")e.style.cssText=n;else{if(typeof o=="string"&&(e.style.cssText=o=""),o)for(t in o)n&&t in n||Be(e.style,t,"");if(n)for(t in n)o&&n[t]==o[t]||Be(e.style,t,n[t])}else if(t[0]=="o"&&t[1]=="n")s=t!=(t=t.replace($e,"$1")),a=t.toLowerCase(),t=a in e||t=="onFocusOut"||t=="onFocusIn"?a.slice(2):t.slice(2),e.l||(e.l={}),e.l[t+s]=n,n?o?n.u=o.u:(n.u=ye,e.addEventListener(t,s?Te:be,s)):e.removeEventListener(t,s?Te:be,s);else{if(i=="http://www.w3.org/2000/svg")t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(t!="width"&&t!="height"&&t!="href"&&t!="list"&&t!="form"&&t!="tabIndex"&&t!="download"&&t!="rowSpan"&&t!="colSpan"&&t!="role"&&t!="popover"&&t in e)try{e[t]=n??"";break e}catch{}typeof n=="function"||(n==null||n===!1&&t[4]!="-"?e.removeAttribute(t):e.setAttribute(t,t=="popover"&&n==1?"":n))}}function Ve(e){return function(t){if(this.l){var n=this.l[t.type+e];if(t.t==null)t.t=ye++;else if(t.t<n.u)return;return n(N.event?N.event(t):t)}}}function Ee(e,t,n,o,i,s,a,r,c,l){var d,u,f,h,m,v,g,p,T,C,w,z,y,S,k,L,E,M=t.type;if(t.constructor!=null)return null;128&n.__u&&(c=!!(32&n.__u),s=[r=t.__e=n.__e]),(d=N.__b)&&d(t);e:if(typeof M=="function")try{if(p=t.props,T="prototype"in M&&M.prototype.render,C=(d=M.contextType)&&o[d.__c],w=d?C?C.props.value:d.__:o,n.__c?g=(u=t.__c=n.__c).__=u.__E:(T?t.__c=u=new M(p,w):(t.__c=u=new fe(p,w),u.constructor=M,u.render=It),C&&C.sub(u),u.props=p,u.state||(u.state={}),u.context=w,u.__n=o,f=u.__d=!0,u.__h=[],u._sb=[]),T&&u.__s==null&&(u.__s=u.state),T&&M.getDerivedStateFromProps!=null&&(u.__s==u.state&&(u.__s=H({},u.__s)),H(u.__s,M.getDerivedStateFromProps(p,u.__s))),h=u.props,m=u.state,u.__v=t,f)T&&M.getDerivedStateFromProps==null&&u.componentWillMount!=null&&u.componentWillMount(),T&&u.componentDidMount!=null&&u.__h.push(u.componentDidMount);else{if(T&&M.getDerivedStateFromProps==null&&p!==h&&u.componentWillReceiveProps!=null&&u.componentWillReceiveProps(p,w),!u.__e&&u.shouldComponentUpdate!=null&&u.shouldComponentUpdate(p,u.__s,w)===!1||t.__v==n.__v){for(t.__v!=n.__v&&(u.props=p,u.state=u.__s,u.__d=!1),t.__e=n.__e,t.__k=n.__k,t.__k.some(function(b){b&&(b.__=t)}),z=0;z<u._sb.length;z++)u.__h.push(u._sb[z]);u._sb=[],u.__h.length&&a.push(u);break e}u.componentWillUpdate!=null&&u.componentWillUpdate(p,u.__s,w),T&&u.componentDidUpdate!=null&&u.__h.push(function(){u.componentDidUpdate(h,m,v)})}if(u.context=w,u.props=p,u.__P=e,u.__e=!1,y=N.__r,S=0,T){for(u.state=u.__s,u.__d=!1,y&&y(t),d=u.render(u.props,u.state,u.context),k=0;k<u._sb.length;k++)u.__h.push(u._sb[k]);u._sb=[]}else do u.__d=!1,y&&y(t),d=u.render(u.props,u.state,u.context),u.state=u.__s;while(u.__d&&++S<25);u.state=u.__s,u.getChildContext!=null&&(o=H(H({},o),u.getChildContext())),T&&!f&&u.getSnapshotBeforeUpdate!=null&&(v=u.getSnapshotBeforeUpdate(h,m)),L=d,d!=null&&d.type===de&&d.key==null&&(L=Xe(d.props.children)),r=We(e,ce(L)?L:[L],t,n,o,i,s,a,r,c,l),u.base=t.__e,t.__u&=-161,u.__h.length&&a.push(u),g&&(u.__E=u.__=null)}catch(b){if(t.__v=null,c||s!=null)if(b.then){for(t.__u|=c?160:128;r&&r.nodeType==8&&r.nextSibling;)r=r.nextSibling;s[s.indexOf(r)]=null,t.__e=r}else{for(E=s.length;E--;)Se(s[E]);ze(t)}else t.__e=n.__e,t.__k=n.__k,b.then||ze(t);N.__e(b,t,n)}else s==null&&t.__v==n.__v?(t.__k=n.__k,t.__e=n.__e):r=t.__e=xt(n.__e,t,n,o,i,s,a,c,l);return(d=N.diffed)&&d(t),128&t.__u?void 0:r}function ze(e){e&&e.__c&&(e.__c.__e=!0),e&&e.__k&&e.__k.forEach(ze)}function He(e,t,n){for(var o=0;o<n.length;o++)Me(n[o],n[++o],n[++o]);N.__c&&N.__c(t,e),e.some(function(i){try{e=i.__h,i.__h=[],e.some(function(s){s.call(i)})}catch(s){N.__e(s,i.__v)}})}function Xe(e){return typeof e!="object"||e==null||e.__b&&e.__b>0?e:ce(e)?e.map(Xe):H({},e)}function xt(e,t,n,o,i,s,a,r,c){var l,d,u,f,h,m,v,g=n.props,p=t.props,T=t.type;if(T=="svg"?i="http://www.w3.org/2000/svg":T=="math"?i="http://www.w3.org/1998/Math/MathML":i||(i="http://www.w3.org/1999/xhtml"),s!=null){for(l=0;l<s.length;l++)if((h=s[l])&&"setAttribute"in h==!!T&&(T?h.localName==T:h.nodeType==3)){e=h,s[l]=null;break}}if(e==null){if(T==null)return document.createTextNode(p);e=document.createElementNS(i,T,p.is&&p),r&&(N.__m&&N.__m(t,s),r=!1),s=null}if(T==null)g===p||r&&e.data==p||(e.data=p);else{if(s=s&&le.call(e.childNodes),g=n.props||te,!r&&s!=null)for(g={},l=0;l<e.attributes.length;l++)g[(h=e.attributes[l]).name]=h.value;for(l in g)if(h=g[l],l!="children"){if(l=="dangerouslySetInnerHTML")u=h;else if(!(l in p)){if(l=="value"&&"defaultValue"in p||l=="checked"&&"defaultChecked"in p)continue;me(e,l,null,h,i)}}for(l in p)h=p[l],l=="children"?f=h:l=="dangerouslySetInnerHTML"?d=h:l=="value"?m=h:l=="checked"?v=h:r&&typeof h!="function"||g[l]===h||me(e,l,h,g[l],i);if(d)r||u&&(d.__html==u.__html||d.__html==e.innerHTML)||(e.innerHTML=d.__html),t.__k=[];else if(u&&(e.innerHTML=""),We(t.type=="template"?e.content:e,ce(f)?f:[f],t,n,o,T=="foreignObject"?"http://www.w3.org/1999/xhtml":i,s,a,s?s[0]:n.__k&&K(n,0),r,c),s!=null)for(l=s.length;l--;)Se(s[l]);r||(l="value",T=="progress"&&m==null?e.removeAttribute("value"):m!=null&&(m!==e[l]||T=="progress"&&!m||T=="option"&&m!=g[l])&&me(e,l,m,g[l],i),l="checked",v!=null&&v!=e[l]&&me(e,l,v,g[l],i))}return e}function Me(e,t,n){try{if(typeof e=="function"){var o=typeof e.__u=="function";o&&e.__u(),o&&t==null||(e.__u=e(t))}else e.current=t}catch(i){N.__e(i,n)}}function Ye(e,t,n){var o,i;if(N.unmount&&N.unmount(e),(o=e.ref)&&(o.current&&o.current!=e.__e||Me(o,null,t)),(o=e.__c)!=null){if(o.componentWillUnmount)try{o.componentWillUnmount()}catch(s){N.__e(s,t)}o.base=o.__P=null}if(o=e.__k)for(i=0;i<o.length;i++)o[i]&&Ye(o[i],t,n||typeof e.type!="function");n||Se(e.__e),e.__c=e.__=e.__e=void 0}function It(e,t,n){return this.constructor(e,n)}function Ke(e,t,n){var o,i,s,a;t==document&&(t=document.documentElement),N.__&&N.__(e,t),i=(o=!1)?null:t.__k,s=[],a=[],Ee(t,e=t.__k=Nt(de,null,[e]),i||te,te,t.namespaceURI,i?null:t.firstChild?le.call(t.childNodes):null,s,i?i.__e:t.firstChild,o,a),He(s,e,a)}function Ft(e){function t(n){var o,i;return this.getChildContext||(o=new Set,(i={})[t.__c]=this,this.getChildContext=function(){return i},this.componentWillUnmount=function(){o=null},this.shouldComponentUpdate=function(s){this.props.value!=s.value&&o.forEach(function(a){a.__e=!0,ke(a)})},this.sub=function(s){o.add(s);var a=s.componentWillUnmount;s.componentWillUnmount=function(){o&&o.delete(s),a&&a.call(s)}}),n.children}return t.__c="__cC"+Ue++,t.__=e,t.Provider=t.__l=(t.Consumer=function(n,o){return n.children(o)}).contextType=t,t}le=Ge.slice,N={__e:function(e,t,n,o){for(var i,s,a;t=t.__;)if((i=t.__c)&&!i.__)try{if((s=i.constructor)&&s.getDerivedStateFromError!=null&&(i.setState(s.getDerivedStateFromError(e)),a=i.__d),i.componentDidCatch!=null&&(i.componentDidCatch(e,o||{}),a=i.__d),a)return i.__E=i}catch(r){e=r}throw e}},Fe=0,fe.prototype.setState=function(e,t){var n;n=this.__s!=null&&this.__s!=this.state?this.__s:this.__s=H({},this.state),typeof e=="function"&&(e=e(H({},n),this.props)),e&&H(n,e),e!=null&&this.__v&&(t&&this._sb.push(t),ke(this))},fe.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),ke(this))},fe.prototype.render=de,X=[],Oe=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,De=function(e,t){return e.__v.__b-t.__v.__b},he.__r=0,$e=/(PointerCapture)$|Capture$/i,ye=0,be=Ve(!1),Te=Ve(!0),Ue=0;var Rt=0;function _(e,t,n,o,i,s){t||(t={});var a,r,c=t;if("ref"in c)for(r in c={},t)r=="ref"?a=t[r]:c[r]=t[r];var l={type:e,props:c,key:n,ref:a,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--Rt,__i:-1,__u:0,__source:i,__self:s};if(typeof e=="function"&&(a=e.defaultProps))for(r in a)c[r]===void 0&&(c[r]=a[r]);return N.vnode&&N.vnode(l),l}var J,x,Le,Je,ne=0,Qe=[],O=N,Ze=O.__b,et=O.__r,tt=O.diffed,nt=O.__c,ot=O.unmount,rt=O.__;function _e(e,t){O.__h&&O.__h(x,e,ne||t),ne=0;var n=x.__H||(x.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({}),n.__[e]}function U(e){return ne=1,Ot(lt,e)}function Ot(e,t,n){var o=_e(J++,2);if(o.t=e,!o.__c&&(o.__=[lt(void 0,t),function(r){var c=o.__N?o.__N[0]:o.__[0],l=o.t(c,r);c!==l&&(o.__N=[l,o.__[1]],o.__c.setState({}))}],o.__c=x,!x.__f)){var i=function(r,c,l){if(!o.__c.__H)return!0;var d=o.__c.__H.__.filter(function(f){return!!f.__c});if(d.every(function(f){return!f.__N}))return!s||s.call(this,r,c,l);var u=o.__c.props!==r;return d.forEach(function(f){if(f.__N){var h=f.__[0];f.__=f.__N,f.__N=void 0,h!==f.__[0]&&(u=!0)}}),s&&s.call(this,r,c,l)||u};x.__f=!0;var s=x.shouldComponentUpdate,a=x.componentWillUpdate;x.componentWillUpdate=function(r,c,l){if(this.__e){var d=s;s=void 0,i(r,c,l),s=d}a&&a.call(this,r,c,l)},x.shouldComponentUpdate=i}return o.__N||o.__}function F(e,t){var n=_e(J++,3);!O.__s&&at(n.__H,t)&&(n.__=e,n.u=t,x.__H.__h.push(n))}function R(e){return ne=5,Q(function(){return{current:e}},[])}function Q(e,t){var n=_e(J++,7);return at(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function it(e,t){return ne=8,Q(function(){return e},t)}function Dt(e){var t=x.context[e.__c],n=_e(J++,9);return n.c=e,t?(n.__==null&&(n.__=!0,t.sub(x)),t.props.value):e.__}function $t(){for(var e;e=Qe.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(ge),e.__H.__h.forEach(Ne),e.__H.__h=[]}catch(t){e.__H.__h=[],O.__e(t,e.__v)}}O.__b=function(e){x=null,Ze&&Ze(e)},O.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),rt&&rt(e,t)},O.__r=function(e){et&&et(e),J=0;var t=(x=e.__c).__H;t&&(Le===x?(t.__h=[],x.__h=[],t.__.forEach(function(n){n.__N&&(n.__=n.__N),n.u=n.__N=void 0})):(t.__h.forEach(ge),t.__h.forEach(Ne),t.__h=[],J=0)),Le=x},O.diffed=function(e){tt&&tt(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(Qe.push(t)!==1&&Je===O.requestAnimationFrame||((Je=O.requestAnimationFrame)||Ut)($t)),t.__H.__.forEach(function(n){n.u&&(n.__H=n.u),n.u=void 0})),Le=x=null},O.__c=function(e,t){t.some(function(n){try{n.__h.forEach(ge),n.__h=n.__h.filter(function(o){return!o.__||Ne(o)})}catch(o){t.some(function(i){i.__h&&(i.__h=[])}),t=[],O.__e(o,n.__v)}}),nt&&nt(e,t)},O.unmount=function(e){ot&&ot(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.forEach(function(o){try{ge(o)}catch(i){t=i}}),n.__H=void 0,t&&O.__e(t,n.__v))};var st=typeof requestAnimationFrame=="function";function Ut(e){var t,n=function(){clearTimeout(o),st&&cancelAnimationFrame(t),setTimeout(e)},o=setTimeout(n,35);st&&(t=requestAnimationFrame(n))}function ge(e){var t=x,n=e.__c;typeof n=="function"&&(e.__c=void 0,n()),x=t}function Ne(e){var t=x;e.__c=e.__(),x=t}function at(e,t){return!e||e.length!==t.length||t.some(function(n,o){return n!==e[o]})}function lt(e,t){return typeof t=="function"?t(e):t}const Gt=e=>({saveGameData(t){try{localStorage.setItem(e,JSON.stringify(t))}catch(n){console.error("Failed to save maze game data:",n)}},loadGameData(){try{const t=localStorage.getItem(e);return t?JSON.parse(t):null}catch(t){return console.error("Failed to load maze game data:",t),null}},resetGameData(){try{localStorage.removeItem(e)}catch(t){console.error("Failed to reset maze game data:",t)}}}),ct=Ft(void 0),ut={currentLevel:1,highestUnlockedLevel:1,currentTier:1,highestUnlockedTier:1,levelScores:{},totalScore:0},dt={isGameActive:!0,levelTransitioning:!1,maze:null,playerCell:{row:0,col:0},exitCell:{row:0,col:0},foodCells:[],fogEnabled:!0,playerAtExit:!1,foodCollected:0,totalFoodCount:0,showClue:!1,playerPath:[],visitCounts:{}},jt=({children:e,config:t})=>{const n=Gt(t.lcPrefix+"progress"),o=n.loadGameData(),i=t.renderConfig?.fogEnabled??!0,s=()=>({...dt,fogEnabled:i}),[a,r]=U(()=>o||{...ut});F(()=>{const h=Object.values(a.levelScores).reduce((m,v)=>m+v,0);r(m=>({...m,totalScore:h}))},[a.levelScores]),F(()=>{n.saveGameData(a)},[a.currentLevel,a.highestUnlockedLevel,a.currentTier,a.highestUnlockedTier,a.levelScores,a.totalScore]);const[c,l]=U({...s()}),d=R(c);F(()=>{d.current=c},[c]);const u=Q(()=>[c.playerAtExit?1:0,c.foodCollected===c.totalFoodCount?1:0,c.showClue?0:1],[c.playerAtExit,c.foodCollected,c.totalFoodCount,c.showClue]),f=()=>{n.resetGameData(),r({...ut}),l({...s()})};return _(ct.Provider,{value:{gameProgress:a,setGameProgress:r,gamePlayState:c,setGamePlayState:l,gamePlayStateRef:d,currentScore:u,config:t,resetGame:f},children:e})},oe=()=>{const e=Dt(ct);if(!e)throw new Error("useGameContext must be used within a GameProvider");return e},re=e=>Q(()=>{const t=e.map(r=>r.length),n=t.reduce((r,c)=>r+c,0),o=e.length,i=r=>{if(r<1||r>n)return 0;let c=0;for(let l=0;l<t.length;l++)if(c+=t[l],r<=c)return l+1;return 0},s=r=>r<1||r>o?0:t.slice(0,r-1).reduce((c,l)=>c+l,0)+1,a={getTotalLevels:()=>n,getTotalTiers:()=>o,getTierLevelsRange:r=>{if(r<1||r>o)return[0,0];const c=s(r),l=c+t[r-1]-1;return[c,l]},getTierByLevel:i,getFirstLevelOfTier:s,getLevelConfig:r=>{if(r<1||r>n)return null;const c=i(r),l=s(c),d=r-l;return e[c-1][d]},getTierConfig:r=>r<1||r>o?null:e[r-1],isLevelUnlocked:(r,c)=>r<=c,isTierUnlocked:(r,c)=>r<=c,getNextLevelInfo:r=>{if(r>=n)return null;const c=r+1,l=i(r),d=i(c);return{nextLevel:c,nextTier:d,isTierChange:d>l}},getCurrentTierProgress:(r,c)=>{const[l,d]=a.getTierLevelsRange(c),u=r-l+1,f=d-l+1;return{current:u,total:f}},isLastLevelInTier:r=>{const c=i(r),[,l]=a.getTierLevelsRange(c);return r===l},getPreviousLevelInfo:r=>{if(r<=1)return null;const c=r-1,l=i(r),d=i(c);return{prevLevel:c,prevTier:d,isTierChange:d<l}}};return a},[e]),Wt=({onTierChange:e,disabled:t})=>{const{gameProgress:n,config:o}=oe(),{i18n:i,levelConfig:s}=o,{currentTier:a,highestUnlockedTier:r}=n,l=re(s).getTotalTiers();return _("div",{className:"tier-selector",children:_("select",{value:a,onChange:d=>{d.target&&d.target.value&&e(Number(d.target.value))},disabled:t,className:"tier-dropdown",children:Array.from({length:l},(d,u)=>u+1).map(d=>_("option",{value:d,disabled:d>r,children:i.tier+" "+d},`tier-${d}`))})})},qt=({onLevelChange:e,disabled:t})=>{const{gameProgress:n,config:o}=oe(),{i18n:i,levelConfig:s}=o,{currentTier:a,levelScores:r,currentLevel:c,highestUnlockedLevel:l}=n,d=re(s),u=Q(()=>{const[f,h]=d.getTierLevelsRange(a);return Array.from({length:h-f+1},(m,v)=>{const g=f+v,p=r[g]||0;return{level:g,score:p}})},[a,r]);return _("div",{className:"level-selector",children:_("select",{value:c,onChange:f=>{f.target&&f.target.value&&e(Number(f.target.value))},disabled:t,className:"level-dropdown",children:u.map(({level:f,score:h})=>_("option",{value:f,disabled:f>l,children:`${i.level} ${f} ${"★".repeat(h)}`},`level-${f}`))})})},ie=({isOpen:e,title:t,className:n="",message:o,children:i,noConfirm:s=!1,noCancel:a=!1,confirmText:r="OK",cancelText:c="Cancel",confirmClass:l="",cancelClass:d="",onConfirm:u,onCancel:f})=>{const h=R(null);return F(()=>{const m=v=>{v.key==="Escape"&&f?.()};return e&&document.addEventListener("keydown",m),()=>{document.removeEventListener("keydown",m)}},[e,f]),_("div",{className:`maze-dialog-overlay ${e?"maze-dialog-visible":""}`,children:_("div",{className:"maze-dialog "+n,ref:h,children:[_("div",{className:"maze-dialog-title",children:t}),_("div",{className:"maze-dialog-content",children:i||_("div",{className:"maze-dialog-message",children:o})}),(!a||!s)&&_("div",{className:"maze-dialog-buttons",children:[!a&&_("button",{type:"button",className:"maze-dialog-cancel "+d,onClick:f,children:c}),!s&&_("button",{type:"button",className:"maze-dialog-confirm "+l,onClick:u,children:r})]})]})})},G={container:null,attachTo(e){return this.container&&this.container.parentNode&&this.container.parentNode.removeChild(this.container),this.container=document.createElement("div"),this.container.className="toast-container position-bottom",e.appendChild(this.container),this.container},currentToast:null,currentTimer:null,show(e,t=2e3){if(!this.container){console.warn("NativeToast: container not initialized, please call attachTo first");return}this.currentToast&&this.container.contains(this.currentToast)&&(this.container.removeChild(this.currentToast),this.currentToast=null),this.currentTimer&&(clearTimeout(this.currentTimer),this.currentTimer=null);const n=document.createElement("div");n.className="toast-message toast-visible",n.textContent=e,this.container.appendChild(n),this.currentToast=n,this.currentTimer=setTimeout(()=>{n.classList.remove("toast-visible"),setTimeout(()=>{this.container&&this.container.contains(n)&&(this.container.removeChild(n),this.currentToast===n&&(this.currentToast=null))},300),this.currentTimer=null},t)},clearAll(){if(this.container)for(;this.container.firstChild;)this.container.removeChild(this.container.firstChild)}},Bt=()=>{const{gameProgress:e,setGameProgress:t,gamePlayState:n,setGamePlayState:o,gamePlayStateRef:i,resetGame:s,config:a}=oe(),{i18n:r,levelConfig:c}=a,l=re(c),{levelTransitioning:d,showClue:u,fogEnabled:f}=n,{highestUnlockedLevel:h,totalScore:m}=e,v=l.getTotalLevels(),[g,p]=U(!1),[T,C]=U(!1),[w,z]=U(!1),y=D=>{const W=l.getFirstLevelOfTier(D);l.isLevelUnlocked(W,h)&&(t(B=>({...B,currentTier:D})),S(W))},S=D=>{l.isLevelUnlocked(D,h)&&(t(W=>({...W,currentLevel:D})),G.show(r.levelGoToast.replace("%LEVEL%",D.toString())))},k=()=>{p(!0)},L=()=>{p(!1)},E=()=>{z(!0)},M=()=>{z(!1)},b=()=>{G.show(u?r.cluePathDisabled:r.cluePathEnabled),o(()=>({...i.current,showClue:!i.current.showClue})),z(!1)},A=()=>{const D=!i.current.fogEnabled;G.show(D?r.fogEnabledToast:r.fogDisabledToast),o(()=>({...i.current,fogEnabled:D}))},I=()=>{C(!0)},$=()=>{s(),C(!1),G.show(r.resetDoneToast)},j=()=>{C(!1)};return _("div",{class:"game-panel-container",children:[_("div",{className:"game-controls",children:[_("div",{className:"selectors-container",children:[_(Wt,{onTierChange:y,disabled:d}),_(qt,{onLevelChange:S,disabled:d})]}),_("button",{className:`settings-clue-button ${u?"clue-on":"clue-off"}`,disabled:u,title:"Toggle Clue",onClick:E,children:u?r.clueOn:r.clueOff}),_("button",{className:`settings-clue-button settings-fog-button ${f?"fog-on":"fog-off"}`,title:"Toggle Fog",onClick:A,children:f?r.fogOn:r.fogOff})]}),_("div",{className:"game-settings",children:_("span",{className:"game-settings-icon",onClick:k,children:"★ "+m})}),_(ie,{isOpen:g,title:r.settings,noConfirm:!0,cancelText:r.close,onCancel:L,children:[_("div",{className:"settings-stats",children:[_("div",{children:r.levelComplete+`: ${h}/${v}`}),_("div",{children:r.starsCollected+": "+m}),_("div",{children:r.avgStarPerLevel+": "+(m/h).toFixed(2)})]}),_("div",{className:"settings-item-box",children:[_("button",{className:"settings-reset-button",title:"Reset Game",onClick:I,children:r.reset}),_("div",{className:"settings-item-tip",children:r.resetTip})]})]}),_(ie,{isOpen:T,title:r.confirmReset,message:r.confirmResetMessage,confirmText:r.reset,cancelText:r.cancel,onConfirm:$,onCancel:j}),_(ie,{isOpen:w,title:r.confirmClue,message:r.confirmClueMessage,confirmText:r.confirm,cancelText:r.cancel,onConfirm:b,onCancel:M})]})};function Ae(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Vt(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Pe(e,t,n){return t&&Vt(e.prototype,t),e}function ft(e){return+e.replace(/px/,"")}function Ht(e){var t=window.devicePixelRatio,n=getComputedStyle(e),o=ft(n.getPropertyValue("width")),i=ft(n.getPropertyValue("height"));e.setAttribute("width",(o*t).toString()),e.setAttribute("height",(i*t).toString())}function q(e,t){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,o=Math.random()*(t-e)+e;return Math.floor(o*Math.pow(10,n))/Math.pow(10,n)}function ht(e){return e[q(0,e.length)]}var Xt=.00125,Yt=5e-4,Kt=9e-4,Jt=1e-5,Qt=6,Zt=80,en=.9,tn=1.7,nn=.2,on=.6,rn=.03,sn=.07,mt=15,_t=82,an=100,ln=250,cn=40,un=["#fcf403","#62fc03","#f4fc03","#03e7fc","#03fca5","#a503fc","#fc03ad","#fc03c2"];function gt(e){var t=1920;return Math.log(e)/Math.log(t)}var vt=(function(){function e(t){Ae(this,e);var n=t.initialPosition,o=t.direction,i=t.confettiRadius,s=t.confettiColors,a=t.emojis,r=t.emojiSize,c=t.canvasWidth,l=q(en,tn,3),d=l*gt(c);this.confettiSpeed={x:d,y:d},this.finalConfettiSpeedX=q(nn,on,3),this.rotationSpeed=a.length?.01:q(rn,sn,3)*gt(c),this.dragForceCoefficient=q(Yt,Kt,6),this.radius={x:i,y:i},this.initialRadius=i,this.rotationAngle=o==="left"?q(0,.2,3):q(-.2,0,3),this.emojiSize=r,this.emojiRotationAngle=q(0,2*Math.PI),this.radiusYUpdateDirection="down";var u=o==="left"?q(_t,mt)*Math.PI/180:q(-mt,-_t)*Math.PI/180;this.absCos=Math.abs(Math.cos(u)),this.absSin=Math.abs(Math.sin(u));var f=q(-150,0),h={x:n.x+(o==="left"?-f:f)*this.absCos,y:n.y-f*this.absSin};this.currentPosition=Object.assign({},h),this.initialPosition=Object.assign({},h),this.color=a.length?null:ht(s),this.emoji=a.length?ht(a):null,this.createdAt=new Date().getTime(),this.direction=o}return Pe(e,[{key:"draw",value:function(n){var o=this.currentPosition,i=this.radius,s=this.color,a=this.emoji,r=this.rotationAngle,c=this.emojiRotationAngle,l=this.emojiSize,d=window.devicePixelRatio;s?(n.fillStyle=s,n.beginPath(),n.ellipse(o.x*d,o.y*d,i.x*d,i.y*d,r,0,2*Math.PI),n.fill()):a&&(n.font="".concat(l,"px serif"),n.save(),n.translate(d*o.x,d*o.y),n.rotate(c),n.textAlign="center",n.fillText(a,0,0),n.restore())}},{key:"updatePosition",value:function(n,o){var i=this.confettiSpeed,s=this.dragForceCoefficient,a=this.finalConfettiSpeedX,r=this.radiusYUpdateDirection,c=this.rotationSpeed,l=this.createdAt,d=this.direction,u=o-l;if(i.x>a&&(this.confettiSpeed.x-=s*n),this.currentPosition.x+=i.x*(d==="left"?-this.absCos:this.absCos)*n,this.currentPosition.y=this.initialPosition.y-i.y*this.absSin*u+Xt*Math.pow(u,2)/2,this.rotationSpeed-=this.emoji?1e-4:Jt*n,this.rotationSpeed<0&&(this.rotationSpeed=0),this.emoji){this.emojiRotationAngle+=this.rotationSpeed*n%(2*Math.PI);return}r==="down"?(this.radius.y-=n*c,this.radius.y<=0&&(this.radius.y=0,this.radiusYUpdateDirection="up")):(this.radius.y+=n*c,this.radius.y>=this.initialRadius&&(this.radius.y=this.initialRadius,this.radiusYUpdateDirection="down"))}},{key:"getIsVisibleOnCanvas",value:function(n){return this.currentPosition.y<n+an}}]),e})();function dn(){var e=document.createElement("canvas");return e.style.position="fixed",e.style.width="100%",e.style.height="100%",e.style.top="0",e.style.left="0",e.style.zIndex="1000",e.style.pointerEvents="none",document.body.appendChild(e),e}function fn(e){var t=e.confettiRadius,n=t===void 0?Qt:t,o=e.confettiNumber,i=o===void 0?e.confettiesNumber||(e.emojis?cn:ln):o,s=e.confettiColors,a=s===void 0?un:s,r=e.emojis,c=r===void 0?e.emojies||[]:r,l=e.emojiSize,d=l===void 0?Zt:l;return e.emojies&&console.error("emojies argument is deprecated, please use emojis instead"),e.confettiesNumber&&console.error("confettiesNumber argument is deprecated, please use confettiNumber instead"),{confettiRadius:n,confettiNumber:i,confettiColors:a,emojis:c,emojiSize:d}}var hn=(function(){function e(t){var n=this;Ae(this,e),this.canvasContext=t,this.shapes=[],this.promise=new Promise(function(o){return n.resolvePromise=o})}return Pe(e,[{key:"getBatchCompletePromise",value:function(){return this.promise}},{key:"addShapes",value:function(){var n;(n=this.shapes).push.apply(n,arguments)}},{key:"complete",value:function(){var n;return this.shapes.length?!1:((n=this.resolvePromise)===null||n===void 0||n.call(this),!0)}},{key:"processShapes",value:function(n,o,i){var s=this,a=n.timeDelta,r=n.currentTime;this.shapes=this.shapes.filter(function(c){return c.updatePosition(a,r),c.draw(s.canvasContext),i?c.getIsVisibleOnCanvas(o):!0})}}]),e})(),mn=(function(){function e(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};Ae(this,e),this.activeConfettiBatches=[],this.canvas=t.canvas||dn(),this.canvasContext=this.canvas.getContext("2d"),this.requestAnimationFrameRequested=!1,this.lastUpdated=new Date().getTime(),this.iterationIndex=0,this.loop=this.loop.bind(this),requestAnimationFrame(this.loop)}return Pe(e,[{key:"loop",value:function(){this.requestAnimationFrameRequested=!1,Ht(this.canvas);var n=new Date().getTime(),o=n-this.lastUpdated,i=this.canvas.offsetHeight,s=this.iterationIndex%10===0;this.activeConfettiBatches=this.activeConfettiBatches.filter(function(a){return a.processShapes({timeDelta:o,currentTime:n},i,s),s?!a.complete():!0}),this.iterationIndex++,this.queueAnimationFrameIfNeeded(n)}},{key:"queueAnimationFrameIfNeeded",value:function(n){this.requestAnimationFrameRequested||this.activeConfettiBatches.length<1||(this.requestAnimationFrameRequested=!0,this.lastUpdated=n||new Date().getTime(),requestAnimationFrame(this.loop))}},{key:"addConfetti",value:function(){for(var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},o=fn(n),i=o.confettiRadius,s=o.confettiNumber,a=o.confettiColors,r=o.emojis,c=o.emojiSize,l=this.canvas.getBoundingClientRect(),d=l.width,u=l.height,f=u*5/7,h={x:0,y:f},m={x:d,y:f},v=new hn(this.canvasContext),g=0;g<s/2;g++){var p=new vt({initialPosition:h,direction:"right",confettiRadius:i,confettiColors:a,confettiNumber:s,emojis:r,emojiSize:c,canvasWidth:d}),T=new vt({initialPosition:m,direction:"left",confettiRadius:i,confettiColors:a,confettiNumber:s,emojis:r,emojiSize:c,canvasWidth:d});v.addShapes(p,T)}return this.activeConfettiBatches.push(v),this.queueAnimationFrameIfNeeded(),v.getBatchCompletePromise()}},{key:"clearCanvas",value:function(){this.activeConfettiBatches=[]}},{key:"destroyCanvas",value:function(){this.canvas.remove()}}]),e})();const _n=new mn,xe=3,gn=({onRetry:e})=>{const{config:t,currentScore:n,gamePlayState:o,setGamePlayState:i,gameProgress:s,setGameProgress:a}=oe(),{i18n:r,levelConfig:c}=t,[l,d,u]=n,{foodCollected:f,totalFoodCount:h,playerAtExit:m,levelTransitioning:v}=o,{currentLevel:g}=s,[p,T]=U(!1);F(()=>{m&&v&&(_n.addConfetti(),G.show(r.levelCompleteToast),T(!0))},[m,v]);const C=re(c),w=C.getTotalLevels(),z=Q(()=>g>=w,[g,w]),y=()=>{T(!1),G.show(r.levelRestartToast),e?.()},S=()=>{T(!1),i(E=>({...E,isGameActive:!0,levelTransitioning:!1}))},k=()=>{T(!1);const E=C.getNextLevelInfo(g);if(!E)return;const{nextLevel:M,nextTier:b,isTierChange:A}=E;A&&G.show(r.tierUnlockedToast.replace("%TIER%",b.toString())),a(I=>({...I,currentLevel:M,currentTier:b,highestUnlockedLevel:Math.max(I.highestUnlockedLevel,M),highestUnlockedTier:Math.max(I.highestUnlockedTier,b),levelScores:{...I.levelScores,[I.currentLevel]:Math.max(Object.values(n).filter(Boolean).length,I.levelScores[I.currentLevel]||0)}}))},L=()=>{T(!1),a(E=>{const M=Math.max(Object.values(n).filter(Boolean).length,E.levelScores[E.currentLevel]||0),b={...E.levelScores,[E.currentLevel]:M};let A=0,I=0;const $=Object.entries(b).sort((j,D)=>Number(j[0])-Number(D[0]));for(const[j,D]of $)if(D<xe){A=Number(j),I=C.getTierByLevel(A);break}return(A>0&&A!==g||M<xe)&&G.show(r.notCompleteLevel),(A===0||M<xe)&&e?.(),{...E,currentLevel:A||E.currentLevel,currentTier:I||E.currentTier,levelScores:b}})};return F(()=>{const E=document.querySelector(".maze-game-container"),M=b=>{p&&((b.key===" "||b.code==="Space")&&E&&(E.contains(document.activeElement)||document.activeElement===document.body)&&(b.preventDefault(),z?L():k()),(b.key==="r"||b.code==="KeyR")&&y(),(b.key==="c"||b.code==="KeyC")&&S())};return window.addEventListener("keydown",M),()=>window.removeEventListener("keydown",M)},[p,z]),_(ie,{className:"level-complete-dialog",isOpen:p,title:r.congratulations,cancelText:r.retry+" (R)",onCancel:y,noConfirm:!!d,confirmText:r.continue+" (C)",onConfirm:S,confirmClass:"maze-continue-btn",children:[_("div",{className:"maze-summary-message",children:[!!l&&_("div",{children:"★ - "+r.findYourExit}),_("div",{children:u?"★ - "+r.withoutClue:"☆ - "+r.withClue}),_("div",{children:(d?"★ - "+r.collectAllStars:"☆ - "+r.notCollectAllStars)+` (${f}/${h})`})]}),z&&_("div",{className:"all-levels-completed",children:r.allLevelsCompleted}),_("div",{className:"maze-go-next",children:z?_("button",{className:"maze-go-next-btn",type:"button",onClick:L,children:[_("span",{children:r.lastOK}),_("span",{className:"spacebar-tip",children:`(${r.spacebarTip})`})]}):_("button",{className:"maze-go-next-btn",type:"button",onClick:k,children:[_("span",{children:r.nextLevel}),_("span",{className:"spacebar-tip",children:`(${r.spacebarTip})`})]})}),!d&&_("div",{className:"not-all-stars-collected",children:r.continueMessage})]})},pt=(e,t)=>{const n=R({canvasWidth:0,canvasHeight:0});return F(()=>{const o=()=>{const s=e.current;if(!s)return;const a=s.parentElement;if(!a)return;const r=a.clientWidth;if(r===0)return;const c=window.devicePixelRatio||1;s.style.width=`${r}px`,s.style.height=`${r}px`;const l=r*c,d=r*c;s.width=l,s.height=d,n.current={canvasWidth:l,canvasHeight:d},t?.()};o();let i=null;return window.ResizeObserver&&e.current&&(i=new ResizeObserver(o),i.observe(e.current.parentElement)),window.addEventListener("resize",o),()=>{window.removeEventListener("resize",o),i?.disconnect()}},[e,t]),n},Ct=(e,t,n)=>{const o=R({cellWidth:0,cellHeight:0});return F(()=>{const i=()=>{const a=e.current,r=t.maze;if(!a||!r)return;const{rows:c,cols:l}=r;if(c<=0||l<=0)return;const d=(a.width-n*2)/l,u=(a.height-n*2)/c;o.current={cellWidth:d,cellHeight:u}};i();let s=null;return e.current&&window.ResizeObserver&&(s=new ResizeObserver(i),s.observe(e.current)),()=>{e.current&&s?.disconnect()}},[e,t.maze,n]),o},ve={ArrowUp:[-1,0],ArrowDown:[1,0],ArrowLeft:[0,-1],ArrowRight:[0,1]},wt=({gamePlayStateRef:e,setGamePlayState:t,moveSpeed:n,moveSpeedRef:o,playerRadius:i,onFoodCollected:s,onExitReached:a,onFirstMove:r})=>{const c=()=>o?.current??n??.03,l=R(!1),d=R(new Set),u=R(!1),f=it((C,w)=>{const z=e.current;if(!z.maze)return{canMove:!1,newCell:null};const y=c(),[S,k]=ve[C];if(yt(w,S,k,i,y,z.maze))return{canMove:!1,newCell:null};const{row:E,col:M}=w,b=E+S*y,A=M+k*y,I=-.5,$=z.maze.rows,j=z.maze.cols;if(b<I||b>=$||A<I||A>=j)return{canMove:!1,newCell:null};const D=E<0?0:Math.floor(E),W=M<0?0:Math.floor(M),B=b<0?0:Math.floor(b),ee=A<0?0:Math.floor(A);return B!==D||ee!==W?z.maze.isValid(B,ee)?{canMove:!0,newCell:{row:B,col:ee}}:{canMove:!1,newCell:null}:{canMove:!0,newCell:null}},[i,c]),h=()=>{const C=e.current,{row:w,col:z}=C.playerCell,y=i*2,S=C.foodCells.findIndex(E=>Math.sqrt(Math.pow(w-E.row,2)+Math.pow(z-E.col,2))<y);S!==-1&&s&&(s(),e.current={...e.current,foodCollected:e.current.foodCollected+1,foodCells:e.current.foodCells.filter((E,M)=>M!==S)});const L=Cn(C.playerCell,C.exitCell,C.maze);L&&!e.current.playerAtExit?(e.current={...e.current,playerAtExit:!0,isGameActive:!1,levelTransitioning:!0},a&&a(),requestIdleCallback(()=>{t(()=>({...e.current}))},{timeout:10})):!L&&e.current.playerAtExit&&(e.current={...e.current,playerAtExit:!1,isGameActive:!0,levelTransitioning:!1})},m=C=>{const w=e.current,z=Math.round(C.row),y=Math.round(C.col),S=w.playerPath[w.playerPath.length-1],k=S.row===z&&S.col===y,L=Math.abs(S.row-z),E=Math.abs(S.col-y);if((L===1&&E===0||L===0&&E===1)&&!k){const b=`${S.row},${S.col}-${z},${y}`;e.current={...e.current,playerPath:[...e.current.playerPath,{row:z,col:y}],visitCounts:{...e.current.visitCounts,[b]:(e.current.visitCounts[b]||0)+1}}}},v=()=>{if(l.current||d.current.size===0)return;const C=e.current;!C.playerCell||!Array.from(d.current).some(z=>{const{canMove:y}=f(z,C.playerCell);return y})||(!u.current&&r&&(u.current=!0,r()),l.current=!0)};F(()=>{const C=y=>{if(y.key==="ArrowUp"||y.key==="ArrowDown"||y.key==="ArrowLeft"||y.key==="ArrowRight"||y.key===" "){const S=document.activeElement;if(S&&(S.tagName==="INPUT"||S.tagName==="TEXTAREA"||S.getAttribute("contenteditable")==="true"))return;y.preventDefault()}},w=y=>{const S=y.key;if(!(S in ve))return;const k=document.activeElement;k&&(k.tagName==="INPUT"||k.tagName==="TEXTAREA"||k.getAttribute("contenteditable")==="true")||(y.preventDefault(),e.current.isGameActive&&(d.current.has(S)||(d.current.add(S),l.current||v())))},z=y=>{const S=y.key;if(!(S in ve))return;const k=document.activeElement;k&&(k.tagName==="INPUT"||k.tagName==="TEXTAREA"||k.getAttribute("contenteditable")==="true")||(y.preventDefault(),d.current.delete(S),d.current.size===0&&p())};return window.addEventListener("keydown",C,{capture:!0}),window.addEventListener("keydown",w),window.addEventListener("keyup",z),()=>{window.removeEventListener("keydown",C,{capture:!0}),window.removeEventListener("keydown",w),window.removeEventListener("keyup",z)}},[]);const g=it(()=>{if(!l.current||d.current.size===0)return e.current.playerCell;const C=c(),w=e.current.playerCell;let z=0,y=0,S=0;for(const Y of d.current){const{canMove:se}=f(Y,w);if(se){const[P,V]=ve[Y];z+=P,y+=V,S++}}if(S===0)return e.current.playerCell;const k=Math.sqrt(z*z+y*y),L=k>0?z/k:0,E=k>0?y/k:0,M=Number((w.row+L*C).toFixed(2)),b=Number((w.col+E*C).toFixed(2)),A=M-w.row,I=b-w.col,$=Math.sqrt(A*A+I*I);if($>0){const Y=A/$,se=I/$;if(yt(w,Y,se,i,$,e.current.maze))return e.current.playerCell}e.current.playerCell={row:M,col:b},h();const j=w.row<0?0:Math.round(w.row),D=w.col<0?0:Math.round(w.col),W=M<0?0:Math.round(M),B=b<0?0:Math.round(b);return(W!==j||B!==D)&&m({row:W,col:B}),e.current.playerCell},[c,f]),p=()=>{l.current=!1,d.current.clear()};return{updatePlayerPos:g,resetMovingState:p,resetFirstMoveState:()=>{u.current=!1}}};function yt(e,t,n,o,i,s){const a=e.row+t*i,r=e.col+n*i,c={row:a,col:r},l=[],d=e.row<0?0:Math.floor(e.row),u=e.col<0?0:Math.floor(e.col);l.push({row:d,col:u});const f=[[-1,0],[1,0],[0,-1],[0,1],[-1,-1],[-1,1],[1,-1],[1,1]];for(const[h,m]of f){const v=d+h,g=u+m;s.isValid(v,g)&&l.push({row:v,col:g})}for(const h of l){const m=vn(h.row,h.col,s);for(const v of m)if(pn(c,v)<o)return!0}return!1}function vn(e,t,n){const o=[],i=n.grid[e][t];return i.walls.top&&o.push({start:{row:e-.5,col:t-.5},end:{row:e-.5,col:t+.5}}),i.walls.right&&o.push({start:{row:e-.5,col:t+.5},end:{row:e+.5,col:t+.5}}),i.walls.bottom&&o.push({start:{row:e+.5,col:t-.5},end:{row:e+.5,col:t+.5}}),i.walls.left&&o.push({start:{row:e-.5,col:t-.5},end:{row:e+.5,col:t-.5}}),o}function pn(e,t){const{start:n,end:o}=t,i=o.col-n.col,s=o.row-n.row,a=e.col-n.col,r=e.row-n.row,c=i*i+s*s;if(c===0)return Math.sqrt(a*a+r*r);const l=Math.max(0,Math.min(1,(a*i+r*s)/c)),d=n.col+l*i,u=n.row+l*s,f=e.col-d,h=e.row-u;return Math.sqrt(f*f+h*h)}function Cn(e,t,n){if(!n.isValid(t.row,t.col))return!1;const o=e.col>=t.col-.5&&e.col<=t.col+.5,i=e.row>=t.row+.5,s=e.row>=t.row-.5;return o&&i&&s}function bt(e,t,n,o,i){if(!e||!t.maze)return;const{canvasWidth:s,canvasHeight:a}=n,{cellWidth:r,cellHeight:c}=o,{maze:l,playerCell:d,exitCell:u,foodCells:f,showClue:h,playerPath:m,visitCounts:v}=t,{padding:g,wallWidth:p,wallColor:T,playerColor:C,playerRadius:w,foodColor:z,backgroundColor:y,clueColor:S,fogEnabled:k,fogRadius:L,fogColor:E,fogSoftness:M,exitColor:b,exitWallWidth:A,exitDashArray:I}=i;e.clearRect(0,0,s,a),e.save(),e.fillStyle=y,e.fillRect(0,0,s,a),e.restore(),h&&kn({ctx:e,playerPath:m,visitCounts:v,cellWidth:r,cellHeight:c,padding:g,clueColor:S});const $=Tt(l,r,c,g);(t.fogEnabled??!0)&&k&&En({ctx:e,canvasWidth:s,canvasHeight:a,cellWidth:r,cellHeight:c,padding:g,playerCell:d,walls:$,fogRadius:L,fogColor:E,fogSoftness:M}),wn({ctx:e,maze:l,cellWidth:r,cellHeight:c,padding:g,wallColor:T,wallWidth:p,walls:$}),bn({ctx:e,maze:l,exitCell:u,cellWidth:r,cellHeight:c,padding:g,exitColor:b,exitWallWidth:A,exitDashArray:I}),yn({ctx:e,playerCell:d,playerRadius:w,cellWidth:r,cellHeight:c,padding:g,playerColor:C}),Tn({ctx:e,foodCells:f,cellWidth:r,cellHeight:c,padding:g,foodColor:z})}function wn({ctx:e,maze:t,cellWidth:n,cellHeight:o,padding:i,wallColor:s,wallWidth:a,walls:r}){e.save(),e.strokeStyle=s,e.lineWidth=a,e.lineCap="round",e.beginPath(),(r??Tt(t,n,o,i)).forEach(l=>{e.moveTo(l.x1,l.y1),e.lineTo(l.x2,l.y2)}),e.stroke(),e.restore()}function yn({ctx:e,playerCell:t,playerRadius:n,cellWidth:o,cellHeight:i,padding:s,playerColor:a}){const{x:r,y:c}=Z(t.row,t.col,o,i,s),l=Math.min(o,i)*Math.min(n,.5);e.save(),e.fillStyle=a,e.beginPath(),e.arc(r,c,l,0,Math.PI*2),e.fill(),e.restore()}function bn({ctx:e,maze:t,exitCell:n,cellWidth:o,cellHeight:i,padding:s,exitColor:a,exitWallWidth:r,exitDashArray:c=[8,12]}){const{row:l,col:d}=n;if(!t.isValid(l,d))return;const u=s+d*o,f=s+l*i;e.save(),e.globalCompositeOperation="destination-out",e.lineWidth=r,e.lineCap="round",e.beginPath(),e.moveTo(u,f+i),e.lineTo(u+o,f+i),e.stroke(),e.globalCompositeOperation="source-over",e.strokeStyle=a,e.lineWidth=r,e.setLineDash(c),e.beginPath(),e.moveTo(u,f+i),e.lineTo(u+o,f+i),e.stroke(),e.restore()}function Tn({ctx:e,foodCells:t,cellWidth:n,cellHeight:o,padding:i,foodColor:s}){e.fillStyle=s,e.shadowColor="rgba(255, 215, 64, 0.9)",e.shadowBlur=Math.max(Math.min(n,o)*.28,3);const a=Math.min(n,o)*.25;t.forEach(r=>{const{x:c,y:l}=Z(r.row,r.col,n,o,i);Sn(e,c,l,a*1.25,5,a*.62)}),e.shadowBlur=0,e.strokeStyle="rgba(255,255,255,0.5)",e.lineWidth=Math.max(a*.3,1),t.forEach(r=>{const{x:c,y:l}=Z(r.row,r.col,n,o,i);e.beginPath(),e.arc(c,l,a*1.05,0,Math.PI*2),e.stroke()})}function Sn(e,t,n,o,i,s){e.save(),e.beginPath();for(let a=0;a<i*2;a++){const r=a%2===0?o:s,c=Math.PI*a/i;e.lineTo(t+r*Math.sin(c),n+r*Math.cos(c))}e.closePath(),e.fill(),e.restore()}function kn({ctx:e,playerPath:t,visitCounts:n,cellWidth:o,cellHeight:i,padding:s,clueColor:a}){if(!(!t||t.length<2||!n)){e.save();for(let r=1;r<t.length;r++){const c=t[r-1],l=t[r],d=`${c.row},${c.col}-${l.row},${l.col}`,u=`${l.row},${l.col}-${c.row},${c.col}`,f=(n[d]||0)+(n[u]||0),h=Math.min(.2+f*.1,.9),m=Math.max(3,o*.1)+f*.5;try{e.strokeStyle=a.replace(")",`, ${h})`).replace("rgb(","rgba(")}catch{e.strokeStyle=`rgba(255, 0, 0, ${h})`}e.lineWidth=m,e.lineCap="round",e.lineJoin="round";const{x:v,y:g}=Z(c.row,c.col,o,i,s),{x:p,y:T}=Z(l.row,l.col,o,i,s);e.beginPath(),e.moveTo(v,g),e.lineTo(p,T),e.stroke()}e.restore()}}function En({ctx:e,canvasWidth:t,canvasHeight:n,cellWidth:o,cellHeight:i,padding:s,playerCell:a,walls:r,fogRadius:c,fogColor:l,fogSoftness:d}){const u=Math.max(c,0)*Math.max(o,i)||0;if(u<=0)return;const f=Z(a.row,a.col,o,i,s),h=zn(f,r,u);e.save(),e.fillStyle=l,e.fillRect(0,0,t,n),e.globalCompositeOperation="destination-out";const m=Math.max(Math.min(o,i)*.25,2);e.filter=`blur(${m}px)`;const v=Math.max(Math.min(d,1),0),g=e.createRadialGradient(f.x,f.y,Math.max(u*.2,6),f.x,f.y,u);g.addColorStop(0,"rgba(0, 0, 0, 1)"),g.addColorStop(Math.max(.25,v-.1),"rgba(0, 0, 0, 1)"),g.addColorStop(1,"rgba(0, 0, 0, 0)"),e.fillStyle=g,h.length>=3?(e.beginPath(),h.forEach((p,T)=>{T===0?e.moveTo(p.x,p.y):e.lineTo(p.x,p.y)}),e.closePath(),e.fill()):(e.beginPath(),e.arc(f.x,f.y,u,0,Math.PI*2),e.fill()),e.restore()}function zn(e,t,n){const i=[];if(t.forEach(a=>{i.push(Math.atan2(a.y1-e.y,a.x1-e.x)-1e-4,Math.atan2(a.y1-e.y,a.x1-e.x),Math.atan2(a.y1-e.y,a.x1-e.x)+1e-4,Math.atan2(a.y2-e.y,a.x2-e.x)-1e-4,Math.atan2(a.y2-e.y,a.x2-e.x),Math.atan2(a.y2-e.y,a.x2-e.x)+1e-4)}),i.length===0)for(let a=0;a<24;a++)i.push(a/24*Math.PI*2);return Array.from(new Set(i)).sort((a,r)=>a-r).map(a=>Mn(e,a,t,n))}function Mn(e,t,n,o){const i={x:Math.cos(t),y:Math.sin(t)};let s={x:e.x+i.x*o,y:e.y+i.y*o,distance:o};for(const a of n){const r=Ln(e,i,{x:a.x1,y:a.y1},{x:a.x2,y:a.y2},o);r&&r.distance<s.distance&&(s=r)}return{x:s.x,y:s.y}}function Ln(e,t,n,o,i){const s={x:o.x-n.x,y:o.y-n.y},a=t.x*s.y-t.y*s.x;if(Math.abs(a)<1e-6)return null;const r={x:n.x-e.x,y:n.y-e.y},c=(r.x*s.y-r.y*s.x)/a,l=(r.x*t.y-r.y*t.x)/a;return c<0||l<0||l>1||c>i?null:{x:e.x+t.x*c,y:e.y+t.y*c,distance:c}}function Tt(e,t,n,o){const i=[];for(let s=0;s<e.rows;s++)for(let a=0;a<e.cols;a++){const r=e.grid[s][a],c=o+a*t,l=o+s*n;r.walls.top&&i.push({x1:c,y1:l,x2:c+t,y2:l}),r.walls.right&&i.push({x1:c+t,y1:l,x2:c+t,y2:l+n}),r.walls.bottom&&i.push({x1:c,y1:l+n,x2:c+t,y2:l+n}),r.walls.left&&i.push({x1:c,y1:l,x2:c,y2:l+n})}return i}function Z(e,t,n,o,i){return{x:i+t*n+n/2,y:i+e*o+o/2}}function Nn(e){return function(){let t=e+=1831565813;return t=Math.imul(t^t>>>15,t|1),t^=t+Math.imul(t^t>>>7,t|61),((t^t>>>14)>>>0)/4294967296}}class An{constructor(t,n){this.row=t,this.col=n}visited=!1;walls={top:!0,right:!0,bottom:!0,left:!0}}class St{rows;cols;grid;seed;random;constructor(t,n,o,i,s={row:0,col:0},a={row:t-1,col:n-1}){this.rows=t,this.cols=n,this.seed=i??Math.floor(Math.random()*1e6),this.random=Nn(this.seed),this.grid=this.initializeGrid(),this.generate(o,s,a)}initializeGrid(){const t=[];for(let n=0;n<this.rows;n++){t[n]=[];for(let o=0;o<this.cols;o++)t[n][o]=new An(n,o)}return t}isValid(t,n){return t>=0&&t<this.rows&&n>=0&&n<this.cols}getNeighbors(t,n){const o=[],i=[{r:-1,c:0},{r:0,c:1},{r:1,c:0},{r:0,c:-1}];for(const s of i){const a=t+s.r,r=n+s.c;this.isValid(a,r)&&o.push({row:a,col:r})}return o}getUnvisitedNeighbors(t,n){return this.getNeighbors(t,n).filter(o=>!this.grid[o.row][o.col].visited)}getVisitedNeighbors(t,n){return this.getNeighbors(t,n).filter(o=>this.grid[o.row][o.col].visited)}removeWall(t,n,o,i){const s=this.grid[t][n],a=this.grid[o][i];t===o+1?(s.walls.top=!1,a.walls.bottom=!1):t===o-1?(s.walls.bottom=!1,a.walls.top=!1):n===i+1?(s.walls.left=!1,a.walls.right=!1):n===i-1&&(s.walls.right=!1,a.walls.left=!1)}generate(t,n={row:0,col:0},o={row:this.rows-1,col:this.cols-1}){switch(t){case"backtracking":this.generateWithBacktracking();break;case"prims":this.generateWithPrims();break;default:throw new Error(`Unknown maze generation method: ${t}`)}this.addOpenings(n,o)}generateWithBacktracking(){const t=[],n=this.randomNumber(this.rows),o=this.randomNumber(this.cols);let i={row:n,col:o};for(this.grid[n][o].visited=!0,t.push(i);t.length>0;){i=t[t.length-1];const{row:s,col:a}=i,r=this.getUnvisitedNeighbors(s,a);if(r.length>0){const c=this.randomPick(r),{row:l,col:d}=c;this.removeWall(s,a,l,d),this.grid[l][d].visited=!0,t.push(c)}else t.pop()}}generateWithPrims(){const t=[],n=(s,a)=>{const r=this.getNeighbors(s,a);for(const c of r)!this.grid[c.row][c.col].visited&&!t.some(l=>l.row===c.row&&l.col===c.col)&&t.push(c)},o=this.randomNumber(this.rows),i=this.randomNumber(this.cols);for(this.grid[o][i].visited=!0,n(o,i);t.length>0;){const s=this.randomNumber(t.length),a=t[s],{row:r,col:c}=a,l=this.getVisitedNeighbors(r,c);if(l.length>0){const d=this.randomPick(l);this.removeWall(r,c,d.row,d.col),this.grid[r][c].visited=!0,n(r,c)}t.splice(s,1)}}addOpenings(t,n){this.grid[t.row][t.col].walls.top=!1,this.isValid(n.row,n.col)&&(this.grid[n.row][n.col].walls.bottom=!1)}randomNumber(t){return Math.floor(this.random()*t)}randomPick(t){return t[Math.floor(this.random()*t.length)]}}const kt=(e,t,n)=>{if(!e.isValid(t,n))return!1;const o=e.grid[t][n];return!o.walls.top||!o.walls.right||!o.walls.bottom||!o.walls.left},Pn=e=>e===1?2:e>=2&&e<=5?3:e>=6&&e<=11?4:e>=12&&e<=15?5:6,xn=(e,t)=>{if(!t)return console.error(`Cannot find Level ${e}'s config.`),null;const{size:n,seed:o,method:i,entry:s,exit:a}=t,r=n,c=n,l=s||{row:0,col:0},d=a||{row:r-1,col:c-1},u=new St(r,c,i,o,l,d),f=Pn(e),h=[];for(let m=0;m<f;m++){let v;do v={row:Math.floor(u.random()*r),col:Math.floor(u.random()*c)};while(v.row===l.row&&v.col===l.col||v.row===d.row&&v.col===d.col||!kt(u,v.row,v.col)||h.some(g=>g.row===v.row&&g.col===v.col));h.push(v)}return{isGameActive:!0,levelTransitioning:!1,maze:u,playerCell:l,exitCell:d,foodCells:h,playerAtExit:!1,foodCollected:0,totalFoodCount:f,showClue:!1,playerPath:[l],visitCounts:{[`${l.row},${l.col}`]:1}}},In=({size:e,seed:t,method:n,foodCount:o,foodRace:i,clue:s,fogEnabled:a=!0})=>{const r=e,c=e,l={row:0,col:0},d={row:r-1,col:c-1},u=new St(r,c,n,t,l,d),f=[];if(i)for(let h=0;h<o;h++){let m,v=0;do m={row:Math.floor(u.random()*r),col:Math.floor(u.random()*c)},v++;while(v<50&&(m.row===l.row&&m.col===l.col||m.row===d.row&&m.col===d.col||!kt(u,m.row,m.col)||f.some(g=>g.row===m.row&&g.col===m.col)));v<50&&f.push(m)}return{isGameActive:!0,levelTransitioning:!1,maze:u,playerCell:l,exitCell:d,foodCells:f,playerAtExit:!1,foodCollected:0,totalFoodCount:i?o:0,fogEnabled:a,showClue:s,playerPath:[l],visitCounts:{[`${l.row},${l.col}`]:1}}};function Fn(){const{setGamePlayState:e,gamePlayState:t,gamePlayStateRef:n,gameProgress:o,config:i}=oe(),s=R(null),a=R(null),{i18n:r,levelConfig:c,renderConfig:l}=i,d=re(c),u=R(d.getLevelConfig(o.currentLevel));F(()=>{s.current&&G.attachTo(s.current)},[]);const f=R(),h=pt(a,()=>{f.current?.()}),m=Ct(a,t,l.padding);F(()=>{u.current=d.getLevelConfig(o.currentLevel)},[o.currentLevel]);const v=()=>{const C=xn(o.currentLevel,u.current);C&&e(w=>({...w,...C}))};F(()=>{v()},[o.currentLevel]);const g=()=>{v()},{updatePlayerPos:p,resetMovingState:T}=wt({gamePlayStateRef:n,setGamePlayState:e,playerRadius:l.playerRadius,moveSpeed:l.gridMoveSpeed,onFoodCollected:()=>{const C=n.current.totalFoodCount-n.current.foodCollected-1;C>0?G.show(r.foodCollectedToast.replace("%NUM%",C.toString()),3e3):G.show(r.allFoodCollectedToast)}});return F(()=>{T()},[o.currentLevel,T]),F(()=>{let C,w=!document.hidden;const z=()=>{const k=a.current?.getContext("2d"),L=n.current;if(!(w&&L?.isGameActive&&k&&L?.maze)){C=requestAnimationFrame(z);return}p(),y(),C=requestAnimationFrame(z)},y=()=>{const k=a.current?.getContext("2d"),L=n.current;if(k&&L?.maze){const E=u.current?.wallWidth||l?.wallWidth,M=u.current?.exitColor||l?.exitColor,b=u.current?.exitWallWidth||l?.exitWallWidth,A=u.current?.exitDashArray||l?.exitDashArray;bt(k,L,h.current,m.current,{...l,wallWidth:E,exitColor:M,exitWallWidth:b,exitDashArray:A})}};f.current=y;const S=k=>{const L=w;w=!document.hidden&&document.visibilityState==="visible"&&(!k||k.type!=="blur"),!L&&w?n.current?.levelTransitioning===!1&&e({...n.current,isGameActive:!0}):L&&!w&&e({...n.current,isGameActive:!1})};return document.addEventListener("visibilitychange",S),window.addEventListener("blur",S),window.addEventListener("focus",S),C=requestAnimationFrame(z),()=>{cancelAnimationFrame(C),document.removeEventListener("visibilitychange",S),window.removeEventListener("blur",S),window.removeEventListener("focus",S)}},[]),F(()=>{G.show(r.useArrowKeyTips,3e3)},[]),_("div",{className:"maze-game-container",children:[_(Bt,{}),_(gn,{onRetry:g}),_("div",{className:"maze-canvas-container",ref:s,children:_("canvas",{ref:a,className:"maze-game-canvas"})})]})}const Rn=e=>{const t=Math.floor(e/60),n=e%60;return`${t.toString().padStart(2,"0")}:${n.toString().padStart(2,"0")}`},On=({timer:e})=>{const[t,n]=U(e),o=R(),i=R(!1),s=R(0);return F(()=>{const a=()=>{!i.current&&!o.current&&(i.current=!0,o.current=setInterval(()=>{n(c=>(s.current=e-c+1,c<=1?(clearInterval(o.current),window.dispatchEvent(new CustomEvent("maze:timeUp")),0):c-1))},1e3))},r=()=>{clearInterval(o.current),o.current=void 0,window.dispatchEvent(new CustomEvent("maze:timeUsed",{detail:{timeUsed:s.current}}))};return window.addEventListener("maze:firstMove",a),window.addEventListener("maze:gameSuccess",r),()=>{window.removeEventListener("maze:firstMove",a),window.removeEventListener("maze:gameSuccess",r),clearInterval(o.current)}},[e]),F(()=>{o.current&&(clearInterval(o.current),o.current=void 0),n(e),i.current=!1,s.current=0},[e]),_("div",{className:"single-maze-timer",children:_("span",{className:`maze-timer-text ${t<=10&&i.current?"maze-timer-warning":""}`,children:["⏱️ ",Rn(t)]})})};function Dn({config:e}){const{size:t,seed:n,method:o,foodCount:i,foodRace:s,clue:a,renderConfig:r,successCallback:c,failCallback:l,timer:d,i18n:u}=e,f=r.fogEnabled??!0,[h,m]=U({...dt,fogEnabled:f}),[v,g]=U(!1),[p,T]=U(!0),[C,w]=U(!1),[z,y]=U(""),S=R(0),k=R(!1),L=R(!1),E=R(null),M=R(null),b=R(h),A=R(),I=pt(E,()=>{A.current?.()}),$=Ct(E,h,r.padding);F(()=>{b.current=h},[h]);const{updatePlayerPos:j,resetMovingState:D,resetFirstMoveState:W}=wt({gamePlayStateRef:b,setGamePlayState:m,playerRadius:r.playerRadius,moveSpeed:r.gridMoveSpeed,onFoodCollected:()=>{console.log("Food collected in single maze")},onExitReached:()=>{if(!k.current){if(s&&b.current.foodCollected<b.current.totalFoodCount){y(`⭐️ ${u.foodMsg}`),w(!0),m(P=>({...P,isGameActive:!1}));return}m(P=>({...P,isGameActive:!1})),ee()}},onFirstMove:()=>{window.dispatchEvent(new CustomEvent("maze:firstMove"))}}),B=()=>{k.current=!0,y(`⏰ ${u.failMsg}`),w(!0),m({...b.current,isGameActive:!1})},ee=()=>{k.current=!0,L.current=!0,y(`🎉 ${u.successMsg}`),w(!0),m(P=>({...P,isGameActive:!1})),window.dispatchEvent(new CustomEvent("maze:gameSuccess"))},Y=()=>{if(w(!1),!k.current){m(P=>({...P,isGameActive:!0}));return}T(!1),m(P=>({...P,showClue:!0})),L.current?c?.(S.current):l?.()};F(()=>{(async()=>{g(!0);try{const V=In({size:t,seed:n,method:o,foodCount:i,foodRace:s,clue:a,fogEnabled:b.current.fogEnabled??f});b.current=V,m(V)}catch(V){console.error("Error generating single maze:",V)}finally{g(!1)}})()},[e,f]),F(()=>{let P;const V=!document.hidden,Ie=()=>{const we=E.current?.getContext("2d"),ae=b.current;if(!(V&&ae?.isGameActive&&we&&ae?.maze)){P=requestAnimationFrame(Ie);return}j(),Mt(),P=requestAnimationFrame(Ie)},Mt=()=>{const we=E.current?.getContext("2d"),ae=b.current;we&&ae?.maze&&bt(we,ae,I.current,$.current,r)};return A.current=Mt,P=requestAnimationFrame(Ie),()=>{cancelAnimationFrame(P)}},[]),F(()=>{D(),W()},[e,D,W]),F(()=>{const P=V=>{S.current=V.detail.timeUsed};return window.addEventListener("maze:timeUsed",P),window.addEventListener("maze:timeUp",B),()=>{window.removeEventListener("maze:timeUsed",P),window.removeEventListener("maze:timeUp",B)}},[]);const se=()=>{m(P=>({...P,fogEnabled:!P.fogEnabled}))};return v?_("div",{className:"single-maze-loading",children:_("div",{children:"Generating maze..."})}):h?_("div",{className:"maze-game-container",children:[_("div",{className:"single-maze-toolbar",children:[p&&_(On,{timer:d}),_("button",{className:`settings-clue-button settings-fog-button ${h.fogEnabled?"fog-on":"fog-off"}`,onClick:se,children:h.fogEnabled?u.fogOn:u.fogOff})]}),_("div",{className:"single-maze-canvas-container",ref:M,children:_("canvas",{ref:E,className:"maze-game-canvas"})}),_(ie,{isOpen:C,title:z,noConfirm:!0,cancelText:"OK",onCancel:Y})]}):_("div",{className:"single-maze-error",children:_("div",{children:"Failed to generate maze"})})}const Et=[[{size:8,seed:12345,method:"backtracking",wallWidth:4,exitWallWidth:6,exitDashArray:[8,12]},{size:8,seed:23456,method:"backtracking",exitColor:"#33f",exitWallWidth:4,exitDashArray:[8,16]},{size:8,seed:34567,method:"prims"},{size:8,seed:45678,method:"backtracking"},{size:9,seed:56789,method:"prims"},{size:9,seed:67890,method:"backtracking"},{size:9,seed:78901,method:"prims"},{size:9,seed:89012,method:"backtracking"},{size:10,seed:90123,method:"prims"},{size:11,seed:11111,method:"backtracking"},{size:12,seed:22222,method:"prims"},{size:13,seed:33333,method:"backtracking"}],[{size:12,seed:44444,method:"prims"},{size:12,seed:55555,method:"backtracking"},{size:12,seed:66666,method:"prims"},{size:12,seed:77777,method:"backtracking"},{size:13,seed:88888,method:"prims"},{size:13,seed:99999,method:"backtracking"},{size:13,seed:12121,method:"prims"},{size:14,seed:23232,method:"backtracking"},{size:15,seed:34343,method:"prims"},{size:16,seed:45454,method:"backtracking"},{size:17,seed:56565,method:"prims"},{size:18,seed:67676,method:"backtracking"}],[{size:19,seed:78787,method:"prims"},{size:20,seed:89898,method:"backtracking"},{size:21,seed:90909,method:"prims"},{size:22,seed:10101,method:"backtracking"},{size:23,seed:20202,method:"prims"},{size:25,seed:30303,method:"backtracking"},{size:27,seed:40404,method:"prims"},{size:29,seed:50505,method:"backtracking"},{size:31,seed:60606,method:"prims"},{size:33,seed:70707,method:"backtracking"},{size:37,seed:80808,method:"prims"},{size:40,seed:90909,method:"backtracking"}],[{size:41,seed:10111,method:"prims"},{size:42,seed:11121,method:"backtracking"},{size:43,seed:12131,method:"prims"},{size:44,seed:13141,method:"backtracking"},{size:45,seed:14151,method:"prims"},{size:46,seed:15161,method:"backtracking"},{size:47,seed:16171,method:"prims"},{size:48,seed:17181,method:"backtracking"},{size:49,seed:18191,method:"prims"},{size:50,seed:19201,method:"backtracking"},{size:51,seed:20211,method:"prims"},{size:52,seed:21221,method:"backtracking"}],[{size:53,seed:22231,method:"prims"},{size:54,seed:23241,method:"backtracking"},{size:55,seed:24251,method:"prims"},{size:56,seed:25261,method:"backtracking"},{size:57,seed:26271,method:"prims"},{size:58,seed:27281,method:"backtracking"},{size:59,seed:28291,method:"prims"},{size:60,seed:29301,method:"backtracking"},{size:62,seed:30311,method:"prims"},{size:64,seed:31321,method:"backtracking"},{size:66,seed:32331,method:"prims"},{size:68,seed:33341,method:"backtracking"}]],zt={gridMoveSpeed:.07,padding:10,wallWidth:2,wallColor:"#222",foodColor:"#FFD54F",clueColor:"rgb(255,0,0)",backgroundColor:"#ffffff",playerColor:"#4CAF50",playerRadius:.2,fogEnabled:!0,fogRadius:3.6,fogColor:"rgba(8, 10, 18, 0.9)",fogSoftness:.55,exitColor:"#F44336",exitWallWidth:4,exitDashArray:[8,12]},pe={lcPrefix:"maze-",i18n:{reset:"Reset",resetTip:"Reset all game data and highest score.",confirmReset:"Confirm Reset",confirmResetMessage:"Are you sure you want to reset the game? All progress will be lost.",cancel:"Cancel",close:"Close",confirm:"Confirm",resetDoneToast:"Game reset! Starting from Level 1...",confirmClue:"Confirm to turn on clue?",confirmClueMessage:"Are you sure you want to turn on clue? Your will lose 1 ★.",level:"Level",tier:"Tier",settings:"Settings",clueOn:"Clue: ON",clueOff:"Clue: OFF",foodCollectedToast:"Food collected! %NUM% remaining.",allFoodCollectedToast:"All food collected! Head to the exit.",congratulations:"Congratulations!",findYourExit:"Find your exit!",withoutClue:"Without clue!",withClue:"You used the clue!",collectAllStars:"Collect all stars!",notCollectAllStars:"Not collect all stars.",nextLevel:"Next Level ➤",spacebarTip:"Spacebar",retry:"Retry",levelComplete:"Level Complete",starsCollected:"Stars Collected",avgStarPerLevel:"Avg. Stars per Level",levelCompleteToast:"Level completed! 🎉",tierUnlockedToast:"Tier %TIER% unlocked! 🎉",levelGoToast:"Level %LEVEL% - Go!",levelRestartToast:"Level restarted",allLevelsCompleted:"You completed all levels!",lastOK:"OK",notCompleteLevel:"You still have levels not collected all stars! Try again to collect them all!",continueMessage:"You still have levels where you haven't collected all stars. Try again to collect them all!",continue:"Continue",cluePathEnabled:"Clue Path Enabled",cluePathDisabled:"Clue Path Disabled",useArrowKeyTips:"Use arrow keys to navigate the maze. Press'C' to toggle path clue.",fogOn:"Fog: ON",fogOff:"Fog: OFF",fogEnabledToast:"Fog enabled",fogDisabledToast:"Fog disabled"},renderConfig:zt,levelConfig:Et},Ce={i18n:{successMsg:"Congratulations! You completed the maze!",failMsg:"Time is up!",foodMsg:"Please collect all stars before leaving!",fogOn:"Fog: ON",fogOff:"Fog: OFF"},size:8,seed:12345,method:"backtracking",clue:!1,foodCount:0,foodRace:!1,renderConfig:zt,timer:600,successCallback:()=>{console.log("🎉 Single maze completed successfully!")},failCallback:()=>{console.log("⏰ Time is up! Game failed.")}};function $n({config:e={}}){const t={...pe.i18n,...e.i18n||{}},n={...pe.renderConfig,...e.renderConfig||{}},o=e.levelConfig||Et,i={...pe,...e,i18n:t,levelConfig:o,renderConfig:n};return _(jt,{config:i,children:_(Fn,{})})}function Un({config:e={}}){const t={...Ce.i18n,...e.i18n||{}},n={...Ce.renderConfig,...e.renderConfig||{}},o={...Ce,...e,i18n:t,renderConfig:n};return _(Dn,{config:o})}const Gn={root:"https://unpkg.com/@roudanio/maze@0.3.0/dist/",...pe};`${JSON.stringify(Gn,null,2)}`;const jn={root:"https://unpkg.com/@roudanio/maze@0.3.0/dist/",...Ce};return`${JSON.stringify(jn,(e,t)=>typeof t=="function"?t.toString():t,2)}`,{showNotice(){console.warn("Cannot find the root element");const e=document.createElement("div");e.style.textAlign="center",e.style.padding="20px",e.innerHTML="Cannot find the root element",document.body.append(e)},addLoadingIndicator(e){const t=document.createElement("div"),n=document.createElement("div");t.style.cssText=`
|
|
2
2
|
height: 30px;
|
|
3
3
|
width: 100%;
|
|
4
4
|
border: solid 2px #999;
|
|
@@ -13,4 +13,4 @@ var Maze=function(){"use strict";var se,M,xe,V,Re,Fe,De,Oe,ye,be,Te,$e,ee={},Ue=
|
|
|
13
13
|
@keyframes loading {
|
|
14
14
|
0% { width: 0%; }
|
|
15
15
|
100% { width: 99%; }
|
|
16
|
-
}`,document.head.appendChild(o)},async loadCSS(e){const t=document.createElement("link");return t.rel="stylesheet",t.href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap",document.head.appendChild(t),new Promise((n,o)=>{const i=document.createElement("link");i.rel="stylesheet",i.type="text/css",i.href=e,i.onload=n,i.onerror=o,document.head.appendChild(i)})},async init(e,t){const n=typeof e=="string"?document.querySelector(e):e;if(!n){this.showNotice();return}let{root:o=location.origin}=t;o.at(-1)!=="/"&&(o+="/"),this.addLoadingIndicator(n),await this.loadCSS(o+"maze.css"),n.innerHTML="",
|
|
16
|
+
}`,document.head.appendChild(o)},async loadCSS(e){const t=document.createElement("link");return t.rel="stylesheet",t.href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap",document.head.appendChild(t),new Promise((n,o)=>{const i=document.createElement("link");i.rel="stylesheet",i.type="text/css",i.href=e,i.onload=n,i.onerror=o,document.head.appendChild(i)})},async init(e,t){const n=typeof e=="string"?document.querySelector(e):e;if(!n){this.showNotice();return}let{root:o=location.origin}=t;o.at(-1)!=="/"&&(o+="/"),this.addLoadingIndicator(n),await this.loadCSS(o+"maze.css"),n.innerHTML="",Ke(_($n,{config:t}),n)},async initSingle(e,t){const n=typeof e=="string"?document.querySelector(e):e;if(!n){this.showNotice();return}let{root:o=location.origin}=t;o.at(-1)!=="/"&&(o+="/"),this.addLoadingIndicator(n),await this.loadCSS(o+"maze.css"),n.innerHTML="",Ke(_(Un,{config:t}),n)}}})();
|