ScummVM API documentation
cc_dynamic_array.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef AGS_ENGINE_AC_DYNOBJ_CC_DYNAMICARRAY_H
23 #define AGS_ENGINE_AC_DYNOBJ_CC_DYNAMICARRAY_H
24 
25 #include "ags/lib/std/vector.h"
26 #include "ags/engine/ac/dynobj/cc_dynamic_object.h" // ICCDynamicObject
27 
28 namespace AGS3 {
29 
30 #define CC_DYNAMIC_ARRAY_TYPE_NAME "CCDynamicArray"
31 #define ARRAY_MANAGED_TYPE_FLAG 0x80000000
32 
34  // return the type name of the object
35  const char *GetType() override;
36  int Dispose(const char *address, bool force) override;
37  // serialize the object into BUFFER (which is BUFSIZE bytes)
38  // return number of bytes used
39  int Serialize(const char *address, char *buffer, int bufsize) override;
40  virtual void Unserialize(int index, const char *serializedData, int dataSize);
41  // Create managed array object and return a pointer to the beginning of a buffer
42  DynObjectRef Create(int numElements, int elementSize, bool isManagedType);
43 
44  // Legacy support for reading and writing object values by their relative offset
45  const char *GetFieldPtr(const char *address, intptr_t offset) override;
46  void Read(const char *address, intptr_t offset, void *dest, int size) override;
47  uint8_t ReadInt8(const char *address, intptr_t offset) override;
48  int16_t ReadInt16(const char *address, intptr_t offset) override;
49  int32_t ReadInt32(const char *address, intptr_t offset) override;
50  float ReadFloat(const char *address, intptr_t offset) override;
51  void Write(const char *address, intptr_t offset, void *src, int size) override;
52  void WriteInt8(const char *address, intptr_t offset, uint8_t val) override;
53  void WriteInt16(const char *address, intptr_t offset, int16_t val) override;
54  void WriteInt32(const char *address, intptr_t offset, int32_t val) override;
55  void WriteFloat(const char *address, intptr_t offset, float val) override;
56 };
57 
58 // Helper functions for setting up dynamic arrays.
59 namespace DynamicArrayHelpers {
60 // Create array of managed strings
61 DynObjectRef CreateStringArray(const std::vector<const char *>);
62 } // namespace DynamicArrayHelpers
63 
64 } // namespace AGS3
65 
66 #endif
Definition: cc_dynamic_array.h:33
Definition: vector.h:45
Definition: utility.h:31
Definition: cc_dynamic_object.h:51
Definition: ags.h:40