mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-12-19 17:37:42 -05:00
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
#ifndef SCRIPTARRAY_H
|
|
#define SCRIPTARRAY_H
|
|
|
|
#include <angelscript.h>
|
|
|
|
BEGIN_AS_NAMESPACE
|
|
|
|
struct SArrayBuffer;
|
|
|
|
class CScriptArray
|
|
{
|
|
public:
|
|
CScriptArray(asUINT length, asIObjectType *ot);
|
|
virtual ~CScriptArray();
|
|
|
|
void AddRef();
|
|
void Release();
|
|
|
|
// Type information
|
|
asIObjectType *GetArrayObjectType() const;
|
|
int GetArrayTypeId() const;
|
|
int GetElementTypeId() const;
|
|
|
|
void Resize(asUINT numElements);
|
|
asUINT GetSize();
|
|
|
|
// Get a pointer to an element. Returns 0 if out of bounds
|
|
void *At(asUINT index);
|
|
|
|
CScriptArray &operator=(const CScriptArray&);
|
|
|
|
// TODO: Add methods Sort, Reverse, Find, PopLast, PushLast, InsertAt, RemoveAt, etc
|
|
|
|
// GC methods
|
|
int GetRefCount();
|
|
void SetFlag();
|
|
bool GetFlag();
|
|
void EnumReferences(asIScriptEngine *engine);
|
|
void ReleaseAllHandles(asIScriptEngine *engine);
|
|
|
|
protected:
|
|
int refCount;
|
|
bool gcFlag;
|
|
asIObjectType *objType;
|
|
SArrayBuffer *buffer;
|
|
bool isArrayOfHandles;
|
|
int elementSize;
|
|
|
|
bool CheckMaxSize(asUINT numElements);
|
|
|
|
void CreateBuffer(SArrayBuffer **buf, asUINT numElements);
|
|
void DeleteBuffer(SArrayBuffer *buf);
|
|
void CopyBuffer(SArrayBuffer *dst, SArrayBuffer *src);
|
|
|
|
void Construct(SArrayBuffer *buf, asUINT start, asUINT end);
|
|
void Destruct(SArrayBuffer *buf, asUINT start, asUINT end);
|
|
};
|
|
|
|
void RegisterScriptArray(asIScriptEngine *engine);
|
|
void RegisterScriptArray_Native(asIScriptEngine *engine);
|
|
void RegisterScriptArray_Generic(asIScriptEngine *engine);
|
|
|
|
END_AS_NAMESPACE
|
|
|
|
#endif
|