VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrfutil
rwDIGuyAnimationEntry.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2014 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
8
9
#pragma once
10
11
#include <
readerWriter/readerWriter.h
>
12
#include <
readerWriter/rwString.h
>
13
#include <
readerWriter/rwBoolean.h
>
14
#include "
vrfutil/vrfutilDefines.h
"
15
16
class
DtReaderWriterRegistry
;
17
22
23
enum
DtDIGuyTaskableOrIntrinisic
24
{
25
IntrinsicAnimation
,
26
TaskableAnimation
,
27
TaskableAndIntrinsicAnimation
,
28
NeitherTaskableNorIntrinsicAnimation
29
};
30
35
36
class
DT_DLL_vrfutil
DtRwDIGuyAnimationEntry
:
public
DtReaderWriter
37
{
38
public
:
39
40
DtRwDIGuyAnimationEntry
();
41
42
DtRwDIGuyAnimationEntry
(
const
DtString
& name,
43
DtReaderWriterRegistry
*
const
parentRegistry = NULL);
44
DtRwDIGuyAnimationEntry
(
const
DtSymbolString
& name,
45
DtReaderWriterRegistry
*
const
parentRegistry = NULL);
46
47
DtRwDIGuyAnimationEntry
(
const
DtRwDIGuyAnimationEntry
& orig,
48
DtReaderWriterRegistry
*
const
parentRegistry = NULL);
49
50
virtual
~
DtRwDIGuyAnimationEntry
();
51
52
DtRwDIGuyAnimationEntry
&
operator=
(
const
DtRwDIGuyAnimationEntry
& orig);
53
55
56
virtual
void
setDIGuyName(
const
DtString
& animation);
57
virtual
const
DtString
& diGuyName()
const
;
59
63
64
virtual
void
setDisplayName(
const
DtString
& animation);
65
virtual
const
DtString
& displayName()
const
;
67
69
70
virtual
void
setVariant(
const
DtString
& var);
71
virtual
const
DtString
& variant()
const
;
72
virtual
bool
variantSpecified()
const
;
74
77
78
virtual
void
setTaskableOrIntrinsic(
DtDIGuyTaskableOrIntrinisic
val);
79
virtual
DtDIGuyTaskableOrIntrinisic
taskableOrIntrinsic()
const
;
81
82
bool
matchedInDiGuy();
83
void
setMatchedInDiGuy(
bool
matched);
84
86
virtual
DtRwDIGuyAnimationEntry
* clone()
const
;
87
88
protected
:
89
90
DtRwString
myDIGuyName
;
91
DtRwString
myDisplayName
;
92
DtRwString
myTaskableOrIntrinsic
;
93
DtRwString
myAnimationVariant
;
94
bool
myMatchedInDiGuy
;
95
};
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)