Welcome to mirror list, hosted at ThFree Co, Russian Federation.

abc_cloth.h « alembic « pointcache « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b30b183a6c79cdee98e12372e40f30604efdf51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 * Copyright 2013, Blender Foundation.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

#ifndef PTC_ABC_CLOTH_H
#define PTC_ABC_CLOTH_H

#include <Alembic/AbcGeom/IPoints.h>
#include <Alembic/AbcGeom/OPoints.h>

#include "ptc_types.h"

#include "abc_reader.h"
#include "abc_schema.h"
#include "abc_writer.h"

struct Object;
struct ClothModifierData;

namespace PTC {

class AbcClothWriter : public ClothWriter, public AbcWriter {
public:
	AbcClothWriter(const std::string &name, Object *ob, ClothModifierData *clmd);
	~AbcClothWriter();
	
	void init_abc(Abc::OObject parent);
	
	void write_sample();
	
private:
	AbcGeom::OPoints m_points;
	AbcGeom::OV3fGeomParam m_param_velocities;
	AbcGeom::OP3fGeomParam m_param_goal_positions;
};

class AbcClothReader : public ClothReader, public AbcReader {
public:
	AbcClothReader(const std::string &name, Object *ob, ClothModifierData *clmd);
	~AbcClothReader();
	
	void init_abc(Abc::IObject parent);
	
	PTCReadSampleResult read_sample_abc(chrono_t time);
	
private:
	AbcGeom::IPoints m_points;
	AbcGeom::IV3fGeomParam m_param_velocities;
	AbcGeom::IP3fGeomParam m_param_goal_positions;
};

} /* namespace PTC */

#endif  /* PTC_CLOTH_H */