~ubuntu-branches/ubuntu/warty/aqsis/warty

« back to all changes in this revision

Viewing changes to render/symbols.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-08-24 07:25:04 UTC
  • Revision ID: james.westby@ubuntu.com-20040824072504-zf993vnevvisdsvb
Tags: upstream-0.9.1
Import upstream version 0.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Aqsis
 
2
// Copyright � 1997 - 2001, Paul C. Gregory
 
3
//
 
4
// Contact: pgregory@aqsis.com
 
5
//
 
6
// This library is free software; you can redistribute it and/or
 
7
// modify it under the terms of the GNU General Public
 
8
// License as published by the Free Software Foundation; either
 
9
// version 2 of the License, or (at your option) any later version.
 
10
//
 
11
// This library is distributed in the hope that it will be useful,
 
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
// General Public License for more details.
 
15
//
 
16
// You should have received a copy of the GNU General Public
 
17
// License along with this library; if not, write to the Free Software
 
18
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
 
 
20
 
 
21
/** \file
 
22
                \brief Declares the storage structures for renderman symbols.
 
23
                \author Paul C. Gregory (pgregory@aqsis.com)
 
24
*/
 
25
 
 
26
//? Is .h included already?
 
27
#ifndef SYMBOLS_H_INCLUDED
 
28
#define SYMBOLS_H_INCLUDED 1
 
29
 
 
30
#include        <vector>
 
31
 
 
32
#include        "aqsis.h"
 
33
 
 
34
#include        "ishaderdata.h"
 
35
#include        "parameters.h"
 
36
 
 
37
START_NAMESPACE( Aqsis )
 
38
 
 
39
//----------------------------------------------------------------------
 
40
/** \struct SqParameterDeclaration
 
41
 * A structure storing information about Renderman parameters.
 
42
 */
 
43
 
 
44
struct SqParameterDeclaration
 
45
{
 
46
    SqParameterDeclaration() :
 
47
            m_strName( "" ),
 
48
            m_Type( type_invalid ),
 
49
            m_Class( class_invalid ),
 
50
            m_Count( 0 ),
 
51
            m_pCreate( 0 ),
 
52
            m_strSpace( "" )
 
53
    {}
 
54
    SqParameterDeclaration( const char* strName, EqVariableType Type, EqVariableClass Class, TqInt Count,
 
55
                            CqParameter* ( *pCreate ) ( const char* strName, TqInt Count ), const char* strSpace ) :
 
56
            m_strName( strName ),
 
57
            m_Type( Type ),
 
58
            m_Class( Class ),
 
59
            m_Count( Count ),
 
60
            m_pCreate( pCreate ),
 
61
            m_strSpace( strSpace )
 
62
    {}
 
63
 
 
64
 
 
65
    CqString    m_strName;                                                                              ///< Name of the parameter.
 
66
    EqVariableType      m_Type;                                                                         ///< Type.
 
67
    EqVariableClass     m_Class;                                                                        ///< Class.
 
68
    TqInt       m_Count;                                                                                ///< Array length if an array.
 
69
    CqParameter* ( *m_pCreate ) ( const char* strName, TqInt Count );           ///< Constructor function.
 
70
    CqString    m_strSpace;                                                                             ///< Specification coordinate system name.
 
71
}
 
72
;
 
73
 
 
74
 
 
75
//-----------------------------------------------------------------------
 
76
 
 
77
END_NAMESPACE( Aqsis )
 
78
 
 
79
#endif  // !SYMBOLS_H_INCLUDED