2022-06-16 21:33:18 +00:00
/**
* @ file server / Client . hpp
* @ author CraftyBoss ( https : //github.com/CraftyBoss)
* @ brief main class responsible for handing all client - server related communications , as well as any gamemodes .
2022-06-25 00:46:58 +00:00
*
2022-06-16 21:33:18 +00:00
* @ copyright Copyright ( c ) 2022
2022-06-25 00:46:58 +00:00
*
2022-06-16 21:33:18 +00:00
*/
# pragma once
# include "Keyboard.hpp"
# include "al/actor/ActorInitInfo.h"
# include "al/actor/ActorSceneInfo.h"
# include "al/async/AsyncFunctorThread.h"
# include "al/async/FunctorV0M.hpp"
# include "al/LiveActor/LiveActor.h"
# include "al/layout/LayoutInitInfo.h"
2022-09-04 09:23:02 +00:00
# include "al/layout/SimpleLayoutAppearWaitEnd.h"
2022-06-16 21:33:18 +00:00
# include "al/layout/WindowConfirmWait.h"
# include "al/util.hpp"
# include "al/layout/LayoutActor.h"
# include "al/gamepad/util.h"
# include "al/camera/CameraPoser.h"
# include "al/camera/alCameraPoserFunction.h"
# include "container/seadPtrArray.h"
# include "game/Actors/Shine.h"
2022-07-05 19:45:22 +00:00
# include "game/GameData/GameDataHolderAccessor.h"
2022-06-16 21:33:18 +00:00
# include "game/Player/PlayerActorHakoniwa.h"
# include "game/StageScene/StageScene.h"
# include "game/Layouts/CoinCounter.h"
# include "game/Player/PlayerFunction.h"
# include "game/GameData/GameDataHolderWriter.h"
# include "game/GameData/GameDataFunction.h"
2022-09-04 09:23:02 +00:00
# include "heap/seadExpHeap.h"
2022-06-16 21:33:18 +00:00
# include "layouts/HideAndSeekIcon.h"
# include "rs/util.hpp"
# include "sead/heap/seadDisposer.h"
# include "sead/math/seadVector.h"
# include "sead/math/seadMatrix.h"
# include "sead/prim/seadSafeString.h"
# include "sead/prim/seadSafeString.hpp"
# include "sead/gfx/seadCamera.h"
# include "sead/basis/seadNew.h"
# include "sead/container/seadSafeArray.h"
# include "sead/thread/seadMutex.h"
# include "nn/account.h"
# include "server/gamemode/GameModeBase.hpp"
# include "server/gamemode/GameModeConfigMenu.hpp"
# include "server/gamemode/GameModeInfoBase.hpp"
# include "server/gamemode/GameModeTimer.hpp"
# include "types.h"
# include "logger.hpp"
# include "server/SocketClient.hpp"
# include "helpers.hpp"
# include "puppets/HackModelHolder.hpp"
# include "puppets/PuppetHolder.hpp"
# include "syssocket/sockdefines.h"
# include "debugMenu.hpp"
# include "Keyboard.hpp"
# include "puppets/PuppetInfo.h"
2022-09-04 09:23:02 +00:00
# include <cstddef>
2022-06-16 21:33:18 +00:00
# include <stdlib.h>
2022-07-05 19:45:22 +00:00
# define MAXPUPINDEX 32
2022-06-16 21:33:18 +00:00
struct UIDIndexNode {
nn : : account : : Uid uid ;
int puppetIndex ;
} ;
class HideAndSeekIcon ;
class Client {
2022-07-08 08:02:28 +00:00
SEAD_SINGLETON_DISPOSER ( Client )
2022-06-16 21:33:18 +00:00
2022-07-08 08:02:28 +00:00
public :
Client ( ) ;
2022-06-16 21:33:18 +00:00
2022-07-05 19:45:22 +00:00
void init ( al : : LayoutInitInfo const & initInfo , GameDataHolderAccessor holder ) ;
2022-06-16 21:33:18 +00:00
2022-09-04 09:23:02 +00:00
bool startThread ( ) ;
2022-06-16 21:33:18 +00:00
void readFunc ( ) ;
2022-07-05 19:45:22 +00:00
static void restartConnection ( ) ;
2022-06-16 21:33:18 +00:00
static bool isSocketActive ( ) { return sInstance ? sInstance - > mSocket - > isConnected ( ) : false ; } ;
bool isPlayerConnected ( int index ) { return mPuppetInfoArr [ index ] - > isConnected ; }
static bool isNeedUpdateShines ( ) ;
bool isShineCollected ( int shineId ) ;
static void sendHackCapInfPacket ( const HackCap * hackCap ) ;
2022-08-10 21:11:52 +00:00
static void sendPlayerInfPacket ( const PlayerActorBase * player , bool isYukimaru ) ;
2022-06-16 21:33:18 +00:00
static void sendGameInfPacket ( const PlayerActorHakoniwa * player , GameDataHolderAccessor holder ) ;
static void sendGameInfPacket ( GameDataHolderAccessor holder ) ;
static void sendCostumeInfPacket ( const char * body , const char * cap ) ;
static void sendShineCollectPacket ( int shineId ) ;
static void sendTagInfPacket ( ) ;
static void sendCaptureInfPacket ( const PlayerActorHakoniwa * player ) ;
2022-09-05 01:21:43 +00:00
void resendInitPackets ( ) ;
2022-06-16 21:33:18 +00:00
int getCollectedShinesCount ( ) { return curCollectedShines . size ( ) ; }
int getShineID ( int index ) { if ( index < curCollectedShines . size ( ) ) { return curCollectedShines [ index ] ; } return - 1 ; }
2022-09-04 09:23:02 +00:00
static void update ( ) ;
static void clearArrays ( ) ;
2022-06-16 21:33:18 +00:00
static bool tryAddPuppet ( PuppetActor * puppet ) ;
static bool tryAddDebugPuppet ( PuppetActor * puppet ) ;
2022-09-04 09:23:02 +00:00
static bool isFirstConnect ( ) { return sInstance ? sInstance - > mIsFirstConnect : false ; }
2022-06-16 21:33:18 +00:00
static const char * getClientName ( ) { return sInstance ? sInstance - > mUsername . cstr ( ) : " Player " ; }
static PuppetActor * getPuppet ( int idx ) ;
static PuppetInfo * getPuppetInfo ( int idx ) ;
static PuppetInfo * getLatestInfo ( ) ;
static PuppetInfo * getDebugPuppetInfo ( ) ;
static PuppetActor * getDebugPuppet ( ) ;
2022-09-04 09:23:02 +00:00
static sead : : Heap * getClientHeap ( ) { return sInstance ? sInstance - > mHeap : nullptr ; }
2022-06-16 21:33:18 +00:00
2022-09-04 09:23:02 +00:00
static int getMaxPlayerCount ( ) { return sInstance ? sInstance - > maxPuppets + 1 : 10 ; }
2022-06-16 21:33:18 +00:00
2022-06-19 00:48:37 +00:00
static const int getCurrentPort ( ) ;
2022-06-16 21:33:18 +00:00
static int getConnectCount ( ) {
if ( sInstance )
return sInstance - > mConnectCount ;
return 0 ;
}
2022-08-07 21:42:56 +00:00
static PuppetHolder * getPuppetHolder ( ) {
if ( sInstance )
return sInstance - > mPuppetHolder ;
return nullptr ;
}
2022-09-04 09:23:02 +00:00
static Keyboard * getKeyboard ( ) ;
static const char * getCurrentIP ( ) ;
static nn : : account : : Uid getClientId ( ) { return sInstance ? sInstance - > mUserID : nn : : account : : Uid : : EmptyId ; }
static sead : : FixedSafeString < 0x20 > getUsername ( ) { return sInstance ? sInstance - > mUsername : sead : : FixedSafeString < 0x20 > : : cEmptyString ; }
static void setStageInfo ( GameDataHolderAccessor holder ) ;
static void setLastUsedIP ( const char * ip ) ;
static void setLastUsedPort ( const int port ) ;
static void setTagState ( bool state ) ;
2022-06-16 21:33:18 +00:00
static void setSceneInfo ( const al : : ActorInitInfo & initInfo , const StageScene * stageScene ) ;
static bool tryRegisterShine ( Shine * shine ) ;
static Shine * findStageShine ( int shineID ) ;
static void updateShines ( ) ;
2022-07-10 01:24:00 +00:00
static bool openKeyboardIP ( ) ;
static bool openKeyboardPort ( ) ;
2022-06-16 21:33:18 +00:00
2022-07-10 01:24:00 +00:00
static void showConnect ( ) ;
static void showConnectError ( const char16_t * msg ) ;
static void hideConnect ( ) ;
2022-06-16 21:33:18 +00:00
void resetCollectedShines ( ) ;
void removeShine ( int shineId ) ;
// public for debug purposes
SocketClient * mSocket ;
private :
void updatePlayerInfo ( PlayerInf * packet ) ;
void updateHackCapInfo ( HackCapInf * packet ) ;
void updateGameInfo ( GameInf * packet ) ;
void updateCostumeInfo ( CostumeInf * packet ) ;
void updateShineInfo ( ShineCollect * packet ) ;
void updatePlayerConnect ( PlayerConnect * packet ) ;
void updateTagInfo ( TagInf * packet ) ;
void updateCaptureInfo ( CaptureInf * packet ) ;
void sendToStage ( ChangeStagePacket * packet ) ;
void disconnectPlayer ( PlayerDC * packet ) ;
2022-07-05 19:45:22 +00:00
PuppetInfo * findPuppetInfo ( const nn : : account : : Uid & id , bool isFindAvailable ) ;
2022-06-16 21:33:18 +00:00
bool startConnection ( ) ;
// --- General Server Members ---
2022-09-04 09:23:02 +00:00
al : : AsyncFunctorThread * mReadThread = nullptr ; // processes data queued in the SocketClient's RecvQueue
2022-06-16 21:33:18 +00:00
int mConnectCount = 0 ;
nn : : account : : Uid mUserID ;
sead : : FixedSafeString < 0x20 > mUsername ;
2022-07-05 19:45:22 +00:00
bool mIsConnectionActive = false ;
2022-06-16 21:33:18 +00:00
// --- Server Syncing Members ---
// array of shine IDs for checking if multiple shines have been collected in quick sucession, all moons within the players stage that match the ID will be deleted
2022-06-25 00:46:58 +00:00
sead : : SafeArray < int , 128 > curCollectedShines ;
2022-06-16 21:33:18 +00:00
int collectedShineCount = 0 ;
int lastCollectedShine = - 1 ;
2022-06-26 03:11:06 +00:00
// Backups for our last player/game packets, used for example to re-send them for newly connected clients
PlayerInf lastPlayerInfPacket = PlayerInf ( ) ;
2022-06-16 21:33:18 +00:00
GameInf lastGameInfPacket = GameInf ( ) ;
2022-09-05 01:21:43 +00:00
GameInf emptyGameInfPacket = GameInf ( ) ;
2022-06-26 03:11:06 +00:00
CostumeInf lastCostumeInfPacket = CostumeInf ( ) ;
2022-06-16 21:33:18 +00:00
Keyboard * mKeyboard = nullptr ; // keyboard for setting server IP
2022-07-10 06:13:28 +00:00
hostname mServerIP ;
2022-06-16 21:33:18 +00:00
2022-06-19 00:48:37 +00:00
int mServerPort = 0 ;
2022-06-16 21:33:18 +00:00
2022-06-25 00:46:58 +00:00
bool waitForGameInit = true ;
2022-09-04 09:23:02 +00:00
bool mIsFirstConnect = true ;
2022-06-16 21:33:18 +00:00
// --- Game Layouts ---
al : : WindowConfirmWait * mConnectionWait ;
2022-09-04 09:23:02 +00:00
al : : SimpleLayoutAppearWaitEnd * mConnectStatus ;
2022-06-16 21:33:18 +00:00
// --- Game Info ---
bool isClientCaptured = false ;
bool isSentCaptureInf = false ;
bool isSentHackInf = false ;
al : : ActorSceneInfo *
mSceneInfo = nullptr ; // TODO: create custom scene info class with only the info we actually need
const StageScene * mCurStageScene = nullptr ;
sead : : PtrArray < Shine > mShineArray ; // List of all Shines currently in a Stage
sead : : FixedSafeString < 0x40 > mStageName ;
2022-07-05 19:45:22 +00:00
GameDataHolderAccessor mHolder ;
2022-06-16 21:33:18 +00:00
u8 mScenario = 0 ;
2022-09-04 09:23:02 +00:00
sead : : ExpHeap * mHeap = nullptr ; // Custom FrameHeap used for all Client related memory
2022-07-08 08:02:28 +00:00
2022-06-16 21:33:18 +00:00
// --- Puppet Info ---
2022-07-08 08:02:28 +00:00
int maxPuppets = 9 ; // default max player count is 10, so default max puppets will be 9
2022-08-07 21:42:56 +00:00
PuppetInfo * mPuppetInfoArr [ MAXPUPINDEX ] = { } ;
2022-06-16 21:33:18 +00:00
PuppetHolder * mPuppetHolder = nullptr ;
PuppetInfo mDebugPuppetInfo ;
2022-07-10 06:13:28 +00:00
} ;