File: PsychAuthors.c

package info (click to toggle)
psychtoolbox-3 3.0.14.20170103%2Bgit6-g605ff5c.dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 103,044 kB
  • ctags: 69,483
  • sloc: ansic: 167,371; cpp: 11,232; objc: 4,708; sh: 1,875; python: 383; php: 344; makefile: 207; java: 113
file content (251 lines) | stat: -rwxr-xr-x 4,852 bytes parent folder | download | duplicates (2)
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*
  PsychToolbox2/Source/Common/PsychAuthors.c		
    
  AUTHORS:

	Allen.Ingling@nyu.edu		awi 
  
  PLATFORMS:	All.
    

  HISTORY:
  7/22/04  awi		Created. 
 
  
*/


#include "Psych.h"
// I added this prototype to make the compiler happy. dgp.
void PsychAddAuthor(char *firstName,char *middleName,char *lastName,char *initials,char *email,char *url);

#define	MAX_PSYCHTOOLBOX_AUTHORS	25

static int							numAuthors=0;
static PsychAuthorDescriptorType	authorList[MAX_PSYCHTOOLBOX_AUTHORS];

void PsychAddAuthor(
		char *firstName,
		char *middleName,
		char *lastName,
		char *initials,
		char *email,
		char *url
)
{
	if(strlen(firstName)>31)
		PsychErrorExitMsg(PsychError_stringOverrun, "Name string too long");
	if(strlen(middleName)>31)
		PsychErrorExitMsg(PsychError_stringOverrun, "Name string too long");
	if(strlen(lastName)>31)
		PsychErrorExitMsg(PsychError_stringOverrun, "Name string too long");
	if(strlen(initials)>7)
		PsychErrorExitMsg(PsychError_stringOverrun, "Initial string too long");
	if(strlen(email)>511)
		PsychErrorExitMsg(PsychError_stringOverrun, "Email string too long");
	if(strlen(url)>511)
		PsychErrorExitMsg(PsychError_stringOverrun, "URL string too long");
	
	strcpy(authorList[numAuthors].firstName, firstName);
	strcpy(authorList[numAuthors].middleName, middleName);
	strcpy(authorList[numAuthors].lastName, lastName);
	strcpy(authorList[numAuthors].initials, initials);
	strcpy(authorList[numAuthors].email, email);
	strcpy(authorList[numAuthors].url, url);
	
	authorList[numAuthors].enabled=FALSE;
	++numAuthors;
}


void PsychSetModuleAuthorByInitials(char *initials)
{
	int			i;
	int			numFound;
	
	numFound=0;
	for(i=0;i<numAuthors;i++){
		if(!strcmp(initials, authorList[i].initials)){
			if(numFound==1){
				PsychErrorExitMsg(PsychError_internal, "Attempt to set module author using ambiguous initials.");
			}else{
				authorList[i].enabled=TRUE;
				++numAuthors;
			}
		}	
	}
}

void InitPsychAuthorList(void)
{
	PsychAddAuthor(
		"Allen",
		"W.",
		"Ingling",
		"awi",
		"Allen.Ingling@nyu.edu",
		""
	);
	PsychAddAuthor(
		"Denis",
		"G.",
		"Pelli",
		"dgp",
		"Denis.Pelli@nyu.edu",
		"http://www.psych.nyu.edu/pelli/"
	);
	PsychAddAuthor(
		"David",
		"H.",
		"Brainard",
		"dhb",
		"brainard@cattell.psych.upenn.edu",
		"http://color.psych.upenn.edu/brainard/"
	);
	PsychAddAuthor(
	//  Contributed Screen 'DrawDots'
		"Keith",
		"A.",
		"Schneider",
		"kas",
		"kas@princeton.edu",
		""
	);
	PsychAddAuthor(
	// Contributed Screen 'DrawDots'
		"Finnegan",
		"J.",
		"Calabro",
		"fjc",
		"fcalabro@bu.edu",
		""
	);
	PsychAddAuthor(
	// GL bug fixes 
		"Mario",
		"",
		"Kleiner",
		"mk",
		"mario.kleiner.de@gmail.com",
		"http://www.kyb.mpg.de/~kleinerm"
	);
	PsychAddAuthor(
	// Port to OS-X on Intel-Macs, and misc stuff: 
		"Christopher",
		"G.",
		"Broussard",
		"cb",
		"chrg@sas.upenn.edu",
		"http://color.psych.upenn.edu/lab/"
	);
	PsychAddAuthor(
	// Port to OS-X on Intel-Macs, and misc stuff, as well as PsychHID enhancements: 
		"Christopher",
		"G.",
		"Broussard",
		"cgb",
		"chrg@sas.upenn.edu",
		"http://color.psych.upenn.edu/lab/"
	);
	PsychAddAuthor(
	// Queue/Thread based keyboard checks via PsychHID for reliable
	// response collection from fORP et al.: 
		"Roger",
		"P.",
		"Woods",
		"rpw",
		"rwoods@ucla.edu",
		"http://www.ucla.edu"
	);
	PsychAddAuthor(
	// Additions to Eyelink toolbox: 
		"Erik",
		"D.",
		"Flister",
		"edf",
		"e_flister@yahoo.com",
		"http://www.biology.ucsd.edu/labs/reinagel/"
	);
	PsychAddAuthor(
	// Additions to Eyelink toolbox: 
		"Christopher",
		"D.",
		"Burns",
		"cdb",
		"cburns@berkeley.edu",
		"http://bankslab.berkeley.edu/"
	);
	PsychAddAuthor(
	// Eyelink toolbox: 
		"Frans",
		"W.",
		"Cornelissen",
		"fwc",
		"f.w.cornelissen@rug.nl",
		"http://cornelis.med.rug.nl/LEO/people/frans/"
	);
	PsychAddAuthor(
	// Eyelink toolbox: 
		"Enno",
		"M.",
		"Peters",
		"emp",
		"E.Peters@ai.rug.nl",
		""
	);
	PsychAddAuthor(
	// DataPixx toolbox: 
		"Peter",
		"A.",
		"April",
		"paa",
		"papril@vpixx.com",
		"http://www.vpixx.com/"
	);
	PsychAddAuthor(
	// Eyelink toolbox: 
		"Nuha",
		"M.",
		"Jabakhanji",
		"nj",
		"nuha@sr-research.com",
		"http://sr-research.com"
	);
}


int PsychGetNumModuleAuthors(void)
{
	int		i,numModuleAuthors;
	
	numModuleAuthors=0;
	for(i=0;i<numAuthors;i++){
		if(authorList[i].enabled)
			++numModuleAuthors;
	}
	return(numModuleAuthors);
}

/*
	GetModuleAuthorDescriptorFromIndex()
	
	The list is zero-indexed.
*/
void GetModuleAuthorDescriptorFromIndex(int index, PsychAuthorDescriptorType **descriptor)
{
	int		i, authorNumber;

	authorNumber=0;
	for(i=0;i<numAuthors;i++){
		if(authorList[i].enabled){
			if(index==authorNumber){
				*descriptor=&authorList[i];
				return;
			}
			++authorNumber;
		}
	}
	PsychErrorExitMsg(PsychError_internal, "Failed to find author for index");
}