-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathExample.cpp
152 lines (128 loc) · 3.53 KB
/
Example.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#include "../basecode/header.h"
#include "Example.h"
#include "../basecode/ElementValueFinfo.h"
#include "../basecode/LookupElementValueFinfo.h"
static SrcFinfo1< double > *output() {
static SrcFinfo1< double > output(
"output",
"Sends out the computed value"
);
return &output;
}
const Cinfo* Example::initCinfo(){
//Value Field Definitions
static ValueFinfo< Example, double > x(
"x",
"An example field of an example class",
&Example::setX,
&Example::getX
);
static ValueFinfo< Example, double > y(
"y",
"Another example field of an example class",
&Example::setY,
&Example::getY
);
//Destination Field Definitions
static DestFinfo handleX( "handleX",
"Saves arg value to x_",
new OpFunc1< Example, double >( &Example::handleX )
);
static DestFinfo handleY( "handleY",
"Saves arg value to y_",
new OpFunc1< Example, double >( &Example::handleY )
);
static DestFinfo process( "process",
"Handles process call",
new ProcOpFunc< Example >( &Example::process )
);
static DestFinfo reinit( "reinit",
"Handles reinit call",
new ProcOpFunc< Example >( &Example::reinit )
);
static ReadOnlyLookupElementValueFinfo< Example, string, vector< Id > > fieldNeighbors(
"fieldNeighbors",
"Ids of Elements connected this Element on specified field.",
&Example::getNeighbors );
//////////////////////////////////////////////////////////////
// SharedFinfo Definitions
//////////////////////////////////////////////////////////////
static Finfo* procShared[] = {
&process, &reinit
};
static SharedFinfo proc( "proc",
"Handles 'reinit' and 'process' calls from a clock.",
procShared, sizeof( procShared ) / sizeof( const Finfo* )
);
static Finfo *exampleFinfos[] =
{
&x, //Value
&y, //Value
&handleX, //DestFinfo
&handleY, //DestFinfo
output(), // SrcFinfo
&proc, //SharedFinfo
&fieldNeighbors, // ReadOnlyLookupValue
};
static Cinfo exampleCinfo(
"Example", // The name of the class in python
Neutral::initCinfo(), // TODO
exampleFinfos, // The array of Finfos created above
sizeof( exampleFinfos ) / sizeof ( Finfo* ), // The number of Finfos
new Dinfo< Example >() // The class Example itself (FIXME ?)
);
return &exampleCinfo;
}
static const Cinfo* exampleCinfo = Example::initCinfo();
Example::Example()
: x_( 0.0 )
, y_( 0.0 )
, output_( 0.0 )
{
;
}
void Example::process( const Eref& e, ProcPtr p )
{
output_ = x_ + y_;
printf("%f\n", output_);
output()->send( e, output_ );
}
void Example::reinit( const Eref& e, ProcPtr p )
{
}
void Example::handleX(double arg )
{
x_ = arg;
}
void Example::handleY(double arg )
{
y_ = arg;
}
double Example::getX() const
{
return x_;
}
void Example::setX(double x)
{
x_ = x;
}
double Example::getY() const
{
return y_;
}
void Example::setY(double y)
{
y_ = y;
}
vector< Id > Example::getNeighbors( const Eref& e, string field ) const
{
vector< Id > ret;
const Finfo* finfo = e.element()->cinfo()->findFinfo( field );
if ( finfo )
e.element()->getNeighbors( ret, finfo );
else
cout << "Warning: Example::getNeighbors: Id.Field '" <<
e.id().path() << "." << field <<
"' not found\n";
return ret;
}