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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
/*
* PsychToolbox-3/PsychSourceGL/Source/Common/Base/PsychAuthors.c
*
* AUTHORS:
*
* Allen.Ingling@nyu.edu awi
* mario.kleiner.de@gmail.com mk
*
* 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");
if (numAuthors >= MAX_PSYCHTOOLBOX_AUTHORS)
PsychErrorExitMsg(PsychError_internal, "Maximum number of Psychtoolbox authors exceeded! Bump MAX_PSYCHTOOLBOX_AUTHORS and recompile.");
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;
++numFound;
}
}
}
}
void InitPsychAuthorList(void)
{
numAuthors = 0;
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(
// Pretty much all work since 2006.
"Mario",
"",
"Kleiner",
"mk",
"mario.kleiner.de@gmail.com",
"https://github.com/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",
"https://sr-research.com"
);
PsychAddAuthor(
// Eyelink toolbox:
"Brian",
"",
"Richardson",
"br",
"brian@sr-research.com",
"https://sr-research.com"
);
PsychAddAuthor(
// Eyelink toolbox:
"Marcus",
"",
"Johnson",
"mj",
"marcus@sr-research.com",
"https://sr-research.com"
);
PsychAddAuthor(
// Eyelink toolbox:
"Kurt",
"",
"Debono",
"kd",
"kurt@sr-research.com",
"https://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");
}
|