mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
83 lines
2.5 KiB
C++
83 lines
2.5 KiB
C++
// Filename: xFileParseData.h
|
|
// Created by: drose (07Oct04)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 XFILEPARSEDATA_H
|
|
#define XFILEPARSEDATA_H
|
|
|
|
#include "pandatoolbase.h"
|
|
#include "xFileDataObject.h"
|
|
#include "pointerTo.h"
|
|
#include "pta_int.h"
|
|
#include "pta_double.h"
|
|
#include "pvector.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : XFileParseData
|
|
// Description : This class is used to fill up the data into an
|
|
// XFileDataObjectTemplate object as the data values are
|
|
// parsed out of the X file. It only has a temporary
|
|
// lifespan; it will be converted into actual data by
|
|
// XFileDataObjectTemplate::finalize_parse_data().
|
|
////////////////////////////////////////////////////////////////////
|
|
class XFileParseData {
|
|
public:
|
|
XFileParseData();
|
|
|
|
void yyerror(const string &message) const;
|
|
|
|
enum ParseFlags {
|
|
PF_object = 0x001,
|
|
PF_reference = 0x002,
|
|
PF_double = 0x004,
|
|
PF_int = 0x008,
|
|
PF_string = 0x010,
|
|
PF_any_data = 0x01f,
|
|
PF_comma = 0x020,
|
|
PF_semicolon = 0x040,
|
|
};
|
|
|
|
PT(XFileDataObject) _object;
|
|
PTA_double _double_list;
|
|
PTA_int _int_list;
|
|
string _string;
|
|
int _parse_flags;
|
|
|
|
int _line_number;
|
|
int _col_number;
|
|
string _current_line;
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : XFileParseDataList
|
|
// Description : A container for a pvector of the above objects. We
|
|
// need this wrapper class to avoid circular #includes;
|
|
// this allows XFileNode to define a forward reference
|
|
// to this class (without having to include this file or
|
|
// know that it contains a template class).
|
|
////////////////////////////////////////////////////////////////////
|
|
class XFileParseDataList {
|
|
public:
|
|
typedef pvector<XFileParseData> List;
|
|
List _list;
|
|
};
|
|
|
|
#include "xFileParseData.I"
|
|
|
|
#endif
|
|
|