nitro-react/src/App.tsx

142 lines
5.4 KiB
TypeScript
Raw Normal View History

2022-03-15 10:59:51 +01:00
import { ConfigurationEvent, HabboWebTools, LegacyExternalInterface, Nitro, NitroCommunicationDemoEvent, NitroEvent, NitroLocalizationEvent, NitroVersion, RoomEngineEvent, WebGL } from '@nitrots/nitro-renderer';
2021-06-24 09:58:43 +02:00
import { FC, useCallback, useState } from 'react';
2022-03-21 08:57:00 +01:00
import { GetCommunication, GetConfiguration, GetNitroInstance, GetUIVersion } from './api';
2022-03-03 08:23:01 +01:00
import { Base, TransitionAnimation, TransitionAnimationTypes } from './common';
2022-02-21 19:34:12 +01:00
import { LoadingView } from './components/loading/LoadingView';
2022-02-21 19:39:07 +01:00
import { MainView } from './components/main/MainView';
2022-03-15 10:59:51 +01:00
import { DispatchUiEvent, UseConfigurationEvent, UseLocalizationEvent, UseMainEvent, UseRoomEngineEvent } from './hooks';
2021-04-14 20:24:24 +02:00
2022-03-21 08:57:00 +01:00
NitroVersion.UI_VERSION = GetUIVersion();
2021-06-23 10:05:23 +02:00
export const App: FC<{}> = props =>
2021-04-14 20:24:24 +02:00
{
2021-09-30 04:32:52 +02:00
const [ isReady, setIsReady ] = useState(false);
const [ isError, setIsError ] = useState(false);
const [message, setMessage] = useState('Getting Ready');
const [percent, setPercent] = useState(0);
2021-04-14 20:24:24 +02:00
//@ts-ignore
if(!NitroConfig) throw new Error('NitroConfig is not defined!');
2022-03-21 08:57:00 +01:00
if(!GetNitroInstance()) Nitro.bootstrap();
2021-04-14 20:24:24 +02:00
2021-06-24 09:58:43 +02:00
const getPreloadAssetUrls = useCallback(() =>
2021-04-14 20:24:24 +02:00
{
const urls: string[] = [];
2021-05-05 00:47:36 +02:00
const assetUrls = GetConfiguration<string[]>('preload.assets.urls');
2021-04-14 20:24:24 +02:00
if(assetUrls && assetUrls.length)
{
2021-07-22 07:09:31 +02:00
for(const url of assetUrls) urls.push(GetNitroInstance().core.configuration.interpolate(url));
2021-04-14 20:24:24 +02:00
}
return urls;
2021-06-23 10:05:23 +02:00
}, []);
2021-04-14 20:24:24 +02:00
2022-03-15 18:34:34 +01:00
const loadPercent = useCallback(() => setPercent(prevValue => (prevValue + 20)), []);
2021-04-15 08:49:56 +02:00
const handler = useCallback((event: NitroEvent) =>
2021-04-14 20:24:24 +02:00
{
switch(event.type)
{
case ConfigurationEvent.LOADED:
2021-07-22 07:09:31 +02:00
GetNitroInstance().localization.init();
loadPercent();
2021-04-14 20:24:24 +02:00
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');
2021-04-14 20:24:24 +02:00
setTimeout(() => window.location.reload(), 1500);
return;
case NitroCommunicationDemoEvent.CONNECTION_HANDSHAKING:
loadPercent();
2021-04-14 20:24:24 +02:00
return;
case NitroCommunicationDemoEvent.CONNECTION_HANDSHAKE_FAILED:
setIsError(true);
setMessage('Handshake Failed');
2021-04-14 20:24:24 +02:00
return;
case NitroCommunicationDemoEvent.CONNECTION_AUTHENTICATED:
loadPercent();
2021-04-14 20:24:24 +02:00
2022-03-15 10:59:51 +01:00
GetNitroInstance().init();
2022-01-11 08:32:38 +01:00
if(LegacyExternalInterface.available) LegacyExternalInterface.call('legacyTrack', 'authentication', 'authok', []);
2021-04-14 20:24:24 +02:00
return;
case NitroCommunicationDemoEvent.CONNECTION_ERROR:
setIsError(true);
setMessage('Connection Error');
return;
case NitroCommunicationDemoEvent.CONNECTION_CLOSED:
2022-03-15 18:34:34 +01:00
//if(GetNitroInstance().roomEngine) GetNitroInstance().roomEngine.dispose();
2021-04-14 20:24:24 +02:00
2022-03-15 18:34:34 +01:00
//setIsError(true);
2021-04-14 20:24:24 +02:00
setMessage('Connection Error');
2022-01-11 08:32:38 +01:00
HabboWebTools.send(-1, 'client.init.handshake.fail');
2021-04-14 20:24:24 +02:00
return;
case RoomEngineEvent.ENGINE_INITIALIZED:
loadPercent();
2022-03-15 10:59:51 +01:00
2022-03-15 18:34:34 +01:00
setTimeout(() => setIsReady(true), 300);
2021-04-14 20:24:24 +02:00
return;
case NitroLocalizationEvent.LOADED:
2021-07-22 07:09:31 +02:00
GetNitroInstance().core.asset.downloadAssets(getPreloadAssetUrls(), (status: boolean) =>
2021-04-14 20:24:24 +02:00
{
if(status)
{
2021-07-22 07:09:31 +02:00
GetCommunication().init();
loadPercent();
2021-04-14 20:24:24 +02:00
}
else
{
setIsError(true);
setMessage('Assets Failed');
}
});
return;
}
}, [ getPreloadAssetUrls,loadPercent ]);
2021-04-14 20:24:24 +02:00
2022-03-03 10:11:31 +01:00
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);
2021-04-14 20:24:24 +02:00
if(!WebGL.isWebGLAvailable())
{
2022-03-03 10:11:31 +01:00
DispatchUiEvent(new NitroEvent(Nitro.WEBGL_UNAVAILABLE));
2021-04-14 20:24:24 +02:00
}
2021-04-16 05:44:54 +02:00
else
{
2021-07-22 07:09:31 +02:00
GetNitroInstance().core.configuration.init();
2021-04-16 05:44:54 +02:00
}
2021-04-14 20:24:24 +02:00
return (
2022-02-22 17:08:27 +01:00
<Base fit overflow="hidden">
{ (!isReady || isError) &&
<LoadingView isError={isError} message={message} percent={ percent } /> }
2022-03-15 18:34:34 +01:00
<TransitionAnimation type={ TransitionAnimationTypes.FADE_IN } inProp={ (isReady) }>
2021-09-13 18:29:04 +02:00
<MainView />
</TransitionAnimation>
2022-02-22 17:08:27 +01:00
<Base id="draggable-windows-container" />
</Base>
2021-04-14 20:24:24 +02:00
);
}