mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
STARTREK: Split up startrek.cpp into more files
This commit is contained in:
parent
a84746bf66
commit
e5e54b8a1f
1421
engines/startrek/actors.cpp
Normal file
1421
engines/startrek/actors.cpp
Normal file
File diff suppressed because it is too large
Load Diff
240
engines/startrek/intro.cpp
Normal file
240
engines/startrek/intro.cpp
Normal file
@ -0,0 +1,240 @@
|
||||
/* 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.
|
||||
*
|
||||
* 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 2
|
||||
* 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, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "startrek/startrek.h"
|
||||
|
||||
namespace StarTrek {
|
||||
|
||||
void StarTrekEngine::playIntro() {
|
||||
// TODO: .MT audio file
|
||||
|
||||
initStarfieldPosition();
|
||||
initStarfield(10, 20, 309, 169, 128);
|
||||
|
||||
SharedPtr<Bitmap> fakeStarfieldBitmap(new StubBitmap(0, 0));
|
||||
_starfieldSprite.bitmap = fakeStarfieldBitmap;
|
||||
initStarfieldSprite(&_starfieldSprite, fakeStarfieldBitmap, _starfieldRect);
|
||||
|
||||
//delR3(&_enterpriseR3); // TODO: uncomment
|
||||
|
||||
R3 planetR3 = R3();
|
||||
planetR3.matrix = initMatrix();
|
||||
planetR3.field1e = 3;
|
||||
planetR3.funcPtr1 = nullptr;
|
||||
planetR3.funcPtr2 = nullptr;
|
||||
planetR3.bitmapOffset = 0;
|
||||
|
||||
_gfx->clearScreenAndPriBuffer();
|
||||
_gfx->fadeoutScreen();
|
||||
_gfx->loadPalette("gold");
|
||||
_gfx->setBackgroundImage(_gfx->loadBitmap("goldlogo"));
|
||||
_sound->playVoc("logo");
|
||||
_gfx->copyBackgroundScreen();
|
||||
_system->updateScreen();
|
||||
_gfx->fadeinScreen();
|
||||
|
||||
uint32 clockTicks = _clockTicks;
|
||||
|
||||
Sprite subtitleSprite;
|
||||
_gfx->addSprite(&subtitleSprite);
|
||||
subtitleSprite.setXYAndPriority(0, 0, 12);
|
||||
subtitleSprite.bitmap = _gfx->loadBitmap("blank");
|
||||
subtitleSprite.drawPriority2 = 16;
|
||||
|
||||
int index = 12;
|
||||
while (index >= 0) {
|
||||
Common::String file = Common::String::format("credit%02d.shp", index);
|
||||
// TODO: This loads the file, but does not do anything with the resulting data, so
|
||||
// this is just for caching it?
|
||||
// Remember to deal with similar commented function calls below, too.
|
||||
//loadFileWithParams(file, false, true, false);
|
||||
index -= 1;
|
||||
}
|
||||
|
||||
//loadFileWithParams("legal.bmp", false, true, false);
|
||||
|
||||
index = 6;
|
||||
while (index >= 0) {
|
||||
Common::String file = Common::String::format("tittxt%02d.bmp", index);
|
||||
//loadFileWithParams(file, false, true, false);
|
||||
index -= 1;
|
||||
}
|
||||
|
||||
//loadFileWithParams("planet.shp", false, true, false);
|
||||
|
||||
index = 6;
|
||||
while (index >= 0) {
|
||||
Common::String file = Common::String::format("ent%d3.r3s", index);
|
||||
//loadFileWithParams(file, false, true, false);
|
||||
index -= 1;
|
||||
}
|
||||
|
||||
// TODO: kirkintr
|
||||
|
||||
clockTicks += 540;
|
||||
|
||||
while (_clockTicks < clockTicks && _sound->isMidiPlaying()) {
|
||||
waitForNextTick(true);
|
||||
}
|
||||
|
||||
// TODO: MT audio file
|
||||
|
||||
_gfx->fadeoutScreen();
|
||||
_gfx->loadPalette("bridge");
|
||||
_gfx->clearScreenAndPriBuffer();
|
||||
_sound->loadMusicFile("title");
|
||||
clockTicks = _clockTicks;
|
||||
|
||||
int32 starfieldZoomSpeed;
|
||||
int16 frame = 0;
|
||||
bool buttonPressed = false;
|
||||
|
||||
while (frame != 0x180 || (_sound->isMidiPlaying() && !buttonPressed)) {
|
||||
if (!buttonPressed) {
|
||||
TrekEvent event;
|
||||
while (popNextEvent(&event, false)) {
|
||||
if (event.type == TREKEVENT_KEYDOWN) {
|
||||
_gfx->fadeoutScreen();
|
||||
buttonPressed = true;
|
||||
} else if (event.type == TREKEVENT_TICK)
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
switch (frame) {
|
||||
case 0:
|
||||
starfieldZoomSpeed = 10;
|
||||
playMidiMusicTracks(MIDITRACK_0, -1);
|
||||
_byte_45b3c = 0;
|
||||
break;
|
||||
|
||||
case 30:
|
||||
_sound->playVoc("kirkintr");
|
||||
loadSubtitleSprite(0, &subtitleSprite);
|
||||
break;
|
||||
|
||||
case 36:
|
||||
loadSubtitleSprite(1, &subtitleSprite);
|
||||
break;
|
||||
|
||||
case 42: // Enterprise moves toward camera
|
||||
loadSubtitleSprite(-1, &subtitleSprite);
|
||||
addR3(&_enterpriseR3);
|
||||
_enterpriseR3.field1e = 2;
|
||||
initIntroR3ObjectToMove(&_enterpriseR3, 330, 5000, 0, 0, 18);
|
||||
break;
|
||||
|
||||
case 60: // Enterprise moves away from camera
|
||||
initIntroR3ObjectToMove(&_enterpriseR3, 0, 0, 30, 5000, 6);
|
||||
break;
|
||||
|
||||
case 66: // Cut to scene with planet
|
||||
loadSubtitleSprite(2, &subtitleSprite);
|
||||
planetR3.field22 = 2000;
|
||||
planetR3.field24 = 10000 / _starfieldPointDivisor;
|
||||
planetR3.shpFile = loadFile("planet.shp");
|
||||
initIntroR3ObjectToMove(&planetR3, 6, 10000, 6, 10000, 0);
|
||||
addR3(&planetR3);
|
||||
initIntroR3ObjectToMove(&_enterpriseR3, -15, 250, 15, 500, 18);
|
||||
starfieldZoomSpeed = 0;
|
||||
break;
|
||||
|
||||
case 186:
|
||||
delR3(&_enterpriseR3);
|
||||
// TODO: the rest
|
||||
break;
|
||||
|
||||
case 366:
|
||||
planetR3.shpFile.reset();
|
||||
delR3(&planetR3);
|
||||
break;
|
||||
|
||||
case 378:
|
||||
_gfx->delSprite(&subtitleSprite);
|
||||
_byte_45b3c = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
if (!buttonPressed) {
|
||||
updateStarfieldAndShips(false);
|
||||
_gfx->drawAllSprites();
|
||||
_gfx->incPaletteFadeLevel();
|
||||
clockTicks += 3;
|
||||
|
||||
while (_clockTicks < clockTicks)
|
||||
waitForNextTick();
|
||||
}
|
||||
|
||||
_starfieldPosition.z += starfieldZoomSpeed;
|
||||
|
||||
frame++;
|
||||
if (frame >= 0x186)
|
||||
frame = 0x186;
|
||||
}
|
||||
|
||||
_gfx->fadeoutScreen();
|
||||
_gfx->delSprite(&_starfieldSprite);
|
||||
// TODO: the rest
|
||||
}
|
||||
|
||||
void StarTrekEngine::initIntroR3ObjectToMove(R3 *r3, int16 srcAngle, int16 srcDepth, int16 destAngle, int16 destDepth, int16 ticks) {
|
||||
Fixed8 a1 = Fixed8::fromRaw((srcAngle << 8) / 90);
|
||||
Fixed8 a2 = Fixed8::fromRaw((destAngle << 8) / 90);
|
||||
|
||||
r3->pos.x = sin(a1).multToInt(srcDepth) + _starfieldPosition.x;
|
||||
r3->pos.z = cos(a1).multToInt(srcDepth) + _starfieldPosition.z;
|
||||
r3->pos.y = 0;
|
||||
|
||||
int32 deltaX = sin(a2).multToInt(destDepth) + _starfieldPosition.x - r3->pos.x;
|
||||
int32 deltaZ = cos(a2).multToInt(destDepth) + _starfieldPosition.z - r3->pos.z;
|
||||
debug("Z: %d, %d", r3->pos.z - _starfieldPosition.z, cos(a2).multToInt(destDepth));
|
||||
|
||||
Angle angle = atan2(deltaX, deltaZ);
|
||||
r3->matrix = initSpeedMatrixForXZMovement(angle, initMatrix());
|
||||
|
||||
debugCN(5, kDebugSpace, "initIntroR3ObjectToMove: pos %x,%x,%x; ", r3->pos.x, r3->pos.y, r3->pos.z);
|
||||
|
||||
if (ticks != 0) {
|
||||
debugC(5, kDebugSpace, "speed %x,%x,%x\n", r3->speed.x, r3->speed.y, r3->speed.z);
|
||||
r3->speed.x = deltaX / ticks;
|
||||
r3->speed.z = deltaZ / ticks;
|
||||
r3->speed.y = 0;
|
||||
} else {
|
||||
debugC(5, kDebugSpace, "speed 0\n");
|
||||
r3->speed.x = 0;
|
||||
r3->speed.z = 0;
|
||||
r3->speed.y = 0;
|
||||
}
|
||||
}
|
||||
|
||||
void StarTrekEngine::loadSubtitleSprite(int index, Sprite *sprite) {
|
||||
if (_showSubtitles) {
|
||||
if (index == -1)
|
||||
sprite->setBitmap(_gfx->loadBitmap("blank"));
|
||||
else {
|
||||
Common::String file = Common::String::format("tittxt%02d", index);
|
||||
sprite->setBitmap(_gfx->loadBitmap(file));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} // End of namespace StarTrek
|
@ -1,6 +1,7 @@
|
||||
MODULE := engines/startrek
|
||||
|
||||
MODULE_OBJS = \
|
||||
actors.o \
|
||||
awaymission.o \
|
||||
bitmap.o \
|
||||
common.o \
|
||||
@ -9,6 +10,7 @@ MODULE_OBJS = \
|
||||
filestream.o \
|
||||
font.o \
|
||||
graphics.o \
|
||||
intro.o \
|
||||
iwfile.o \
|
||||
lzss.o \
|
||||
math.o \
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -226,9 +226,44 @@ class Sound;
|
||||
|
||||
class StarTrekEngine : public ::Engine {
|
||||
protected:
|
||||
Common::Error run();
|
||||
|
||||
// startrek.cpp
|
||||
public:
|
||||
StarTrekEngine(OSystem *syst, const StarTrekGameDescription *gamedesc);
|
||||
virtual ~StarTrekEngine();
|
||||
|
||||
Common::Error run();
|
||||
Common::Error runGameMode(int mode, bool resume);
|
||||
|
||||
// Transporter room
|
||||
void runTransportSequence(const Common::String &name);
|
||||
|
||||
// Bridge
|
||||
void initBridge(bool b) {}; // TODO
|
||||
void cleanupBridge() {}; // TODO
|
||||
|
||||
// Running the game
|
||||
void playSoundEffectIndex(int index);
|
||||
void playMidiMusicTracks(int startTrack, int loopTrack);
|
||||
void playSpeech(const Common::String &filename);
|
||||
void stopPlayingSpeech();
|
||||
|
||||
SharedPtr<FileStream> loadFile(Common::String filename, int fileIndex = 0);
|
||||
/**
|
||||
* TODO: Figure out what the extra parameters are, and if they're important.
|
||||
*/
|
||||
SharedPtr<FileStream> loadFileWithParams(Common::String filename, bool unk1, bool unk2, bool unk3);
|
||||
|
||||
void playMovie(Common::String filename);
|
||||
void playMovieMac(Common::String filename);
|
||||
|
||||
uint16 getRandomWord();
|
||||
/**
|
||||
* ".txt" files are just lists of strings. This traverses the file to get a particular
|
||||
* string index.
|
||||
*/
|
||||
Common::String getLoadedText(int textIndex);
|
||||
|
||||
|
||||
// math.cpp
|
||||
/**
|
||||
* Unit of the angle is "quadrants" (90 degrees = 1.0)
|
||||
@ -237,10 +272,7 @@ public:
|
||||
Fixed14 cos(Angle angle);
|
||||
Angle atan2(int32 deltaX, int32 deltaZ);
|
||||
|
||||
// Game modes
|
||||
Common::Error runGameMode(int mode, bool resume);
|
||||
|
||||
// Away missions
|
||||
// awaymission.cpp
|
||||
void initAwayMission();
|
||||
void runAwayMission();
|
||||
void cleanupAwayMission();
|
||||
@ -290,11 +322,10 @@ public:
|
||||
bool isPositionSolid(int16 x, int16 y);
|
||||
void loadRoomIndex(int roomIndex, int spawnIndex);
|
||||
|
||||
public:
|
||||
SharedPtr<Room> getRoom();
|
||||
|
||||
// intro.cpp
|
||||
private:
|
||||
// Intro
|
||||
void playIntro();
|
||||
/**
|
||||
* Initializes an object to spawn at one position and move toward another position.
|
||||
@ -303,7 +334,7 @@ private:
|
||||
void initIntroR3ObjectToMove(R3 *r3, int16 srcAngle, int16 srcDepth, int16 destAngle, int16 destDepth, int16 ticks);
|
||||
void loadSubtitleSprite(int index, Sprite *sprite);
|
||||
|
||||
// Space, pseudo-3D (space.cpp)
|
||||
// space.cpp (pseudo-3d)
|
||||
void initStarfieldPosition();
|
||||
void initStarfield(int16 x, int16 y, int16 width, int16 height, int16 arg8);
|
||||
void addR3(R3 *r3);
|
||||
@ -321,29 +352,14 @@ private:
|
||||
int32 scaleSpacePosition(int32 x, int32 z);
|
||||
|
||||
/**
|
||||
* Creates something like an "identity" matrix? (Value 0x4000 along the diagonal)
|
||||
* Creates an identity matrix
|
||||
*/
|
||||
Matrix initMatrix();
|
||||
Matrix initSpeedMatrixForXZMovement(Angle angle, const Matrix &matrix);
|
||||
|
||||
// Transporter room
|
||||
void runTransportSequence(const Common::String &name);
|
||||
|
||||
// Bridge
|
||||
void initBridge(bool b) {}; // TODO
|
||||
void cleanupBridge() {}; // TODO
|
||||
|
||||
// actors.cpp (handles actors and animations)
|
||||
public:
|
||||
StarTrekEngine(OSystem *syst, const StarTrekGameDescription *gamedesc);
|
||||
virtual ~StarTrekEngine();
|
||||
|
||||
// Running the game
|
||||
void playSoundEffectIndex(int index);
|
||||
void playMidiMusicTracks(int startTrack, int loopTrack);
|
||||
void playSpeech(const Common::String &filename);
|
||||
void stopPlayingSpeech();
|
||||
|
||||
// Actors
|
||||
void initActors();
|
||||
/**
|
||||
* Set an actor's animation, position, and scale.
|
||||
@ -427,7 +443,7 @@ public:
|
||||
*/
|
||||
void scaleBitmapRow(byte *src, byte *dest, uint16 origWidth, uint16 scaledWidth);
|
||||
|
||||
// Events
|
||||
// events.cpp
|
||||
public:
|
||||
/**
|
||||
* Checks for all events, and updates Star Trek's event queue if queueEvents is set.
|
||||
@ -636,7 +652,7 @@ public:
|
||||
|
||||
Common::String getSavegameFilename(int slotId) const;
|
||||
|
||||
// Detection related functions
|
||||
// detection.cpp
|
||||
public:
|
||||
const StarTrekGameDescription *_gameDescription;
|
||||
uint32 getFeatures() const;
|
||||
@ -644,26 +660,8 @@ public:
|
||||
uint8 getGameType() const;
|
||||
Common::Language getLanguage() const;
|
||||
|
||||
// Resource related functions
|
||||
SharedPtr<FileStream> loadFile(Common::String filename, int fileIndex = 0);
|
||||
/**
|
||||
* TODO: Figure out what the extra parameters are, and if they're important.
|
||||
*/
|
||||
SharedPtr<FileStream> loadFileWithParams(Common::String filename, bool unk1, bool unk2, bool unk3);
|
||||
|
||||
// Movie related functions
|
||||
void playMovie(Common::String filename);
|
||||
void playMovieMac(Common::String filename);
|
||||
|
||||
// Misc
|
||||
uint16 getRandomWord();
|
||||
/**
|
||||
* ".txt" files are just lists of strings. This traverses the file to get a particular
|
||||
* string index.
|
||||
*/
|
||||
Common::String getLoadedText(int textIndex);
|
||||
|
||||
|
||||
// Variables
|
||||
public:
|
||||
int _gameMode;
|
||||
int _lastGameMode;
|
||||
|
Loading…
x
Reference in New Issue
Block a user