diff --git a/obj/Ref.h b/Ref.h similarity index 100% rename from obj/Ref.h rename to Ref.h diff --git a/obj/Type.cpp b/Type.cpp similarity index 100% rename from obj/Type.cpp rename to Type.cpp diff --git a/obj/Type.h b/Type.h similarity index 100% rename from obj/Type.h rename to Type.h diff --git a/gen/AVObject.cpp b/gen/AVObject.cpp new file mode 100644 index 0000000000000000000000000000000000000000..a07297633aad8b797dc8345a6ca58f39b7e1fbaf --- /dev/null +++ b/gen/AVObject.cpp @@ -0,0 +1,11 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "AVObject.h" +#include "obj/NiAVObject.h" + +//Constructor +AVObject::AVObject() : object(NULL) {}; + +//Destructor +AVObject::~AVObject() {}; diff --git a/gen/AVObject.h b/gen/AVObject.h new file mode 100644 index 0000000000000000000000000000000000000000..ac8f31d1568f10225ca0ff03620f81e52fbb4855 --- /dev/null +++ b/gen/AVObject.h @@ -0,0 +1,31 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _AVOBJECT_H_ +#define _AVOBJECT_H_ + +#include "NIF_IO.h" +#include "Ref.h" + +//Forward Declarations +class NiAVObject; + +/*! + * Used in NiDefaultAVObjectPalette. + */ +struct AVObject { + /*! Default Constructor */ + AVObject(); + /*! Default Destructor */ + ~AVObject(); + /*! + * Object name. + */ + string name; + /*! + * Object reference. + */ + NiAVObject * object; +}; + +#endif diff --git a/gen/Bones.cpp b/gen/Bones.cpp new file mode 100644 index 0000000000000000000000000000000000000000..21fd250c0d5f18643a2fef8cd19cfe1bda682e73 --- /dev/null +++ b/gen/Bones.cpp @@ -0,0 +1,11 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "Bones.h" +#include "obj/NiNode.h" + +//Constructor +Bones::Bones() : numBones((uint)0) {}; + +//Destructor +Bones::~Bones() {}; diff --git a/gen/Bones.h b/gen/Bones.h new file mode 100644 index 0000000000000000000000000000000000000000..4c7b56f2061756031d2b0c357a4852f80b01a11b --- /dev/null +++ b/gen/Bones.h @@ -0,0 +1,32 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _BONES_H_ +#define _BONES_H_ + +#include "NIF_IO.h" +#include "Ref.h" + +//Forward Declarations +class NiNode; + +/*! + * This is a list of bone influences. It points to blocks higher in the + * hierarchy so ints are used to represent the indices. + */ +struct Bones { + /*! Default Constructor */ + Bones(); + /*! Default Destructor */ + ~Bones(); + /*! + * The number of node bones referenced as influences. + */ + uint numBones; + /*! + * Block indicies of the bones. + */ + vector<NiNode * > bones; +}; + +#endif diff --git a/gen/BoundingBox.cpp b/gen/BoundingBox.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b3608db77fb6b75d18053ce2fab441027e7b5166 --- /dev/null +++ b/gen/BoundingBox.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "BoundingBox.h" + +//Constructor +BoundingBox::BoundingBox() : unknownInt((uint)1) {}; + +//Destructor +BoundingBox::~BoundingBox() {}; diff --git a/gen/BoundingBox.h b/gen/BoundingBox.h new file mode 100644 index 0000000000000000000000000000000000000000..da33d0dae6c3dbbbb0a8800aed853175f0626d18 --- /dev/null +++ b/gen/BoundingBox.h @@ -0,0 +1,35 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _BOUNDINGBOX_H_ +#define _BOUNDINGBOX_H_ + +#include "NIF_IO.h" + +/*! + * Bounding box. + */ +struct BoundingBox { + /*! Default Constructor */ + BoundingBox(); + /*! Default Destructor */ + ~BoundingBox(); + /*! + * Usually 1. + */ + uint unknownInt; + /*! + * Translation vector. + */ + Vector3 translation; + /*! + * Rotation matrix. + */ + Matrix33 rotation; + /*! + * Radius, per direction. + */ + Vector3 radius; +}; + +#endif diff --git a/gen/ByteArray.cpp b/gen/ByteArray.cpp new file mode 100644 index 0000000000000000000000000000000000000000..4c40b47725aa6f107ec3eddb5d073e92af0229f8 --- /dev/null +++ b/gen/ByteArray.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "ByteArray.h" + +//Constructor +ByteArray::ByteArray() : dataSize((uint)0), unknownInt((uint)0) {}; + +//Destructor +ByteArray::~ByteArray() {}; diff --git a/gen/ByteArray.h b/gen/ByteArray.h new file mode 100644 index 0000000000000000000000000000000000000000..070829b51c581909be09a1f1efbfd0ac920865c4 --- /dev/null +++ b/gen/ByteArray.h @@ -0,0 +1,31 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _BYTEARRAY_H_ +#define _BYTEARRAY_H_ + +#include "NIF_IO.h" + +/*! + * An array of bytes. + */ +struct ByteArray { + /*! Default Constructor */ + ByteArray(); + /*! Default Destructor */ + ~ByteArray(); + /*! + * The number of bytes in this array + */ + uint dataSize; + /*! + * Unknown. + */ + uint unknownInt; + /*! + * The bytes which make up the array + */ + vector<byte > data; +}; + +#endif diff --git a/gen/ControllerLink.cpp b/gen/ControllerLink.cpp new file mode 100644 index 0000000000000000000000000000000000000000..a5f0f556f577807304f5a6c4162a7d54258db467 --- /dev/null +++ b/gen/ControllerLink.cpp @@ -0,0 +1,14 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "ControllerLink.h" +#include "obj/NiInterpolator.h" +#include "obj/NiObject.h" +#include "obj/NiObject.h" +#include "obj/NiStringPalette.h" + +//Constructor +ControllerLink::ControllerLink() : interpolator(NULL), unknownLink1(NULL), unknownLink2(NULL), unknownShort0((ushort)0), priority_((byte)0), stringPalette(NULL), nodeNameOffset((uint)0), propertyTypeOffset((uint)0), controllerTypeOffset((uint)0), variableOffset1((uint)0), variableOffset2((uint)0) {}; + +//Destructor +ControllerLink::~ControllerLink() {}; diff --git a/gen/ControllerLink.h b/gen/ControllerLink.h new file mode 100644 index 0000000000000000000000000000000000000000..2879343f1241eccfeeb09af12bffe89e5932dc62 --- /dev/null +++ b/gen/ControllerLink.h @@ -0,0 +1,116 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _CONTROLLERLINK_H_ +#define _CONTROLLERLINK_H_ + +#include "NIF_IO.h" +#include "Ref.h" + +//Forward Declarations +class NiInterpolator; +class NiObject; +class NiObject; +class NiStringPalette; + +/*! + * In a .kf file, this links to a controllable block, via its name (or + * for version 10.2.0.0 and up, a link and offset to a NiStringPalette + * that contains the name), and a sequence of interpolators that apply to + * this controllable block, via links. + */ +struct ControllerLink { + /*! Default Constructor */ + ControllerLink(); + /*! Default Destructor */ + ~ControllerLink(); + /*! + * Name of a controllable block in another NIF file. + */ + string name; + /*! + * Link to an interpolator. + */ + Ref<NiInterpolator > interpolator; + /*! + * Unknown link. Usually -1. + */ + Ref<NiObject > unknownLink1; + /*! + * Unknown. + */ + Ref<NiObject > unknownLink2; + /*! + * Unknown. + */ + ushort unknownShort0; + /*! + * Idle animations tend to have low values for this, and blocks that have + * high values tend to correspond with the important parts of the + * animation. WARNING: BREAKS CIV4 NIF FILES! Only observed in Oblivion + * NIF files so far. + */ + byte priority_; + /*! + * Refers to the NiStringPalette which contains the name of the + * controlled block. + */ + Ref<NiStringPalette > stringPalette; + /*! + * The name of the animated node. + */ + string nodeName; + /*! + * Offset in the string palette where the name of the controlled node + * (NiNode, NiTriShape, ...) starts. + */ + uint nodeNameOffset; + /*! + * Name of the property (NiMaterialProperty, ...), if this controller + * controls a property. + */ + string propertyType; + /*! + * Offset in the string palette where the property (NiMaterialProperty, + * ...) starts, if this controller controls a property. Otherwise, -1. + */ + uint propertyTypeOffset; + /*! + * Probably the block type name of the controller in the NIF file that is + * child of the controlled block. + */ + string controllerType; + /*! + * Apparently the offset in the string palette of some type of controller + * related to Interpolator (for example, a 'NiTransformInterpolator' will + * have here a 'NiTransformController', etc.). Sometimes the type of + * controller that links to the interpolator. Probably it refers to the + * controller in the NIF file that is child of the controlled block, via + * its type name. + */ + uint controllerTypeOffset; + /*! + * Some variable string (such as 'SELF_ILLUM', '0-0-TT_TRANSLATE_U', + * 'tongue_out', etc.). + */ + string variable1; + /*! + * Offset in the string palette where some variable string starts (such + * as 'SELF_ILLUM', '0-0-TT_TRANSLATE_U', 'tongue_out', etc.). Usually, + * -1. + */ + uint variableOffset1; + /*! + * Another variable string, apparently used for particle system + * controllers. + */ + string variable2; + /*! + * Offset in the string palette where some variable string starts (so far + * only 'EmitterActive' and 'BirthRate' have been observed in official + * files, used for particle system controllers). Usually, -1. + */ + uint variableOffset2; +}; + +#endif diff --git a/gen/Footer.cpp b/gen/Footer.cpp new file mode 100644 index 0000000000000000000000000000000000000000..021be3a540f63cba567dab4bc453d6aa5d50db10 --- /dev/null +++ b/gen/Footer.cpp @@ -0,0 +1,11 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "Footer.h" +#include "obj/NiAVObject.h" + +//Constructor +Footer::Footer() : numRoots((uint)0) {}; + +//Destructor +Footer::~Footer() {}; diff --git a/gen/Footer.h b/gen/Footer.h new file mode 100644 index 0000000000000000000000000000000000000000..768e3345874140beff6c92bb5b301139cae3af7d --- /dev/null +++ b/gen/Footer.h @@ -0,0 +1,34 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _FOOTER_H_ +#define _FOOTER_H_ + +#include "NIF_IO.h" +#include "Ref.h" + +//Forward Declarations +class NiAVObject; + +/*! + * The NIF file footer. + */ +struct Footer { + /*! Default Constructor */ + Footer(); + /*! Default Destructor */ + ~Footer(); + /*! + * The number of root references. + */ + uint numRoots; + /*! + * List of root blocks. If there is a camera, for 1st person view, then + * this block is referred to as well in this list, even if it is not a + * root block (usually we want the camera to be attached to the Bip Head + * node). + */ + vector<Ref<NiAVObject > > roots; +}; + +#endif diff --git a/gen/FurniturePosition.cpp b/gen/FurniturePosition.cpp new file mode 100644 index 0000000000000000000000000000000000000000..157e5e6352141ad3c77b0eb764eeacb4adb7ef67 --- /dev/null +++ b/gen/FurniturePosition.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "FurniturePosition.h" + +//Constructor +FurniturePosition::FurniturePosition() : unknownShort((ushort)0), positionRef1_((byte)0), positionRef2_((byte)0) {}; + +//Destructor +FurniturePosition::~FurniturePosition() {}; diff --git a/gen/FurniturePosition.h b/gen/FurniturePosition.h new file mode 100644 index 0000000000000000000000000000000000000000..e345b8923c70a8a3ecf92ddaf16b562da5645b89 --- /dev/null +++ b/gen/FurniturePosition.h @@ -0,0 +1,35 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _FURNITUREPOSITION_H_ +#define _FURNITUREPOSITION_H_ + +#include "NIF_IO.h" + +/*! + * Describes a furniture position? + */ +struct FurniturePosition { + /*! Default Constructor */ + FurniturePosition(); + /*! Default Destructor */ + ~FurniturePosition(); + /*! + * Unknown. Position? + */ + Vector3 unknownVector; + /*! + * Unknown. + */ + ushort unknownShort; + /*! + * This might refer to a furnituremarkerxx.nif file. + */ + byte positionRef1_; + /*! + * This might also refer to a furnituremarkerxx.nif file. + */ + byte positionRef2_; +}; + +#endif diff --git a/gen/Header.cpp b/gen/Header.cpp new file mode 100644 index 0000000000000000000000000000000000000000..0ddc730fc8da5f4daa7e46a26879c4d6077be3fe --- /dev/null +++ b/gen/Header.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "Header.h" + +//Constructor +Header::Header() : version((uint)0x04000002), endianType((byte)1), userVersion((uint)0), numBlocks((uint)0), unknownInt1((uint)0), unknownInt3((uint)0), numBlockTypes((ushort)0), unknownInt2((uint)0) {}; + +//Destructor +Header::~Header() {}; diff --git a/gen/Header.h b/gen/Header.h new file mode 100644 index 0000000000000000000000000000000000000000..64a7758025fe3848234e935c85241ec75124050b --- /dev/null +++ b/gen/Header.h @@ -0,0 +1,87 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _HEADER_H_ +#define _HEADER_H_ + +#include "NIF_IO.h" +#include "gen/ShortString.h" +#include "gen/ShortString.h" +#include "gen/ShortString.h" + +/*! + * The NIF file header. + */ +struct Header { + /*! Default Constructor */ + Header(); + /*! Default Destructor */ + ~Header(); + /*! + * 'NetImmerse File Format x.x.x.x' (versions <= 10.0.1.2) or 'Gamebryo + * File Format x.x.x.x' (versions >= 10.1.0.0), with x.x.x.x the version + * written out. Ends with a newline character (0x0A). + */ + HeaderString headerString; + /*! + * The NIF version, in hexadecimal notation: 0x04000002, 0x0401000C, + * 0x04020002, 0x04020100, 0x04020200, 0x0A000100, 0x0A010000, + * 0x0A020000, 0x14000004, ... + */ + uint version; + /*! + * Determines the endian-ness of the data. 1 = little endian (default) 0 + * = big endian + */ + byte endianType; + /*! + * An extra version number, for companies that decide to modify the file + * format. + */ + uint userVersion; + /*! + * Number of file blocks. + */ + uint numBlocks; + /*! + * Unknown. + */ + uint unknownInt1; + /*! + * Unknown. + */ + uint unknownInt3; + /*! + * Could be the name of the creator of the NIF file? + */ + ShortString creator_; + /*! + * Unknown. Can be something like 'TriStrip Process Script'. + */ + ShortString exportType_; + /*! + * Unknown. Possibly the selected option of the export script. Can be + * something like 'Default Export Script'. + */ + ShortString exportScript_; + /*! + * Number of block types in this NIF file. + */ + ushort numBlockTypes; + /*! + * List of all block types used in this NIF file. + */ + vector<string > blockTypes; + /*! + * Maps file blocks on their corresponding type: first file block is of + * type block_types[block_type_index[0]], the second of + * block_types[block_type_index[1]], etc. + */ + vector<ushort > blockTypeIndex; + /*! + * Unknown. + */ + uint unknownInt2; +}; + +#endif diff --git a/gen/KeyGroup.cpp b/gen/KeyGroup.cpp new file mode 100644 index 0000000000000000000000000000000000000000..2902e11fb77fd478533d79594eb7a4ffe40fe977 --- /dev/null +++ b/gen/KeyGroup.cpp @@ -0,0 +1,12 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "KeyGroup.h" + +//Constructor +template <class T > +KeyGroup<T>::KeyGroup() : numKeys((uint)0), interpolation((KeyType)0) {}; + +//Destructor +template <class T > +KeyGroup<T>::~KeyGroup() {}; diff --git a/gen/KeyGroup.h b/gen/KeyGroup.h new file mode 100644 index 0000000000000000000000000000000000000000..cc5ad190a70a99eb78d6ca79704ab6894ba62f9c --- /dev/null +++ b/gen/KeyGroup.h @@ -0,0 +1,33 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _KEYGROUP_H_ +#define _KEYGROUP_H_ + +#include "NIF_IO.h" + +/*! + * Array of vector keys (anything that can be interpolated, except + * rotations). + */ +template <class T > +struct KeyGroup { + /*! Default Constructor */ + KeyGroup(); + /*! Default Destructor */ + ~KeyGroup(); + /*! + * Number of keys in the array. + */ + uint numKeys; + /*! + * The key type. + */ + KeyType interpolation; + /*! + * The keys. + */ + vector<Key<T > > keys; +}; + +#endif diff --git a/gen/LODRange.cpp b/gen/LODRange.cpp new file mode 100644 index 0000000000000000000000000000000000000000..2e6d9101f00364201c1f8213a2551c6a75767ef9 --- /dev/null +++ b/gen/LODRange.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "LODRange.h" + +//Constructor +LODRange::LODRange() : near(0.0f), far(0.0f) {}; + +//Destructor +LODRange::~LODRange() {}; diff --git a/gen/LODRange.h b/gen/LODRange.h new file mode 100644 index 0000000000000000000000000000000000000000..dc251ab20c0e5ddd24c16940088f4f622249181a --- /dev/null +++ b/gen/LODRange.h @@ -0,0 +1,27 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _LODRANGE_H_ +#define _LODRANGE_H_ + +#include "NIF_IO.h" + +/*! + * The distance range where a specific level of detail applies. + */ +struct LODRange { + /*! Default Constructor */ + LODRange(); + /*! Default Destructor */ + ~LODRange(); + /*! + * Begining of range. + */ + float near; + /*! + * End of Range. + */ + float far; +}; + +#endif diff --git a/gen/MatchGroup.cpp b/gen/MatchGroup.cpp new file mode 100644 index 0000000000000000000000000000000000000000..58b46937723cb9e855db86790632dce6d0a53d4b --- /dev/null +++ b/gen/MatchGroup.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "MatchGroup.h" + +//Constructor +MatchGroup::MatchGroup() : numVertices((ushort)0) {}; + +//Destructor +MatchGroup::~MatchGroup() {}; diff --git a/gen/MatchGroup.h b/gen/MatchGroup.h new file mode 100644 index 0000000000000000000000000000000000000000..1402d327fb32aa769e1606701cd4135eddb5b611 --- /dev/null +++ b/gen/MatchGroup.h @@ -0,0 +1,27 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _MATCHGROUP_H_ +#define _MATCHGROUP_H_ + +#include "NIF_IO.h" + +/*! + * Group of vertex indices of vertices that match. + */ +struct MatchGroup { + /*! Default Constructor */ + MatchGroup(); + /*! Default Destructor */ + ~MatchGroup(); + /*! + * Number of vertices in this group. + */ + ushort numVertices; + /*! + * The vertex indices. + */ + vector<ushort > vertexIndices; +}; + +#endif diff --git a/gen/MipMap.cpp b/gen/MipMap.cpp new file mode 100644 index 0000000000000000000000000000000000000000..cd673a5669f9e41c91e0385a41ac0798d3fc1639 --- /dev/null +++ b/gen/MipMap.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "MipMap.h" + +//Constructor +MipMap::MipMap() : width((uint)0), height((uint)0), offset((uint)0) {}; + +//Destructor +MipMap::~MipMap() {}; diff --git a/gen/MipMap.h b/gen/MipMap.h new file mode 100644 index 0000000000000000000000000000000000000000..f069585fc68bef6e4d8e18aaa5e708f5c9cb4721 --- /dev/null +++ b/gen/MipMap.h @@ -0,0 +1,31 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _MIPMAP_H_ +#define _MIPMAP_H_ + +#include "NIF_IO.h" + +/*! + * Description of a MipMap within a NiPixelData block. + */ +struct MipMap { + /*! Default Constructor */ + MipMap(); + /*! Default Destructor */ + ~MipMap(); + /*! + * Width of the mipmap image. + */ + uint width; + /*! + * Height of the mipmap image. + */ + uint height; + /*! + * Offset into the pixel data array where this mipmap starts. + */ + uint offset; +}; + +#endif diff --git a/gen/Morph.cpp b/gen/Morph.cpp new file mode 100644 index 0000000000000000000000000000000000000000..ef314ed6a70e286b4a159494def7d0f5077d49ed --- /dev/null +++ b/gen/Morph.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "Morph.h" + +//Constructor +Morph::Morph() : numMorphKeys((uint)0), morphInterpolation((KeyType)0), unknownInt((uint)0) {}; + +//Destructor +Morph::~Morph() {}; diff --git a/gen/Morph.h b/gen/Morph.h new file mode 100644 index 0000000000000000000000000000000000000000..02d1abd4f6824421eacf774750c3aaa1060b777b --- /dev/null +++ b/gen/Morph.h @@ -0,0 +1,44 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _MORPH_H_ +#define _MORPH_H_ + +#include "NIF_IO.h" + +/*! + * Geometry morphing data component. + */ +struct Morph { + /*! Default Constructor */ + Morph(); + /*! Default Destructor */ + ~Morph(); + /*! + * Name of the frame. + */ + string frameName; + /*! + * The number of morph keys that follow. + */ + uint numMorphKeys; + /*! + * Unlike most blocks, the presense of this value is not conditional on + * there being keys. + */ + KeyType morphInterpolation; + /*! + * The morph key frames. + */ + vector<Key<float > > morphKeys; + /*! + * Unknown. + */ + uint unknownInt; + /*! + * Morph vectors. + */ + vector<Vector3 > vectors; +}; + +#endif diff --git a/gen/NodeGroup.cpp b/gen/NodeGroup.cpp new file mode 100644 index 0000000000000000000000000000000000000000..db83353f16dc7a18b991d2b50bb6bbe61c0b8584 --- /dev/null +++ b/gen/NodeGroup.cpp @@ -0,0 +1,11 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "NodeGroup.h" +#include "obj/NiNode.h" + +//Constructor +NodeGroup::NodeGroup() : numNodes((uint)0) {}; + +//Destructor +NodeGroup::~NodeGroup() {}; diff --git a/gen/NodeGroup.h b/gen/NodeGroup.h new file mode 100644 index 0000000000000000000000000000000000000000..a6de42fa6f8403d566db8cf125ffcf8fe16474c1 --- /dev/null +++ b/gen/NodeGroup.h @@ -0,0 +1,31 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _NODEGROUP_H_ +#define _NODEGROUP_H_ + +#include "NIF_IO.h" +#include "Ref.h" + +//Forward Declarations +class NiNode; + +/*! + * A group of NiNodes references. + */ +struct NodeGroup { + /*! Default Constructor */ + NodeGroup(); + /*! Default Destructor */ + ~NodeGroup(); + /*! + * Number of node references that follow. + */ + uint numNodes; + /*! + * The list of NiNode references. + */ + vector<Ref<NiNode > > nodes; +}; + +#endif diff --git a/gen/Particle.cpp b/gen/Particle.cpp new file mode 100644 index 0000000000000000000000000000000000000000..5ba5c4579f28245733d43d21dcfacf04ff080259 --- /dev/null +++ b/gen/Particle.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "Particle.h" + +//Constructor +Particle::Particle() : lifetime(0.0f), lifespan(0.0f), timestamp(0.0f), unknownShort((ushort)0), vertexId((ushort)0) {}; + +//Destructor +Particle::~Particle() {}; diff --git a/gen/Particle.h b/gen/Particle.h new file mode 100644 index 0000000000000000000000000000000000000000..4cb3eecd6e5e0c622f92edc2e4350c462de93fa8 --- /dev/null +++ b/gen/Particle.h @@ -0,0 +1,47 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _PARTICLE_H_ +#define _PARTICLE_H_ + +#include "NIF_IO.h" + +/*! + * particle array entry + */ +struct Particle { + /*! Default Constructor */ + Particle(); + /*! Default Destructor */ + ~Particle(); + /*! + * Particle velocity + */ + Vector3 velocity; + /*! + * Unknown + */ + Vector3 unknownVector; + /*! + * The particle's age. + */ + float lifetime; + /*! + * Maximum age of the particle. + */ + float lifespan; + /*! + * Timestamp of the last update. + */ + float timestamp; + /*! + * Unknown short (=0) + */ + ushort unknownShort; + /*! + * Particle/vertex index matches array index + */ + ushort vertexId; +}; + +#endif diff --git a/gen/QuaternionXYZW.cpp b/gen/QuaternionXYZW.cpp new file mode 100644 index 0000000000000000000000000000000000000000..36b23acb780c9a6b500075603279d3e768ea19a5 --- /dev/null +++ b/gen/QuaternionXYZW.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "QuaternionXYZW.h" + +//Constructor +QuaternionXYZW::QuaternionXYZW() : x(0.0f), y(0.0f), z(0.0f), w(0.0f) {}; + +//Destructor +QuaternionXYZW::~QuaternionXYZW() {}; diff --git a/gen/QuaternionXYZW.h b/gen/QuaternionXYZW.h new file mode 100644 index 0000000000000000000000000000000000000000..daf6063ba82085181dd0628059f74b178556a276 --- /dev/null +++ b/gen/QuaternionXYZW.h @@ -0,0 +1,35 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _QUATERNIONXYZW_H_ +#define _QUATERNIONXYZW_H_ + +#include "NIF_IO.h" + +/*! + * A quaternion as it appears in the havok blocks. + */ +struct QuaternionXYZW { + /*! Default Constructor */ + QuaternionXYZW(); + /*! Default Destructor */ + ~QuaternionXYZW(); + /*! + * The x-coordinate. + */ + float x; + /*! + * The y-coordinate. + */ + float y; + /*! + * The z-coordinate. + */ + float z; + /*! + * The w-coordinate. + */ + float w; +}; + +#endif diff --git a/gen/RotationKeyArray.cpp b/gen/RotationKeyArray.cpp new file mode 100644 index 0000000000000000000000000000000000000000..fdd5f41a1f045f39f96af44f403f4dbc3b1b6a68 --- /dev/null +++ b/gen/RotationKeyArray.cpp @@ -0,0 +1,12 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "RotationKeyArray.h" + +//Constructor +template <class T > +RotationKeyArray<T>::RotationKeyArray() : numKeys((uint)0), keyType((KeyType)0) {}; + +//Destructor +template <class T > +RotationKeyArray<T>::~RotationKeyArray() {}; diff --git a/gen/RotationKeyArray.h b/gen/RotationKeyArray.h new file mode 100644 index 0000000000000000000000000000000000000000..18fc9a7dc36b037008c3cccd97cffa3c29b454e0 --- /dev/null +++ b/gen/RotationKeyArray.h @@ -0,0 +1,32 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _ROTATIONKEYARRAY_H_ +#define _ROTATIONKEYARRAY_H_ + +#include "NIF_IO.h" + +/*! + * Rotation key array. + */ +template <class T > +struct RotationKeyArray { + /*! Default Constructor */ + RotationKeyArray(); + /*! Default Destructor */ + ~RotationKeyArray(); + /*! + * Number of keys. + */ + uint numKeys; + /*! + * Key type (1, 2, 3, or 4). + */ + KeyType keyType; + /*! + * The rotation keys. + */ + vector<Key<T > > keys; +}; + +#endif diff --git a/gen/ShaderTexDesc.cpp b/gen/ShaderTexDesc.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e4e27ad95fe2cdbccb16ae2af6659e9c18376781 --- /dev/null +++ b/gen/ShaderTexDesc.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "ShaderTexDesc.h" + +//Constructor +ShaderTexDesc::ShaderTexDesc() : isUsed(false), unknownInt((uint)0) {}; + +//Destructor +ShaderTexDesc::~ShaderTexDesc() {}; diff --git a/gen/ShaderTexDesc.h b/gen/ShaderTexDesc.h new file mode 100644 index 0000000000000000000000000000000000000000..320d568ceee64af3a968323766df2d0f9658934f --- /dev/null +++ b/gen/ShaderTexDesc.h @@ -0,0 +1,32 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _SHADERTEXDESC_H_ +#define _SHADERTEXDESC_H_ + +#include "NIF_IO.h" +#include "gen/TexDesc.h" + +/*! + * An extended texture description for shader textures. + */ +struct ShaderTexDesc { + /*! Default Constructor */ + ShaderTexDesc(); + /*! Default Destructor */ + ~ShaderTexDesc(); + /*! + * Is it used? + */ + bool isUsed; + /*! + * The texture data. + */ + TexDesc textureData; + /*! + * Unknown. + */ + uint unknownInt; +}; + +#endif diff --git a/gen/ShortString.cpp b/gen/ShortString.cpp new file mode 100644 index 0000000000000000000000000000000000000000..79d345964d9ce9fb44d1b2d8cac0b62019e14a10 --- /dev/null +++ b/gen/ShortString.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "ShortString.h" + +//Constructor +ShortString::ShortString() : length((byte)0) {}; + +//Destructor +ShortString::~ShortString() {}; diff --git a/gen/ShortString.h b/gen/ShortString.h new file mode 100644 index 0000000000000000000000000000000000000000..4ea77d9b994283a9d1b839a75ae9afa20258b522 --- /dev/null +++ b/gen/ShortString.h @@ -0,0 +1,29 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _SHORTSTRING_H_ +#define _SHORTSTRING_H_ + +#include "NIF_IO.h" + +/*! + * Another string format, for short strings. Specific to Bethesda- + * specific header tags. + */ +struct ShortString { + /*! Default Constructor */ + ShortString(); + /*! Default Destructor */ + ~ShortString(); + /*! + * The string length. + */ + byte length; + /*! + * The string itself, null terminated (the null terminator is taken into + * account in the length byte). + */ + vector<byte > value; +}; + +#endif diff --git a/gen/SkinData.cpp b/gen/SkinData.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/gen/SkinData.h b/gen/SkinData.h new file mode 100644 index 0000000000000000000000000000000000000000..6b8e1d52dc294dd243b560d94c14466df5689cc6 --- /dev/null +++ b/gen/SkinData.h @@ -0,0 +1,47 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _SKINDATA_H_ +#define _SKINDATA_H_ + +#include "NIF_IO.h" +#include "gen/SkinWeight.h" + +/*! + * Skinning data component. + */ +struct SkinData { + /*! Default Constructor */ + SkinData(); + /*! Default Destructor */ + ~SkinData(); + /*! + * Rotation offset of the skin from this bone in bind position. + */ + Matrix33 rotation; + /*! + * Translation offset of the skin from this bone in bind position. + */ + Vector3 translation; + /*! + * Scale offset of the skin from this bone in bind position. (Assumption + * - this is always 1.0 so far) + */ + float scale; + /*! + * This has been verified not to be a normalized quaternion. They may or + * may not be related to each other so their specification as an array of + * 4 floats may be misleading. + */ + vector<float > unknown4Floats; + /*! + * Number of weighted vertices. + */ + ushort numVertices; + /*! + * The vertex weights. + */ + vector<SkinWeight > vertexWeights; +}; + +#endif diff --git a/gen/SkinPartition.cpp b/gen/SkinPartition.cpp new file mode 100644 index 0000000000000000000000000000000000000000..7ac08c81325590c4240f92cae57740314fefb9e6 --- /dev/null +++ b/gen/SkinPartition.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "SkinPartition.h" + +//Constructor +SkinPartition::SkinPartition() : numVertices((ushort)0), numTriangles((ushort)0), numBones((ushort)0), numStrips((ushort)0), numWeightsPerVertex((ushort)0), hasVertexMap(false), hasVertexWeights(false), hasStrips(false), hasBoneIndices(false) {}; + +//Destructor +SkinPartition::~SkinPartition() {}; diff --git a/gen/SkinPartition.h b/gen/SkinPartition.h new file mode 100644 index 0000000000000000000000000000000000000000..0e0ed88daca9c93c213e633bb08bed4606024ca3 --- /dev/null +++ b/gen/SkinPartition.h @@ -0,0 +1,85 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _SKINPARTITION_H_ +#define _SKINPARTITION_H_ + +#include "NIF_IO.h" + +/*! + * Skinning data for a submesh, optimized for hardware skinning. Part of + * NiSkinPartition. + */ +struct SkinPartition { + /*! Default Constructor */ + SkinPartition(); + /*! Default Destructor */ + ~SkinPartition(); + /*! + * Number of vertices in this submesh. + */ + ushort numVertices; + /*! + * Number of triangles in this submesh. + */ + ushort numTriangles; + /*! + * Number of bones influencing this submesh. + */ + ushort numBones; + /*! + * Number of strips in this submesh (zero if not stripped). + */ + ushort numStrips; + /*! + * Number of weight coefficients per vertex. + */ + ushort numWeightsPerVertex; + /*! + * List of bones. + */ + vector<ushort > bones; + /*! + * Do we have a vertex map? + */ + bool hasVertexMap; + /*! + * Maps the weight/influence lists in this submesh to the vertices in the + * shape being skinned. + */ + vector<ushort > vertexMap; + /*! + * Do we have vertex weights? + */ + bool hasVertexWeights; + /*! + * The vertex weights. + */ + vector<vector<float > > vertexWeights; + /*! + * The strip lengths. + */ + vector<ushort > stripLengths; + /*! + * Do we have strip data? + */ + bool hasStrips; + /*! + * The strips. + */ + vector<vector<ushort > > strips; + /*! + * The triangles. + */ + vector<Triangle > triangles; + /*! + * Do we have bone indices? + */ + bool hasBoneIndices; + /*! + * Bone indices, they index into 'Bones'. + */ + vector<vector<byte > > boneIndices; +}; + +#endif diff --git a/gen/SkinShape.cpp b/gen/SkinShape.cpp new file mode 100644 index 0000000000000000000000000000000000000000..f548711c89c98ae53a904f6053f2929b2c6f94e7 --- /dev/null +++ b/gen/SkinShape.cpp @@ -0,0 +1,12 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "SkinShape.h" +#include "obj/NiTriShape.h" +#include "obj/NiSkinInstance.h" + +//Constructor +SkinShape::SkinShape() : shape(NULL), skinInstance(NULL) {}; + +//Destructor +SkinShape::~SkinShape() {}; diff --git a/gen/SkinShape.h b/gen/SkinShape.h new file mode 100644 index 0000000000000000000000000000000000000000..2da3de91feffc97ff9e5ef37b7f60fc4b3c2814d --- /dev/null +++ b/gen/SkinShape.h @@ -0,0 +1,32 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _SKINSHAPE_H_ +#define _SKINSHAPE_H_ + +#include "NIF_IO.h" +#include "Ref.h" + +//Forward Declarations +class NiTriShape; +class NiSkinInstance; + +/*! + * Reference to shape and skin instance. + */ +struct SkinShape { + /*! Default Constructor */ + SkinShape(); + /*! Default Destructor */ + ~SkinShape(); + /*! + * The shape. + */ + Ref<NiTriShape > shape; + /*! + * Skinning instance for the shape? + */ + Ref<NiSkinInstance > skinInstance; +}; + +#endif diff --git a/gen/SkinShapeGroup.cpp b/gen/SkinShapeGroup.cpp new file mode 100644 index 0000000000000000000000000000000000000000..ff7b2b2c0d08b95d9faa0c87f9bd4a6f1e9f5925 --- /dev/null +++ b/gen/SkinShapeGroup.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "SkinShapeGroup.h" + +//Constructor +SkinShapeGroup::SkinShapeGroup() : numLinkPairs((uint)0) {}; + +//Destructor +SkinShapeGroup::~SkinShapeGroup() {}; diff --git a/gen/SkinShapeGroup.h b/gen/SkinShapeGroup.h new file mode 100644 index 0000000000000000000000000000000000000000..d1c8a9728e8547c1464a0e58904f6fbeb9d9d891 --- /dev/null +++ b/gen/SkinShapeGroup.h @@ -0,0 +1,29 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _SKINSHAPEGROUP_H_ +#define _SKINSHAPEGROUP_H_ + +#include "NIF_IO.h" +#include "gen/SkinShape.h" + +/*! + * Unknown. + */ +struct SkinShapeGroup { + /*! Default Constructor */ + SkinShapeGroup(); + /*! Default Destructor */ + ~SkinShapeGroup(); + /*! + * Counts unknown. + */ + uint numLinkPairs; + /*! + * First link is a NiTriShape block. Second link is a NiSkinInstance + * block. + */ + vector<SkinShape > linkPairs; +}; + +#endif diff --git a/gen/SkinWeight.cpp b/gen/SkinWeight.cpp new file mode 100644 index 0000000000000000000000000000000000000000..bb35f75dbf7bd4ad10eaa5cefcd561ef981743fa --- /dev/null +++ b/gen/SkinWeight.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "SkinWeight.h" + +//Constructor +SkinWeight::SkinWeight() : index((ushort)0), weight(0.0f) {}; + +//Destructor +SkinWeight::~SkinWeight() {}; diff --git a/gen/SkinWeight.h b/gen/SkinWeight.h new file mode 100644 index 0000000000000000000000000000000000000000..0863dfecbf2798393be85b1a1b9cf696f7c73f1c --- /dev/null +++ b/gen/SkinWeight.h @@ -0,0 +1,27 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _SKINWEIGHT_H_ +#define _SKINWEIGHT_H_ + +#include "NIF_IO.h" + +/*! + * A weighted vertex. + */ +struct SkinWeight { + /*! Default Constructor */ + SkinWeight(); + /*! Default Destructor */ + ~SkinWeight(); + /*! + * The vertex index, in the mesh. + */ + ushort index; + /*! + * The vertex weight - between 0.0 and 1.0 + */ + float weight; +}; + +#endif diff --git a/gen/StringPalette.cpp b/gen/StringPalette.cpp new file mode 100644 index 0000000000000000000000000000000000000000..4eeee30ed9746f320c20419f0e000f8c88673d4e --- /dev/null +++ b/gen/StringPalette.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "StringPalette.h" + +//Constructor +StringPalette::StringPalette() : length((uint)0) {}; + +//Destructor +StringPalette::~StringPalette() {}; diff --git a/gen/StringPalette.h b/gen/StringPalette.h new file mode 100644 index 0000000000000000000000000000000000000000..3d81b8bed8cae2b9019c95785501a1b7ca2f3e49 --- /dev/null +++ b/gen/StringPalette.h @@ -0,0 +1,27 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _STRINGPALETTE_H_ +#define _STRINGPALETTE_H_ + +#include "NIF_IO.h" + +/*! + * A list of \\0 terminated strings. + */ +struct StringPalette { + /*! Default Constructor */ + StringPalette(); + /*! Default Destructor */ + ~StringPalette(); + /*! + * A bunch of 0x00 seperated strings. + */ + string palette; + /*! + * Length of the palette string is repeated here. + */ + uint length; +}; + +#endif diff --git a/gen/TBC.cpp b/gen/TBC.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b11f4c33ee8644219802690b152481d1b5d1b30d --- /dev/null +++ b/gen/TBC.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "TBC.h" + +//Constructor +TBC::TBC() : t(0.0f), b(0.0f), c(0.0f) {}; + +//Destructor +TBC::~TBC() {}; diff --git a/gen/TBC.h b/gen/TBC.h new file mode 100644 index 0000000000000000000000000000000000000000..9566fb10af99dd0d8450262ad346433797cd5e5b --- /dev/null +++ b/gen/TBC.h @@ -0,0 +1,31 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _TBC_H_ +#define _TBC_H_ + +#include "NIF_IO.h" + +/*! + * Tension, bias, continuity. + */ +struct TBC { + /*! Default Constructor */ + TBC(); + /*! Default Destructor */ + ~TBC(); + /*! + * Tension. + */ + float t; + /*! + * Bias. + */ + float b; + /*! + * Continuity. + */ + float c; +}; + +#endif diff --git a/gen/TexDesc.cpp b/gen/TexDesc.cpp new file mode 100644 index 0000000000000000000000000000000000000000..00dc165d2b1f1c8d64954f4fef28649c89ff8e67 --- /dev/null +++ b/gen/TexDesc.cpp @@ -0,0 +1,11 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "TexDesc.h" +#include "obj/NiSourceTexture.h" + +//Constructor +TexDesc::TexDesc() : source(NULL), clampMode((TexClampMode)WRAP_S_WRAP_T), filterMode((TexFilterMode)FILTER_TRILERP), textureSet((uint)0), ps2L((ushort)0), ps2K((ushort)0xFFB5), unknown1((ushort)0), hasTextureTransform(false), wRotation(0.0f), transformType_((uint)0) {}; + +//Destructor +TexDesc::~TexDesc() {}; diff --git a/gen/TexDesc.h b/gen/TexDesc.h new file mode 100644 index 0000000000000000000000000000000000000000..0d924a1794f09efaccdd51728cbbc5399ab6d4e5 --- /dev/null +++ b/gen/TexDesc.h @@ -0,0 +1,75 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _TEXDESC_H_ +#define _TEXDESC_H_ + +#include "NIF_IO.h" +#include "Ref.h" + +//Forward Declarations +class NiSourceTexture; + +/*! + * Texture description. + */ +struct TexDesc { + /*! Default Constructor */ + TexDesc(); + /*! Default Destructor */ + ~TexDesc(); + /*! + * NiSourceTexture block index. + */ + Ref<NiSourceTexture > source; + /*! + * 0=clamp S clamp T, 1=clamp S wrap T, 2=wrap S clamp T, 3=wrap S wrap T + */ + TexClampMode clampMode; + /*! + * 0=nearest, 1=bilinear, 2=trilinear, 3=..., 4=..., 5=... + */ + TexFilterMode filterMode; + /*! + * Texture set? Usually 0. + */ + uint textureSet; + /*! + * 0? + */ + ushort ps2L; + /*! + * 0xFFB5? + */ + ushort ps2K; + /*! + * Unknown, 0 or 0x0101? + */ + ushort unknown1; + /*! + * Determines whether or not the texture's coordinates are transformed. + */ + bool hasTextureTransform; + /*! + * The amount to translate the texture coordinates in each direction? + */ + TexCoord translation; + /*! + * The number of times the texture is tiled in each direction? + */ + TexCoord tiling; + /*! + * 2D Rotation of texture image around third W axis after U and V. + */ + float wRotation; + /*! + * The texture transform type? Doesn't seem to do anything. + */ + uint transformType_; + /*! + * The offset from the origin? + */ + TexCoord centerOffset; +}; + +#endif diff --git a/gen/TexSource.cpp b/gen/TexSource.cpp new file mode 100644 index 0000000000000000000000000000000000000000..10838fe05562afb9a7e00c6b77e985ff2ad1adb6 --- /dev/null +++ b/gen/TexSource.cpp @@ -0,0 +1,12 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "TexSource.h" +#include "obj/NiObject.h" +#include "obj/NiPixelData.h" + +//Constructor +TexSource::TexSource() : useExternal((byte)0), unknownLink(NULL), unknownByte((byte)0), pixelData(NULL) {}; + +//Destructor +TexSource::~TexSource() {}; diff --git a/gen/TexSource.h b/gen/TexSource.h new file mode 100644 index 0000000000000000000000000000000000000000..b0c7b23d99c049028a42b65c7d8fcc208d75c2e0 --- /dev/null +++ b/gen/TexSource.h @@ -0,0 +1,53 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _TEXSOURCE_H_ +#define _TEXSOURCE_H_ + +#include "NIF_IO.h" +#include "Ref.h" + +//Forward Declarations +class NiObject; +class NiPixelData; + +/*! + * A texture source. + */ +struct TexSource { + /*! Default Constructor */ + TexSource(); + /*! Default Destructor */ + ~TexSource(); + /*! + * Is the texture external? + */ + byte useExternal; + /*! + * The external texture file name. Note: all original morrowind nifs use + * name.ext only for addressing the textures, but most mods use something + * like textures/[subdir/]name.ext. This is due to a feature in Morrowind + * resource manager: it loads name.ext, textures/name.ext and + * textures/subdir/name.ext but NOT subdir/name.ext. + */ + string fileName; + /*! + * Unknown. + */ + Ref<NiObject > unknownLink; + /*! + * Unknown. + */ + byte unknownByte; + /*! + * The original source filename of the image embedded by the referred + * NiPixelData block. + */ + string originalFileName_; + /*! + * Pixel data block index. + */ + Ref<NiPixelData > pixelData; +}; + +#endif diff --git a/gen/hkTriangle.cpp b/gen/hkTriangle.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e6c99c45bdcfed6e0bf333a2d64eeb6e18dbcb8b --- /dev/null +++ b/gen/hkTriangle.cpp @@ -0,0 +1,10 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#include "hkTriangle.h" + +//Constructor +hkTriangle::hkTriangle() : unknownShort((ushort)0) {}; + +//Destructor +hkTriangle::~hkTriangle() {}; diff --git a/gen/hkTriangle.h b/gen/hkTriangle.h new file mode 100644 index 0000000000000000000000000000000000000000..cd6fb832a97d17c872b3166daff21cc1c44a0f67 --- /dev/null +++ b/gen/hkTriangle.h @@ -0,0 +1,32 @@ +/* Copyright (c) 2006, NIF File Format Library and Tools +All rights reserved. Please see niflib.h for licence. */ + +#ifndef _HKTRIANGLE_H_ +#define _HKTRIANGLE_H_ + +#include "NIF_IO.h" + +/*! + * A triangle with extra data used for physics. + */ +struct hkTriangle { + /*! Default Constructor */ + hkTriangle(); + /*! Default Destructor */ + ~hkTriangle(); + /*! + * The triangle. + */ + Triangle triangle; + /*! + * Another short, doesn't look like a vertex index. + */ + ushort unknownShort; + /*! + * This appears to be a normalized vector, so probably it is a normal or + * a tangent vector or something like that. + */ + Vector3 normal; +}; + +#endif diff --git a/xml_extract.h b/gen/obj_defines.h similarity index 95% rename from xml_extract.h rename to gen/obj_defines.h index 0c2cace80702d33d3e295063a8a7ef1b032a656a..d58c55dc2003da079349eec87fbd02551f8e6bc5 100644 --- a/xml_extract.h +++ b/gen/obj_defines.h @@ -1,11 +1,11 @@ /* Copyright (c) 2006, NIF File Format Library and Tools All rights reserved. Please see niflib.h for licence. */ -#ifndef _XML_EXTRACT_H_ -#define _XML_EXTRACT_H_ +#ifndef _OBJ_DEFINES_H_ +#define _OBJ_DEFINES_H_ #include "NIF_IO.h" -#include "obj/Ref.h" +#include "Ref.h" #include <iostream> #include <fstream> #include <vector> @@ -13,6 +13,36 @@ All rights reserved. Please see niflib.h for licence. */ using namespace std; +#include "gen/Bones.h" +#include "gen/ByteArray.h" +#include "gen/Footer.h" +#include "gen/LODRange.h" +#include "gen/MatchGroup.h" +#include "gen/MipMap.h" +#include "gen/NodeGroup.h" +#include "gen/QuaternionXYZW.h" +#include "gen/ShortString.h" +#include "gen/SkinShape.h" +#include "gen/SkinShapeGroup.h" +#include "gen/SkinWeight.h" +#include "gen/AVObject.h" +#include "gen/ControllerLink.h" +#include "gen/Header.h" +#include "gen/StringPalette.h" +#include "gen/TBC.h" +#include "gen/KeyGroup.h" +#include "gen/RotationKeyArray.h" +#include "gen/TexDesc.h" +#include "gen/ShaderTexDesc.h" +#include "gen/TexSource.h" +#include "gen/SkinPartition.h" +#include "gen/BoundingBox.h" +#include "gen/FurniturePosition.h" +#include "gen/hkTriangle.h" +#include "gen/Morph.h" +#include "gen/Particle.h" +#include "gen/SkinData.h" + class NiObject; class AKeyedData; class AParticleModifier; @@ -227,983 +257,6 @@ class NiWireframeProperty; class NiZBufferProperty; class RootCollisionNode; -/*! - * This is a list of bone influences. It points to blocks higher in the - * hierarchy so ints are used to represent the indices. - */ -struct Bones { - /*! - * The number of node bones referenced as influences. - */ - uint numBones; - /*! - * Block indicies of the bones. - */ - vector<NiNode * > bones; - Bones() : numBones((uint)0) {}; -}; - -/*! - * An array of bytes. - */ -struct ByteArray { - /*! - * The number of bytes in this array - */ - uint dataSize; - /*! - * Unknown. - */ - uint unknownInt; - /*! - * The bytes which make up the array - */ - vector<byte > data; - ByteArray() : dataSize((uint)0), unknownInt((uint)0) {}; -}; - -/*! - * The NIF file footer. - */ -struct Footer { - /*! - * The number of root references. - */ - uint numRoots; - /*! - * List of root blocks. If there is a camera, for 1st person view, then - * this block is referred to as well in this list, even if it is not a - * root block (usually we want the camera to be attached to the Bip Head - * node). - */ - vector<Ref<NiAVObject > > roots; - Footer() : numRoots((uint)0) {}; -}; - -/*! - * The distance range where a specific level of detail applies. - */ -struct LODRange { - /*! - * Begining of range. - */ - float near; - /*! - * End of Range. - */ - float far; - LODRange() : near(0.0f), far(0.0f) {}; -}; - -/*! - * Group of vertex indices of vertices that match. - */ -struct MatchGroup { - /*! - * Number of vertices in this group. - */ - ushort numVertices; - /*! - * The vertex indices. - */ - vector<ushort > vertexIndices; - MatchGroup() : numVertices((ushort)0) {}; -}; - -/*! - * Description of a MipMap within a NiPixelData block. - */ -struct MipMap { - /*! - * Width of the mipmap image. - */ - uint width; - /*! - * Height of the mipmap image. - */ - uint height; - /*! - * Offset into the pixel data array where this mipmap starts. - */ - uint offset; - MipMap() : width((uint)0), height((uint)0), offset((uint)0) {}; -}; - -/*! - * A group of NiNodes references. - */ -struct NodeGroup { - /*! - * Number of node references that follow. - */ - uint numNodes; - /*! - * The list of NiNode references. - */ - vector<Ref<NiNode > > nodes; - NodeGroup() : numNodes((uint)0) {}; -}; - -/*! - * Linear key type (!!! for NifSkope optimizer only, use key, keyrot, or - * keyvec for regular use). - */ -template <class T > -struct ns_keylin { - /*! - * Key time. - */ - float time; - /*! - * The key value. - */ - T value; - ns_keylin() : time(0.0f) {}; -}; - -/*! - * Array of keys, not interpolated (!!! for NifSkope only, use keyarray - * for regular use). - */ -template <class T > -struct ns_keyarray { - /*! - * Number of keys. - */ - uint numKeys; - /*! - * The keys. - */ - vector<ns_keylin<T > > keys; - ns_keyarray() : numKeys((uint)0) {}; -}; - -/*! - * Key with tangents (!!! for NifSkope only, use keyvec instead for - * regular purposes). - */ -template <class T > -struct ns_keytan { - /*! - * The key time. - */ - float time; - /*! - * The key value. - */ - T value; - /*! - * Forward tangent. - */ - T forward; - /*! - * Backward tangent. - */ - T backward; - ns_keytan() : time(0.0f) {}; -}; - -/*! - * A quaternion as it appears in the havok blocks. - */ -struct QuaternionXYZW { - /*! - * The x-coordinate. - */ - float x; - /*! - * The y-coordinate. - */ - float y; - /*! - * The z-coordinate. - */ - float z; - /*! - * The w-coordinate. - */ - float w; - QuaternionXYZW() : x(0.0f), y(0.0f), z(0.0f), w(0.0f) {}; -}; - -/*! - * Another string format, for short strings. Specific to Bethesda- - * specific header tags. - */ -struct ShortString { - /*! - * The string length. - */ - byte length; - /*! - * The string itself, null terminated (the null terminator is taken into - * account in the length byte). - */ - vector<byte > value; - ShortString() : length((byte)0) {}; -}; - -/*! - * Reference to shape and skin instance. - */ -struct SkinShape { - /*! - * The shape. - */ - Ref<NiTriShape > shape; - /*! - * Skinning instance for the shape? - */ - Ref<NiSkinInstance > skinInstance; - SkinShape() : shape(NULL), skinInstance(NULL) {}; -}; - -/*! - * Unknown. - */ -struct SkinShapeGroup { - /*! - * Counts unknown. - */ - uint numLinkPairs; - /*! - * First link is a NiTriShape block. Second link is a NiSkinInstance - * block. - */ - vector<SkinShape > linkPairs; - SkinShapeGroup() : numLinkPairs((uint)0) {}; -}; - -/*! - * A weighted vertex. - */ -struct SkinWeight { - /*! - * The vertex index, in the mesh. - */ - ushort index; - /*! - * The vertex weight - between 0.0 and 1.0 - */ - float weight; - SkinWeight() : index((ushort)0), weight(0.0f) {}; -}; - -/*! - * Used in NiDefaultAVObjectPalette. - */ -struct AVObject { - /*! - * Object name. - */ - string name; - /*! - * Object reference. - */ - NiAVObject * object; - AVObject() : object(NULL) {}; -}; - -/*! - * In a .kf file, this links to a controllable block, via its name (or - * for version 10.2.0.0 and up, a link and offset to a NiStringPalette - * that contains the name), and a sequence of interpolators that apply to - * this controllable block, via links. - */ -struct ControllerLink { - /*! - * Name of a controllable block in another NIF file. - */ - string name; - /*! - * Link to an interpolator. - */ - Ref<NiInterpolator > interpolator; - /*! - * Unknown link. Usually -1. - */ - Ref<NiObject > unknownLink1; - /*! - * Unknown. - */ - Ref<NiObject > unknownLink2; - /*! - * Unknown. - */ - ushort unknownShort0; - /*! - * Idle animations tend to have low values for this, and blocks that have - * high values tend to correspond with the important parts of the - * animation. WARNING: BREAKS CIV4 NIF FILES! Only observed in Oblivion - * NIF files so far. - */ - byte priority_; - /*! - * Refers to the NiStringPalette which contains the name of the - * controlled block. - */ - Ref<NiStringPalette > stringPalette; - /*! - * The name of the animated node. - */ - string nodeName; - /*! - * Offset in the string palette where the name of the controlled node - * (NiNode, NiTriShape, ...) starts. - */ - uint nodeNameOffset; - /*! - * Name of the property (NiMaterialProperty, ...), if this controller - * controls a property. - */ - string propertyType; - /*! - * Offset in the string palette where the property (NiMaterialProperty, - * ...) starts, if this controller controls a property. Otherwise, -1. - */ - uint propertyTypeOffset; - /*! - * Probably the block type name of the controller in the NIF file that is - * child of the controlled block. - */ - string controllerType; - /*! - * Apparently the offset in the string palette of some type of controller - * related to Interpolator (for example, a 'NiTransformInterpolator' will - * have here a 'NiTransformController', etc.). Sometimes the type of - * controller that links to the interpolator. Probably it refers to the - * controller in the NIF file that is child of the controlled block, via - * its type name. - */ - uint controllerTypeOffset; - /*! - * Some variable string (such as 'SELF_ILLUM', '0-0-TT_TRANSLATE_U', - * 'tongue_out', etc.). - */ - string variable1; - /*! - * Offset in the string palette where some variable string starts (such - * as 'SELF_ILLUM', '0-0-TT_TRANSLATE_U', 'tongue_out', etc.). Usually, - * -1. - */ - uint variableOffset1; - /*! - * Another variable string, apparently used for particle system - * controllers. - */ - string variable2; - /*! - * Offset in the string palette where some variable string starts (so far - * only 'EmitterActive' and 'BirthRate' have been observed in official - * files, used for particle system controllers). Usually, -1. - */ - uint variableOffset2; - ControllerLink() : interpolator(NULL), unknownLink1(NULL), unknownLink2(NULL), unknownShort0((ushort)0), priority_((byte)0), stringPalette(NULL), nodeNameOffset((uint)0), propertyTypeOffset((uint)0), controllerTypeOffset((uint)0), variableOffset1((uint)0), variableOffset2((uint)0) {}; -}; - -/*! - * The NIF file header. - */ -struct Header { - /*! - * 'NetImmerse File Format x.x.x.x' (versions <= 10.0.1.2) or 'Gamebryo - * File Format x.x.x.x' (versions >= 10.1.0.0), with x.x.x.x the version - * written out. Ends with a newline character (0x0A). - */ - HeaderString headerString; - /*! - * The NIF version, in hexadecimal notation: 0x04000002, 0x0401000C, - * 0x04020002, 0x04020100, 0x04020200, 0x0A000100, 0x0A010000, - * 0x0A020000, 0x14000004, ... - */ - uint version; - /*! - * Determines the endian-ness of the data. 1 = little endian (default) 0 - * = big endian - */ - byte endianType; - /*! - * An extra version number, for companies that decide to modify the file - * format. - */ - uint userVersion; - /*! - * Number of file blocks. - */ - uint numBlocks; - /*! - * Unknown. - */ - uint unknownInt1; - /*! - * Unknown. - */ - uint unknownInt3; - /*! - * Could be the name of the creator of the NIF file? - */ - ShortString creator_; - /*! - * Unknown. Can be something like 'TriStrip Process Script'. - */ - ShortString exportType_; - /*! - * Unknown. Possibly the selected option of the export script. Can be - * something like 'Default Export Script'. - */ - ShortString exportScript_; - /*! - * Number of block types in this NIF file. - */ - ushort numBlockTypes; - /*! - * List of all block types used in this NIF file. - */ - vector<string > blockTypes; - /*! - * Maps file blocks on their corresponding type: first file block is of - * type block_types[block_type_index[0]], the second of - * block_types[block_type_index[1]], etc. - */ - vector<ushort > blockTypeIndex; - /*! - * Unknown. - */ - uint unknownInt2; - Header() : version((uint)0x04000002), endianType((byte)1), userVersion((uint)0), numBlocks((uint)0), unknownInt1((uint)0), unknownInt3((uint)0), numBlockTypes((ushort)0), unknownInt2((uint)0) {}; -}; - -/*! - * A list of \\0 terminated strings. - */ -struct StringPalette { - /*! - * A bunch of 0x00 seperated strings. - */ - string palette; - /*! - * Length of the palette string is repeated here. - */ - uint length; - StringPalette() : length((uint)0) {}; -}; - -/*! - * Tension, bias, continuity. - */ -struct TBC { - /*! - * Tension. - */ - float t; - /*! - * Bias. - */ - float b; - /*! - * Continuity. - */ - float c; - TBC() : t(0.0f), b(0.0f), c(0.0f) {}; -}; - -/*! - * Array of vector keys (anything that can be interpolated, except - * rotations). - */ -template <class T > -struct KeyGroup { - /*! - * Number of keys in the array. - */ - uint numKeys; - /*! - * The key type. - */ - KeyType interpolation; - /*! - * The keys. - */ - vector<Key<T > > keys; - KeyGroup() : numKeys((uint)0), interpolation((KeyType)0) {}; -}; - -/*! - * A TBC key (!!! for NifSkope only, use keyvec for regular purposes). - */ -template <class T > -struct ns_keytbc { - /*! - * The key time. - */ - float time; - /*! - * The key value. - */ - T value; - /*! - * Tension, bias, continuity. - */ - TBC tbc; - ns_keytbc() : time(0.0f) {}; -}; - -/*! - * Array of interpolable keys (!!! for NifSkope only, use keyvecarray for - * regular use). - */ -template <class T > -struct ns_keyvecarray { - /*! - * Number of keys. - */ - uint numKeys; - /*! - * The key type (1, 2, or 3). - */ - uint keyType; - /*! - * Linearly interpolated keys. - */ - vector<ns_keylin<T > > keys; - ns_keyvecarray() : numKeys((uint)0), keyType((uint)0) {}; -}; - -/*! - * Rotation subkey (!!! Nifskope only). - */ -struct ns_keyrotsub { - /*! - * Time. - */ - float time; - /*! - * The sub keys, one for every axis. - */ - vector<ns_keyvecarray<float > > subKeys; - ns_keyrotsub() : time(0.0f) {}; -}; - -/*! - * Array of rotation keys (!!! for NifSkope only, use keyrotarray for - * regular use). - */ -template <class T > -struct ns_keyrotarray { - /*! - * Number of rotation keys. - */ - uint numKeys; - /*! - * The key type (1, 2, 3, or 4). - */ - uint keyType; - /*! - * Linear keys. - */ - vector<ns_keylin<T > > keys; - /*! - * Special rotation keys (3 float arrays, one for each axis). - */ - vector<ns_keyrotsub > keysSub; - ns_keyrotarray() : numKeys((uint)0), keyType((uint)0) {}; -}; - -/*! - * Array of interpolable keys (!!! for NifSkope only, use keyvecarraytyp - * for regular use) - */ -template <class T > -struct ns_keyvecarraytyp { - /*! - * Number of keys - */ - uint numKeys; - /*! - * The key type (1, 2, 3) - */ - uint keyType; - /*! - * Linearly interpolated keys. - */ - vector<ns_keylin<T > > keys; - ns_keyvecarraytyp() : numKeys((uint)0), keyType((uint)0) {}; -}; - -/*! - * Rotation key array. - */ -template <class T > -struct RotationKeyArray { - /*! - * Number of keys. - */ - uint numKeys; - /*! - * Key type (1, 2, 3, or 4). - */ - KeyType keyType; - /*! - * The rotation keys. - */ - vector<Key<T > > keys; - RotationKeyArray() : numKeys((uint)0), keyType((KeyType)0) {}; -}; - -/*! - * Texture description. - */ -struct TexDesc { - /*! - * NiSourceTexture block index. - */ - Ref<NiSourceTexture > source; - /*! - * 0=clamp S clamp T, 1=clamp S wrap T, 2=wrap S clamp T, 3=wrap S wrap T - */ - TexClampMode clampMode; - /*! - * 0=nearest, 1=bilinear, 2=trilinear, 3=..., 4=..., 5=... - */ - TexFilterMode filterMode; - /*! - * Texture set? Usually 0. - */ - uint textureSet; - /*! - * 0? - */ - ushort ps2L; - /*! - * 0xFFB5? - */ - ushort ps2K; - /*! - * Unknown, 0 or 0x0101? - */ - ushort unknown1; - /*! - * Determines whether or not the texture's coordinates are transformed. - */ - bool hasTextureTransform; - /*! - * The amount to translate the texture coordinates in each direction? - */ - TexCoord translation; - /*! - * The number of times the texture is tiled in each direction? - */ - TexCoord tiling; - /*! - * 2D Rotation of texture image around third W axis after U and V. - */ - float wRotation; - /*! - * The texture transform type? Doesn't seem to do anything. - */ - uint transformType_; - /*! - * The offset from the origin? - */ - TexCoord centerOffset; - TexDesc() : source(NULL), clampMode((TexClampMode)WRAP_S_WRAP_T), filterMode((TexFilterMode)FILTER_TRILERP), textureSet((uint)0), ps2L((ushort)0), ps2K((ushort)0xFFB5), unknown1((ushort)0), hasTextureTransform(false), wRotation(0.0f), transformType_((uint)0) {}; -}; - -/*! - * An extended texture description for shader textures. - */ -struct ShaderTexDesc { - /*! - * Is it used? - */ - bool isUsed; - /*! - * The texture data. - */ - TexDesc textureData; - /*! - * Unknown. - */ - uint unknownInt; - ShaderTexDesc() : isUsed(false), unknownInt((uint)0) {}; -}; - -/*! - * A texture source. - */ -struct TexSource { - /*! - * Is the texture external? - */ - byte useExternal; - /*! - * The external texture file name. Note: all original morrowind nifs use - * name.ext only for addressing the textures, but most mods use something - * like textures/[subdir/]name.ext. This is due to a feature in Morrowind - * resource manager: it loads name.ext, textures/name.ext and - * textures/subdir/name.ext but NOT subdir/name.ext. - */ - string fileName; - /*! - * Unknown. - */ - Ref<NiObject > unknownLink; - /*! - * Unknown. - */ - byte unknownByte; - /*! - * The original source filename of the image embedded by the referred - * NiPixelData block. - */ - string originalFileName_; - /*! - * Pixel data block index. - */ - Ref<NiPixelData > pixelData; - TexSource() : useExternal((byte)0), unknownLink(NULL), unknownByte((byte)0), pixelData(NULL) {}; -}; - -/*! - * Skinning data for a submesh, optimized for hardware skinning. Part of - * NiSkinPartition. - */ -struct SkinPartition { - /*! - * Number of vertices in this submesh. - */ - ushort numVertices; - /*! - * Number of triangles in this submesh. - */ - ushort numTriangles; - /*! - * Number of bones influencing this submesh. - */ - ushort numBones; - /*! - * Number of strips in this submesh (zero if not stripped). - */ - ushort numStrips; - /*! - * Number of weight coefficients per vertex. - */ - ushort numWeightsPerVertex; - /*! - * List of bones. - */ - vector<ushort > bones; - /*! - * Do we have a vertex map? - */ - bool hasVertexMap; - /*! - * Maps the weight/influence lists in this submesh to the vertices in the - * shape being skinned. - */ - vector<ushort > vertexMap; - /*! - * Do we have vertex weights? - */ - bool hasVertexWeights; - /*! - * The vertex weights. - */ - vector<vector<float > > vertexWeights; - /*! - * The strip lengths. - */ - vector<ushort > stripLengths; - /*! - * Do we have strip data? - */ - bool hasStrips; - /*! - * The strips. - */ - vector<vector<ushort > > strips; - /*! - * The triangles. - */ - vector<Triangle > triangles; - /*! - * Do we have bone indices? - */ - bool hasBoneIndices; - /*! - * Bone indices, they index into 'Bones'. - */ - vector<vector<byte > > boneIndices; - SkinPartition() : numVertices((ushort)0), numTriangles((ushort)0), numBones((ushort)0), numStrips((ushort)0), numWeightsPerVertex((ushort)0), hasVertexMap(false), hasVertexWeights(false), hasStrips(false), hasBoneIndices(false) {}; -}; - -/*! - * Bounding box. - */ -struct BoundingBox { - /*! - * Usually 1. - */ - uint unknownInt; - /*! - * Translation vector. - */ - Vector3 translation; - /*! - * Rotation matrix. - */ - Matrix33 rotation; - /*! - * Radius, per direction. - */ - Vector3 radius; - BoundingBox() : unknownInt((uint)1) {}; -}; - -/*! - * Describes a furniture position? - */ -struct FurniturePosition { - /*! - * Unknown. Position? - */ - Vector3 unknownVector; - /*! - * Unknown. - */ - ushort unknownShort; - /*! - * This might refer to a furnituremarkerxx.nif file. - */ - byte positionRef1_; - /*! - * This might also refer to a furnituremarkerxx.nif file. - */ - byte positionRef2_; - FurniturePosition() : unknownShort((ushort)0), positionRef1_((byte)0), positionRef2_((byte)0) {}; -}; - -/*! - * A triangle with extra data used for physics. - */ -struct hkTriangle { - /*! - * The triangle. - */ - Triangle triangle; - /*! - * Another short, doesn't look like a vertex index. - */ - ushort unknownShort; - /*! - * This appears to be a normalized vector, so probably it is a normal or - * a tangent vector or something like that. - */ - Vector3 normal; - hkTriangle() : unknownShort((ushort)0) {}; -}; - -/*! - * Geometry morphing data component. - */ -struct Morph { - /*! - * Name of the frame. - */ - string frameName; - /*! - * The number of morph keys that follow. - */ - uint numMorphKeys; - /*! - * Unlike most blocks, the presense of this value is not conditional on - * there being keys. - */ - KeyType morphInterpolation; - /*! - * The morph key frames. - */ - vector<Key<float > > morphKeys; - /*! - * Unknown. - */ - uint unknownInt; - /*! - * Morph vectors. - */ - vector<Vector3 > vectors; - Morph() : numMorphKeys((uint)0), morphInterpolation((KeyType)0), unknownInt((uint)0) {}; -}; - -/*! - * particle array entry - */ -struct Particle { - /*! - * Particle velocity - */ - Vector3 velocity; - /*! - * Unknown - */ - Vector3 unknownVector; - /*! - * The particle's age. - */ - float lifetime; - /*! - * Maximum age of the particle. - */ - float lifespan; - /*! - * Timestamp of the last update. - */ - float timestamp; - /*! - * Unknown short (=0) - */ - ushort unknownShort; - /*! - * Particle/vertex index matches array index - */ - ushort vertexId; - Particle() : lifetime(0.0f), lifespan(0.0f), timestamp(0.0f), unknownShort((ushort)0), vertexId((ushort)0) {}; -}; - -/*! - * Skinning data component. - */ -struct SkinData { - /*! - * Rotation offset of the skin from this bone in bind position. - */ - Matrix33 rotation; - /*! - * Translation offset of the skin from this bone in bind position. - */ - Vector3 translation; - /*! - * Scale offset of the skin from this bone in bind position. (Assumption - * - this is always 1.0 so far) - */ - float scale; - /*! - * This has been verified not to be a normalized quaternion. They may or - * may not be related to each other so their specification as an array of - * 4 floats may be misleading. - */ - vector<float > unknown4Floats; - /*! - * Number of weighted vertices. - */ - ushort numVertices; - /*! - * The vertex weights. - */ - vector<SkinWeight > vertexWeights; - SkinData() : scale(0.0f), numVertices((ushort)0) {}; -}; - #define NI_OBJECT_MEMBERS \ #define NI_OBJECT_INCLUDE ".h" \ diff --git a/docsys_extract.cpp b/gen/obj_factories.cpp similarity index 100% rename from docsys_extract.cpp rename to gen/obj_factories.cpp diff --git a/niflib.h b/niflib.h index 2a09aad5370b1ae38df5e53bad90329980046fdf..7fa56ff9f1f1177ee9bc3abb843f0240e7385de4 100644 --- a/niflib.h +++ b/niflib.h @@ -50,7 +50,7 @@ POSSIBILITY OF SUCH DAMAGE. */ #include "nif_math.h" #include "NIF_IO.h" #include "obj/NiObject.h" -#include "xml_extract.h" +#include "gen/obj_defines.h" #include "kfm.h" using namespace std; diff --git a/niflib.vcproj b/niflib.vcproj index b97b4fea44cdb4130c6f685cae5176a703a3b725..240732983595ddbdc0a0fa7c4b77a46fc4867b71 100644 --- a/niflib.vcproj +++ b/niflib.vcproj @@ -134,9 +134,6 @@ Name="Source Files" Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx" UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"> - <File - RelativePath=".\docsys_extract.cpp"> - </File> <File RelativePath=".\NIF_IO.cpp"> </File> @@ -152,6 +149,9 @@ RuntimeLibrary="3"/> </FileConfiguration> </File> + <File + RelativePath=".\Type.cpp"> + </File> <Filter Name="obj" Filter=""> @@ -794,8 +794,99 @@ <File RelativePath=".\obj\RootCollisionNode.cpp"> </File> + </Filter> + <Filter + Name="gen" + Filter=""> + <File + RelativePath=".\gen\AVObject.cpp"> + </File> + <File + RelativePath=".\gen\Bones.cpp"> + </File> + <File + RelativePath=".\gen\BoundingBox.cpp"> + </File> + <File + RelativePath=".\gen\ByteArray.cpp"> + </File> + <File + RelativePath=".\gen\ControllerLink.cpp"> + </File> + <File + RelativePath=".\gen\Footer.cpp"> + </File> + <File + RelativePath=".\gen\FurniturePosition.cpp"> + </File> + <File + RelativePath=".\gen\Header.cpp"> + </File> + <File + RelativePath=".\gen\hkTriangle.cpp"> + </File> + <File + RelativePath=".\gen\KeyGroup.cpp"> + </File> + <File + RelativePath=".\gen\LODRange.cpp"> + </File> + <File + RelativePath=".\gen\MatchGroup.cpp"> + </File> + <File + RelativePath=".\gen\MipMap.cpp"> + </File> + <File + RelativePath=".\gen\Morph.cpp"> + </File> + <File + RelativePath=".\gen\NodeGroup.cpp"> + </File> + <File + RelativePath=".\gen\obj_factories.cpp"> + </File> + <File + RelativePath=".\gen\Particle.cpp"> + </File> + <File + RelativePath=".\gen\QuaternionXYZW.cpp"> + </File> + <File + RelativePath=".\gen\RotationKeyArray.cpp"> + </File> + <File + RelativePath=".\gen\ShaderTexDesc.cpp"> + </File> + <File + RelativePath=".\gen\ShortString.cpp"> + </File> + <File + RelativePath=".\gen\SkinData.cpp"> + </File> + <File + RelativePath=".\gen\SkinPartition.cpp"> + </File> + <File + RelativePath=".\gen\SkinShape.cpp"> + </File> + <File + RelativePath=".\gen\SkinShapeGroup.cpp"> + </File> + <File + RelativePath=".\gen\SkinWeight.cpp"> + </File> + <File + RelativePath=".\gen\StringPalette.cpp"> + </File> + <File + RelativePath=".\gen\TBC.cpp"> + </File> + <File + RelativePath=".\gen\TexDesc.cpp"> + </File> <File - RelativePath=".\obj\Type.cpp"> + RelativePath=".\gen\TexSource.cpp"> </File> </Filter> </Filter> @@ -813,7 +904,10 @@ RelativePath=".\niflib.h"> </File> <File - RelativePath=".\xml_extract.h"> + RelativePath=".\Ref.h"> + </File> + <File + RelativePath=".\Type.h"> </File> <Filter Name="obj" @@ -1455,13 +1549,101 @@ RelativePath=".\obj\NiZBufferProperty.h"> </File> <File - RelativePath=".\obj\Ref.h"> + RelativePath=".\obj\RootCollisionNode.h"> </File> + </Filter> + <Filter + Name="gen" + Filter=""> <File - RelativePath=".\obj\RootCollisionNode.h"> + RelativePath=".\gen\AVObject.h"> + </File> + <File + RelativePath=".\gen\Bones.h"> + </File> + <File + RelativePath=".\gen\BoundingBox.h"> + </File> + <File + RelativePath=".\gen\ByteArray.h"> + </File> + <File + RelativePath=".\gen\ControllerLink.h"> + </File> + <File + RelativePath=".\gen\Footer.h"> + </File> + <File + RelativePath=".\gen\FurniturePosition.h"> + </File> + <File + RelativePath=".\gen\Header.h"> + </File> + <File + RelativePath=".\gen\hkTriangle.h"> + </File> + <File + RelativePath=".\gen\KeyGroup.h"> + </File> + <File + RelativePath=".\gen\LODRange.h"> + </File> + <File + RelativePath=".\gen\MatchGroup.h"> + </File> + <File + RelativePath=".\gen\MipMap.h"> + </File> + <File + RelativePath=".\gen\Morph.h"> + </File> + <File + RelativePath=".\gen\NodeGroup.h"> + </File> + <File + RelativePath=".\gen\obj_defines.h"> + </File> + <File + RelativePath=".\gen\Particle.h"> + </File> + <File + RelativePath=".\gen\QuaternionXYZW.h"> + </File> + <File + RelativePath=".\gen\RotationKeyArray.h"> + </File> + <File + RelativePath=".\gen\ShaderTexDesc.h"> + </File> + <File + RelativePath=".\gen\ShortString.h"> + </File> + <File + RelativePath=".\gen\SkinData.h"> + </File> + <File + RelativePath=".\gen\SkinPartition.h"> + </File> + <File + RelativePath=".\gen\SkinShape.h"> + </File> + <File + RelativePath=".\gen\SkinShapeGroup.h"> + </File> + <File + RelativePath=".\gen\SkinWeight.h"> + </File> + <File + RelativePath=".\gen\StringPalette.h"> + </File> + <File + RelativePath=".\gen\TBC.h"> + </File> + <File + RelativePath=".\gen\TexDesc.h"> </File> <File - RelativePath=".\obj\Type.h"> + RelativePath=".\gen\TexSource.h"> </File> </Filter> </Filter> diff --git a/obj/ABoneLODController.h b/obj/ABoneLODController.h index d8f643d6bcd8595a49baa668ea8f0e1907b33e0a..54bf369b7e6d05c9c8d322d7fb12eb7dcf114c3f 100644 --- a/obj/ABoneLODController.h +++ b/obj/ABoneLODController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _ABONELODCONTROLLER_H_ #define _ABONELODCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include A_BONE_L_O_D_CONTROLLER_INCLUDE /* diff --git a/obj/AKeyedData.h b/obj/AKeyedData.h index da0486e94fc93a58badd3ed025b39b31cff836da..200ef280135b2901aa1b78808d2dcb4bd394dbaf 100644 --- a/obj/AKeyedData.h +++ b/obj/AKeyedData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _AKEYEDDATA_H_ #define _AKEYEDDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include A_KEYED_DATA_INCLUDE /* diff --git a/obj/APSysCtlr.h b/obj/APSysCtlr.h index 50f13b9643ba9727ce07d9f779ab8b8cfa6d5d4e..e690f573bf42ddcee77d87b55f7d5f7ac4939cdc 100644 --- a/obj/APSysCtlr.h +++ b/obj/APSysCtlr.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _APSYSCTLR_H_ #define _APSYSCTLR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include A_P_SYS_CTLR_INCLUDE /* diff --git a/obj/APSysData.h b/obj/APSysData.h index ae108c0c987bf12316e2a79a04457e8c6e92b4fd..865ff47fd8e0c6b901b25896e2a8d0d0d669ff1c 100644 --- a/obj/APSysData.h +++ b/obj/APSysData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _APSYSDATA_H_ #define _APSYSDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include A_P_SYS_DATA_INCLUDE /* diff --git a/obj/AParticleModifier.h b/obj/AParticleModifier.h index a5242c631dc2a326ee9921cd29fa7e919cb9dad1..154b25b7fd48a7d0753094d8de78c0f44589ecae 100644 --- a/obj/AParticleModifier.h +++ b/obj/AParticleModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _APARTICLEMODIFIER_H_ #define _APARTICLEMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include A_PARTICLE_MODIFIER_INCLUDE /* diff --git a/obj/AbhkConstraint.h b/obj/AbhkConstraint.h index ae055189c794ee01fcab4d4c674c482fe030ad4d..e68c65c8d08e657d06fad8c5aa13fc08dfedb5ea 100644 --- a/obj/AbhkConstraint.h +++ b/obj/AbhkConstraint.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _ABHKCONSTRAINT_H_ #define _ABHKCONSTRAINT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include ABHK_CONSTRAINT_INCLUDE /* diff --git a/obj/AbhkRagdollConstraint.h b/obj/AbhkRagdollConstraint.h index ddb7ae365c030396b8edaa4c7e3254ea1cca9d5d..44d9d6813f8b12b9aa7882a0b0fb35ca97afece6 100644 --- a/obj/AbhkRagdollConstraint.h +++ b/obj/AbhkRagdollConstraint.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _ABHKRAGDOLLCONSTRAINT_H_ #define _ABHKRAGDOLLCONSTRAINT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include ABHK_RAGDOLL_CONSTRAINT_INCLUDE /* diff --git a/obj/AbhkShapeCollection.h b/obj/AbhkShapeCollection.h index 6c8f80137740b9ee33fd1d230f4f3222990611f0..ee382c3ef6ba5205179f7d7bb72677315ee526a8 100644 --- a/obj/AbhkShapeCollection.h +++ b/obj/AbhkShapeCollection.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _ABHKSHAPECOLLECTION_H_ #define _ABHKSHAPECOLLECTION_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include ABHK_SHAPE_COLLECTION_INCLUDE /* diff --git a/obj/AvoidNode.h b/obj/AvoidNode.h index ef9d98040a80b01a1652cd5df0136a40fda44db7..0ce41923255fe89195fa0c803cd151077ff6021a 100644 --- a/obj/AvoidNode.h +++ b/obj/AvoidNode.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _AVOIDNODE_H_ #define _AVOIDNODE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include AVOID_NODE_INCLUDE /* diff --git a/obj/BSBound.h b/obj/BSBound.h index d8b7e66789a5182d51d0ebdd68bef7f8c785c7cd..97df9911656a4638fdff47a5182cc6efc59f4fac 100644 --- a/obj/BSBound.h +++ b/obj/BSBound.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BSBOUND_H_ #define _BSBOUND_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include B_S_BOUND_INCLUDE /* diff --git a/obj/BSFurnitureMarker.h b/obj/BSFurnitureMarker.h index 0f8c8939be6cb9be6819f3c120d22aaebc8bf5e3..70f977e049efd3ddbf35cead9f10cd9ada12dd4a 100644 --- a/obj/BSFurnitureMarker.h +++ b/obj/BSFurnitureMarker.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BSFURNITUREMARKER_H_ #define _BSFURNITUREMARKER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include B_S_FURNITURE_MARKER_INCLUDE /* diff --git a/obj/BSKeyframeController.h b/obj/BSKeyframeController.h index 81be279826ae591df6546e378ce9e56f41e17258..ff1148cdf72047bb9d54800f670e863501f13d70 100644 --- a/obj/BSKeyframeController.h +++ b/obj/BSKeyframeController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BSKEYFRAMECONTROLLER_H_ #define _BSKEYFRAMECONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include B_S_KEYFRAME_CONTROLLER_INCLUDE /* diff --git a/obj/BSPSysArrayEmitter.h b/obj/BSPSysArrayEmitter.h index 8e3f131f582bf4a68ca06db248d2a6d8bcd394fc..540534e20c874b8ee9b8317002bef9b59f426f15 100644 --- a/obj/BSPSysArrayEmitter.h +++ b/obj/BSPSysArrayEmitter.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BSPSYSARRAYEMITTER_H_ #define _BSPSYSARRAYEMITTER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include B_S_P_SYS_ARRAY_EMITTER_INCLUDE /* diff --git a/obj/BSParentVelocityModifier.h b/obj/BSParentVelocityModifier.h index f6ba99ffa48b1e23dd40c19e96a2b436922b3546..38d659ea08da7fa0257dc77b9c60e132176664e4 100644 --- a/obj/BSParentVelocityModifier.h +++ b/obj/BSParentVelocityModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BSPARENTVELOCITYMODIFIER_H_ #define _BSPARENTVELOCITYMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include B_S_PARENT_VELOCITY_MODIFIER_INCLUDE /* diff --git a/obj/BSXFlags.h b/obj/BSXFlags.h index bd7c6f2c79f7e00fea37d6dfb0ae365c3f4e9460..cd2125c994cc82aa3cb98baf44fcc6d2477a21b0 100644 --- a/obj/BSXFlags.h +++ b/obj/BSXFlags.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BSXFLAGS_H_ #define _BSXFLAGS_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include B_S_X_FLAGS_INCLUDE /* diff --git a/obj/FxButton.h b/obj/FxButton.h index ed67c2cface518e5c0462672475776ce09853379..08f91ad53fd88cf67d86a9addb0909516f3ae023 100644 --- a/obj/FxButton.h +++ b/obj/FxButton.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _FXBUTTON_H_ #define _FXBUTTON_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include FX_BUTTON_INCLUDE /* diff --git a/obj/FxRadioButton.h b/obj/FxRadioButton.h index b5acc826205cb665abea3c83d160d7f2d2f6d937..406dc94816282938cde107b3846430bfa3618889 100644 --- a/obj/FxRadioButton.h +++ b/obj/FxRadioButton.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _FXRADIOBUTTON_H_ #define _FXRADIOBUTTON_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include FX_RADIO_BUTTON_INCLUDE /* diff --git a/obj/FxWidget.h b/obj/FxWidget.h index 8d45e2492aca60ab716ede1fe3b2ef46e1fca37d..9be4551c5ceedb663726b16fb0eb158cb7f50262 100644 --- a/obj/FxWidget.h +++ b/obj/FxWidget.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _FXWIDGET_H_ #define _FXWIDGET_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include FX_WIDGET_INCLUDE /* diff --git a/obj/NiAVObject.h b/obj/NiAVObject.h index 1eee1d5c941392db85630d2da187871a489d78bf..c69be0da6913e12908325da341067270bf59c101 100644 --- a/obj/NiAVObject.h +++ b/obj/NiAVObject.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIAVOBJECT_H_ #define _NIAVOBJECT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_A_V_OBJECT_INCLUDE /* diff --git a/obj/NiAlphaController.h b/obj/NiAlphaController.h index 2b0f86a683c5e43ab6bca4a6c00d02afbb1bb838..226a5841f456b199b39b6c09062064fd22b69bb4 100644 --- a/obj/NiAlphaController.h +++ b/obj/NiAlphaController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIALPHACONTROLLER_H_ #define _NIALPHACONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_ALPHA_CONTROLLER_INCLUDE /* diff --git a/obj/NiAlphaProperty.h b/obj/NiAlphaProperty.h index 95b9735a83c0bd514d47db5ba78a41a2d9821fd6..e61e28400facf132de6dbdd619f6fe1bcb11fef2 100644 --- a/obj/NiAlphaProperty.h +++ b/obj/NiAlphaProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIALPHAPROPERTY_H_ #define _NIALPHAPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_ALPHA_PROPERTY_INCLUDE /* diff --git a/obj/NiAmbientLight.h b/obj/NiAmbientLight.h index 56d2b34075892cbfceb3dd5449314ded836a8c9a..904af4e9400ed709ad8da2734830ef19d10f9c29 100644 --- a/obj/NiAmbientLight.h +++ b/obj/NiAmbientLight.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIAMBIENTLIGHT_H_ #define _NIAMBIENTLIGHT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_AMBIENT_LIGHT_INCLUDE /* diff --git a/obj/NiAutoNormalParticles.h b/obj/NiAutoNormalParticles.h index 0a491854acc366c68e1a2cd006a769c58c68a956..16900c4a543f0eafdf82828edcf51634a6f5497f 100644 --- a/obj/NiAutoNormalParticles.h +++ b/obj/NiAutoNormalParticles.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIAUTONORMALPARTICLES_H_ #define _NIAUTONORMALPARTICLES_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_AUTO_NORMAL_PARTICLES_INCLUDE /* diff --git a/obj/NiAutoNormalParticlesData.h b/obj/NiAutoNormalParticlesData.h index 9ea6ee7949a28ddbab7aed75f9fcec5b12eabc2b..23da7b6e445209e53c706eb73bb8d30b53207463 100644 --- a/obj/NiAutoNormalParticlesData.h +++ b/obj/NiAutoNormalParticlesData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIAUTONORMALPARTICLESDATA_H_ #define _NIAUTONORMALPARTICLESDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_AUTO_NORMAL_PARTICLES_DATA_INCLUDE /* diff --git a/obj/NiBSAnimationNode.h b/obj/NiBSAnimationNode.h index 1c843c10b0b9cce1d7816f28e46ef89b05af893b..0ef43fe911403643f69d07a5e940cd1124b4a06f 100644 --- a/obj/NiBSAnimationNode.h +++ b/obj/NiBSAnimationNode.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBSANIMATIONNODE_H_ #define _NIBSANIMATIONNODE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_B_S_ANIMATION_NODE_INCLUDE /* diff --git a/obj/NiBSBoneLODController.h b/obj/NiBSBoneLODController.h index 297124cbeda14cc85cedb55cd793e8958c3a73d0..318076c0c9b193a278c333ffd1b0386465661933 100644 --- a/obj/NiBSBoneLODController.h +++ b/obj/NiBSBoneLODController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBSBONELODCONTROLLER_H_ #define _NIBSBONELODCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_B_S_BONE_L_O_D_CONTROLLER_INCLUDE /* diff --git a/obj/NiBSPArrayController.h b/obj/NiBSPArrayController.h index ca4cb7cbf9d06a70ee390a02f8eafb95519392b8..d67e6432d4c0b48aa5615f0efd9d93afbbe2e1e0 100644 --- a/obj/NiBSPArrayController.h +++ b/obj/NiBSPArrayController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBSPARRAYCONTROLLER_H_ #define _NIBSPARRAYCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_B_S_P_ARRAY_CONTROLLER_INCLUDE /* diff --git a/obj/NiBSParticleNode.h b/obj/NiBSParticleNode.h index 03d7c8029475db2e1f597abff9f68756df15a89a..d88f8fb594378033e082fe51bf05fb72e96b174e 100644 --- a/obj/NiBSParticleNode.h +++ b/obj/NiBSParticleNode.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBSPARTICLENODE_H_ #define _NIBSPARTICLENODE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_B_S_PARTICLE_NODE_INCLUDE /* diff --git a/obj/NiBSplineBasisData.h b/obj/NiBSplineBasisData.h index 4faa427fdd6c7621db50534c19ad5f0df26993ac..71fcdf938c860c42e80bab951097e4a7973ae150 100644 --- a/obj/NiBSplineBasisData.h +++ b/obj/NiBSplineBasisData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBSPLINEBASISDATA_H_ #define _NIBSPLINEBASISDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_B_SPLINE_BASIS_DATA_INCLUDE /* diff --git a/obj/NiBSplineCompFloatInterpolator.h b/obj/NiBSplineCompFloatInterpolator.h index 1514e3ecb2091523218a4926ab67d32e72ad2571..cbd1ecac09f8c3fb42c7163638aa819eb7ec2a15 100644 --- a/obj/NiBSplineCompFloatInterpolator.h +++ b/obj/NiBSplineCompFloatInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBSPLINECOMPFLOATINTERPOLATOR_H_ #define _NIBSPLINECOMPFLOATINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_B_SPLINE_COMP_FLOAT_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiBSplineCompPoint3Interpolator.h b/obj/NiBSplineCompPoint3Interpolator.h index a7117b31f9b36727bb291860397fe98617e4fd2e..2b14e1e6bfd39cf8b86a10ee18a87cd07cb7c2e6 100644 --- a/obj/NiBSplineCompPoint3Interpolator.h +++ b/obj/NiBSplineCompPoint3Interpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBSPLINECOMPPOINT3INTERPOLATOR_H_ #define _NIBSPLINECOMPPOINT3INTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_B_SPLINE_COMP_POINT3_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiBSplineCompTransformInterpolator.h b/obj/NiBSplineCompTransformInterpolator.h index dc64647f754fa3f398e38030be5a8c6cc6d44bf9..f42738ca353ea8148e07e3aaa6713f6786eea20a 100644 --- a/obj/NiBSplineCompTransformInterpolator.h +++ b/obj/NiBSplineCompTransformInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBSPLINECOMPTRANSFORMINTERPOLATOR_H_ #define _NIBSPLINECOMPTRANSFORMINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_B_SPLINE_COMP_TRANSFORM_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiBSplineData.h b/obj/NiBSplineData.h index 59ca0af5e82704dc8d10467779f6d17e9b1d9a78..23a0166145780b9ba15bbf6a4e237c89607cbd60 100644 --- a/obj/NiBSplineData.h +++ b/obj/NiBSplineData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBSPLINEDATA_H_ #define _NIBSPLINEDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_B_SPLINE_DATA_INCLUDE /* diff --git a/obj/NiBSplineInterpolator.h b/obj/NiBSplineInterpolator.h index 9b887bf6d962308966b00d03e39f209f116ccd3e..34e95cfcfbc5026ff35e810f3b753a7f0bc2b976 100644 --- a/obj/NiBSplineInterpolator.h +++ b/obj/NiBSplineInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBSPLINEINTERPOLATOR_H_ #define _NIBSPLINEINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_B_SPLINE_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiBillboardNode.h b/obj/NiBillboardNode.h index 5cbcd89d09cdf0b24d8c5c73ed120f43ac1c7dcc..065da94198a3e623d0dbcb054f8f8170995f9a61 100644 --- a/obj/NiBillboardNode.h +++ b/obj/NiBillboardNode.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBILLBOARDNODE_H_ #define _NIBILLBOARDNODE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BILLBOARD_NODE_INCLUDE /* diff --git a/obj/NiBinaryExtraData.h b/obj/NiBinaryExtraData.h index 8bc84c3c0a7b1561a2ba4905e81a055ac4d04b16..48ac9f162b369d2ea332cf582540de3b8d55176c 100644 --- a/obj/NiBinaryExtraData.h +++ b/obj/NiBinaryExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBINARYEXTRADATA_H_ #define _NIBINARYEXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BINARY_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiBlendBoolInterpolator.h b/obj/NiBlendBoolInterpolator.h index 7251878499123276bf7546482f2915f82deb704e..33f5af01dd77a05d7166f68d06c4fb3921b0938c 100644 --- a/obj/NiBlendBoolInterpolator.h +++ b/obj/NiBlendBoolInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBLENDBOOLINTERPOLATOR_H_ #define _NIBLENDBOOLINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BLEND_BOOL_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiBlendFloatInterpolator.h b/obj/NiBlendFloatInterpolator.h index 4c4b2e3d0e4097fdb4689ee15de23c6785962fe0..e51cabb36db09b4c69cc98735c5ab4fc08a54cef 100644 --- a/obj/NiBlendFloatInterpolator.h +++ b/obj/NiBlendFloatInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBLENDFLOATINTERPOLATOR_H_ #define _NIBLENDFLOATINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BLEND_FLOAT_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiBlendInterpolator.h b/obj/NiBlendInterpolator.h index 2060ef25ac1cbfe5705c7f59cad9bbfdecbb7690..029ec4839c3934979733957326352ead2981647b 100644 --- a/obj/NiBlendInterpolator.h +++ b/obj/NiBlendInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBLENDINTERPOLATOR_H_ #define _NIBLENDINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BLEND_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiBlendPoint3Interpolator.h b/obj/NiBlendPoint3Interpolator.h index c3cdb09cc2722385b2803023048ece14e7e1a065..90de087cd76253d36156199cf2561b003393e7d1 100644 --- a/obj/NiBlendPoint3Interpolator.h +++ b/obj/NiBlendPoint3Interpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBLENDPOINT3INTERPOLATOR_H_ #define _NIBLENDPOINT3INTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BLEND_POINT3_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiBlendTransformInterpolator.h b/obj/NiBlendTransformInterpolator.h index a3664341f3ade7a4d5c33de2158fb3a3ff393018..a8644c8457689d565319165529f0bfbdb5761988 100644 --- a/obj/NiBlendTransformInterpolator.h +++ b/obj/NiBlendTransformInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBLENDTRANSFORMINTERPOLATOR_H_ #define _NIBLENDTRANSFORMINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BLEND_TRANSFORM_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiBoneLODController.h b/obj/NiBoneLODController.h index 076ad27dd643062c89748a882ce8966e760bb951..a6620b8b82a0087e811f3d7ef6c2727973b02d04 100644 --- a/obj/NiBoneLODController.h +++ b/obj/NiBoneLODController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBONELODCONTROLLER_H_ #define _NIBONELODCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BONE_L_O_D_CONTROLLER_INCLUDE /* diff --git a/obj/NiBoolData.h b/obj/NiBoolData.h index 4cb10367f15a0c4eb7ab4a820dc4d65a86bb9cc8..6d460e6b72a04a5e255aa21641a28d5e10c1e9e7 100644 --- a/obj/NiBoolData.h +++ b/obj/NiBoolData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBOOLDATA_H_ #define _NIBOOLDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BOOL_DATA_INCLUDE /* diff --git a/obj/NiBoolInterpolator.h b/obj/NiBoolInterpolator.h index 8079e9901b88308d640d763d0e8c761dd554dd8e..91a286606c37c916d8c62b83f299cac814521fb6 100644 --- a/obj/NiBoolInterpolator.h +++ b/obj/NiBoolInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBOOLINTERPOLATOR_H_ #define _NIBOOLINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BOOL_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiBoolTimelineInterpolator.h b/obj/NiBoolTimelineInterpolator.h index 738263a4877432efa93f7ed66ccc75d96ccea254..d932cd3cd81000a2b612a7ac339d6d0e8d5bc7d8 100644 --- a/obj/NiBoolTimelineInterpolator.h +++ b/obj/NiBoolTimelineInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBOOLTIMELINEINTERPOLATOR_H_ #define _NIBOOLTIMELINEINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BOOL_TIMELINE_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiBooleanExtraData.h b/obj/NiBooleanExtraData.h index d26a2eb50659c0855783e683de8cb204804a10dd..0043b25fcd044ca1e19e88fe0012fcd594bc120a 100644 --- a/obj/NiBooleanExtraData.h +++ b/obj/NiBooleanExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIBOOLEANEXTRADATA_H_ #define _NIBOOLEANEXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_BOOLEAN_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiCamera.h b/obj/NiCamera.h index d480a43986ba1c659ad03e81b59369145e9ee564..72f9be44a298359219f6c3d6dca582c93ed23593 100644 --- a/obj/NiCamera.h +++ b/obj/NiCamera.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NICAMERA_H_ #define _NICAMERA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_CAMERA_INCLUDE /* diff --git a/obj/NiCollisionData.h b/obj/NiCollisionData.h index 7b3124e18058fac29bb0bf74306431f987a095a0..4ef013ed178cb20ee4d2279d84a085c8d046953f 100644 --- a/obj/NiCollisionData.h +++ b/obj/NiCollisionData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NICOLLISIONDATA_H_ #define _NICOLLISIONDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_COLLISION_DATA_INCLUDE /* diff --git a/obj/NiCollisionObject.h b/obj/NiCollisionObject.h index 3a57ef22df60457bed17c82419e386c5bced475c..0edd7f8b050927d7d5185635c6c537af8cabe7de 100644 --- a/obj/NiCollisionObject.h +++ b/obj/NiCollisionObject.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NICOLLISIONOBJECT_H_ #define _NICOLLISIONOBJECT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_COLLISION_OBJECT_INCLUDE /* diff --git a/obj/NiColorData.h b/obj/NiColorData.h index 524a33464e07304b196cbd04d4584dcc81eb5f5f..9337539528dca7f826592fb99be29009bb149dc4 100644 --- a/obj/NiColorData.h +++ b/obj/NiColorData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NICOLORDATA_H_ #define _NICOLORDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_COLOR_DATA_INCLUDE /* diff --git a/obj/NiColorExtraData.h b/obj/NiColorExtraData.h index b3723598e3062dcef0812ea270e5a3b4e3a4624e..8b98f6cad753f9c5abc89bf29a2501d00e98ef08 100644 --- a/obj/NiColorExtraData.h +++ b/obj/NiColorExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NICOLOREXTRADATA_H_ #define _NICOLOREXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_COLOR_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiControllerManager.h b/obj/NiControllerManager.h index 7f60f6620f96117109623968821b5ddc334f0386..6835fef76e75df1f489c61a1923acdc5f11710e5 100644 --- a/obj/NiControllerManager.h +++ b/obj/NiControllerManager.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NICONTROLLERMANAGER_H_ #define _NICONTROLLERMANAGER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_CONTROLLER_MANAGER_INCLUDE /* diff --git a/obj/NiControllerSequence.h b/obj/NiControllerSequence.h index 2c20b0bf8037a119167eff1b7b0075033ff6199a..75c9e19148e4a682dc86983c8feeb1affd82426b 100644 --- a/obj/NiControllerSequence.h +++ b/obj/NiControllerSequence.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NICONTROLLERSEQUENCE_H_ #define _NICONTROLLERSEQUENCE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_CONTROLLER_SEQUENCE_INCLUDE /* diff --git a/obj/NiDefaultAVObjectPalette.h b/obj/NiDefaultAVObjectPalette.h index 9a6b98021ffe6e673b9495d717909224be63234a..fe6db48fa8804028a2bbc9218b742aee1dc9c48b 100644 --- a/obj/NiDefaultAVObjectPalette.h +++ b/obj/NiDefaultAVObjectPalette.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIDEFAULTAVOBJECTPALETTE_H_ #define _NIDEFAULTAVOBJECTPALETTE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_DEFAULT_A_V_OBJECT_PALETTE_INCLUDE /* diff --git a/obj/NiDirectionalLight.h b/obj/NiDirectionalLight.h index d9af432f6c97d343757977370d9b25bc1ec33594..d2694bbb72467c38c06fc27c35eeaa5ca411d7f7 100644 --- a/obj/NiDirectionalLight.h +++ b/obj/NiDirectionalLight.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIDIRECTIONALLIGHT_H_ #define _NIDIRECTIONALLIGHT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_DIRECTIONAL_LIGHT_INCLUDE /* diff --git a/obj/NiDitherProperty.h b/obj/NiDitherProperty.h index baaa5095d95328c11864e0ee1d7d5e96ed939bc6..c1b57c2556eb53693cd3a4fc4b4da36337260273 100644 --- a/obj/NiDitherProperty.h +++ b/obj/NiDitherProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIDITHERPROPERTY_H_ #define _NIDITHERPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_DITHER_PROPERTY_INCLUDE /* diff --git a/obj/NiDynamicEffect.h b/obj/NiDynamicEffect.h index e5ce766126da6cb4a926a9a4d3c7c0dadfbaa162..713f7ba5a018521ec5103169ec8b93beb24bcd05 100644 --- a/obj/NiDynamicEffect.h +++ b/obj/NiDynamicEffect.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIDYNAMICEFFECT_H_ #define _NIDYNAMICEFFECT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_DYNAMIC_EFFECT_INCLUDE /* diff --git a/obj/NiExtraData.h b/obj/NiExtraData.h index b4ffa7227e1a67e32b90412f0690cce4772ad57c..c18c002e2c163d9c9107d73fb57043d923e78e6e 100644 --- a/obj/NiExtraData.h +++ b/obj/NiExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIEXTRADATA_H_ #define _NIEXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiFlipController.h b/obj/NiFlipController.h index 17b23150256fdb5f297ddcfa0032f741d29371a5..1d731c6b73be73a3b355a843f377b687489120b0 100644 --- a/obj/NiFlipController.h +++ b/obj/NiFlipController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIFLIPCONTROLLER_H_ #define _NIFLIPCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_FLIP_CONTROLLER_INCLUDE /* diff --git a/obj/NiFloatData.h b/obj/NiFloatData.h index 296533675bf3067abf5ff9385fd9444620b6ad39..4e2e4b9c6c013d3118274b34c03b9c57622ebe1b 100644 --- a/obj/NiFloatData.h +++ b/obj/NiFloatData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIFLOATDATA_H_ #define _NIFLOATDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_FLOAT_DATA_INCLUDE /* diff --git a/obj/NiFloatExtraData.h b/obj/NiFloatExtraData.h index 4c60bc0d64f9c2c2211a64eb1f6499f2523347de..6657cc7a78bfd05b533f89f04fdd36efa4b0cbe7 100644 --- a/obj/NiFloatExtraData.h +++ b/obj/NiFloatExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIFLOATEXTRADATA_H_ #define _NIFLOATEXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_FLOAT_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiFloatExtraDataController.h b/obj/NiFloatExtraDataController.h index 2990d7d277c7aae67ec5fd2844109c64e02404f3..a72c60ebf11b5fffcd12f2f640dcb5c5c61c408f 100644 --- a/obj/NiFloatExtraDataController.h +++ b/obj/NiFloatExtraDataController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIFLOATEXTRADATACONTROLLER_H_ #define _NIFLOATEXTRADATACONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_FLOAT_EXTRA_DATA_CONTROLLER_INCLUDE /* diff --git a/obj/NiFloatInterpolator.h b/obj/NiFloatInterpolator.h index b834578970f161b087f702b28be66e4ca81be243..b116373fdaec02111ede7f484cd74110f97cd152 100644 --- a/obj/NiFloatInterpolator.h +++ b/obj/NiFloatInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIFLOATINTERPOLATOR_H_ #define _NIFLOATINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_FLOAT_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiFloatsExtraData.h b/obj/NiFloatsExtraData.h index f5129e0590ef75139ec9a5f84884e904e7ce16e1..3202b9c536c6ca2a120db8a8fdd268e3562ce5ce 100644 --- a/obj/NiFloatsExtraData.h +++ b/obj/NiFloatsExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIFLOATSEXTRADATA_H_ #define _NIFLOATSEXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_FLOATS_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiFogProperty.h b/obj/NiFogProperty.h index 6900d3ffd052d28d82b699a770ad50a23e43b819..23c6b5546542b48e6a0f4a336362da4b745371d3 100644 --- a/obj/NiFogProperty.h +++ b/obj/NiFogProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIFOGPROPERTY_H_ #define _NIFOGPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_FOG_PROPERTY_INCLUDE /* diff --git a/obj/NiGeomMorpherController.h b/obj/NiGeomMorpherController.h index a0d63e40bf796c6fb291db5d81de3cb2080ed51e..df116b5b558aca9c786fc78b427822b55e8e2f2d 100644 --- a/obj/NiGeomMorpherController.h +++ b/obj/NiGeomMorpherController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIGEOMMORPHERCONTROLLER_H_ #define _NIGEOMMORPHERCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_GEOM_MORPHER_CONTROLLER_INCLUDE /* diff --git a/obj/NiGravity.h b/obj/NiGravity.h index 05c131b8e01ae661879cc16feb3b7b61bbf790e4..433cdf0372e1ce88f1348978ea0855da7a32db93 100644 --- a/obj/NiGravity.h +++ b/obj/NiGravity.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIGRAVITY_H_ #define _NIGRAVITY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_GRAVITY_INCLUDE /* diff --git a/obj/NiIntegerExtraData.h b/obj/NiIntegerExtraData.h index 6825a69d3f67215cb232ca7be0916609e2ae2836..e3152e63e7ca94b9319f292947c37ef3dfc7683a 100644 --- a/obj/NiIntegerExtraData.h +++ b/obj/NiIntegerExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIINTEGEREXTRADATA_H_ #define _NIINTEGEREXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_INTEGER_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiIntegersExtraData.h b/obj/NiIntegersExtraData.h index a3beb6bf586ee9db8173cefb0fff1602ad699b43..6fe72ab7b02eab9bf8a28f8a75224c26227384c1 100644 --- a/obj/NiIntegersExtraData.h +++ b/obj/NiIntegersExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIINTEGERSEXTRADATA_H_ #define _NIINTEGERSEXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_INTEGERS_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiInterpolator.h b/obj/NiInterpolator.h index 0e63601436079c77e773d30f1e86f7e98adf9020..09ccec4f55592223dd5f0b0dbde3fcd049baf981 100644 --- a/obj/NiInterpolator.h +++ b/obj/NiInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIINTERPOLATOR_H_ #define _NIINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiKeyframeController.h b/obj/NiKeyframeController.h index 74366c72e86cdadbd2b25812479e181fb5d2e45a..1578d7af37f52d79ac7ba1a6ec32a0a38a3f7998 100644 --- a/obj/NiKeyframeController.h +++ b/obj/NiKeyframeController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIKEYFRAMECONTROLLER_H_ #define _NIKEYFRAMECONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_KEYFRAME_CONTROLLER_INCLUDE /* diff --git a/obj/NiKeyframeData.h b/obj/NiKeyframeData.h index 0bd678905c3b43f1268df40f3e7c0aa1964c5ca8..d04b7363d5e8787ddaf6f0bab02b490b66cc330d 100644 --- a/obj/NiKeyframeData.h +++ b/obj/NiKeyframeData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIKEYFRAMEDATA_H_ #define _NIKEYFRAMEDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_KEYFRAME_DATA_INCLUDE /* diff --git a/obj/NiLODNode.h b/obj/NiLODNode.h index bc7913a71fd5ae4fab4b6f42f5a1fd8436d9f379..0a93cce9025d0799e00b5ad1e36496e1816275ce 100644 --- a/obj/NiLODNode.h +++ b/obj/NiLODNode.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NILODNODE_H_ #define _NILODNODE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_L_O_D_NODE_INCLUDE /* diff --git a/obj/NiLight.h b/obj/NiLight.h index 28eb8b5e287859010ff6798cd088be85e3f0976f..5bc5c6523bdec6362241dda86376a43bd77908f5 100644 --- a/obj/NiLight.h +++ b/obj/NiLight.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NILIGHT_H_ #define _NILIGHT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_LIGHT_INCLUDE /* diff --git a/obj/NiLightColorController.h b/obj/NiLightColorController.h index dc0ff09f8c888b215332d8533df9a4aa62528d89..e9606272b0a8e7b826fb1d1f1f583d022cdd58ce 100644 --- a/obj/NiLightColorController.h +++ b/obj/NiLightColorController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NILIGHTCOLORCONTROLLER_H_ #define _NILIGHTCOLORCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_LIGHT_COLOR_CONTROLLER_INCLUDE /* diff --git a/obj/NiLightDimmerController.h b/obj/NiLightDimmerController.h index 3a69464a406251c772b7e9707afe148479b2e22a..74b2d6be84483ee309cfa870d4e152c808332283 100644 --- a/obj/NiLightDimmerController.h +++ b/obj/NiLightDimmerController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NILIGHTDIMMERCONTROLLER_H_ #define _NILIGHTDIMMERCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_LIGHT_DIMMER_CONTROLLER_INCLUDE /* diff --git a/obj/NiLookAtController.h b/obj/NiLookAtController.h index 4ca230d5cb3749fa8013b08c98060c99636e97a4..01b435136bd38f45af861c9660b3bbf420bf58ae 100644 --- a/obj/NiLookAtController.h +++ b/obj/NiLookAtController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NILOOKATCONTROLLER_H_ #define _NILOOKATCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_LOOK_AT_CONTROLLER_INCLUDE /* diff --git a/obj/NiLookAtInterpolator.h b/obj/NiLookAtInterpolator.h index a4c7db0db53b227358e0a07a1f8ea23972662638..54d247f0e92aca7bcf9be8114f481c9fe3c3e3c3 100644 --- a/obj/NiLookAtInterpolator.h +++ b/obj/NiLookAtInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NILOOKATINTERPOLATOR_H_ #define _NILOOKATINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_LOOK_AT_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiMaterialColorController.h b/obj/NiMaterialColorController.h index 25d11d9a2e2f70f528643e438da2bf2af0f4574c..721a1f338b0792dbffbfcc0168b7516c913b5453 100644 --- a/obj/NiMaterialColorController.h +++ b/obj/NiMaterialColorController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIMATERIALCOLORCONTROLLER_H_ #define _NIMATERIALCOLORCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_MATERIAL_COLOR_CONTROLLER_INCLUDE /* diff --git a/obj/NiMaterialProperty.h b/obj/NiMaterialProperty.h index 10141d9409daf3940853f318f3e64bc2929f405c..c92670e88b61a79144683c68f7cec3efb3200569 100644 --- a/obj/NiMaterialProperty.h +++ b/obj/NiMaterialProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIMATERIALPROPERTY_H_ #define _NIMATERIALPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_MATERIAL_PROPERTY_INCLUDE /* diff --git a/obj/NiMeshPSysData.h b/obj/NiMeshPSysData.h index bc21f854559a75295f3b190cc1b1953065c60ee1..6530f77a7ee3f147a854fd3c104035b450e58c90 100644 --- a/obj/NiMeshPSysData.h +++ b/obj/NiMeshPSysData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIMESHPSYSDATA_H_ #define _NIMESHPSYSDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_MESH_P_SYS_DATA_INCLUDE /* diff --git a/obj/NiMeshParticleSystem.h b/obj/NiMeshParticleSystem.h index faa88934c9303766068467ed7299c42ea2ea05ef..1075278194b779d84aeceb82e8735d03009b2451 100644 --- a/obj/NiMeshParticleSystem.h +++ b/obj/NiMeshParticleSystem.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIMESHPARTICLESYSTEM_H_ #define _NIMESHPARTICLESYSTEM_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_MESH_PARTICLE_SYSTEM_INCLUDE /* diff --git a/obj/NiMorphData.h b/obj/NiMorphData.h index c1c78586f4ab04cdfcbaf08c4a88aeb15a7ccad2..4f33553cfde646a322b0ae6ef47844c9fba350a4 100644 --- a/obj/NiMorphData.h +++ b/obj/NiMorphData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIMORPHDATA_H_ #define _NIMORPHDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_MORPH_DATA_INCLUDE /* diff --git a/obj/NiMultiTargetTransformController.h b/obj/NiMultiTargetTransformController.h index f0ca9f5a70c137ac906c9eee0d8a5443f1ec711f..9a69900ba3d75e7aadcea9fec7629f175b58e0bf 100644 --- a/obj/NiMultiTargetTransformController.h +++ b/obj/NiMultiTargetTransformController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIMULTITARGETTRANSFORMCONTROLLER_H_ #define _NIMULTITARGETTRANSFORMCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_MULTI_TARGET_TRANSFORM_CONTROLLER_INCLUDE /* diff --git a/obj/NiNode.h b/obj/NiNode.h index d3db19114c389176ae5d24cbef976da84eb9a3e5..b17f4b3eaac05eb9261999f5b50bb5819b0232a9 100644 --- a/obj/NiNode.h +++ b/obj/NiNode.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NINODE_H_ #define _NINODE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_NODE_INCLUDE /* diff --git a/obj/NiObject.h b/obj/NiObject.h index 83452b3b0308a3160a71c8f7860fa7a30828524e..ecea0262bb8116f47cf2ac0f7e3b2cdebe8a8995 100644 --- a/obj/NiObject.h +++ b/obj/NiObject.h @@ -15,7 +15,7 @@ All rights reserved. Please see niflib.h for licence. */ #include "NIF_IO.h" #include "Ref.h" #include "Type.h" -#include "xml_extract.h" +#include "gen/obj_defines.h" using namespace std; diff --git a/obj/NiObjectNET.h b/obj/NiObjectNET.h index d571a7a021aae21329c07b494c4f197350530db0..fe9109f46fba50fa14f8c44e5b583fe3d9f1d226 100644 --- a/obj/NiObjectNET.h +++ b/obj/NiObjectNET.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIOBJECTNET_H_ #define _NIOBJECTNET_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_OBJECT_N_E_T_INCLUDE /* diff --git a/obj/NiPSysAgeDeathModifier.h b/obj/NiPSysAgeDeathModifier.h index 04c9e24555538eeee4024cd47a288f99c7d0d5e0..aa3d01712490ddc249eb9a76e2bcd8be3ef766c8 100644 --- a/obj/NiPSysAgeDeathModifier.h +++ b/obj/NiPSysAgeDeathModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSAGEDEATHMODIFIER_H_ #define _NIPSYSAGEDEATHMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_AGE_DEATH_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysBombModifier.h b/obj/NiPSysBombModifier.h index 6b0fb601dc03eee250d06aaab9d1cb7f0bea1240..c5e1e47666ae255d38010235ed12b7efe913c922 100644 --- a/obj/NiPSysBombModifier.h +++ b/obj/NiPSysBombModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSBOMBMODIFIER_H_ #define _NIPSYSBOMBMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_BOMB_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysBoundUpdateModifier.h b/obj/NiPSysBoundUpdateModifier.h index 77ac0d2372a2f59dc960197b7bc14af4ab587869..b194e857a8a42166e4dc190d332ef6fec994076f 100644 --- a/obj/NiPSysBoundUpdateModifier.h +++ b/obj/NiPSysBoundUpdateModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSBOUNDUPDATEMODIFIER_H_ #define _NIPSYSBOUNDUPDATEMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_BOUND_UPDATE_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysBoxEmitter.h b/obj/NiPSysBoxEmitter.h index d92bd9b072ae31529e5b3518d8d6cbc30e65d328..d02c7e14cedd54dfd7721b4126f1594075d679e3 100644 --- a/obj/NiPSysBoxEmitter.h +++ b/obj/NiPSysBoxEmitter.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSBOXEMITTER_H_ #define _NIPSYSBOXEMITTER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_BOX_EMITTER_INCLUDE /* diff --git a/obj/NiPSysColliderManager.h b/obj/NiPSysColliderManager.h index ad9fdd33709239e72615315c91340a93feabcabd..26e941d385a3cc18f2411c402c437535626c8415 100644 --- a/obj/NiPSysColliderManager.h +++ b/obj/NiPSysColliderManager.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSCOLLIDERMANAGER_H_ #define _NIPSYSCOLLIDERMANAGER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_COLLIDER_MANAGER_INCLUDE /* diff --git a/obj/NiPSysColorModifier.h b/obj/NiPSysColorModifier.h index 1a17930f498edba594307eea0768ee62405459cf..05b2bb622cd85bda9ad1786b1e795471809aaef7 100644 --- a/obj/NiPSysColorModifier.h +++ b/obj/NiPSysColorModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSCOLORMODIFIER_H_ #define _NIPSYSCOLORMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_COLOR_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysCylinderEmitter.h b/obj/NiPSysCylinderEmitter.h index e9dbf125d70b8ef9ccbcb0acf248a6a8f7f3f731..8dbe4ce067469cf09efc553650b110fdb2abe473 100644 --- a/obj/NiPSysCylinderEmitter.h +++ b/obj/NiPSysCylinderEmitter.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSCYLINDEREMITTER_H_ #define _NIPSYSCYLINDEREMITTER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_CYLINDER_EMITTER_INCLUDE /* diff --git a/obj/NiPSysData.h b/obj/NiPSysData.h index 074caa20a362ceffd9326193e547265bcc706551..4c6e076d5f69b44e7409902392adedd252979517 100644 --- a/obj/NiPSysData.h +++ b/obj/NiPSysData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSDATA_H_ #define _NIPSYSDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_DATA_INCLUDE /* diff --git a/obj/NiPSysDragModifier.h b/obj/NiPSysDragModifier.h index 74ff091662eecc195f0cfa08100d73e14881a0cc..06e15f2c38e22d939d614eb8f4d2ef61c7e6d628 100644 --- a/obj/NiPSysDragModifier.h +++ b/obj/NiPSysDragModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSDRAGMODIFIER_H_ #define _NIPSYSDRAGMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_DRAG_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysEmitter.h b/obj/NiPSysEmitter.h index d426a0b1c9bdd636f2f8e4dbf69988776aa357cf..b961a667db5173ecf5a29f9fd19cda72d1c2a2fc 100644 --- a/obj/NiPSysEmitter.h +++ b/obj/NiPSysEmitter.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSEMITTER_H_ #define _NIPSYSEMITTER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_EMITTER_INCLUDE /* diff --git a/obj/NiPSysEmitterCtlr.h b/obj/NiPSysEmitterCtlr.h index 6ade1d003e73b5e753eb0be279ee7256478bf3bc..9af3e3be8166401fe07181bd7c1d91d780384f31 100644 --- a/obj/NiPSysEmitterCtlr.h +++ b/obj/NiPSysEmitterCtlr.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSEMITTERCTLR_H_ #define _NIPSYSEMITTERCTLR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_EMITTER_CTLR_INCLUDE /* diff --git a/obj/NiPSysEmitterCtlrData.h b/obj/NiPSysEmitterCtlrData.h index cfa39a789b665e55138a6f32d4ce23a3152bf115..30901a8058d7bb0ed438e0f04b017c8231e9f70b 100644 --- a/obj/NiPSysEmitterCtlrData.h +++ b/obj/NiPSysEmitterCtlrData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSEMITTERCTLRDATA_H_ #define _NIPSYSEMITTERCTLRDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_EMITTER_CTLR_DATA_INCLUDE /* diff --git a/obj/NiPSysEmitterDeclinationCtlr.h b/obj/NiPSysEmitterDeclinationCtlr.h index 09c9b08e9af17201223b20e2da07aaf47e93d83e..311a6b7e73d414b307a69734e49ff0eace1b8505 100644 --- a/obj/NiPSysEmitterDeclinationCtlr.h +++ b/obj/NiPSysEmitterDeclinationCtlr.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSEMITTERDECLINATIONCTLR_H_ #define _NIPSYSEMITTERDECLINATIONCTLR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_EMITTER_DECLINATION_CTLR_INCLUDE /* diff --git a/obj/NiPSysEmitterDeclinationVarCtlr.h b/obj/NiPSysEmitterDeclinationVarCtlr.h index 251a1b2fe1531c2a6037847534636c493c8e575d..e550336104608203ed68108707a2bc1def17e897 100644 --- a/obj/NiPSysEmitterDeclinationVarCtlr.h +++ b/obj/NiPSysEmitterDeclinationVarCtlr.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSEMITTERDECLINATIONVARCTLR_H_ #define _NIPSYSEMITTERDECLINATIONVARCTLR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_EMITTER_DECLINATION_VAR_CTLR_INCLUDE /* diff --git a/obj/NiPSysEmitterInitialRadiusCtlr.h b/obj/NiPSysEmitterInitialRadiusCtlr.h index 473fa1cceb5f6d6c83110800ce71b52fc0fa69ab..19d8b378da130001548ef3d1ea57a95ae60abce0 100644 --- a/obj/NiPSysEmitterInitialRadiusCtlr.h +++ b/obj/NiPSysEmitterInitialRadiusCtlr.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSEMITTERINITIALRADIUSCTLR_H_ #define _NIPSYSEMITTERINITIALRADIUSCTLR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_EMITTER_INITIAL_RADIUS_CTLR_INCLUDE /* diff --git a/obj/NiPSysEmitterLifeSpanCtlr.h b/obj/NiPSysEmitterLifeSpanCtlr.h index 121044bf169f03f9fa406c05fff3dddd848618c6..6cfa8970d28e5d4fae7346989129522b6b4b28dd 100644 --- a/obj/NiPSysEmitterLifeSpanCtlr.h +++ b/obj/NiPSysEmitterLifeSpanCtlr.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSEMITTERLIFESPANCTLR_H_ #define _NIPSYSEMITTERLIFESPANCTLR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_EMITTER_LIFE_SPAN_CTLR_INCLUDE /* diff --git a/obj/NiPSysEmitterSpeedCtlr.h b/obj/NiPSysEmitterSpeedCtlr.h index 7aa0c6cdef206c96323366c007d876231c26e294..4de9958809ff7519fc34f684ca9ff4e12c141d2e 100644 --- a/obj/NiPSysEmitterSpeedCtlr.h +++ b/obj/NiPSysEmitterSpeedCtlr.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSEMITTERSPEEDCTLR_H_ #define _NIPSYSEMITTERSPEEDCTLR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_EMITTER_SPEED_CTLR_INCLUDE /* diff --git a/obj/NiPSysGravityModifier.h b/obj/NiPSysGravityModifier.h index 3392550d004c73f872c537ebcff18d216c38ebeb..7cdab7264095a220b171c6f5d83ac49c0af3b41d 100644 --- a/obj/NiPSysGravityModifier.h +++ b/obj/NiPSysGravityModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSGRAVITYMODIFIER_H_ #define _NIPSYSGRAVITYMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_GRAVITY_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysGravityStrengthCtlr.h b/obj/NiPSysGravityStrengthCtlr.h index b8df3f292847aebf429087c18ac665e73320027d..96a43cf73f5532414c817589ee73c5b2a3ef3f6e 100644 --- a/obj/NiPSysGravityStrengthCtlr.h +++ b/obj/NiPSysGravityStrengthCtlr.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSGRAVITYSTRENGTHCTLR_H_ #define _NIPSYSGRAVITYSTRENGTHCTLR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_GRAVITY_STRENGTH_CTLR_INCLUDE /* diff --git a/obj/NiPSysGrowFadeModifier.h b/obj/NiPSysGrowFadeModifier.h index 0513e54df23e1a174c6cc9e436a6b06c61c23b1c..69865a63b865aa84e8982fa538aedfed34112d6e 100644 --- a/obj/NiPSysGrowFadeModifier.h +++ b/obj/NiPSysGrowFadeModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSGROWFADEMODIFIER_H_ #define _NIPSYSGROWFADEMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_GROW_FADE_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysMeshEmitter.h b/obj/NiPSysMeshEmitter.h index dd440d53f19ebb3f6e5f341ae6d1830a289820d3..40889e783654d21017e670ce5bc95642cd701585 100644 --- a/obj/NiPSysMeshEmitter.h +++ b/obj/NiPSysMeshEmitter.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSMESHEMITTER_H_ #define _NIPSYSMESHEMITTER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_MESH_EMITTER_INCLUDE /* diff --git a/obj/NiPSysMeshUpdateModifier.h b/obj/NiPSysMeshUpdateModifier.h index 820ebe9f8640802af0b1ac692e0fb136661b651f..0177bc66362e33be7dcd95e2626e4466484b9c43 100644 --- a/obj/NiPSysMeshUpdateModifier.h +++ b/obj/NiPSysMeshUpdateModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSMESHUPDATEMODIFIER_H_ #define _NIPSYSMESHUPDATEMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_MESH_UPDATE_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysModifier.h b/obj/NiPSysModifier.h index 0464aa9b98df17bf8eef30de760ccf4d28af33f4..8f6ff00cfc464b208851d63a7e73e0835f56e189 100644 --- a/obj/NiPSysModifier.h +++ b/obj/NiPSysModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSMODIFIER_H_ #define _NIPSYSMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysModifierActiveCtlr.h b/obj/NiPSysModifierActiveCtlr.h index 1625d9ab7ba0cb0d974cffe3033ae7f468683e8d..0c4f7c366409e440bb0a433e276a2ab0f5092d25 100644 --- a/obj/NiPSysModifierActiveCtlr.h +++ b/obj/NiPSysModifierActiveCtlr.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSMODIFIERACTIVECTLR_H_ #define _NIPSYSMODIFIERACTIVECTLR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_MODIFIER_ACTIVE_CTLR_INCLUDE /* diff --git a/obj/NiPSysPlanarCollider.h b/obj/NiPSysPlanarCollider.h index 6058d18976423093215601f6eb23336075bf7c7a..889745557ae4eeeb7f7b6d07f8a0037749a7e1ad 100644 --- a/obj/NiPSysPlanarCollider.h +++ b/obj/NiPSysPlanarCollider.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSPLANARCOLLIDER_H_ #define _NIPSYSPLANARCOLLIDER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_PLANAR_COLLIDER_INCLUDE /* diff --git a/obj/NiPSysPositionModifier.h b/obj/NiPSysPositionModifier.h index a0426f38c8bf38ed31430d243b10f635ed0fe27f..1c5cffaccf94f31ff92bd1bee87431772d7019fb 100644 --- a/obj/NiPSysPositionModifier.h +++ b/obj/NiPSysPositionModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSPOSITIONMODIFIER_H_ #define _NIPSYSPOSITIONMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_POSITION_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysResetOnLoopCtlr.h b/obj/NiPSysResetOnLoopCtlr.h index 1fda6d06b993d5bcb7e1381fd4506989d128a459..7d93020cd8b87ef2ec0be317b924d53f657797f2 100644 --- a/obj/NiPSysResetOnLoopCtlr.h +++ b/obj/NiPSysResetOnLoopCtlr.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSRESETONLOOPCTLR_H_ #define _NIPSYSRESETONLOOPCTLR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_RESET_ON_LOOP_CTLR_INCLUDE /* diff --git a/obj/NiPSysRotationModifier.h b/obj/NiPSysRotationModifier.h index 7d0427f74239a73b4a6af0534ef0f92782fb2e22..09867558cd69a0c34540a7b03f1b83d9723dc59f 100644 --- a/obj/NiPSysRotationModifier.h +++ b/obj/NiPSysRotationModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSROTATIONMODIFIER_H_ #define _NIPSYSROTATIONMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_ROTATION_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysSpawnModifier.h b/obj/NiPSysSpawnModifier.h index 99535d0f2b82cd70aa18cec3921885e2691d76bb..2ff464480de0fae95ce74bc95e7cd9370eb05c4e 100644 --- a/obj/NiPSysSpawnModifier.h +++ b/obj/NiPSysSpawnModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSSPAWNMODIFIER_H_ #define _NIPSYSSPAWNMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_SPAWN_MODIFIER_INCLUDE /* diff --git a/obj/NiPSysSphereEmitter.h b/obj/NiPSysSphereEmitter.h index e1fcfb0f1760b72efb30baa084a6c41029d84108..e548b627cd9519171731d27c8fbb239eab536315 100644 --- a/obj/NiPSysSphereEmitter.h +++ b/obj/NiPSysSphereEmitter.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSSPHEREEMITTER_H_ #define _NIPSYSSPHEREEMITTER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_SPHERE_EMITTER_INCLUDE /* diff --git a/obj/NiPSysUpdateCtlr.h b/obj/NiPSysUpdateCtlr.h index ed54b6ef0b5d4afdf162cd4961b558b3212ddfa7..ec26dc34ebe78519b53c203c12427126e9168ef6 100644 --- a/obj/NiPSysUpdateCtlr.h +++ b/obj/NiPSysUpdateCtlr.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSUPDATECTLR_H_ #define _NIPSYSUPDATECTLR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_UPDATE_CTLR_INCLUDE /* diff --git a/obj/NiPSysVolumeEmitter.h b/obj/NiPSysVolumeEmitter.h index 59c10addd39695e2cce02ffac3207cc1999f11a7..a2cc9bcba685f8dfa80c090d3ec9f5a25822e6a2 100644 --- a/obj/NiPSysVolumeEmitter.h +++ b/obj/NiPSysVolumeEmitter.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPSYSVOLUMEEMITTER_H_ #define _NIPSYSVOLUMEEMITTER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_P_SYS_VOLUME_EMITTER_INCLUDE /* diff --git a/obj/NiPalette.h b/obj/NiPalette.h index 6805d4f89f929f42c39b0c240e11748775857c91..806f5558e8fec2910808e522a761059cf1d623e8 100644 --- a/obj/NiPalette.h +++ b/obj/NiPalette.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPALETTE_H_ #define _NIPALETTE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PALETTE_INCLUDE /* diff --git a/obj/NiParticleBomb.h b/obj/NiParticleBomb.h index 43743c769d831d1b29e65d1317bd906abf4cefb3..6014dae827d04098d1e745a6010ad26c969ae7c1 100644 --- a/obj/NiParticleBomb.h +++ b/obj/NiParticleBomb.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPARTICLEBOMB_H_ #define _NIPARTICLEBOMB_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PARTICLE_BOMB_INCLUDE /* diff --git a/obj/NiParticleColorModifier.h b/obj/NiParticleColorModifier.h index 2bb20433f8efafea7823061994db86e7933a944c..2d649df1156318b21208d6e9310d9d76a9f0ffa1 100644 --- a/obj/NiParticleColorModifier.h +++ b/obj/NiParticleColorModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPARTICLECOLORMODIFIER_H_ #define _NIPARTICLECOLORMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PARTICLE_COLOR_MODIFIER_INCLUDE /* diff --git a/obj/NiParticleGrowFade.h b/obj/NiParticleGrowFade.h index b40c4c462d8dbf82df3821d4d09cb8e20c6b51ce..0d7167b9f84593a0c52669321c84bd2c607e4a06 100644 --- a/obj/NiParticleGrowFade.h +++ b/obj/NiParticleGrowFade.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPARTICLEGROWFADE_H_ #define _NIPARTICLEGROWFADE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PARTICLE_GROW_FADE_INCLUDE /* diff --git a/obj/NiParticleMeshModifier.h b/obj/NiParticleMeshModifier.h index f9cd5c20a95565a1f6b8d8b74f01d7eba01a2f92..12dd3aa1cb922fda50050394805d009879657f15 100644 --- a/obj/NiParticleMeshModifier.h +++ b/obj/NiParticleMeshModifier.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPARTICLEMESHMODIFIER_H_ #define _NIPARTICLEMESHMODIFIER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PARTICLE_MESH_MODIFIER_INCLUDE /* diff --git a/obj/NiParticleMeshes.h b/obj/NiParticleMeshes.h index e3398cb44c2fe50ce945619239199f0d3d95ec99..26381d6e1f8f89dbfb151ea7e70937ee9a6a0cab 100644 --- a/obj/NiParticleMeshes.h +++ b/obj/NiParticleMeshes.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPARTICLEMESHES_H_ #define _NIPARTICLEMESHES_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PARTICLE_MESHES_INCLUDE /* diff --git a/obj/NiParticleMeshesData.h b/obj/NiParticleMeshesData.h index 02577ba5542a3dfefffbe8fdb6c88859c3231345..e30b5f25b24d8afa88ae2402062e1f8c9a5044f8 100644 --- a/obj/NiParticleMeshesData.h +++ b/obj/NiParticleMeshesData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPARTICLEMESHESDATA_H_ #define _NIPARTICLEMESHESDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PARTICLE_MESHES_DATA_INCLUDE /* diff --git a/obj/NiParticleRotation.h b/obj/NiParticleRotation.h index 3d87fa1ebdc9371d753a9702b0d32296213fe5d5..ed6fb36cbf1485ac9eee8b1a853c094c70dcbe36 100644 --- a/obj/NiParticleRotation.h +++ b/obj/NiParticleRotation.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPARTICLEROTATION_H_ #define _NIPARTICLEROTATION_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PARTICLE_ROTATION_INCLUDE /* diff --git a/obj/NiParticleSystem.h b/obj/NiParticleSystem.h index 4919bf6ab217f9342d57f953b00fb450d9d621d2..703cf8e42fe0dd6d708ff2a61215c00a548ae864 100644 --- a/obj/NiParticleSystem.h +++ b/obj/NiParticleSystem.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPARTICLESYSTEM_H_ #define _NIPARTICLESYSTEM_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PARTICLE_SYSTEM_INCLUDE /* diff --git a/obj/NiParticleSystemController.h b/obj/NiParticleSystemController.h index 098d3be7c87930db20cf9e5a710b09fe1349ab73..c5b8107985c9f70ad65e25bf04569d910f24cf03 100644 --- a/obj/NiParticleSystemController.h +++ b/obj/NiParticleSystemController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPARTICLESYSTEMCONTROLLER_H_ #define _NIPARTICLESYSTEMCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PARTICLE_SYSTEM_CONTROLLER_INCLUDE /* diff --git a/obj/NiParticles.h b/obj/NiParticles.h index 065c591c73ebdda4d1f16426fb0c010ce25a841e..95901b930af49801e9cf4597a850eea36f2bd711 100644 --- a/obj/NiParticles.h +++ b/obj/NiParticles.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPARTICLES_H_ #define _NIPARTICLES_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PARTICLES_INCLUDE /* diff --git a/obj/NiParticlesData.h b/obj/NiParticlesData.h index 2dc6bd04da9ede34c2b34808f1e83d9005b73d6e..ac1379a9852548a445c9aa1b856128348116537b 100644 --- a/obj/NiParticlesData.h +++ b/obj/NiParticlesData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPARTICLESDATA_H_ #define _NIPARTICLESDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PARTICLES_DATA_INCLUDE /* diff --git a/obj/NiPathController.h b/obj/NiPathController.h index 0685c85c9adae51798d4178136994cc85d095447..95433d91d82925b032bc7badd9ab276e4ff1d333 100644 --- a/obj/NiPathController.h +++ b/obj/NiPathController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPATHCONTROLLER_H_ #define _NIPATHCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PATH_CONTROLLER_INCLUDE /* diff --git a/obj/NiPathInterpolator.h b/obj/NiPathInterpolator.h index 1a81119a2567bce30cf6fe67b21bf95f9ffc1c88..28a56f33d01513fba78fdd4e62c043d099e9cd5d 100644 --- a/obj/NiPathInterpolator.h +++ b/obj/NiPathInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPATHINTERPOLATOR_H_ #define _NIPATHINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PATH_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiPixelData.h b/obj/NiPixelData.h index dbe13d4605207b0d725631a32f657197a652a81e..5fd96ab82ce5133ee6fcc596adf498643b5bb2b4 100644 --- a/obj/NiPixelData.h +++ b/obj/NiPixelData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPIXELDATA_H_ #define _NIPIXELDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PIXEL_DATA_INCLUDE /* diff --git a/obj/NiPlanarCollider.h b/obj/NiPlanarCollider.h index 001e594c6ebbee4aef90b4c5600138b2db3c77c2..f7ab778e32173f9ddbf070127abbc7c24d77e43f 100644 --- a/obj/NiPlanarCollider.h +++ b/obj/NiPlanarCollider.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPLANARCOLLIDER_H_ #define _NIPLANARCOLLIDER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PLANAR_COLLIDER_INCLUDE /* diff --git a/obj/NiPoint3Interpolator.h b/obj/NiPoint3Interpolator.h index 646178246f9e005edaee3e301c193898e5530eac..dcc255a67b2e3639f1a101602536f6870f9dad88 100644 --- a/obj/NiPoint3Interpolator.h +++ b/obj/NiPoint3Interpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPOINT3INTERPOLATOR_H_ #define _NIPOINT3INTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_POINT3_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiPointLight.h b/obj/NiPointLight.h index bd6fc0d452d8a0a91d23676ceda2cf05f24a9674..4cc41804332a8e9e87ba3f9d428672b780df43b4 100644 --- a/obj/NiPointLight.h +++ b/obj/NiPointLight.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPOINTLIGHT_H_ #define _NIPOINTLIGHT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_POINT_LIGHT_INCLUDE /* diff --git a/obj/NiPosData.h b/obj/NiPosData.h index 9d46cff554318e843555ba66c98db31879d630a0..5cc2ad34fab4e32a20068138bfed5ecac3d7af1b 100644 --- a/obj/NiPosData.h +++ b/obj/NiPosData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPOSDATA_H_ #define _NIPOSDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_POS_DATA_INCLUDE /* diff --git a/obj/NiProperty.h b/obj/NiProperty.h index 7547efb1c9ff2f59565be5d9e46111637da44409..0544e5e5edc9a1fa500b2e15de850c7a786f98eb 100644 --- a/obj/NiProperty.h +++ b/obj/NiProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIPROPERTY_H_ #define _NIPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_PROPERTY_INCLUDE /* diff --git a/obj/NiRangeLODData.h b/obj/NiRangeLODData.h index 7998e4edd8233a76c29c0ef5de6717bdb8e9f858..4dabcfe8f1010e0475061a5b90b2d859e56f2a00 100644 --- a/obj/NiRangeLODData.h +++ b/obj/NiRangeLODData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIRANGELODDATA_H_ #define _NIRANGELODDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_RANGE_L_O_D_DATA_INCLUDE /* diff --git a/obj/NiRotatingParticles.h b/obj/NiRotatingParticles.h index 3494f1578785a3dbdd196891d7bd80c1e63a7ba1..41196d70717bd28f658b10d89a289abb22d0af38 100644 --- a/obj/NiRotatingParticles.h +++ b/obj/NiRotatingParticles.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIROTATINGPARTICLES_H_ #define _NIROTATINGPARTICLES_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_ROTATING_PARTICLES_INCLUDE /* diff --git a/obj/NiRotatingParticlesData.h b/obj/NiRotatingParticlesData.h index 42f61beed0ed85ac3ae8d8034a1212cb8411c15a..5fab749ceabfa264a41aaccc21b80b2e5b7246f4 100644 --- a/obj/NiRotatingParticlesData.h +++ b/obj/NiRotatingParticlesData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIROTATINGPARTICLESDATA_H_ #define _NIROTATINGPARTICLESDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_ROTATING_PARTICLES_DATA_INCLUDE /* diff --git a/obj/NiScreenLODData.h b/obj/NiScreenLODData.h index 01866197bd3f719efef6e9626b78d39199b18564..a5823a645360e25034be91e8e0e6ab986e914d36 100644 --- a/obj/NiScreenLODData.h +++ b/obj/NiScreenLODData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISCREENLODDATA_H_ #define _NISCREENLODDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_SCREEN_L_O_D_DATA_INCLUDE /* diff --git a/obj/NiSequenceStreamHelper.h b/obj/NiSequenceStreamHelper.h index f7343023f714d9613d23a1b304fb57cd6419042e..93ebebe15e6c8905816b387dd28974ce6745b572 100644 --- a/obj/NiSequenceStreamHelper.h +++ b/obj/NiSequenceStreamHelper.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISEQUENCESTREAMHELPER_H_ #define _NISEQUENCESTREAMHELPER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_SEQUENCE_STREAM_HELPER_INCLUDE /* diff --git a/obj/NiShadeProperty.h b/obj/NiShadeProperty.h index f9f6ae132cc1a6b9b5b658f3619e0d9e395fd610..6258c999e5aa1b41ec2b9282c38d46734efef8de 100644 --- a/obj/NiShadeProperty.h +++ b/obj/NiShadeProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISHADEPROPERTY_H_ #define _NISHADEPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_SHADE_PROPERTY_INCLUDE /* diff --git a/obj/NiSingleInterpolatorController.h b/obj/NiSingleInterpolatorController.h index 2a49c57ccc91ec8ba7c3eadff6405f24e3bbc612..61d944d4c1511bd8f970f82ff3de040a7bdf4188 100644 --- a/obj/NiSingleInterpolatorController.h +++ b/obj/NiSingleInterpolatorController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISINGLEINTERPOLATORCONTROLLER_H_ #define _NISINGLEINTERPOLATORCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_SINGLE_INTERPOLATOR_CONTROLLER_INCLUDE /* diff --git a/obj/NiSkinData.h b/obj/NiSkinData.h index 6ae509dce459ae4ecae36d65adf6cd5a92b8e851..dd2b42cf5cf3e8e2fca4409f494ba907b8f36f8c 100644 --- a/obj/NiSkinData.h +++ b/obj/NiSkinData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISKINDATA_H_ #define _NISKINDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_SKIN_DATA_INCLUDE /* diff --git a/obj/NiSkinInstance.h b/obj/NiSkinInstance.h index de8398997347b0ef5a49174fe4389ed80a43b845..5a062ecc3f7b20451d8e00404e172c730c1fc8c4 100644 --- a/obj/NiSkinInstance.h +++ b/obj/NiSkinInstance.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISKININSTANCE_H_ #define _NISKININSTANCE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_SKIN_INSTANCE_INCLUDE /* diff --git a/obj/NiSkinPartition.h b/obj/NiSkinPartition.h index 3670b59c6498fd356b7f167515c425c885ea7f99..6f198672b446c014865f57c44265860502543222 100644 --- a/obj/NiSkinPartition.h +++ b/obj/NiSkinPartition.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISKINPARTITION_H_ #define _NISKINPARTITION_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_SKIN_PARTITION_INCLUDE /* diff --git a/obj/NiSourceTexture.h b/obj/NiSourceTexture.h index b787a2e69cfc2448a51d320a96254a858d32e8a9..045c8974fdbbfde390606310834cf5e4f85f2a85 100644 --- a/obj/NiSourceTexture.h +++ b/obj/NiSourceTexture.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISOURCETEXTURE_H_ #define _NISOURCETEXTURE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_SOURCE_TEXTURE_INCLUDE /* diff --git a/obj/NiSpecularProperty.h b/obj/NiSpecularProperty.h index 85c57e1e95fad1278424ecd08389ba971a808503..88b0a49112e560c8a97eb165b1a3ac9fb9e6d6e7 100644 --- a/obj/NiSpecularProperty.h +++ b/obj/NiSpecularProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISPECULARPROPERTY_H_ #define _NISPECULARPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_SPECULAR_PROPERTY_INCLUDE /* diff --git a/obj/NiSphericalCollider.h b/obj/NiSphericalCollider.h index 7b04d866ffbba6977460b225d7da2d3916d4b2e9..73ce08dc2364c880cde44fcef5923ad2a71b0f27 100644 --- a/obj/NiSphericalCollider.h +++ b/obj/NiSphericalCollider.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISPHERICALCOLLIDER_H_ #define _NISPHERICALCOLLIDER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_SPHERICAL_COLLIDER_INCLUDE /* diff --git a/obj/NiSpotLight.h b/obj/NiSpotLight.h index 27f8bf5c8ef4ca7c5a817e1561ce9ee394d60ca2..7c51f347b13709bd3ef4014937f0154c92bce7f7 100644 --- a/obj/NiSpotLight.h +++ b/obj/NiSpotLight.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISPOTLIGHT_H_ #define _NISPOTLIGHT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_SPOT_LIGHT_INCLUDE /* diff --git a/obj/NiStencilProperty.h b/obj/NiStencilProperty.h index 281ffa290110165a3296a36a1d3d1453b475d080..b2c537a71a797e16a244dcbfdee76e6dbe0c7b2c 100644 --- a/obj/NiStencilProperty.h +++ b/obj/NiStencilProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISTENCILPROPERTY_H_ #define _NISTENCILPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_STENCIL_PROPERTY_INCLUDE /* diff --git a/obj/NiStringExtraData.h b/obj/NiStringExtraData.h index 2dc2d96d669aa179c8685eca23ecb0313ddf120a..6e70cfa51d8fd8faa9f13fc08f17ca5ba15c9821 100644 --- a/obj/NiStringExtraData.h +++ b/obj/NiStringExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISTRINGEXTRADATA_H_ #define _NISTRINGEXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_STRING_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiStringPalette.h b/obj/NiStringPalette.h index 383577dfc0af9ae809bc70da421a594472195962..ccaa147f6813bb51ff755f950327954db4741b67 100644 --- a/obj/NiStringPalette.h +++ b/obj/NiStringPalette.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISTRINGPALETTE_H_ #define _NISTRINGPALETTE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_STRING_PALETTE_INCLUDE /* diff --git a/obj/NiStringsExtraData.h b/obj/NiStringsExtraData.h index a55ee196148ab94654591a0d4320bea214e23131..e8bacb164cd86317c0a0607612c7fb01c2f31e35 100644 --- a/obj/NiStringsExtraData.h +++ b/obj/NiStringsExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NISTRINGSEXTRADATA_H_ #define _NISTRINGSEXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_STRINGS_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiTextKeyExtraData.h b/obj/NiTextKeyExtraData.h index 2b7fc0c1c05879ecb324fce8eacc5e4b61cc4842..4a04acda24096a1cdc796d819cc13328da83b34c 100644 --- a/obj/NiTextKeyExtraData.h +++ b/obj/NiTextKeyExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITEXTKEYEXTRADATA_H_ #define _NITEXTKEYEXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TEXT_KEY_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiTextureEffect.h b/obj/NiTextureEffect.h index 33a7652fa6579955b5f720430949e64a777c8d72..2dce45de4c058849077c373d5a99381de8bf2aaf 100644 --- a/obj/NiTextureEffect.h +++ b/obj/NiTextureEffect.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITEXTUREEFFECT_H_ #define _NITEXTUREEFFECT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TEXTURE_EFFECT_INCLUDE /* diff --git a/obj/NiTextureTransformController.h b/obj/NiTextureTransformController.h index fc7952beab7cf71a268fbb7b73414ad6328447b7..fb9f2577ab61292a82849a1d96c20fe0c48622a7 100644 --- a/obj/NiTextureTransformController.h +++ b/obj/NiTextureTransformController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITEXTURETRANSFORMCONTROLLER_H_ #define _NITEXTURETRANSFORMCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TEXTURE_TRANSFORM_CONTROLLER_INCLUDE /* diff --git a/obj/NiTexturingProperty.h b/obj/NiTexturingProperty.h index 446bc9c80e81d2c4fc130c747b796d5b953cfccb..26759a18283d70071fa3df82caadca82aaf2f2d5 100644 --- a/obj/NiTexturingProperty.h +++ b/obj/NiTexturingProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITEXTURINGPROPERTY_H_ #define _NITEXTURINGPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TEXTURING_PROPERTY_INCLUDE /* diff --git a/obj/NiTimeController.h b/obj/NiTimeController.h index 6cf80e130796076f50921c41f65b0a6ef83f8557..d7fa1ac3f4e8a0bbcc1877a44be3e09150fcd56c 100644 --- a/obj/NiTimeController.h +++ b/obj/NiTimeController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITIMECONTROLLER_H_ #define _NITIMECONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TIME_CONTROLLER_INCLUDE /* diff --git a/obj/NiTransformController.h b/obj/NiTransformController.h index f60e6f7dba601c1cae1b374460b115e2b27ea02f..045839b56071929873f8eb3cc4b01cac93a04265 100644 --- a/obj/NiTransformController.h +++ b/obj/NiTransformController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITRANSFORMCONTROLLER_H_ #define _NITRANSFORMCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TRANSFORM_CONTROLLER_INCLUDE /* diff --git a/obj/NiTransformData.h b/obj/NiTransformData.h index 64c348b0e9e2d69b298400ad341084668d7152e7..cb2c48de46c7310bd7c41e5b7706ef9f594389b5 100644 --- a/obj/NiTransformData.h +++ b/obj/NiTransformData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITRANSFORMDATA_H_ #define _NITRANSFORMDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TRANSFORM_DATA_INCLUDE /* diff --git a/obj/NiTransformInterpolator.h b/obj/NiTransformInterpolator.h index a4e7ebc6c61e6b4018d7b0d3ed00e57ce7ed206c..e0f7fd2ec2de3a26f542d486c5074a8fb67ee153 100644 --- a/obj/NiTransformInterpolator.h +++ b/obj/NiTransformInterpolator.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITRANSFORMINTERPOLATOR_H_ #define _NITRANSFORMINTERPOLATOR_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TRANSFORM_INTERPOLATOR_INCLUDE /* diff --git a/obj/NiTriBasedGeom.h b/obj/NiTriBasedGeom.h index a5a6b2a81fe609dc49cee031466919cf6a15c0f5..d2f356b7987dc7e30299c8342b1c613a2c551f0c 100644 --- a/obj/NiTriBasedGeom.h +++ b/obj/NiTriBasedGeom.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITRIBASEDGEOM_H_ #define _NITRIBASEDGEOM_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TRI_BASED_GEOM_INCLUDE /* diff --git a/obj/NiTriBasedGeomData.h b/obj/NiTriBasedGeomData.h index 5fd879fc39857019250ccf3d3ba2eff13decc269..1719e8291650ffe54e41a4b73bcae6ddae94085f 100644 --- a/obj/NiTriBasedGeomData.h +++ b/obj/NiTriBasedGeomData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITRIBASEDGEOMDATA_H_ #define _NITRIBASEDGEOMDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TRI_BASED_GEOM_DATA_INCLUDE /* diff --git a/obj/NiTriShape.h b/obj/NiTriShape.h index d0c2766af93ce3e5e3436e8c52ba4aac7a367b77..c83770f8ce075e7bc07f5b87ee228ea5f832ec22 100644 --- a/obj/NiTriShape.h +++ b/obj/NiTriShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITRISHAPE_H_ #define _NITRISHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TRI_SHAPE_INCLUDE /* diff --git a/obj/NiTriShapeData.h b/obj/NiTriShapeData.h index 758be0aef7798347f1487e5a53e780f319fadd69..b537305a3a906da10d3f3fb419fa9e9824a8ad43 100644 --- a/obj/NiTriShapeData.h +++ b/obj/NiTriShapeData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITRISHAPEDATA_H_ #define _NITRISHAPEDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TRI_SHAPE_DATA_INCLUDE /* diff --git a/obj/NiTriStrips.h b/obj/NiTriStrips.h index ca9542851ee677ebeb955290f7b9bc9ba1be0439..2c35f1cad69a827101d8e0ed9cd8450949f516ab 100644 --- a/obj/NiTriStrips.h +++ b/obj/NiTriStrips.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITRISTRIPS_H_ #define _NITRISTRIPS_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TRI_STRIPS_INCLUDE /* diff --git a/obj/NiTriStripsData.h b/obj/NiTriStripsData.h index 148a9211c2fd7ebeea4fb2cceb471daec0834ba1..246376f4f6a446dec3b0560d4dc8095ca40836cd 100644 --- a/obj/NiTriStripsData.h +++ b/obj/NiTriStripsData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NITRISTRIPSDATA_H_ #define _NITRISTRIPSDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_TRI_STRIPS_DATA_INCLUDE /* diff --git a/obj/NiUVController.h b/obj/NiUVController.h index 5295c14ca3a0b87f4815f53e91a796fe79df2996..269e4ea0d4af4f9dcae755527df5ce0c42c88ed4 100644 --- a/obj/NiUVController.h +++ b/obj/NiUVController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIUVCONTROLLER_H_ #define _NIUVCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_U_V_CONTROLLER_INCLUDE /* diff --git a/obj/NiUVData.h b/obj/NiUVData.h index 0fd3335d86203fb60408fb080980b365b53d9b87..341bc0465ccbd8c1857355b5a3d49762c18f613a 100644 --- a/obj/NiUVData.h +++ b/obj/NiUVData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIUVDATA_H_ #define _NIUVDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_U_V_DATA_INCLUDE /* diff --git a/obj/NiVectorExtraData.h b/obj/NiVectorExtraData.h index 8f393950a87c3ca04c23d3655e4fe2a328088cc8..42e1787ff1f7d8808920a9ac3a09f9beb00fc07d 100644 --- a/obj/NiVectorExtraData.h +++ b/obj/NiVectorExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIVECTOREXTRADATA_H_ #define _NIVECTOREXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_VECTOR_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiVertWeightsExtraData.h b/obj/NiVertWeightsExtraData.h index 1edcab94218e6d374bd47ad58fff23cfaf23c839..b26aad1383aac2ce39c72a8b7713ff08d64ab663 100644 --- a/obj/NiVertWeightsExtraData.h +++ b/obj/NiVertWeightsExtraData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIVERTWEIGHTSEXTRADATA_H_ #define _NIVERTWEIGHTSEXTRADATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_VERT_WEIGHTS_EXTRA_DATA_INCLUDE /* diff --git a/obj/NiVertexColorProperty.h b/obj/NiVertexColorProperty.h index 18faa4091f0b54c6aaf0eb25b2a038fe13fe8b8b..77df5dff08a638db6e0a1e4786caeb4f29e6aef6 100644 --- a/obj/NiVertexColorProperty.h +++ b/obj/NiVertexColorProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIVERTEXCOLORPROPERTY_H_ #define _NIVERTEXCOLORPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_VERTEX_COLOR_PROPERTY_INCLUDE /* diff --git a/obj/NiVisController.h b/obj/NiVisController.h index 8b4bf548900e4b3af29cd9c8f89409897a0c5f14..52eb3955634e30c3e07470eff9bac65980fe3a7b 100644 --- a/obj/NiVisController.h +++ b/obj/NiVisController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIVISCONTROLLER_H_ #define _NIVISCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_VIS_CONTROLLER_INCLUDE /* diff --git a/obj/NiVisData.h b/obj/NiVisData.h index 2513bb3a0c34a241bad252c3c2d479c76a3775b5..e5a54dbf1f9fb290d05ec8b5574e68b92630d384 100644 --- a/obj/NiVisData.h +++ b/obj/NiVisData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIVISDATA_H_ #define _NIVISDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_VIS_DATA_INCLUDE /* diff --git a/obj/NiWireframeProperty.h b/obj/NiWireframeProperty.h index 1d75b708ed6d1ae25645a935f94c2c0b34f8d3da..a556d54dd910aebcb627e13c5f4e5d1961ed7b70 100644 --- a/obj/NiWireframeProperty.h +++ b/obj/NiWireframeProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIWIREFRAMEPROPERTY_H_ #define _NIWIREFRAMEPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_WIREFRAME_PROPERTY_INCLUDE /* diff --git a/obj/NiZBufferProperty.h b/obj/NiZBufferProperty.h index b33487dd8fb3bdf9f9904186d176068d8153133d..c78e124417af4287b4ad03e26845376aeb9e216a 100644 --- a/obj/NiZBufferProperty.h +++ b/obj/NiZBufferProperty.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _NIZBUFFERPROPERTY_H_ #define _NIZBUFFERPROPERTY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include NI_Z_BUFFER_PROPERTY_INCLUDE /* diff --git a/obj/RootCollisionNode.h b/obj/RootCollisionNode.h index 42e1409b8039e9b854bfb8eb93d9b3368e6d5958..f4955853b28db19dbf9c2f0bac97abdef28c859b 100644 --- a/obj/RootCollisionNode.h +++ b/obj/RootCollisionNode.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _ROOTCOLLISIONNODE_H_ #define _ROOTCOLLISIONNODE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include ROOT_COLLISION_NODE_INCLUDE /* diff --git a/obj/bhkBlendCollisionObject.h b/obj/bhkBlendCollisionObject.h index 296cc796be4730aeb5791c71422ff23e9eab3ded..0154c81e55f77b0b4b888270cd8c03b1ee9e6c79 100644 --- a/obj/bhkBlendCollisionObject.h +++ b/obj/bhkBlendCollisionObject.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKBLENDCOLLISIONOBJECT_H_ #define _BHKBLENDCOLLISIONOBJECT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_BLEND_COLLISION_OBJECT_INCLUDE /* diff --git a/obj/bhkBlendController.h b/obj/bhkBlendController.h index 445814ef7a945ad08684192e9b58500461d87f76..d0a596d797b1f41106a6f06d31360aacae3c56b9 100644 --- a/obj/bhkBlendController.h +++ b/obj/bhkBlendController.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKBLENDCONTROLLER_H_ #define _BHKBLENDCONTROLLER_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_BLEND_CONTROLLER_INCLUDE /* diff --git a/obj/bhkBoxShape.h b/obj/bhkBoxShape.h index d9d5617188a3b9227d0002f31e4d6f9bd92f5b95..52768fbffc78c5c279a73d4bd28078ffd3df1e55 100644 --- a/obj/bhkBoxShape.h +++ b/obj/bhkBoxShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKBOXSHAPE_H_ #define _BHKBOXSHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_BOX_SHAPE_INCLUDE /* diff --git a/obj/bhkCapsuleShape.h b/obj/bhkCapsuleShape.h index 48fd4f6fc1b6f04937cfa4bff9685edba03d1524..f19d7d87598b1a4e47c46f108f45ce81939a2f24 100644 --- a/obj/bhkCapsuleShape.h +++ b/obj/bhkCapsuleShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKCAPSULESHAPE_H_ #define _BHKCAPSULESHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_CAPSULE_SHAPE_INCLUDE /* diff --git a/obj/bhkCollisionObject.h b/obj/bhkCollisionObject.h index 2180b85e397d8897fda1822a122c0e04d4695de8..b4268bbaf1118d971d7546eb8d3c33bf74609b6d 100644 --- a/obj/bhkCollisionObject.h +++ b/obj/bhkCollisionObject.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKCOLLISIONOBJECT_H_ #define _BHKCOLLISIONOBJECT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_COLLISION_OBJECT_INCLUDE /* diff --git a/obj/bhkConvexShape.h b/obj/bhkConvexShape.h index 9a92fb189acc3b90ba62575482e45e0cf74f00a9..c0aafdfc0c76227460674b20990789e5c170bad0 100644 --- a/obj/bhkConvexShape.h +++ b/obj/bhkConvexShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKCONVEXSHAPE_H_ #define _BHKCONVEXSHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_CONVEX_SHAPE_INCLUDE /* diff --git a/obj/bhkConvexTransformShape.h b/obj/bhkConvexTransformShape.h index 64799fa40fcb95468d9c8ee0482ac9533115bafc..975890659592cab7f4e734f5a2f3495ac5894ac7 100644 --- a/obj/bhkConvexTransformShape.h +++ b/obj/bhkConvexTransformShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKCONVEXTRANSFORMSHAPE_H_ #define _BHKCONVEXTRANSFORMSHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_CONVEX_TRANSFORM_SHAPE_INCLUDE /* diff --git a/obj/bhkConvexVerticesShape.h b/obj/bhkConvexVerticesShape.h index e2c78f196b2103ae9745299eb53568407f6f2814..5813e48b2c8ca5e37ced2fa5e00e8915e4b633ed 100644 --- a/obj/bhkConvexVerticesShape.h +++ b/obj/bhkConvexVerticesShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKCONVEXVERTICESSHAPE_H_ #define _BHKCONVEXVERTICESSHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_CONVEX_VERTICES_SHAPE_INCLUDE /* diff --git a/obj/bhkEntity.h b/obj/bhkEntity.h index 834e168e5a86e6880ad8e09b28142f5e609dd98f..c1adafef5efd3618c8e806522c3d040a0e1ebc57 100644 --- a/obj/bhkEntity.h +++ b/obj/bhkEntity.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKENTITY_H_ #define _BHKENTITY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_ENTITY_INCLUDE /* diff --git a/obj/bhkHingeConstraint.h b/obj/bhkHingeConstraint.h index 7fc52d326490a0819eda449e467e589074f777f6..dd07614867f751c9988683dd397cd9f522a3595c 100644 --- a/obj/bhkHingeConstraint.h +++ b/obj/bhkHingeConstraint.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKHINGECONSTRAINT_H_ #define _BHKHINGECONSTRAINT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_HINGE_CONSTRAINT_INCLUDE /* diff --git a/obj/bhkLimitedHingeConstraint.h b/obj/bhkLimitedHingeConstraint.h index f6d648aecc5bd6ef564645a50a25c109f66b8289..75c001282d6bcf0cb95bce9504d82da7f26c04e6 100644 --- a/obj/bhkLimitedHingeConstraint.h +++ b/obj/bhkLimitedHingeConstraint.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKLIMITEDHINGECONSTRAINT_H_ #define _BHKLIMITEDHINGECONSTRAINT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_LIMITED_HINGE_CONSTRAINT_INCLUDE /* diff --git a/obj/bhkListShape.h b/obj/bhkListShape.h index f11437a99225878ebf9acdb8b196bc1af22caca3..7ca94099a7ecd56b5b89149c4c25dd099d8fbe78 100644 --- a/obj/bhkListShape.h +++ b/obj/bhkListShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKLISTSHAPE_H_ #define _BHKLISTSHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_LIST_SHAPE_INCLUDE /* diff --git a/obj/bhkMalleableConstraint.h b/obj/bhkMalleableConstraint.h index 586bc7e3551bf4e5bbb1221d653bc45e21021d82..7b5d8fe1c4dbc6e15c33eb58f3895f1985b63fe4 100644 --- a/obj/bhkMalleableConstraint.h +++ b/obj/bhkMalleableConstraint.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKMALLEABLECONSTRAINT_H_ #define _BHKMALLEABLECONSTRAINT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_MALLEABLE_CONSTRAINT_INCLUDE /* diff --git a/obj/bhkMoppBvTreeShape.h b/obj/bhkMoppBvTreeShape.h index 9e6e8e6809678228802c486c0c6a871bf473f1c6..e058820ea5fa215a7f3a6ef41428992a1541d593 100644 --- a/obj/bhkMoppBvTreeShape.h +++ b/obj/bhkMoppBvTreeShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKMOPPBVTREESHAPE_H_ #define _BHKMOPPBVTREESHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_MOPP_BV_TREE_SHAPE_INCLUDE /* diff --git a/obj/bhkMultiSphereShape.h b/obj/bhkMultiSphereShape.h index 4895bdab26cb4e13866853ed81e743c639083ebc..48619888684af0f1005f020fc2e6f2a456a2be7a 100644 --- a/obj/bhkMultiSphereShape.h +++ b/obj/bhkMultiSphereShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKMULTISPHERESHAPE_H_ #define _BHKMULTISPHERESHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_MULTI_SPHERE_SHAPE_INCLUDE /* diff --git a/obj/bhkNiTriStripsShape.h b/obj/bhkNiTriStripsShape.h index b1b50c60271b10e1e57f9130bc4d114d75898cdc..93dcf7747803da53e4cfd5b1f8987b5066869363 100644 --- a/obj/bhkNiTriStripsShape.h +++ b/obj/bhkNiTriStripsShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKNITRISTRIPSSHAPE_H_ #define _BHKNITRISTRIPSSHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_NI_TRI_STRIPS_SHAPE_INCLUDE /* diff --git a/obj/bhkPackedNiTriStripsShape.h b/obj/bhkPackedNiTriStripsShape.h index d56ecebbfbe88d3a58e7e66ce2b836e0837053cd..22013d977396e216467209002a15755e9b0da400 100644 --- a/obj/bhkPackedNiTriStripsShape.h +++ b/obj/bhkPackedNiTriStripsShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKPACKEDNITRISTRIPSSHAPE_H_ #define _BHKPACKEDNITRISTRIPSSHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_PACKED_NI_TRI_STRIPS_SHAPE_INCLUDE /* diff --git a/obj/bhkPrismaticConstraint.h b/obj/bhkPrismaticConstraint.h index 7f105f8ffd18ea0f74701d5f1ee592a9132fb79b..fef8fd007648061b34ac11f1cb954b551717e8e6 100644 --- a/obj/bhkPrismaticConstraint.h +++ b/obj/bhkPrismaticConstraint.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKPRISMATICCONSTRAINT_H_ #define _BHKPRISMATICCONSTRAINT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_PRISMATIC_CONSTRAINT_INCLUDE /* diff --git a/obj/bhkRagdollConstraint.h b/obj/bhkRagdollConstraint.h index 9cf610004d652dd963717fe076c5f3d73e4116cf..73f9f48fa51a12545b27df8bf6ae5fff0d89ca89 100644 --- a/obj/bhkRagdollConstraint.h +++ b/obj/bhkRagdollConstraint.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKRAGDOLLCONSTRAINT_H_ #define _BHKRAGDOLLCONSTRAINT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_RAGDOLL_CONSTRAINT_INCLUDE /* diff --git a/obj/bhkRefObject.h b/obj/bhkRefObject.h index 0714a630965678ed6bcfbf0400f1baf146f1fbda..d451abbc997f26901d67d9a6781dfdf6c29e34f3 100644 --- a/obj/bhkRefObject.h +++ b/obj/bhkRefObject.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKREFOBJECT_H_ #define _BHKREFOBJECT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_REF_OBJECT_INCLUDE /* diff --git a/obj/bhkRigidBody.h b/obj/bhkRigidBody.h index 3891c53c626c8f4009bdffc21b701cb678df2ada..a1506c321331ac20ca7e62247e300d2e6f76ee38 100644 --- a/obj/bhkRigidBody.h +++ b/obj/bhkRigidBody.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKRIGIDBODY_H_ #define _BHKRIGIDBODY_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_RIGID_BODY_INCLUDE /* diff --git a/obj/bhkRigidBodyT.h b/obj/bhkRigidBodyT.h index e63e80025b3718f2826b403cf767939994cc1614..b4bc8554479c17998718f962a27cfb289cae8325 100644 --- a/obj/bhkRigidBodyT.h +++ b/obj/bhkRigidBodyT.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKRIGIDBODYT_H_ #define _BHKRIGIDBODYT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_RIGID_BODY_T_INCLUDE /* diff --git a/obj/bhkSPCollisionObject.h b/obj/bhkSPCollisionObject.h index 6d5dc2395b00069abd9892e4c892352b61a1426e..5b8577d4459b66ce1b5b408b97ca10f76f3c3de0 100644 --- a/obj/bhkSPCollisionObject.h +++ b/obj/bhkSPCollisionObject.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKSPCOLLISIONOBJECT_H_ #define _BHKSPCOLLISIONOBJECT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_S_P_COLLISION_OBJECT_INCLUDE /* diff --git a/obj/bhkSerializable.h b/obj/bhkSerializable.h index fe3b45c4f0fa10d7afe2bfe1d75f81c7760a4e2b..2ee6ed891352fb5844502db4fd5f86962ded41c4 100644 --- a/obj/bhkSerializable.h +++ b/obj/bhkSerializable.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKSERIALIZABLE_H_ #define _BHKSERIALIZABLE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_SERIALIZABLE_INCLUDE /* diff --git a/obj/bhkShape.h b/obj/bhkShape.h index d795e6aea54e3f9ce89843cac39ac23bbe6afdb1..68b3892614cd075e19e996b30248c356b1f38ba9 100644 --- a/obj/bhkShape.h +++ b/obj/bhkShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKSHAPE_H_ #define _BHKSHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_SHAPE_INCLUDE /* diff --git a/obj/bhkSimpleShapePhantom.h b/obj/bhkSimpleShapePhantom.h index c72a1168c2aab362ee20351283c3639dc3200631..e53d4a8ac487d3acfa0e381080f828b38a5ac8f2 100644 --- a/obj/bhkSimpleShapePhantom.h +++ b/obj/bhkSimpleShapePhantom.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKSIMPLESHAPEPHANTOM_H_ #define _BHKSIMPLESHAPEPHANTOM_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_SIMPLE_SHAPE_PHANTOM_INCLUDE /* diff --git a/obj/bhkSphereRepShape.h b/obj/bhkSphereRepShape.h index 86dd489f078db58097a18c14fe607764ed7d1acd..645a360c1e870e572934e406c76d09a8ab57b25a 100644 --- a/obj/bhkSphereRepShape.h +++ b/obj/bhkSphereRepShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKSPHEREREPSHAPE_H_ #define _BHKSPHEREREPSHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_SPHERE_REP_SHAPE_INCLUDE /* diff --git a/obj/bhkSphereShape.h b/obj/bhkSphereShape.h index 1557c92e0742424eeb2952db9fff652e3770267a..605b3299f44ba432b5d313a17509fafbc3fb56ea 100644 --- a/obj/bhkSphereShape.h +++ b/obj/bhkSphereShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKSPHERESHAPE_H_ #define _BHKSPHERESHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_SPHERE_SHAPE_INCLUDE /* diff --git a/obj/bhkStiffSpringConstraint.h b/obj/bhkStiffSpringConstraint.h index b96967ff317474c4f0ef858ae6b5857f34e7df53..980dfc222249efdcc922a80a244124dc91ae2471 100644 --- a/obj/bhkStiffSpringConstraint.h +++ b/obj/bhkStiffSpringConstraint.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKSTIFFSPRINGCONSTRAINT_H_ #define _BHKSTIFFSPRINGCONSTRAINT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_STIFF_SPRING_CONSTRAINT_INCLUDE /* diff --git a/obj/bhkTransformShape.h b/obj/bhkTransformShape.h index 3a537bc294715a441a2abd750c70ca1af4bef3f8..4374afa191f2179c4eab7852816ee033965f5fd3 100644 --- a/obj/bhkTransformShape.h +++ b/obj/bhkTransformShape.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKTRANSFORMSHAPE_H_ #define _BHKTRANSFORMSHAPE_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_TRANSFORM_SHAPE_INCLUDE /* diff --git a/obj/bhkWorldObject.h b/obj/bhkWorldObject.h index 54ed29197fb0c3c421bc5421bb7f41ab6302c9ce..54c4aaf4f19a1df904ca3b97056fba07a90f6964 100644 --- a/obj/bhkWorldObject.h +++ b/obj/bhkWorldObject.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _BHKWORLDOBJECT_H_ #define _BHKWORLDOBJECT_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include BHK_WORLD_OBJECT_INCLUDE /* diff --git a/obj/hkPackedNiTriStripsData.h b/obj/hkPackedNiTriStripsData.h index ac582caa050f158c015791b204050b55397a16fe..15648b480f947e34617b020572baaaa076c3a065 100644 --- a/obj/hkPackedNiTriStripsData.h +++ b/obj/hkPackedNiTriStripsData.h @@ -4,7 +4,7 @@ All rights reserved. Please see niflib.h for licence. */ #ifndef _HKPACKEDNITRISTRIPSDATA_H_ #define _HKPACKEDNITRISTRIPSDATA_H_ -#include "xml_extract.h" +#include "gen/obj_defines.h" #include HK_PACKED_NI_TRI_STRIPS_DATA_INCLUDE /*