📄 recording.cpp
字号:
//=========== (C) Copyright 1999 Valve, L.L.C. All rights reserved. ===========
//
// The copyright to the contents herein is the property of Valve, L.L.C.
// The contents may be used and/or copied only with the written permission of
// Valve, L.L.C., or in accordance with the terms and conditions stipulated in
// the agreement/contract under which the contents have been supplied.
//
// $Header: $
// $NoKeywords: $
//
// Contains macros used to record all dx8 state setting calls
//=============================================================================
#include <windows.h>
#include "recording.h"
#include "IShaderUtil.h"
#include "materialsystem/IMaterialSystem.h"
#include "ShaderAPIDX8_Global.h"
#include "UtlVector.h"
#include <stdio.h>
#ifdef RECORDING
//-----------------------------------------------------------------------------
// Globals
//-----------------------------------------------------------------------------
static CUtlVector<unsigned char> g_pRecordingBuffer;
static int g_ArgsRemaining = 0;
static int g_CommandStartIdx = 0;
//-----------------------------------------------------------------------------
// Opens the recording file
//-----------------------------------------------------------------------------
static FILE* OpenRecordingFile()
{
#ifdef CRASH_RECORDING
static FILE *fp = 0;
#else
FILE* fp = 0;
#endif
static bool g_CantOpenFile = false;
static bool g_NeverOpened = true;
if (!g_CantOpenFile)
{
#ifdef CRASH_RECORDING
if( g_NeverOpened )
{
fp = fopen( "shaderdx8.rec", "wbc" );
}
#else
fp = fopen( "shaderdx8.rec", g_NeverOpened ? "wb" : "ab" );
#endif
if (!fp)
{
Warning("Unable to open recording file shaderdx8.rec!\n");
g_CantOpenFile = true;
}
g_NeverOpened = false;
}
return fp;
}
//-----------------------------------------------------------------------------
// Writes to the recording file
//-----------------------------------------------------------------------------
#define COMMAND_BUFFER_SIZE 32768
static void WriteRecordingFile()
{
// Store the command size
*(int*)&g_pRecordingBuffer[g_CommandStartIdx] =
g_pRecordingBuffer.Size() - g_CommandStartIdx;
#ifndef CRASH_RECORDING
// When not crash recording, flush when buffer gets too big,
// or when Present() is called
if ((g_pRecordingBuffer.Size() < COMMAND_BUFFER_SIZE) &&
(g_pRecordingBuffer[g_CommandStartIdx+4] != DX8_PRESENT))
return;
#endif
FILE* fp = OpenRecordingFile();
if (fp)
{
// store the command size
fwrite( g_pRecordingBuffer.Base(), 1, g_pRecordingBuffer.Size(), fp );
fflush( fp );
#ifndef CRASH_RECORDING
fclose( fp );
#endif
}
g_pRecordingBuffer.RemoveAll();
}
//-----------------------------------------------------------------------------
// Records a command
//-----------------------------------------------------------------------------
void RecordCommand( RecordingCommands_t cmd, int numargs )
{
Assert( g_ArgsRemaining == 0 );
g_CommandStartIdx = g_pRecordingBuffer.AddMultipleToTail( 6 );
// save space for the total command size
g_pRecordingBuffer[g_CommandStartIdx+4] = cmd;
g_pRecordingBuffer[g_CommandStartIdx+5] = numargs;
g_ArgsRemaining = numargs;
if (g_ArgsRemaining == 0)
WriteRecordingFile();
}
//-----------------------------------------------------------------------------
// Records an argument for a command, flushes when the command is done
//-----------------------------------------------------------------------------
void RecordArgument( void const* pMemory, int size )
{
Assert( g_ArgsRemaining > 0 );
int tail = g_pRecordingBuffer.Size();
g_pRecordingBuffer.AddMultipleToTail( size );
memcpy( &g_pRecordingBuffer[tail], pMemory, size );
if (--g_ArgsRemaining == 0)
WriteRecordingFile();
}
#endif // RECORDING
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -