blob: c703800dda65323b822bc8ce9738b9426a1b8248 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
//=============================================================================
// Copyright (C) 2002 Radical Entertainment Ltd. All rights reserved.
//
// File: staticcamlocator.h
//
// Description: Blahblahblah
//
// History: 9/18/2002 + Created -- Cary Brisebois
//
//=============================================================================
#ifndef STATICCAMLOCATOR_H
#define STATICCAMLOCATOR_H
//========================================
// Nested Includes
//========================================
#include <meta/triggerlocator.h>
//========================================
// Forward References
//========================================
class StaticCam;
class SuperCam;
//=============================================================================
//
// Synopsis: Blahblahblah
//
//=============================================================================
class StaticCamLocator : public TriggerLocator
{
public:
StaticCamLocator();
virtual ~StaticCamLocator();
virtual LocatorType::Type GetDataType() const;
StaticCam* GetStaticCam() const;
void SetStaticCam( StaticCam* cam );
void SetOneShot( bool oneShot );
void SetCarOnly( bool carOnly );
void SetOnFootOnly( bool onFootOnly );
void SetCutInOut( bool cut );
bool TriggerAllowed( int playerID );
private:
StaticCam* mStaticCam;
int mCamNum;
unsigned int mTriggerCount;
SuperCam* mLastSuperCam;
bool mOneShot;
bool mOneShotted; //Haha.
bool mCarOnly;
bool mOnFootOnly;
bool mCutInOut;
virtual void OnTrigger( unsigned int playerID );
//Prevent wasteful constructor creation.
StaticCamLocator( const StaticCamLocator& staticcamlocator );
StaticCamLocator& operator=( const StaticCamLocator& staticcamlocator );
};
//******************************************************************************
//
// Inline Public Member Functions
//
//******************************************************************************
//=============================================================================
// StaticCamLocator::GetDataType
//=============================================================================
// Description: Comment
//
// Parameters: ()
//
// Return: inline
//
//=============================================================================
inline LocatorType::Type StaticCamLocator::GetDataType() const
{
return( LocatorType::STATIC_CAMERA );
}
//=============================================================================
// StaticCamLocator::GetRailCam
//=============================================================================
// Description: Comment
//
// Parameters: ()
//
// Return: StaticCamera
//
//=============================================================================
inline StaticCam* StaticCamLocator::GetStaticCam() const
{
return mStaticCam;
}
//=============================================================================
// StaticCamLocator::SetOneShot
//=============================================================================
// Description: Comment
//
// Parameters: ( bool oneShot )
//
// Return: void
//
//=============================================================================
inline void StaticCamLocator::SetOneShot( bool oneShot )
{
mOneShot = oneShot;
}
//=============================================================================
// StaticCamLocator::SetCarOnly
//=============================================================================
// Description: Comment
//
// Parameters: ( bool carOnly )
//
// Return: void
//
//=============================================================================
inline void StaticCamLocator::SetCarOnly( bool carOnly )
{
mCarOnly = carOnly;
}
//=============================================================================
// StaticCamLocator::SetOnFootOnly
//=============================================================================
// Description: Comment
//
// Parameters: ( bool onFootOnly )
//
// Return: void
//
//=============================================================================
inline void StaticCamLocator::SetOnFootOnly( bool onFootOnly )
{
if ( onFootOnly == true )
{
rAssert( mCarOnly != true );
}
mOnFootOnly = onFootOnly;
}
//=============================================================================
// StaticCamLocator::SetCutInOut
//=============================================================================
// Description: Comment
//
// Parameters: ( bool cut )
//
// Return: void
//
//=============================================================================
inline void StaticCamLocator::SetCutInOut( bool cut )
{
mCutInOut = cut;
}
#endif //STATICCAMLOCATOR_H
|