Bullet Collision Detection & Physics Library
btBulletFile.h
Go to the documentation of this file.
1/*
2bParse
3Copyright (c) 2006-2010 Charlie C & Erwin Coumans http://gamekit.googlecode.com
4
5This software is provided 'as-is', without any express or implied warranty.
6In no event will the authors be held liable for any damages arising from the use of this software.
7Permission is granted to anyone to use this software for any purpose,
8including commercial applications, and to alter it and redistribute it freely,
9subject to the following restrictions:
10
111. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
122. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
133. This notice may not be removed or altered from any source distribution.
14*/
15
16#ifndef BT_BULLET_FILE_H
17#define BT_BULLET_FILE_H
18
19#include "bFile.h"
21#include "bDefines.h"
22
24
25namespace bParse
26{
27// ----------------------------------------------------- //
28class btBulletFile : public bFile
29{
30protected:
31 char* m_DnaCopy;
32
33public:
35
37
39
41
43
45
47
49
51
53
55
58
59 btBulletFile(const char* fileName);
60
61 btBulletFile(char* memoryBuffer, int len);
62
63 virtual ~btBulletFile();
64
65 virtual void addDataBlock(char* dataBlock);
66
67 // experimental
68 virtual int write(const char* fileName, bool fixupPointers = false);
69
70 virtual void parse(int verboseMode);
71
72 virtual void parseData();
73
74 virtual void writeDNA(FILE* fp);
75
76 void addStruct(const char* structType, void* data, int len, void* oldPtr, int code);
77};
78}; // namespace bParse
79
80#endif //BT_BULLET_FILE_H
btAlignedObjectArray< bStructHandle * > m_dynamicsWorldInfo
Definition: btBulletFile.h:52
btAlignedObjectArray< bStructHandle * > m_rigidBodies
Definition: btBulletFile.h:40
virtual void parse(int verboseMode)
btAlignedObjectArray< bStructHandle * > m_triangleInfoMaps
Definition: btBulletFile.h:50
btAlignedObjectArray< bStructHandle * > m_bvhs
Definition: btBulletFile.h:48
virtual void addDataBlock(char *dataBlock)
btAlignedObjectArray< bStructHandle * > m_multiBodies
Definition: btBulletFile.h:34
btAlignedObjectArray< bStructHandle * > m_constraints
Definition: btBulletFile.h:46
btAlignedObjectArray< char * > m_dataBlocks
Definition: btBulletFile.h:56
virtual int write(const char *fileName, bool fixupPointers=false)
btAlignedObjectArray< bStructHandle * > m_contactManifolds
Definition: btBulletFile.h:54
virtual void parseData()
btAlignedObjectArray< bStructHandle * > m_collisionObjects
Definition: btBulletFile.h:42
btAlignedObjectArray< bStructHandle * > m_multiBodyLinkColliders
Definition: btBulletFile.h:36
virtual void writeDNA(FILE *fp)
btAlignedObjectArray< bStructHandle * > m_softBodies
Definition: btBulletFile.h:38
btAlignedObjectArray< bStructHandle * > m_collisionShapes
Definition: btBulletFile.h:44
void addStruct(const char *structType, void *data, int len, void *oldPtr, int code)