2006-02-22 22:40:53 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2006 The ScummVM project
|
|
|
|
*
|
|
|
|
* cinE Engine is (C) 2004-2005 by CinE Team
|
|
|
|
*
|
|
|
|
* 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 CINE_PART_H_
|
|
|
|
#define CINE_PART_H_
|
|
|
|
|
2006-02-25 00:26:14 +00:00
|
|
|
namespace Cine {
|
|
|
|
|
2006-02-27 21:25:59 +00:00
|
|
|
struct PartBuffer {
|
2006-02-25 18:16:40 +00:00
|
|
|
char partName[14];
|
2006-02-23 09:12:21 +00:00
|
|
|
uint32 offset;
|
2006-02-25 18:16:40 +00:00
|
|
|
uint32 packedSize;
|
|
|
|
uint32 unpackedSize;
|
2006-05-26 09:36:41 +00:00
|
|
|
};
|
2006-02-22 22:40:53 +00:00
|
|
|
|
2006-02-27 21:25:59 +00:00
|
|
|
struct AnimData {
|
2006-02-23 09:12:21 +00:00
|
|
|
uint16 width;
|
|
|
|
uint16 var1;
|
2006-02-24 22:34:22 +00:00
|
|
|
uint16 bpp;
|
|
|
|
uint16 height;
|
2006-02-22 22:40:53 +00:00
|
|
|
|
2006-03-23 03:45:52 +00:00
|
|
|
byte *ptr1;
|
|
|
|
byte *ptr2;
|
2006-02-23 09:12:21 +00:00
|
|
|
int16 fileIdx;
|
|
|
|
int16 frameIdx;
|
2006-02-22 22:40:53 +00:00
|
|
|
char name[10];
|
2006-03-02 10:52:27 +00:00
|
|
|
|
2006-05-26 09:36:41 +00:00
|
|
|
// Not part of the data, but used when saving/restoring it.
|
|
|
|
bool refresh;
|
|
|
|
};
|
2006-02-22 22:40:53 +00:00
|
|
|
|
|
|
|
#define NUM_MAX_PARTDATA 255
|
|
|
|
#define NUM_MAX_ANIMDATA 255
|
|
|
|
|
2006-03-16 20:29:07 +00:00
|
|
|
extern AnimData *animDataTable;
|
2006-02-27 21:25:59 +00:00
|
|
|
extern PartBuffer *partBuffer;
|
2006-02-22 22:40:53 +00:00
|
|
|
|
|
|
|
void loadPart(const char *partName);
|
2006-03-23 03:45:52 +00:00
|
|
|
void freePartRange(byte startIdx, byte numIdx);
|
2006-02-22 22:40:53 +00:00
|
|
|
void closePart(void);
|
|
|
|
|
2006-02-23 09:12:21 +00:00
|
|
|
int16 findFileInBundle(const char *fileName);
|
2006-02-22 22:40:53 +00:00
|
|
|
|
2006-03-23 03:45:52 +00:00
|
|
|
void readFromPart(int16 idx, byte *dataPtr);
|
2006-02-22 22:40:53 +00:00
|
|
|
|
2006-03-23 03:45:52 +00:00
|
|
|
byte *readBundleFile(int16 foundFileIdx);
|
|
|
|
byte *readFile(const char *filename);
|
2006-02-22 22:40:53 +00:00
|
|
|
|
2006-02-25 00:26:14 +00:00
|
|
|
} // End of namespace Cine
|
|
|
|
|
2006-02-22 22:40:53 +00:00
|
|
|
#endif
|