cleaned up some things, fixed some mem leaks
[riven-wahrk.git] / src / Name.h
blobff0b7c8a0a8586d424d7727c88461132bb317b7c
2 /*
4 * Riven-Wahrk - a reimplementation of the game Riven, by Cyan
5 * Copyright (C) 2009 Tyler Genter <tylergenter@gmail.com>
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef _NAME_H_
23 #define _NAME_H_
25 #include <string>
26 #include <iostream>
28 #include "Common.h"
29 #include "File.h"
31 using namespace std;
33 class Name {
35 File *file;
36 uint16_t count;
38 public:
39 Name (Stack *stack, int id) {
40 file = new File (stack, Resource::NAME, id);
41 count = file->readUShort (0);
44 ~Name () {
45 delete file;
48 string getString (int n);
50 int getCount () {
51 return count;
54 void dump () {
55 for (int i=0; i<count; i++)
56 cout << getString (i) << "\n";
61 #endif