87 lines
3.5 KiB
C++
87 lines
3.5 KiB
C++
// Filename: geomVertexRewriter.h
|
|
// Created by: drose (28Mar05)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 GEOMVERTEXREWRITER_H
|
|
#define GEOMVERTEXREWRITER_H
|
|
|
|
#include "pandabase.h"
|
|
#include "geomVertexReader.h"
|
|
#include "geomVertexWriter.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : GeomVertexRewriter
|
|
// Description : This object provides the functionality of both a
|
|
// GeomVertexReader and a GeomVertexWriter, combined
|
|
// together into one convenient package. It is designed
|
|
// for making a single pass over a GeomVertexData
|
|
// object, modifying rows as it goes.
|
|
//
|
|
// Although it doesn't provide any real performance
|
|
// benefit over using a separate reader and writer on
|
|
// the same data, it should probably be used in
|
|
// preference to a separate reader and writer, because
|
|
// it makes an effort to manage the reference counts
|
|
// properly between the reader and the writer to avoid
|
|
// accidentally dereferencing either array while
|
|
// recopying.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDA GeomVertexRewriter : public GeomVertexWriter, public GeomVertexReader {
|
|
PUBLISHED:
|
|
INLINE GeomVertexRewriter(Thread *current_thread = Thread::get_current_thread());
|
|
INLINE GeomVertexRewriter(GeomVertexData *vertex_data, Thread *current_thread = Thread::get_current_thread());
|
|
INLINE GeomVertexRewriter(GeomVertexData *vertex_data,
|
|
const string &name, Thread *current_thread = Thread::get_current_thread());
|
|
INLINE GeomVertexRewriter(GeomVertexData *vertex_data,
|
|
const InternalName *name, Thread *current_thread = Thread::get_current_thread());
|
|
INLINE GeomVertexRewriter(GeomVertexArrayData *array_data, Thread *current_thread = Thread::get_current_thread());
|
|
INLINE GeomVertexRewriter(GeomVertexArrayData *array_data,
|
|
int column, Thread *current_thread = Thread::get_current_thread());
|
|
INLINE GeomVertexRewriter(const GeomVertexRewriter ©);
|
|
INLINE void operator = (const GeomVertexRewriter ©);
|
|
INLINE ~GeomVertexRewriter();
|
|
|
|
INLINE GeomVertexData *get_vertex_data() const;
|
|
INLINE GeomVertexArrayData *get_array_data() const;
|
|
|
|
INLINE bool set_column(int column);
|
|
INLINE bool set_column(const string &name);
|
|
INLINE bool set_column(const InternalName *name);
|
|
INLINE bool set_column(int array, const GeomVertexColumn *column);
|
|
|
|
INLINE bool has_column() const;
|
|
INLINE int get_array() const;
|
|
INLINE const GeomVertexColumn *get_column() const;
|
|
|
|
INLINE void set_row(int row);
|
|
|
|
INLINE int get_start_row() const;
|
|
INLINE bool is_at_end() const;
|
|
|
|
void output(ostream &out) const;
|
|
};
|
|
|
|
INLINE ostream &
|
|
operator << (ostream &out, const GeomVertexRewriter &rewriter) {
|
|
rewriter.output(out);
|
|
return out;
|
|
}
|
|
|
|
#include "geomVertexRewriter.I"
|
|
|
|
#endif
|