1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294 |
- #include <string.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <time.h>
- #include <errno.h>
- #include <ctype.h>
- #include "OpenDoor.h"
- #ifdef MULTINODE_AWARE
- #include <filewrap.h>
- #endif
- #include "genwrap.h"
- #define NO_QUESTION -1
- #define NEW_ANSWER -1
- #define QUESTIONS_VOTED_ON 0x0001
- #define QUESTIONS_NOT_VOTED_ON 0x0002
- #define MAX_QUESTIONS 200
- #define MAX_USERS 30000
- #define MAX_ANSWERS 15
- #define QUESTION_STR_SIZE 71
- #define ANSWER_STR_SIZE 31
- #define USER_FILENAME "vote.usr"
- #define QUESTION_FILENAME "vote.qst"
- #define FILE_ACCESS_MAX_WAIT 20
- #define QUESTION_PAGE_SIZE 17
- typedef struct
- {
- char szUserName[36];
- BYTE bVotedOnQuestion[MAX_QUESTIONS];
- } tUserRecord;
-
- tUserRecord CurrentUserRecord;
- int nCurrentUserNumber;
- typedef struct
- {
- char szQuestion[72];
- char aszAnswer[MAX_ANSWERS][32];
- INT32 nTotalAnswers;
- DWORD auVotesForAnswer[MAX_ANSWERS];
- DWORD uTotalVotes;
- DWORD bCanAddAnswers;
- char szCreatorName[36];
- time_t lCreationTime;
- } tQuestionRecord;
- int nViewResultsFrom = QUESTIONS_VOTED_ON;
- int nQuestionsVotedOn = 0;
- void CustomConfigFunction(char *pszKeyword, char *pszOptions);
- void BeforeExitFunction(void);
- void VoteOnQuestion(void);
- void ViewResults(void);
- int GetQuestion(int nQuestion, tQuestionRecord *pQuestionRecord);
- void AddQuestion(void);
- int ChooseQuestion(int nFromWhichQuestions, char *pszTitle, int *nLocation);
- void DisplayQuestionResult(tQuestionRecord *pQuestionRecord);
- int ReadOrAddCurrentUser(void);
- void WriteCurrentUser(void);
- FILE *ExclusiveFileOpen(char *pszFileName, char *pszMode, int *phHandle);
- void ExclusiveFileClose(FILE *pfFile, int hHandle);
- void WaitForEnter(void);
- #ifdef ODPLAT_WIN32
- int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
- LPSTR lpszCmdLine, int nCmdShow)
- #else
- int main(int argc, char *argv[])
- #endif
- {
-
- char chMenuChoice = '\0';
- char chYesOrNo;
- #ifdef ODPLAT_WIN32
-
- od_control.od_cmd_show = nCmdShow;
-
- (void)hInstance;
- (void)hPrevInstance;
- #endif
-
-
- strcpy(od_control.od_prog_name, "Vote");
- strcpy(od_control.od_prog_version, "Version 6.00");
- strcpy(od_control.od_prog_copyright, "Copyright 1991-1996 by Brian Pirie");
-
-
-
-
-
- #ifdef ODPLAT_WIN32
- od_parse_cmd_line(lpszCmdLine);
- #else
- od_parse_cmd_line(argc, argv);
- #endif
-
- od_control.od_config_file = INCLUDE_CONFIG_FILE;
-
- od_control.od_config_function = CustomConfigFunction;
-
-
-
- od_control.od_mps = INCLUDE_MPS;
-
-
-
- od_control.od_logfile = INCLUDE_LOGFILE;
-
-
- strcpy(od_control.od_logfile_name, "vote.log");
-
- od_control.od_before_exit = BeforeExitFunction;
-
-
-
-
-
- od_init();
-
-
-
- if(!ReadOrAddCurrentUser())
- {
-
-
- od_printf("Unable to access user file. File may be locked or full.\n\r");
- WaitForEnter();
- od_exit(1, FALSE);
- }
-
-
-
- while(chMenuChoice != 'E' && chMenuChoice != 'H')
- {
-
- od_clr_scr();
-
-
-
- if((chMenuChoice = od_hotkey_menu("VOTE", "VRADPEH", TRUE)) == 0)
- {
-
- od_printf("`bright red` Vote - OpenDoors 6.00 example program\n\r");\
- od_printf("`dark red`");
- if(od_control.user_ansi || od_control.user_avatar)
- {
- od_repeat((unsigned char)196, 79);
- }
- else
- {
- od_repeat('-', 79);
- }
- od_printf("\n\r\n\r\n\r`dark green`");
- od_printf(" [`bright green`V`dark green`] Vote on a question\n\r\n\r");
- od_printf(" [`bright green`R`dark green`] View the results of question\n\r\n\r");
- od_printf(" [`bright green`A`dark green`] Add a new question\n\r\n\r");
- od_printf(" [`bright green`P`dark green`] Page system operator for chat\n\r\n\r");
- od_printf(" [`bright green`E`dark green`] Exit door and return to the BBS\n\r\n\r");
- od_printf(" [`bright green`H`dark green`] End call (hangup)\n\r\n\r\n\r");
- od_printf("`bright white`Press the key corresponding to the option of your choice. (%d mins)\n\r`dark green`",
- od_control.user_timelimit);
- \
-
-
- chMenuChoice = od_get_answer("VRADPEH");
- }
-
- switch(chMenuChoice)
- {
- case 'V':
-
- VoteOnQuestion();
- break;
-
- case 'R':
-
- ViewResults();
- break;
-
- case 'A':
-
- AddQuestion();
- break;
-
- case 'P':
-
- od_page();
- break;
- case 'H':
-
- od_printf("\n\rAre you sure you wish to hangup? (Y/N) ");
-
- chYesOrNo = od_get_answer("YN");
- if(chYesOrNo == 'N')
- {
-
-
- chMenuChoice = '\0';
- }
- break;
- }
- }
- if(chMenuChoice == 'H')
- {
-
- od_exit(0, TRUE);
- }
- else
- {
-
- od_printf("Returning to BBS, please wait...\n\r");
- od_exit(0, FALSE);
- }
- return(0);
- }
- void CustomConfigFunction(char *pszKeyword, char *pszOptions)
- {
- if(stricmp(pszKeyword, "ViewUnanswered") == 0)
- {
-
-
- if(stricmp(pszOptions, "Yes") == 0)
- {
- nViewResultsFrom = QUESTIONS_VOTED_ON | QUESTIONS_NOT_VOTED_ON;
- }
- else if(stricmp(pszOptions, "No") == 0)
- {
- nViewResultsFrom = QUESTIONS_VOTED_ON;
- }
- }
- }
- void BeforeExitFunction(void)
- {
- char szLogMessage[80];
-
-
- sprintf(szLogMessage, "User has voted on %d question(s)",
- nQuestionsVotedOn);
- od_log_write(szLogMessage);
- }
- void VoteOnQuestion(void)
- {
- int nQuestion;
- int nAnswer;
- tQuestionRecord QuestionRecord;
- char szNewAnswer[ANSWER_STR_SIZE];
- char szUserInput[3];
- FILE *fpFile;
- int hFile;
- int nPageLocation = 0;
-
-
- for(;;)
- {
-
-
- nQuestion = ChooseQuestion(QUESTIONS_NOT_VOTED_ON,
- " Vote On A Question\n\r",
- &nPageLocation);
-
-
- if(nQuestion == NO_QUESTION)
- {
- return;
- }
-
- if(!GetQuestion(nQuestion, &QuestionRecord))
- {
-
- return;
- }
-
-
-
- if(QuestionRecord.nTotalAnswers >= MAX_ANSWERS)
- {
- QuestionRecord.bCanAddAnswers = FALSE;
- }
-
-
- for(;;)
- {
-
-
- od_clr_scr();
-
- od_printf("`bright red`%s\n\r\n\r", QuestionRecord.szQuestion);
-
- for(nAnswer = 0; nAnswer < QuestionRecord.nTotalAnswers; ++nAnswer)
- {
-
- od_printf("`bright green`%d. `dark green`%s\n\r",
- nAnswer + 1,
- QuestionRecord.aszAnswer[nAnswer]);
- }
-
- od_printf("\n\r`bright white`Enter answer number, ");
- if(QuestionRecord.bCanAddAnswers)
- {
- od_printf("[A] to add your own response, ");
- }
- od_printf("[Q] to quit: `dark green`");
-
-
- od_input_str(szUserInput, 2, ' ', 255);
-
- od_printf("\n\r");
-
-
- if(stricmp(szUserInput, "Q") == 0)
- {
- return;
- }
-
- else if (stricmp(szUserInput, "A") == 0
- && QuestionRecord.bCanAddAnswers)
- {
-
- od_printf("`bright green`Please enter your new answer:\n\r");
- od_printf("`dark green`[------------------------------]\n\r ");
-
-
- od_input_str(szNewAnswer, ANSWER_STR_SIZE - 1, ' ', 255);
-
-
- nAnswer = NEW_ANSWER;
-
- if(strlen(szNewAnswer) > 0)
- {
- break;
- }
- }
-
- nAnswer = atoi(szUserInput) - 1;
-
- if(nAnswer < 0 || nAnswer >= QuestionRecord.nTotalAnswers)
- {
-
- od_printf("That is not a valid response.\n\r");
- WaitForEnter();
- }
- else
- {
-
- break;
- }
- }
-
-
-
- fpFile = ExclusiveFileOpen(QUESTION_FILENAME, "r+b", &hFile);
- if(fpFile == NULL)
- {
-
- od_printf("Unable to access the question file.\n\r");
- WaitForEnter();
- return;
- }
-
-
-
- fseek(fpFile, (long)nQuestion * sizeof(tQuestionRecord), SEEK_SET);
- if(fread(&QuestionRecord, sizeof(tQuestionRecord), 1, fpFile) != 1)
- {
-
- ExclusiveFileClose(fpFile, hFile);
- od_printf("Unable to read from question file.\n\r");
- WaitForEnter();
- return;
- }
-
-
- if(nAnswer == NEW_ANSWER)
- {
-
- if(QuestionRecord.nTotalAnswers >= MAX_ANSWERS)
- {
- ExclusiveFileClose(fpFile, hFile);
- od_printf("Sorry, this question already has the maximum number of answers.\n\r");
- WaitForEnter();
- return;
- }
-
-
- nAnswer = QuestionRecord.nTotalAnswers;
-
-
- ++QuestionRecord.nTotalAnswers;
-
-
- strcpy(QuestionRecord.aszAnswer[nAnswer], szNewAnswer);
- QuestionRecord.auVotesForAnswer[nAnswer] = 0;
- }
-
-
- ++QuestionRecord.auVotesForAnswer[nAnswer];
- ++QuestionRecord.uTotalVotes;
-
-
- fseek(fpFile, (long)nQuestion * sizeof(tQuestionRecord), SEEK_SET);
- if(fwrite(&QuestionRecord, sizeof(tQuestionRecord), 1, fpFile) != 1)
- {
-
- ExclusiveFileClose(fpFile, hFile);
- od_printf("Unable to write question to file.\n\r");
- WaitForEnter();
- return;
- }
-
-
- ExclusiveFileClose(fpFile, hFile);
-
-
- CurrentUserRecord.bVotedOnQuestion[nQuestion] = TRUE;
-
-
- fpFile = ExclusiveFileOpen(USER_FILENAME, "r+b", &hFile);
- if(fpFile == NULL)
- {
-
- od_printf("Unable to access the user file.\n\r");
- WaitForEnter();
- return;
- }
-
- fseek(fpFile, nCurrentUserNumber * sizeof(tUserRecord), SEEK_SET);
- if(fwrite(&CurrentUserRecord, sizeof(tUserRecord), 1, fpFile) != 1)
- {
-
- ExclusiveFileClose(fpFile, hFile);
- od_printf("Unable to write to user file.\n\r");
- WaitForEnter();
- return;
- }
-
-
- ExclusiveFileClose(fpFile, hFile);
-
-
- DisplayQuestionResult(&QuestionRecord);
-
- nQuestionsVotedOn++;
- }
- }
- void ViewResults(void)
- {
- int nChoice;
- tQuestionRecord QuestionRecord;
- int nPageLocation = 0;
-
- for(;;)
- {
-
-
- nChoice = ChooseQuestion(nViewResultsFrom,
- " View Results\n\r", &nPageLocation);
-
- if(nChoice == NO_QUESTION)
- {
- return;
- }
-
-
- if(!GetQuestion(nChoice, &QuestionRecord))
- {
- return;
- }
-
-
- DisplayQuestionResult(&QuestionRecord);
- }
- }
- int GetQuestion(int nQuestion, tQuestionRecord *pQuestionRecord)
- {
- FILE *fpQuestionFile;
- int hQuestionFile;
-
- fpQuestionFile = ExclusiveFileOpen(QUESTION_FILENAME, "r+b",
- &hQuestionFile);
- if(fpQuestionFile == NULL)
- {
-
- od_printf("Unable to access the question file.\n\r");
- WaitForEnter();
- return(FALSE);
- }
-
-
- fseek(fpQuestionFile, (long)nQuestion * sizeof(tQuestionRecord), SEEK_SET);
-
-
- if(fread(pQuestionRecord, sizeof(tQuestionRecord), 1, fpQuestionFile) != 1)
- {
-
- ExclusiveFileClose(fpQuestionFile, hQuestionFile);
- od_printf("Unable to read from question file.\n\r");
- WaitForEnter();
- return(FALSE);;
- }
-
-
- ExclusiveFileClose(fpQuestionFile, hQuestionFile);
-
- return(TRUE);
- }
-
- void AddQuestion(void)
- {
- tQuestionRecord QuestionRecord;
- FILE *fpQuestionFile;
- int hQuestionFile;
- char szLogMessage[100];
-
- od_clr_scr();
-
-
- od_printf("`bright red` Add A Question\n\r");
- od_printf("`dark red`");
- if(od_control.user_ansi || od_control.user_avatar)
- {
- od_repeat((unsigned char)196, 79);
- }
- else
- {
- od_repeat('-', 79);
- }
- od_printf("\n\r\n\r");
-
-
- od_printf("`bright green`Enter Your Question (blank line cancels)\n\r");
- od_printf("`dark green`[----------------------------------------------------------------------]\n\r ");
- od_input_str(QuestionRecord.szQuestion, QUESTION_STR_SIZE - 1, ' ', 255);
-
-
- if(strlen(QuestionRecord.szQuestion) == 0)
- {
- return;
- }
-
-
- od_printf("\n\r`bright green`Enter Possible Answers (blank line when done)\n\r");
- od_printf("`dark green` [------------------------------]\n\r");
-
-
- for(QuestionRecord.nTotalAnswers = 0;
- QuestionRecord.nTotalAnswers < MAX_ANSWERS;
- QuestionRecord.nTotalAnswers++)
- {
-
- od_printf("`bright green`%2d: `dark green`", QuestionRecord.nTotalAnswers + 1);
-
-
- od_input_str(QuestionRecord.aszAnswer[QuestionRecord.nTotalAnswers],
- ANSWER_STR_SIZE - 1, ' ', 255);
-
-
- if(strlen(QuestionRecord.aszAnswer[QuestionRecord.nTotalAnswers]) == 0)
- {
- break;
- }
-
-
- QuestionRecord.auVotesForAnswer[QuestionRecord.nTotalAnswers] = 0;
- }
-
-
- if(QuestionRecord.nTotalAnswers == 0)
- {
- return;
- }
-
- od_printf("\n\r`bright green`Should voters be able to add their own options? (Y/N) `dark green`");
-
-
- if(od_get_answer("YN") == 'Y')
- {
-
- od_printf("Yes\n\r\n\r");
-
-
- QuestionRecord.bCanAddAnswers = TRUE;
- }
- else
- {
-
- od_printf("No\n\r\n\r");
-
- QuestionRecord.bCanAddAnswers = FALSE;
- }
-
-
- od_printf("`bright green`Do you wish to save this new question? (Y/N) `dark green`");
-
-
- if(od_get_answer("YN") == 'N')
- {
- return;
- }
-
- QuestionRecord.uTotalVotes = 0;
-
-
- strcpy(QuestionRecord.szCreatorName, od_control.user_name);
- QuestionRecord.lCreationTime = time(NULL);
-
-
- fpQuestionFile = ExclusiveFileOpen(QUESTION_FILENAME, "a+b",
- &hQuestionFile);
- if(fpQuestionFile == NULL)
- {
- od_printf("Unable to access the question file.\n\r");
- WaitForEnter();
- return;
- }
-
-
- fseek(fpQuestionFile, 0, SEEK_END);
-
-
-
- if(ftell(fpQuestionFile) / sizeof(tQuestionRecord) >= MAX_QUESTIONS)
- {
- ExclusiveFileClose(fpQuestionFile, hQuestionFile);
- od_printf("Cannot add another question, Vote is limited to %d questions.\n\r", MAX_QUESTIONS);
- WaitForEnter();
- return;
- }
-
-
- if(fwrite(&QuestionRecord, sizeof(QuestionRecord), 1, fpQuestionFile) != 1)
- {
- ExclusiveFileClose(fpQuestionFile, hQuestionFile);
- od_printf("Unable to write to question file.\n\r");
- WaitForEnter();
- return;
- }
-
-
- ExclusiveFileClose(fpQuestionFile, hQuestionFile);
-
- sprintf(szLogMessage, "User adding questions: %s",
- QuestionRecord.szQuestion);
- od_log_write(szLogMessage);
- }
-
- int ChooseQuestion(int nFromWhichQuestions, char *pszTitle, int *nLocation)
- {
- int nCurrent;
- int nFileQuestion = 0;
- int nPagedToQuestion = *nLocation;
- int nDisplayedQuestion = 0;
- char bVotedOnQuestion;
- char chCurrent;
- tQuestionRecord QuestionRecord;
- FILE *fpQuestionFile;
- int hQuestionFile;
- static char szQuestionName[MAX_QUESTIONS][QUESTION_STR_SIZE];
- static int nQuestionNumber[MAX_QUESTIONS];
-
-
- fpQuestionFile = ExclusiveFileOpen(QUESTION_FILENAME, "r+b",
- &hQuestionFile);
-
-
- if(fpQuestionFile == NULL)
- {
-
- od_printf("\n\rNo questions have been created so far.\n\r");
-
-
- WaitForEnter();
-
-
- return(NO_QUESTION);
- }
-
-
- while(fread(&QuestionRecord, sizeof(QuestionRecord), 1, fpQuestionFile) == 1)
- {
-
- bVotedOnQuestion = CurrentUserRecord.bVotedOnQuestion[nFileQuestion];
-
-
-
- if((bVotedOnQuestion && (nFromWhichQuestions & QUESTIONS_VOTED_ON)) ||
- (!bVotedOnQuestion && (nFromWhichQuestions & QUESTIONS_NOT_VOTED_ON)))
- {
-
- strcpy(szQuestionName[nDisplayedQuestion],
- QuestionRecord.szQuestion);
- nQuestionNumber[nDisplayedQuestion] = nFileQuestion;
-
-
- nDisplayedQuestion++;
- }
-
-
- ++nFileQuestion;
- }
-
-
- ExclusiveFileClose(fpQuestionFile, hQuestionFile);
-
-
- if(nDisplayedQuestion == 0)
- {
-
- if((nFromWhichQuestions & QUESTIONS_VOTED_ON)
- && (nFromWhichQuestions & QUESTIONS_NOT_VOTED_ON))
- {
- od_printf("\n\rThere are no questions.\n\r");
- }
-
- else if(nFromWhichQuestions & QUESTIONS_VOTED_ON)
- {
- od_printf("\n\rThere are no questions that you have voted on.\n\r");
- }
-
- else
- {
- od_printf("\n\rYou have voted on all the questions.\n\r");
- }
-
-
- WaitForEnter();
-
-
- return(NO_QUESTION);
- }
-
- while(nPagedToQuestion >= nDisplayedQuestion)
- {
- nPagedToQuestion -= QUESTION_PAGE_SIZE;
- }
-
-
- for(;;)
- {
-
- od_clr_scr();
-
- od_printf("`bright red`");
- od_printf(pszTitle);
- od_printf("`dark red`");
- if(od_control.user_ansi || od_control.user_avatar)
- {
- od_repeat((unsigned char)196, 79);
- }
- else
- {
- od_repeat('-', 79);
- }
- od_printf("\n\r");
-
-
- for(nCurrent = 0;
- nCurrent < QUESTION_PAGE_SIZE
- && nCurrent < (nDisplayedQuestion - nPagedToQuestion);
- ++nCurrent)
- {
-
- if(nCurrent < 9)
- {
- chCurrent = (char)('1' + nCurrent);
- }
- else
- {
- chCurrent = (char)('A' + (nCurrent - 9));
- }
-
-
- od_printf("`bright green`%c.`dark green`", chCurrent);
- od_printf(" %s\n\r", szQuestionName[nCurrent + nPagedToQuestion]);
- }
-
- od_printf("\n\r`bright white`[Page %d] Choose a question or",
- (nPagedToQuestion / QUESTION_PAGE_SIZE) + 1);
- if(nPagedToQuestion < nDisplayedQuestion - QUESTION_PAGE_SIZE)
- {
- od_printf(" [N]ext page,");
- }
- if(nPagedToQuestion > 0)
- {
- od_printf(" [P]revious page,");
- }
- od_printf(" [Q]uit.\n\r");
-
-
- for(;;)
- {
-
- chCurrent = (char)od_get_key(TRUE);
- chCurrent = (char)toupper(chCurrent);
-
-
-
-
- if(chCurrent == 'Q')
- {
-
- return(NO_QUESTION);
- }
-
-
- else if(chCurrent == 'P')
- {
-
- if(nPagedToQuestion > 0)
- {
-
- nPagedToQuestion -= QUESTION_PAGE_SIZE;
-
-
- break;
- }
- }
-
-
- else if(chCurrent == 'N')
- {
-
- if(nPagedToQuestion < nDisplayedQuestion - QUESTION_PAGE_SIZE)
- {
-
- nPagedToQuestion += QUESTION_PAGE_SIZE;
-
- break;
- }
- }
-
-
- else if ((chCurrent >= '1' && chCurrent <= '9')
- || (chCurrent >= 'A' && chCurrent <= 'H'))
- {
-
- if(chCurrent >= '1' && chCurrent <= '9')
- {
- nCurrent = chCurrent - '1';
- }
- else
- {
- nCurrent = (chCurrent - 'A') + 9;
- }
-
-
- nCurrent += nPagedToQuestion;
-
- if(nCurrent < nDisplayedQuestion)
- {
-
- *nLocation = nPagedToQuestion;
-
-
- return(nQuestionNumber[nCurrent]);
- }
- }
- }
- }
- }
- void DisplayQuestionResult(tQuestionRecord *pQuestionRecord)
- {
- int nAnswer;
- int uPercent;
-
- od_clr_scr();
-
- if(pQuestionRecord->uTotalVotes == 0)
- {
-
-
- od_printf("Nobody has voted on this question yet.\n\r");
- WaitForEnter();
- return;
- }
-
- od_printf("`bright red`%s\n\r", pQuestionRecord->szQuestion);
-
- od_printf("`dark red`Question created by %s on %s\n\r",
- pQuestionRecord->szCreatorName,
- ctime(&pQuestionRecord->lCreationTime));
-
-
- od_printf("`bright green`Response Votes Percent Graph\n\r`dark green`");
- if(od_control.user_ansi || od_control.user_avatar)
- {
- od_repeat((unsigned char)196, 79);
- }
- else
- {
- od_repeat('-', 79);
- }
- od_printf("\n\r");
-
- for(nAnswer = 0; nAnswer < pQuestionRecord->nTotalAnswers; ++nAnswer)
- {
-
- uPercent = (pQuestionRecord->auVotesForAnswer[nAnswer] * 100)
- / pQuestionRecord->uTotalVotes;
-
-
- od_printf("`dark green`%-30.30s %-5u %3u%% `bright white`",
- pQuestionRecord->aszAnswer[nAnswer],
- pQuestionRecord->auVotesForAnswer[nAnswer],
- uPercent);
-
-
- if(od_control.user_ansi || od_control.user_avatar)
- {
- od_repeat((unsigned char)220, (unsigned char)((uPercent * 31) / 100));
- }
- else
- {
- od_repeat('=', (unsigned char)((uPercent * 31) / 100));
- }
-
- od_printf("\n\r");
- }
-
-
- od_printf("`dark green`");
- if(od_control.user_ansi || od_control.user_avatar)
- {
- od_repeat((unsigned char)196, 79);
- }
- else
- {
- od_repeat('-', 79);
- }
- od_printf("\n\r");
- od_printf("`dark green` TOTAL: %u\n\r\n\r",
- pQuestionRecord->uTotalVotes);
-
-
- WaitForEnter();
- }
- int ReadOrAddCurrentUser(void)
- {
- FILE *fpUserFile;
- int hUserFile;
- int bGotUser = FALSE;
- int nQuestion;
-
-
-
- fpUserFile = ExclusiveFileOpen(USER_FILENAME, "a+b", &hUserFile);
-
- if(fpUserFile == NULL)
- {
- return(FALSE);
- }
-
- nCurrentUserNumber = 0;
-
- while(fread(&CurrentUserRecord, sizeof(tUserRecord), 1, fpUserFile) == 1)
- {
-
- if(strcmp(CurrentUserRecord.szUserName, od_control.user_name) == 0)
- {
-
- bGotUser = TRUE;
-
-
- break;
- }
-
- nCurrentUserNumber++;
- }
-
-
- if(!bGotUser && nCurrentUserNumber < MAX_USERS)
- {
-
- strcpy(CurrentUserRecord.szUserName, od_control.user_name);
-
-
- for(nQuestion = 0; nQuestion < MAX_QUESTIONS; ++nQuestion)
- {
- CurrentUserRecord.bVotedOnQuestion[nQuestion] = FALSE;
- }
-
-
- if(fwrite(&CurrentUserRecord, sizeof(tUserRecord), 1, fpUserFile) == 1)
- {
-
- bGotUser = TRUE;
- }
- }
-
- ExclusiveFileClose(fpUserFile, hUserFile);
-
-
- return(bGotUser);
- }
- void WriteCurrentUser(void)
- {
- FILE *fpUserFile;
- int hUserFile;
-
-
-
- fpUserFile = ExclusiveFileOpen(USER_FILENAME, "r+b", &hUserFile);
-
-
- if(fpUserFile == NULL)
- {
- od_printf("Unable to access the user file.\n\r");
- WaitForEnter();
- return;
- }
-
-
-
- fseek(fpUserFile, (long)nCurrentUserNumber * sizeof(tUserRecord), SEEK_SET);
-
- if(fwrite(&CurrentUserRecord, sizeof(tUserRecord), 1, fpUserFile) == 1)
- {
-
- ExclusiveFileClose(fpUserFile, hUserFile);
- od_printf("Unable to update your user record file.\n\r");
- WaitForEnter();
- return;
- }
-
-
- ExclusiveFileClose(fpUserFile, hUserFile);
- }
- FILE *ExclusiveFileOpen(char *pszFileName, char *pszMode, int *phHandle)
- {
- #ifdef MULTINODE_AWARE
-
-
- FILE *fpFile = NULL;
- time_t StartTime = time(NULL);
- int hFile;
-
- while((hFile = sopen(pszFileName, O_BINARY | O_RDWR, SH_DENYRW,
- S_IREAD | S_IWRITE)) == -1)
- {
-
-
-
-
- if(errno != EACCES ||
- difftime(time(NULL), StartTime) >= FILE_ACCESS_MAX_WAIT)
- {
- hFile = sopen(pszFileName, O_BINARY | O_CREAT, SH_DENYRW,
- S_IREAD | S_IWRITE);
- break;
- }
-
-
-
- od_kernel();
- }
-
- if(hFile != -1)
- {
- fpFile = fdopen(hFile, pszMode);
- if(fpFile == NULL)
- {
- close(hFile);
- }
- }
-
- *phHandle = hFile;
-
- return(fpFile);
- #else
-
- (void)phHandle;
-
-
- return(fopen(pszFileName, pszMode));
- #endif
- }
- void ExclusiveFileClose(FILE *pfFile, int hHandle)
- {
- fclose(pfFile);
- #ifdef MULTINODE_AWARE
- close(hHandle);
- #else
-
- (void)hHandle;
- #endif
- }
- void WaitForEnter(void)
- {
-
- od_printf("`bright white`Press [ENTER] to continue.\n\r");
-
-
- od_get_answer("\n\r");
- }
|