Subversion Repositories filter_foundry

Rev

Rev 379 | Rev 389 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 379 Rev 381
Line 38... Line 38...
38
//#define SHOW_HOST_DEBUG
38
//#define SHOW_HOST_DEBUG
39
 
39
 
40
struct node *tree[4];
40
struct node *tree[4];
41
char *err[4];
41
char *err[4];
42
int errpos[4],errstart[4],nplanes,cnvused,chunksize,toprow;
42
int errpos[4],errstart[4],nplanes,cnvused,chunksize,toprow;
43
uint8_t slider[8];
43
uint8_t slider[8]; // this is the "working data". We cannot always use gdata->parm, because parm will not be loaded if a AFS file is read
-
 
44
char* expr[4]; // this is the "working data". We cannot always use gdata->parm, because parm will not be loaded if a AFS file is read
44
value_type cell[NUM_CELLS];
45
value_type cell[NUM_CELLS];
45
char *expr[4];
-
 
46
// long maxSpace;
46
// long maxSpace;
47
globals_t *gdata;
47
globals_t *gdata;
48
FilterRecordPtr gpb;
48
FilterRecordPtr gpb;
49
 
49
 
50
#ifdef MAC_ENV
50
#ifdef MAC_ENV
Line 71... Line 71...
71
 
71
 
72
        hash = djb2((char*)parm->category);
72
        hash = djb2((char*)parm->category);
73
        hash += djb2((char*)parm->title);
73
        hash += djb2((char*)parm->title);
74
        hash += djb2((char*)parm->copyright);
74
        hash += djb2((char*)parm->copyright);
75
        hash += djb2((char*)parm->author);
75
        hash += djb2((char*)parm->author);
76
        for (i = 0; i < 4; i++) hash += hash += djb2((char*)parm->map[i]);
76
        for (i = 0; i < 4; i++) hash += djb2((char*)parm->map[i]);
77
        for (i = 0; i < 8; i++) hash += hash += djb2((char*)parm->ctl[i]);
77
        for (i = 0; i < 8; i++) hash += djb2((char*)parm->ctl[i]);
78
        for (i = 0; i < 4; i++) hash += hash += djb2((char*)parm->formula[i]);
78
        for (i = 0; i < 4; i++) hash += djb2((char*)parm->formula[i]);
79
 
79
 
80
        return hash;
80
        return hash;
81
}
81
}
82
 
82
 
83
void get_temp_afs(char *outfilename, Boolean isStandalone, PARM_T *parm) {
83
void get_temp_afs(char *outfilename, Boolean isStandalone, PARM_T *parm) {