open_toontown_panda3d/panda/src/egg2pg/animBundleMaker.h

73 lines
2.0 KiB
C++

// Filename: animBundleMaker.h
// Created by: drose (22Feb99)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
//
// All use of this software is subject to the terms of the Panda 3d
// Software license. You should have received a copy of this license
// along with this source code; you will also find a current copy of
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
//
// To contact the maintainers of this program write to
// panda3d-general@lists.sourceforge.net .
//
////////////////////////////////////////////////////////////////////
#ifndef ANIMBUNDLEMAKER_H
#define ANIMBUNDLEMAKER_H
#include "pandabase.h"
#include "typedef.h"
class EggNode;
class EggGroupNode;
class EggTable;
class EggXfmSAnim;
class EggSAnimData;
class AnimGroup;
class AnimBundle;
class AnimBundleNode;
class AnimChannelScalarTable;
class AnimChannelMatrixXfmTable;
///////////////////////////////////////////////////////////////////
// Class : AnimBundleMaker
// Description : Converts an EggTable hierarchy, beginning with a
// <Bundle> entry, into an AnimBundle hierarchy.
////////////////////////////////////////////////////////////////////
class EXPCL_PANDAEGG AnimBundleMaker {
public:
AnimBundleMaker(EggTable *root);
AnimBundleNode *make_node();
private:
AnimBundle *make_bundle();
void inspect_tree(EggNode *node);
void build_hierarchy(EggTable *egg_table, AnimGroup *parent);
AnimChannelScalarTable *
create_s_channel(EggSAnimData *egg_anim, const string &name,
AnimGroup *parent);
AnimChannelMatrixXfmTable *
create_xfm_channel(EggNode *egg_node, const string &name,
AnimGroup *parent);
AnimChannelMatrixXfmTable *
create_xfm_channel(EggXfmSAnim *egg_anim, const string &name,
AnimGroup *parent);
float _fps;
int _num_frames;
bool _ok_fps;
bool _ok_num_frames;
EggTable *_root;
};
#endif