scummvm/saga/rscfile.cpp

298 lines
5.9 KiB
C++
Raw Normal View History

/* ScummVM - Scumm Interpreter
* Copyright (C) 2004 The ScummVM project
*
* The ReInherit Engine is (C)2000-2003 by Daniel Balsom.
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header$
*
*/
/*
Description:
RSC Resource file management module
Notes:
*/
#include "reinherit.h"
#include "yslib.h"
/*
* Uses the following modules:
\*--------------------------------------------------------------------------*/
/*
* Begin module
\*--------------------------------------------------------------------------*/
#include "rscfile_mod.h"
#include "rscfile.h"
namespace Saga {
R_RSCFILE_CONTEXT *RSC_CreateContext(void)
{
R_RSCFILE_CONTEXT empty_context;
empty_context.rc_file_fspec = NULL;
empty_context.rc_file_loaded = 0;
empty_context.rc_res_table = NULL;
empty_context.rc_res_ct = 0;
R_RSCFILE_CONTEXT *new_context;
new_context = (R_RSCFILE_CONTEXT *)malloc(sizeof *new_context);
if (new_context == NULL) {
return NULL;
}
*new_context = empty_context;
return new_context;
}
int RSC_OpenContext(R_RSCFILE_CONTEXT *rsc_context, const char *fspec)
{
if (rsc_context->rc_file.isOpen()) {
return R_FAILURE;
}
if (!rsc_context->rc_file.open(fspec)) {
return R_FAILURE;
}
rsc_context->rc_file_fspec = fspec;
if (RSC_LoadRSC(rsc_context) != R_SUCCESS) {
return R_FAILURE;
}
rsc_context->rc_file_loaded = 1;
return R_SUCCESS;
}
int RSC_CloseContext(R_RSCFILE_CONTEXT * rsc_context)
{
if (rsc_context->rc_file.isOpen()) {
rsc_context->rc_file.close();
}
RSC_FreeRSC(rsc_context);
rsc_context->rc_file_loaded = 0;
return R_SUCCESS;
}
int RSC_DestroyContext(R_RSCFILE_CONTEXT * rsc_context)
{
RSC_CloseContext(rsc_context);
if (rsc_context->rc_file_loaded) {
free(rsc_context->rc_res_table);
}
free(rsc_context);
return R_SUCCESS;
}
int RSC_LoadRSC(R_RSCFILE_CONTEXT * rsc)
{
uint32 res_tbl_ct;
uint32 res_tbl_offset;
byte tblinfo_buf[RSC_TABLEINFO_SIZE];
byte *tbl_buf;
size_t tbl_len;
uint32 i;
R_RSCFILE_RESOURCE *rsc_restbl;
const byte *read_p;
read_p = tblinfo_buf;
if (rsc->rc_file.size() < RSC_MIN_FILESIZE) {
return R_FAILURE;
}
/* Read resource table info from the rear end of file
* \*------------------------------------------------------------- */
rsc->rc_file.seek((long)(rsc->rc_file.size() - 8), SEEK_SET);
if (rsc->rc_file.read(tblinfo_buf, RSC_TABLEINFO_SIZE) != RSC_TABLEINFO_SIZE) {
return R_FAILURE;
}
res_tbl_offset = ys_read_u32_le(read_p, &read_p);
res_tbl_ct = ys_read_u32_le(read_p, NULL);
/* Check for sane table offset
* \*------------------------------------------------------------- */
if (res_tbl_offset != rsc->rc_file.size() - RSC_TABLEINFO_SIZE -
RSC_TABLEENTRY_SIZE * res_tbl_ct) {
return R_FAILURE;
}
/* Load resource table
* \*------------------------------------------------------------- */
tbl_len = RSC_TABLEENTRY_SIZE * res_tbl_ct;
tbl_buf = (byte *)malloc(tbl_len);
if (tbl_buf == NULL) {
return R_FAILURE;
}
rsc->rc_file.seek((long)res_tbl_offset, SEEK_SET);
if (rsc->rc_file.read(tbl_buf, tbl_len) != tbl_len) {
free(tbl_buf);
return R_FAILURE;
}
rsc_restbl = (R_RSCFILE_RESOURCE *)malloc(res_tbl_ct * sizeof *rsc_restbl);
if (rsc_restbl == NULL) {
free(tbl_buf);
return R_FAILURE;
}
read_p = tbl_buf;
for (i = 0; i < res_tbl_ct; i++) {
rsc_restbl[i].res_offset = ys_read_u32_le(read_p, &read_p);
rsc_restbl[i].res_size = ys_read_u32_le(read_p, &read_p);
if ((rsc_restbl[i].res_offset > rsc->rc_file.size()) ||
(rsc_restbl[i].res_size > rsc->rc_file.size())) {
free(tbl_buf);
free(rsc_restbl);
return R_FAILURE;
}
}
rsc->rc_res_table = rsc_restbl;
rsc->rc_res_ct = res_tbl_ct;
free(tbl_buf);
return R_SUCCESS;
}
int RSC_FreeRSC(R_RSCFILE_CONTEXT * rsc)
{
if (!rsc->rc_file_loaded) {
return R_FAILURE;
}
free(rsc->rc_res_table);
return R_SUCCESS;
}
uint32 RSC_GetResourceCount(R_RSCFILE_CONTEXT * rsc)
{
return (rsc == NULL) ? 0 : rsc->rc_res_ct;
}
int
RSC_GetResourceSize(R_RSCFILE_CONTEXT * rsc, uint32 res_num, uint32 * res_size)
{
if ((rsc == NULL) || (res_size == NULL)) {
return R_FAILURE;
}
if (res_num > (rsc->rc_res_ct - 1)) {
return R_FAILURE;
}
*res_size = rsc->rc_res_table[res_num].res_size;
return R_SUCCESS;
}
int
RSC_GetResourceOffset(R_RSCFILE_CONTEXT * rsc,
uint32 res_num, uint32 * res_offset)
{
if ((rsc == NULL) || (res_offset == NULL)) {
return R_FAILURE;
}
if (res_num > (rsc->rc_res_ct - 1)) {
return R_FAILURE;
}
*res_offset = rsc->rc_res_table[res_num].res_offset;
return R_SUCCESS;
}
int
RSC_LoadResource(R_RSCFILE_CONTEXT * rsc,
uint32 res_num, byte ** res_p, size_t * res_size_p)
{
uint32 res_offset;
size_t res_size;
byte *res_buf;
if ((rsc == NULL) || (res_p == NULL)) {
return R_FAILURE;
}
if (res_num > (rsc->rc_res_ct - 1)) {
return R_FAILURE;
}
res_offset = rsc->rc_res_table[res_num].res_offset;
res_size = rsc->rc_res_table[res_num].res_size;
rsc->rc_file.seek((long)res_offset, SEEK_SET);
res_buf = (byte *)malloc(res_size);
if (res_buf == NULL) {
return R_MEM;
}
if (rsc->rc_file.read(res_buf, res_size) != res_size) {
free(res_buf);
return R_FAILURE;
}
*res_p = res_buf;
if (res_size_p != NULL) {
*res_size_p = res_size;
}
return R_SUCCESS;
}
int RSC_FreeResource(byte * resource_ptr)
{
free(resource_ptr);
return R_SUCCESS;
}
} // End of namespace Saga