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
rwScriptInformation.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 2012 MaK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************/
5
8
11
12
#pragma once
13
14
#include <
readerWriter/readerWriter.h
>
15
#include <
readerWriter/rwInt.h
>
16
#include <
readerWriter/rwReal.h
>
17
#include <
readerWriter/rwBoolean.h
>
18
#include <
readerWriter/rwString.h
>
19
23
#include "
vrfutil/vrfutilDefines.h
"
24
class
DT_DLL_vrfutil
DtRwScriptInformation
:
public
DtReaderWriter
25
{
26
public
:
27
29
DtRwScriptInformation
();
30
32
DtRwScriptInformation
(
const
DtString
& name,
DtReaderWriterRegistry
*
const
33
parentRegistry = NULL);
34
DtRwScriptInformation
(
const
DtSymbolString
& name,
DtReaderWriterRegistry
*
const
35
parentRegistry = NULL);
36
38
virtual
~
DtRwScriptInformation
();
39
41
DtRwScriptInformation
(
const
DtString
& name,
const
DtRwScriptInformation
& orig,
42
DtReaderWriterRegistry
* parentRegistry = NULL);
43
DtRwScriptInformation
(
const
DtSymbolString
& name,
const
DtRwScriptInformation
& orig,
44
DtReaderWriterRegistry
* parentRegistry = NULL);
45
47
DtRwScriptInformation
&
operator=
(
const
DtRwScriptInformation
& orig);
48
50
DtRwScriptInformation
* clone()
const
;
51
52
bool
operator==
(
const
DtRwScriptInformation
&)
const
;
53
bool
operator!=
(
const
DtRwScriptInformation
&)
const
;
54
56
57
void
setScriptId(
const
DtString
&);
58
const
DtString
& scriptId()
const
;
59
60
void
setTickPeriod(
double
);
61
double
tickPeriod()
const
;
62
63
void
setNextTickTime(
double
);
64
double
nextTickTime()
const
;
65
66
void
setTickWhilePaused(
bool
);
67
bool
tickWhilePaused()
const
;
68
69
void
setNextTickTimeWhilePaused(
double
);
70
double
nextTickTimeWhilePaused()
const
;
71
72
bool
checkpointModeUseCheckpointState
()
const
{
return
myCheckpointModeUseCheckpointState; }
73
void
setCheckpointModeUseCheckpointState
(
bool
enable) { myCheckpointModeUseCheckpointState = enable; }
74
75
void
setTaskId(
int
);
76
int
taskId()
const
;
77
bool
taskIdSpecified()
const
;
79
80
protected
:
81
DtRwString
myScriptId
;
82
DtRwReal
myTickPeriod
;
83
DtRwReal
myNextTickTime
;
84
DtRwInt
myTaskId
;
85
DtRwBoolean
myTickWhilePaused
;
86
DtRwBoolean
myCheckpointModeUseCheckpointState
;
87
DtReal
myNextTickTimeWhilePaused
;
88
};
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
)