 |
Ice Sheet System Model
4.18
Code documentation
|
Go to the documentation of this file.
8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
14 #include "../shared/Enum/Enum.h"
15 #include "../shared/shared.h"
40 this->
objects=xNew<Object*>(in_num);
41 this->
ids=xNew<int>(in_num);
42 this->
offsets=xNew<int>(in_num);
45 for(
int i=0;i<this->
num;i++){
46 this->
ids[i] = in_ids[i];
54 xDelete<Object*>(this->
objects);
55 xDelete<int>(this->
ids);
69 for(
int i=0;i<output->
num;i++){
92 for (i=0;i<this->
num;i++){
95 else _printf_(
" no object hooked yet (not configured)\n");
122 void Hook::Marshall(
char** pmarshalled_data,
int* pmarshalled_data_size,
int marshall_direction){
154 for(i=0;i<this->
num;i++){
157 if (this->
ids[i]==-1)
continue;
161 if(this->
objects[i]->Id()==this->
ids[i])
continue;
170 if (object->
Id()==this->
ids[i]){
182 if (this->
objects[i]->Id()!=this->
ids[i])
_error_(
"wrong id: " << this->
objects[i]->Id() <<
" vs " << this->
ids[i] <<
" in resolved pointer!");
194 if (this->
num!=1)
_error_(
"trying to deliver a single hook object when hook holds " << this->
num <<
" objects" <<
"\n");
197 if (this->
objects==NULL)
_error_(
"hook is not pointing to any object, objects pointer is NULL");
217 for(i=0;i<this->
num;i++){
237 if(numindices>this->
num)
_error_(
"Cannot spawn hook with " << numindices <<
" objects from a Hook of " << this->
num <<
" objects");
240 output->
num=numindices;
241 if(output->
num<1)
_error_(
"Trying to spawn an empty ElementProperties!");
244 output->
ids = xNew<int>(output->
num);
247 for(
int i=0;i<output->
num;i++){
249 output->
ids[i] = this->
ids[indices[i]];
Object * GetObjectById(int *poffset, int eid)
#define _printf_(StreamArgs)
#define MARSHALLING_ENUM(EN)
#define MARSHALLING_DYNAMIC(FIELD, TYPE, SIZE)
void configure(DataSet *dataset)
#define MARSHALLING(FIELD)
virtual void DeepEcho()=0
Hook * Spawn(int *indices, int numindices)
#define _error_(StreamArgs)
Object * GetObjectByOffset(int offset)
Declaration of DataSet class.
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)