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 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
/*
Psychtoolbox3/Source/Common/PreferenceGlue/PsychPreferences.c
AUTHORS:
Allen.Ingling@nyu.edu awi
PLATFORMS: MATLAB only
PROJECTS:
8/04/03 awi PsychPreferences on OS X
HISTORY:
10/08/02 awi Wrote it.
DESCRIPTION:
All Preferences state is now maintained in MATLAB preferences settings. Screen preferences still exist but serve only as a conduit to MATLAB Psychtoolbox preferences.
Because this is all MATLAB-specific there is no point in abstracting out the mex/mx api in the functions within this file.
TO DO:
*/
#include "Psych.h"
Boolean IsMATLABMatrixTrue(mxArray *mptr)
{
return(mxIsLogicalScalarTrue(mptr) || mxIsDouble(mptr) && (mxGetM(mptr)*mxGetN(mptr)==1) && mxGetPr(mptr)[0]);
}
Boolean IsPsychPreferencesValid(void)
{
mxArray *mexCallInput, *mexCallOutput;
mexCallInput=NULL;
mexCallMATLAB(1,&mexCallOutput, 0, &mexCallInput, "IsPsychPreferencesValid");
return(IsMATLABMatrixTrue(mexCallOutput));
}
/*
PreparePsychPreferences()
It is harmless to call PreparePsychPreferences() if preferences are already intialized because it checks to see if they have been intialized
before it does anything.
Initialize the Psychtoolbox preferences if they are not. This should be called once at the head of every screen subfunction which accesses
preferences so that we do not attempt to access and use preference values which do not exist.
Return a value indicating whether preferences were TRUE: intialized on the call function or FALSE had alread been initialized.
*/
Boolean PreparePsychPreferences(char *omitMexFunction)
{
int mexCallError;
mxArray *mexCallResult;
mxArray *mexCallInputs[1];
int numArguments;
if(!IsPsychPreferencesValid()){
//Have the m scripts do their work to set declared and intrinsic preferences
mexCallResult=NULL;
mexCallInputs[0]=mxCreateString(omitMexFunction);
numArguments= (omitMexFunction==NULL) ? 0 : 1;
mexCallError= mexCallMATLAB(0, &mexCallResult, 1, mexCallInputs, "CreatePsychIntrinsicPreferences");
return(TRUE);
}else
return(FALSE);
}
/*
DoesPsychPreferenceExist()
*/
Boolean DoesPsychPreferenceExist(char *flagName)
{
int mexCallError;
mxArray *mexCallInputs[2];
mxArray *mexCallOutput;
mexCallInputs[0]=mxCreateString("Psychtoolbox");
mexCallInputs[1]=mxCreateString(flagName);
//check to see that the specified preference actually exists.
mexCallError= mexCallMATLAB(1, &mexCallOutput, 2, mexCallInputs, "ispref");
if(mexCallError)
PsychErrorExitMsg(PsychError_internal,"Unexpected Error Calling MATLAB");
return(IsMATLABMatrixTrue(mexCallOutput));
}
/*
GetPreferencesFlag()
*/
Boolean GetPreferencesFlag(char *flagName)
{
Boolean preferenceExists;
int mexCallError;
mxArray *mexCallOutput;
mxArray *mexCallInputs[2];
preferenceExists=DoesPsychPreferenceExist(flagName);
if(!preferenceExists)
PsychErrorExitMsg(PsychError_user,"Unknown Psychtoolbox preference specified");
mexCallInputs[0]=mxCreateString("Psychtoolbox");
mexCallInputs[1]=mxCreateString(flagName);
mexCallError= mexCallMATLAB(1, &mexCallOutput, 2, mexCallInputs, "getpref");
return(IsMATLABMatrixTrue(mexCallOutput));
}
/*
SetPreferencesDoubleValue()
Create the preference if it does not exist
*/
void SetPreferencesDoubleValue(char *flagName, double value )
{
int mexCallError;
mxArray *mexCallOutput;
mxArray *mexCallInputs[3];
mexCallInputs[0]=mxCreateString("Psychtoolbox");
mexCallInputs[1]=mxCreateString(flagName);
mexCallInputs[2]=mxCreateDoubleMatrix(1,1,mxREAL);
mxGetPr(mexCallInputs[2])[0]=value;
mexCallError= mexCallMATLAB(0, &mexCallOutput, 3, mexCallInputs, "setpref");
}
/*
SetPreferencesNativeDoublesArray()
Create the preference if it does not exist
*/
void PsychSetPreferencesNativeDoublesArray(char *flagName, mxArray *setMat )
{
int mexCallError;
mxArray *mexCallOutput;
mxArray *mexCallInputs[3];
mexCallInputs[0]=mxCreateString("Psychtoolbox");
mexCallInputs[1]=mxCreateString(flagName);
mexCallInputs[2]=setMat;
mexCallError= mexCallMATLAB(0, &mexCallOutput, 3, mexCallInputs, "setpref");
}
|