Home
last modified time | relevance | path

Searched refs:DB_GetEntryInt (Results 1 – 14 of 14) sorted by relevance

/dports/games/xblast/xblast-2.10.4/
H A Dcfg_game.c405 (void)DB_GetEntryInt (section, atomLives, &game->numLives); in RetrieveAnyGameSetup()
408 (void)DB_GetEntryInt (section, atomWins, &game->numWins); in RetrieveAnyGameSetup()
480 if (!DB_GetEntryInt (section, atomNumPlayers, &game->num)) { in RetrieveAnyGamePlayers()
556 (void)DB_GetEntryInt (section, atomPort, &game->port); in RetrieveAnyGameHost()
591 if (!DB_GetEntryInt (section, atomVersionMajor, &maj)) { in RetrieveAnyGameVersion()
594 if (!DB_GetEntryInt (section, atomVersionMinor, &min)) { in RetrieveAnyGameVersion()
597 if (!DB_GetEntryInt (section, atomVersionPatch, &pat)) { in RetrieveAnyGameVersion()
632 (void)DB_GetEntryInt (section, atomMaxHosts, &con->maxhosts); in RetrieveAnyGameConst()
637 if (!DB_GetEntryInt (section, atomVersionMajor, &maj)) { in RetrieveAnyGameConst()
640 if (!DB_GetEntryInt (section, atomVersionMinor, &min)) { in RetrieveAnyGameConst()
[all …]
H A Dw32_config.c102 (void)DB_GetEntryInt (section, atomLeft, (int *)&rect->left); in RetrieveWindowRect()
103 (void)DB_GetEntryInt (section, atomRight, (int *)&rect->right); in RetrieveWindowRect()
104 (void)DB_GetEntryInt (section, atomTop, (int *)&rect->top); in RetrieveWindowRect()
105 (void)DB_GetEntryInt (section, atomBottom, (int *)&rect->bottom); in RetrieveWindowRect()
H A Dcfg_demo.c139 (void)DB_GetEntryInt (section, atomNumPlayers, &list[j].numPlayers); in CreateDemoList()
228 if (!DB_GetEntryInt (section, atomNumPlayers, &cfgDemo->numPlayers) || in RetrieveDemoConfig()
229 !DB_GetEntryInt (section, atomNumFrames, &cfgDemo->numFrames) || in RetrieveDemoConfig()
231 !DB_GetEntryInt (section, atomRandomSeed, &cfgDemo->randomSeed) || in RetrieveDemoConfig()
233 !DB_GetEntryInt (section, atomLives, &cfgDemo->numLives) || in RetrieveDemoConfig()
234 !DB_GetEntryInt (section, atomFrameRate, &cfgDemo->frameRate) || in RetrieveDemoConfig()
H A Dsdl_config.c89 DB_GetEntryInt (section, atomSmall, &cfgFont.small); in GetFontConfig()
90 DB_GetEntryInt (section, atomMedium, &cfgFont.medium); in GetFontConfig()
91 DB_GetEntryInt (section, atomLarge, &cfgFont.large); in GetFontConfig()
H A Dmap.c300 if (DB_GetEntryInt (section, atomProbBomb, &prob)) { in ParseLevelMap()
308 if (DB_GetEntryInt (section, atomProbRange, &prob)) { in ParseLevelMap()
316 if (DB_GetEntryInt (section, atomProbVirus, &prob)) { in ParseLevelMap()
324 if (DB_GetEntryInt (section, atomProbSpecial, &prob)) { in ParseLevelMap()
332 if (DB_GetEntryInt (section, atomProbHidden, &prob)) { in ParseLevelMap()
341 if (DB_GetEntryInt (section, atomSlowFlame, &prob)) { in ParseLevelMap()
H A Dcfg_player.c409 (void)DB_GetEntryInt (section, atomTurnStepKeyboard, &misc->turnStepKeyboard); in RetrieveAnyPlayerMisc()
410 (void)DB_GetEntryInt (section, atomTurnStepJoystick, &misc->turnStepJoystick); in RetrieveAnyPlayerMisc()
764 (void)DB_GetEntryInt (section, atomPID, &id->PID); in RetrieveAnyPlayerID()
828 (void)DB_GetEntryInt (section, atomXBCCGamesPlayed, &rating->gamesPlayed); in RetrieveAnyPlayerRating()
829 (void)DB_GetEntryInt (section, atomXBCCRealWins, &rating->realWins); in RetrieveAnyPlayerRating()
830 (void)DB_GetEntryInt (section, atomXBCCRelativeWins, &rating->relativeWins); in RetrieveAnyPlayerRating()
H A Dscramble.c82 if (!DB_GetEntryInt (section, atomNumBlocks, &numBlocks)) { in SetScrambleData()
H A Dcfg_xblast.c234 DB_GetEntryInt (section, atomCentralJoinPort, &central->port); in RetrieveCentralSetup()
H A Dini_file.h107 extern XBBool DB_GetEntryInt (const DBSection * section, XBAtom atom, int *pValue);
H A Dplayer.c288 if (!DB_GetEntryInt (section, atomBombs, &minBombs)) { in ParseLevelPlayers()
294 if (!DB_GetEntryInt (section, atomRange, &minRange)) { in ParseLevelPlayers()
300 if (!DB_GetEntryInt (section, atomRecLives, &recLives)) { in ParseLevelPlayers()
305 if (!DB_GetEntryInt (section, atomSpecialBombs, &specialBombs)) { in ParseLevelPlayers()
H A Dbomb.c513 if (!DB_GetEntryInt (section, atomNastyCeil, &ceilNasty)) { in ParseLevelBombs()
518 if (DB_GetEntryInt (section, atomNastyGentle, &gentleNasty) && in ParseLevelBombs()
519 DB_GetEntryInt (section, atomNastyRange, &rangeNasty)) { in ParseLevelBombs()
521 if (!DB_GetEntryInt (section, atomNextNasty, &divNextNasty) || (divNextNasty == 0)) { in ParseLevelBombs()
H A Dcfg_level.c159 if (!DB_GetEntryInt (section, atomShuffle, pShuffle)) { in GetLevelShuffle()
H A Dmenu_edit.c673 DB_GetEntryInt (section, atomNumBlocks, &numShDrBlocks); in SetShrink()
729 DB_GetEntryInt (section, atomNumBlocks, &numShDeBlocks); in SetShrink()
H A Dini_file.c930 DB_GetEntryInt (const DBSection * section, XBAtom atom, int *pValue) in DB_GetEntryInt() function