2011-02-20 02:31:34 -05:00
|
|
|
/* 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.
|
|
|
|
*
|
2011-09-27 20:45:51 -04:00
|
|
|
* Additional copyright for this file:
|
|
|
|
* Copyright (C) 1995-1997 Presto Studios, Inc.
|
|
|
|
*
|
2011-02-20 02:31:34 -05:00
|
|
|
* 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.
|
2016-09-03 12:46:38 +02:00
|
|
|
*
|
2011-02-20 02:31:34 -05:00
|
|
|
* 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.
|
2016-09-03 12:46:38 +02:00
|
|
|
*
|
2011-02-20 02:31:34 -05:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-17 18:20:01 +02:00
|
|
|
#ifndef PEGASUS_PEGASUS_H
|
|
|
|
#define PEGASUS_PEGASUS_H
|
2011-02-20 02:31:34 -05:00
|
|
|
|
2011-09-07 13:13:34 -04:00
|
|
|
#include "common/list.h"
|
2011-02-20 02:31:34 -05:00
|
|
|
#include "common/macresman.h"
|
2011-10-02 20:52:09 -04:00
|
|
|
#include "common/rect.h"
|
2011-02-20 02:31:34 -05:00
|
|
|
#include "common/scummsys.h"
|
2013-02-04 12:34:06 -05:00
|
|
|
#include "common/str-array.h"
|
2011-02-20 02:31:34 -05:00
|
|
|
#include "common/system.h"
|
|
|
|
#include "common/util.h"
|
|
|
|
|
|
|
|
#include "engines/engine.h"
|
|
|
|
|
|
|
|
#include "pegasus/graphics.h"
|
2011-09-20 11:49:20 -04:00
|
|
|
#include "pegasus/hotspot.h"
|
2011-09-08 23:04:28 -04:00
|
|
|
#include "pegasus/input.h"
|
2011-09-20 11:49:20 -04:00
|
|
|
#include "pegasus/notification.h"
|
2012-03-21 08:22:17 -04:00
|
|
|
#include "pegasus/timers.h"
|
2011-09-29 19:26:17 -04:00
|
|
|
#include "pegasus/items/autodragger.h"
|
2011-09-20 11:49:20 -04:00
|
|
|
#include "pegasus/items/inventory.h"
|
2011-09-28 14:25:55 -04:00
|
|
|
#include "pegasus/items/itemdragger.h"
|
2011-09-01 12:54:00 -04:00
|
|
|
#include "pegasus/neighborhood/neighborhood.h"
|
2011-02-20 02:31:34 -05:00
|
|
|
|
2011-10-02 20:52:09 -04:00
|
|
|
namespace Common {
|
|
|
|
class RandomSource;
|
|
|
|
}
|
|
|
|
|
2011-05-12 12:14:47 -04:00
|
|
|
namespace Video {
|
2012-08-26 15:49:45 -04:00
|
|
|
class VideoDecoder;
|
2011-05-12 12:14:47 -04:00
|
|
|
}
|
|
|
|
|
2011-02-20 02:31:34 -05:00
|
|
|
namespace Pegasus {
|
|
|
|
|
2011-05-12 16:17:12 -04:00
|
|
|
class PegasusConsole;
|
2011-02-20 02:31:34 -05:00
|
|
|
struct PegasusGameDescription;
|
|
|
|
class SoundManager;
|
|
|
|
class GraphicsManager;
|
2011-09-07 13:13:34 -04:00
|
|
|
class Idler;
|
2011-09-08 20:38:12 -04:00
|
|
|
class Cursor;
|
2011-09-15 20:39:37 -04:00
|
|
|
class TimeBase;
|
2011-09-21 19:46:59 -04:00
|
|
|
class GameMenu;
|
2011-09-24 14:10:54 -04:00
|
|
|
class InventoryItem;
|
|
|
|
class BiochipItem;
|
|
|
|
class Neighborhood;
|
2011-02-20 02:31:34 -05:00
|
|
|
|
2011-09-20 11:49:20 -04:00
|
|
|
class PegasusEngine : public ::Engine, public InputHandler, public NotificationManager {
|
2011-09-08 23:04:28 -04:00
|
|
|
friend class InputHandler;
|
2011-02-20 02:31:34 -05:00
|
|
|
|
|
|
|
public:
|
|
|
|
PegasusEngine(OSystem *syst, const PegasusGameDescription *gamedesc);
|
|
|
|
virtual ~PegasusEngine();
|
2011-09-16 09:20:41 -04:00
|
|
|
|
|
|
|
// Engine stuff
|
2011-02-20 02:31:34 -05:00
|
|
|
const PegasusGameDescription *_gameDescription;
|
|
|
|
bool hasFeature(EngineFeature f) const;
|
2011-05-12 16:17:12 -04:00
|
|
|
GUI::Debugger *getDebugger();
|
2012-09-22 20:43:34 -04:00
|
|
|
bool canLoadGameStateCurrently();
|
|
|
|
bool canSaveGameStateCurrently();
|
2011-09-16 09:20:41 -04:00
|
|
|
Common::Error loadGameState(int slot);
|
|
|
|
Common::Error saveGameState(int slot, const Common::String &desc);
|
|
|
|
|
|
|
|
// Base classes
|
2011-02-20 02:31:34 -05:00
|
|
|
GraphicsManager *_gfx;
|
2011-09-20 14:19:54 -04:00
|
|
|
Common::MacResManager *_resFork;
|
2011-09-24 14:10:54 -04:00
|
|
|
Cursor *_cursor;
|
2011-02-20 02:31:34 -05:00
|
|
|
|
2011-09-21 19:46:59 -04:00
|
|
|
// Menu
|
|
|
|
void useMenu(GameMenu *menu);
|
|
|
|
bool checkGameMenu();
|
|
|
|
|
2011-09-16 09:20:41 -04:00
|
|
|
// Misc.
|
2011-02-20 02:31:34 -05:00
|
|
|
bool isDemo() const;
|
2013-03-17 19:46:23 -04:00
|
|
|
bool isDVD() const;
|
|
|
|
bool isDVDDemo() const;
|
2013-03-18 15:38:02 -04:00
|
|
|
bool isOldDemo() const;
|
2013-04-02 16:31:30 -04:00
|
|
|
bool isWindows() const;
|
2011-09-07 13:13:34 -04:00
|
|
|
void addIdler(Idler *idler);
|
|
|
|
void removeIdler(Idler *idler);
|
2011-09-15 20:39:37 -04:00
|
|
|
void addTimeBase(TimeBase *timeBase);
|
|
|
|
void removeTimeBase(TimeBase *timeBase);
|
2011-09-21 19:46:59 -04:00
|
|
|
void delayShell(TimeValue time, TimeScale scale);
|
|
|
|
void resetIntroTimer();
|
2012-03-21 08:22:17 -04:00
|
|
|
void introTimerExpired();
|
2011-09-22 14:50:24 -04:00
|
|
|
void refreshDisplay();
|
2011-09-24 14:10:54 -04:00
|
|
|
bool playerAlive();
|
2011-09-27 12:21:05 -04:00
|
|
|
void processShell();
|
|
|
|
void checkCallBacks();
|
|
|
|
void createInterface();
|
2011-12-16 14:17:50 -05:00
|
|
|
void setGameMode(const GameMode);
|
|
|
|
GameMode getGameMode() const { return _gameMode; }
|
2011-10-02 20:52:09 -04:00
|
|
|
uint getRandomBit();
|
2011-10-13 20:59:20 -04:00
|
|
|
uint getRandomNumber(uint max);
|
|
|
|
void shuffleArray(int32 *arr, int32 count);
|
2011-10-23 18:52:49 -04:00
|
|
|
void drawScaledFrame(const Graphics::Surface *frame, uint16 x, uint16 y);
|
2012-08-28 16:36:50 -04:00
|
|
|
HotspotList &getAllHotspots() { return _allHotspots; }
|
2011-09-15 20:39:37 -04:00
|
|
|
|
2011-09-22 20:17:09 -04:00
|
|
|
// Energy
|
|
|
|
void setLastEnergyValue(const int32 value) { _savedEnergyValue = value; }
|
|
|
|
int32 getSavedEnergyValue() { return _savedEnergyValue; }
|
|
|
|
|
|
|
|
// Death
|
2012-09-26 04:10:32 +02:00
|
|
|
void setEnergyDeathReason(const DeathReason reason) { _deathReason = reason; }
|
2011-12-16 14:17:50 -05:00
|
|
|
DeathReason getEnergyDeathReason() { return _deathReason; }
|
2011-09-22 20:17:09 -04:00
|
|
|
void resetEnergyDeathReason();
|
2011-12-16 14:17:50 -05:00
|
|
|
void die(const DeathReason);
|
2011-10-02 20:52:09 -04:00
|
|
|
void playEndMessage();
|
2011-09-22 20:17:09 -04:00
|
|
|
|
2011-09-24 14:10:54 -04:00
|
|
|
// Volume
|
2011-09-26 22:09:56 -04:00
|
|
|
uint16 getSoundFXLevel() { return _FXLevel; }
|
2011-09-29 11:52:35 -04:00
|
|
|
void setSoundFXLevel(uint16);
|
2011-09-26 22:09:56 -04:00
|
|
|
uint16 getAmbienceLevel() { return _ambientLevel; }
|
2011-09-29 11:52:35 -04:00
|
|
|
void setAmbienceLevel(uint16);
|
2011-09-24 14:10:54 -04:00
|
|
|
|
|
|
|
// Items
|
2012-08-28 16:50:15 -04:00
|
|
|
ItemList &getAllItems() { return _allItems; }
|
2011-09-24 14:10:54 -04:00
|
|
|
bool playerHasItem(const Item *);
|
2011-12-16 14:17:50 -05:00
|
|
|
bool playerHasItemID(const ItemID);
|
2011-09-24 15:29:42 -04:00
|
|
|
void checkFlashlight();
|
2011-12-16 14:17:50 -05:00
|
|
|
bool itemInLocation(const ItemID, const NeighborhoodID, const RoomID, const DirectionConstant);
|
2011-09-24 14:10:54 -04:00
|
|
|
|
|
|
|
// Inventory Items
|
|
|
|
InventoryItem *getCurrentInventoryItem();
|
|
|
|
bool itemInInventory(InventoryItem *);
|
2011-12-16 14:17:50 -05:00
|
|
|
bool itemInInventory(ItemID);
|
2011-09-25 00:38:50 -04:00
|
|
|
Inventory *getItemsInventory() { return &_items; }
|
2011-12-16 14:17:50 -05:00
|
|
|
InventoryResult addItemToInventory(InventoryItem *);
|
2011-09-28 14:25:55 -04:00
|
|
|
void removeAllItemsFromInventory();
|
2011-12-16 14:17:50 -05:00
|
|
|
InventoryResult removeItemFromInventory(InventoryItem *);
|
2011-09-28 14:25:55 -04:00
|
|
|
uint32 countInventoryItems() { return _items.getNumItems(); }
|
2011-09-24 14:10:54 -04:00
|
|
|
|
|
|
|
// Biochips
|
|
|
|
BiochipItem *getCurrentBiochip();
|
|
|
|
bool itemInBiochips(BiochipItem *);
|
2011-12-16 14:17:50 -05:00
|
|
|
bool itemInBiochips(ItemID);
|
2011-09-25 00:38:50 -04:00
|
|
|
Inventory *getBiochipsInventory() { return &_biochips; }
|
2011-09-28 14:25:55 -04:00
|
|
|
void removeAllItemsFromBiochips();
|
2011-12-16 14:17:50 -05:00
|
|
|
InventoryResult addItemToBiochips(BiochipItem *);
|
2011-09-24 14:10:54 -04:00
|
|
|
|
|
|
|
// AI
|
|
|
|
Common::String getBriefingMovie();
|
|
|
|
Common::String getEnvScanMovie();
|
|
|
|
uint getNumHints();
|
|
|
|
Common::String getHintMovie(uint);
|
|
|
|
bool canSolve();
|
|
|
|
void prepareForAIHint(const Common::String &);
|
|
|
|
void cleanUpAfterAIHint(const Common::String &);
|
2012-04-03 10:32:32 -04:00
|
|
|
Common::SeekableReadStream *_aiSaveStream;
|
2011-09-24 14:10:54 -04:00
|
|
|
|
|
|
|
// Neighborhood
|
2011-12-16 14:17:50 -05:00
|
|
|
void jumpToNewEnvironment(const NeighborhoodID, const RoomID, const DirectionConstant);
|
|
|
|
NeighborhoodID getCurrentNeighborhoodID() const;
|
2011-09-24 14:10:54 -04:00
|
|
|
|
2011-09-26 22:09:56 -04:00
|
|
|
// Dragging
|
2011-12-16 14:17:50 -05:00
|
|
|
void dragItem(const Input &, Item *, DragType);
|
2011-09-28 14:25:55 -04:00
|
|
|
bool isDragging() const { return _dragType != kDragNoDrag; }
|
2011-12-16 14:17:50 -05:00
|
|
|
DragType getDragType() const { return _dragType; }
|
2011-09-29 19:26:17 -04:00
|
|
|
Item *getDraggingItem() const { return _draggingItem; }
|
2011-09-28 14:25:55 -04:00
|
|
|
void dragTerminated(const Input &);
|
2011-09-29 19:26:17 -04:00
|
|
|
void autoDragItemIntoRoom(Item *, Sprite *);
|
|
|
|
void autoDragItemIntoInventory(Item *, Sprite*);
|
2011-09-26 22:09:56 -04:00
|
|
|
|
2011-09-27 12:21:05 -04:00
|
|
|
// Save/Load
|
|
|
|
void makeContinuePoint();
|
|
|
|
bool swapSaveAllowed(bool allow) {
|
|
|
|
bool old = _saveAllowed;
|
|
|
|
_saveAllowed = allow;
|
|
|
|
return old;
|
|
|
|
}
|
|
|
|
bool swapLoadAllowed(bool allow) {
|
|
|
|
bool old = _loadAllowed;
|
|
|
|
_loadAllowed = allow;
|
|
|
|
return old;
|
|
|
|
}
|
2012-04-09 11:20:18 -04:00
|
|
|
void requestSave() { _saveRequested = true; }
|
|
|
|
bool saveRequested() const { return _saveRequested; }
|
|
|
|
void requestLoad() { _loadRequested = true; }
|
|
|
|
bool loadRequested() const { return _loadRequested; }
|
2013-02-04 12:34:06 -05:00
|
|
|
static Common::StringArray listSaveFiles();
|
2011-09-27 12:21:05 -04:00
|
|
|
|
2011-09-08 23:04:28 -04:00
|
|
|
protected:
|
|
|
|
Common::Error run();
|
2011-09-30 16:26:31 -04:00
|
|
|
void pauseEngineIntern(bool pause);
|
2011-09-08 23:04:28 -04:00
|
|
|
|
2011-09-20 11:49:20 -04:00
|
|
|
Notification _shellNotification;
|
2011-12-16 14:17:50 -05:00
|
|
|
virtual void receiveNotification(Notification *notification, const NotificationFlags flags);
|
2011-09-20 11:49:20 -04:00
|
|
|
|
2011-09-21 19:46:59 -04:00
|
|
|
void handleInput(const Input &input, const Hotspot *cursorSpot);
|
2011-09-28 14:25:55 -04:00
|
|
|
virtual bool isClickInput(const Input &, const Hotspot *);
|
2011-12-16 14:17:50 -05:00
|
|
|
virtual InputBits getClickFilter();
|
2011-09-28 14:25:55 -04:00
|
|
|
|
|
|
|
void clickInHotspot(const Input &, const Hotspot *);
|
|
|
|
void activateHotspots(void);
|
|
|
|
|
|
|
|
void updateCursor(const Common::Point, const Hotspot *);
|
|
|
|
bool wantsCursor();
|
2011-09-21 19:46:59 -04:00
|
|
|
|
2011-02-20 02:31:34 -05:00
|
|
|
private:
|
2011-05-12 16:17:12 -04:00
|
|
|
// Console
|
|
|
|
PegasusConsole *_console;
|
2011-05-12 21:30:09 -04:00
|
|
|
|
2011-09-20 21:57:34 -04:00
|
|
|
// Intro
|
|
|
|
void runIntro();
|
2012-03-21 08:22:17 -04:00
|
|
|
void stopIntroTimer();
|
2011-05-12 21:30:09 -04:00
|
|
|
bool detectOpeningClosingDirectory();
|
|
|
|
Common::String _introDirectory;
|
2012-03-21 08:22:17 -04:00
|
|
|
FuseFunction *_introTimer;
|
2011-09-07 13:13:34 -04:00
|
|
|
|
|
|
|
// Idlers
|
2011-10-02 23:31:01 -04:00
|
|
|
Idler *_idlerHead;
|
2011-09-07 13:13:34 -04:00
|
|
|
void giveIdleTime();
|
2011-09-08 13:12:26 -04:00
|
|
|
|
|
|
|
// Items
|
2012-08-28 16:50:15 -04:00
|
|
|
ItemList _allItems;
|
2011-09-08 13:12:26 -04:00
|
|
|
void createItems();
|
2011-12-16 14:17:50 -05:00
|
|
|
void createItem(ItemID itemID, NeighborhoodID neighborhoodID, RoomID roomID, DirectionConstant direction);
|
2011-09-20 11:49:20 -04:00
|
|
|
Inventory _items;
|
|
|
|
Inventory _biochips;
|
2011-12-16 14:17:50 -05:00
|
|
|
ItemID _currentItemID;
|
|
|
|
ItemID _currentBiochipID;
|
|
|
|
void destroyInventoryItem(const ItemID itemID);
|
|
|
|
ItemID pickItemToDestroy();
|
2011-09-15 20:39:37 -04:00
|
|
|
|
|
|
|
// TimeBases
|
|
|
|
Common::List<TimeBase *> _timeBases;
|
2011-09-16 09:20:41 -04:00
|
|
|
|
|
|
|
// Save/Load
|
2013-12-14 11:10:13 -05:00
|
|
|
bool loadFromStream(Common::SeekableReadStream *stream);
|
2011-09-16 09:20:41 -04:00
|
|
|
bool writeToStream(Common::WriteStream *stream, int saveType);
|
|
|
|
void loadFromContinuePoint();
|
2012-09-22 21:03:22 -04:00
|
|
|
void writeContinueStream(Common::WriteStream *stream);
|
|
|
|
Common::SeekableReadStream *_continuePoint;
|
2011-09-16 09:20:41 -04:00
|
|
|
bool _saveAllowed, _loadAllowed; // It's so nice that this was in the original code already :P
|
2011-12-19 18:55:08 -05:00
|
|
|
Common::Error showLoadDialog();
|
|
|
|
Common::Error showSaveDialog();
|
2014-04-13 09:22:55 -04:00
|
|
|
void showSaveFailedDialog(const Common::Error &status);
|
2012-04-09 11:20:18 -04:00
|
|
|
bool _saveRequested, _loadRequested;
|
2011-09-20 11:49:20 -04:00
|
|
|
|
|
|
|
// Misc.
|
|
|
|
Hotspot _returnHotspot;
|
2012-08-28 16:36:50 -04:00
|
|
|
HotspotList _allHotspots;
|
2011-09-28 14:25:55 -04:00
|
|
|
InputHandler *_savedHandler;
|
2011-09-22 09:24:14 -04:00
|
|
|
void showTempScreen(const Common::String &fileName);
|
2012-08-26 15:49:45 -04:00
|
|
|
bool playMovieScaled(Video::VideoDecoder *video, uint16 x, uint16 y);
|
2011-09-26 09:29:17 -04:00
|
|
|
void throwAwayEverything();
|
2011-09-28 14:25:55 -04:00
|
|
|
void shellGameInput(const Input &input, const Hotspot *cursorSpot);
|
2011-10-02 20:52:09 -04:00
|
|
|
Common::RandomSource *_rnd;
|
2011-10-11 19:45:36 -04:00
|
|
|
void doSubChase();
|
2011-12-21 12:09:01 -05:00
|
|
|
uint getNeighborhoodCD(const NeighborhoodID neighborhood) const;
|
|
|
|
uint _currentCD;
|
2012-11-21 23:07:30 -05:00
|
|
|
void initKeymap();
|
2014-02-26 21:56:40 -05:00
|
|
|
InputBits getInputFilter();
|
2011-09-21 19:46:59 -04:00
|
|
|
|
|
|
|
// Menu
|
|
|
|
GameMenu *_gameMenu;
|
2011-12-16 14:17:50 -05:00
|
|
|
void doGameMenuCommand(const GameMenuCommand);
|
2011-09-22 09:07:41 -04:00
|
|
|
void doInterfaceOverview();
|
2011-09-29 01:13:38 -04:00
|
|
|
ScreenDimmer _screenDimmer;
|
2011-09-29 11:52:35 -04:00
|
|
|
void pauseMenu(bool menuUp);
|
2011-09-22 20:17:09 -04:00
|
|
|
|
|
|
|
// Energy
|
|
|
|
int32 _savedEnergyValue;
|
|
|
|
|
|
|
|
// Death
|
2011-12-16 14:17:50 -05:00
|
|
|
DeathReason _deathReason;
|
2011-09-26 09:29:17 -04:00
|
|
|
void doDeath();
|
2011-09-24 14:10:54 -04:00
|
|
|
|
|
|
|
// Neighborhood
|
|
|
|
Neighborhood *_neighborhood;
|
2011-09-27 20:41:45 -04:00
|
|
|
void useNeighborhood(Neighborhood *neighborhood);
|
2011-12-16 14:17:50 -05:00
|
|
|
void performJump(NeighborhoodID start);
|
2011-09-28 14:25:55 -04:00
|
|
|
void startNewGame();
|
|
|
|
void startNeighborhood();
|
2011-12-16 14:17:50 -05:00
|
|
|
void makeNeighborhood(NeighborhoodID, Neighborhood *&);
|
2011-09-26 22:09:56 -04:00
|
|
|
|
|
|
|
// Sound
|
|
|
|
uint16 _ambientLevel;
|
|
|
|
uint16 _FXLevel;
|
2011-09-27 12:21:05 -04:00
|
|
|
|
|
|
|
// Game Mode
|
2011-12-16 14:17:50 -05:00
|
|
|
GameMode _gameMode;
|
2011-09-28 14:25:55 -04:00
|
|
|
bool _switchModesSync;
|
2011-12-16 14:17:50 -05:00
|
|
|
void switchGameMode(const GameMode, const GameMode);
|
|
|
|
bool canSwitchGameMode(const GameMode, const GameMode);
|
2011-09-28 14:25:55 -04:00
|
|
|
|
|
|
|
// Dragging
|
|
|
|
ItemDragger _itemDragger;
|
|
|
|
Item *_draggingItem;
|
|
|
|
Sprite *_draggingSprite;
|
2011-12-16 14:17:50 -05:00
|
|
|
DragType _dragType;
|
2011-09-29 19:26:17 -04:00
|
|
|
AutoDragger _autoDragger;
|
2011-09-28 14:25:55 -04:00
|
|
|
|
|
|
|
// Interface
|
|
|
|
void toggleInventoryDisplay();
|
|
|
|
void toggleBiochipDisplay();
|
|
|
|
void raiseInventoryDrawer();
|
|
|
|
void raiseBiochipDrawer();
|
|
|
|
void lowerInventoryDrawer();
|
|
|
|
void lowerBiochipDrawer();
|
|
|
|
void raiseInventoryDrawerSync();
|
|
|
|
void raiseBiochipDrawerSync();
|
|
|
|
void lowerInventoryDrawerSync();
|
|
|
|
void lowerBiochipDrawerSync();
|
|
|
|
void showInfoScreen();
|
|
|
|
void hideInfoScreen();
|
|
|
|
void toggleInfo();
|
|
|
|
Movie _bigInfoMovie, _smallInfoMovie;
|
2011-02-20 02:31:34 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Pegasus
|
|
|
|
|
|
|
|
#endif
|