Bullet Collision Detection & Physics Library
btBulletFile.h
Go to the documentation of this file.
1 /*
2 bParse
3 Copyright (c) 2006-2010 Charlie C & Erwin Coumans http://gamekit.googlecode.com
4 
5 This software is provided 'as-is', without any express or implied warranty.
6 In no event will the authors be held liable for any damages arising from the use of this software.
7 Permission is granted to anyone to use this software for any purpose,
8 including commercial applications, and to alter it and redistribute it freely,
9 subject to the following restrictions:
10 
11 1. 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.
12 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
13 3. 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 
20 #include "bFile.h"
22 #include "bDefines.h"
23 
24 
26 
27 
28 
29 namespace bParse {
30 
31  // ----------------------------------------------------- //
32  class btBulletFile : public bFile
33  {
34 
35 
36  protected:
37 
38  char* m_DnaCopy;
39 
40  public:
41 
43 
45 
47 
49 
51 
53 
55 
57 
59 
61 
63 
65  btBulletFile();
66 
67  btBulletFile(const char* fileName);
68 
69  btBulletFile(char *memoryBuffer, int len);
70 
71  virtual ~btBulletFile();
72 
73  virtual void addDataBlock(char* dataBlock);
74 
75 
76  // experimental
77  virtual int write(const char* fileName, bool fixupPointers=false);
78 
79  virtual void parse(int verboseMode);
80 
81  virtual void parseData();
82 
83  virtual void writeDNA(FILE* fp);
84 
85  void addStruct(const char* structType,void* data, int len, void* oldPtr, int code);
86 
87  };
88 };
89 
90 #endif //BT_BULLET_FILE_H
btAlignedObjectArray< bStructHandle * > m_contactManifolds
Definition: btBulletFile.h:62
btAlignedObjectArray< char * > m_dataBlocks
Definition: btBulletFile.h:64
btAlignedObjectArray< bStructHandle * > m_triangleInfoMaps
Definition: btBulletFile.h:58
btAlignedObjectArray< bStructHandle * > m_constraints
Definition: btBulletFile.h:54
void addStruct(const char *structType, void *data, int len, void *oldPtr, int code)
btAlignedObjectArray< bStructHandle * > m_collisionObjects
Definition: btBulletFile.h:50
virtual void writeDNA(FILE *fp)
virtual void parse(int verboseMode)
btAlignedObjectArray< bStructHandle * > m_softBodies
Definition: btBulletFile.h:46
btAlignedObjectArray< bStructHandle * > m_multiBodyLinkColliders
Definition: btBulletFile.h:44
virtual int write(const char *fileName, bool fixupPointers=false)
virtual void addDataBlock(char *dataBlock)
btAlignedObjectArray< bStructHandle * > m_bvhs
Definition: btBulletFile.h:56
btAlignedObjectArray< bStructHandle * > m_multiBodies
Definition: btBulletFile.h:42
btAlignedObjectArray< bStructHandle * > m_collisionShapes
Definition: btBulletFile.h:52
btAlignedObjectArray< bStructHandle * > m_dynamicsWorldInfo
Definition: btBulletFile.h:60
virtual void parseData()
btAlignedObjectArray< bStructHandle * > m_rigidBodies
Definition: btBulletFile.h:48