Initial commit
This commit is contained in:
485
engines/pegasus/neighborhood/tsa/tinytsa.cpp
Normal file
485
engines/pegasus/neighborhood/tsa/tinytsa.cpp
Normal file
@@ -0,0 +1,485 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
*
|
||||
* ScummVM is the legal property of its developers, whose names
|
||||
* are too numerous to list here. Please refer to the COPYRIGHT
|
||||
* file distributed with this source distribution.
|
||||
*
|
||||
* Additional copyright for this file:
|
||||
* Copyright (C) 1995-1997 Presto Studios, Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "pegasus/energymonitor.h"
|
||||
#include "pegasus/gamestate.h"
|
||||
#include "pegasus/pegasus.h"
|
||||
#include "pegasus/ai/ai_area.h"
|
||||
#include "pegasus/items/biochips/aichip.h"
|
||||
#include "pegasus/items/biochips/arthurchip.h"
|
||||
#include "pegasus/items/biochips/opticalchip.h"
|
||||
#include "pegasus/neighborhood/mars/constants.h"
|
||||
#include "pegasus/neighborhood/norad/constants.h"
|
||||
#include "pegasus/neighborhood/tsa/tinytsa.h"
|
||||
#include "pegasus/neighborhood/wsc/wsc.h"
|
||||
|
||||
namespace Pegasus {
|
||||
|
||||
static const int16 kCompassShift = 30;
|
||||
|
||||
enum {
|
||||
kTinyTSAMovieScale = 600,
|
||||
kTinyTSAFramesPerSecond = 15,
|
||||
kTinyTSAFrameDuration = 40
|
||||
};
|
||||
|
||||
// Alternate IDs.
|
||||
enum {
|
||||
kAltTinyTSANormal = 0
|
||||
};
|
||||
|
||||
// Hot Spot Activation IDs.
|
||||
enum {
|
||||
kActivationTinyTSAJumpToNorad = 1,
|
||||
kActivationTinyTSAJumpToMars = 2,
|
||||
kActivationTinyTSAJumpToWSC = 3,
|
||||
kActivationTinyTSAReadyForJumpMenu = 4,
|
||||
kActivationTinyTSAMainJumpMenu = 5
|
||||
};
|
||||
|
||||
// Hot Spot IDs.
|
||||
enum {
|
||||
kTinyTSA37NorthJumpToNoradSpotID = 5000,
|
||||
kTinyTSA37NorthCancelNoradSpotID = 5001,
|
||||
kTinyTSA37NorthJumpToMarsSpotID = 5002,
|
||||
kTinyTSA37NorthCancelMarsSpotID = 5003,
|
||||
kTinyTSA37NorthJumpToWSCSpotID = 5004,
|
||||
kTinyTSA37NorthCancelWSCSpotID = 5005,
|
||||
kTinyTSA37NorthJumpMenuSpotID = 5006,
|
||||
kTinyTSA37NorthNoradMenuSpotID = 5007,
|
||||
kTinyTSA37NorthMarsMenuSpotID = 5008,
|
||||
kTinyTSA37NorthWSCMenuSpotID = 5009
|
||||
};
|
||||
|
||||
// Extra sequence IDs.
|
||||
enum {
|
||||
kTinyTSA37PegasusDepart = 0,
|
||||
kTinyTSA37TimeJumpToPegasus = 1,
|
||||
kTinyTSA37RecallToDownload = 2,
|
||||
kTinyTSA37ExitHilited = 3,
|
||||
kTinyTSA37ExitToHorse = 4,
|
||||
kTinyTSA37JumpMenu000 = 5,
|
||||
kTinyTSA37JumpMenu001 = 6,
|
||||
kTinyTSA37JumpMenu010 = 7,
|
||||
kTinyTSA37JumpMenu011 = 8,
|
||||
kTinyTSA37JumpMenu100 = 9,
|
||||
kTinyTSA37JumpMenu101 = 10,
|
||||
kTinyTSA37JumpMenu110 = 11,
|
||||
kTinyTSA37JumpMenu111 = 12,
|
||||
kTinyTSA37JumpToWSCMenu = 13,
|
||||
kTinyTSA37CancelWSC = 14,
|
||||
kTinyTSA37JumpToWSC = 15,
|
||||
kTinyTSA37WSCToAI5 = 16,
|
||||
kTinyTSA37PegasusAI5 = 17,
|
||||
kTinyTSA37AI5ToWSC = 18,
|
||||
kTinyTSA37WSCToDepart = 19,
|
||||
kTinyTSA37JumpToMarsMenu = 20,
|
||||
kTinyTSA37CancelMars = 21,
|
||||
kTinyTSA37JumpToMars = 22,
|
||||
kTinyTSA37MarsToAI6 = 23,
|
||||
kTinyTSA37PegasusAI6 = 24,
|
||||
kTinyTSA37AI6ToMars = 25,
|
||||
kTinyTSA37MarsToDepart = 26,
|
||||
kTinyTSA37JumpToNoradMenu = 27,
|
||||
kTinyTSA37CancelNorad = 28,
|
||||
kTinyTSA37JumpToNorad = 29,
|
||||
kTinyTSA37NoradToAI7 = 30,
|
||||
kTinyTSA37PegasusAI7 = 31,
|
||||
kTinyTSA37AI7ToNorad = 32,
|
||||
kTinyTSA37NoradToDepart = 33,
|
||||
kTinyTSA37EnvironmentalScan = 34,
|
||||
kTinyTSA37DownloadToMainMenu = 35,
|
||||
kTinyTSA37DownloadToOpMemReview = 36,
|
||||
kTinyTSA37OpMemReviewToMainMenu = 37
|
||||
};
|
||||
|
||||
TinyTSA::TinyTSA(InputHandler *nextHandler, PegasusEngine *owner) : Neighborhood(nextHandler, owner, "Tiny TSA", kTinyTSAID) {
|
||||
}
|
||||
|
||||
void TinyTSA::start() {
|
||||
g_energyMonitor->stopEnergyDraining();
|
||||
Neighborhood::start();
|
||||
}
|
||||
|
||||
Common::Path TinyTSA::getBriefingMovie() {
|
||||
Common::Path movieName = Neighborhood::getBriefingMovie();
|
||||
|
||||
if (movieName.empty()) {
|
||||
switch (getCurrentActivation()) {
|
||||
case kActivationTinyTSAJumpToNorad:
|
||||
g_AIChip->showBriefingClicked();
|
||||
startExtraSequenceSync(kTinyTSA37PegasusAI7, kHintInterruption);
|
||||
startExtraSequenceSync(kTinyTSA37AI7ToNorad, kFilterNoInput);
|
||||
g_AIChip->clearClicked();
|
||||
movieName = "";
|
||||
break;
|
||||
case kActivationTinyTSAJumpToMars:
|
||||
g_AIChip->showBriefingClicked();
|
||||
startExtraSequenceSync(kTinyTSA37PegasusAI6, kHintInterruption);
|
||||
startExtraSequenceSync(kTinyTSA37AI6ToMars, kFilterNoInput);
|
||||
g_AIChip->clearClicked();
|
||||
movieName = "";
|
||||
break;
|
||||
case kActivationTinyTSAJumpToWSC:
|
||||
g_AIChip->showBriefingClicked();
|
||||
startExtraSequenceSync(kTinyTSA37PegasusAI5, kHintInterruption);
|
||||
startExtraSequenceSync(kTinyTSA37AI5ToWSC, kFilterNoInput);
|
||||
g_AIChip->clearClicked();
|
||||
movieName = "";
|
||||
break;
|
||||
default:
|
||||
movieName = "Images/AI/TSA/XT04";
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return movieName;
|
||||
}
|
||||
|
||||
Common::Path TinyTSA::getEnvScanMovie() {
|
||||
Common::Path movieName = Neighborhood::getEnvScanMovie();
|
||||
|
||||
if (movieName.empty()) {
|
||||
g_AIChip->showEnvScanClicked();
|
||||
startExtraSequenceSync(kTinyTSA37EnvironmentalScan, kHintInterruption);
|
||||
|
||||
switch (getCurrentActivation()) {
|
||||
case kActivationTinyTSAJumpToNorad:
|
||||
startExtraSequenceSync(kTinyTSA37AI7ToNorad, kFilterNoInput);
|
||||
showExtraView(kTinyTSA37JumpToNoradMenu);
|
||||
break;
|
||||
case kActivationTinyTSAJumpToMars:
|
||||
startExtraSequenceSync(kTinyTSA37AI6ToMars, kFilterNoInput);
|
||||
showExtraView(kTinyTSA37JumpToMarsMenu);
|
||||
break;
|
||||
case kActivationTinyTSAJumpToWSC:
|
||||
startExtraSequenceSync(kTinyTSA37AI5ToWSC, kFilterNoInput);
|
||||
showExtraView(kTinyTSA37JumpToWSCMenu);
|
||||
break;
|
||||
default:
|
||||
showMainJumpMenu();
|
||||
break;
|
||||
}
|
||||
|
||||
g_AIChip->clearClicked();
|
||||
}
|
||||
|
||||
return movieName;
|
||||
}
|
||||
|
||||
void TinyTSA::loadAmbientLoops() {
|
||||
if (_vm->isDVD()) // Updated sound in the DVD version
|
||||
loadLoopSound1("Sounds/TSA/T01NAE.NEW.32K.AIFF");
|
||||
else
|
||||
loadLoopSound1("Sounds/TSA/T01NAE.NEW.22K.AIFF");
|
||||
}
|
||||
|
||||
int16 TinyTSA::getStaticCompassAngle(const RoomID room, const DirectionConstant dir) {
|
||||
return Neighborhood::getStaticCompassAngle(room, dir) - kCompassShift;
|
||||
}
|
||||
|
||||
uint16 TinyTSA::getDateResID() const {
|
||||
return kDate2318ID;
|
||||
}
|
||||
|
||||
InputBits TinyTSA::getInputFilter() {
|
||||
// Can't move forward...
|
||||
return Neighborhood::getInputFilter() & ~(kFilterUpButton | kFilterUpAuto);
|
||||
}
|
||||
|
||||
void TinyTSA::clickInHotspot(const Input &input, const Hotspot *clickedSpot) {
|
||||
if (clickedSpot) {
|
||||
switch (clickedSpot->getObjectID()) {
|
||||
case kTinyTSA37NorthJumpMenuSpotID:
|
||||
// This hotspot isn't accessible from Tiny TSA
|
||||
warning("jump menu spot");
|
||||
return;
|
||||
case kTinyTSA37NorthJumpToNoradSpotID:
|
||||
GameState.setTSAState(kPlayerOnWayToNorad);
|
||||
requestExtraSequence(kTinyTSA37JumpToNorad, 0, kFilterNoInput);
|
||||
if (!GameState.getBeenToNorad()) {
|
||||
requestExtraSequence(kTinyTSA37NoradToAI7, 0, kFilterNoInput);
|
||||
requestExtraSequence(kTinyTSA37PegasusAI7, 0, kFilterNoInput);
|
||||
requestExtraSequence(kTinyTSA37AI7ToNorad, 0, kFilterNoInput);
|
||||
GameState.setBeenToNorad(true);
|
||||
}
|
||||
|
||||
requestExtraSequence(kTinyTSA37NoradToDepart, 0, kFilterNoInput);
|
||||
requestExtraSequence(kTinyTSA37PegasusDepart, kExtraCompletedFlag, kFilterNoInput);
|
||||
return;
|
||||
case kTinyTSA37NorthJumpToMarsSpotID:
|
||||
GameState.setTSAState(kPlayerOnWayToMars);
|
||||
requestExtraSequence(kTinyTSA37JumpToMars, 0, kFilterNoInput);
|
||||
if (!GameState.getBeenToMars()) {
|
||||
requestExtraSequence(kTinyTSA37MarsToAI6, 0, kFilterNoInput);
|
||||
requestExtraSequence(kTinyTSA37PegasusAI6, 0, kFilterNoInput);
|
||||
requestExtraSequence(kTinyTSA37AI6ToMars, 0, kFilterNoInput);
|
||||
GameState.setBeenToMars(true);
|
||||
}
|
||||
|
||||
requestExtraSequence(kTinyTSA37MarsToDepart, 0, kFilterNoInput);
|
||||
requestExtraSequence(kTinyTSA37PegasusDepart, kExtraCompletedFlag, kFilterNoInput);
|
||||
return;
|
||||
case kTinyTSA37NorthJumpToWSCSpotID:
|
||||
GameState.setTSAState(kPlayerOnWayToWSC);
|
||||
requestExtraSequence(kTinyTSA37JumpToWSC, 0, kFilterNoInput);
|
||||
if (!GameState.getBeenToWSC()) {
|
||||
requestExtraSequence(kTinyTSA37WSCToAI5, 0, kFilterNoInput);
|
||||
requestExtraSequence(kTinyTSA37PegasusAI5, 0, kFilterNoInput);
|
||||
requestExtraSequence(kTinyTSA37AI5ToWSC, 0, kFilterNoInput);
|
||||
GameState.setBeenToWSC(true);
|
||||
}
|
||||
|
||||
requestExtraSequence(kTinyTSA37WSCToDepart, 0, kFilterNoInput);
|
||||
requestExtraSequence(kTinyTSA37PegasusDepart, kExtraCompletedFlag, kFilterNoInput);
|
||||
return;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Neighborhood::clickInHotspot(input, clickedSpot);
|
||||
}
|
||||
|
||||
void TinyTSA::showMainJumpMenu() {
|
||||
ExtraID jumpMenuView = kTinyTSA37JumpMenu000;
|
||||
|
||||
if (GameState.getNoradFinished())
|
||||
jumpMenuView += 4;
|
||||
if (GameState.getMarsFinished())
|
||||
jumpMenuView += 2;
|
||||
if (GameState.getWSCFinished())
|
||||
jumpMenuView += 1;
|
||||
|
||||
showExtraView(jumpMenuView);
|
||||
setCurrentActivation(kActivationTinyTSAMainJumpMenu);
|
||||
}
|
||||
|
||||
void TinyTSA::checkContinuePoint(const RoomID, const DirectionConstant) {
|
||||
makeContinuePoint();
|
||||
}
|
||||
|
||||
void TinyTSA::arriveAt(const RoomID room, const DirectionConstant direction) {
|
||||
Neighborhood::arriveAt(room, direction);
|
||||
|
||||
switch (GameState.getTSAState()) {
|
||||
case kPlayerOnWayToNorad:
|
||||
case kPlayerOnWayToMars:
|
||||
case kPlayerOnWayToWSC:
|
||||
startExtraSequence(kTinyTSA37TimeJumpToPegasus, kExtraCompletedFlag, kFilterNoInput);
|
||||
break;
|
||||
case kPlayerLockedInPegasus:
|
||||
showMainJumpMenu();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void TinyTSA::receiveNotification(Notification *notification, const NotificationFlags flags) {
|
||||
ExtraID lastExtra = _lastExtra;
|
||||
|
||||
Neighborhood::receiveNotification(notification, flags);
|
||||
|
||||
if ((flags & kExtraCompletedFlag) != 0) {
|
||||
// Only allow input if we're not in the middle of series of queue requests.
|
||||
if (actionQueueEmpty())
|
||||
_interruptionFilter = kFilterAllInput;
|
||||
|
||||
switch (lastExtra) {
|
||||
case kTinyTSA37PegasusDepart:
|
||||
_vm->setLastEnergyValue(kFullEnergy);
|
||||
|
||||
switch (GameState.getTSAState()) {
|
||||
case kPlayerOnWayToNorad:
|
||||
_vm->jumpToNewEnvironment(kNoradAlphaID, kNorad01, kSouth);
|
||||
GameState.setNoradSeenTimeStream(false);
|
||||
GameState.setNoradGassed(true);
|
||||
GameState.setNoradFillingStationOn(false);
|
||||
GameState.setNoradN22MessagePlayed(false);
|
||||
GameState.setNoradPlayedGlobeGame(false);
|
||||
GameState.setNoradBeatRobotWithClaw(false);
|
||||
GameState.setNoradBeatRobotWithDoor(false);
|
||||
GameState.setNoradRetScanGood(false);
|
||||
GameState.setNoradWaitingForLaser(false);
|
||||
GameState.setNoradSubRoomPressure(9);
|
||||
GameState.setNoradSubPrepState(kSubNotPrepped);
|
||||
break;
|
||||
case kPlayerOnWayToMars:
|
||||
_vm->jumpToNewEnvironment(kMarsID, kMars0A, kNorth);
|
||||
GameState.setMarsSeenTimeStream(false);
|
||||
GameState.setMarsHeardUpperPodMessage(false);
|
||||
GameState.setMarsRobotThrownPlayer(false);
|
||||
GameState.setMarsHeardCheckInMessage(false);
|
||||
GameState.setMarsPodAtUpperPlatform(false);
|
||||
GameState.setMarsSeenThermalScan(false);
|
||||
GameState.setMarsArrivedBelow(false);
|
||||
GameState.setMarsSeenRobotAtReactor(false);
|
||||
GameState.setMarsAvoidedReactorRobot(false);
|
||||
GameState.setMarsLockFrozen(false);
|
||||
GameState.setMarsLockBroken(false);
|
||||
GameState.setMarsSecurityDown(false);
|
||||
GameState.setMarsAirlockOpen(false);
|
||||
GameState.setMarsReadyForShuttleTransport(false);
|
||||
GameState.setMarsFinishedCanyonChase(false);
|
||||
GameState.setMarsThreadedMaze(false);
|
||||
GameState.setMarsSawRobotLeave(false);
|
||||
break;
|
||||
case kPlayerOnWayToWSC:
|
||||
_vm->jumpToNewEnvironment(kWSCID, kWSC01, kWest);
|
||||
GameState.setWSCSeenTimeStream(false);
|
||||
GameState.setWSCPoisoned(false);
|
||||
GameState.setWSCAnsweredAboutDart(false);
|
||||
GameState.setWSCDartInAnalyzer(false);
|
||||
GameState.setWSCRemovedDart(false);
|
||||
GameState.setWSCAnalyzerOn(false);
|
||||
GameState.setWSCAnalyzedDart(false);
|
||||
GameState.setWSCSawMorph(false);
|
||||
GameState.setWSCDesignedAntidote(false);
|
||||
GameState.setWSCOfficeMessagesOpen(false);
|
||||
GameState.setWSCSeenNerd(false);
|
||||
GameState.setWSCHeardPage1(false);
|
||||
GameState.setWSCHeardPage2(false);
|
||||
GameState.setWSCHeardCheckIn(false);
|
||||
GameState.setWSCDidPlasmaDodge(false);
|
||||
GameState.setWSCSeenSinclairLecture(false);
|
||||
GameState.setWSCBeenAtWSC93(false);
|
||||
GameState.setWSCCatwalkDark(false);
|
||||
GameState.setWSCRobotDead(false);
|
||||
GameState.setWSCRobotGone(false);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
case kTinyTSA37TimeJumpToPegasus:
|
||||
if (g_energyMonitor)
|
||||
g_energyMonitor->stopEnergyDraining();
|
||||
|
||||
switch (GameState.getTSAState()) {
|
||||
case kPlayerOnWayToNorad:
|
||||
arriveFromNorad();
|
||||
break;
|
||||
case kPlayerOnWayToMars:
|
||||
arriveFromMars();
|
||||
break;
|
||||
case kPlayerOnWayToWSC:
|
||||
arriveFromWSC();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case kTinyTSA37DownloadToOpMemReview:
|
||||
if (_vm->itemInBiochips(kOpticalBiochip)) {
|
||||
switch (GameState.getTSAState()) {
|
||||
case kPlayerOnWayToNorad:
|
||||
g_opticalChip->playOpMemMovie(kPoseidonSpotID);
|
||||
break;
|
||||
case kPlayerOnWayToMars:
|
||||
g_opticalChip->playOpMemMovie(kAriesSpotID);
|
||||
break;
|
||||
case kPlayerOnWayToWSC:
|
||||
g_opticalChip->playOpMemMovie(kMercurySpotID);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (((GameState.getNoradFinished() && !(GameState.getMarsFinished() || GameState.getWSCFinished())) ||
|
||||
(GameState.getMarsFinished() && !(GameState.getNoradFinished() || GameState.getWSCFinished())) ||
|
||||
(GameState.getWSCFinished() && !(GameState.getNoradFinished() || GameState.getMarsFinished()))) &&
|
||||
g_arthurChip)
|
||||
g_arthurChip->playArthurMovieForEvent("Images/AI/Globals/XGLOBB43", kArthurTSASawFirstOpMemMovie);
|
||||
|
||||
requestExtraSequence(kTinyTSA37OpMemReviewToMainMenu, kExtraCompletedFlag, kFilterNoInput);
|
||||
break;
|
||||
case kTinyTSA37DownloadToMainMenu:
|
||||
case kTinyTSA37OpMemReviewToMainMenu:
|
||||
GameState.setTSAState(kPlayerLockedInPegasus);
|
||||
showMainJumpMenu();
|
||||
makeContinuePoint();
|
||||
if (g_arthurChip)
|
||||
g_arthurChip->playArthurMovieForEvent("Images/AI/Globals/XGLOBA22", kArthurTSAInPegasusNoVideo);
|
||||
break;
|
||||
case kTinyTSA37JumpToNoradMenu:
|
||||
setCurrentActivation(kActivationTinyTSAJumpToNorad);
|
||||
break;
|
||||
case kTinyTSA37JumpToMarsMenu:
|
||||
setCurrentActivation(kActivationTinyTSAJumpToMars);
|
||||
break;
|
||||
case kTinyTSA37JumpToWSCMenu:
|
||||
setCurrentActivation(kActivationTinyTSAJumpToWSC);
|
||||
break;
|
||||
case kTinyTSA37CancelNorad:
|
||||
case kTinyTSA37CancelMars:
|
||||
case kTinyTSA37CancelWSC:
|
||||
showMainJumpMenu();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
g_AIArea->checkMiddleArea();
|
||||
}
|
||||
|
||||
void TinyTSA::arriveFromNorad() {
|
||||
requestExtraSequence(kTinyTSA37RecallToDownload, 0, kFilterNoInput);
|
||||
|
||||
if (GameState.getNoradFinished() && !GameState.getScoringFinishedNorad()) {
|
||||
GameState.setScoringFinishedNorad();
|
||||
requestExtraSequence(kTinyTSA37DownloadToOpMemReview, kExtraCompletedFlag, kFilterNoInput);
|
||||
} else {
|
||||
requestExtraSequence(kTinyTSA37DownloadToMainMenu, kExtraCompletedFlag, kFilterNoInput);
|
||||
}
|
||||
}
|
||||
|
||||
void TinyTSA::arriveFromMars() {
|
||||
requestExtraSequence(kTinyTSA37RecallToDownload, 0, kFilterNoInput);
|
||||
|
||||
if (GameState.getMarsFinished() && !GameState.getScoringFinishedMars()) {
|
||||
GameState.setScoringFinishedMars();
|
||||
requestExtraSequence(kTinyTSA37DownloadToOpMemReview, kExtraCompletedFlag, kFilterNoInput);
|
||||
} else {
|
||||
requestExtraSequence(kTinyTSA37DownloadToMainMenu, kExtraCompletedFlag, kFilterNoInput);
|
||||
}
|
||||
}
|
||||
|
||||
void TinyTSA::arriveFromWSC() {
|
||||
requestExtraSequence(kTinyTSA37RecallToDownload, 0, kFilterNoInput);
|
||||
|
||||
if (GameState.getWSCFinished() && !GameState.getScoringFinishedWSC()) {
|
||||
GameState.setScoringFinishedWSC();
|
||||
requestExtraSequence(kTinyTSA37DownloadToOpMemReview, kExtraCompletedFlag, kFilterNoInput);
|
||||
} else {
|
||||
requestExtraSequence(kTinyTSA37DownloadToMainMenu, kExtraCompletedFlag, kFilterNoInput);
|
||||
}
|
||||
}
|
||||
|
||||
Common::Path TinyTSA::getNavMovieName() {
|
||||
return "Images/TSA/Tiny TSA.movie";
|
||||
}
|
||||
|
||||
} // End of namespace Pegasus
|
||||
Reference in New Issue
Block a user