HCS_Troop::HCS_Troop(HCS_Gear *natarmor, unsigned int trooptype, std::string tname) { setdefaults(); settrooptype(trooptype); naturalac = natarmor->getAC(); objtype = SET_TROOP; objname = tname; //hitbox.x = -6; //hitbox.y = -8; //hitbox.w = 12; //hitbox.h = 16; //coordinates.x = 0; //coordinates.y = 0; if (naturalac) { naturalhp = naturalac->getvalue(BONUS_HP); //std::cout << naturalhp; } else { std::cout << "ERROR ASSIGNING ARMOR\n"; } sethp(); armorcalc(); movementspeed = 3; //totalac default constructer sets everything to 0 }
static void setttymode(const char *tname, int raw) { int off = 0; gettable(tname, tabent); if (OPset || EPset || APset) APset++, OPset++, EPset++; setdefaults(); (void)tcflush(STDIN_FILENO, TCIOFLUSH); /* clear out the crap */ ioctl(STDIN_FILENO, FIONBIO, &off); /* turn off non-blocking mode */ ioctl(STDIN_FILENO, FIOASYNC, &off); /* ditto for async mode */ if (IS) cfsetispeed(&tmode, speed(IS)); else if (SP) cfsetispeed(&tmode, speed(SP)); if (OS) cfsetospeed(&tmode, speed(OS)); else if (SP) cfsetospeed(&tmode, speed(SP)); set_flags(0); setchars(); if (raw) cfmakeraw(&tmode); if (tcsetattr(STDIN_FILENO, TCSANOW, &tmode) < 0) { syslog(LOG_ERR, "tcsetattr %s: %m", ttyn); exit(1); } }
static void clear(statusbox *box) { if (box->image) vimageDestroy(box->image); if (box->message) vstrDestroy(box->message); setdefaults(box); return; }
static void load(statusbox *box, vresource res) { sendsuper(vobjectLOAD_INIT,(box,res)); setdefaults(box); box->wholeimage = box->pieceimage = NULL; box->wholeshared = box->pieceshared = vFALSE; return; }
static void init(statusbox *box) { sendsuper(vobjectINIT,(box)); setdefaults(box); box->wholeimage = box->pieceimage = NULL; box->wholeshared = box->pieceshared = vFALSE; return; }
Options *newoptions(void) { Options *options = malloc(sizeof(*options)); if (!options) { errorf("Out of memory?\n"); return NULL; } setdefaults(options); return options; }
int main(int argc, char *argv[]) { extern void onintr(int), fpecatch(int); lib_defines = unsharp(GRAPDEFINES); if (signal(SIGINT, SIG_IGN) != SIG_IGN) signal(SIGINT, onintr); signal(SIGFPE, fpecatch); cmdname = argv[0]; tempfile = strdup("grap.XXXXXX"); mkstemp(tempfile); while (argc > 1 && *argv[1] == '-') { switch (argv[1][1]) { case 'd': dbg = 1; tfd = stdout; strcpy(tempfile, "grap.temp"); unlink(tempfile); fprintf(stderr, "%s\n", version); break; case 'l': /* turn off /usr/lib inclusion */ lib = 0; break; } argc--; argv++; } setdefaults(); curfile = infile; if (argc <= 1) { curfile->fin = stdin; curfile->fname = tostring("-"); pushsrc(File, curfile->fname); getdata(); } else while (argc-- > 1) { if ((curfile->fin = fopen(*++argv, "r")) == NULL) { fprintf(stderr, "grap: can't open %s\n", *argv); onintr(0); } curfile->fname = tostring(*argv); pushsrc(File, curfile->fname); getdata(); fclose(curfile->fin); free(curfile->fname); } if (!dbg) unlink(tempfile); exit(0); }
/* This function should be called from main() to configure the program. * After the configurations have been initialized the command line is * parsed. Then the configuration file is read and after that if any * parameter has not been set the defaults are used. */ int opt_configure(int argc, const char *argv[]) { initconfig(); parsecommandline(argc, argv); if(readconfigfile()) { xerror("Unable to read configuration running with defaults"); } setdefaults(); // xlog(LOG_CONFIG, "Daemonize set to %d", _daemonize); // xlog(LOG_CONFIG, "Status Tagname is set to %s", _statustag); // xlog(LOG_CONFIG, "PID File Name set to %s", _pidfile); return 0; }
int main(int argc, char **argv) { char buf[20]; signal(SIGFPE, fpecatch); cmdname = argv[0]; while (argc > 1 && *argv[1] == '-') { switch (argv[1][1]) { case 'd': dbg = atoi(&argv[1][2]); if (dbg == 0) dbg = 1; fprintf(stderr, "%s\n", version); break; } argc--; argv++; } setdefaults(); objlist = (obj **) grow((char *)objlist, "objlist", nobjlist += 1000, sizeof(obj *)); text = (Text *) grow((char *)text, "text", ntextlist += 1000, sizeof(Text)); attr = (Attr *) grow((char *)attr, "attr", nattrlist += 100, sizeof(Attr)); sprintf(buf, "/%d/", getpid()); pushsrc(String, buf); definition("pid"); curfile = infile; pushsrc(File, curfile->fname); if (argc <= 1) { curfile->fin = stdin; curfile->fname = tostring("-"); getdata(); } else while (argc-- > 1) { if ((curfile->fin = fopen(*++argv, "r")) == NULL) { fprintf(stderr, "%s: can't open %s\n", cmdname, *argv); exit(1); } curfile->fname = tostring(*argv); getdata(); fclose(curfile->fin); free(curfile->fname); } return anyerr; }
/* * Read a gettytab database entry and perform necessary quirks. */ static void dogettytab(void) { /* Read the database entry. */ gettable(tname, tabent); /* * Avoid inheriting the parity values from the default entry * if any of them is set in the current entry. * Mixing different parity settings is unreasonable. */ if (OPset || EPset || APset || NPset) OPset = EPset = APset = NPset = 1; /* Fill in default values for unset capabilities. */ setdefaults(); }
void resetvar(void) /* reset variables listed */ { int i, j; if (nattr == 0) { /* none listed, so do all */ setdefaults(); return; } for (i = 0; i < nattr; i++) { for (j = 0; defaults[j].name != NULL; j++) if (strcmp(defaults[j].name, attr[i].a_val.p) == 0) { setfval(defaults[j].name, defaults[j].val); free(attr[i].a_val.p); break; } } }
int main (int argc, char *argv[]) { int rt; rt = _i18n_init (I18N_CAT_MIN); setdefaults (); getoptions (argc, argv); getpids (argc, argv); printheader (); initstats (); processlogfile (); printsummary (); _i18n_end (ls_catd); return (0); }
int getdata() /* **---------------------------------------------------------------- ** Input: none ** Output: returns error code ** Purpose: reads in network data from disk file **---------------------------------------------------------------- */ { int errcode = 0; setdefaults(); /* Assign default data values */ initreport(); /* Initialize reporting options */ rewind(InFile); /* Rewind input file */ ERRCODE(readdata()); /* Read in network data */ if (!errcode) adjustdata(); /* Adjust data for default values */ if (!errcode) initunits(); /* Initialize units on input data */ ERRCODE(inittanks()); /* Initialize tank volumes */ if (!errcode) convertunits(); /* Convert units on input data */ return(errcode); } /* End of getdata */
int NC_authsetup(NCauth* auth, NCURI* uri) { int ret = NC_NOERR; char* uri_hostport = NULL; if(uri != NULL) uri_hostport = NC_combinehostport(uri); else return NC_EDAP; /* Generic EDAP error. */ setdefaults(auth); /* Note, we still must do this function even if ncrc_globalstate.rc.ignore is set in order to getinfo e.g. host+port from url */ setauthfield(auth,"HTTP.DEFLATE", NC_rclookup("HTTP.DEFLATE",uri_hostport)); setauthfield(auth,"HTTP.VERBOSE", NC_rclookup("HTTP.VERBOSE",uri_hostport)); setauthfield(auth,"HTTP.TIMEOUT", NC_rclookup("HTTP.TIMEOUT",uri_hostport)); setauthfield(auth,"HTTP.USERAGENT", NC_rclookup("HTTP.USERAGENT",uri_hostport)); setauthfield(auth,"HTTP.COOKIEFILE", NC_rclookup("HTTP.COOKIEFILE",uri_hostport)); setauthfield(auth,"HTTP.COOKIE_FILE", NC_rclookup("HTTP.COOKIE_FILE",uri_hostport)); setauthfield(auth,"HTTP.COOKIEJAR", NC_rclookup("HTTP.COOKIEJAR",uri_hostport)); setauthfield(auth,"HTTP.COOKIE_JAR", NC_rclookup("HTTP.COOKIE_JAR",uri_hostport)); setauthfield(auth,"HTTP.PROXY.SERVER", NC_rclookup("HTTP.PROXY.SERVER",uri_hostport)); setauthfield(auth,"HTTP.PROXY_SERVER", NC_rclookup("HTTP.PROXY_SERVER",uri_hostport)); setauthfield(auth,"HTTP.SSL.VALIDATE", NC_rclookup("HTTP.SSL.VALIDATE",uri_hostport)); setauthfield(auth,"HTTP.SSL.CERTIFICATE", NC_rclookup("HTTP.SSL.CERTIFICATE",uri_hostport)); setauthfield(auth,"HTTP.SSL.KEY", NC_rclookup("HTTP.SSL.KEY",uri_hostport)); setauthfield(auth,"HTTP.SSL.KEYPASSWORD", NC_rclookup("HTTP.SSL.KEYPASSWORD",uri_hostport)); setauthfield(auth,"HTTP.SSL.CAINFO", NC_rclookup("HTTP.SSL.CAINFO",uri_hostport)); setauthfield(auth,"HTTP.SSL.CAPATH", NC_rclookup("HTTP.SSL.CAPATH",uri_hostport)); setauthfield(auth,"HTTP.SSL.VERIFYPEER", NC_rclookup("HTTP.SSL.VERIFYPEER",uri_hostport)); setauthfield(auth,"HTTP.NETRC", NC_rclookup("HTTP.NETRC",uri_hostport)); { /* Handle various cases for user + password */ /* First, see if the user+pwd was in the original url */ char* user = NULL; char* pwd = NULL; if(uri->user != NULL && uri->password != NULL) { user = uri->user; pwd = uri->password; } else { user = NC_rclookup("HTTP.CREDENTIALS.USER",uri_hostport); pwd = NC_rclookup("HTTP.CREDENTIALS.PASSWORD",uri_hostport); } if(user != NULL && pwd != NULL) { user = strdup(user); /* so we can consistently reclaim */ pwd = strdup(pwd); } else { /* Could not get user and pwd, so try USERPASSWORD */ const char* userpwd = NC_rclookup("HTTP.CREDENTIALS.USERPASSWORD",uri_hostport); if(userpwd != NULL) { ret = NC_parsecredentials(userpwd,&user,&pwd); if(ret) {nullfree(uri_hostport); return ret;} } } setauthfield(auth,"HTTP.USERNAME",user); setauthfield(auth,"HTTP.PASSWORD",pwd); nullfree(user); nullfree(pwd); nullfree(uri_hostport); } return (ret); }
int main(int argc, char *argv[]) { extern char **environ; char *tname; int repcnt = 0, failopenlogged = 0; struct rlimit limit; int rval; signal(SIGINT, SIG_IGN); /* signal(SIGQUIT, SIG_DFL); */ openlog("getty", LOG_ODELAY|LOG_CONS|LOG_PID, LOG_AUTH); gethostname(hostname, sizeof(hostname)); if (hostname[0] == '\0') strlcpy(hostname, "Amnesiac", sizeof hostname); uname(&kerninfo); /* * Limit running time to deal with broken or dead lines. */ (void)signal(SIGXCPU, timeoverrun); limit.rlim_max = RLIM_INFINITY; limit.rlim_cur = GETTY_TIMEOUT; (void)setrlimit(RLIMIT_CPU, &limit); /* * The following is a work around for vhangup interactions * which cause great problems getting window systems started. * If the tty line is "-", we do the old style getty presuming * that the file descriptors are already set up for us. * J. Gettys - MIT Project Athena. */ if (argc <= 2 || strcmp(argv[2], "-") == 0) { snprintf(ttyn, sizeof ttyn, "%s", ttyname(0)); } else { int i; snprintf(ttyn, sizeof ttyn, "%s%s", dev, argv[2]); if (strcmp(argv[0], "+") != 0) { chown(ttyn, 0, 0); chmod(ttyn, 0600); revoke(ttyn); /* * Delay the open so DTR stays down long enough to be detected. */ sleep(2); while ((i = open(ttyn, O_RDWR)) == -1) { if ((repcnt % 10 == 0) && (errno != ENXIO || !failopenlogged)) { syslog(LOG_ERR, "%s: %m", ttyn); closelog(); failopenlogged = 1; } repcnt++; sleep(60); } login_tty(i); } } /* Start with default tty settings */ if (tcgetattr(0, &tmode) < 0) { syslog(LOG_ERR, "%s: %m", ttyn); exit(1); } omode = tmode; gettable("default", defent); gendefaults(); tname = "default"; if (argc > 1) tname = argv[1]; for (;;) { int off; gettable(tname, tabent); if (OPset || EPset || APset) APset++, OPset++, EPset++; setdefaults(); off = 0; (void)tcflush(0, TCIOFLUSH); /* clear out the crap */ ioctl(0, FIONBIO, &off); /* turn off non-blocking mode */ ioctl(0, FIOASYNC, &off); /* ditto for async mode */ if (IS) cfsetispeed(&tmode, IS); else if (SP) cfsetispeed(&tmode, SP); if (OS) cfsetospeed(&tmode, OS); else if (SP) cfsetospeed(&tmode, SP); setflags(0); setchars(); if (tcsetattr(0, TCSANOW, &tmode) < 0) { syslog(LOG_ERR, "%s: %m", ttyn); exit(1); } if (AB) { tname = autobaud(); continue; } if (PS) { tname = portselector(); continue; } if (CL && *CL) putpad(CL); edithost(HE); if (IM && *IM) putf(IM); if (TO) { signal(SIGALRM, dingdong); alarm(TO); } if ((rval = getname()) == 2) { oflush(); alarm(0); signal(SIGALRM, SIG_DFL); execle(PP, "ppplogin", ttyn, (char *) 0, env); syslog(LOG_ERR, "%s: %m", PP); exit(1); } else if (rval) { int i; oflush(); alarm(0); signal(SIGALRM, SIG_DFL); if (name[0] == '-') { xputs("user names may not start with '-'."); continue; } if (!(upper || lower || digit)) continue; setflags(2); if (crmod) { tmode.c_iflag |= ICRNL; tmode.c_oflag |= ONLCR; } if (upper || UC) { tmode.c_iflag |= IUCLC; tmode.c_oflag |= OLCUC; tmode.c_lflag |= XCASE; } if (lower || LC) { tmode.c_iflag &= ~IUCLC; tmode.c_oflag &= ~OLCUC; tmode.c_lflag &= ~XCASE; } if (tcsetattr(0, TCSANOW, &tmode) < 0) { syslog(LOG_ERR, "%s: %m", ttyn); exit(1); } signal(SIGINT, SIG_DFL); for (i = 0; environ[i] != (char *)0; i++) env[i] = environ[i]; makeenv(&env[i]); limit.rlim_max = RLIM_INFINITY; limit.rlim_cur = RLIM_INFINITY; (void)setrlimit(RLIMIT_CPU, &limit); execle(LO, "login", "-p", "--", name, (char *)0, env); syslog(LOG_ERR, "%s: %m", LO); exit(1); } alarm(0); signal(SIGALRM, SIG_DFL); signal(SIGINT, SIG_IGN); if (NX && *NX) tname = NX; } }