author | imm <imm> | 2002-09-22 18:30:29 (UTC) |
---|---|---|
committer | imm <imm> | 2002-09-22 18:30:29 (UTC) |
commit | 4904161b6b043e1397db4affd7930fd999ff742e (patch) (side-by-side diff) | |
tree | bb46b289fb71af969cf48810c1795ad023252bf9 | |
parent | f8aeb3c2e6b32600329ebbaeb0b4b7a2f371eca2 (diff) | |
download | opie-4904161b6b043e1397db4affd7930fd999ff742e.zip opie-4904161b6b043e1397db4affd7930fd999ff742e.tar.gz opie-4904161b6b043e1397db4affd7930fd999ff742e.tar.bz2 |
better ?
-rw-r--r-- | noncore/games/kpacman/referee.cpp | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/noncore/games/kpacman/referee.cpp b/noncore/games/kpacman/referee.cpp index 81f331b..6d8f3fb 100644 --- a/noncore/games/kpacman/referee.cpp +++ b/noncore/games/kpacman/referee.cpp @@ -473,529 +473,515 @@ void Referee::fillStrList(QStrList &list, QString values, int max) for (uint i = 0; i < (uint) max; i++) { if (values.find(',') < 0 && values.length() > 0) { value = values; values = ""; } if (values.find(',') >= 0) { value = values.left(values.find(',')); values.remove(0,values.find(',')+1); } if (!value.isEmpty()) last = value; list.append(last); } } void Referee::fillMapName() { QStrList list = mapName; if (!mapName.isEmpty()) mapName.clear(); QString map; QFileInfo fileInfo; for (uint i = 0; i < list.count(); i++) { map = list.at(i); if (map.left(1) != "/" && map.left(1) != "~") map = FIND_APP_DATA( mapDirectory+map ); fileInfo.setFile(map); if (!fileInfo.isReadable()) map = ""; mapName.append(map); } } void Referee::confLevels(bool defGroup) { APP_CONFIG_BEGIN( cfg ); if (defGroup || cfg->hasKey("Levels")) maxLevel = cfg->readNumEntry("Levels", 13); APP_CONFIG_END( cfg ); } void Referee::confMisc(bool defGroup) { APP_CONFIG_BEGIN( cfg ); if (defGroup || cfg->hasKey("PixmapDirectory")) { pixmapDirectory = cfg->readEntry("PixmapDirectory"); if (pixmapDirectory.left(1) != "/" && pixmapDirectory.left(1) != "~") pixmapDirectory.insert(0, "pics/"); if (pixmapDirectory.right(1) != "/") pixmapDirectory.append("/"); } if (defGroup || cfg->hasKey("MapDirectory")) { mapDirectory = cfg->readEntry("MapDirectory"); if (mapDirectory.left(1) != "/" && mapDirectory.left(1) != "~") mapDirectory.insert(0, "maps/"); if (mapDirectory.right(1) != "/") mapDirectory.append("/"); } if (defGroup || cfg->hasKey("MapName")) fillStrList(mapName, cfg->readEntry("MapName", "map"), maxLevel+1); if (defGroup || cfg->hasKey("MonsterIQ")) fillArray(monsterIQ, cfg->readEntry("MonsterIQ", "0,170,180,170,180,170,180"), maxLevel+1); if (defGroup || cfg->hasKey("FruitIQ")) fillArray(fruitIQ, cfg->readEntry("FruitIQ", "0,170,180,170,180,170,180"), maxLevel+1); if (defGroup || cfg->hasKey("FruitIndex")) fillArray(fruitIndex, cfg->readEntry("FruitIndex", "0"), maxLevel+1); APP_CONFIG_END( cfg ); } void Referee::confTiming(bool defGroup) { APP_CONFIG_BEGIN( cfg ); if (defGroup || cfg->hasKey("SpeedMS")) fillArray(speed, cfg->readEntry("SpeedMS", "20"), maxLevel+1); if (defGroup || cfg->hasKey("PacmanTicks")) fillArray(pacmanTicks,cfg->readEntry("PacmanTicks", "3"), maxLevel+1); if (defGroup || cfg->hasKey("RemTicks")) fillArray(remTicks, cfg->readEntry("RemTicks", "1"), maxLevel+1); if (defGroup || cfg->hasKey("DangerousTicks")) fillArray(dangerousTicks, cfg->readEntry("DangerousTicks", "3"), maxLevel+1); if (defGroup || cfg->hasKey("HarmlessTicks")) fillArray(harmlessTicks, cfg->readEntry("HarmlessTicks", "7,6,,5,,4"), maxLevel+1); if (defGroup || cfg->hasKey("HarmlessDurationTicks")) fillArray(harmlessDurTicks, cfg->readEntry("HarmlessDurationTicks", "375,,,300,,250,200,150"), maxLevel+1); if (defGroup || cfg->hasKey("HarmlessWarningTicks")) fillArray(harmlessWarnTicks, cfg->readEntry("HarmlessWarningTicks", "135"), maxLevel+1); if (defGroup || cfg->hasKey("ArrestTicks")) fillArray(arrestTicks, cfg->readEntry("ArrestTicks", "6"), maxLevel+1); if (defGroup || cfg->hasKey("ArrestDurationTicks")) fillArray(arrestDurTicks, cfg->readEntry("ArrestDurationTicks", "200,,,150"), maxLevel+1); if (defGroup || cfg->hasKey("FruitTicks")) fillArray(fruitTicks, cfg->readEntry("FruitTicks", "7,6,,5,,4"), maxLevel+1); if (defGroup || cfg->hasKey("FruitAppearsTicks")) fillArray(fruitAppearsTicks, cfg->readEntry("FruitAppearsTicks", "1000,,1500,2000,2500,3000,3500,4000"), maxLevel+1); if (defGroup || cfg->hasKey("FruitDurationTicks")) fillArray(fruitDurTicks, cfg->readEntry("FruitDurationTicks", "500,,,400,350,300,,250,200,150"), maxLevel+1); if (defGroup || cfg->hasKey("FruitScoreDurationTicks")) fillArray(fruitScoreDurTicks, cfg->readEntry("FruitScoreDurationTicks", "150"), maxLevel+1); if (defGroup || cfg->hasKey("MonsterScoreDurationMS")) monsterScoreDurMS = cfg->readNumEntry("MonsterScoreDurationMS", 1000); if (defGroup || cfg->hasKey("PlayerDurationMS")) playerDurMS = cfg->readNumEntry("PlayerDurationMS", 3000); if (defGroup || cfg->hasKey("ReadyDurationMS")) readyDurMS = cfg->readNumEntry("ReadyDurationMS", 2000); if (defGroup || cfg->hasKey("GameOverDurationMS")) gameOverDurMS = cfg->readNumEntry("GameOverDurationMS", 3000); if (defGroup || cfg->hasKey("AfterPauseMS")) afterPauseMS = cfg->readNumEntry("AfterPauseMS", 1000); if (defGroup || cfg->hasKey("DyingPreAnimationMS")) dyingPreAnimationMS = cfg->readNumEntry("DyingPreAnimationMS", 1000); if (defGroup || cfg->hasKey("DyingAnimationMS")) dyingAnimationMS = cfg->readNumEntry("DyingAnimationMS", 100); if (defGroup || cfg->hasKey("DyingPostAnimationMS")) dyingPostAnimationMS = cfg->readNumEntry("DyingPostAnimationMS", 500); if (defGroup || cfg->hasKey("IntroAnimationMS")) introAnimationMS = cfg->readNumEntry("IntroAnimationMS", 800); if (defGroup || cfg->hasKey("IntroPostAnimationMS")) introPostAnimationMS = cfg->readNumEntry("IntroPostAnimationMS", 1000); if (defGroup || cfg->hasKey("LevelUpPreAnimationMS")) levelUpPreAnimationMS = cfg->readNumEntry("LevelUpPreAnimationMS", 2000); if (defGroup || cfg->hasKey("LevelUpAnimationMS")) levelUpAnimationMS = cfg->readNumEntry("LevelUpAnimationMS", 2000); if (defGroup || cfg->hasKey("EnergizerAnimationMS")) energizerAnimationMS = cfg->readNumEntry("EnergizerAnimationMS", 200); APP_CONFIG_END( cfg ); } void Referee::confScoring(bool defGroup) { APP_CONFIG_BEGIN( cfg ); if (defGroup || cfg->hasKey("PointScore")) pointScore = cfg->readNumEntry("PointScore", 10); if (defGroup || cfg->hasKey("EnergizerScore")) energizerScore = cfg->readNumEntry("EnergizerScore", 50); if (defGroup || cfg->hasKey("FruitScore")) fillArray(fruitScore, cfg->readEntry("FruitScore", "100,300,500,,700,,1000,,2000,,3000,,5000"), maxLevel+1); if (defGroup || cfg->hasKey("MonsterScore")) fillArray(monsterScore, cfg->readEntry("MonsterScore", "200,400,800,1600"), 4); if (defGroup || cfg->hasKey("ExtraLifeScore")) fillArray(extraLifeScore, cfg->readEntry("ExtraLifeScore", "10000"), -1); APP_CONFIG_END( cfg ); } void Referee::confScheme() { APP_CONFIG_BEGIN( cfg ); SAVE_CONFIG_GROUP( cfg, oldgroup ); QString newgroup; // if not set, read mode and scheme from the configfile if (mode == -1 && scheme == -1) { scheme = cfg->readNumEntry("Scheme", -1); mode = cfg->readNumEntry("Mode", -1); // if mode is not set in the defGroup-group, lookup the scheme group if (scheme != -1 || mode == -1) { newgroup.sprintf("Scheme %d", scheme); cfg->setGroup(newgroup); mode = cfg->readNumEntry("Mode", -1); RESTORE_CONFIG_GROUP( cfg, oldgroup ); } } confLevels(); if (mode != -1) { newgroup.sprintf("Mode %d", mode); cfg->setGroup(newgroup); confLevels(FALSE); } if (scheme != -1) { newgroup.sprintf("Scheme %d", scheme); cfg->setGroup(newgroup); confLevels(FALSE); } RESTORE_CONFIG_GROUP( cfg, oldgroup ); confMisc(); confTiming(); confScoring(); if (mode != -1) { newgroup.sprintf("Mode %d", mode); cfg->setGroup(newgroup); confMisc(FALSE); confTiming(FALSE); confScoring(FALSE); } if (scheme != -1) { newgroup.sprintf("Scheme %d", scheme); cfg->setGroup(newgroup); confMisc(FALSE); confTiming(FALSE); confScoring(FALSE); } fillMapName(); RESTORE_CONFIG_GROUP( cfg, oldgroup ); APP_CONFIG_END( cfg ); } void Referee::setScheme(int Scheme, int Mode, Bitfont *font) { mode = Mode; scheme = Scheme; confScheme(); pix->setScheme(scheme, mode, font); pacman->setMaxPixmaps(pix->maxPixmaps(PacmanPix)); fruit->setMaxPixmaps(pix->maxPixmaps(FruitPix)); for (Monster *m = monsters->first(); m != 0; m = monsters->next()) if (m) m->setMaxPixmaps(pix->maxPixmaps(MonsterPix), pix->maxPixmaps(EyesPix)); for (Energizer *e = energizers->first(); e != 0; e = energizers->next()) if (e) e->setMaxPixmaps(pix->maxPixmaps(EnergizerPix)); if (gameState.testBit(Introducing)) for (int i = 0; i < (gameState.testBit(Init) ? timerCount : 15); i++) introPaint(i); setFixedSize(pix->levelPix().size()); repaint(); } void Referee::keyPressEvent( QKeyEvent *k ) { uint key = k->key(); -#ifdef QWS - // "OK" => new game - if ( key == Key_F33 || key == Key_F2 || key == Key_Enter ) - play(); - else if ( !gameState.testBit(Playing) && - ( key == Key_Up || - key == Key_Down || - key == Key_Right || - key == Key_Left )) + + if ( !gameState.testBit(Playing) && ( key == Key_Up || key == Key_Down || key == Key_Left || key == Key_Right ) ) play(); - // "Space" => pause - //else if ( key == Key_Space || key == Key_F3 ) - // pause(); - // "Menu" => hall of fame - //else if ( key == Key_F11 || key == Key_F4 ) - // toggleHallOfFame(); -#endif if (gameState.testBit(Paused) || gameState.testBit(HallOfFame) || gameState.testBit(Demonstration) || gameState.testBit(Dying) || gameState.testBit(Ready) || gameState.testBit(LevelDone) || !gameState.testBit(Playing)) return; if (key == UpKey) pacman->setDirection(N); else if (key == DownKey) pacman->setDirection(S); else if (key == RightKey) pacman->setDirection(E); else if (key == LeftKey) pacman->setDirection(W); #ifdef CHEATS else if (key == Key_L) { printf("levelUp()\n"); levelUp(); } else if (key == Key_F) { printf("fruit->move(TRUE)\n"); fruit->move(TRUE); repaint(FALSE); } else if (key == Key_E) { printf("setLifes(++lifes)\n"); emit setLifes(++lifes); } #endif else { k->ignore(); return; } k->accept(); } void Referee::score(int p) { if (!gameState.testBit(Playing)) return; if ((points += p) < 0) points = 0; emit setPoints(points); if (points >= nextExtraLifeScore) { emit setLifes(++lifes); if (extraLifeScoreIndex < (int) extraLifeScore.size()-1) extraLifeScoreIndex++; if (extraLifeScore[extraLifeScoreIndex] < 0) nextExtraLifeScore = extraLifeScore[extraLifeScoreIndex] * -1; else nextExtraLifeScore += extraLifeScore[extraLifeScoreIndex]; } } void Referee::eaten() { if (gameState.testBit(Ready)) return; stop(); if (monstersEaten < 4) monstersEaten++; gameState.setBit(Scoring); score(monsterScore[monstersEaten-1]); repaint(pix->rect(pix->rect(pacman->position(), MonsterPix), pix->rect(pacman->position(), MonsterScorePix, monstersEaten-1))); if (--timerCount > 0) QTimer::singleShot( monsterScoreDurMS, this, SLOT(eaten())); else { for (Monster *m = monsters->first(); m != 0; m = monsters->next()) if (m && m->direction() == X && !gameState.testBit(Introducing)) m->setDirection(N); if (monstersEaten != 4 || !gameState.testBit(Introducing)) QTimer::singleShot( monsterScoreDurMS, this, SLOT(start())); } } void Referee::toggleHallOfFame() { gameState.toggleBit(HallOfFame); } void Referee::hallOfFame() { if (gameState.testBit(HallOfFame)) // If the HallOfFame is switched on manually, toggle the toggleHallOfFame(); // bit twice. emit setLevel(0); // Clear status display for hall of fame emit setScore(level, 0); emit forcedHallOfFame(TRUE); } void Referee::pause() { static int pausedTimer = 0; if (!gameState.testBit(Paused)) { pausedTimer = gameTimer; stop(); stopEnergizer(); gameState.setBit(Paused); repaint(pix->rect((BoardWidth*BoardHeight)/2-BoardWidth, tr("PAUSED")), FALSE); } else { gameState.clearBit(Paused); repaint(pix->rect((BoardWidth*BoardHeight)/2-BoardWidth, tr("PAUSED")), FALSE); if (pausedTimer) { pausedTimer = 0; start(); } } emit togglePaused(); } void Referee::intro() { stop(); stopEnergizer(); bool paused = gameState.testBit(Paused); gameState.fill(FALSE); gameState.setBit(Introducing); gameState.setBit(Init); if (paused) gameState.setBit(Paused); level = 0; emit setLevel(level); board->init(Intro); pix->setLevel(level); initPacman(); initFruit(); initMonsters(); initEnergizers(); repaint(); monstersEaten = 0; timerCount = 0; introPlay(); } void Referee::introMonster(int id) { Monster *m = new Monster(board, id); m->setPosition((10+id*6)*BoardWidth+10); m->setDirection(E); m->setDangerous(dangerousTicks[level], monsterIQ[level]); m->setMaxPixmaps(pix->maxPixmaps(MonsterPix), pix->maxPixmaps(EyesPix)); if (m->body() != -1) pix->draw(m->position(), RoomPix, MonsterPix, m->body()); if (m->eyes() != -1) pix->draw(m->position(), RoomPix, EyesPix, m->eyes()); repaint(pix->rect(m->position(), MonsterPix), FALSE); m->setPosition(OUT); } void Referee::introPaint(int t) { QString pts; switch (t) { case 0 : repaint(pix->draw(16, 6, RoomPix, tr("CHARACTER"), WHITE, QColor(), AlignLeft), FALSE); repaint(pix->draw(36, 6, RoomPix, tr("/"), WHITE, QColor(), AlignLeft), FALSE); repaint(pix->draw(40, 6, RoomPix, tr("NICKNAME"), WHITE, QColor(), AlignLeft), FALSE); break; case 1 : introMonster(0); break; case 2 : repaint(pix->draw(16, 10, RoomPix, tr("-SHADOW"), RED, QColor(), AlignLeft), FALSE); break; case 3 : repaint(pix->draw(38, 10, RoomPix, tr("\"BLINKY\""), RED, QColor(), AlignLeft), FALSE); break; case 4 : introMonster(1); break; case 5 : repaint(pix->draw(16, 16, RoomPix, tr("-SPEEDY"), PINK, QColor(), AlignLeft), FALSE); break; case 6 : repaint(pix->draw(38, 16, RoomPix, tr("\"PINKY\""), PINK, QColor(), AlignLeft), FALSE); break; case 7 : introMonster(2); break; case 8 : repaint(pix->draw(16, 22, RoomPix, tr("-BASHFUL"), CYAN, QColor(), AlignLeft), FALSE); break; case 9 : repaint(pix->draw(38, 22, RoomPix, tr("\"INKY\""), CYAN, QColor(), AlignLeft), FALSE); break; case 10 : introMonster(3); break; case 11 : repaint(pix->draw(16, 28, RoomPix, tr("-POKEY"), ORANGE, QColor(), AlignLeft), FALSE); break; case 12 : repaint(pix->draw(38, 28, RoomPix, tr("\"CLYDE\""), ORANGE, QColor(), AlignLeft), FALSE); break; case 13 : pts.sprintf("%d", pointScore); repaint(pix->draw(28, 44, RoomPix, pts.data(), WHITE, QColor(), AlignRight), FALSE); repaint(pix->draw(31, 44, RoomPix, "\x1C\x1D\x1E", WHITE, QColor(), AlignLeft), FALSE); pts.sprintf("%d", energizerScore); repaint(pix->draw(28, 48, RoomPix, pts.data(), WHITE, QColor(), AlignRight), FALSE); repaint(pix->draw(31, 48, RoomPix, "\x1C\x1D\x1E", WHITE, QColor(), AlignLeft), FALSE); break; case 14 : // "@ 1980 MIDWAY MFG.CO." #if defined( KDE2_PORT ) repaint(pix->draw(30, 58, RoomPix, "© 1998-2002 J.THÖNNISSEN", PINK), FALSE); #elif defined( QPE_PORT ) repaint(pix->draw(30, 55, RoomPix, "© 1998-2002 J.THÖNNISSEN", PINK), FALSE); repaint(pix->draw(29, 58, RoomPix, tr("QTOPIA PORT: CATALIN CLIMOV"), GREEN), FALSE); repaint(pix->draw(29, 61, RoomPix, tr("PRESS CURSOR TO START"), GREEN), FALSE); #endif break; } } void Referee::introPlay() { if (!gameState.testBit(Introducing) || gameState.testBit(Ready)) return; if (gameState.testBit(Paused) || gameState.testBit(HallOfFame)) { QTimer::singleShot(afterPauseMS, this, SLOT(introPlay())); return; } if (!gameState.testBit(Init)) { if (monstersEaten == 4) { stop(); QTimer::singleShot(introPostAnimationMS, this, SLOT(demo())); } if (pacman->direction() == W) { int id = -1; if (pacman->position() == 37*BoardWidth-6) id = 0; else if (board->isMonster(37*BoardWidth-6)) for (Monster *m = monsters->first(); m != 0; m = monsters->next()) if (m && m->position() == 37*BoardWidth-6) { id = m->id(); id++; break; } if (id >= 0 && id <= 4) for (Monster *m = monsters->first(); m != 0; m = monsters->next()) if (m && m->id() == id && m->position() == OUT) { m->setPosition(37*BoardWidth-1); m->setDirection(W); m->setDangerous(dangerousTicks[level], monsterIQ[level]); board->set(37*BoardWidth-1, monsterhome, id); repaint(pix->rect(m->position(), MonsterPix)); break; } } return; } if (timerCount < 15) |