Alembic 1.8.11
Loading...
Searching...
No Matches
Foundation.h
1//-*****************************************************************************
2//
3// Copyright (c) 2009-2016,
4// Sony Pictures Imageworks, Inc. and
5// Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
6//
7// All rights reserved.
8//
9// Redistribution and use in source and binary forms, with or without
10// modification, are permitted provided that the following conditions are
11// met:
12// * Redistributions of source code must retain the above copyright
13// notice, this list of conditions and the following disclaimer.
14// * Redistributions in binary form must reproduce the above
15// copyright notice, this list of conditions and the following disclaimer
16// in the documentation and/or other materials provided with the
17// distribution.
18// * Neither the name of Sony Pictures Imageworks, nor
19// Industrial Light & Magic nor the names of their contributors may be used
20// to endorse or promote products derived from this software without specific
21// prior written permission.
22//
23// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34//
35//-*****************************************************************************
36
37#ifndef Alembic_Abc_Foundation_h
38#define Alembic_Abc_Foundation_h
39
40#include <Alembic/AbcCoreAbstract/All.h>
41#include <Alembic/Util/All.h>
42
43#include <Imath/ImathVec.h>
44#include <Imath/ImathBox.h>
45#include <Imath/ImathMatrix.h>
46#include <Imath/ImathQuat.h>
47#include <Imath/ImathColor.h>
48
49#include <iostream>
50#include <string>
51#include <exception>
52
53#include <cstdlib>
54#include <cstdio>
55#include <cstring>
56#include <cassert>
57
58namespace Alembic {
59namespace Abc {
60namespace ALEMBIC_VERSION_NS {
61
62//-*****************************************************************************
63// Bring 'em ALL in.
64namespace AbcA = ::Alembic::AbcCoreAbstract::ALEMBIC_VERSION_NS;
65using namespace AbcA;
66
67//-*****************************************************************************
75//-*****************************************************************************
76enum SchemaInterpMatching
77{
78 kStrictMatching,
79 kNoMatching,
80 kSchemaTitleMatching
81};
82
83//-*****************************************************************************
92//-*****************************************************************************
93enum WrapExistingFlag
94{
95 kWrapExisting
96};
97
98//-*****************************************************************************
102//-*****************************************************************************
103enum TopFlag
104{
105 kTop
106};
107
108//-*****************************************************************************
111//-*****************************************************************************
112enum SparseFlag
113{
114 kFull,
115 kSparse
116};
117
118//-*****************************************************************************
119//-*****************************************************************************
120//-*****************************************************************************
121//-*****************************************************************************
122// IMPORTED IMATH TYPES
123//-*****************************************************************************
124//-*****************************************************************************
125//-*****************************************************************************
126using Imath::V2s;
127using Imath::V2i;
128using Imath::V2f;
129using Imath::V2d;
130
131using Imath::V3s;
132using Imath::V3i;
133using Imath::V3f;
134using Imath::V3d;
135
136using Imath::Box2s;
137using Imath::Box2i;
138using Imath::Box2f;
139using Imath::Box2d;
140
141using Imath::Box3s;
142using Imath::Box3i;
143using Imath::Box3f;
144using Imath::Box3d;
145
146using Imath::M33f;
147using Imath::M33d;
148using Imath::M44f;
149using Imath::M44d;
150
151using Imath::Quatf;
152using Imath::Quatd;
153
154using Imath::C3h;
155using Imath::C3f;
156using Imath::C3c;
157
158using Imath::C4h;
159using Imath::C4f;
160using Imath::C4c;
161
162typedef V3f N3f;
163typedef V3d N3d;
164
165//-*****************************************************************************
166//-*****************************************************************************
167// OBJECT EXTRACTION FUNCTIONS
168// These are intrusive methods used by the Abc constructors.
169//-*****************************************************************************
170//-*****************************************************************************
171
172//-*****************************************************************************
173inline AbcA::CompoundPropertyWriterPtr
174GetCompoundPropertyWriterPtr( AbcA::CompoundPropertyWriterPtr iPtr )
175{
176 return iPtr;
177}
178
179//-*****************************************************************************
180inline AbcA::CompoundPropertyReaderPtr
181GetCompoundPropertyReaderPtr( AbcA::CompoundPropertyReaderPtr iPtr )
182{
183 return iPtr;
184}
185
186//-*****************************************************************************
187//-*****************************************************************************
188// OBJECT EXTRACTION FUNCTIONS
189// These are intrusive methods used by the templated Abc constructors.
190//-*****************************************************************************
191//-*****************************************************************************
192
193//-*****************************************************************************
194inline AbcA::ObjectWriterPtr GetObjectWriterPtr( AbcA::ObjectWriterPtr iPtr )
195{
196 return iPtr;
197}
198
199//-*****************************************************************************
200inline AbcA::ObjectReaderPtr GetObjectReaderPtr( AbcA::ObjectReaderPtr iPtr )
201{
202 return iPtr;
203}
204
205//-*****************************************************************************
206//-*****************************************************************************
207// ARCHIVE EXTRACTION FUNCTIONS
208// These are intrusive methods used by the templated Abc constructors.
209//-*****************************************************************************
210//-*****************************************************************************
211
212//-*****************************************************************************
213inline AbcA::ArchiveWriterPtr GetArchiveWriterPtr( AbcA::ArchiveWriterPtr iPtr )
214{
215 return iPtr;
216}
217
218//-*****************************************************************************
219inline AbcA::ArchiveReaderPtr GetArchiveReaderPtr( AbcA::ArchiveReaderPtr iPtr )
220{
221 return iPtr;
222}
223
224} // End namespace ALEMBIC_VERSION_NS
225
226using namespace ALEMBIC_VERSION_NS;
227
228} // End namespace Abc
229} // End namespace Alembic
230
231#endif
Alembic namespace ...
Definition ArchiveInfo.cpp:39