Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ofxAlembic
==========
vs2012 version with of 0.8.0
92 changes: 0 additions & 92 deletions libs/HDF5-COPYING.txt

This file was deleted.

34 changes: 0 additions & 34 deletions libs/OpenEXR-LICENSE.txt

This file was deleted.

116 changes: 0 additions & 116 deletions libs/alembic-LICENSE.txt

This file was deleted.

94 changes: 94 additions & 0 deletions libs/alembic/include/Alembic/AbcCoreHDF5/AprImpl.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
//-*****************************************************************************
//
// Copyright (c) 2009-2012,
// Sony Pictures Imageworks, Inc. and
// Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Sony Pictures Imageworks, nor
// Industrial Light & Magic nor the names of their contributors may be used
// to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
//-*****************************************************************************

#ifndef _Alembic_AbcCoreHDF5_AprImpl_h_
#define _Alembic_AbcCoreHDF5_AprImpl_h_

#include <Alembic/AbcCoreHDF5/Foundation.h>
#include <Alembic/AbcCoreHDF5/SimplePrImpl.h>

namespace Alembic {
namespace AbcCoreHDF5 {
namespace ALEMBIC_VERSION_NS {

//-*****************************************************************************
class AprImpl
: public SimplePrImpl<AbcA::ArrayPropertyReader,
AprImpl,
AbcA::ArraySamplePtr&>
, public Alembic::Util::enable_shared_from_this<AprImpl>
{
public:
AprImpl( AbcA::CompoundPropertyReaderPtr iParent, H5Node & iParentGroup,
PropertyHeaderPtr iHeader, bool iIsScalarLike,
uint32_t iNumSamples, uint32_t iFirstChangedIndex,
uint32_t iLastChangedIndex );

virtual AbcA::ArrayPropertyReaderPtr asArrayPtr();
virtual bool isScalarLike();
virtual void getDimensions( index_t iSampleIndex, Dimensions & oDim );
virtual void getAs( index_t iSample, void *iIntoLocation,
PlainOldDataType iPod );
protected:
friend class SimplePrImpl<AbcA::ArrayPropertyReader, AprImpl,
AbcA::ArraySamplePtr&>;

//-*************************************************************************
// This function is called by SimplePrImpl to provide the actual
// property reading.
void readSample( hid_t iGroup,
const std::string &iSampleName,
index_t iSampleIndex,
AbcA::ArraySamplePtr& oSamplePtr );

//-*************************************************************************
// This function is called by SimplePrImpl to provide the actual key reading
bool readKey( hid_t iGroup,
const std::string &iSampleName,
AbcA::ArraySampleKey & oSamplePtr );

private:
bool m_isScalarLike;
};

} // End namespace ALEMBIC_VERSION_NS

using namespace ALEMBIC_VERSION_NS;

} // End namespace AbcCoreHDF5
} // End namespace Alembic

#endif
Loading