File: patch_type.h

package info (click to toggle)
boswars 2.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 96,652 kB
  • sloc: cpp: 57,250; python: 1,715; sh: 25; makefile: 17
file content (165 lines) | stat: -rw-r--r-- 3,817 bytes parent folder | download | duplicates (5)
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
//     ____                _       __               
//    / __ )____  _____   | |     / /___ ___________
//   / __  / __ \/ ___/   | | /| / / __ `/ ___/ ___/
//  / /_/ / /_/ (__  )    | |/ |/ / /_/ / /  (__  ) 
// /_____/\____/____/     |__/|__/\__,_/_/  /____/  
//                                              
//       A futuristic real-time strategy game.
//          This file is part of Bos Wars.
//
/**@name patch_type.h - The patch type header. */
//
//      (c) Copyright 2008-2010 by Jimmy Salmon
//
//      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; only version 2 of the License.
//
//      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 _PATCH_TYPE_H_
#define _PATCH_TYPE_H_

//@{

#include "video.h"


class CPatchType
{
public:
	/**
	**  Patch type constructor
	*/
	CPatchType(const std::string &name, const std::string &file,
	           int tileWidth, int tileHeight, unsigned short *flags, bool customPatch, const std::string &theme = "") :
		name(name), file(file), graphic(NULL), tileWidth(tileWidth), tileHeight(tileHeight), customPatch(customPatch), theme(theme)
	{
		this->flags = new unsigned short[this->tileWidth * this->tileHeight];
		memcpy(this->flags, flags, this->tileWidth * this->tileHeight * sizeof(unsigned short));
	}

	/**
	**  Patch type destructor
	*/
	~CPatchType()
	{
		CGraphic::Free(this->graphic);
		delete[] this->flags;
	}

	/**
	**  Load the patch type
	*/
	void load()
	{
		if (!this->graphic) {
			this->graphic = CGraphic::New(this->file);
			this->graphic->Load();
		}
	}

	/**
	**  Clean the allocated memory
	*/
	void clean()
	{
		CGraphic::Free(this->graphic);
		this->graphic = NULL;
	}

	/**
	**  Get the name
	*/
	inline const std::string &getName() const { return this->name; }

	/**
	**  Get the file name
	*/
	inline const std::string &getFile() const { return this->file; }

	/**
	**  Get the graphic
	*/
	inline const CGraphic *getGraphic() const { return this->graphic; }

	/**
	**  Get the tile width of the patch
	*/
	inline int getTileWidth() const { return this->tileWidth; }

	/**
	**  Get the tile height of the patch
	*/
	inline int getTileHeight() const { return this->tileHeight; }

	/**
	**  Get the tile flag at a tile location
	*/
	unsigned short getFlag(int x, int y) const
	{
		Assert(0 <= x && x < this->tileWidth && 0 <= y && y < this->tileHeight);
		return flags[y * this->tileWidth + x];
	}

	/**
	**  Set the tile flag at a tile location
	*/
	void setFlag(int x, int y, unsigned short flag)
	{
		Assert(0 <= x && x < this->tileWidth && 0 <= y && y < this->tileHeight);
		flags[y * this->tileWidth + x] = flag;
	}

	/**
	**  Get all of the tile flags
	*/
	inline unsigned short *getFlags()
	{
		return this->flags;
	}

	/**
	**  Set custom patch
	*/
	inline void setCustomPatch(bool customPatch)
	{
		this->customPatch = customPatch;
	}

	/**
	**  Is this a custom patch
	*/
	inline bool isCustomPatch()
	{
		return this->customPatch;
	}

	/**
	**  Get the theme
	*/
	inline const std::string &getTheme() const { return this->theme; }

private:
	std::string name;
	std::string file;
	CGraphic *graphic;
	int tileWidth;
	int tileHeight;
	unsigned short *flags;
	bool customPatch;
	std::string theme;
};

//@}

#endif /* _PATCH_TYPE_H_ */