2018-03-17 17:36:18 +02: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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PINK_RESOURCE_MGR_H
|
|
|
|
#define PINK_RESOURCE_MGR_H
|
|
|
|
|
2018-05-31 23:11:08 +03:00
|
|
|
#include "common/scummsys.h"
|
|
|
|
|
2018-03-21 06:54:23 +02:00
|
|
|
namespace Common {
|
2018-05-21 12:30:27 +03:00
|
|
|
class SafeSeekableSubReadStream;
|
2018-05-22 08:03:37 +03:00
|
|
|
class String;
|
2018-03-21 06:54:23 +02:00
|
|
|
}
|
|
|
|
|
2018-03-17 17:36:18 +02:00
|
|
|
namespace Pink {
|
|
|
|
|
2018-05-31 23:11:08 +03:00
|
|
|
class Page;
|
2018-03-17 17:36:18 +02:00
|
|
|
class PinkEngine;
|
|
|
|
class OrbFile;
|
|
|
|
class BroFile;
|
2018-03-21 06:54:23 +02:00
|
|
|
class Sound;
|
2018-03-23 22:52:16 +02:00
|
|
|
class CelDecoder;
|
2018-03-17 17:36:18 +02:00
|
|
|
|
|
|
|
struct ResourceDescription;
|
|
|
|
|
|
|
|
class ResourceMgr {
|
|
|
|
public:
|
2018-05-22 08:03:37 +03:00
|
|
|
ResourceMgr();
|
|
|
|
~ResourceMgr();
|
2018-03-17 17:36:18 +02:00
|
|
|
|
2018-05-31 23:11:08 +03:00
|
|
|
void init(PinkEngine *game, Page *page);
|
2018-06-02 22:22:56 +03:00
|
|
|
|
2018-05-22 08:03:37 +03:00
|
|
|
void clear();
|
2018-03-23 21:51:13 +02:00
|
|
|
|
2018-06-09 20:26:32 +03:00
|
|
|
Common::SafeSeekableSubReadStream *getResourceStream(const Common::String &name);
|
|
|
|
|
2018-06-02 22:22:56 +03:00
|
|
|
Common::String loadText(Common::String &name);
|
|
|
|
|
2018-06-10 10:54:08 +03:00
|
|
|
PinkEngine *getGame() const { return _game; }
|
2018-03-17 17:36:18 +02:00
|
|
|
|
|
|
|
private:
|
2018-05-22 08:03:37 +03:00
|
|
|
PinkEngine *_game;
|
|
|
|
ResourceDescription *_resDescTable;
|
|
|
|
uint32 _resCount;
|
2018-03-17 17:36:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Pink
|
|
|
|
|
|
|
|
#endif
|