open_toontown_panda3d/pandatool/src/egg-qtess/qtessInputFile.h

56 lines
1.5 KiB
C++

// Filename: qtessInputFile.h
// Created by: drose (13Oct03)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) Carnegie Mellon University. All rights reserved.
//
// All use of this software is subject to the terms of the revised BSD
// license. You should have received a copy of this license along
// with this source code in a file named "LICENSE."
//
////////////////////////////////////////////////////////////////////
#ifndef QTESSINPUTFILE_H
#define QTESSINPUTFILE_H
#include "pandatoolbase.h"
#include "qtessInputEntry.h"
#include "filename.h"
#include "pvector.h"
class QtessSurface;
////////////////////////////////////////////////////////////////////
// Class : QtessInputFile
// Description : Stores all the information read from a tesselation
// input file: a list of QtessInputEntry's.
////////////////////////////////////////////////////////////////////
class QtessInputFile {
public:
QtessInputFile();
INLINE QtessInputFile(const QtessInputFile &copy);
INLINE void operator = (const QtessInputFile &copy);
bool read(const Filename &filename);
QtessInputEntry &get_default_entry();
QtessInputEntry::Type match(QtessSurface *surface);
int count_tris();
void write(ostream &out, int indent_level = 0) const;
private:
void add_default_entry();
Filename _filename;
typedef pvector<QtessInputEntry> Entries;
Entries _entries;
};
#include "qtessInputFile.I"
#endif