import { AvatarRenderEvent, ConfigurationEvent, HabboWebTools, LegacyExternalInterface, Nitro, NitroCommunicationDemoEvent, NitroEvent, NitroLocalizationEvent, NitroVersion, RoomEngineEvent, WebGL } from '@nitrots/nitro-renderer'; import { FC, useCallback, useState } from 'react'; import { GetAvatarRenderManager, GetCommunication, GetConfiguration, GetNitroInstance } from './api'; import { Base, TransitionAnimation, TransitionAnimationTypes } from './common'; import { LoadingView } from './components/loading/LoadingView'; import { MainView } from './components/main/MainView'; import { DispatchUiEvent, UseAvatarEvent, UseConfigurationEvent, UseLocalizationEvent, UseMainEvent, UseRoomEngineEvent } from './hooks'; export const App: FC<{}> = props => { const [ isReady, setIsReady ] = useState(false); const [ isError, setIsError ] = useState(false); const [ message, setMessage ] = useState('Getting Ready'); //@ts-ignore if(!NitroConfig) throw new Error('NitroConfig is not defined!'); if(!GetNitroInstance()) { NitroVersion.UI_VERSION = '2.0.0'; Nitro.bootstrap(); } const getPreloadAssetUrls = useCallback(() => { const urls: string[] = []; const assetUrls = GetConfiguration('preload.assets.urls'); if(assetUrls && assetUrls.length) { for(const url of assetUrls) urls.push(GetNitroInstance().core.configuration.interpolate(url)); } return urls; }, []); const handler = useCallback((event: NitroEvent) => { switch(event.type) { case ConfigurationEvent.LOADED: GetNitroInstance().localization.init(); return; case ConfigurationEvent.FAILED: setIsError(true); setMessage('Configuration Failed'); return; case Nitro.WEBGL_UNAVAILABLE: setIsError(true); setMessage('WebGL Required'); return; case Nitro.WEBGL_CONTEXT_LOST: setIsError(true); setMessage('WebGL Context Lost - Reloading'); setTimeout(() => window.location.reload(), 1500); return; case NitroCommunicationDemoEvent.CONNECTION_HANDSHAKING: return; case NitroCommunicationDemoEvent.CONNECTION_HANDSHAKE_FAILED: setIsError(true); setMessage('Handshake Failed'); return; case NitroCommunicationDemoEvent.CONNECTION_AUTHENTICATED: setMessage('Finishing Up'); GetAvatarRenderManager().init(); if(LegacyExternalInterface.available) LegacyExternalInterface.call('legacyTrack', 'authentication', 'authok', []); return; case NitroCommunicationDemoEvent.CONNECTION_ERROR: setIsError(true); setMessage('Connection Error'); return; case NitroCommunicationDemoEvent.CONNECTION_CLOSED: if(GetNitroInstance().roomEngine) GetNitroInstance().roomEngine.dispose(); setIsError(true); setMessage('Connection Error'); HabboWebTools.send(-1, 'client.init.handshake.fail'); return; case AvatarRenderEvent.AVATAR_RENDER_READY: GetNitroInstance().init(); return; case RoomEngineEvent.ENGINE_INITIALIZED: setIsReady(true); return; case NitroLocalizationEvent.LOADED: GetNitroInstance().core.asset.downloadAssets(getPreloadAssetUrls(), (status: boolean) => { if(status) { setMessage('Connecting'); GetCommunication().init(); } else { setIsError(true); setMessage('Assets Failed'); } }); return; } }, [ getPreloadAssetUrls ]); UseMainEvent(Nitro.WEBGL_UNAVAILABLE, handler); UseMainEvent(Nitro.WEBGL_CONTEXT_LOST, handler); UseMainEvent(NitroCommunicationDemoEvent.CONNECTION_HANDSHAKING, handler); UseMainEvent(NitroCommunicationDemoEvent.CONNECTION_HANDSHAKE_FAILED, handler); UseMainEvent(NitroCommunicationDemoEvent.CONNECTION_AUTHENTICATED, handler); UseMainEvent(NitroCommunicationDemoEvent.CONNECTION_ERROR, handler); UseMainEvent(NitroCommunicationDemoEvent.CONNECTION_CLOSED, handler); UseRoomEngineEvent(RoomEngineEvent.ENGINE_INITIALIZED, handler); UseLocalizationEvent(NitroLocalizationEvent.LOADED, handler); UseConfigurationEvent(ConfigurationEvent.LOADED, handler); UseConfigurationEvent(ConfigurationEvent.FAILED, handler); UseAvatarEvent(AvatarRenderEvent.AVATAR_RENDER_READY, handler); if(!WebGL.isWebGLAvailable()) { DispatchUiEvent(new NitroEvent(Nitro.WEBGL_UNAVAILABLE)); } else { GetNitroInstance().core.configuration.init(); } return ( { (!isReady || isError) && } ); }