swad-core/swad_exam_event.h

158 lines
5.9 KiB
C
Raw Normal View History

2020-04-20 01:26:46 +02:00
// swad_exam_event.h: exam events (each ocurrence of an exam)
#ifndef _SWAD_EXA_EVE
#define _SWAD_EXA_EVE
/*
SWAD (Shared Workspace At a Distance in Spanish),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
Copyright (C) 1999-2020 Antonio Ca<EFBFBD>as Vargas
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/********************************* Headers ***********************************/
/*****************************************************************************/
#include "swad_scope.h"
#include "swad_test.h"
/*****************************************************************************/
/************************** Public types and constants ***********************/
/*****************************************************************************/
2020-04-22 03:15:04 +02:00
#define ExaEvt_NEW_EVENT_SECTION_ID "new_event"
2020-04-20 01:26:46 +02:00
#define ExaEvt_AFTER_LAST_QUESTION ((unsigned)((1UL << 31) - 1)) // 2^31 - 1, don't change this number because it is used in database to indicate that a event is finished
#define ExaEvt_NUM_SHOWING 5
typedef enum
{
ExaEvt_START, // Start: don't show anything
2020-04-28 13:12:18 +02:00
ExaEvt_STEM, // Showing only the question stem
2020-04-20 01:26:46 +02:00
ExaEvt_ANSWERS, // Showing the question stem and the answers
ExaEvt_RESULTS, // Showing the results
2020-04-28 13:12:18 +02:00
ExaEvt_END, // End: don't show anything
2020-04-20 01:26:46 +02:00
} ExaEvt_Showing_t;
#define ExaEvt_SHOWING_DEFAULT ExaEvt_START
2020-04-22 03:15:04 +02:00
struct ExaEvt_Event
2020-04-20 01:26:46 +02:00
{
long EvtCod;
long ExaCod;
long UsrCod;
time_t TimeUTC[Dat_NUM_START_END_TIME];
char Title[Exa_MAX_BYTES_TITLE + 1];
2020-05-05 20:09:28 +02:00
bool Hidden;
2020-04-20 01:26:46 +02:00
struct
{
unsigned QstInd; // 0 means that the exam has not started. First question has index 1.
long QstCod;
time_t QstStartTimeUTC;
ExaEvt_Showing_t Showing; // What is shown on teacher's screen
long Countdown; // > 0 ==> countdown in progress
// = 0 ==> countdown over ==> go to next step
// < 0 ==> no countdown at this time
unsigned NumCols; // Number of columns for answers on teacher's screen
bool ShowQstResults; // Show global results of current question while playing
bool ShowUsrResults; // Show exam with results of all questions for the student
2020-04-23 02:28:28 +02:00
bool Happening; // Is being played now?
unsigned NumParticipants;
2020-04-20 01:26:46 +02:00
} Status; // Status related to event playing
};
struct ExaEvt_UsrAnswer
{
int NumOpt; // < 0 ==> no answer selected
int AnsInd; // < 0 ==> no answer selected
};
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
long ExaEvt_GetEvtCodBeingPlayed (void);
2020-04-23 23:09:28 +02:00
void ExaEvt_ResetEvent (struct ExaEvt_Event *Event);
2020-04-20 01:26:46 +02:00
void ExaEvt_ListEvents (struct Exa_Exams *Exams,
struct Exa_Exam *Exam,
bool PutFormNewEvent);
2020-04-22 03:15:04 +02:00
void ExaEvt_GetDataOfEventByCod (struct ExaEvt_Event *Event);
2020-04-20 01:26:46 +02:00
void ExaEvt_ToggleVisibilResultsEvtUsr (void);
void ExaEvt_RequestRemoveEvent (void);
void ExaEvt_RemoveEvent (void);
void ExaEvt_RemoveEventsInExamFromAllTables (long ExaCod);
void ExaEvt_RemoveEventInCourseFromAllTables (long CrsCod);
void ExaEvt_RemoveUsrFromEventTablesInCrs (long UsrCod,long CrsCod);
2020-05-05 20:09:28 +02:00
void ExaEvt_HideEvent (void);
void ExaEvt_UnhideEvent (void);
2020-04-20 01:26:46 +02:00
void ExaEvt_PutParamsEdit (void *Exams);
void ExaEvt_GetAndCheckParameters (struct Exa_Exams *Exams,
struct Exa_Exam *Exam,
2020-04-22 03:15:04 +02:00
struct ExaEvt_Event *Event);
2020-04-20 01:26:46 +02:00
long ExaEvt_GetParamEvtCod (void);
2020-04-28 03:14:25 +02:00
void ExaEvt_PutButtonNewEvent (struct Exa_Exams *Exams,long ExaCod);
void ExaEvt_RequestNewEvent (void);
2020-04-20 01:26:46 +02:00
void ExaEvt_CreateNewEventTch (void);
void ExaEvt_ResumeEvent (void);
void ExaEvt_GetIndexes (long EvtCod,unsigned QstInd,
unsigned Indexes[Tst_MAX_OPTIONS_PER_QUESTION]);
void ExaEvt_RemoveGroup (long GrpCod);
void ExaEvt_RemoveGroupsOfType (long GrpTypCod);
void ExaEvt_PlayPauseEvent (void);
void ExaEvt_ChangeNumColsEvt (void);
void ExaEvt_ToggleVisibilResultsEvtQst (void);
void ExaEvt_BackEvent (void);
void ExaEvt_ForwardEvent (void);
unsigned ExaEvt_GetNumEventsInExam (long ExaCod);
unsigned ExaEvt_GetNumUnfinishedEventsInExam (long ExaCod);
2020-04-22 03:15:04 +02:00
bool ExaEvt_CheckIfICanPlayThisEventBasedOnGrps (const struct ExaEvt_Event *Event);
2020-04-20 01:26:46 +02:00
2020-04-22 03:15:04 +02:00
void ExaEvt_WriteChoiceAnsViewEvent (const struct ExaEvt_Event *Event,
2020-04-20 01:26:46 +02:00
const struct Tst_Question *Question,
const char *Class,bool ShowResult);
2020-04-23 02:28:28 +02:00
bool ExaEvt_RegisterMeAsParticipantInEvent (struct ExaEvt_Event *Event);
2020-04-20 01:26:46 +02:00
void ExaEvt_GetEventBeingPlayed (void);
void ExaEvt_JoinEventAsStd (void);
void ExaEvt_RemoveMyQuestionAnswer (void);
void ExaEvt_StartCountdown (void);
void ExaEvt_RefreshEventTch (void);
void ExaEvt_RefreshEventStd (void);
void ExaEvt_GetQstAnsFromDB (long EvtCod,long UsrCod,unsigned QstInd,
struct ExaEvt_UsrAnswer *UsrAnswer);
void ExaEvt_ReceiveQuestionAnswer (void);
unsigned ExaEvt_GetNumUsrsWhoAnsweredQst (long EvtCod,unsigned QstInd);
unsigned ExaEvt_GetNumUsrsWhoHaveChosenAns (long EvtCod,unsigned QstInd,unsigned AnsInd);
void ExaEvt_DrawBarNumUsrs (unsigned NumRespondersAns,unsigned NumRespondersQst,bool Correct);
#endif