-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxsdk_surfaceref.cpp
276 lines (206 loc) · 4.8 KB
/
xsdk_surfaceref.cpp
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#include <windows.h>
#include "surfaceref.h"
#include "ext.h"
BaseSurfaceRef::~BaseSurfaceRef () { }
// -----
AutoSurfaceRef::AutoSurfaceRef () {
_surf = new cSurface();
_refCount = new int(1);
}
AutoSurfaceRef::AutoSurfaceRef (const AutoSurfaceRef& sr) {
_refCount = sr._refCount;
(*_refCount)++;
_surf = sr.getSurface();
}
AutoSurfaceRef::~AutoSurfaceRef () {
(*_refCount)--;
if (*_refCount == 0) {
delete _refCount;
delete _surf;
}
}
AutoSurfaceRef& AutoSurfaceRef::operator= (const AutoSurfaceRef& sr) {
if (this == &sr)
return *this;
(*_refCount)--;
if (*_refCount == 0) {
delete _refCount;
delete _surf;
}
_surf = sr._surf;
_refCount = sr._refCount;
(*_refCount)++;
return *this;
}
AutoSurfaceRef* AutoSurfaceRef::clone () const {
return new AutoSurfaceRef(*this);
}
cSurface* AutoSurfaceRef::getSurface () const {
return _surf;
}
bool AutoSurfaceRef::valid () const {
return true;
}
/*AutoSurfaceRef* AutoSurfaceRef::Create () {
return new AutoSurfaceRef();
}
void AutoSurfaceRef::Destroy (AutoSurfaceRef* sr) {
delete sr;
}*/
AutoSurfaceRef* AutoSurfaceRefFactory::create () {
return new AutoSurfaceRef();
}
void AutoSurfaceRefFactory::destroy (AutoSurfaceRef* sr) {
delete sr;
}
// -----
ExternSurfaceRef::ExternSurfaceRef () {
_surf = 0;
}
ExternSurfaceRef::ExternSurfaceRef (cSurface* cs) {
_surf = cs;
}
ExternSurfaceRef::ExternSurfaceRef (const ExternSurfaceRef& sr) : BaseSurfaceRef() {
_surf = sr.getSurface();
}
ExternSurfaceRef::~ExternSurfaceRef () { }
ExternSurfaceRef& ExternSurfaceRef::operator= (const ExternSurfaceRef& sr) {
if (this == &sr)
return *this;
_surf = sr._surf;
return *this;
}
ExternSurfaceRef* ExternSurfaceRef::clone () const {
return new ExternSurfaceRef(*this);
}
cSurface* ExternSurfaceRef::getSurface () const {
return _surf;
}
bool ExternSurfaceRef::valid () const {
return (_surf != 0);
}
void ExternSurfaceRef::bind (cSurface* cs) {
_surf = cs;
}
/*ExternSurfaceRef* ExternSurfaceRef::Create () {
return new ExternSurfaceRef();
}
ExternSurfaceRef* ExternSurfaceRef::Create (cSurface* cs) {
return new ExternSurfaceRef(cs);
}
void ExternSurfaceRef::Destroy (ExternSurfaceRef* sr) {
delete sr;
}*/
ExternSurfaceRef* ExternSurfaceRefFactory::create () {
return new ExternSurfaceRef();
}
ExternSurfaceRef* ExternSurfaceRefFactory::create (cSurface* cs) {
return new ExternSurfaceRef(cs);
}
void ExternSurfaceRefFactory::destroy (ExternSurfaceRef* sr) {
delete sr;
}
// TEMP!!
SurfaceObjSurfaceRef::SurfaceObjSurfaceRef () {
_rds = 0;
_slot = 0;
}
SurfaceObjSurfaceRef::SurfaceObjSurfaceRef (RDSurface* rds, int i) {
_rds = rds;
_slot = i;
}
SurfaceObjSurfaceRef::SurfaceObjSurfaceRef (const SurfaceObjSurfaceRef& sr) {
_rds = sr._rds;
_slot = sr._slot;
}
SurfaceObjSurfaceRef::~SurfaceObjSurfaceRef () { }
SurfaceObjSurfaceRef& SurfaceObjSurfaceRef::operator= (const SurfaceObjSurfaceRef& sr) {
if (this == &sr)
return *this;
_rds = sr._rds;
_slot = sr._slot;
return *this;
}
SurfaceObjSurfaceRef* SurfaceObjSurfaceRef::clone () const {
return new SurfaceObjSurfaceRef(*this);
}
cSurface* SurfaceObjSurfaceRef::getSurface () const {
if (!valid())
return 0;
return _rds->imageAt(_rds, _slot);
}
bool SurfaceObjSurfaceRef::valid () const {
if (!_rds)
return false;
if (_rds->imageCount(_rds) <= _slot)
return false;
return true;
}
void SurfaceObjSurfaceRef::bind (RDSurface* rds, int i) {
_rds = rds;
_slot = i;
}
SurfaceObjSurfaceRef* SurfaceObjSurfaceRefFactory::create () {
return new SurfaceObjSurfaceRef();
}
SurfaceObjSurfaceRef* SurfaceObjSurfaceRefFactory::create (RDSurface* rds) {
return new SurfaceObjSurfaceRef(rds);
}
void SurfaceObjSurfaceRefFactory::destroy (SurfaceObjSurfaceRef* sr) {
delete sr;
}
#if 0
SurfaceRef::SurfaceRef () {
_surf = new cSurface();
_rec = new _SRRec(1, 0);
}
SurfaceRef::SurfaceRef (cSurface* c) {
_surf = c;
_rec = new _SRRec(1, 1);
}
SurfaceRef::SurfaceRef (const SurfaceRef& sr) {
_surf = sr._surf;
_rec->_refCount = sr._rec->_refCount;
_rec->_ext = sr._rec->_ext;
(_rec->_refCount)++;
}
SurfaceRef& SurfaceRef::operator= (const SurfaceRef& sr) {
if (this == &sr)
return *this;
(_rec->_refCount)--;
if (_rec->_refCount <= 0) {
if (!_rec->_ext)
delete _surf;
delete _rec;
}
_surf = sr._surf;
_rec->_refCount = sr._rec->_refCount;
_rec->_ext = sr._rec->_ext;
(_rec->_refCount)++;
return *this;
}
SurfaceRef::~SurfaceRef () {
(_rec->_refCount)--;
if (_rec->_refCount <= 0) {
if (!_rec->_ext)
delete _surf;
delete _rec;
}
}
cSurface& SurfaceRef::getSurface () {
return *_surf;
}
bool SurfaceRef::valid () const {
return (_surf != 0);
}
// ---
SurfaceRef* SurfaceRef::Create () {
return new SurfaceRef();
}
SurfaceRef* SurfaceRef::Create (cSurface* c) {
return new SurfaceRef(c);
}
void SurfaceRef::Destroy (SurfaceRef* sr) {
delete sr;
}
#endif