123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602 |
- #include "OpenDoor.h"
- #include <string.h>
- #include <stdio.h>
- #include <time.h>
- #include <errno.h>
- #include <stdlib.h>
- #include "genwrap.h"
- #define HIGH_SCORES 15
- #define INITIAL_COURSE_WIDTH 30
- #define MINIMUM_COURSE_WIDTH 4
- #define DECREASE_WIDTH_AFTER 100
- #define CHANGE_DIRECTION 10
- #define MAX_NAME_SIZE 35
- #define WAIT_FOR_FILE 10
- #define SCORE_FILENAME "skigame.dat"
- typedef struct
- {
- char szPlayerName[MAX_NAME_SIZE + 1];
- DWORD lnHighScore;
- time_t lnPlayDate;
- } tHighScoreRecord;
- typedef struct
- {
- tHighScoreRecord aRecord[HIGH_SCORES];
- } tHighScoreFile;
- FILE *OpenAndReadHighScores(tHighScoreFile *pFileContents);
- void CloseHighScores(FILE *pfHighScoreFile);
- void WriteHighScores(FILE *pfHighScoreFile, tHighScoreFile *pFileContents);
- FILE *OpenExclusiveFile(char *pszFileName, char *pszAccess, time_t Wait);
- int FileExists(char *pszFileName);
- void ShowHighScores(void);
- void PlayGame(void);
- void SpaceRight(int nColumns);
- void MoveLeft(int nColumns);
- int AddHighScore(tHighScoreFile *pHighScores, tHighScoreRecord *pScoreRecord);
- #ifdef ODPLAT_WIN32
- int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
- LPSTR lpszCmdLine, int nCmdShow)
- #else
- int main(int argc, char *argv[])
- #endif
- {
- char chMenuChoice;
- #ifdef ODPLAT_WIN32
-
- od_control.od_cmd_show = nCmdShow;
- #endif
-
-
- strcpy(od_control.od_prog_name, "Grand Slalom");
- 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
-
- do
- {
-
- od_clr_scr();
-
- od_printf("`bright white` Ûßß ÛßÜ ÛßÛ ÛÜ Û ÛßÜ Ûßß Û ÛßÛ Û ÛßÛ ÛßÛßÛ\n\r");
- od_printf("`bright red`ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ`bright white`ÛßÛ`bright red`Ä`bright white`ÛßÜ`bright red`Ä`bright white`ÛßÛ`bright red`Ä`bright white`Û`bright red`Ä`bright white`ßÛ`bright red`Ä`bright white`Û");
- od_printf("`bright red`Ä`bright white`Û`bright red`ÄÄÄ`bright white`ßßÛ`bright red`Ä`bright white`Û`bright red`ÄÄÄ`bright white`ÛßÛ`bright red`Ä`bright white`Û`bright red`ÄÄÄ`bright white`Û");
- od_printf("`bright red`Ä`bright white`Û`bright red`Ä`bright white`Û`bright red`Ä`bright white`Û`bright red`Ä`bright white`Û`bright red`ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ\n\r");
- od_printf("`bright white` ßßß ß ß ß ß ß ß ßß ßßß ßßß ß ß ßßß ßßß ß ß ß\n\r\n\r");
-
- od_printf("`dark green`Prepare yourself for the challenge of Grand Slalom downhill skiing!\n\r\n\r");
- od_printf("When `flashing dark green`playing`dark green` the game, press:\n\r");
- od_printf("`dark green` [`bright green`Q`dark green`] key to ski left\n\r");
- od_printf(" [`bright green`W`dark green`] key to ski right\n\r\n\r");
- od_printf("All that you have to do is ski within the slalom course.\n\r");
- od_printf("It may sound easy - but be warned - it gets harder as you go!\n\r");
- od_printf("(Each time you hear the beep, the course becomes a bit narrower.)\n\r\n\r");
-
- od_printf("`bright white`Now, press [ENTER] to begin game, [H] to view High Scores, [E] to Exit: ");
- chMenuChoice = od_get_answer("HE\n\r");
-
- switch(chMenuChoice)
- {
- case '\n':
- case '\r':
-
- PlayGame();
- break;
- case 'H':
-
- ShowHighScores();
- break;
- case 'E':
-
- od_printf("\n\rGoodbye from SKIGAME!\n\r");
- break;
- }
- } while(chMenuChoice != 'E');
-
- od_exit(10, FALSE);
- return(1);
- }
- FILE *OpenAndReadHighScores(tHighScoreFile *pFileContents)
- {
- FILE *pfFile;
- int iHighScore;
-
- if(!FileExists(SCORE_FILENAME))
- {
-
- pfFile = OpenExclusiveFile(SCORE_FILENAME, "wb", WAIT_FOR_FILE);
-
- if(pfFile != NULL)
- {
-
- for(iHighScore = 0; iHighScore < HIGH_SCORES; ++iHighScore)
- {
- pFileContents->aRecord[iHighScore].lnHighScore = 0L;
- }
-
- WriteHighScores(pfFile, pFileContents);
- }
- }
-
- else
- {
-
- pfFile = OpenExclusiveFile(SCORE_FILENAME, "r+b",
- WAIT_FOR_FILE);
-
- if(fread(pFileContents, sizeof(tHighScoreFile), 1, pfFile) != 1)
- {
-
- fclose(pfFile);
- pfFile = NULL;
- }
- }
-
- return(pfFile);
- }
- int FileExists(char *pszFileName)
- {
-
- FILE *pfFile = OpenExclusiveFile(pszFileName, "rb", WAIT_FOR_FILE);
- if(pfFile != NULL)
- {
-
-
- fclose(pfFile);
- return(TRUE);
- }
- else
- {
-
-
- return(FALSE);
- }
- }
- FILE *OpenExclusiveFile(char *pszFileName, char *pszAccess, time_t Wait)
- {
- FILE *pfFile;
- time_t StartTime = time(NULL);
- for(;;)
- {
-
- pfFile = fopen(pszFileName, pszAccess);
-
- if(pfFile != NULL) break;
-
- if(errno != EACCES) break;
-
- if(StartTime + Wait < time(NULL)) break;
-
- od_kernel();
- }
-
- return(pfFile);
- }
- void CloseHighScores(FILE *pfHighScoreFile)
- {
- if(pfHighScoreFile != NULL)
- {
- fclose(pfHighScoreFile);
- }
- }
- void WriteHighScores(FILE *pfHighScoreFile, tHighScoreFile *pFileContents)
- {
- if(pfHighScoreFile != NULL)
- {
- fseek(pfHighScoreFile, 0L, SEEK_SET);
- fwrite(pFileContents, sizeof(tHighScoreFile), 1, pfHighScoreFile);
- }
- }
- void ShowHighScores(void)
- {
- FILE *pfFile;
- tHighScoreFile HighScores;
- int iHighScore;
- struct tm *pTimeBlock;
- char szTimeString[34];
-
- od_clr_scr();
-
- pfFile = OpenAndReadHighScores(&HighScores);
- CloseHighScores(pfFile);
- if(pfFile == NULL)
- {
-
- od_printf("`bright red`Unable to access high score file!\n\r");
- }
- else
- {
-
- od_printf("`bright green`Player Score "
- "Record Date`dark green`\n\r");
- od_printf("ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ\n\r");
-
- for(iHighScore = 0; iHighScore < HIGH_SCORES; ++iHighScore)
- {
-
- if(HighScores.aRecord[iHighScore].lnHighScore == 0L) break;
-
- pTimeBlock = localtime(&HighScores.aRecord[iHighScore].lnPlayDate);
- strftime(szTimeString, sizeof(szTimeString),
- "%B %d, %Y at %I:%M%p", pTimeBlock);
-
- od_printf("%-32.32s %-8ld %s\n\r",
- HighScores.aRecord[iHighScore].szPlayerName,
- HighScores.aRecord[iHighScore].lnHighScore,
- szTimeString);
- }
- }
-
- od_printf("ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ\n\r\n\r");
-
- od_printf("`bright white`Press [ENTER]/[RETURN] to continue: ");
- od_get_answer("\n\r");
- }
- void PlayGame(void)
- {
- int nLeftEdge = 1;
- int nRightEdge = nLeftEdge + 1 + INITIAL_COURSE_WIDTH;
- int nPlayerPos = nLeftEdge + 1 + (INITIAL_COURSE_WIDTH / 2);
- long lnScore = 0;
- int nDistanceSinceShrink = 0;
- int bMovingRight = TRUE;
- char cKeyPress;
- tHighScoreRecord ScoreRecord;
- FILE *pfFile;
- tHighScoreFile HighScores;
- int nBackup=0;
- clock_t StartClock;
-
- od_set_color(L_WHITE, B_BLACK);
- od_clr_scr();
-
- od_set_attrib(L_WHITE);
-
- srand((unsigned int)time(NULL));
-
- for(;;)
- {
- StartClock = msclock();
-
- if(od_control.user_ansi || od_control.user_avatar)
- {
- SpaceRight(nLeftEdge - 1);
- od_set_color(L_WHITE, D_RED);
- od_putch((char)223);
- od_repeat((unsigned char)219,
- (unsigned char)(nPlayerPos - nLeftEdge - 1));
- od_putch((char)254);
- od_repeat((unsigned char)219,
- (unsigned char)(nRightEdge - nPlayerPos - 1));
- od_putch((char)223);
- nBackup = nRightEdge - nPlayerPos + 1;
- }
- else
- {
-
-
- SpaceRight(nLeftEdge - 1);
- od_putch((char)(bMovingRight ? '\\' : '/'));
- SpaceRight(nPlayerPos - nLeftEdge - 1);
- od_putch('o');
- SpaceRight(nRightEdge - nPlayerPos - 1);
- od_putch((char)(bMovingRight ? '\\' : '/'));
- }
-
- while((cKeyPress = (char)od_get_key(FALSE)) != '\0')
- {
- if(cKeyPress == 'q' || cKeyPress == 'Q')
- {
-
- --nPlayerPos;
- }
- else if(cKeyPress == 'w' || cKeyPress == 'W')
- {
-
- ++nPlayerPos;
- }
- }
-
- if((rand() % 100) < CHANGE_DIRECTION)
- {
- bMovingRight = !bMovingRight;
- }
- else
- {
-
-
- if(bMovingRight)
- {
- ++nLeftEdge;
- ++nRightEdge;
- }
- else
- {
- --nLeftEdge;
- --nRightEdge;
- }
- }
-
- if(++nDistanceSinceShrink >= DECREASE_WIDTH_AFTER)
- {
-
- nDistanceSinceShrink = 0;
-
- if((rand() % 100) < 50)
- {
- ++nLeftEdge;
- }
- else
- {
- --nRightEdge;
- }
-
- od_printf("\a");
- }
-
- if(nLeftEdge < 1)
- {
- bMovingRight = TRUE;
- ++nLeftEdge;
- ++nRightEdge;
- }
- else if(nRightEdge > 79)
- {
- bMovingRight = FALSE;
- --nLeftEdge;
- --nRightEdge;
- }
-
- if(nPlayerPos <= nLeftEdge || nPlayerPos >= nRightEdge)
- {
-
- od_set_color(D_GREY, D_BLACK);
- od_clr_scr();
- od_printf("`bright red` !!! Game Over !!!\n\r\n\r");
- od_printf("`dark green`You have veered off the course!\n\r\n\r");
- od_printf("Your Score is: %ld\n\r", lnScore);
-
- ScoreRecord.lnHighScore = lnScore;
- strncpy(ScoreRecord.szPlayerName, od_control.user_name, MAX_NAME_SIZE);
- ScoreRecord.szPlayerName[MAX_NAME_SIZE] = '\0';
- ScoreRecord.lnPlayDate = time(NULL);
-
- pfFile = OpenAndReadHighScores(&HighScores);
- if(pfFile == NULL)
- {
-
- od_printf("`bright red`Unable to access high score file!\n\r");
- }
- else
- {
-
- if(AddHighScore(&HighScores, &ScoreRecord))
- {
- od_printf("Congratulations! You have made it to the high score list!\n\r");
-
- WriteHighScores(pfFile, &HighScores);
- }
-
- CloseHighScores(pfFile);
- }
-
- od_printf("`bright white`\n\rPress [ENTER]/[RETURN] to return to menu: ");
- od_get_answer("\n\r");
- return;
- }
-
-
- while(msclock() < StartClock + (((clock_t)MSCLOCKS_PER_SEC) / 10))
- od_sleep(0);
-
- ++lnScore;
-
- if(od_control.user_ansi)
- {
- MoveLeft(nBackup);
- od_set_color(L_WHITE, D_GREY);
- od_putch((char)178);
- od_set_color(L_WHITE, B_BLACK);
- }
-
- od_printf("\r\n");
- }
- }
- void SpaceRight(int nColumns)
- {
- char szSequence[6];
-
- if(nColumns <= 0) return;
-
- if(od_control.user_ansi)
- {
-
- sprintf(szSequence, "\x1b[%02dC", nColumns);
- od_disp_emu(szSequence, TRUE);
- }
-
- else
- {
- od_repeat(' ', (unsigned char)nColumns);
- }
- }
- void MoveLeft(int nColumns)
- {
-
- char szSequence[6];
- sprintf(szSequence, "\x1b[%02dD", nColumns);
- od_disp_emu(szSequence, TRUE);
- }
- int AddHighScore(tHighScoreFile *pHighScores, tHighScoreRecord *pScoreRecord)
- {
- int iHighScore;
- int iExistingScore;
-
- for(iHighScore = 0; iHighScore < HIGH_SCORES; ++iHighScore)
- {
-
-
- if(pHighScores->aRecord[iHighScore].lnHighScore <=
- pScoreRecord->lnHighScore)
- {
-
- for(iExistingScore = HIGH_SCORES - 1; iExistingScore >= iHighScore + 1;
- --iExistingScore)
- {
- pHighScores->aRecord[iExistingScore] =
- pHighScores->aRecord[iExistingScore - 1];
- }
-
- pHighScores->aRecord[iHighScore] = *pScoreRecord;
-
- return(TRUE);
- }
- }
-
- return(FALSE);
- }
|