blob: 4370ed0f42ea9e3f73c28a2bf42e459e1279e5d7 (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
//=============================================================================
// Copyright (C) 2002 Radical Entertainment Ltd. All rights reserved.
//
// File: Choreofilehandler.h
//
// Description: Declaration of ChoreoFileHandler class.
//
// History: 3/25/2002 + Created -- Darwin Chau
//
//=============================================================================
#ifndef CHOREOFILEHANDLER_H
#define CHOREOFILEHANDLER_H
//========================================
// Nested Includes
//========================================
#include <loading/filehandler.h>
#include <radfile.hpp>
//========================================
// Forward References
//========================================
//=============================================================================
//
// Synopsis: File handler for loading Pure3D files.
//
//=============================================================================
class ChoreoFileHandler : public FileHandler,
public IRadFileCompletionCallback
{
public:
ChoreoFileHandler();
virtual ~ChoreoFileHandler();
//
// Implement FileHandler interface.
//
virtual void LoadFile( const char* filename,
FileHandler::LoadFileCallback* pCallback,
void* pUserData,
GameMemoryAllocator heap );
virtual void LoadFileSync( const char* filename );
//
// Implement IRadFileCompletionCallback interface.
//
virtual void OnFileOperationsComplete( void* pUserData );
virtual void AddRef() {FileHandler::AddRef();}
virtual void Release() {FileHandler::Release();}
//
// Specify which Choreo inventory section to load the file into.
//
void SetSectionName( const char* sectionName );
const char* GetSectionName() { return( mcSectionName ); }
private:
enum ChoreoFileState
{
NONE,
OPENFILE,
READDATA,
DONE
};
// Async Load State.
//
ChoreoFileState m_state;
// Data buffer.
//
char* mScriptString;
// Prevent wasteful constructor creation.
ChoreoFileHandler( const ChoreoFileHandler& Choreofilehandler );
ChoreoFileHandler& operator=( const ChoreoFileHandler& Choreofilehandler );
char mcSectionName[32];
IRadFile* mpScriptFile;
};
#endif //CHOREOFILEHANDLER_H
|