📄 undemorec.h
字号:
/*=============================================================================
UnDemoRec.h: Unreal demo recording.
Copyright 1997-1999 Epic Games, Inc. All Rights Reserved.
Revision history:
* Created by Jack Porter.
=============================================================================*/
class UDemoRecDriver;
class UDemoRecConnection;
/*-----------------------------------------------------------------------------
UDemoRecConnection.
-----------------------------------------------------------------------------*/
//
// Simulated network connection for recording and playing back game sessions.
//
class ENGINE_API UDemoRecConnection : public UNetConnection
{
DECLARE_CLASS(UDemoRecConnection,UNetConnection,CLASS_Config|CLASS_Transient)
NO_DEFAULT_CONSTRUCTOR(UDemoRecConnection)
// Constructors.
void StaticConstructor();
UDemoRecConnection( UNetDriver* InDriver, const FURL& InURL );
// UNetConnection interface.
FString LowLevelDescribe();
void LowLevelSend( void* Data, INT Count );
UBOOL IsNetReady();
// UDemoRecConnection functions.
UDemoRecDriver* GetDriver();
};
/*-----------------------------------------------------------------------------
UDemoRecDriver.
-----------------------------------------------------------------------------*/
//
// Simulated network driver for recording and playing back game sessions.
//
class ENGINE_API UDemoRecDriver : public UNetDriver
{
DECLARE_CLASS(UDemoRecDriver,UNetDriver,CLASS_Transient|CLASS_Config)
// Variables.
DOUBLE NextPacketPlaybackTime;//!!cached hack
FString DemoFilename;
FStringNoInit DemoSpectatorClass;
FArchive* FileAr;
UBOOL bJustConnected;//!!is there a better way to handle this?
// Constructors.
void StaticConstructor();
UDemoRecDriver();
// UNetDriver interface.
void LowLevelDestroy();
FString LowLevelGetNetworkNumber();
UBOOL InitConnect( FNetworkNotify* InNotify, FURL& ConnectURL, FString& Error );
UBOOL InitListen( FNetworkNotify* InNotify, FURL& ConnectURL, FString& Error );
void TickDispatch( FLOAT DeltaTime );
// FExec interface.
INT Exec( const TCHAR* Cmd, FOutputDevice& Ar=*GLog );
// UDemoRecDriver functions.
UBOOL InitBase( UBOOL Connect, FNetworkNotify* InNotify, FURL& ConnectURL, FString& Error );
ULevel* GetLevel();
};
/*-----------------------------------------------------------------------------
The End.
-----------------------------------------------------------------------------*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -