-
Notifications
You must be signed in to change notification settings - Fork 0
/
BaseReader.h
111 lines (95 loc) · 3.12 KB
/
BaseReader.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* -*- C++ -*-
*
* BaseReader.h - Base class of archive reader
*
* Copyright (c) 2001-2010 Ogapee. All rights reserved.
* (original ONScripter, of which this is a fork).
*
* ogapee@aqua.dti2.ne.jp
*
* Copyright (c) 2009-2010 "Uncle" Mion Sonozaki
*
* UncleMion@gmail.com
*
* 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
*/
#ifndef __BASE_READER_H__
#define __BASE_READER_H__
#include <stdio.h>
#ifndef SEEK_END
#define SEEK_END 2
#endif
#ifdef WIN32
#define DELIMITER '\\'
#else
#define DELIMITER '/'
#endif
#define MAX_ERRBUF_LEN 512
struct BaseReader
{
enum {
NO_COMPRESSION = 0,
SPB_COMPRESSION = 1,
LZSS_COMPRESSION = 2,
NBZ_COMPRESSION = 4
};
enum {
ARCHIVE_TYPE_NONE = 0,
ARCHIVE_TYPE_SAR = 1,
ARCHIVE_TYPE_NSA = 2,
ARCHIVE_TYPE_NS2 = 3 //new format since NScr2.91, uses ext ".ns2"
};
struct FileInfo{
char name[256];
int compression_type;
size_t offset;
size_t length;
size_t original_length;
FileInfo()
: compression_type(NO_COMPRESSION),
offset(0), length(0), original_length(0)
{}
};
struct ArchiveInfo{
struct ArchiveInfo *next;
FILE *file_handle;
int power_resume_number; // currently only for PSP
char *file_name; //assumed to use SJIS encoding
struct FileInfo *fi_list;
unsigned int num_of_files;
unsigned long base_offset;
ArchiveInfo()
: next(NULL), file_handle(NULL), file_name(NULL),
fi_list(NULL), num_of_files(0), base_offset(0)
{}
~ArchiveInfo(){
if (file_handle) fclose( file_handle );
if (file_name) delete[] file_name;
if (fi_list) delete[] fi_list;
}
};
//static char errbuf[MAX_ERRBUF_LEN]; // for passing back error details
virtual ~BaseReader(){};
virtual int open( const char *name=NULL ) = 0;
virtual int close() = 0;
virtual const char *getArchiveName() const = 0;
virtual int getNumFiles() = 0;
virtual void registerCompressionType( const char *ext, int type ) = 0;
virtual struct FileInfo getFileByIndex( unsigned int index ) = 0;
//file_name parameter is assumed to use SJIS encoding
virtual size_t getFileLength( const char *file_name ) = 0;
virtual size_t getFile( const char *file_name, unsigned char *buffer, int *location=NULL ) = 0;
};
#endif // __BASE_READER_H__