520389e3
xiaoyu
接入cocos源码,编译未通过,继续修改
|
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
|
/****************************************************************************
Copyright (c) 2012 cocos2d-x.org
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#ifndef __CCDICTIONARY_H__
#define __CCDICTIONARY_H__
/// @cond DO_NOT_SHOW
#include "base/uthash.h"
#include "base/CCRef.h"
#include "scripting/deprecated/CCArray.h"
#include "scripting/deprecated/CCString.h"
NS_CC_BEGIN
class __Dictionary;
/**
* @addtogroup data_structures
* @{
*/
/**
* DictElement is used for traversing Dictionary.
*
* A DictElement is one element of Dictionary, it contains two properties, key and object.
* Its key has two different type (integer and string).
*
* @note The key type is unique, all the elements in Dictionary has the same key type(integer or string).
* @code
* DictElement* pElement;
* CCDICT_FOREACH(dict, pElement)
* {
* const char*key = pElement->getStrKey();
* // You certainly know the type of value, so we assume that it's a Sprite.
* Sprite* pSprite = static_cast<Sprite*>(pElement->getObject());
* // ......
* }
* @endcode
*
*/
class CC_DLL DictElement
{
private:
/**
* Constructor of DictElement. It's only for internal usage. Dictionary is its friend class.
*
* @param pszKey The string key of this element.
* @param pObject The object of this element.
*/
DictElement(const char* pszKey, Ref* pObject);
/**
* Constructor of DictElement. It's only for internal usage. Dictionary is its friend class.
*
* @param iKey The integer key of this element.
* @param pObject The object of this element.
*/
DictElement(intptr_t iKey, Ref* pObject);
public:
/**
* The destructor of DictElement.
* @js NA
* @lua NA
*/
~DictElement();
// Inline functions need to be implemented in header file on Android.
/**
* Get the string key of this element.
* @note This method assumes you know the key type in the element.
* If the element's key type is integer, invoking this method will cause an assert.
*
* @return The string key of this element.
*/
const char* getStrKey() const
{
CCASSERT(_strKey[0] != '\0', "Should not call this function for integer dictionary");
return _strKey;
}
/**
* Get the integer key of this element.
* @note This method assumes you know the key type in the element.
* If the element's key type is string, invoking this method will cause an assert.
*
* @return The integer key of this element.
*/
intptr_t getIntKey() const
{
CCASSERT(_strKey[0] == '\0', "Should not call this function for string dictionary");
return _intKey;
}
/**
* Get the object of this element.
*
* @return The object of this element.
*/
Ref* getObject() const { return _object; }
private:
// The max length of string key.
#define MAX_KEY_LEN 256
// char array is needed for HASH_ADD_STR in UT_HASH.
// So it's a pain that all elements will allocate 256 bytes for this array.
char _strKey[MAX_KEY_LEN]; // hash key of string type
intptr_t _intKey; // hash key of integer type
Ref* _object; // hash value
public:
UT_hash_handle hh; // makes this class hashable
friend class __Dictionary; // declare Dictionary as friend class
};
/** The macro for traversing dictionary
*
* @note It's faster than getting all keys and traversing keys to get objects by objectForKey.
* It's also safe to remove elements while traversing.
*/
#define CCDICT_FOREACH(__dict__, __el__) \
DictElement* pTmp##__dict__##__el__ = nullptr; \
if (__dict__) \
HASH_ITER(hh, (__dict__)->_elements, __el__, pTmp##__dict__##__el__)
/**
* Dictionary is a class like NSDictionary in Obj-C .
*
* @note Only the pointer of Object or its subclass can be inserted to Dictionary.
* @code
* // Create a dictionary, return an autorelease object.
* Dictionary* pDict = Dictionary::create();
*
* // Insert objects to dictionary
* String* pValue1 = String::create("100");
* String* pValue2 = String::create("120");
* Integer* pValue3 = Integer::create(200);
* pDict->setObject(pValue1, "key1");
* pDict->setObject(pValue2, "key2");
* pDict->setObject(pValue3, "key3");
*
* // Get the object for key
* String* pStr1 = static_cast<String*>(pDict->objectForKey("key1"));
* log("{ key1: %s }", pStr1->getCString());
* Integer* pInteger = static_cast<Integer*>(pDict->objectForKey("key3"));
* log("{ key3: %d }", pInteger->getValue());
* @endcode
*
*/
class CC_DLL __Dictionary : public Ref, public Clonable
{
public:
/**
* The constructor of Dictionary.
* @js NA
* @lua NA
*/
__Dictionary();
/**
* The destructor of Dictionary
* @js NA
* @lua NA
*/
~__Dictionary();
/** Initializes the dictionary. It returns true if the initializations was successful.
* @js NA
* @lua NA
*/
bool init();
/**
* Get the count of elements in Dictionary.
*
* @return The count of elements.
* @js NA
*/
unsigned int count();
/**
* Return all keys of elements.
*
* @return The array contains all keys of elements. It's an autorelease object yet.
* @js NA
*/
__Array* allKeys();
/**
* Get all keys according to the specified object.
* @warning We use '==' to compare two objects
* @return The array contains all keys for the specified object. It's an autorelease object yet.
* @js NA
*/
__Array* allKeysForObject(Ref* object);
/**
* Get the object according to the specified string key.
*
* @note The dictionary needs to use string as key. If integer is passed, an assert will appear.
* @param key The string key for searching.
* @return The object matches the key. You need to force convert it to the type you know.
* @code
* // Assume that the elements are String* pointers. Convert it by following code.
* String* pStr = static_cast<String*>(pDict->objectForKey("key1"));
* // Do something about pStr.
* // If you don't know the object type, properly you need to use dynamic_cast<SomeType*> to check it.
* String* pStr2 = dynamic_cast<String*>(pDict->objectForKey("key1"));
* if (pStr2 != NULL) {
* // Do something about pStr2
* }
* @endcode
* @see objectForKey(intptr_t)
* @js NA
*/
Ref* objectForKey(const std::string& key);
/**
* Get the object according to the specified integer key.
*
* @note The dictionary needs to use integer as key. If string is passed, an assert will appear.
* @param key The integer key for searching.
* @return The object matches the key.
* @see objectForKey(const std::string&)
* @js NA
*/
Ref* objectForKey(intptr_t key);
/** Get the value according to the specified string key.
*
* @note Be careful to use this function since it assumes the objects in the dictionary are __String pointer.
* @param key The string key for searching
* @return An instance of String.
* It will return an empty string if the objects aren't __String pointer or the key wasn't found.
* @see valueForKey(intptr_t)
* @js NA
*/
const __String* valueForKey(const std::string& key);
/** Get the value according to the specified integer key.
*
* @note Be careful to use this function since it assumes the objects in the dictionary are __String pointer.
* @param key The string key for searching.
* @return An instance of String.
* It will return an empty string if the objects aren't __String pointer or the key wasn't found.
* @see valueForKey(intptr_t)
* @js NA
*/
const __String* valueForKey(intptr_t key);
/** Insert an object to dictionary, and match it with the specified string key.
*
* @note When the first time this method is invoked, the key type will be set to string.
* After that you can't setObject with an integer key.
* If the dictionary contains the key you passed, the object matching the key will be released and removed from dictionary.
* Then the new object will be inserted after that.
*
* @param pObject The Object to be inserted.
* @param key The string key for searching.
* @see setObject(Ref*, intptr_t)
* @js NA
*/
void setObject(Ref* pObject, const std::string& key);
/** Insert an object to dictionary, and match it with the specified string key.
*
* @note Then the first time this method is invoked, the key type will be set to string.
* After that you can't setObject with an integer key.
* If the dictionary contains the key you passed, the object matching the key will be released and removed from dictionary.
* Then the new object will be inserted after that.
* @param pObject The Object to be inserted.
* @param key The string key for searching.
* @see setObject(Ref*, const std::string&)
* @js NA
*/
void setObject(Ref* pObject, intptr_t key);
/**
* Remove an object by the specified string key.
*
* @param key The string key for searching.
* @see removeObjectForKey(intptr_t), removeObjectsForKeys(__Array*),
* removeObjectForElememt(DictElement*), removeAllObjects().
* @js NA
*/
void removeObjectForKey(const std::string& key);
/**
* Remove an object by the specified integer key.
*
* @param key The integer key for searching.
* @see removeObjectForKey(const std::string&), removeObjectsForKeys(__Array*),
* removeObjectForElememt(DictElement*), removeAllObjects().
* @js NA
*/
void removeObjectForKey(intptr_t key);
/**
* Remove objects by an array of keys.
*
* @param pKeyArray The array contains keys to be removed.
* @see removeObjectForKey(const std::string&), removeObjectForKey(intptr_t),
* removeObjectForElememt(DictElement*), removeAllObjects().
* @js NA
*/
void removeObjectsForKeys(__Array* pKey__Array);
/**
* Remove an object by an element.
*
* @param pElement The element need to be removed.
* @see removeObjectForKey(const std::string&), removeObjectForKey(intptr_t),
* removeObjectsForKeys(__Array*), removeAllObjects().
* @js NA
* @lua NA
*/
void removeObjectForElememt(DictElement* pElement);
/**
* Remove all objects in the dictionary.
*
* @see removeObjectForKey(const std::string&), removeObjectForKey(intptr_t),
* removeObjectsForKeys(__Array*), removeObjectForElememt(DictElement*).
* @js NA
*/
void removeAllObjects();
/**
* Return a random object in the dictionary.
*
* @return The random object.
* @see objectForKey(intptr_t), objectForKey(const std::string&)
* @js NA
* @lua NA
*/
Ref* randomObject();
/**
* Create a dictionary.
* @return A dictionary which is an autorelease object.
* @see createWithDictionary(Dictionary*), createWithContentsOfFile(const char*), createWithContentsOfFileThreadSafe(const char*).
* @js NA
*/
static __Dictionary* create();
/**
* Create a dictionary with an existing dictionary.
*
* @param srcDict The exist dictionary.
* @return A dictionary which is an autorelease object.
* @see create(), createWithContentsOfFile(const char*), createWithContentsOfFileThreadSafe(const char*).
* @js NA
*/
static __Dictionary* createWithDictionary(__Dictionary* srcDict);
/**
* Create a dictionary with a plist file.
* @param pFileName The name of the plist file.
* @return A dictionary which is an autorelease object.
* @see create(), createWithDictionary(Dictionary*), createWithContentsOfFileThreadSafe(const char*).
* @js NA
*/
static __Dictionary* createWithContentsOfFile(const char *pFileName);
/**
* Write a dictionary to a plist file.
* @param fullPath The full path of the plist file. You can get writable path by getWritablePath()
* @return true if succeeded, false if failed
* @js NA
* @lua NA
*/
bool writeToFile(const char *fullPath);
/**
* Create a dictionary with a plist file.
*
* @note the return object isn't an autorelease object.
* This can make sure not using autorelease pool in a new thread.
* Therefore, you need to manage the lifecycle of the return object.
* It means that when you don't need it, CC_SAFE_RELEASE needs to be invoked.
*
* @param pFileName The name of the plist file.
* @return A dictionary which isn't an autorelease object.
* @js NA
* @lua NA
*/
static __Dictionary* createWithContentsOfFileThreadSafe(const char *pFileName);
/* override functions
* @js NA
* @lua NA
*/
virtual void acceptVisitor(DataVisitor &visitor);
/**
* @js NA
* @lua NA
*/
virtual __Dictionary* clone() const override;
private:
/**
* For internal usage, invoked by setObject.
*/
void setObjectUnSafe(Ref* pObject, const std::string& key);
void setObjectUnSafe(Ref* pObject, const intptr_t key);
public:
/**
* All the elements in dictionary.
*
* @note For internal usage, we need to declare this member variable as public since it's used in UT_HASH.
*/
DictElement* _elements;
private:
/** The support type of dictionary, it's confirmed when setObject is invoked. */
enum DictType
{
kDictUnknown = 0,
kDictStr,
kDictInt
};
/**
* The type of dictionary, it's assigned to kDictUnknown by default.
*/
DictType _dictType;
};
// end of data_structure group
/// @}
NS_CC_END
/// @endcond
#endif /* __CCDICTIONARY_H__ */
|