1 /*---------------------------------------------------------------------------*
2   Project:  NintendoWare
3   File:     anim_ResTypeInfo.h
4 
5   Copyright (C)2009-2011 Nintendo/HAL Laboratory, Inc.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain proprietary
8   information of Nintendo and/or its licensed developers and are protected by
9   national and international copyright laws. They may not be disclosed to third
10   parties or copied or duplicated in any form, in whole or in part, without the
11   prior written consent of Nintendo.
12 
13   The content herein is highly confidential and should be handled accordingly.
14 
15   $Revision: $
16  *---------------------------------------------------------------------------*/
17 
18 #ifndef NW_ANIM_RES_TYPE_INFO_H_
19 #define NW_ANIM_RES_TYPE_INFO_H_
20 
21 #include <nw/types.h>
22 
23 namespace nw
24 {
25 namespace anim
26 {
27 namespace res
28 {
29 
30 #define NW_ANIM_RES_TYPE_INFO(name)  res::name##_TYPE_INFO
31 
32 //! @details :private
33 enum ResTypeInfoDefinition
34 {
35     ResAnimGroup_TYPE_INFO              = 0x00000000,
36     ResGraphicsAnimGroup_TYPE_INFO      = 0x80000000,
37     ResAnimGroupMember_TYPE_INFO        = 0x00000000,
38     ResTextureCoordinatorMember_TYPE_INFO = 0x80000000,
39     ResBoneMember_TYPE_INFO             = 0x40000000,
40     ResTextureMapperMember_TYPE_INFO    = 0x20000000,
41     ResModelMember_TYPE_INFO            = 0x10000000,
42     ResMaterialColorMember_TYPE_INFO    = 0x08000000,
43     ResBlendOperationMember_TYPE_INFO   = 0x04000000,
44     ResTextureSamplerMember_TYPE_INFO   = 0x02000000,
45     ResMeshMember_TYPE_INFO             = 0x01000000,
46     ResTransformMember_TYPE_INFO        = 0x00800000,
47     ResViewUpdaterMember_TYPE_INFO      = 0x00400000,
48     ResProjectionUpdaterMember_TYPE_INFO = 0x00200000,
49     ResLightMember_TYPE_INFO            = 0x00100000,
50     ResMeshNodeVisibilityMember_TYPE_INFO = 0x00080000,
51     ResFogMember_TYPE_INFO              = 0x00040000,
52     ResAnim_TYPE_INFO                   = 0x00000000,
53     ResLightAnim_TYPE_INFO              = 0x80000000,
54     ResCameraAnim_TYPE_INFO             = 0x40000000
55 };
56 
57 } // namespace res
58 } // namespace anim
59 } // namespace nw
60 
61 #endif /* NW_ANIM_RES_TYPE_INFO_H_ */
62 
63 
64