From 972fe0ecd62251fc299b9d2628ee615f15bd246f Mon Sep 17 00:00:00 2001 From: Shon Ferguson <shonferg@users.sourceforge.net> Date: Mon, 28 May 2007 19:11:37 +0000 Subject: [PATCH] Deleting RagDollDescriptor.cpp and RagDollDescriptor.h so that they can be replaced with versions that don't use a capital R. Seems someone changed the case of this object in the XML file after it had already been included in Niflib. --- include/gen/RagDollDescriptor.h | 53 --------------------------------- niflib.vcproj | 8 +++++ src/gen/RagDollDescriptor.cpp | 37 ----------------------- 3 files changed, 8 insertions(+), 90 deletions(-) delete mode 100644 include/gen/RagDollDescriptor.h delete mode 100644 src/gen/RagDollDescriptor.cpp diff --git a/include/gen/RagDollDescriptor.h b/include/gen/RagDollDescriptor.h deleted file mode 100644 index 73396ee5..00000000 --- a/include/gen/RagDollDescriptor.h +++ /dev/null @@ -1,53 +0,0 @@ -/* Copyright (c) 2006, NIF File Format Library and Tools -All rights reserved. Please see niflib.h for license. */ - -//---THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT---// - -//To change this file, alter the niftools/docsys/gen_niflib.py Python script. - -#ifndef _RAGDOLLDESCRIPTOR_H_ -#define _RAGDOLLDESCRIPTOR_H_ - -#include "../NIF_IO.h" - -namespace Niflib { - - -/*! */ -struct RagdollDescriptor { - /*! Default Constructor */ - NIFLIB_API RagdollDescriptor(); - /*! Default Destructor */ - NIFLIB_API ~RagdollDescriptor(); - /*! Copy Constructor */ - NIFLIB_API RagdollDescriptor( const RagdollDescriptor & src ); - /*! Copy Operator */ - NIFLIB_API RagdollDescriptor & operator=( const RagdollDescriptor & src ); - /*! Unknown. */ - Float4 pivotA; - /*! Unknown. */ - Float4 planeA; - /*! Unknown. */ - Float4 twistA; - /*! Unknown. */ - Float4 pivotB; - /*! Unknown. */ - Float4 planeB; - /*! Unknown. */ - Float4 twistB; - /*! Unknown. */ - float coneMinAngle; - /*! Unknown. */ - float planeMinAngle; - /*! Unknown. */ - float planeMaxAngle; - /*! Unknown. */ - float twistMinAngle; - /*! Unknown. */ - float twistMaxAngle; - /*! Unknown. */ - float maxFriction; -}; - -} -#endif diff --git a/niflib.vcproj b/niflib.vcproj index 6b915425..c7a1f05b 100644 --- a/niflib.vcproj +++ b/niflib.vcproj @@ -305,6 +305,10 @@ Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx" UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}" > + <File + RelativePath=".\src\AnimSequence.cpp" + > + </File> <File RelativePath=".\src\ComplexShape.cpp" > @@ -1535,6 +1539,10 @@ Filter="h;hpp;hxx;hm;inl;inc;xsd" UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}" > + <File + RelativePath=".\include\AnimSequence.h" + > + </File> <File RelativePath=".\include\ComplexShape.h" > diff --git a/src/gen/RagDollDescriptor.cpp b/src/gen/RagDollDescriptor.cpp deleted file mode 100644 index 356169ca..00000000 --- a/src/gen/RagDollDescriptor.cpp +++ /dev/null @@ -1,37 +0,0 @@ -/* Copyright (c) 2006, NIF File Format Library and Tools -All rights reserved. Please see niflib.h for license. */ - -//---THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT---// - -//To change this file, alter the niftools/docsys/gen_niflib.py Python script. - -#include "../../include/gen/RagdollDescriptor.h" -using namespace Niflib; - -//Constructor -RagdollDescriptor::RagdollDescriptor() : coneMinAngle(0.0f), planeMinAngle(0.0f), planeMaxAngle(0.0f), twistMinAngle(0.0f), twistMaxAngle(0.0f), maxFriction(0.0f) {}; - -//Copy Constructor -RagdollDescriptor::RagdollDescriptor( const RagdollDescriptor & src ) { - *this = src; -}; - -//Copy Operator -RagdollDescriptor & RagdollDescriptor::operator=( const RagdollDescriptor & src ) { - this->pivotA = src.pivotA; - this->planeA = src.planeA; - this->twistA = src.twistA; - this->pivotB = src.pivotB; - this->planeB = src.planeB; - this->twistB = src.twistB; - this->coneMinAngle = src.coneMinAngle; - this->planeMinAngle = src.planeMinAngle; - this->planeMaxAngle = src.planeMaxAngle; - this->twistMinAngle = src.twistMinAngle; - this->twistMaxAngle = src.twistMaxAngle; - this->maxFriction = src.maxFriction; - return *this; -}; - -//Destructor -RagdollDescriptor::~RagdollDescriptor() {}; -- GitLab