123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933 |
- #define BUILDING_OPENDOORS
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <ctype.h>
- #include <time.h>
- #include "OpenDoor.h"
- #include "ODStr.h"
- #include "ODCore.h"
- #include "ODGen.h"
- #include "ODInEx.h"
- #include "ODUtil.h"
- static WORD awTimeVal[3];
- static BYTE btTimeNumVals;
- static WORD ODCfgGetWordDecimal(char *pszConfigText);
- static DWORD ODCfgGetDWordDecimal(char *pszConfigText);
- static WORD ODCfgGetWordHex(char *pszConfigText);
- static void ODCfgGetNextTime(char **ppchConfigText);
- static BOOL ODCfgIsTrue(char *pszConfigText);
- ODAPIDEF void ODCALL ODConfigInit(void)
- {
- void (*custom_line_function)(char *keyword, char *options)
- = od_control.config_function;
- char *pchConfigText;
- WORD wCurrent;
- INT nConfigOption;
- BOOL bConfigFileRequired = TRUE;
- static FILE *pfConfigFile;
- static FILE *pfCustomDropFile = NULL;
- static char szConfigLine[257];
- static char szToken[33];
- static char szTempString[256];
- static char szWorkDir[80];
- static BOOL bWorkDirSet = FALSE;
- static time_t nUnixTime;
- static struct tm *TimeBlock;
- static INT16 nPageStart;
- static INT16 nPageEnd;
- static BOOL bPageSet = FALSE;
- static BOOL bInactivitySet = FALSE;
- static INT16 nInactivity;
- static char *pszWork;
- static BOOL bPageLengthSet = FALSE;
- static BYTE btPageLength;
- static char *apszFileNames[1];
- bIsCallbackActive = TRUE;
- nUnixTime = time(NULL);
- TimeBlock = localtime(&nUnixTime);
-
- if(od_control.od_config_filename == NULL)
- {
- od_control.od_config_filename = "door.cfg";
- bConfigFileRequired = FALSE;
- }
- if((pfConfigFile = fopen(od_control.od_config_filename, "rt")) == NULL)
- {
- if(strchr(od_control.od_config_filename, DIRSEP) != NULL
- || strchr(od_control.od_config_filename, ':') != NULL)
- {
- wCurrent = strlen(od_control.od_config_filename);
- pchConfigText = (char *)od_control.od_config_filename + (wCurrent - 1);
- while(wCurrent > 0)
- {
- if(*pchConfigText == DIRSEP || *pchConfigText == ':')
- {
- strcpy(szConfigLine, (char *)pchConfigText + 1);
- pfConfigFile = fopen(szConfigLine, "rt");
- break;
- }
- --pchConfigText;
- --wCurrent;
- }
- }
- else
- {
- strcpy(szConfigLine, od_control.od_config_filename);
- }
- }
-
- if(pfConfigFile != NULL)
- {
-
- for(wCurrent = 0; wCurrent < TEXT_SIZE; ++wCurrent)
- {
- strupr(od_config_text[wCurrent]);
- }
- for(wCurrent = 0; wCurrent < LINES_SIZE; ++wCurrent)
- {
- strupr(od_config_lines[wCurrent]);
- }
- for(;;)
- {
-
- if(fgets(szConfigLine, 257, pfConfigFile) == NULL) break;
-
- pchConfigText = (char *)szConfigLine;
- while(*pchConfigText)
- {
- if(*pchConfigText == '\n' || *pchConfigText == '\r'
- || *pchConfigText == ';')
- {
- *pchConfigText = '\0';
- break;
- }
- ++pchConfigText;
- }
-
- pchConfigText = (char *)szConfigLine;
- while(*pchConfigText
- && (*pchConfigText == ' ' || *pchConfigText == '\t'))
- {
- ++pchConfigText;
- }
- if(!*pchConfigText) continue;
-
- wCurrent = 0;
- while(*pchConfigText
- && !(*pchConfigText == ' ' || *pchConfigText == '\t'))
- {
- if(wCurrent < 32) szToken[wCurrent++] = *pchConfigText;
- ++pchConfigText;
- }
- if(wCurrent <= 32)
- {
- szToken[wCurrent] = '\0';
- }
- else
- {
- szToken[32] = '\0';
- }
- strupr(szToken);
-
- while(*pchConfigText && (*pchConfigText == ' '
- || *pchConfigText == '\t'))
- {
- ++pchConfigText;
- }
-
- for(wCurrent = strlen(pchConfigText) - 1; wCurrent > 0; --wCurrent)
- {
- if(pchConfigText[wCurrent] == ' '
- || pchConfigText[wCurrent] == '\t')
- {
- pchConfigText[wCurrent] = '\0';
- }
- else
- {
- break;
- }
- }
- for(wCurrent = 0; wCurrent < TEXT_SIZE; ++wCurrent)
- {
- if(strcmp(szToken, od_config_text[wCurrent]) == 0)
- {
- switch(wCurrent)
- {
- case 0:
- wODNodeNumber = ODCfgGetWordDecimal(pchConfigText);
- break;
- case 1:
- strcpy(od_control.info_path,pchConfigText);
- break;
- case 2:
- if(pchConfigText[strlen(pchConfigText) - 1] == DIRSEP
- && pchConfigText[strlen(pchConfigText) - 2] != ':'
- && strlen(pchConfigText) > 1)
- {
- pchConfigText[strlen(pchConfigText) - 1] = '\0';
- }
- szOriginalDir = (char *)malloc(256);
- if(szOriginalDir != NULL)
- {
- ODDirGetCurrent(szOriginalDir, 256);
- }
- strcpy(szWorkDir, pchConfigText);
- bWorkDirSet = TRUE;
- break;
- case 3:
- strcpy(od_control.od_logfile_name, pchConfigText);
- break;
- case 4:
- od_control.od_logfile_disable = TRUE;
- break;
- case 5:
- case 6:
- case 7:
- case 8:
- case 9:
- case 10:
- case 11:
- if((wCurrent - 5) == (WORD)TimeBlock->tm_wday)
- {
- ODCfgGetNextTime((char **)&pchConfigText);
- nPageStart = awTimeVal[0] * 60 + awTimeVal[1];
- ODCfgGetNextTime((char **)&pchConfigText);
- nPageEnd = awTimeVal[0] * 60 + awTimeVal[1];
- bPageSet = TRUE;
- }
- break;
- case 12:
- od_control.od_maxtime = ODCfgGetWordDecimal(pchConfigText);
- break;
- case 13:
- bSysopNameSet = TRUE;
- strncpy((char *)&szForcedSysopName, pchConfigText, 39);
- szForcedSysopName[39] = '\0';
- break;
- case 14:
- bSystemNameSet = TRUE;
- strncpy((char *)&szForcedSystemName, pchConfigText, 39);
- szForcedSystemName[39] = '\0';
- break;
- case 15:
- od_control.od_swapping_disable = TRUE;
- break;
- case 16:
- strncpy(od_control.od_swapping_path, pchConfigText, 79);
- od_control.od_swapping_path[79] = '\0';
- break;
- case 17:
- od_control.od_swapping_noems = TRUE;
- break;
- case 18:
- dwForcedBPS = ODCfgGetDWordDecimal(pchConfigText);
- break;
- case 19:
- nForcedPort = ODCfgGetWordDecimal(pchConfigText);
- break;
- case 20:
- if(pfCustomDropFile == NULL && !od_control.od_force_local)
- {
- apszFileNames[0] = (char *)pchConfigText;
- if(ODSearchForDropFile(apszFileNames, 1, szTempString,
- NULL) != -1)
- {
- if((pfCustomDropFile = fopen(szTempString, "rt"))
- != NULL)
- {
- od_control.od_info_type = CUSTOM;
- od_control.user_attribute = 0x06;
- od_control.user_screen_length = 23;
- od_control.user_ansi = TRUE;
- od_control.user_rip = FALSE;
- od_control.user_avatar = FALSE;
- od_control.od_page_pausing = TRUE;
- od_control.od_page_len = 15;
- od_control.user_timelimit = 0;
- strcpy(od_control.user_name, "Unknown User");
- strcpy(od_control.user_location,
- "Unknown Location");
- od_control.user_security = 1;
- }
- }
- }
- break;
- case 21:
- if(pfCustomDropFile != NULL)
- {
- if(fgets(szTempString, 255, pfCustomDropFile)!=NULL)
- {
- if(szTempString[strlen(szTempString) - 1] == '\n')
- {
- szTempString[strlen(szTempString) - 1] = '\0';
- }
- else
- {
- INT ch;
- do
- {
- ch = fgetc(pfCustomDropFile);
- } while(ch != '\n' && ch != EOF);
- }
- if(szTempString[strlen(szTempString) - 1] == '\r')
- {
- szTempString[strlen(szTempString) - 1] = '\0';
- }
- strupr(pchConfigText);
- for(nConfigOption = 0; nConfigOption < LINES_SIZE;
- ++nConfigOption)
- {
- if(strcmp(pchConfigText,
- od_config_lines[nConfigOption]) == 0)
- {
- switch(nConfigOption)
- {
- case 1:
- od_control.port =
- ODCfgGetWordDecimal(szTempString) - 1;
- break;
- case 2:
- od_control.port =
- ODCfgGetWordDecimal(szTempString);
- break;
- case 3:
- od_control.baud =
- ODCfgGetWordDecimal(szTempString);
- break;
- case 4:
- if(ODCfgIsTrue(szTempString))
- {
- #ifdef ODPLAT_NIX
- od_control.baud = 1;
- #else
- od_control.baud = 0;
- #endif
- }
- break;
- case 5:
- case 6:
- ODStringToName(szTempString);
- strncpy(od_control.user_name,
- szTempString, 34);
- od_control.user_name[34] = '\0';
- break;
- case 7:
- strcat(od_control.user_name, " ");
- ODStringToName(szTempString);
- strncat(od_control.user_name,
- szTempString,
- 35 - strlen(od_control.user_name));
- od_control.user_name[35] = '\0';
- break;
- case 8:
- ODStringToName(szTempString);
- strncpy(od_control.user_handle,
- szTempString, 35);
- od_control.user_handle[35] = '\0';
- break;
- case 9:
- pszWork = (char *)szTempString;
- ODCfgGetNextTime((char **)&pszWork);
- od_control.user_timelimit +=
- (awTimeVal[0] * 60);
- break;
- case 10:
- pszWork = (char *)szTempString;
- ODCfgGetNextTime((char **)&pszWork);
- if(btTimeNumVals <= 1)
- {
- od_control.user_timelimit +=
- awTimeVal[0];
- }
- else
- {
- od_control.user_timelimit +=
- awTimeVal[1] + (awTimeVal[0] * 60);
- }
- break;
- case 11:
- pszWork = (char *)szTempString;
- ODCfgGetNextTime((char **)&pszWork);
- if(btTimeNumVals <= 1)
- {
- od_control.user_timelimit +=
- awTimeVal[0] / 60;
- }
- else if(btTimeNumVals == 2)
- {
- od_control.user_timelimit +=
- (awTimeVal[1] / 60) + awTimeVal[0];
- }
- else
- {
- od_control.user_timelimit +=
- (awTimeVal[2] / 60) + awTimeVal[1]
- + (awTimeVal[0] * 60);
- }
- break;
- case 12:
- od_control.user_ansi =
- ODCfgIsTrue(szTempString);
- break;
- case 13:
- od_control.user_avatar =
- ODCfgIsTrue(szTempString);
- break;
- case 14:
- od_control.od_page_pausing =
- ODCfgIsTrue(szTempString);
- break;
- case 15:
- od_control.user_screen_length =
- ODCfgGetWordDecimal(szTempString);
- break;
- case 16:
- if(ODCfgIsTrue(szTempString))
- {
- od_control.user_attribute |= 0x02;
- }
- else
- {
- od_control.user_attribute &=~ 0x02;
- }
- break;
- case 17:
- od_control.user_security =
- ODCfgGetWordDecimal(szTempString);
- break;
- case 18:
- ODStringToName(szTempString);
- strncpy(od_control.user_location,
- szTempString, 25);
- od_control.user_location[25] = '\0';
- break;
- case 19:
- wODNodeNumber =
- ODCfgGetWordDecimal(szTempString);
- break;
- case 20:
- case 21:
- ODStringToName(szTempString);
- strncpy(od_control.sysop_name,
- szTempString, 38);
- od_control.sysop_name[38] = '\0';
- break;
- case 22:
- strcat(od_control.sysop_name, " ");
- ODStringToName(szTempString);
- strncat(od_control.sysop_name,
- szTempString,
- 39 - strlen(od_control.system_name));
- od_control.sysop_name[39] = '\0';
- break;
- case 23:
- strncpy(od_control.system_name,
- szTempString, 39);
- od_control.system_name[39] = '\0';
- break;
- case 24:
- od_control.user_rip =
- ODCfgIsTrue(szTempString);
- }
- }
- }
- }
- }
- break;
- case 22:
- bInactivitySet = TRUE;
- nInactivity = ODCfgGetWordDecimal(pchConfigText);
- if(nInactivity < 0) nInactivity = 0;
- break;
- case 23:
- btPageLength = (BYTE)ODCfgGetWordDecimal(pchConfigText);
- bPageLengthSet = TRUE;
- break;
- case 24:
- od_control.od_chat_color2 =
- od_color_config(pchConfigText);
- break;
- case 25:
- od_control.od_chat_color1 =
- od_color_config(pchConfigText);
- break;
- case 26:
- od_control.od_list_title_col =
- od_color_config(pchConfigText);
- break;
- case 27:
- od_control.od_list_name_col =
- od_color_config(pchConfigText);
- break;
- case 28:
- od_control.od_list_size_col =
- od_color_config(pchConfigText);
- break;
- case 29:
- od_control.od_list_comment_col =
- od_color_config(pchConfigText);
- break;
- case 30:
- od_control.od_list_offline_col =
- od_color_config(pchConfigText);
- break;
- case 31:
- strncpy(szDesiredPersonality, pchConfigText, 32);
- szDesiredPersonality[32] = '\0';
- break;
- case 32:
-
- od_control.od_no_fossil = TRUE;
- break;
- case 33:
-
- od_control.od_com_address = ODCfgGetWordHex(pchConfigText);
- break;
- case 34:
-
- od_control.od_com_irq =
- (char)ODCfgGetWordDecimal(pchConfigText);
- break;
- case 35:
-
- od_control.od_com_rx_buf =
- ODCfgGetWordDecimal(pchConfigText);
- break;
- case 36:
-
- od_control.od_com_tx_buf =
- ODCfgGetWordDecimal(pchConfigText);
- break;
- case 37:
-
- od_control.od_continue_col =
- od_color_config(pchConfigText);
- break;
- case 38:
-
- od_control.od_force_local = TRUE;
- break;
- case 39:
-
- od_control.od_menu_title_col =
- od_color_config(pchConfigText);
- break;
- case 40:
-
- od_control.od_menu_border_col =
- od_color_config(pchConfigText);
- break;
- case 41:
-
- od_control.od_menu_text_col =
- od_color_config(pchConfigText);
- break;
- case 42:
-
- od_control.od_menu_key_col =
- od_color_config(pchConfigText);
- break;
- case 43:
-
- od_control.od_menu_highlight_col =
- od_color_config(pchConfigText);
- break;
- case 44:
-
- od_control.od_menu_highkey_col =
- od_color_config(pchConfigText);
- break;
- case 45:
-
- od_control.od_com_no_fifo = TRUE;
- break;
- case 46:
-
- od_control.od_com_fifo_trigger =
- (BYTE)ODCfgGetWordDecimal(pchConfigText);
- break;
- case 47:
-
- ODStringCopy(od_control.od_disable_dtr, pchConfigText,
- sizeof(od_control.od_disable_dtr));
- break;
- case 48:
-
- od_control.od_disable |= DIS_DTR_DISABLE;
- break;
- }
- }
- }
-
- if(wCurrent >= TEXT_SIZE && custom_line_function != NULL)
- {
- (*custom_line_function)((char *)&szToken, pchConfigText);
- }
- }
-
- fclose(pfConfigFile);}
- else
- {
- if(bConfigFileRequired)
- {
- od_control.od_error = ERR_FILEOPEN;
- ODInitError("Unable to access configuration file.");
- exit(od_control.od_errorlevel[1]);
- }
- }
-
- if(pfCustomDropFile != NULL)
- {
- fclose(pfCustomDropFile);
- }
- bIsCallbackActive = FALSE;
-
- bCalledFromConfig = TRUE;
- od_init();
- bCalledFromConfig = FALSE;
-
- if(bPageSet)
- {
- od_control.od_pagestartmin = nPageStart;
- od_control.od_pageendmin = nPageEnd;
- }
- if(bInactivitySet && nInactivity != 0)
- {
- od_control.od_inactivity = nInactivity;
- }
- if(bSysopNameSet)
- {
- strcpy((char *)&od_control.sysop_name, (char *)&szForcedSysopName);
- }
- if(bSystemNameSet)
- {
- strcpy((char *)&od_control.system_name, (char *)&szForcedSystemName);
- }
- if(bPageLengthSet)
- {
- od_control.od_page_len = btPageLength;
- }
- if(bWorkDirSet)
- {
- ODDirChangeCurrent(szWorkDir);
- }
- }
- static WORD ODCfgGetWordDecimal(char *pszConfigText)
- {
- ASSERT(pszConfigText != NULL);
-
- while(*pszConfigText && (*pszConfigText < '0' || *pszConfigText > '9'))
- {
- ++pszConfigText;
- }
-
- return(atoi(pszConfigText));
- }
- static DWORD ODCfgGetDWordDecimal(char *pszConfigText)
- {
- ASSERT(pszConfigText != NULL);
-
- while(*pszConfigText && (*pszConfigText < '0' || *pszConfigText > '9'))
- {
- ++pszConfigText;
- }
-
- return(atol(pszConfigText));
- }
- static WORD ODCfgGetWordHex(char *pszConfigText)
- {
- WORD wToReturn;
- ASSERT(pszConfigText != NULL);
-
- while(*pszConfigText && (*pszConfigText < '0' || *pszConfigText > '9')
- && (toupper(*pszConfigText) < 'A' || toupper(*pszConfigText) > 'F'))
- {
- ++pszConfigText;
- }
- sscanf(pszConfigText, "%x", &wToReturn);
- return(wToReturn);
- }
- static void ODCfgGetNextTime(char **ppchConfigText)
- {
- char *pchConfigText = (char *)(*ppchConfigText);
- ASSERT(ppchConfigText != NULL);
- ASSERT(*ppchConfigText != NULL);
- btTimeNumVals = 0;
- awTimeVal[0] = 0;
- awTimeVal[1] = 0;
- awTimeVal[2] = 0;
- while(*pchConfigText && (*pchConfigText == ' ' || *pchConfigText == '\t'))
- {
- ++pchConfigText;
- }
- while(*pchConfigText && btTimeNumVals < 3)
- {
- if(*pchConfigText < '0' || *pchConfigText > '9') break;
- awTimeVal[btTimeNumVals++] = atoi(pchConfigText);
- while(*pchConfigText && *pchConfigText >= '0' && *pchConfigText <= '9')
- {
- ++pchConfigText;
- }
- if(*pchConfigText == ':' || *pchConfigText == '.' || *pchConfigText == ','
- || *pchConfigText == ';')
- {
- ++pchConfigText;
- }
- }
- *ppchConfigText = (char *)pchConfigText;
- }
- static BOOL ODCfgIsTrue(char *pszConfigText)
- {
- ASSERT(pszConfigText != NULL);
- while(*pszConfigText && (*pszConfigText == ' ' || *pszConfigText == '\t'))
- {
- ++pszConfigText;
- }
- switch(*pszConfigText)
- {
- case '1':
- case 't':
- case 'T':
- case 'y':
- case 'Y':
- case 'g':
- case 'G':
- return(TRUE);
- }
- return(FALSE);
- }
|