blob: 967133d82621f134b57793ab62d0482eee19fe4f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
//=======================================================================================//
#ifndef ERRORSYSTEM_H
#define ERRORSYSTEM_H
#ifdef _WIN32
#pragma once
#endif
//----------------------------------------------------------------------------------------
#include "replay/ireplayerrorsystem.h"
#include "basethinker.h"
#include "utllinkedlist.h"
//----------------------------------------------------------------------------------------
class KeyValues;
class CClientRecordingSessionBlock;
class CHttpDownloader;
//----------------------------------------------------------------------------------------
class IErrorReporter
{
public:
virtual void ReportErrorsToUser( wchar_t *pErrorText ) = 0;
};
//----------------------------------------------------------------------------------------
class CErrorSystem : public CBaseThinker,
public IReplayErrorSystem
{
public:
CErrorSystem( IErrorReporter *pErrorReporter );
~CErrorSystem();
virtual void AddErrorFromTokenName( const char *pToken );
virtual void AddFormattedErrorFromTokenName( const char *pFormatToken, KeyValues *pFormatArgs );
#if !defined( DEDICATED )
void OGS_ReportSessionBlockDownloadError( const CHttpDownloader *pDownloader, const CClientRecordingSessionBlock *pBlock,
int nLocalFileSize, int nMaxBlock, const bool *pSizesDiffer,
const bool *pHashFail, uint8 *pLocalHash );
void OGS_ReportSessioInfoDownloadError( const CHttpDownloader *pDownloader, const char *pErrorToken );
void OGS_ReportGenericError( const char *pGenericErrorToken );
#endif
private:
void AddError( const wchar_t *pError );
void AddError( const char *pError );
float GetNextThinkTime() const;
void Think();
void Clear();
IErrorReporter *m_pErrorReporter;
CUtlLinkedList< wchar_t *, int > m_lstErrors;
};
//----------------------------------------------------------------------------------------
#endif // ERRORSYSTEM_H
|