60 lines
2.0 KiB
C++
60 lines
2.0 KiB
C++
// Filename: dcArrayParameter.h
|
|
// Created by: drose (17Jun04)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 DCARRAYPARAMETER_H
|
|
#define DCARRAYPARAMETER_H
|
|
|
|
#include "dcbase.h"
|
|
#include "dcParameter.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : DCArrayParameter
|
|
// Description : This represents an array of some other kind of
|
|
// object, meaning this parameter type accepts an
|
|
// arbitrary (or possibly fixed) number of nested
|
|
// fields, all of which are of the same type.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_DIRECT DCArrayParameter : public DCParameter {
|
|
public:
|
|
DCArrayParameter(DCParameter *element_type, int array_size = -1);
|
|
DCArrayParameter(const DCArrayParameter ©);
|
|
virtual ~DCArrayParameter();
|
|
|
|
PUBLISHED:
|
|
virtual DCArrayParameter *as_array_parameter();
|
|
virtual DCParameter *make_copy() const;
|
|
virtual bool is_valid() const;
|
|
|
|
DCParameter *get_element_type() const;
|
|
int get_array_size() const;
|
|
|
|
public:
|
|
virtual int calc_num_nested_fields(size_t length_bytes) const;
|
|
virtual DCPackerInterface *get_nested_field(int n) const;
|
|
|
|
virtual void output_instance(ostream &out, const string &prename,
|
|
const string &name, const string &postname) const;
|
|
virtual void generate_hash(HashGenerator &hash) const;
|
|
|
|
private:
|
|
DCParameter *_element_type;
|
|
int _array_size;
|
|
};
|
|
|
|
#endif
|