File: ORES.h

package info (click to toggle)
7kaa 2.15.6%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 131,312 kB
  • sloc: cpp: 134,790; asm: 3,523; ansic: 1,949; perl: 1,665; makefile: 1,181; sh: 126; pascal: 27
file content (68 lines) | stat: -rw-r--r-- 1,953 bytes parent folder | download | duplicates (8)
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
/*
 * Seven Kingdoms: Ancient Adversaries
 *
 * Copyright 1997,1998 Enlight Software Ltd.
 *
 * 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, see <http://www.gnu.org/licenses/>.
 *
 */

//Filename    : ORES.H
//Description : Header file of Object Resource

#ifndef __ORES_H
#define __ORES_H

#ifndef __OFILE_H
#include <OFILE.h>
#endif

//--------- Define class Resource ----------//

class Resource : public File
{
public:
   int      rec_count;          // total no. of records

private:
   enum     { DEF_BUF_SIZE = 5120 };   // default buffer size : 5K

   uint32_t *index_buf;         // index buffer pointer
   char     *data_buf;          // data buffer pointer
   unsigned data_buf_size;      // size of the data buffer

   char     init_flag;
   char     read_all;           // read all data from resource file to memory
   char     use_common_buf;        // use vga's buffer as data buffer or not
   int      cur_rec_no;         // current record no

public:
   Resource()	  { init_flag=0; }
   ~Resource()	  { deinit(); }

   Resource(char* resFile, int readAll, int useCommonBuf=0)
	 { init_flag=0; init(resFile, readAll, useCommonBuf); }

   void  init(char* resFile, int readAll, int useCommonBuf=0);
   void  deinit();

	int   is_inited() 	{ return init_flag; }

   char* read(int= -1);
   File* get_file(int, int&);
};

//-------------------------------------------//

#endif