Annotation of capa/capa51/GUITools/scorer.h, revision 1.2
1.2 ! albertel 1: /* scorer functions
! 2: Copyright (C) 1992-2000 Michigan State University
! 3:
! 4: The CAPA system is free software; you can redistribute it and/or
! 5: modify it under the terms of the GNU Library General Public License as
! 6: published by the Free Software Foundation; either version 2 of the
! 7: License, or (at your option) any later version.
! 8:
! 9: The CAPA system is distributed in the hope that it will be useful,
! 10: but WITHOUT ANY WARRANTY; without even the implied warranty of
! 11: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! 12: Library General Public License for more details.
! 13:
! 14: You should have received a copy of the GNU Library General Public
! 15: License along with the CAPA system; see the file COPYING. If not,
! 16: write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
! 17: Boston, MA 02111-1307, USA.
! 18:
! 19: As a special exception, you have permission to link this program
! 20: with the TtH/TtM library and distribute executables, as long as you
! 21: follow the requirements of the GNU GPL in regard to all of the
! 22: software in the executable aside from TtH/TtM.
! 23: */
! 24:
1.1 albertel 25: /*
26: * scorer.h
1.2 ! albertel 27: * Guy Albertelli II 1997
1.1 albertel 28: */
29: #ifndef _SCORER_H_
30: #define _SCORER_H_ 1
31:
32: /* Tcl command functions */
33: int buildStudentList(ClientData, Tcl_Interp*, int, char**);
34: int freeStudentList(ClientData, Tcl_Interp*, int, char**);
35: int getAnswersFromSet(ClientData, Tcl_Interp *, int, char**);
36: int compareCapaID(ClientData, Tcl_Interp *, int, char**);
37: int scorer_get_entry(ClientData, Tcl_Interp *, int, char**);
38: int scorer_set_entry(ClientData, Tcl_Interp *, int, char**);
39:
40: #define SCO_FATALERROR 1
41: #define SCO_NEW 2
42: #define SCO_EXIST 3
43:
44: #define CAPA_METHOD 1
45: #define LENIENT_METHOD 2
46: #define STRICT 3
47:
48: #define YES 1
49: #define NO 0
50:
51: #ifndef NeXT
52: #define TRUE 1
53: #define FALSE 0
54: #endif
55:
56: #define MAX_QUEST 50
57: #define MAX_ANSWER_LENGTH 23
58: #define CONFIG_LINE_LENGTH 250
59: #define MAX_LINE_LENGTH 2048
60: #define MAX_PID_MATCHES 100
61: #define MAX_NUM_FLAG 30
62: #define SCAN_INPUT_LENGTH 577
63:
64: #define SCANTRON_ERROR 34
65: #define SCANTRON_OK 13
66:
67: #define ONE_OUT_OF_8 'a'
68: #define GLE 'b'
69: #define TF 'c'
70: #define ASSIGNED 'd'
71: #define N_OUT_OF_M 'e'
72: #define SINGLE_DIGIT 'f'
73: #define STRING_MATCH 'g'
74:
75: #define QUESTION_MENU 'y'
76: #define QUESTION_STOP 'z'
77:
78: #define CHECK_PIN 1
79: #define ANON_MODE 3
80: #define CHECK_SPACES 4
81: #define SURVEY_MODE 5
82: #define SURVEY_HEADER 6
83: #define PAUSE_TIME 8
84: #define ID_FORMAT 9
85: #define MULTIPLE_MARKS 10
86: #define QUERY_ABOUT_PID 11
87: #define LOGGING 12
88:
89: #define ANUMBER_FORMAT 1
90: #define SOC_SEC_FORMAT 2
91:
92: #define E_OPENOUTPUT 1
93: #define E_OPENOUTPUTRETURN 2
94: #define E_MODIFYFLAG 3
95: #define E_GETYESNO 4
96: #define E_PRINTQUESTIONS 5
97: #define E_OPENSERIAL 6
98: #define E_INITSCANTRON 7
99: #define E_BADFORM 8
100: #define E_UNKNOWSCANTRON 9
101: #define E_BUILDPIDPIN 10
102: #define E_GETFORM 11
103: #define E_CHECKFORM 12
104: #define E_HANDLESAVEFORM 13
105: #define E_INTREPRETFORM 14
106: #define E_CAPA_GET_STUDENT 15
107: #define E_PARSER 16
108: #define E_UNKNOWN_QTYPE 17
109: #define E_PARSER_DIFFERENT 18
110: #define E_INVALIDIDFORMAT 19
111: #define E_SINGLEDIGIT 20
112: #define E_GARBAGEPIDDATA 21
113: #define E_LOGERROR 22
114: #define E_GRADINGMETHOD 23
115:
116: #define GF_SPACES 1
117: #define GF_MULTIPLEMARKS 2
118: #define GF_EOF 4
119: #define GF_PINWRONG 8
120:
121: #define CF_STID 2
122: #define CF_CLASSL 3
123: #define CF_PIN 4
124: #define CF_NOERROR 5
125:
126: #define LOG_NOPINFOUND 1
127: #define LOG_PINWRONG 2
128: #define LOG_STUDENTNOTEXIST 3
129: #define LOG_PINNOTMATCH 4
130: #define LOG_BADPID 5
131: #define LOG_BADPIN 6
132: #define LOG_SPACES 7
133: #define LOG_MULTIPLEMARKS 8
134:
135: extern char NUMBER[10];
136: extern char LETTER[10];
137:
138: typedef struct
139: {
140: char answerPID[10];
141: char questionPID[10];
142: char PIN[7];
143: int classlPIN;
144: char Answers[MAX_QUEST][MAX_ANSWER_LENGTH];
145: char Name[17];
146: char serialNumber[7];
147: char origString[577];
148: int error;
149: } Student;
150:
151: typedef struct
152: {
153: char type;
154: int points;
155: int leafs;
156: } Question;
157:
158: typedef struct
159: {
160: char Class[10];
161: int SetId;
162: int NumQuestions;
163: int NumOfStudents;
164: int CheckPIN;
165: int AnonMode;
166: int CheckSpaces;
167: int CheckMultipleMarks;
168: int SurveyMode;
169: int SurveyHeader;
170: int Pause;
171: float PauseTime;
172: int IdFormat;
173: int QueryAboutPID;
174: int log;
175: FILE* logFile;
176: int linesRead;
177: int loggedErrors;
178: } Flags;
179:
180: typedef struct
181: {
182: int writefd;
183: int readfd;
184: } SerialLines;
185:
186: typedef struct
187: {
188: char PID[MAX_STUDENT_NUMBER];
189: int PIN;
190: char *capaid_plus;
191: } PIDPIN;
192:
193: typedef struct PIDPINlist
194: {
195: char *PID;/*FIXME*/
196: int PIN; /*FIXME*/
197: char* classname;
198: long num;
199: PIDPIN* classList;
200: int numStudents;
201: struct PIDPINlist *next;
202: } PIDPINlist;
203: #endif /*_SCORER_H_*/
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>