VR-Forces 4.6 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
appsrc
vrfMsgDump
vrfDynamicTerrainPrinter.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2016 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
8
9
#pragma once
10
11
class
DtExerciseConn;
12
class
DtReflectedDynamicTerrain
;
13
class
DtReflectedDynamicTerrainList
;
14
15
// Registers for all Dynamic Terrain updates and prints the current state.
16
class
DtVrfDynamicTerrainPrinter
17
{
18
private
:
20
21
DtVrfDynamicTerrainPrinter
();
22
DtVrfDynamicTerrainPrinter
(
const
DtVrfDynamicTerrainPrinter
& orig);
23
DtVrfDynamicTerrainPrinter
&
operator=
(
const
DtVrfDynamicTerrainPrinter
& orig);
25
26
public
:
27
28
DtVrfDynamicTerrainPrinter
(DtExerciseConn* exConn);
29
virtual
~DtVrfDynamicTerrainPrinter
();
30
31
virtual
bool
init
();
32
33
protected
:
34
36
37
static
void
dynamicTerrainObjectAddedCallback
(
DtReflectedDynamicTerrain
*
object
,
void
* usr);
38
virtual
void
processDynamicTerrainObjectAdded
(
DtReflectedDynamicTerrain
*
object
);
40
42
43
static
void
dynamicTerrainObjectUpdatedCallback
(
DtReflectedDynamicTerrain
*
object
,
void
* usr);
44
virtual
void
processDynamicTerrainObjectUpdated
(
DtReflectedDynamicTerrain
*
object
);
46
48
49
static
void
dynamicTerrainObjectRemovedCallback
(
DtReflectedDynamicTerrain
*
object
,
void
* usr);
50
virtual
void
processDynamicTerrainObjectRemoved
(
DtReflectedDynamicTerrain
*
object
);
52
53
protected
:
54
55
DtExerciseConn*
myExConn
;
56
DtReflectedDynamicTerrainList
*
myReflectedDynamicTerrainList
;
57
58
};
59
Document ID: Generated on Thu Apr 12 03:15:37 EDT 2018 from SVN revision 187986
Copyright © 2005-2018 VT MÄK. All Rights Reserved (
www.mak.com
)