2007-05-30 21:56:52 +00: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.
|
2007-01-14 21:29:12 +00: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.
|
|
|
|
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PARALLACTION_DISK_H
|
|
|
|
#define PARALLACTION_DISK_H
|
|
|
|
|
2008-04-06 05:40:02 +00:00
|
|
|
#define PATH_LEN 200
|
|
|
|
|
2008-10-12 07:01:09 +00:00
|
|
|
#include "common/archive.h"
|
2008-08-30 10:27:20 +00:00
|
|
|
|
2007-08-07 15:08:45 +00:00
|
|
|
#include "graphics/surface.h"
|
2009-06-12 08:51:05 +00:00
|
|
|
#include "graphics/iff.h"
|
2007-01-14 21:29:12 +00:00
|
|
|
|
2010-05-04 12:00:16 +00:00
|
|
|
namespace Common {
|
|
|
|
class FSDirectory;
|
|
|
|
}
|
2009-01-07 07:21:50 +00:00
|
|
|
|
2008-08-30 10:27:20 +00:00
|
|
|
|
2007-01-14 21:29:12 +00:00
|
|
|
namespace Parallaction {
|
|
|
|
|
2007-03-24 21:18:08 +00:00
|
|
|
class Table;
|
2007-03-04 13:27:29 +00:00
|
|
|
class Parallaction;
|
2007-03-12 20:41:25 +00:00
|
|
|
class Gfx;
|
2007-03-04 15:09:45 +00:00
|
|
|
class Script;
|
2007-04-16 20:16:18 +00:00
|
|
|
class Font;
|
2007-03-04 13:27:29 +00:00
|
|
|
|
2007-08-25 20:34:10 +00:00
|
|
|
struct Frames;
|
2007-04-07 10:02:59 +00:00
|
|
|
struct Cnv;
|
2007-08-25 20:34:10 +00:00
|
|
|
struct Sprites;
|
2007-08-11 13:07:21 +00:00
|
|
|
struct BackgroundInfo;
|
2009-03-14 17:42:48 +00:00
|
|
|
class GfxObj;
|
2009-03-14 17:02:28 +00:00
|
|
|
struct MaskBuffer;
|
|
|
|
struct PathBuffer;
|
2007-07-27 19:02:19 +00:00
|
|
|
|
|
|
|
class Disk {
|
|
|
|
|
|
|
|
public:
|
|
|
|
Disk() { }
|
|
|
|
virtual ~Disk() { }
|
|
|
|
|
2008-10-12 07:01:09 +00:00
|
|
|
virtual void init() { }
|
|
|
|
|
2007-07-27 19:02:19 +00:00
|
|
|
virtual Common::String selectArchive(const Common::String &name) = 0;
|
|
|
|
virtual void setLanguage(uint16 language) = 0;
|
|
|
|
|
|
|
|
virtual Script* loadLocation(const char *name) = 0;
|
|
|
|
virtual Script* loadScript(const char* name) = 0;
|
2008-06-29 09:30:32 +00:00
|
|
|
virtual GfxObj* loadTalk(const char *name) = 0;
|
2009-03-15 09:29:25 +00:00
|
|
|
virtual GfxObj* loadObjects(const char *name, uint8 part = 0) = 0;
|
2007-11-22 21:51:33 +00:00
|
|
|
virtual Frames* loadPointer(const char *name) = 0;
|
2008-06-29 09:30:32 +00:00
|
|
|
virtual GfxObj* loadHead(const char* name) = 0;
|
2007-07-27 19:02:19 +00:00
|
|
|
virtual Font* loadFont(const char* name) = 0;
|
2008-06-29 09:30:32 +00:00
|
|
|
virtual GfxObj* loadStatic(const char* name) = 0;
|
2008-07-03 10:31:25 +00:00
|
|
|
virtual Frames* loadFrames(const char* name) = 0;
|
2007-08-12 17:13:21 +00:00
|
|
|
virtual void loadSlide(BackgroundInfo& info, const char *filename) = 0;
|
|
|
|
virtual void loadScenery(BackgroundInfo& info, const char* background, const char* mask, const char* path) = 0;
|
2007-07-27 19:02:19 +00:00
|
|
|
virtual Table* loadTable(const char* name) = 0;
|
2007-07-28 07:52:24 +00:00
|
|
|
virtual Common::SeekableReadStream* loadMusic(const char* name) = 0;
|
2009-03-22 15:25:55 +00:00
|
|
|
virtual Common::SeekableReadStream* loadSound(const char* name) = 0;
|
2009-06-12 05:03:18 +00:00
|
|
|
virtual MaskBuffer *loadMask(const char *name, uint32 w, uint32 h) { return 0; }
|
|
|
|
virtual PathBuffer *loadPath(const char *name, uint32 w, uint32 h) { return 0; }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PaletteFxRange;
|
|
|
|
|
|
|
|
struct ILBMLoader {
|
|
|
|
enum {
|
|
|
|
BODYMODE_SURFACE,
|
|
|
|
BODYMODE_MASKBUFFER,
|
|
|
|
BODYMODE_PATHBUFFER
|
|
|
|
};
|
|
|
|
uint32 _bodyMode;
|
|
|
|
Graphics::Surface *_surf;
|
|
|
|
MaskBuffer *_maskBuffer;
|
|
|
|
PathBuffer *_pathBuffer;
|
|
|
|
byte *_palette;
|
|
|
|
PaletteFxRange *_crng;
|
|
|
|
uint32 _mode;
|
|
|
|
byte* _intBuffer;
|
|
|
|
uint32 _numCRNG;
|
2009-06-12 08:51:05 +00:00
|
|
|
Graphics::ILBMDecoder _decoder;
|
2009-06-12 05:03:18 +00:00
|
|
|
|
|
|
|
ILBMLoader(uint32 bodyMode, byte *palette = 0, PaletteFxRange *crng = 0);
|
|
|
|
ILBMLoader(Graphics::Surface *surf, byte *palette = 0, PaletteFxRange *crng = 0);
|
|
|
|
ILBMLoader(MaskBuffer *buffer);
|
|
|
|
ILBMLoader(PathBuffer *buffer);
|
|
|
|
|
2009-06-12 08:51:05 +00:00
|
|
|
bool callback(Common::IFFChunk &chunk);
|
2009-06-12 05:03:18 +00:00
|
|
|
void setupBuffer(uint32 w, uint32 h);
|
|
|
|
void load(Common::ReadStream *in, bool disposeStream = false);
|
2007-07-27 19:02:19 +00:00
|
|
|
};
|
|
|
|
|
2007-01-14 21:29:12 +00:00
|
|
|
|
2007-07-27 19:02:19 +00:00
|
|
|
class Disk_ns : public Disk {
|
2007-03-04 13:27:29 +00:00
|
|
|
|
2007-03-24 17:14:04 +00:00
|
|
|
protected:
|
2008-11-07 08:47:59 +00:00
|
|
|
Parallaction *_vm;
|
2007-03-24 17:14:04 +00:00
|
|
|
|
2008-11-07 15:35:18 +00:00
|
|
|
Common::SearchSet _sset;
|
2008-11-07 08:47:59 +00:00
|
|
|
|
|
|
|
Common::String _resArchiveName;
|
|
|
|
Common::String _language;
|
2008-10-29 07:57:48 +00:00
|
|
|
Common::SeekableReadStream *openFile(const char *filename);
|
2008-11-07 15:35:18 +00:00
|
|
|
virtual Common::SeekableReadStream *tryOpenFile(const char *filename) { return 0; }
|
2008-11-07 08:47:59 +00:00
|
|
|
void errorFileNotFound(const char *filename);
|
2007-04-03 21:11:43 +00:00
|
|
|
|
2008-11-07 15:35:18 +00:00
|
|
|
void addArchive(const Common::String& name, int priority);
|
|
|
|
|
2009-04-29 16:59:10 +00:00
|
|
|
virtual void decodeCnv(byte *data, uint16 numFrames, uint16 width, uint16 height, Common::SeekableReadStream *stream) = 0;
|
|
|
|
Cnv *makeCnv(Common::SeekableReadStream *stream);
|
|
|
|
|
2007-03-24 17:14:04 +00:00
|
|
|
public:
|
2007-07-27 19:02:19 +00:00
|
|
|
Disk_ns(Parallaction *vm);
|
|
|
|
virtual ~Disk_ns();
|
2007-03-24 17:14:04 +00:00
|
|
|
|
2007-06-23 21:53:13 +00:00
|
|
|
Common::String selectArchive(const Common::String &name);
|
2007-03-24 17:14:04 +00:00
|
|
|
void setLanguage(uint16 language);
|
2009-04-29 16:59:10 +00:00
|
|
|
|
|
|
|
virtual Script* loadLocation(const char *name);
|
|
|
|
virtual Script* loadScript(const char* name);
|
2007-03-24 17:14:04 +00:00
|
|
|
};
|
|
|
|
|
2007-07-27 19:02:19 +00:00
|
|
|
class DosDisk_ns : public Disk_ns {
|
2007-03-24 17:14:04 +00:00
|
|
|
|
2007-03-04 13:27:29 +00:00
|
|
|
private:
|
2007-04-03 21:11:43 +00:00
|
|
|
void unpackBackground(Common::ReadStream *stream, byte *screen, byte *mask, byte *path);
|
2009-04-28 12:23:52 +00:00
|
|
|
Cnv* loadCnv(const char *filename);
|
2007-08-12 17:13:21 +00:00
|
|
|
void loadBackground(BackgroundInfo& info, const char *filename);
|
2009-04-29 16:59:10 +00:00
|
|
|
void createMaskAndPathBuffers(BackgroundInfo &info);
|
2008-02-02 00:41:31 +00:00
|
|
|
void parseDepths(BackgroundInfo &info, Common::SeekableReadStream &stream);
|
2007-04-16 20:16:18 +00:00
|
|
|
Font *createFont(const char *name, Cnv* cnv);
|
2007-03-04 13:27:29 +00:00
|
|
|
|
|
|
|
protected:
|
2007-03-12 20:41:25 +00:00
|
|
|
Gfx *_gfx;
|
2008-11-07 15:35:18 +00:00
|
|
|
virtual Common::SeekableReadStream *tryOpenFile(const char* name);
|
2009-04-29 16:59:10 +00:00
|
|
|
virtual void decodeCnv(byte *data, uint16 numFrames, uint16 width, uint16 height, Common::SeekableReadStream *stream);
|
2007-03-04 13:27:29 +00:00
|
|
|
|
|
|
|
public:
|
2007-07-27 19:02:19 +00:00
|
|
|
DosDisk_ns(Parallaction *vm);
|
|
|
|
virtual ~DosDisk_ns();
|
2007-03-04 13:27:29 +00:00
|
|
|
|
2008-11-07 15:35:18 +00:00
|
|
|
void init();
|
|
|
|
|
2008-06-29 09:30:32 +00:00
|
|
|
GfxObj* loadTalk(const char *name);
|
2009-03-15 09:29:25 +00:00
|
|
|
GfxObj* loadObjects(const char *name, uint8 part = 0);
|
2007-11-22 21:51:33 +00:00
|
|
|
Frames* loadPointer(const char *name);
|
2008-06-29 09:30:32 +00:00
|
|
|
GfxObj* loadHead(const char* name);
|
2007-04-16 20:16:18 +00:00
|
|
|
Font* loadFont(const char* name);
|
2008-06-29 09:30:32 +00:00
|
|
|
GfxObj* loadStatic(const char* name);
|
2008-07-03 10:31:25 +00:00
|
|
|
Frames* loadFrames(const char* name);
|
2007-08-12 17:13:21 +00:00
|
|
|
void loadSlide(BackgroundInfo& info, const char *filename);
|
|
|
|
void loadScenery(BackgroundInfo& info, const char* background, const char* mask, const char* path);
|
2007-03-24 21:18:08 +00:00
|
|
|
Table* loadTable(const char* name);
|
2007-07-28 07:52:24 +00:00
|
|
|
Common::SeekableReadStream* loadMusic(const char* name);
|
2009-03-22 15:25:55 +00:00
|
|
|
Common::SeekableReadStream* loadSound(const char* name);
|
2007-03-24 17:14:04 +00:00
|
|
|
};
|
|
|
|
|
2007-07-27 19:02:19 +00:00
|
|
|
class AmigaDisk_ns : public Disk_ns {
|
2007-03-24 17:14:04 +00:00
|
|
|
|
2007-04-01 12:45:42 +00:00
|
|
|
protected:
|
2007-07-07 14:56:30 +00:00
|
|
|
void patchFrame(byte *dst, byte *dlta, uint16 bytesPerPlane, uint16 height);
|
|
|
|
void unpackFrame(byte *dst, byte *src, uint16 planeSize);
|
|
|
|
void unpackBitmap(byte *dst, byte *src, uint16 numFrames, uint16 bytesPerPlane, uint16 height);
|
2008-11-07 15:35:18 +00:00
|
|
|
Common::SeekableReadStream *tryOpenFile(const char* name);
|
2007-04-16 20:16:18 +00:00
|
|
|
Font *createFont(const char *name, Common::SeekableReadStream &stream);
|
2007-08-12 17:13:21 +00:00
|
|
|
void loadMask(BackgroundInfo& info, const char *name);
|
|
|
|
void loadPath(BackgroundInfo& info, const char *name);
|
|
|
|
void loadBackground(BackgroundInfo& info, const char *name);
|
2008-12-14 10:32:26 +00:00
|
|
|
void buildMask(byte* buf);
|
2007-04-01 12:45:42 +00:00
|
|
|
|
2009-04-29 16:59:10 +00:00
|
|
|
virtual void decodeCnv(byte *data, uint16 numFrames, uint16 width, uint16 height, Common::SeekableReadStream *stream);
|
|
|
|
|
2007-03-24 17:14:04 +00:00
|
|
|
public:
|
2007-07-27 19:02:19 +00:00
|
|
|
AmigaDisk_ns(Parallaction *vm);
|
|
|
|
virtual ~AmigaDisk_ns();
|
|
|
|
|
2008-11-07 15:35:18 +00:00
|
|
|
void init();
|
|
|
|
|
2008-06-29 09:30:32 +00:00
|
|
|
GfxObj* loadTalk(const char *name);
|
2009-03-15 09:29:25 +00:00
|
|
|
GfxObj* loadObjects(const char *name, uint8 part = 0);
|
2007-11-22 21:51:33 +00:00
|
|
|
Frames* loadPointer(const char *name);
|
2008-06-29 09:30:32 +00:00
|
|
|
GfxObj* loadHead(const char* name);
|
2007-07-27 19:02:19 +00:00
|
|
|
Font* loadFont(const char* name);
|
2008-06-29 09:30:32 +00:00
|
|
|
GfxObj* loadStatic(const char* name);
|
2008-07-03 10:31:25 +00:00
|
|
|
Frames* loadFrames(const char* name);
|
2007-08-12 17:13:21 +00:00
|
|
|
void loadSlide(BackgroundInfo& info, const char *filename);
|
|
|
|
void loadScenery(BackgroundInfo& info, const char* background, const char* mask, const char* path);
|
2007-07-27 19:02:19 +00:00
|
|
|
Table* loadTable(const char* name);
|
2007-07-28 07:52:24 +00:00
|
|
|
Common::SeekableReadStream* loadMusic(const char* name);
|
2009-03-22 15:25:55 +00:00
|
|
|
Common::SeekableReadStream* loadSound(const char* name);
|
2007-07-27 19:02:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-10-12 07:01:09 +00:00
|
|
|
class Disk_br : public Disk {
|
2008-10-26 09:15:57 +00:00
|
|
|
|
2008-10-12 07:01:09 +00:00
|
|
|
Common::SeekableReadStream *openFile_internal(bool errorOnNotFound, const Common::String &name, const Common::String &ext);
|
2008-10-26 09:15:57 +00:00
|
|
|
|
2008-10-12 07:01:09 +00:00
|
|
|
protected:
|
2008-10-26 09:15:57 +00:00
|
|
|
Parallaction *_vm;
|
2008-10-12 07:01:09 +00:00
|
|
|
Common::SearchSet _sset;
|
2008-10-26 09:15:57 +00:00
|
|
|
Common::FSDirectory *_baseDir;
|
|
|
|
|
|
|
|
uint16 _language;
|
|
|
|
Common::String _currentPart;
|
2008-10-12 07:01:09 +00:00
|
|
|
|
2009-10-04 11:58:52 +00:00
|
|
|
Common::SeekableReadStream *tryOpenFile(const Common::String &name, const Common::String &ext = Common::String());
|
|
|
|
Common::SeekableReadStream *openFile(const Common::String &name, const Common::String &ext = Common::String());
|
2008-10-12 07:01:09 +00:00
|
|
|
void errorFileNotFound(const Common::String &filename);
|
2008-10-26 09:15:57 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
Disk_br(Parallaction *vm);
|
|
|
|
virtual ~Disk_br();
|
2008-10-12 07:01:09 +00:00
|
|
|
};
|
|
|
|
|
2007-07-27 19:02:19 +00:00
|
|
|
// for the moment DosDisk_br subclasses Disk. When Amiga support will
|
|
|
|
// be taken into consideration, it might be useful to add another level
|
|
|
|
// like we did for Nippon Safes.
|
2008-10-12 07:01:09 +00:00
|
|
|
class DosDisk_br : public Disk_br {
|
2007-07-27 19:02:19 +00:00
|
|
|
|
|
|
|
protected:
|
2007-08-11 14:26:12 +00:00
|
|
|
Font *createFont(const char *name, Common::ReadStream &stream);
|
2009-04-28 12:23:52 +00:00
|
|
|
Sprites* createSprites(Common::ReadStream *stream);
|
2008-02-03 16:51:38 +00:00
|
|
|
void loadBitmap(Common::SeekableReadStream &stream, Graphics::Surface &surf, byte *palette);
|
2008-07-27 13:43:40 +00:00
|
|
|
GfxObj* createInventoryObjects(Common::SeekableReadStream &stream);
|
2007-07-27 19:02:19 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
DosDisk_br(Parallaction *vm);
|
2007-03-04 13:27:29 +00:00
|
|
|
|
2008-10-12 07:01:09 +00:00
|
|
|
virtual void init();
|
|
|
|
|
2007-07-27 19:02:19 +00:00
|
|
|
Common::String selectArchive(const Common::String &name);
|
|
|
|
void setLanguage(uint16 language);
|
2007-03-04 15:09:45 +00:00
|
|
|
Script* loadLocation(const char *name);
|
|
|
|
Script* loadScript(const char* name);
|
2008-06-29 09:30:32 +00:00
|
|
|
GfxObj* loadTalk(const char *name);
|
2009-03-15 09:29:25 +00:00
|
|
|
GfxObj* loadObjects(const char *name, uint8 part = 0);
|
2007-11-22 21:51:33 +00:00
|
|
|
Frames* loadPointer(const char *name);
|
2008-06-29 09:30:32 +00:00
|
|
|
GfxObj* loadHead(const char* name);
|
2007-04-16 20:16:18 +00:00
|
|
|
Font* loadFont(const char* name);
|
2008-06-29 09:30:32 +00:00
|
|
|
GfxObj* loadStatic(const char* name);
|
2008-07-03 10:31:25 +00:00
|
|
|
Frames* loadFrames(const char* name);
|
2007-08-12 17:13:21 +00:00
|
|
|
void loadSlide(BackgroundInfo& info, const char *filename);
|
2008-04-06 07:05:56 +00:00
|
|
|
void loadScenery(BackgroundInfo& info, const char* name, const char* mask, const char* path);
|
2007-03-24 21:18:08 +00:00
|
|
|
Table* loadTable(const char* name);
|
2007-07-28 07:52:24 +00:00
|
|
|
Common::SeekableReadStream* loadMusic(const char* name);
|
2009-03-22 15:25:55 +00:00
|
|
|
Common::SeekableReadStream* loadSound(const char* name);
|
2009-06-12 05:03:18 +00:00
|
|
|
MaskBuffer *loadMask(const char *name, uint32 w, uint32 h);
|
|
|
|
PathBuffer *loadPath(const char *name, uint32 w, uint32 h);
|
2007-03-04 13:27:29 +00:00
|
|
|
};
|
2007-03-02 22:23:02 +00:00
|
|
|
|
2008-10-12 07:01:09 +00:00
|
|
|
class DosDemoDisk_br : public DosDisk_br {
|
2008-07-28 07:20:55 +00:00
|
|
|
|
|
|
|
public:
|
2008-10-12 07:01:09 +00:00
|
|
|
DosDemoDisk_br(Parallaction *vm);
|
2008-07-28 07:20:55 +00:00
|
|
|
|
2008-10-12 07:01:09 +00:00
|
|
|
virtual void init();
|
2008-07-28 07:20:55 +00:00
|
|
|
|
2008-10-12 07:01:09 +00:00
|
|
|
Common::String selectArchive(const Common::String& name);
|
2008-07-28 07:20:55 +00:00
|
|
|
};
|
|
|
|
|
2008-04-06 07:05:56 +00:00
|
|
|
class AmigaDisk_br : public DosDisk_br {
|
|
|
|
|
|
|
|
protected:
|
2009-04-28 12:23:52 +00:00
|
|
|
Sprites* createSprites(Common::ReadStream *stream);
|
2008-04-06 07:05:56 +00:00
|
|
|
Font *createFont(const char *name, Common::SeekableReadStream &stream);
|
2009-03-17 03:58:57 +00:00
|
|
|
void loadBackground(BackgroundInfo& info, const char *filename);
|
2009-03-17 05:29:59 +00:00
|
|
|
void adjustForPalette(Graphics::Surface &surf, int transparentColor = -1);
|
2009-03-16 09:11:51 +00:00
|
|
|
|
2008-04-06 07:05:56 +00:00
|
|
|
public:
|
|
|
|
AmigaDisk_br(Parallaction *vm);
|
|
|
|
|
2008-10-12 07:01:09 +00:00
|
|
|
virtual void init();
|
|
|
|
|
2009-03-16 23:58:19 +00:00
|
|
|
Common::String selectArchive(const Common::String& name);
|
2008-06-29 09:30:32 +00:00
|
|
|
GfxObj* loadTalk(const char *name);
|
2008-04-06 07:05:56 +00:00
|
|
|
Font* loadFont(const char* name);
|
2008-06-29 09:30:32 +00:00
|
|
|
GfxObj* loadStatic(const char* name);
|
2008-07-03 10:31:25 +00:00
|
|
|
Frames* loadFrames(const char* name);
|
2008-04-06 07:05:56 +00:00
|
|
|
void loadSlide(BackgroundInfo& info, const char *filename);
|
|
|
|
void loadScenery(BackgroundInfo& info, const char* name, const char* mask, const char* path);
|
2009-03-15 09:29:25 +00:00
|
|
|
GfxObj* loadObjects(const char *name, uint8 part = 0);
|
2008-07-27 10:43:15 +00:00
|
|
|
Common::SeekableReadStream* loadMusic(const char* name);
|
2009-03-22 15:25:55 +00:00
|
|
|
Common::SeekableReadStream* loadSound(const char* name);
|
2009-06-12 05:03:18 +00:00
|
|
|
MaskBuffer *loadMask(const char *name, uint32 w, uint32 h);
|
2008-04-06 07:05:56 +00:00
|
|
|
};
|
2007-07-27 19:02:19 +00:00
|
|
|
|
2007-01-14 21:29:12 +00:00
|
|
|
} // namespace Parallaction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|